@charset "UFT-8";
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Noto+Sans+JP:wght@400;700;900&family=Noto+Color+Emoji&display=swap');

:root {
	--color-black: #1C1E20;
	--color-yellow: #E7FF00;
	--color-white: #FFF;
	--color-navy: #192C6E;
	--color-gray: #8C8C8C;
}

@media screen and (max-width: 767px) {
	:root {
	}
}

*, *::before, *::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.5;
}

@media screen and (max-width: 767px) {
	body {
		font-size: 12px;
	}
}

img {
	/*chome画像ぼやけ回避処理*/
	image-rendering: -webkit-optimize-contrast;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--color-blue);
	text-decoration: none;
}

a:hover {
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
	opacity: .7;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

@-webkit-keyframes flash {
	0% {
		opacity: .4;
	}

	100% {
		opacity: 1;
	}
}

@keyframes flash {
	0% {
		opacity: .4;
	}

	100% {
		opacity: 1;
	}
}

/* TO TOP */
.page-top {
	margin: 0;
	padding: 0;
}

.page-top p {
	margin: 0;
	padding: 0;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 2;
}

.move-page-top {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}


/* COMMON */
.flex {
	display: flex;
}

.flex-wrap {
	flex-wrap: wrap;
}

.items-center {
	align-items: center;
}

.items-end {
	align-items: end;
}

.justify-center {
	justify-content: center;
}

.justify-spaceAround {
	justify-content: space-around;
}

.justify-spaceBetween {
	justify-content: space-between;
}

.justify-flexStart {
	justify-content: flex-start;
}

.justify-flexEnd {
	justify-content: flex-end;
}

.section .align-c {
	text-align: center;
}

.section .align-l {
	text-align: left;
}

.main .mt10 {
	margin-top: 10px;
}

.main .mt15 {
	margin-top: 15px;
}

.main .mt20 {
	margin-top: 20px;
}

.main .mt30 {
	margin-top: 30px;
}

.main .mt40 {
	margin-top: 40px;
}

.main .mt50 {
	margin-top: 50px;
}

.main .mt60 {
	margin-top: 60px;
}

.main .mt70 {
	margin-top: 70px;
}

.main .mt80 {
	margin-top: 80px;
}

.l-inner {
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 20px;
}

body .u-sp {
	display: none !important;
}

.c-blue {
	color: var(--color-blue);
}

.fwBold{
	font-weight: bold;
}

.indent {
	padding-left: 1em;
	text-indent: -1em;
}

@media screen and (max-width: 767px) {
	.main .mt10 {
		margin-top: 5px;
	}

	.main .mt20 {
		margin-top: 10px;
	}

	.main .mt30 {
		margin-top: 15px;
	}

	.main .mt40 {
		margin-top: 20px;
	}

	.main .mt50 {
		margin-top: 25px;
	}

	.main .mt60 {
		margin-top: 30px;
	}

	.main .mt70 {
		margin-top: 35px;
	}

	.main .mt80 {
		margin-top: 40px;
	}

	body .u-pc {
		display: none !important;
	}

	body .u-sp {
		display: block !important;
	}
}

.section {
	margin-top: 140px;
}

.box {
	border: 4px solid var(--color-black);
	border-radius: 22px;
	padding: 60px 60px 60px;
	position: relative;
}

.c-box02 {
	background: var(--color-gray);
	border-radius: 16px;
	padding: 32px;
}

.c-box02+.c-box02 {
	margin-top: 24px;
}

.c-box02__title {
	font-size: 1.5rem;
	font-weight: 700;
}

.c-box02__title02 {
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	margin: 1em auto;
}

.c-box02__sub {
	font-size: 1.25rem;
}

.c-box02__title+.c-box02__sub {
	margin-left: 1.5rem;
}

.c-box02__lead {
	height: 70px;
	text-align: center;
	margin: 0 auto;
}

.c-title+.c-box02__lead {
	margin: 30px auto 0;
}

.c-btn+.c-box02__lead {
	margin-top: 50px;
}

.c-box02__lead02 {
	height: 98px;
	text-align: center;
	margin: 0 auto;
}

.c-box03 {
	background: var(--color-white);
	border-radius: 15px;
	padding: 32px;
}

.c-box03+.c-box03 {
	margin-top: 20px;
}

.c-title+.c-box03 {
	margin-top: 40px;
}

.c-box02__lead+.c-box03 {
	margin-top: 30px;
}

.c-box02__heading+.c-box03 {
	margin-top: 16px;
}

.c-btn+.c-box03 {
	margin-top: 30px;
}

.c-box04 {
	border: 4px solid var(--color-blue);
	border-radius: 18px;
	font-size: var(--fontSize-lead02);
}

.c-box04__title {
	background: var(--color-blue);
	color: var(--color-white);
	padding: 14px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.c-box04__desc {
	padding: 20px 30px;
}


.c-title {
	font-size: 2.285rem;
	font-family: 'Josefin Sans','Noto Sans JP', sans-serif;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}
.c-title span{
	position: relative;
}
.c-title span:before {
	content: "";
	position: absolute;
	left: -20px;
	bottom: 0;
	z-index: -1;
	background: var(--color-yellow);
	height: 18px;
	width: calc( 100% + 40px );
}

.c-table{
	border-collapse: collapse;
	width: 100%;
}

.c-table th, .c-table td{
	padding: 36px 24px;
}

.c-table th{
	background: var(--color-black);
	color: var(--color-yellow);
	width: 24%;
}

.c-table tr:first-of-type th{
	border-bottom: 1px solid var(--color-white);
}

.c-table td{
	border: 1px solid var(--color-black);
}



.link-text{
	text-decoration: underline;
}

.c-note dt:nth-of-type( n + 2 ){
	margin-top: 1em;
}

@media screen and (max-width: 1004px) {
	.c-title {
		font-size: 2.125rem;
	}
}

@media screen and (max-width: 767px) {
	.main {
	}

	.section {
		margin-top: 50px;
	}
	.box {
		border: 3px solid var(--color-black);
		border-radius: 16px;
		padding: 40px 20px 20px;
	}

	.c-box02 {
		padding: 16px;
	}

	.c-box02__lead {
		height: 32px;
	}

	.c-box02__lead02 {
		height: auto;
	}

	.c-title+.c-box02__lead {
		margin: 20px auto 0;
	}

	.c-box02__title {
		font-size: 1rem;
	}

	.c-box02__sub {
		font-size: 0.812rem
	}

	.c-box02__title+.c-box02__sub {
		margin: 6px 0 0;
	}

	.c-box02__title02 {
		font-size: 0.812rem;
	}

	.c-box02__heading.items-end {
		flex-direction: column;
		align-items: flex-start;
	}

	.c-box03 {
		padding: 16px;
	}

	.c-box03+.c-box03 {
		margin-top: 16px;
	}

	.c-box02__lead+.c-box03 {
		margin-top: 20px;
	}

	.c-box04__title {
		font-size: 0.625rem;
		padding: 10px;
	}

	.c-box04__desc {
		padding: 10px 20px;
	}

	.c-title {
		font-size: 1.625rem;
		margin-bottom: 24px;
	}

	.c-title span:before{
		height: 12px;
		left: -8px;
		bottom: 2px;
		width: calc( 100% + 16px );
	}

	.c-note {
		font-size: 0.75rem;
	}

}

.c-title--top {
	position: absolute;
	right: 0;
	left: 0;
	top: -1.1em;
	margin: 0 auto;
}

.c-title--small {
	font-size: 1.875rem;
	font-weight: bold;
	padding: 0.812rem 2.5rem;
	margin: 0 auto;
}

.c-title02 {
	font-size: var(--fontSize-lead);
	color: var(--color-blue);
	line-height: var(--lineHeight02);
}

.c-lead {
	font-size: 0.75rem;
	font-weight: bold;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.c-title--top{
		top: -1.3em;
	}
	.c-title--small {
		font-size: 0.937rem;
		padding: 0.5rem 1rem;
	}
	.c-lead {
		font-size: 0.687rem;
	}
}

.c-lead02 {
	font-size: var(--fontSize-lead02);
	text-align: center;
}

.c-box02+.c-lead02 {
	margin-top: 40px;
}

.c-list {
	list-style: none;
	font-size: var(--fontSize-lead02);
	position: relative;
}

.c-list li:before {
	content: "・";
}

.c-title02+.c-list {
	margin-top: 16px;
}

.c-list small {
	font-size: 1.125rem;
	padding-left: 2em;
}

.c-list02>li {
	padding-left: 1em;
	text-indent: -1em;
	position: relative;
}

.c-list02>li:before {
	content: "・";
}

.c-list02>li li:before {
	content: "・";
}


.c-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	padding: 16px 36px;
	border: 3px solid var(--color-black);
	color: var(--color-black);
	background: var(--color-white);
	font-size: 1.285rem;
	font-weight: 900;
	margin: 0 auto;
	position: relative;
}

.c-btn:before {
	content: "";
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-left: 12px solid var(--color-black);
}

.c-btn--small {
	padding: 6px 36px;
	font-size: 1.428rem;
}

@media screen and (max-width: 767px) {
	.c-list02>li:before {
		width: 0.4rem;
		height: 0.4rem;
		border-radius: 0.4rem;
		top: 0.35em;
	}

	.c-list {
		font-size: 0.812rem;
	}

	.c-list small {
		font-size: 0.687rem;
		padding-left: .75em;
	}

	.c-title02+.c-list {
		margin-top: 8px;
	}

	.c-btn {
		font-size: 0.875rem;
		padding: 12px 28px;
	}

	.c-btn:before {
		right: 6px;
		border: 5px solid transparent;
		border-left: 9px solid var(--color-black);
	}

	.c-box03+.c-btn {
		margin-top: 20px;
	}
}


/* HEADER */
.header {
}

.header__inner {
	padding: 12px 24px;
}

.header__logo {
	width: 230px;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.header__inner {
		padding: 12px 10px 10px;
	}

	.header__logo {
		width: 160px;
	}
}


/* MAIN VISUAL */
.mainvisual {
}

@media screen and (max-width: 767px) {
	.mainvisual {
	}
}



/* INTRO */
.intro__title{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 5.714rem;
	text-align: center;
	line-height: 1;
}
.intro__tag{
	text-align: center;
	margin-top: 14px;
}
.intro__text{
	font-size: 2.285rem;
	font-weight: 700;
	padding: 4px 110px;
	background: var(--color-yellow);
}
.intro__image{
	margin: 100px auto 0;
	max-width: 685px;
}
.intro__note{
	text-align: center;
	font-size: 0.857rem;
	margin: 8px auto 0;
}
@media screen and (max-width: 767px) {
	.intro__title{
		font-size: 12vw;
	}
	.intro__text{
		font-size: 6vw;
		padding: 4px 14vw;
	}
	.intro__image{
		margin: 50px auto 0;
		max-width: 85%;
	}
	.intro__note{
		font-size: 0.75rem;
	}
}




/* NEWS */
.news .c-title{
	border-bottom: 1px solid var(--color-gray);
	padding-bottom: 10px;
}
.news__list{
	max-width: 610px;
	margin: 0 auto;
	padding-top: 40px;
}
.news__item{
	border-bottom: 1px solid var(--color-gray);
	padding-bottom: 24px;
}
.news__item + .news__item{
	margin-top: 24px;
}
.news__item a{
	position: relative;
}
.news__item a:before{
	content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left: 9px solid var(--color-black);

}
.news__icon{
	color: var(--color-white);
	background: var(--color-black);
	text-transform: uppercase;
	padding: 1px 8px;
	font-size: 0.928rem;
	display: inline-block;
	margin-left: 24px;
}
.news__title{
	font-size: 1.142rem;
	margin-top: 10px;
	padding-right: 40px;
}
@media screen and (max-width: 1004px) {
}

@media screen and (max-width: 767px) {
	.news__list{
		padding-top: 0px;
	}
	.news__icon{
		margin-left: 16px;
		padding: 0 8px;
	}
	.news__title{
		font-size: 1rem;
		margin-top: 10px;
		padding-right: 40px;
	}
	.news__item time{
		font-size: 1rem;
	}
}




  /* モーダルを開くボタン */
  .modal__trigger {
	cursor: pointer;
	position: relative;
  }

  .modal__trigger::before{
	content: "";
    position: absolute;
    top: calc( 50% - 12px );
    right: 0;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left: 9px solid var(--color-black);
  }

  .modal__trigger:hover {
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
	opacity: .7;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
  }
  
  /* モーダル本体 */
  .modal__wrapper {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
  }
  
  .modal__layer {
	height: 100%;
	background: rgba(50, 50, 50, .85);
	cursor: pointer;
  }
  
  .modal__container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(calc(100% - 40px), 610px);
	min-height: 300px;
	max-height: 90%;
	background: #fff;
	overflow: auto;
  }

  .modal__inner {
	position: relative;
	height: 100%;
	padding: 70px 14px 32px;
  }

  
  /* モーダルを閉じるボタン */
  .modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 44px;
	height: 44px;
	background: var(--color-yellow);
	cursor: pointer;
	transition: opacity .6s;
  }
  
  .modal__close:hover {
	opacity: .6;
  }
  
  .modal__close:before,
  .modal__close:after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 2px;
	background: var(--color-black);
	content: '';
  }
  
  .modal__close:before {
	transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .modal__close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
  }
  
  /* モーダル内のコンテンツ */
  .modal__content{
	padding: 0 14px;
	border-top: 1px solid var(--color-black);
  }
  .modal__title{
	text-align: center;
	font-weight: 700;
	margin-top: 24px;
  }

  .modal__title time{
	font-size: 1rem;
  }

  .modal__title .news__title{
	margin-top: 10px;
	padding-right: 0;
	font-size: 1.428rem;
  }
  .modal__text{
	margin-top: 24px;
	font-family: 'Noto Sans JP','Noto Color Emoji', sans-serif;
  }
  .modal__text p{
	line-height: 1.8;
  }
  .modal__text .news__title02{
	font-weight: bold;
	font-size: 1rem;
  }
  .modal__text .news__title03{
	font-weight: bold;
  }
  .modal__text .news__title04{
	margin-top: 1em;
  }
  .modal__text p + .news__title02, .modal__text p + .news__title03{
	margin-top: 1.7em;
  }
  .modal__text .news__title02 + .news__title03{
	margin-top: .2em;
  }
  .news__title03 + .news__title04{
	margin-top: 0;
  }
  .modal__text .news__note{
	font-size: 0.687rem;
	line-height: 1.6;
	margin-top: .3em;
  }
  .modal__text img{
	display: block;
	max-width: 80%;
	margin-right: auto;
	margin-left: auto;
  }
  .modal__text img + p, .modal__text p + img, .modal__text p + img + img{
	margin-top: 24px;
  }

@media screen and (max-width: 767px) {
	.modal__title .news__title{
		padding-right: 0;
		font-size: 1.375rem;
	}
	.modal__text{
		margin-top: 20px;
	}
	.modal__text .news__title02{
		font-size: 0.875rem;
	  }
	  .modal__text img + p, .modal__text p + img, .modal__text p + img + img{
		margin-top: 16px;
	  }
}


/* TOKUTEN */
.tokuten__box{
	background: var(--color-black);
	text-align: center;
	color: var(--color-white);
	padding: 130px 40px;
}
.tokuten__lead{
	color: var(--color-yellow);
	font-size: 2.285rem;
	font-weight: 900;
}
.tokuten__text01{
	font-size: 1.285rem;
	margin-top: 10px;
}
.tokuten__text02{
	font-size: 2.142rem;
	font-weight: 700;
}
.tokuten__text03{
	margin-top: 60px;
}
.tokuten__boxTitle{
	display: inline-block;
	border: 2px solid var(--color-white);
	font-size: 2.142rem;
	font-weight: 700;
	padding: 2px 10px;
	min-width: 270px;
}
.tokuten__note{
	margin-top: 4px;
}
.tokuten__note02{
	font-size: 0.75rem;
	margin-top: 10px;
}
.tokuten__item{
	margin-top: 100px;
}
.tokuten__boxTitle + .tokuten__note{
	margin-bottom: 20px;
}
.tokuten__image{
	margin: 24px auto 0;
}
.tokuten__image .w475{
	max-width: 475px;
}
.tokuten__image .w96{
	max-width: 96px;
}
.tokuten__image + small{
	font-size:0.75rem;
	margin-top: 2px;
}
.tokuten__box .c-btn{
	margin-top: 60px;
}

@media screen and (max-width: 767px) {
	.tokuten__box{
		padding: 60px 20px;
	}
	.tokuten__lead{
		font-size: 4.8vw;
	}
	.tokuten__text01{
		font-size: 3vw;
	}
	.tokuten__text02{
		font-size: 4.4vw;
	}
	.tokuten__item{
		margin-top: 60px;
	}
	.tokuten__boxTitle{
		font-size: 1.285rem;
		min-width: 160px;
	}
	.tokuten__boxTitle + .tokuten__note{
		font-size: 0.75rem;
	}
	.tokuten__note{
		margin-top: 8px;
	}
	.tokuten__image .w475{
		max-width: 100%;
	}
	.tokuten__image .w96{
		max-width: 60px;
	}
	.tokuten__image + small{
		font-size: 0.687rem;
	}
}



/* VPC */
.vpc{
	text-align: center;
}
.vpc__image{
	margin-top: 20px;
}
.vpc__image + p{
	margin: 20px 0 30px;
}

@media screen and (max-width: 767px) {
	.vpc__image{
		max-width: 90%;
		margin: 20px auto 0;
	}
}


/* NOTES */
.notes__box{
	border: 1px solid var(--color-black);
	padding: 36px 120px;
}
.notes__box > ul > li + li{
	margin-top: 12px;
}
.notes__box > ul > li li{
	padding-left:1em;
	text-indent:-1em;
}
@media screen and (max-width: 767px) {
	.notes__box{
		padding: 32px 20px;
		font-size: 0.75rem;
	}
}



/* BASIC */
.basic__table dd + dt{
	margin-top: 24px;
}
.basic__image {
	max-width: 255px;
	margin-top: 6px;
}




/* PROGRAM */
#program {
	padding-top: 40px;
	margin-top: 60px;
}
.pg{
	display: flex;
}

.program__list {
	column-gap: 40px;
	flex-wrap: wrap;
}

.program__item {
	margin-top: 70px;
	width: 47.6%;
	background: var(--color-gray);
	border-radius: 24px;
	padding: 60px 24px 20px;
	position: relative;
}

.program__image, .program__desc {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.program__num {
	display: block;
	text-align: center;
	width: 90px;
	height: 90px;
	border-radius: 90px;
	border: 4px solid var(--color-white);
	background: var(--color-yellow);
	position: absolute;
	left: 0;
	right: 0;
	top: -45px;
	margin: 0 auto;
	padding-top: 1rem;
	font-weight: 700;
}

.program__num span {
	font-size: 1.75rem;
	line-height: 1;
}

.program__image {
	height: 90px;
	margin: 0 auto 6px;
}

.program__image img {
	height: 100%;
	width: auto;
}

.program__desc {
	width: 100%;
	text-align: center;
	margin-top: 16px;
}

.program__text {
	font-size: 1.25rem;
	line-height: var(--lineHeight02);
	font-weight: 700;
}
.pg_detail{
	text-align: left;
}
.program__price {
	color: var(--color-blue);
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1;
	position: relative;
	background: linear-gradient(transparent 70%, var(--color-yellow) 70%);
	padding: 0 8px;
	margin-top: .75rem;
}

.program__price .program__sup {
	color: var(--color-black);
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1rem;
}

.program__cashBack {
	font-size: 1.5rem;
	color: var(--color-blue);
	font-weight: 700;
	margin-top: 4px;
}

.program__bgWhite{
	background: var(--color-white);
	color: var(--color-blue);
	font-size: 1rem;
	line-height: 1.3;
	font-weight: 700;
	padding: 6px 8px;
	border-radius: 8px;
	margin-top: 6px;
}

.program__note{
	font-size: 0.75rem;
	margin-top: 6px;
}

.program__bgWhite + .program__note{
	margin-top: 10px;
}

.program__sub01 {
	font-size: 1.5rem;
}

.program__sub02 {
	font-size: 0.875rem;
}

.pg_title{
	display: inline-block;
	text-align: left;
	font-size: 1.5em;
}
.pg_title img{
	width: 200px;
	margin-bottom: -22px;
	padding: 0 2px;
}

.program__txtImage{
	width: 85.3%;
	margin: 40px auto 0;
	padding-top: 70px;
	position: relative;
}
.program__txtImage::before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	margin: 0 auto;
	background: url(../img/img_arw.png) center/cover no-repeat;
	width: 50px;
	height: 48px;
}

@media screen and (max-width: 1004px) {
	.program__list {
		column-gap: 24px;
	}
}

@media screen and (max-width: 767px) {
	#program {
		padding-top: 24px;
		margin-top: 36px;
	}
	.pg_detail{
		margin-left: -20px;
	}
	.program__list {
		display: block;
		margin-top: 24px;
	}

	.program__item {
		width: 100%;
		padding: 40px 12px 24px;
		border-radius: 16px;
		margin-top: 50px;
	}
	.program__num {
		width: 64px;
		height: 64px;
		font-size: 0.75rem;
		padding-top: 0.75em;
		top: -36px;
	}

	.program__num span {
		font-size: 1.25rem;
	}

	.program__text {
		font-size: 1.125rem;
	}

	.program__desc {
		font-size: 1rem;
	}

	.program__image {
		width: auto;
		height: 70px;
	}

	.program__price {
		display: inline-block;
		font-size: 2rem;
		margin-top: 4px;
	}

	.program__cashBack {
		font-size: 1.25rem;
		margin-top: 4px;
	}

	.program__image img {
		height: auto;
	}

	.program__point {
		font-size: 0.625rem;
	}
	.pg_title{
		text-align: left;
		font-size: 1.2em;
	}
	.new_pg{
		width: 70%;
		padding-top: 10px;
	}
	.program__bgWhite{
		font-size: 0.875rem;
		width: 100%;
	}
	.program__note{
		font-size: 0.687rem;
	}
	.program__txtImage{
		margin: 20px auto 0;
		padding-top: 34px;
		width: 72.6%;
	}
	.program__txtImage::before{
		width: 36px;
		height: 34px;
	}
}


/* RENEWAL */
.renewal {
	background: var(--color-lightblue);
	padding: 100px 0;
}

.renewal__inner {
	max-width: 860px;
}

.renewal__heading {
	text-align: center;
	position: relative;
}

.renewal__subtitle {
	max-width: 350px;
	margin: 0 auto 10px;
}

.renewal__title {
	font-size: var(--fontSize-title);
}

.renewal__balloon {
	max-width: 170px;
	position: absolute;
	right: 30px;
	top: -28px;
}

.renewal__list {
	margin: 20px auto 50px;
	max-width: 1000px;
}

.renewal__item {
	width: 48%;
}

.renewal__list .c-btn {
	margin-top: 16px;
}

.renewal__image img {
	display: block;
	margin: 0 auto;
}

.renewal__brand {
	width: 55%;
}


@media screen and (max-width: 767px) {
	.renewal {
		padding: 60px 0;
	}

	.renewal__subtitle {
		max-width: 180px;
		margin: 0 auto 4px;
	}

	.renewal__balloon {
		max-width: 70px;
		right: -6px;
		top: -20px;
	}

	.renewal__list {
		max-width: 100%;
		margin: 10px auto 30px;
	}

	.renewal__list .c-btn--pink {
		min-width: 90%;
	}

	.modal__wrap.u-sp .renewal__title {
		font-size: 1.5rem;
	}

	.modal__wrap.u-sp .renewal__list {
		flex-direction: column;
		max-width: 70%;
		margin: 10px auto 0;
	}

	.modal__wrap.u-sp .renewal__item {
		width: 100%;
	}

	.modal__wrap.u-sp .renewal__item+.renewal__item {
		margin-top: 20px;
	}

	.modal__wrap.u-sp .renewal__list+.c-btn {
		margin-top: 30px;
	}
}



/* ACCORDION */
.accordion {
    margin-bottom: 10px;
}
.accordion__title {
    font-size: 1.142rem;
	font-weight: 700;
	color: var(--color-yellow);
    padding: 16px;
	text-align: center;
    background-color: var(--color-black);
    cursor: pointer;
    position: relative;
}
.accordion__title::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 2px;
    background-color: var(--color-yellow);
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 1s;
}
.accordion__title::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 2px;
    background-color: var(--color-yellow);
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform .6s;
}
.accordion__title.show::before {
    opacity: 0;
}
.accordion__title.show::after {
    transform: translateY(-50%) rotate(180deg);
}
.accordion__content {
    display: none;
	border: 1px solid var(--color-black);
	padding: 24px;
}
.accordion__content + .accordion__title{
	margin-top: 20px;
}
.accordion dd + dt {
	margin-top: 14px;
}


/* REVO */
.revo .box {
	padding: 40px 60px;
	margin-top: 80px;
}

.revo__title {
	font-size: 1.25rem;
	font-weight: 700;
}

.revo__title+p {
	margin-top: 4px;
}

.revo__desc {
	margin: 30px auto;
}

.revo__list {
	column-gap: 2.25rem;
}


@media screen and (max-width: 767px) {
	.revo .box {
		padding: 20px;
		margin-top: 0;
	}

	.revo__title {
		font-size: 1rem;
	}

	.revo__subtitle {
		font-size: 0.812rem;
	}

	.revo__desc {
		font-size: 0.812rem;
		margin: 10px auto;
	}

	.revo__list {
		display: block;
	}

	.revo__list li+li {
		margin-top: 16px;
	}

	.revo__list .c-btn {
		width: 100%;
		font-size: 0.75rem;
		text-align: center;
		line-height: 32px;
	}

}


/* FOOTER */
.footer {
	margin-top: 160px;
	padding: 64px 0 140px;
	font-weight: bold;
	background: var(--color-black);
	color: var(--color-white);
}


.contact {
	text-align: center;
}

.contact__title{
	font-size: 1.142rem;
}

.contact__tel {
	font-size: 1.714rem;
	font-weight: 700;
	text-decoration:none !important;
}

.cotact__info{
	font-weight: 400;
}


.footer__logo {
	height: 26px;
}

.footer__logo+p {
	margin-top: 12px;
}

.footer__list {
	margin: 12px 0 0 auto;
}

.footer__logo {
	text-align: center;
	margin: 60px auto 0;
}

.footer__copyright {
	text-align:center;
	font-size: 0.857rem;
	font-weight: 400;
}

@media screen and (max-width: 767px) {
	.footer {
		padding: 40px 0 120px;
	}

	.contact {
		padding: 24px 0;
	}

	.contact__title {
		font-size: 1rem;
	}

	.contact__tel {
		margin: 10px auto 16px;
	}

	.cotact__info {
		font-size: 0.75rem;
	}

	.footer__logo {
		text-align: center;
		height: 22px;
	}

	.footer__logo+p {
		font-size: .75rem;
		text-align: center;
	}

	.footer__list {
		justify-content: center;
		margin: 20px auto 0;
		font-size: .75rem;
	}

	.footer__copyright {
		text-align: center;
		font-size: 0.687rem;
	}
}

/* PAGETOP */
.page-top a {
	height: 64px;
	width: 64px;
	position: fixed;
	right: 30px;
	bottom: 50px;
	background: #fff;
	border: solid 3px var(--color-blue);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.page-top a .pagetop__arrow {
	/*以下、修正前
	background: url("../../nyukai/img/balloon.svg") center/cover no-repeat;*/
	background: url("../img/balloon.svg") center/cover no-repeat;
	width: 22px;
	height: 16px;
}

@media screen and (max-width: 767px) {
	.page-top a {
		height: 54px;
		width: 54px;
		right: 24px;
		bottom: 24px;
	}
}


/* TUIBI */
.tuibi {
	margin: 0 auto;
	padding: 0;
	z-index: 2;
}

.tuibi .modal__open-label {
	margin: 0 auto;
	padding: 0;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 20px;
	z-index: 2;
	width: 70%;
	max-width: 538px;
	display: block;
	margin: 0 auto;
	background: var(--color-navy);
	color: var(--color-white);
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	text-decoration: none;
	line-height: 1;
	padding: .65em .4em;
	border-radius: 0;
}

@media screen and (max-width: 767px) {
	.tuibi .modal__open-label {
		bottom: 20px;
		width: 80%;
		height: 72px;
		line-height: 2.8;
		font-size: 1.25rem;
		padding: .4em;
	}
}



/* 230807add　注意事項部分 */
.attencion_words {
    text-align: center;
    color: white !important;
}

@media screen and (max-width: 767px) {
    .attencion_words {
        font-size: 0.75em;
    }
}