html {
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%; /* 10px */
}
/* =font
-------------------------------------------------------------- */
body {
	font-family: 'Inter', 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', "メイリオ", Meiryo, Osaka, sans-serif;
	font-optical-sizing: auto;
	font-size:1.6rem;
}
a {
	transition: opacity .5s var(--easing);
}
img {
	display: block;
	width: 100%;
	height:auto;
}
/* =root
-------------------------------------------------------------- */
:root {
	--color-1:#3fb8ad;
	--color-2:#9ce5da;
	--easing: cubic-bezier(.2, 1, .2, 1);
	--bounce: cubic-bezier(.47,1.64,.41,.8);
}

/* =body
-------------------------------------------------------------- */
.container {
	width:100%;
	position: relative;
}
.back {
	position: fixed;
	z-index:0;
	top:0;
	left:0;
	width:100%;
	height: calc(var(--vh, 1vh) * 100);
	background:url(../img/webp/bg.webp) no-repeat top left var(--color-1);
	background-size: 100% auto;
	display: grid;
	grid-template-columns: 1fr minmax(0, 56rem) 1fr;
}
.leftside {
	width:100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.leftside nav {
	display: block;
	width:26rem;
	padding:2rem;
	border-radius: 2rem;
	backdrop-filter: blur(10px);
}
.leftside a {
	display: block;
	width:fit-content;
	font-size:2rem;
	font-weight: 500;
	color:white;
	position: relative;
	padding:0 0 0.6rem 0;
	margin:2rem 0 2rem 2.5rem;
}
.leftside a::before {
	content:'';
	position: absolute;
	top:50%;
	left:-2rem;
	width:0.8rem;
	height:0.8rem;
	margin:-0.7rem 0 0 0;
	background: white;
	border-radius: 50%;
}
.leftside a::after {
	content:'';
	position: absolute;
	bottom:0;
	right:0;
	width:0%;
	height:1px;
	background: rgba(255,255,255,0.5);
	transition: width .4s ease;
}
.leftside a:hover::after {
	left:0;
	width:100%;
}
.rightside {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: end;
}
.rightside .logo {
	position: absolute;
	top:3rem;
	right:3rem;
	width:min(50%,20rem);
}
.rightside .offer {
	margin:0 0 5rem 0;
}
.rightside a {
	display: block;
	width:30rem;
	margin:0 0 2rem 0;
}
.rightside a:hover {
	opacity: 0.5;
}
@media screen and (max-width:1300px) {
	.leftside nav {
		display: none;
	}
	.rightside .offer {
		display: none;
	}
}
@media screen and (max-width:560px) {
	.back {
		display: none;
	}
}
.wrapper {
	width:min(100%,56rem);
	background: white;
	min-height:100vh;
	margin:0 auto;
	border-left:1px solid #666;
	border-right:1px solid #666;
	position: relative;
	z-index:1;
}
@media screen and (max-width:560px) {
	.wrapper {
	border:none;
	}
}
.show {
	opacity: 0;
	filter: blur(1rem);
	transition:opacity .5s ease, filter .5s ease;
}
.show.active {
	opacity: 1;
	filter: blur(0);
}

/* =header
-------------------------------------------------------------- */
header {
	display: flex;
	justify-content: center;
	width:100%;
	padding:2.5rem 0;
}
header h1 {
	width:min(75%, 19rem);
}
header .logo img {
	display: block;
	width:100%;
	height:auto;
}
/* =mv
-------------------------------------------------------------- */
.mv {
	display:flex;
	flex-wrap: wrap;
	align-items:center;
	justify-content:center;
	width:100%;
}
.mv h2 {
	display: block;
	width:65%;
	padding:2rem 0 5rem;
}
.mv .thumb {
	width:100%;
	position: relative;
}
.mv .thumb .txt {
	top:60%;
	right:3rem;
	width:65%;
	background: rgba(63,184,173,0.8);
	border-radius: 3rem;
	padding:3rem;
	position: absolute;
	color:white;
	font-size:min(3.4vw,2rem);
	font-weight: 600;
	line-height: 1.7em;
	transform:translateY(-50%);
	backdrop-filter: blur(5px);
}

/* =section
-------------------------------------------------------------- */
.section .sec_title {
	font-size:min(4vw,3.6rem);
	font-weight: 700;
	color:var(--color-1);
	text-align: center;
	padding:2rem 0;
}
.pricelist {
	width:88%;
	display: grid;
	grid-template-columns: 6.5fr 3.5fr;
	column-gap: 1rem;
	row-gap: 1rem;
	margin:0 auto;
}
.pricelist dt {
	background: var(--color-2);
	color:#464f4e;
	font-size:min(3.4vw,2rem);
	font-weight: 600;
	padding:1.5rem;
}
.pricelist dd {
	background: var(--color-1);
	color:white;
	font-size:min(3.4vw,2rem);
	font-weight: 600;
	padding:1.5rem;
	text-align: center;
}
.section .note {
	width:88%;
	color:var(--color-1);
	font-size:min(2.8vw,1.6rem);
	margin:0 auto;
	padding:1rem 0 0 0;
}
.section .txt {
	width:88%;
	margin:0 auto;
	font-size:min(3.5vw,2.1rem);
	font-weight: 500;
	line-height: 1.8em;
	color:#464f4e;
	padding:4rem 0;
}
.section .more {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 5rem;
	width:88%;
	height:7rem;
	border:1px solid var(--color-1);
	background: var(--color-1);
	margin:0 auto;
	transition: background .4s ease;
}
.section .more .label {
	color:white;
	font-size:min(3.4vw,2rem);
	font-weight: 500;
	padding:0 4rem;
	transition: color .4s ease;
}
.section .more .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width:1rem;
	margin:0 3rem;
}
.section .more .icon .path {
	fill:white;
	transition: color .4s ease;
}
.section .more:hover {
	background: white;
}
.section .more:hover .label {
	color: var(--color-1);
}
.section .more:hover .path {
	fill: var(--color-1);
}
.section .more2 {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5rem;
	width:max(17rem,50%);
	height:5rem;
	border:1px solid #3c5b57;
	background: white;
	margin:02rem auto 0;
	color:#3c5b57;
	font-size:min(2.8vw,1.6rem);
	transition: all .4s ease;
}
.section .more2:hover {
	background: #3c5b57;
	color:white;
}

.feature, .flow, .jirei, .faq, .step, .request {
	padding:5rem 0 0 0;
}
.section .box {
	width:88%;
	margin:0 auto;
}
.section h3 {
	display: block;
	width: fit-content;
	font-size:min(5.4vw,3rem);
	font-weight: 600;
	color: var(--color-1);
	text-align: center;
	padding:0 0 1rem 0;
	border-bottom:0.4rem solid var(--color-1);
	margin:4rem auto;
}
.feature .thumb {
	width:90%;
	margin:0 auto;
}
.section .result {
	font-size:min(6vw,3.6rem);
	text-align: center;
	color: var(--color-1);
	font-weight: 700;
}
.section .result .num {
	font-size:min(12vw,8rem);
	padding:0 0.5rem 0 0;
}
.section .box.last {
	border-top:1px solid var(--color-1);
}
.flowlist {
	width:88%;
	margin:0 auto 3rem;
	display: grid;
	grid-template-columns: 7rem 1fr;
	column-gap: 3rem;
}
.flowlist .flow_num {
	width:7rem;
	height:7rem;
	display: flex;
	justify-content: center;
	align-items: center;
	color:white;
	font-size:min(6.6vw,4rem);
	font-weight: 700;
	background: var(--color-1);
	border-radius: 50%;
}
.flow_title {
	font-size:min(5vw,2.6rem);
	font-weight: 700;
	color:#464f4e;
}
.flow_txt {
	font-size:min(3.4vw,2rem);
	font-weight: 500;
	color:#464f4e;
	padding:1rem 0 0 0;
}
.jirei_slide {
	overflow: hidden;
}
.jirei_slide .swiper-pagination1,
.jirei_slide .swiper-pagination2 {
	display: flex;
	justify-content: center;
	padding:3rem 0;
}
.jirei_slide .swiper-pagination1 .swiper-pagination-bullet,
.jirei_slide .swiper-pagination2 .swiper-pagination-bullet {
	background: var(--color-1);
}
.jirei_slide .swiper-pagination1 .swiper-pagination-bullet-active,
.jirei_slide .swiper-pagination2 .swiper-pagination-bullet-active {
	background: var(--color-1);
}

.faqbox {
	width:88%;
	margin:0 auto;
}
.faqbox .faq_q {
	background: var(--color-2);
	padding:1.5rem;
	font-size:min(3.5vw,2.1rem);
	font-weight: 500;
	color:#464f4e;
}
.faqbox .faq_a {
	background: var(--color-1);
	padding:1.5rem;
	font-size:min(3.5vw,2.1rem);
	line-height: 1.5em;
	font-weight: 500;
	color:white;
	margin:0.5rem auto 3rem;
}

.tool {
	width:75%;
	margin:0 auto;
}
.btnlist {
	display: flex;
	justify-content: center;
	align-items: center;
	padding:2rem 0 0;
}
.btnlist a {
	display: block;
	width:11rem;
	margin:0 1.5rem;
}
.btnlist a:hover {
	opacity: 0.5;
}
.attention {
	font-size:min(3.5vw,2.1rem);
	padding: 1.5rem;
	text-align: center;
	background: var(--color-1);
	color:white;
	width:88%;
	margin:0 auto;
}
.rei {
	width:88%;
	margin:0 auto;
	padding:3rem 0 0;
}


/* =form
-------------------------------------------------------------- */
.form {
	position: relative;
	z-index:2;
	background: #FFF;
	padding:0 6%;
}
.form .formbox {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	column-gap: 2rem;
}
.form .box {
	width:100%;
	position: relative;
	margin:0 0 2rem 0;
}
.form .box p {
	position: absolute;
	top:-1rem;
	left:1.5rem;
	font-size:1.4rem;
	color:#898989;
	z-index:3;
	background:white;
	padding:0 1rem;
}

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form input[type="date"],
.form select,
.form textarea {
	display: block;
	width:100%;
	border:1px solid #545454;
	padding:1.5rem 2.5rem 1rem 2.5rem;
	background: #FFF;
	appearance: none;
	font-size:min(4vw,2rem);
	line-height: 1.5em;
	border-radius: 1rem;
}
.form input[type="file"] {
	display: block;
	width:100%;
	padding:1rem 0;
	background: #FFF;
	appearance: none;
	font-size:min(3.4vw,2rem);
	line-height: 1.5em;
	border-radius: 1rem;
}
.form .txt {
	font-size:2rem;
	color:var(--color-1);
	font-variation-settings: "wght" 700;
	margin:0 0 1rem 0;
	padding:0;
}
.form .kakutei {
	display: block;
	width:100%;
	border:1px solid #545454;
	padding:2rem 1rem;
	background: #eaeaea;
	font-size:min(3.4vw,2rem);
}
.form .txt2 {
	font-size:min(3.4vw,2rem);
	line-height: 1.8em;
	padding:1rem 2rem;
	color:white;
	background: var(--color-1);
	text-align: left;
	margin:0 0 2rem 0;
}
.form .txt3 {
	font-size:min(2.6vw,1.5rem);
	color: var(--color-pink);
	line-height: 1.8em;
	padding:1rem 0 2rem;
}
.form .note {
	width:100%;
	color:#464f4e;
	padding:1rem 0 4rem;
}
.form .note.red {
	color:#ce0019;
}
.form .privacybox {
	width:100%;
	height:20rem;
	border:1px solid #545454;
	padding:1.5rem 2.5rem 1rem 2.5rem;
	background: #FFF;
	overflow-y: auto;
	font-size:min(2.5vw,1.4rem);
	line-height: 1.5em;
	border-radius: 1rem;
}
.agree {
	display: flex;
	justify-content: center;
	padding:2rem 0;
}
.wpcf7-list-item-label {
	font-size:min(3.4vw,2rem);
	color:#464f4e;
}
.agree input[type="checkbox"] {
	width:2rem;
	height:2rem;
	margin:0 1.5rem 0 0;
}
.agree label {
	display: flex;
	justify-content: center;
	align-items: center;
}

.form input[type="submit"] {
	display: block;
	width:100%;
	background: var(--color-1);
	text-align: center;
	padding:2.4rem 0;
	color:#FFF;
	font-size:min(4vw,2.4rem);
	border-radius: 5rem;
	font-variation-settings: "wght" 700;
	margin:0 auto 4rem;
	border:1px solid var(--color-1);
	cursor: pointer;
	transition:background .5s ease;
}
.form input[type="submit"]:disabled {
	background: #999;
	border:1px solid #999;
}
.form input[type="submit"]:hover {
	background: #FFF;
	color: var(--color-1);
}
.form input[type="submit"]:disabled:hover {
	background: #999;
	border:1px solid #999;
	color:#FFF;
}
.form input[type="button"] {
	display: block;
	width:100%;
	background: #8e8e8e;
	text-align: center;
	padding:2.5rem 0;
	color:#FFF;
	font-size:3rem;
	border-radius: 1rem;
	font-variation-settings: "wght" 700;
	margin:0 auto 2rem;
	border:1px solid #8e8e8e;
	cursor: pointer;
	transition:background .5s ease;
}
.form input[type="button"]:hover {
	background: #FFF;
	color: #8e8e8e;
}

.form#confirm {
	background: #FFF;
	clip-path: none;
	padding:0 7%;
}
.form#confirm .box {
	display: block;
	width:100%;
	border:1px solid #545454;
	padding:1.5rem 1.5rem 1rem 1.5rem;
	background: white;
	font-size:min(4vw,2rem);
}
.form#confirm .kakutei {
	padding:2rem 1rem;
}
.form#confirm .present {
	width:100%;
	padding:2rem 0;
}
.announce {
	font-size:1.5rem;
	line-height: 1.5em;
	padding:0 0 3rem 0;
}

/* thanks */
.thankswrap {
	background: #FFF;
}
.thankswrap h2 {
	display: block;
	font-size:2.8rem;
	line-height: 1.7em;
	padding:2rem 6%;
	font-variation-settings: "wght" 900;
}
.checkmark__circle {
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	stroke-width: 2;
	stroke-miterlimit: 10;
	stroke: var(--color-1);
	fill: none;
	animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 1s forwards;
}
.checkmark {
	width: 225px;
	height: 225px;
	border-radius: 50%;
	display: block;
	stroke-width: 5;
	stroke: #fff;
	stroke-miterlimit: 10;
	margin: 0 auto 1rem;
	box-shadow: inset 0px 0px 0px var(--color-1);
	animation: fill .4s ease-in-out 1.4s forwards, scale .3s ease-in-out 1.9s both;
}
.checkmark__check {
	transform-origin: 50% 50%;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 1.8s forwards;
}
.thankswrap p {
	font-size:1.8rem;
	line-height: 1.8em;
}
.thankswrap small {
	font-size:1.5rem;
	line-height:1.6em;
}
@media screen and (max-width:546px) {
	.thankswrap p {
		font-size:2.4rem;
	}
	.thankswrap small {
		font-size:2rem;
	}
}
@keyframes stroke {
	100% {
		stroke-dashoffset: 0;
	}
}
@keyframes scale {
	0%, 100% {
		transform: none;
	}
	50% {
		transform: scale3d(1.1, 1.1, 1);
	}
}
@keyframes fill {
	100% {
		box-shadow: inset 0px 0px 0px 113px var(--color-1);
	}
}


/* =footer
-------------------------------------------------------------- */
footer {
	background: #dee2e1;
	padding:3rem 4rem;
	position: relative;
	z-index:1;
}
footer .foot_logo {
	width:40%;
}
footer .address {
	font-size:min(3.4vw,2rem);
	color:#464f4e;
	line-height: 1.5em;
	margin:1.5rem 0 1.5rem 2.5rem;
	position: relative;
}
footer .address::before {
	content:'';
	position: absolute;
	top:1rem;
	left:-2rem;
	width:0.8rem;
	height:0.8rem;
	border-radius: 50%;
	background: var(--color-1);
}
footer .copyright {
	font-size:min(2vw,1.4rem);
	text-align: center;
	color:#464f4e;
}
footer .copyright a {
	color:#464f4e;
}