@charset "UTF-8";
/* ===================================================================
	CSS information
	file name	:	style.css
	style info : LPスタイル
=================================================================== */

/* ------------------------
	common
------------------------ */
html {
	font-family: "Noto Sans JP", "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
}

img {
	max-width: 100%;
	height: auto;
}
input {
	max-width: 100%;
}
.content {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	text-align: center;
	background-color: #fff;
	box-shadow: 0 0 10px 2px #d6d6d6;
	overflow: hidden;

	padding-bottom: 80px; /* botのぶん下余白空ける */
}

body.modal-open {
	overflow: hidden;
}

.grid-box {
	display: grid;
}
.grid-box.grid-2column-box {
	grid-template-columns: 1fr 1fr;
	direction: rtl;
}
.grid-box > .grid {
	grid-area: 1 / 1;
}

/* ------------------------
	cv
------------------------ */
.cv {
	background: url(../img/cv_bg.png) no-repeat center bottom / 100% auto, #f1b1a9;
}

.cv .btn_box {
	position: relative;
	margin-bottom: max(calc(-6/750 * 100vw), -6px);
}
.btn_box .btn {
	width: min(calc(650/750 * 100vw), 650px);
	margin: 0 auto;
	animation: move_btn 2s ease-in infinite;
}
/* ------ cv move_btn_anime ------ */
@keyframes move_btn {
	20%, 53%, 80%, from, to {
	  transform: translate3d(0, 0, 0);
	  animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	40%,  43% {
	  transform: translate3d(0, -10px, 0);
	  animation-timing-function: cubic-bezier(.755, .050, .855, .060);
	}
  
	70% {
	  transform: translate3d(0, -4px, 0);
	  animation-timing-function: cubic-bezier(.755, .050, .855, .060);
	}
	90% {
	  transform: translate3d(0, 0, 0);
	}
}

/* ------ cv modal ------ */
/* text link */
.cv .modal-link-list {
	margin-top: min(calc(23/750 * 100vw), 23px);
	margin-bottom: min(calc(56/750 * 100vw), 56px);
	display: grid;
	gap: min(calc(48/750 * 100vw), 48px);
}
.js-modal-open {
	display: inline-block;
	text-decoration: underline;
	cursor: pointer;
	appearance: none;
	border: none;
	background: none;
	padding: 0;
	color: #00f;
	font-size: min(calc(24/750 * 100vw), 24px);
	letter-spacing: 0.1em;
}

/* modal */
.modal {
	border: none;
	font-size: min(calc(24/750 * 100vw), 24px);
	padding: 0;
	width: 89.33%;
	max-width: 670px;
	overflow: hidden;
	border-radius: min(calc(16/750 * 100vw), 16px);
}
.modal p + p {
	margin-top: 1em;
}
.modal::backdrop {
	background: rgb(0 0 0 / 0.8);
}
.modal_scroll {
	max-width: 100%;
	padding: 2em 1.8em;
	height: auto;
	max-height: 80dvh;
	overflow-y: scroll;
}

/* ------ cv slider ------ */
.cv .slick-dotted.slick-slider {
	margin-bottom: 0;
}
.cv .cv_slider .slick-list {
	width: min(100vw, 750px);
	padding-bottom: min(calc(122/750 * 100vw), 122px);
}
.cv .cv_slider .slick-slide {
	margin: 0 min(calc(13/750 * 100vw), 13px);
	width: min(calc(540/750 * 100vw), 540px);
	box-shadow: min(calc(10/750 * 100vw), 20px) min(calc(10/750 * 100vw), 20px) min(calc(20/750 * 100vw), 20px) rgb(0 0 0 / 0.2);
}

.cv .cv_slider .slick-dots {
	bottom: min(calc(63/750 * 100vw), 63px);
}
.cv .cv_slider .slick-dots li {
	background-color: #3f2810;
	border-radius: 50%;
	width: min(calc(14/750 * 100vw), 14px);
	height: min(calc(14/750 * 100vw), 14px);
	margin: 0 min(calc(17/750 * 100vw), 17px);
}
.cv .cv_slider .slick-dots li.slick-active {
	background-color: #d96a84;
}
.cv .cv_slider .slick-dots li button {
	max-width: 100%;
	max-height: 100%;
	padding: 0;
}
.cv .cv_slider .slick-dots li button::before {
	content: none;
}

/* ------------------------
	fv
------------------------ */
.fv {
	background: url(../img/fv_bg_top.png) no-repeat center top / 100% auto, url(../img/fv_bg_bottom.png) no-repeat center bottom / 100% auto;
	position: relative;
}

.fv .ttl-copy-box {
	position: absolute;
	top: min(calc(133/750 * 100vw), 133px);
	left: 0;
}

.fv .icon-box {
	margin-bottom: max(calc(-218/750 * 100vw), -218px);
}
.fv .icon-box .icon-01 {
	transition-delay: 0s;
}
.fv .icon-box .icon-03 {
	transition-delay: 0.5s;
}

.fv .fv-07 {
	background: url(../img/fv_07_bg.png) no-repeat left top / 100% auto;
	position: relative;
}
.fv .fv-07::after {
	background: url(../img/fv_07_01.png) no-repeat left bottom / 100% auto;
}

.fv-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
	overflow: hidden;
	border-radius: 0 0 min(calc(375 / 750 * 100vw), 375px) min(calc(375 / 750 * 100vw), 375px);
}

.fv-video video {
  width: 100%;
  height: auto;
}

.fv hgroup h1,
.fv hgroup p,
.fv > p {
  position: relative;
  z-index: 1;
}

.fv hgroup h1::before {
	content: "";
  position: absolute;
  top: min(calc(85/750 * 100vw), 85px);
  left: 50%;
  transform: translatex(-50%);
	width: min(calc(140/750 * 100vw), 140px);
	height: min(calc(140/750 * 100vw), 140px);
	border-radius: 50%;
	border: min(calc(10/750 * 100vw), 10px) solid rgba(255, 255, 255, 0.7);
	box-shadow: 0 0 min(calc(15/750 * 100vw), 15px) min(calc(5/750 * 100vw), 5px) rgba(255, 255, 255, 0.6), 0 0 min(calc(40/750 * 100vw), 40px) min(calc(10/750 * 100vw), 10px) rgba(255, 255, 255, 0.4);
	filter: blur(4px);
  padding: min(calc(62/750 * 100vw), 62px);
	-webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
  mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
	z-index: -1;
}

/* ------------------------
	series-about
------------------------ */
.series-about {
	background: url(../img/series_about_bg_bottom.png) no-repeat center bottom / 100% auto, url(../img/series_about_bg_top.png) no-repeat center top / 100% auto;
}

/* ------------------------
	about
------------------------ */
.about .ttl-icon.fadeInUp.trigger {
	transition-delay: 0s;
}
.about .ttl::after{
	background: url(../img/about_ttl_02.png) no-repeat left bottom / 100% auto;
	transition-delay: 0.75s;
}

.about .about-02.fadeInUp.trigger {
	transition-delay: 0s;
}

.about .about-06 {
	margin-bottom: max(calc(-74/750 * 100vw), -74px);
}
.about .about-07 {
	margin-bottom: max(calc(-121/750 * 100vw), -121px);
}

/* ------------------------
	doctor
------------------------ */
.doctor {
	background: url(../img/doctor_bg.png) no-repeat center top / 100% auto, #e0e8ee;
}

.doctor .fadeInUp.trigger {
	transition-delay: 0s;
}

/* ------------------------
	nayami
------------------------ */
.nayami {
	background: url(../img/nayami_bg.png) no-repeat center / cover;
}

.nayami .chk-area {
	width: 50%;
	margin: 0 0 0 auto;
}

.nayami .chk-box .chk-01 {
	transition-delay: 0s;
}
.nayami .chk-box .chk-02 {
	transition-delay: 0.5s;
}
.nayami .chk-box .chk-03 {
	transition-delay: 1s;
}

/* ------------------------
	fact
------------------------ */
.fact {
	background: url(../img/fact_bg.png) no-repeat center top / 100% auto;
	margin-top: max(calc(-166/750 * 100vw), -166px);
	padding-bottom: min(calc(416/750 * 100vw), 416px);
}

.fact .ttl::after {
	background: url(../img/fact_ttl_01.png) no-repeat left top / 100% auto;
}

.fact .fact-01 {
	margin-bottom: max(calc(-28/750 * 100vw), -28px);
}

/* ------------------------
	approach
------------------------ */
.approach {
	background: url(../img/approach_bg.png) no-repeat center top / 100% auto;
	margin-top: max(calc(-416/750 * 100vw), -416px);
}

.approach .ttl::after {
	background: url(../img/approach_ttl_01.png) no-repeat left top / 100% auto;
}

/* ------------------------
	point-01
------------------------ */
.point-01 {
	background: url(../img/point_01_bg.png) no-repeat center top / 100% auto;
}

.point-01 .video-box {
	width: 100%;
	height: min(calc(620/750 * 100vw), 620px);
	overflow: hidden;
	margin: min(calc(44/750 * 100vw), 44px) auto min(calc(76/750 * 100vw), 76px);
	padding-right: min(calc(22/750 * 100vw), 22px);
}
.point-01 .video-box video {
	max-width: 100%;
	max-height: 100%;
}

.point-01 .point-01-06 {
	margin-top: max(calc(-90/750 * 100vw), -90px);
}

/* ------------------------
	point-02
------------------------ */
.point-02 {
	background: url(../img/point_02_bg.png) no-repeat center top / 100% auto;
}

/* ------------------------
	point-03
------------------------ */
.point-03 {
	background: url(../img/point_03_bg.png) no-repeat center top / 100% auto;
}

.point-03 .day-night {
	background: url(../img/point_03_daynight_bg.png) no-repeat center top / 100% auto;
}

/* slick custom */
.point-03 .slick-slider {
	margin-bottom: 0;
}
.point-03 .slick-slider .slick-list {
	width: 89.33%;
	max-width: 670px;
	margin: 0 auto;
}
.point-03 .slick-slider .slick-slide {
	width: min(100vw, 750px);

}

.point-03 .slick-slider .slick-arrow {
	z-index: 2;
	top: 52%;
	width: min(calc(44/750 * 100vw), 44px);
	height: min(calc(44/750 * 100vw), 44px);
	background: url(../img/point_03_slide_arrow.png) no-repeat center / contain;
	transform-origin: 50% 25%;
}
.point-03 .slick-slider .slick-arrow::before {
	font-size: 0;
}
.point-03 .slick-slider .slick-prev {
	left: 2.5%;
}
.point-03 .slick-slider .slick-next {
	right: 2.5%;
	transform: scale(-1);
}

.point-03 .slick-slider .slick-dots {
	bottom: max(calc(-73/750 * 100vw), -73px);
}
.point-03 .slick-slider .slick-dots li {
	background-color: #e2d9d0;
	border-radius: 50%;
	width: min(calc(21/750 * 100vw), 21px);
	height: min(calc(21/750 * 100vw), 21px);
	margin: 0 min(calc(16/750 * 100vw), 16px);
}
.point-03 .slick-slider .slick-dots li.slick-active {
	background-color: #3f2810;
}
.point-03 .slick-slider .slick-dots li button {
	max-width: 100%;
	max-height: 100%;
	padding: 0;
}
.point-03 .slick-slider .slick-dots li button::before {
	content: none;
}

/* ------------------------
	voice
------------------------ */
.voice {
	background: url(../img/voice_bg.png) no-repeat center top / 100% auto, #eeeff4;
}
.voice-01 {
	background: url(../img/voice_01_bg.png) no-repeat center top / 100% auto;
}
.voice-02 {
	background: url(../img/voice_02_bg.png) no-repeat center top / 100% auto;
}

/* ------------------------
	formula
------------------------ */
.formula {
	background: url(../img/formula_bg.png) no-repeat center top / cover;
	padding-bottom: min(calc(267/750 * 100vw), 267px);
}
.formula .ttl-area {
	margin-bottom: min(calc(586/750 * 100vw), 586px);
}

.formula .free {
	z-index: 3;
}
.formula .icon-01.fadeInUp.trigger {
	transition-delay: 0s;
}
.formula .icon-03.fadeInUp.trigger {
	transition-delay: 0.5s;
}
.formula .icon-04.fadeInUp.trigger {
	transition-delay: 0.75s;
}
.formula .icon-05.fadeInUp.trigger {
	transition-delay: 1s;
}

/* ------------------------
	reason
------------------------ */
.reason {
	background: url(../img/reason_bg.png) no-repeat center top / cover;
	margin-top: max(calc(-372/750 * 100vw), -372px);
	padding-bottom: min(calc(119/750 * 100vw), 119px);
}

.reason .ttl {
	width: 50%;
	margin: 0 0 0 auto;
}

.reason .reason-box {
	width: 89.33%;
	max-width: 670px;
	margin: 0 auto;
}

/* ------------------------
	howto
------------------------ */
.howto {
	background: url(../img/howto_bg_top.png) no-repeat center top / 100% auto, url(../img/howto_bg_bottom.png) no-repeat center bottom / 100% auto, #e4eaf3;
}

.howto .howto-03::after {
	background: url(../img/howto_03_01.png) no-repeat center top / 100% auto;
}

.howto .howto-04 {
	margin-bottom: max(calc(-58/750 * 100vw), -58px);
}
.howto .howto-05 {
	margin-bottom: max(calc(-55/750 * 100vw), -55px);
}
.howto .catch {
	width: 50%;
	margin: 0 auto 0 0;
}

/* ------------------------
	faq
------------------------ */
.faq-box {
	position: relative;
	padding-bottom: min(calc(20/750 * 100vw), 20px);
}
.faq-box::after {
	content: '';
	width: 100%;
	height: min(calc(2/750 * 100vw), 2px);
	background: linear-gradient(#998c80, #998c80) no-repeat center bottom / 89.33% 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}

.faq-box dt {
  position: relative;
  cursor: pointer;
}
.faq-box dt::after {
	content: '';
	cursor: inherit;
	position: absolute;
	right: min(calc(50/750 * 100vw), 50px);
	bottom: min(calc(61/750 * 100vw), 61px);
	border-left: min(calc(4/750 * 100vw), 4px) solid #3f2810;
	border-bottom: min(calc(4/750 * 100vw), 4px) solid #3f2810;
	width: min(calc(18/750 * 100vw), 18px);
	height: min(calc(18/750 * 100vw), 18px);
	transform: rotate(-45deg) translateY(0);
	transition: all .5s;
}
.faq-box dt.open::after {
  transform: rotate(135deg);
}

.faq-01 dt::after {
	bottom: min(calc(78/750 * 100vw), 78px);
}

/* ------------------------
	footer
------------------------ */
.footer h2 {
	width: 32.6%;
	margin: 0 auto;
	padding: 0 0 3.5%;
}
.footer p {
	font-size: min(calc(12/750 * 100vw), 12px);
	line-height: 2.5;
}
.footer p a {
	text-decoration: underline;
	color: #9e1173;
}

.footer .logo {
	width: 32.6%;
	margin: 0 auto;
	padding: 0 0 3.5%;
}


/* ------------------------
	Animations
------------------------ */
.fadeInUp.trigger {
	transition: all 0.8s 0s ease;
	opacity: 0;
	transform: scale(1, 1) translateY(20px);
	transition-delay: .25s;
}
.fadeInUp.trigger.move {
	opacity: 1;
	transform: scale(1, 1) translateY(0);
}

.slideInLeft.trigger {
	transition: all 0.5s 0s ease;
	opacity: 0;
	transform: scale(1, 1) translateX(-20%);
	transition-delay: .25s;
}
.slideInLeft.trigger.move {
	opacity: 1;
	transform: scale(1, 1) translateX(0);
}
.slideInRight.trigger {
	transition: all 0.5s 0s ease;
	opacity: 0;
	transform: scale(1, 1) translateX(20%);
	transition-delay: .25s;
}
.slideInRight.trigger.move {
	opacity: 1;
	transform: scale(1, 1) translateX(0);
}

.underLine.trigger {
	position: relative;
	z-index: 3;
}
.underLine.trigger::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.8s 0s ease;
	transition-delay: .25s;
	clip-path: inset(0 100% 0 0);
	z-index: -1;
	width: 100%;
	height: 100%;
}
.underLine.trigger.move::after {
	clip-path: inset(0);
}

.scaleUpDown.trigger {
	opacity: 0;
	transform: scale(0);
}
.scaleUpDown.trigger.move {
	animation: scaleUpDown 0.4s ease-in-out forwards;
}
@keyframes scaleUpDown {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	75% {
		opacity: 1;
		transform: scale(1.1);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.unmaskLeft.trigger {
	clip-path: inset(0 100% 0 0);
	transition: all 0.8s 0s ease;
	transition-delay: .25s;
}
.unmaskLeft.trigger.move {
	clip-path: inset(0);
}