@charset "utf-8";

/************************************
 * Reset
************************************/
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
	line-height: 1.1;
}

a:not([class]) {
	color: currentColor;
}

img,
picture {
	max-width: 100%;
	display: block;
}

input,
button,
textarea,
select {
	font: inherit;
}

textarea:not([rows]) {
	min-height: 10em;
}

:target {
	scroll-margin-block: 5ex;
}

em {
	font-style: normal;
}

/************************************
 * Base
 ************************************/

:root {
	--base-width: 375;
	/* 基準幅 */
	--max-width: 640;
	/* 最大幅 */
	--base-font-size: 10;
	/* 基準フォントサイズ (10px) */
	/* 最大横幅サイズ時の最大フォントサイズ */
	--max-font-size: calc((var(--base-font-size) / var(--base-width)) * var(--max-width) * 1px);
}

html {
	/** 以下指定により「1rem = 横幅が --base-width 時の 10px」となる */
	font-size: min(calc((var(--base-font-size) / var(--base-width)) * 100vw), var(--max-font-size));
	scroll-behavior: smooth;
}

body {
	background: #d9f1fa;
	color: #242424;
	font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
	font-style: normal;
	font-size: 1.4rem;
	letter-spacing: 0.1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 1.4rem;
}

img,
video {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

a {
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.2s;
}

@media (hover: hover) {
	a:hover {
		opacity: 0.6;
		transition: opacity 0.2s;
	}

	button:hover {
		cursor: pointer;
	}

	label:hover {
		cursor: pointer;
	}
}

input,
textarea,
select,
button {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	font-family: inherit;
	font-size: inherit;
	font-size: 1.4rem;
}

section {
	position: relative;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
	outline: auto;
}

button {
	border: none;
	border-radius: 0.7rem;
	cursor: pointer;
}


/* SP：コンテンツの長さが短い場合でもフッター下に空白を入れないように調整 */
html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

.page-wrap {
	min-height: 100vh;
	/* 画面全体の高さを確保 */
	display: flex;
	flex-direction: column;
	background-color: #fff;
}

main {
	flex: 1;
	/* 残りのスペースを埋める */
}

.p5 {
	background-color: #d9f1fa;
}

/* /SP：コンテンツの長さが短い場合でもフッター下に空白を入れないように調整 */

/*Page*/
.page-wrap {
	width: 100%;
	flex-direction: column;
	max-width: calc(var(--max-width) * 1px);
	margin: 0 auto;
	overflow-x: hidden;
}

/* fv */
.fv {
	position: relative;
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}

.fv__video {
	position: absolute;
	top: 51.5%;
	left: 11%;
	width: 78%;
	aspect-ratio: 16 / 9;
}

.fv__video iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.end__video {
	position: absolute;
	top: 51%;
	left: 11%;
	width: 78%;
	aspect-ratio: 16 / 9;
}

.end__video iframe {
	width: 100%;
	height: 100%;
	border: none;
}



/************************************
 * Utility
************************************/
.u-fs--1 {
	font-size: 1rem;
}

.u-mb--1 {
	margin-bottom: 1rem;
}

.u-mb--2 {
	margin-bottom: 2rem;
}

.u-mb--3 {
	margin-bottom: 3rem;
}

.u-mb--4 {
	margin-bottom: 4rem;
}

.u-mb--5 {
	margin-bottom: 5rem;
}

/******** slide-box ********/
.slide-box__inner {
	width: calc(100% - (1.5rem * 2));
	margin: 1.5rem auto 0 auto;
	padding: 1.5rem;
	background-color: #fff;
	border-radius: 0.7rem;
}

.slide-box__head {
	margin-bottom: 1.5rem;
	display: flex;
	align-items: flex-start;
	-moz-column-gap: 2%;
	column-gap: 2%;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.3;
	align-items: center;
}

.slide-box__head-number {
	width: 12%;
}

.slide-box__btn-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.slide-box__btn-wrap.column-one .slide-box__select-btn {
	width: 100%;
}

.slide-box__btn-wrap.column-two .slide-box__select-btn {
	width: 50%;
}

.slide-box__select-btn {
	padding: 1rem;
	margin-bottom: calc(3% + 6px);
	background-color: #015fea;
	box-shadow: 0 6px 0 #015fea;
	color: #fff;
	line-height: 1.3;
	transition: all 0.2s;
	font-weight: bold;
}

@media (hover: hover) {
	.slide-box__select-btn:hover {
		transform: translateY(6px);
		box-shadow: none;
		transition: all 0.2s;
	}
}

.slide-box__prev-btn {
	margin-top: 0.5rem;
	padding: 0.5rem 0;
	width: 42%;
	background-color: transparent;
	font-size: 1.2rem;
	text-align: left;
}

.slide-title {
	margin: 0 auto;
}

.slider-wrapper {
	padding: 0 40px;
	overflow-x: hidden;
}

.slider-wrapper ul {
	margin: 0 auto;
}

.slider-wrapper ul li img {
	width: 100%;
}

.slick-prev {
	left: -40px;
}

.slick-next {
	right: -60px;
}

.slick-prev,
.slick-next {
	top: 40%;
	width: 50px;
	height: 50px;
	z-index: 10;
}

.slide-items__textbox {
	padding-top: 5px;
	color: #000;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	font-size: 11px;
}

.slide-items__textbox p {
	line-height: 1.4;
	font-size: 10px;
	letter-spacing: 0.5px !important;
}

.slide-items__textbox p:first-child {
	font-weight: bold;
}

.slide-items__textbox p:last-child {
	text-align: right;
}

@media screen and (min-width: 640px) {
	.slide-items__textbox p {
		font-size: 13px;
	}
}

@media screen and (max-width: 375px) {
	.slide-items__textbox p {
		font-size: 9px;
	}
}



.thanks_txt {
	font-size: 26px;
	font-weight: bold;
	font-family: sans-serif;
	text-align: center;
	padding: 20px;
	color: #000;
	line-height: 1.3;
}

.sp {
	display: none;
}

@media screen and (max-width: 540px) {
	.thanks_txt {
		font-size: 16px;
	}

	.sp {
		display: block;
	}
}

.img.btn {
	margin: 0 10px 1.5em;
}

.q_bottom {
	padding: 1rem 2rem;
}


.js-csl {
	opacity: 0;
}

.btn {
	margin: 0 20px 0 20px;
}



/************************************
   * chara_box
  ************************************/
.charabox__contents {
	position: relative;
}





/************************************
   * animation
  ************************************/
.animate__vibration {
	-webkit-animation: vibration 0.15s infinite;
	animation: vibration 0.15s infinite;
}

@-webkit-keyframes vibration {

	0%,
	75%,
	100% {
		transform: translateY(0);
	}

	25%,
	50% {
		transform: translateY(2px);
	}
}

@keyframes vibration {

	0%,
	75%,
	100% {
		transform: translateY(0);
	}

	25%,
	50% {
		transform: translateY(2px);
	}
}

.animate__pudding {
	-webkit-animation: pudding 1.5s ease-in infinite;
	animation: pudding 1.5s ease-in infinite;
}

@-webkit-keyframes pudding {
	0% {
		transform: scale(1, 0.95);
	}

	45% {
		transform: scale(1, 1);
	}

	65% {
		transform: scale(1, 0.93);
	}

	100% {
		transform: scale(1, 0.95);
	}
}

@keyframes pudding {
	0% {
		transform: scale(1, 0.95);
	}

	45% {
		transform: scale(1, 1);
	}

	65% {
		transform: scale(1, 0.93);
	}

	100% {
		transform: scale(1, 0.95);
	}
}

.animate__sceneToTop {
	-webkit-animation: clipPathToTop 1.5s ease-in-out forwards;
	animation: clipPathToTop 1.5s ease-in-out forwards;
}

.animate__sceneToBottom {
	-webkit-animation: clipPathToBottom 1.5s ease-in-out forwards;
	animation: clipPathToBottom 1.5s ease-in-out forwards;
}

.animate__sceneToRight {
	-webkit-animation: clipPathToRight 1.5s ease-in-out forwards;
	animation: clipPathToRight 1.5s ease-in-out forwards;
}

.animate__sceneToLeft {
	-webkit-animation: clipPathToLeft 1.5s ease-in-out forwards;
	animation: clipPathToLeft 1.5s ease-in-out forwards;
}

.animate__sceneToBottomRight {
	-webkit-animation: clipPathToBottomRight 1.5s ease-in-out forwards;
	animation: clipPathToBottomRight 1.5s ease-in-out forwards;
}

@-webkit-keyframes clipPathToTop {
	0% {
		-webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
		clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@keyframes clipPathToTop {
	0% {
		-webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
		clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@-webkit-keyframes clipPathToBottom {
	0% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@keyframes clipPathToBottom {
	0% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@-webkit-keyframes clipPathToRight {
	0% {
		-webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
		clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@keyframes clipPathToRight {
	0% {
		-webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
		clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@-webkit-keyframes clipPathToLeft {
	0% {
		-webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
		clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@keyframes clipPathToLeft {
	0% {
		-webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
		clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@-webkit-keyframes clipPathToBottomRight {
	0% {
		-webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
		clip-path: polygon(0 0, 0 0, 0 0, 0 0);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 200% 0, 0 200%);
		clip-path: polygon(0 0, 100% 0, 200% 0, 0 200%);
		opacity: 1;
	}
}

@keyframes clipPathToBottomRight {
	0% {
		-webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
		clip-path: polygon(0 0, 0 0, 0 0, 0 0);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 200% 0, 0 200%);
		clip-path: polygon(0 0, 100% 0, 200% 0, 0 200%);
		opacity: 1;
	}
}

/* Delay */
.animate__delay-100ms {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
	transition-delay: 0.1s;
}

.animate__delay-200ms {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
	transition-delay: 0.2s;
}

.animate__delay-300ms {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	transition-delay: 0.3s;
}

.animate__delay-400ms {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	transition-delay: 0.4s;
}

.animate__delay-500ms {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
	transition-delay: 0.5s;
}

.animate__delay-600ms {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
	transition-delay: 0.6s;
}

.animate__delay-700ms {
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
	transition-delay: 0.7s;
}

.animate__delay-800ms {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	transition-delay: 0.8s;
}

.animate__delay-900ms {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
	transition-delay: 0.9s;
}

.animate__delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	transition-delay: 1s;
}


/******** Carousel ********/
.csl__box {
	background-color: #fff;
	position: relative
}

.charabox__contents-img {
	position: absolute;
	top: 4%;
	right: 0%;
	max-width: 75px;
	z-index: 0;

}

.charabox__contents-img2 {
	position: absolute;
	top: 21.5%;
	right: 2%;
	max-width: 75px;
	z-index: 100;

}

.animated-sway {
	animation: sway 3s linear 0s infinite;
	transition: 0.8s;
}

@keyframes sway {
	0% {
		transform: translateX(0);
	}

	25% {
		transform: translateX(-5px);
	}

	50% {
		transform: translateX(5px);
	}

	75% {
		transform: translateX(-5px);
	}

	100% {
		transform: translateX(0);
	}
}

.charabox__contents-img--down {
	position: absolute;
	top: 100%;
	right: 2%;
	max-width: 75px;
	z-index: 10000;
}

@media screen and (min-width: 768px) {
	.charabox__contents-img {
		max-width: 120px;
		animation: animationDawn 1s cubic-bezier(0.79, 0, 0.31, 1) forwards;
	}

	.charabox__contents-img2 {
		max-width: 120px;
		animation: animationDawn 1s cubic-bezier(0.79, 0, 0.31, 1) forwards;
	}
}




.csl__head {
	width: 100%;
	margin-bottom: 1.5rem;
	-moz-column-gap: 2%;
	column-gap: 2%;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.3;
}

.csl__head h2 {
	font-size: 1.8rem;
	font-weight: bold;
	text-align: left;
	line-height: 1.5;
	padding: 0 2rem;
}

.csl__head h2 span {
	display: block;
	font-size: 1.5rem;
}

.csl__head__img {
	width: 50%;
	margin: 0 auto;
	padding: 1rem;
}

.count_nam {
	width: 20%;
	padding: 1.5% 2%;
	text-align: center;
	font-size: 1.2rem;
	font-weight: normal;
	background-color: #FDE5E5;
	border-radius: 50px;
}

.csl__head-number {
	width: 20%;
}

.csl__btn-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 1rem;
	padding: 0rem 3rem 2rem;
}

.csl__btn-wrap>* {
	width: calc((100% - 1rem) / 2);
	/* gapが1rem×2＝2rem */
}

.p5 {
	display: block;
}

.csl__checkbox {
	transition: all .2s;
	display: block;
	border: none;
	cursor: pointer;
}

.csl__checkbox input[type='checkbox'] {
	display: none;
}

.csl__btn-inner:has(.csl__checkbox img:hover) {
	border: #015fea solid 2px;
	border-radius: .7rem;
	padding: .1rem;
}

.csl__prev-btn {
	margin-top: 0.5rem;
	padding: 0.5rem;
	width: 20%;
	background-color: #efefef;
	font-size: 1.2rem;
}

@media screen and (max-width:640px) {}

/******** / Carousel ********/

/******** Warning contents ********/
.warning-contents {
	padding: 4rem 0 2rem;
	text-align: center;
	font-size: 1.2rem;
	color: #fff;
}

.warning-contents__title {
	margin-bottom: 1rem;
	font-weight: bold;
}

/******** / Warning contents ********/

/************************************
 * JS
************************************/
/******** Carousel ********/
.js-csl {
	opacity: 0;
}

.js-csl__dynamic-box-finished {
	display: none;
}

/******** / Carousel ********/


/*section.line_dtl*/
.line_dtl {
	background: #FDE5DF;
}

.line_dtl_txt {
	color: #333;
	font-size: 14px;
	line-height: 1.5;
	margin: 10px 10px 0;
	padding: 0 20px 20px 20px;
	text-align: center;
}

@media screen and (max-width:540px) {
	.line_dtl_txt {
		font-size: 12px 12px 0;
	}
}


/*footer.page-footer*/
.page-footer {
	padding: 2rem 1rem;
	text-align: center;
	font-size: 1rem;
	color: #000;
	background-color: #fff;
	position: relative;
	z-index: 2;
}

.page-footer a {
	margin: 0 0.5rem;
}

.f_copy {
	font-size: 0.8rem;
	padding: 2rem;
	color: #333;
}

/******** カード ********/
.sec-worries__row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 1rem;
	margin-bottom: 1.7rem;

}

.sec-worries__item {
	position: relative;
	cursor: pointer;
}

.sec-worries__item .flip-card {
	top: 0;

}

.flip-card {
	width: 100%;
	height: 100%;
	left: 0;
	background-color: transparent;
	position: relative;
}

.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.6s;
}

.flip-card-front img {
	border: 0.3rem solid #000;
	border-radius: 0.9rem;
	box-shadow: 0px 0px 3rem rgba(0, 0, 0, 0.25);
}


/******** / カード ********/

/******** to_next_btn ********/
.to_next_btn {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	max-width: 320px;
	width: 80%;
	padding: 10px 25px;
	color: #FFF;
	font-size: 20px;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: #015fea;
	border-radius: 100px;
	z-index: 10;
}

.to_next_btn:hover {
	border-bottom: solid 2px #015fea;
	transform: translateY(3px);
}

@media screen and (min-width: 768px) {
	.to_next_btn {
		width: 300px;
		max-width: 100%;
		font-size: 24px;
		padding: 15px 30px;
	}
}


.auraBtn:before {
	-webkit-animation: auraBtn 2s ease-out infinite;
	animation: auraBtn 2s ease-out infinite;
}

.auraBtn:after {
	-webkit-animation: auraBtn 2s ease-out 1s infinite;
	animation: auraBtn 2s ease-out 1s infinite;
}

.auraBtn:before,
.auraBtn:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 100vh;
	background: #015fea;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: -1;
}


@keyframes auraBtn {
	0% {
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
		opacity: 1
	}

	90% {
		opacity: .1
	}

	to {
		-webkit-transform: scale(1.2, 1.5);
		transform: scale(1.2, 1.5);
		opacity: 0
	}
}

.cta_box {
	margin: 40px auto;
	position: relative;
}

.cta_box img.attachment {
	position: relative;
	width: 70%;
	margin: 0 auto;
	z-index: 2;
}

.ripples {
	position: relative;
	display: block;
	z-index: 1;
	max-width: 540px;
	width: 80%;
	font-size: 24px;
	padding: 20px 30px;
	text-align: center;
	background: #015fea;
	border-radius: 100vh;
	color: #fff;
	margin: 0 auto;
	font-weight: bold;
}

.ripples:before {
	-webkit-animation: auraBtn 2s ease-out infinite;
	animation: auraBtn 2s ease-out infinite;
}

.ripples:after {
	-webkit-animation: auraBtn 2s ease-out 1s infinite;
	animation: auraBtn 2s ease-out 1s infinite;
}

.ripples:before,
.ripples:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 100vh;
	background: #015fea;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: -1;
}



/******** /to_next_btn ********/


/* ポップアップ */
.js-fixed {
	position: fixed;
	position: -webkit-fixed;
	width: 100%;
	height: 100%;
	text-align: center;
	left: 0%;
	right: 0%;
	margin: auto;
}

.js-bg_color {
	background-color: #FBD3D8;
	margin-top: -1px;
	padding: 0px 20px 20px;
	border-radius: 0px 0px 10px 10px;
	text-align: center;
}

.js-overlay {
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .3);
	position: fixed;
	z-index: 10;
	left: 0;
	top: 0;
}


.js-modal_innner {
	width: 90%;
	max-width: 600px;
	display: block;
	position: fixed;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	z-index: 2000;

}

.js-modal img.js-modal_popup-img {
	width: 100%;
	border-radius: 10px 10px 0px 0px;
}

.js-modal_close {
	display: block;
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #333;
	border: 2px solid #ffffff;
	z-index: 1000;
	right: 0;
	top: 0;
	margin-top: -15px;
	margin-right: -15px;
}


.js-modal_close:before,
.js-modal_close:after {
	content: "";
	display: block;
	position: absolute;
	background: #fff;
	z-index: 3000;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 25px;
}

.js-modal_close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.js-modal_close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.is-animated {
	animation: zoomIn 1s cubic-bezier(0.79, 0, 0.31, 1) forwards;
	position: fixed;
	inset: 0;
	margin: auto;
	top: 12.5%;
}

@media screen and (max-width: 30em) {
	.is-animated {
		top: 25%;
	}
}

@keyframes zoomIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.sub_txt {
	text-align: center;
	font-size: 12px;
	margin-top: 40px;
}

.note {
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
	font-size: 0.8rem;
}

@media screen and (max-width: 30em) {
	.note {
		margin-top: 20px;
		margin-bottom: 20px;
		text-align: center;
		font-size: 1rem;
	}
}

.comment {
	text-align: right;
	margin: 30px 15px 10px 15px;
	font-size: 12px;
}

.bold {
	font-weight: bold;

}


.end {
	background: #0d1d2f;
	padding-bottom: 30px;
}

.end p {
	text-align: center;
	color: #FFF;
}


.end_comment {
	margin: 20px;
	text-align: center;
	font-size: 14px;
}

.end_comment p {
	font-weight: bold;
	font-size: 16px;
}

.bgy {
	background: linear-gradient(transparent 50%, #ffff66 0%);
}

.green {
	color: #2acf69;

}

/* ===== ボタン位置 ===== */
.fv_last {
	position: relative;
}

.fv_last img {
	display: block;
	width: 100%;
}

.fv_last .btn_img {
	position: absolute;
	left: 50%;
	bottom: 5.5%;
	transform: translateX(-50%);
	width: 80%;
	max-width: 420px;
	z-index: 9999;
}

/* ===== CTAボックス ===== */
.btn_animate {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 100%;
	will-change: transform;
}

/* ===== 画像（ここでふわふわ） ===== */
.btn_img img {
	width: 100%;
	display: block;
	animation: fuwafuwa 1.5s infinite;
}

/* ===== シャイン ===== */
.btn_animate::after {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 50%;
	height: 101%;
	background: #fff;
	transform: skewX(-25deg);
	animation: shine 1.5s infinite;
	pointer-events: none;
}

/* ===== シャイン動き ===== */
@keyframes shine {
	0% {
		left: -120%;
	}

	25% {
		left: 120%;
	}

	100% {
		left: 120%;
	}
}

/* ===== ふわふわ ===== */
@keyframes fuwafuwa {
	0% {
		transform: scale(1);
	}

	25% {
		transform: scale(1.05);
	}

	50% {
		transform: scale(1);
	}

	100% {
		transform: scale(1);
	}
}

/* ===== タップ縮み ===== */
.btn_img a:active img {
	transform: scale(0.95);
}
