@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;
}

.header_underbox {
	background:url(../img/ver14/bg.webp)no-repeat center;
	background-size:cover;
	position: relative;
    padding: 3rem 0rem 0rem;
  }
  .header_underbox--serif {
	position: absolute;
	right: 0;
	top: 2%;
    width: 40%;
    z-index: 100;
  }
  
  .header_underbox--video {
	padding: 0 2rem;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 9%;
	width: 87%;
  }
p.pr {
	color: #000000;
	font-size: 10px;
	font-weight: bold;
	line-height: 1;
	margin:auto;
	text-align: left;
	position: absolute;
	top: 10px;
	left: 0;
	right:0;
	padding: 0 1rem;
	z-index: 1000;
	width: 100%;
	max-width: 640px;
  }
  
  @media screen and (min-width:640px) {
	p.pr {
	  font-size: 14px;
	}
  }

.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;
  }
  .u-bg-darkblue{
	background-color: #0d1d2f!important;
  }
  .u-pg-1{
	padding: 1rem;
  }
  .u-al-r{
	text-align: right;
  }

/******** slide-box ********/
.slider-wrapper-bg {
    background: url(../img/slider-bg.webp) no-repeat top center;
    background-size: contain;
    width: 100%;
    aspect-ratio: 750 / 421;
    padding: 20% 5% 0%!important; 
    box-sizing: border-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: #e02860;
	box-shadow: 0 6px 0 #bd1b4c;
	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-next:before {
	background-image: url('../img/lr_right.webp') !important;
	background-size: contain !important;
	content: '' !important;
	width: 30px !important;
	height: 30px !important;
	position: absolute;
	top: 30%;

	opacity: 1;
  }
  .slick-prev:before {
	background-image: url('../img/lr_left.webp') !important;
	background-size: contain !important;
	content: '' !important;
	width: 30px !important;
	height: 30px !important;
	position: absolute;
	top: 30%;

	opacity: 1;
  }
  .slick-prev {
	left: -30px!important;
  }
  .slick-next {
	right: 0!important;
  }
  .slick-prev,
  .slick-next {
	top: 20%;
	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: -2.5%;
	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:100px;
		animation: animationDawn 1s cubic-bezier(0.79, 0, 0.31, 1) forwards;
	}
	.charabox__contents-img2{
		max-width:100px;
		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.3rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.5;
	padding: 0 6rem 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: 100%; /* 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: #E02961 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: 3rem auto;
    max-width: 320px;
	width: 80%;
    padding: 10px 25px;
    color: #FFF;
	font-size:20px;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #d64771;
    border-radius: 100px;
	z-index: 10;
}
.to_next_btn:hover {
    border-bottom: solid 2px #be3244;
    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: #d64771;
	-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: #d64771;
	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: #d64771;
	-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;

}


/*section.btn*/
section.btn {
	background: #0d1d2f;
	padding: 10px 0 0;
	font-family: "Sawarabi Mincho";
	letter-spacing: 0.3rem;
  }
  
  .btn_img {
	width: 96%;
	margin: 15px auto 0;
  }
  
  p.btn_aft {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	margin: 15px 0 0;
	text-align: center;
	line-height: 1.6;
  }
  
  .green {
	color: #06c755;
	font-weight: bold;
  }
  
  @media screen and (min-width:640px) {
	section.btn {
	  padding: 10px 0 20px;
	}
  
	.btn_img {
	  width: 90%;
	  margin: 20px auto 0;
	}
  
	p.btn_aft {
	  font-size: 25px;
	  margin: 30px 0 0;
	}
  }
  
  
  /*setion.line_dtl 主なリスクについて*/
  .line_dtl {
	background: #0d1d2f;
	margin: 0;
	padding: 40px 0;
	font-family: "Sawarabi Mincho";
	letter-spacing: 0.3rem;
  }
  
  .line_dtl_ttl {
	text-align: center;
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
  }
  
  .line_dtl_txt {
	color: #fff;
	font-size: 12px;
	line-height: 1.4;
	margin: 20px 5px 0;
	text-align: center;
  }
  .clinic{
	background-color: #fff;
  }

  
label.box {
	padding: 1rem 1rem 1rem 4rem;
	display: flex;
	border-radius: 5px;
	border: 3px solid #ccc;
	cursor: pointer;
	transition: all 0.25s ease;
	font-size: 1.2rem;
    line-height: 1.5;
	font-weight: bold;
	background: #fff;
  }
  
  label.box span {
	font-size: 12px;
  }
  
  .caution {
	font-size: 12px;
	text-align: right;
	margin-top: 10px;
  }
  
  .card_q1 label.box:last-child,
  .card_q2 label.box:last-child,
  .card_q3 label.box:last-child,
  .card_q4 label.box:last-child,
  .card_q5 label.box:last-child {
	margin-bottom: 0;
  }
  
  input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  }
  
  input[type="radio"] {
	position: absolute;
	width: 30px;
	height: 30px;
	border: 4px solid #a9e1f7;
	border-radius: 50%;
	vertical-align: -2px;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 10px;
  }
  
  input[type="radio"]:checked {
	border: 4px solid #4dc4f3;
  }
  
  input[type="radio"]:checked:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #4dc4f3;
	border: 2px solid #4dc4f3;
	content: '';
  }
  
  input[type="radio"]:checked+label.box {
	border: 3px solid #4dc4f3;
  }
  
  input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  }
  
  input[type="checkbox"] {
	position: relative;
	width: 30px;
	height: 30px;
	border: 4px solid #a9e1f7;
	border-radius: 50%;
	vertical-align: -2px;
	top: 50px;
	left: 10px;
  }
  
  input[type="checkbox"]:checked {
	border: 4px solid #4dc4f3;
  }
  
  input[type="checkbox"]:checked:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #4dc4f3;
	border: 2px solid #4dc4f3;
	content: '';
  }
  
  input[type="checkbox"]:checked+label.box {
	border: 3px solid #4dc4f3;
  }
  

  .result{
	padding: 2rem 1rem;
	background-color: #e5fbfd;
  }