/* リキッドレイアウト対応 */

body {
	font-family: "Noto Sans JP", sans-serif;
}

.u-mobile {
	display: none;
}

html {
	font-size: 16px;
}

/* pcの電話番号発信対応 */

/* ホバー */

a,
input {
	-webkit-transition: opacity 0.3s;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

a:hover,
input:hover {
	opacity: 0.8;
}

p,
a {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 2;
}

body {
	color: #333;
}

/* フェードイン(初期値) */

.js-fadeUp {
	-webkit-transform: translateY(20px);
	-webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
	opacity: 0; /* 最初は非表示 */
	transform: translateY(20px); /* 下に30pxの位置から */
	transition: opacity 0.6s, -webkit-transform 0.6s;
	transition: opacity 0.6s, transform 0.6s;
	transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s; /* 透過率と縦方向の移動を0.6秒 */
}

/* フェードイン(スクロールした後) */

.js-fadeUp.is-inview {
	-webkit-transform: translateY(0);
	-webkit-transition-delay: 0.1s;
	opacity: 1; /* 表示領域に入ったら表示 */
	transform: translateY(0); /* 30px上に移動する */
	transition-delay: 0.1s; /* フェード開始を0.5秒遅らせる */
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

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

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

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

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

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

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

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

/* Blur images when they have no alt attribute */

img:not([alt]) {
	-webkit-filter: blur(10px);
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

.c-btn {
	background: #4daca4;
	border-radius: 2.25rem;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-size: 1rem;
	padding: 16px 32px;
	padding: 1rem 2rem;
}

.c-checkbox__label {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.c-checkbox__label:hover {
	cursor: pointer;
}

.c-checkbox__part {
	cursor: pointer;
	display: inline-block;
	height: 15px;
	height: 0.9375rem;
	padding: 0 0 0 1.2em;
	position: relative;
	vertical-align: middle;
	width: 15px;
	width: 0.9375rem;
}

.c-checkbox__part::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid #ddd;
	content: "";
	display: block;
	height: 15px;
	height: 0.9375rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	width: 0.9375rem;
}

.c-checkbox__part::after {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	-webkit-transition: opacity 0.3s ease 0s;
	border-bottom: 2px solid #4daca4;
	border-left: 2px solid #4daca4;
	content: "";
	display: block;
	height: 9px;
	height: 0.5625rem;
	left: 0;
	margin-top: -0.2em;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: opacity 0.3s ease 0s;
	width: 15px;
	width: 0.9375rem;
}

.c-checkbox__text {
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 500;
	margin-left: 12px;
	margin-left: 0.75rem;
}

.c-checkbox__text a {
	color: #4daca4;
	font-size: 14px;
	font-size: 0.875rem;
	text-decoration: underline;
}

.c-title {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-ms-flex-wrap: wrap;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap: 31px;
	gap: 1.9375rem;
	justify-content: flex-start;
}

.c-title__en {
	color: #4daca4;
	font-family: "Montserrat", sans-serif;
	font-size: 100px;
	font-size: 6.25rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.c-title__ja {
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 700;
}

.c-title.c-title--white .c-title__en {
	color: #fff;
}

.c-title.c-title--white .c-title__ja {
	color: #fff;
}

.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: 1663px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.p-about {
	position: relative;
}

.p-about::before {
	background-image: url(../images/about-bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 18%;
	content: "";
	height: 119%;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-about__inner {
	padding-top: 113px;
	padding-top: 7.0625rem;
	position: relative;
}

.p-about__wrapper {
	display: grid;
	gap: 18px;
	gap: 1.125rem;
	grid-template-columns: 550fr 816fr;
	margin: 46px auto;
	margin: 2.875rem auto;
	max-width: 1384px;
	max-width: 86.5rem;
}

.p-about__img img {
	-o-object-fit: cover;
	aspect-ratio: 543/837;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-about__text {
	color: #fff;
	padding-right: 10px;
	padding-right: 0.625rem;
}

.p-area {
	background-image: url(../images/area-bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 187px;
	padding-bottom: 11.6875rem;
	padding-top: 160px;
	padding-top: 10rem;
}

.p-area__items {
	display: grid;
	gap: 47px 48px;
	gap: 2.9375rem 3rem;
	grid-template-columns: 1fr 1fr 1fr;
	margin: 71px auto 0;
	margin: 4.4375rem auto 0;
	max-width: 1092px;
	max-width: 68.25rem;
	width: 100%;
}

.p-area__img img {
	-o-object-fit: cover;
	aspect-ratio: 501/341;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-area__area {
	color: #4daca4;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 16px;
	margin-top: 1rem;
}

.p-area__list {
	margin-top: 0;
	padding-left: 1.5em;
}

.p-area__list li {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 2;
	list-style-type: disc;
}

.p-company {
	background-image: url(../images/company-bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 150px;
	padding-bottom: 9.375rem;
	padding-top: 160px;
	padding-top: 10rem;
}

.p-company__inner.l-inner {
	max-width: 1136px;
	max-width: 71rem;
}

.p-company__title.c-title {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.p-company__items {
	background: #fff;
	margin-top: 60px;
	margin-top: 3.75rem;
	padding: 30px;
	padding: 1.875rem;
}

.p-company__item {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-start;
	padding: 10px;
	padding: 0.625rem;
}

.p-company__item:not(:first-child) {
	margin-top: 9px;
	margin-top: 0.5625rem;
}

.p-company__term {
	border-bottom: 1px solid #76c0ba;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	padding-bottom: 15px;
	padding-bottom: 0.9375rem;
	padding-left: 15px;
	padding-left: 0.9375rem;
	width: 211px;
	width: 13.1875rem;
}

.p-company__desc {
	border-bottom: 1px solid #e2f2f1;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
	margin-left: 20px;
	margin-left: 1.25rem;
	padding-bottom: 15px;
	padding-bottom: 0.9375rem;
	padding-left: 19px;
	padding-left: 1.1875rem;
	width: calc(100% - 13.1875rem);
}

.p-contact {
	background-image: url(../images/contact-bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	padding-bottom: 83px;
	padding-bottom: 5.1875rem;
	padding-top: 159px;
	padding-top: 9.9375rem;
	position: relative;
}

.p-contact__pageTop {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-transform-origin: top left;
	-webkit-transform: rotate(90deg);
	align-items: center;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	justify-content: flex-start;
	letter-spacing: 0.1em;
	position: absolute;
	right: -10px;
	right: -0.625rem;
	text-transform: uppercase;
	top: 15px;
	top: 0.9375rem;
	transform: rotate(90deg);
	transform-origin: top left;
}

.p-contact__pageTop::before {
	background: #fff;
	content: "";
	height: 1px;
	margin-right: 12px;
	margin-right: 0.75rem;
	width: 80px;
	width: 5rem;
}

.p-contact__title.c-title {
	margin-right: -29px;
	margin-right: -1.8125rem;
}

.p-contact__form {
	background: rgba(255, 255, 255, .71);
	margin: 86px auto 0;
	margin: 5.375rem auto 0;
	max-width: 920px;
	max-width: 57.5rem;
	padding: 80px 140px;
	padding: 5rem 8.75rem;
	width: 100%;
}

.p-contact__copyright {
	color: #fff;
	display: inline-block;
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: 700;
	margin-top: 38px;
	margin-top: 2.375rem;
	text-align: center;
	width: 100%;
}

.p-contact__flowText {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: "Montserrat", sans-serif;
	font-size: 329px;
	font-size: 20.5625rem;
	font-weight: 700;
	max-width: -moz-fit-content;
	max-width: -webkit-fit-content;
	max-width: fit-content;
	mix-blend-mode: soft-light;
	vertical-align: baseline;
	white-space: nowrap;
	width: auto;
	will-change: transform;
}

.p-contact__flowText::before {
	-webkit-animation: loop 100s -50s linear infinite;
	animation: loop 100s -50s linear infinite;
	content: attr(data-text);
	display: inline-block;
}

.p-contact__flowText::after {
	-webkit-animation: loop2 100s linear infinite;
	animation: loop2 100s linear infinite;
	content: attr(data-text);
	display: inline-block;
}

.p-drawer {
	-webkit-transition: opacity 0.3s, visibility 0.3s;
	-webkit-overflow-scrolling: touch;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #4daca4;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	opacity: 0;
	overflow-y: auto;
	padding: 32px;
	padding: 2rem;
	position: fixed;
	right: 0;
	top: 60px;
	top: 3.75rem;
	transition: opacity 0.3s, visibility 0.3s;
	visibility: hidden;
	width: 100%;
	z-index: 101;
}

.p-drawer ul {
	margin: 0 auto;
	padding: 0;
	padding-bottom: 60px;
	padding-bottom: 3.75rem;
	width: 100%;
}

.p-drawer__link {
	-webkit-transition: 0.4s all;
	border-bottom: 1px solid #fff;
	list-style-type: none;
	padding: 0;
	transition: 0.4s all;
	width: 100%;
}

.p-drawer__link a {
	display: block;
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 2;
	padding: 8px 11px 18px;
	padding: 0.5rem 0.6875rem 1.125rem;
	text-decoration: none;
}

/* active */

.p-drawer.active {
	opacity: 100;
	visibility: visible;
}

.p-faq {
	background-image: url(../images/faq-bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 131px;
	padding-bottom: 8.1875rem;
	padding-top: 160px;
	padding-top: 10rem;
}

.p-faq__items {
	margin: 80px auto 0;
	margin: 5rem auto 0;
	max-width: 880px;
	max-width: 55rem;
	width: 100%;
}

.p-faq__item {
	margin-bottom: 40px;
	margin-bottom: 2.5rem;
}

.p-faq__question,
.p-faq__answer {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	align-items: center;
	background: #4daca4;
	border-radius: 0 0.625rem 0 0;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	justify-content: flex-start;
	line-height: 2;
	padding: 16px 24px;
	padding: 1rem 1.5rem;
}

.p-faq__question::before,
.p-faq__answer::before {
	-ms-flex-negative: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
	color: #4daca4;
	content: "Q";
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-shrink: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 600;
	height: 36px;
	height: 2.25rem;
	justify-content: center;
	margin-right: 24px;
	margin-right: 1.5rem;
	width: 36px;
	width: 2.25rem;
}

.p-faq__answer {
	background: #fff;
	border-radius: 0 0 0 0.625rem;
	color: #333;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.04em;
}

.p-faq__answer::before {
	background: #4daca4;
	color: #fff;
	content: "A";
}

.p-features {
	margin-top: -120px;
	margin-top: -7.5rem;
	padding-bottom: 150px;
	padding-bottom: 9.375rem;
	padding-top: 160px;
	padding-top: 10rem;
}

.p-features__title.c-title {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.p-features__items {
	margin-top: 70px;
	margin-top: 4.375rem;
}

.p-features__item {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	align-items: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 130px;
	gap: 8.125rem;
	justify-content: center;
	padding: 73px 90px;
	padding: 4.5625rem 5.625rem;
}

.p-features__content {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	padding-bottom: 145px;
	padding-bottom: 9.0625rem;
	width: 43%;
}

.p-features__num img {
	height: 198px;
	height: 12.375rem;
	width: auto;
}

.p-features__main {
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2;
	margin-top: -28px;
	margin-top: -1.75rem;
}

.p-features__text {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 2;
	margin-top: 0;
}

.p-features__img img {
	-o-object-fit: cover;
	aspect-ratio: 685/562;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-features__item:nth-child(2n) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.p-features__item:nth-child(1) {
	background-image: url(../images/features01-bg.jpg);
}

.p-features__item:nth-child(2) {
	background-image: url(../images/features02-bg.jpg);
}

.p-features__item:nth-child(3) {
	background-image: url(../images/features03-bg.jpg);
}

.p-features__item:nth-child(4) {
	background-image: url(../images/features04-bg.jpg);
}

.p-form input[type=checkbox],
.p-form input[type=radio] {
	clip: rect(0 0 0 0);
	-webkit-clip-path: inset(50%);
	border: none;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.p-form input[type=text],
.p-form input[type=email],
.p-form input[type=tel],
.p-form textarea,
.p-form select {
	-webkit-box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 0;
	box-shadow: none;
	color: inherit;
	font-family: inherit;
	font-size: 16px;
	font-size: 1rem;
	margin-top: 8px;
	margin-top: 0.5rem;
	padding: 10px;
	padding: 0.625rem;
	width: 100%;
}

.p-form textarea {
	height: 240px;
	height: 15rem;
	resize: vertical;
}

.p-form input[type=checkbox] {
	opacity: 0;
	width: 0;
}

.p-form input[type=checkbox]:checked + span::after {
	opacity: 1;
}

.p-form input[type=submit] {
	-webkit-box-shadow: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: #4daca4;
	border: none;
	border-radius: 2.25rem;
	box-shadow: none;
	color: #fff;
	display: inline-block;
	font-family: inherit;
	font-size: 16px;
	font-size: 1rem;
	min-height: 56px;
	min-height: 3.5rem;
	padding: 16px 32px;
	padding: 1rem 2rem;
}

.p-form__item:not(:last-child) {
	margin-bottom: 32px;
	margin-bottom: 2rem;
}

.p-form__privacy {
	margin-top: 22px;
	margin-top: 1.375rem;
}

.p-form__label {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	font-size: 1rem;
	justify-content: flex-start;
}

.p-form__required {
	background: #4daca4;
	color: #fff;
	font-size: 10px;
	font-size: 0.625rem;
	line-height: 1;
	margin-right: 8px;
	margin-right: 0.5rem;
	padding: 3px 8px;
	padding: 0.1875rem 0.5rem;
}

.p-form__btn {
	margin-top: 52px;
	margin-top: 3.25rem;
	text-align: center;
}

.p-form__multipleCheckbox {
	margin-top: 12px;
	margin-top: 0.75rem;
}

.p-form__multipleCheckbox:first-child {
	margin-top: 8px;
	margin-top: 0.5rem;
}

.p-form__multipleCheckbox .c-checkbox__part {
	height: 24px;
	height: 1.5rem;
	width: 24px;
	width: 1.5rem;
}

.p-form__multipleCheckbox .c-checkbox__part::before {
	height: 24px;
	height: 1.5rem;
	width: 24px;
	width: 1.5rem;
}

.p-form__multipleCheckbox .c-checkbox__part::after {
	height: 10px;
	height: 0.625rem;
	left: 2px;
	left: 0.125rem;
	width: 20px;
	width: 1.25rem;
}

.p-form__multipleCheckbox .c-checkbox__text {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 400;
}

.p-fv {
	padding-bottom: 100px;
	padding-bottom: 6.25rem;
	padding-top: 131px;
	padding-top: 8.1875rem;
	position: relative;
	z-index: 2;
}

.p-fv__wrapper {
	background-image: url(../images/fv.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	padding-top: min(535px, 50vh);
	padding-top: min(33.4375rem, 50vh);
}

.p-fv__text {
	-webkit-transform: translateY(27%);
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	font-size: 100px;
	font-size: 6.25rem;
	font-weight: 700;
	line-height: 1;
	opacity: 0;
	padding-left: 22%;
	text-align: left;
	transform: translateY(27%);
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.p-fv__text span {
	opacity: 0;
	will-change: transform, opacity;
}

.p-fv__text.appeartext span {
	-webkit-animation: text_anime_on 1s ease-out forwards;
	animation: text_anime_on 1s ease-out forwards;
}

.p-hamburger {
	display: none;
}

.p-hamburger::before {
	-webkit-transform: translateX(-50%);
	bottom: 8px;
	bottom: 0.5rem;
	color: #fff;
	content: "menu";
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: 700;
	left: 50%;
	position: absolute;
	text-transform: uppercase;
	transform: translateX(-50%);
}

.p-hamburger span {
	-webkit-transition: 0.3s -webkit-transform;
	background: #fff;
	border-radius: 0.125rem;
	display: block;
	height: 2px;
	height: 0.125rem;
	position: absolute;
	right: 18px;
	right: 1.125rem;
	transition: 0.3s -webkit-transform;
	transition: 0.3s transform;
	transition: 0.3s transform, 0.3s -webkit-transform;
	width: 32px;
	width: 2rem;
}

.p-hamburger span:nth-child(1) {
	top: 10px;
	top: 0.625rem;
	width: 17px;
	width: 1.0625rem;
}

.p-hamburger span:nth-child(2) {
	top: 19px;
	top: 1.1875rem;
	width: 26px;
	width: 1.625rem;
}

.p-hamburger span:nth-child(3) {
	top: 28px;
	top: 1.75rem;
}

/* active */

.p-hamburger.active span:nth-child(1) {
	-webkit-transform: rotate(-32deg);
	top: 20px;
	top: 1.25rem;
	transform: rotate(-32deg);
	width: 32px;
	width: 2rem;
}

.p-hamburger.active span:nth-child(2),
.p-hamburger.active span:nth-child(3) {
	-webkit-transform: rotate(32deg);
	top: 20px;
	top: 1.25rem;
	transform: rotate(32deg);
	width: 32px;
	width: 2rem;
}

.p-header {
	background: rgba(255, 255, 255, .85);
	height: 101px;
	height: 6.3125rem;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

.p-header__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
	padding: 0 80px;
	padding: 0 5rem;
}

.p-header__logo {
	height: inherit;
}

.p-header__logo a {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
}

.p-header__logo img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 192px;
	width: 12rem;
}

.p-header__title {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #4daca4;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 700;
	margin-left: 20px;
	margin-left: 1.25rem;
}

.p-header__nav {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
	justify-content: flex-end;
	margin-left: auto;
}

.p-header__items {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
}

.p-header__item {
	font-size: 18px;
	font-size: 1.125rem;
	height: inherit;
}

.p-header__item a {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-transition: color 0.3s;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
	transition: color 0.3s;
}

.p-header__item a:hover {
	color: #a7a7a7;
	opacity: 1;
}

.p-header__item:not(:last-child) {
	margin-right: 30px;
	margin-right: 1.875rem;
}

.p-header__btn {
	background: #686764;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 2;
	margin-left: 50px;
	margin-left: 3.125rem;
	padding: 10px 30px;
	padding: 0.625rem 1.875rem;
}

.p-price {
	padding-bottom: 150px;
	padding-bottom: 9.375rem;
	padding-top: 160px;
	padding-top: 10rem;
}

.p-price__inner.l-inner {
	max-width: 1424px;
	max-width: 89rem;
}

.p-price__title.c-title {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.p-price__table {
	margin-top: 61px;
	margin-top: 3.8125rem;
}

.p-price__table table,
.p-price__table td,
.p-price__table th {
	border-collapse: collapse;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	font-size: 22px;
	font-size: 1.375rem;
}

.p-price__table table {
	table-layout: fixed;
	text-align: center;
	width: 100%;
}

.p-price__table th {
	font-weight: 700;
	padding: 22px 0;
	padding: 1.375rem 0;
}

.p-price__table th:nth-child(1) {
	background: #eef7f6;
}

.p-price__table th:nth-child(2) {
	background: #b9dfdc;
}

.p-price__table th:nth-child(3) {
	background: #eef7f6;
}

.p-price__table th:nth-child(4) {
	background: #b9dfdc;
}

.p-price__table td {
	padding: 11px 0;
	padding: 0.6875rem 0;
}

.p-price__table .gray {
	background: #f3f3f3;
}

.p-price__table .layout {
	font-weight: 700;
}

.p-price__table .price {
	color: #4daca4;
	font-size: 37px;
	font-size: 2.3125rem;
	font-weight: 700;
}

.p-price__table .price span {
	font-size: 27px;
	font-size: 1.6875rem;
}

.p-price__note {
	display: block;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 2.2;
	margin: 62px auto 0;
	margin: 3.875rem auto 0;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.p-price__cancel {
	border-top: 1px solid #adadad;
	margin-top: 50px;
	margin-top: 3.125rem;
	padding-top: 50px;
	padding-top: 3.125rem;
}

.p-price__cancelTitle {
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
}

.p-price__cancelSubTitle {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	margin-top: 32px;
	margin-top: 2rem;
	text-align: center;
}

.p-price__cancelTable {
	margin: 24px auto 0;
	margin: 1.5rem auto 0;
	max-width: 800px;
	max-width: 50rem;
	width: 100%;
}

.p-price__cancelTable table,
.p-price__cancelTable td,
.p-price__cancelTable th {
	border: 1px solid #ddd;
	border-collapse: collapse;
	font-size: 16px;
	font-size: 1rem;
	padding: 16px 24px;
	padding: 1rem 1.5rem;
}

.p-price__cancelTable table {
	table-layout: fixed;
	width: 100%;
}

.p-price__cancelTable th {
	background: #d9d9d9;
	font-weight: 700;
	text-align: center;
}

.p-price__cancelTable th:nth-child(1) {
	width: 330px;
	width: 20.625rem;
}

.p-price__cancelTable td:nth-child(1) {
	font-weight: 700;
}

.p-privacy {
	background: #4faca5;
	padding-bottom: 83px;
	padding-bottom: 5.1875rem;
	padding-top: 140px;
	padding-top: 8.75rem;
}

.p-privacy__box {
	background: #fff;
	padding: 33px 60px;
	padding: 2.0625rem 3.75rem;
}

.p-privacy__title {
	color: #4faca5;
	font-size: 35px;
	font-size: 2.1875rem;
	font-weight: 700;
	text-align: center;
}

.p-privacy__text {
	margin-bottom: 70px;
	margin-bottom: 4.375rem;
	margin-top: 50px;
	margin-top: 3.125rem;
}

.p-privacy__content h2 {
	font-size: 30px;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 2;
	margin-bottom: 10px;
	margin-bottom: 0.625rem;
	margin-top: 50px;
	margin-top: 3.125rem;
}

.p-privacy__content ol {
	padding-left: 1.4em;
}

.p-privacy__content li {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 2;
}

.p-privacy__content > ol {
	list-style-type: decimal;
}

.p-privacy__content > ol > li > ol {
	list-style-type: lower-latin;
}

.p-privacy__content > ol > li > ol > li > ol {
	list-style-type: lower-roman;
}

.p-privacy__content > p + p {
	margin-top: 10px;
	margin-top: 0.625rem;
}

.p-privacy__company {
	margin-top: 50px;
	margin-top: 3.125rem;
}

.p-privacy__copyright {
	display: inline-block;
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: 700;
	margin-top: 169px;
	margin-top: 10.5625rem;
	text-align: center;
	width: 100%;
}

.p-thanks {
	background: #4faca5;
	min-height: 100vh;
	padding-bottom: 83px;
	padding-bottom: 5.1875rem;
	padding-top: 140px;
	padding-top: 8.75rem;
}

.p-thanks__box {
	background: #fff;
	padding: 60px 60px;
	padding: 3.75rem 3.75rem;
}

.p-thanks__title {
	color: #4faca5;
	font-size: 35px;
	font-size: 2.1875rem;
	font-weight: 700;
	text-align: center;
}

.p-thanks__text {
	margin-top: 50px;
	margin-top: 3.125rem;
	text-align: center;
}

.p-thanks__btn {
	margin-top: 30px;
	margin-top: 1.875rem;
	text-align: center;
}

.p-thanks__copyright {
	display: inline-block;
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: 700;
	margin-top: 169px;
	margin-top: 10.5625rem;
	text-align: center;
	width: 100%;
}

@media (max-width: 1613px) {

html {
	font-size: 0.9919404836vw;
}

}

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

.p-about::before {
	bottom: 10%;
}

}

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

.u-desktop {
	display: none;
}

.u-mobile {
	display: block;
}

html {
	font-size: 16px;
}

a[href^="tel:"] {
	pointer-events: none;
}

a:hover,
input:hover {
	opacity: 1;
}

p,
a {
	font-size: 1rem;
}

.c-checkbox__part {
	height: 0.6875rem;
	width: 0.6875rem;
}

.c-checkbox__part::before {
	height: 0.6875rem;
	width: 0.6875rem;
}

.c-checkbox__part::after {
	height: 0.4375rem;
	width: 0.6875rem;
}

.c-checkbox__text {
	font-size: 0.8125rem;
	font-weight: 400;
	margin-left: 0;
}

.c-title {
	gap: 0.625rem;
}

.c-title__en {
	font-size: 2.25rem;
}

.c-title__ja {
	font-size: 0.8125rem;
}

.l-inner {
	max-width: 33.75rem;
	padding-left: 20px;
	padding-right: 20px;
}

.p-about {
	padding-bottom: 3.125rem;
}

.p-about::before {
	background-image: url(../images/about-bg-sp.jpg);
	bottom: 0;
	height: 123%;
}

.p-about__inner {
	padding-top: 3rem;
}

.p-about__wrapper {
	gap: 0;
	grid-template-columns: 1fr;
	margin-top: 1.875rem;
}

.p-about__img {
	margin: 0 auto;
	max-width: 18.5rem;
	width: 100%;
}

.p-about__text {
	font-size: 0.8125rem;
	margin-top: 1.9375rem;
	padding: 0;
}

.p-area {
	background-image: url(../images/area-bg-sp.jpg);
	padding-bottom: 4.5625rem;
	padding-top: 3.125rem;
}

.p-area__items {
	gap: 3.5625rem;
	grid-template-columns: 1fr;
	margin-top: 1.625rem;
}

.p-area__area {
	margin-top: 1rem;
}

.p-area__list {
	margin-top: 1rem;
	padding-left: 1.1em;
}

.p-area__list li {
	font-size: 0.8125rem;
}

.p-company {
	background-image: url(../images/company-bg-sp.jpg);
	padding: 3.125rem 0;
}

.p-company__inner.l-inner {
	max-width: 33.75rem;
}

.p-company__title.c-title {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.p-company__items {
	margin-top: 1.875rem;
	padding: 0;
}

.p-company__item {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 0;
}

.p-company__item:not(:first-child) {
	margin-top: 0;
}

.p-company__term {
	font-size: 0.8125rem;
	line-height: 2;
	padding: 0.5rem;
	width: 100%;
}

.p-company__desc {
	font-size: 0.8125rem;
	line-height: 2;
	margin-left: 0;
	padding: 0.4375rem 0.5rem;
	width: 100%;
}

.p-contact {
	background-image: url(../images/contact-bg-sp.jpg);
	padding-bottom: 1.875rem;
	padding-top: 4.625rem;
}

.p-contact__pageTop {
	font-size: 0.625rem;
	right: -5.125rem;
	top: 0;
}

.p-contact__pageTop::before {
	width: 1.8125rem;
}

.p-contact__title.c-title {
	margin-right: 0;
}

.p-contact__form {
	margin-top: 1.4375rem;
	padding: 1.25rem 0.9375rem;
}

.p-contact__copyright {
	font-size: 0.625rem;
	margin-top: 0;
}

.p-contact__flowText {
	font-size: 7.25rem;
}

.p-faq {
	background-image: url(../images/faq-bg-sp.jpg);
	padding-bottom: 0.625rem;
	padding-top: 3.125rem;
}

.p-faq__items {
	margin-top: 1.875rem;
}

.p-faq__question,
.p-faq__answer {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	font-size: 0.8125rem;
	padding: 0.5rem 0.6875rem 0.5rem 0.5rem;
}

.p-faq__question::before,
.p-faq__answer::before {
	font-size: 0.8125rem;
	height: 1.5rem;
	margin-right: 0.5rem;
	width: 1.5rem;
}

.p-faq__answer {
	letter-spacing: 0;
}

.p-features {
	margin-top: 0;
	padding: 3.125rem 0;
}

.p-features__items {
	margin-top: 1.875rem;
}

.p-features__item {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
	gap: 0.5625rem;
	padding: 3.25rem 1.0625rem 3.75rem;
}

.p-features__content {
	padding-bottom: 0;
	width: 100%;
}

.p-features__num img {
	height: 4.125rem;
	margin: 0 auto;
}

.p-features__main {
	line-height: 1.5;
	margin-top: -1.125rem;
	text-align: center;
}

.p-features__text {
	font-size: 0.8125rem;
	margin-top: 0.6875rem;
}

.p-features__item:nth-child(2n) {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.p-form input[type=text],
.p-form input[type=email],
.p-form input[type=tel],
.p-form textarea,
.p-form select {
	font-size: 0.8125rem;
	margin-top: 0.4375rem;
	padding: 0.4375rem;
}

.p-form textarea {
	height: 6.875rem;
}

.p-form__item:not(:last-child) {
	margin-bottom: 0.9375rem;
}

.p-form__privacy {
	margin-top: 1rem;
}

.p-form__label {
	font-size: 0.8125rem;
}

.p-form__btn {
	margin-top: 1.875rem;
}

.p-form__multipleCheckbox .c-checkbox__part {
	height: 0.6875rem;
	width: 0.6875rem;
}

.p-form__multipleCheckbox .c-checkbox__part::before {
	height: 0.6875rem;
	width: 0.6875rem;
}

.p-form__multipleCheckbox .c-checkbox__part::after {
	height: 0.4375rem;
	left: 0.0625rem;
	width: 0.6875rem;
}

.p-form__multipleCheckbox .c-checkbox__text {
	font-size: 0.8125rem;
}

.p-fv {
	padding-bottom: 3.125rem;
	padding-top: 3.75rem;
}

.p-fv__wrapper {
	background-image: url(../images/fv-sp.jpg);
	padding-top: 21.3125rem;
}

.p-fv__text {
	-webkit-transform: translateY(30%);
	font-size: 2.1875rem;
	line-height: 1;
	margin-top: 0.1875rem;
	padding-left: 2.375rem;
	transform: translateY(30%);
}

.p-hamburger {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #4daca4;
	border: none;
	cursor: pointer;
	display: block;
	height: 3.75rem;
	outline: none;
	padding: 0;
	position: fixed;
	right: 0;
	text-align: center;
	top: 0;
	width: 4rem;
	z-index: 101;
}

.p-header {
	height: 3.75rem;
}

.p-header__inner {
	padding: 0 1.25rem;
}

.p-header__logo img {
	width: 5.9375rem;
}

.p-header__title {
	font-size: 0.875rem;
	margin-left: 0.1875rem;
}

.p-price {
	padding: 3.125rem 0;
}

.p-price__inner.l-inner {
	max-width: 33.75rem;
}

.p-price__table {
	margin-top: 1.9375rem;
	overflow-x: auto;
}

.p-price__table table,
.p-price__table td,
.p-price__table th {
	font-size: 0.625rem;
}

.p-price__table table {
	width: 31.25rem;
}

.p-price__table th {
	padding: 0.3125rem 0;
}

.p-price__table td {
	padding: 0.1875rem 0;
}

.p-price__table .price {
	font-size: 0.75rem;
}

.p-price__table .price span {
	font-size: 0.75rem;
}

.p-price__note {
	font-size: 0.625rem;
	font-weight: 400;
	line-height: 2;
	margin: 0.9375rem 0.625rem 0;
}

.p-price__cancel {
	margin-top: 2rem;
	padding-top: 1.6875rem;
}

.p-price__cancelTitle {
	font-size: 0.75rem;
}

.p-price__cancelSubTitle {
	font-size: 0.6875rem;
	margin-top: 1rem;
}

.p-price__cancelTable {
	margin-top: 0.4375rem;
}

.p-price__cancelTable table,
.p-price__cancelTable td,
.p-price__cancelTable th {
	font-size: 0.625rem;
	padding: 0.25rem 0.625rem;
}

.p-price__cancelTable th:nth-child(1) {
	width: 9.875rem;
}

.p-privacy {
	padding-bottom: 1.875rem;
	padding-top: 3.125rem;
}

.p-privacy__box {
	padding: 1.25rem 0.9375rem;
}

.p-privacy__title {
	font-size: 1.5625rem;
}

.p-privacy__text {
	margin-bottom: 1.875rem;
	margin-top: 1.875rem;
}

.p-privacy__content h2 {
	font-size: 1.25rem;
	margin-bottom: 0.625rem;
	margin-top: 1.25rem;
}

.p-privacy__content li {
	font-size: 1rem;
}

.p-privacy__company {
	margin-top: 1.875rem;
}

.p-privacy__copyright {
	font-size: 0.625rem;
	margin-top: 3.125rem;
}

.p-thanks {
	padding-bottom: 1.875rem;
	padding-top: 6.25rem;
}

.p-thanks__box {
	padding: 3.125rem 0.625rem;
}

.p-thanks__title {
	font-size: 1.5625rem;
}

.p-thanks__text {
	font-size: 0.9375rem;
	margin-top: 1.875rem;
}

.p-thanks__copyright {
	font-size: 0.625rem;
	margin-top: 3.125rem;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@-webkit-keyframes loop {

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

to {
	-webkit-transform: translateX(calc(-100% - 1em));
	transform: translateX(calc(-100% - 1em));
}

}

@keyframes loop {

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

to {
	-webkit-transform: translateX(calc(-100% - 1em));
	transform: translateX(calc(-100% - 1em));
}

}

@-webkit-keyframes loop2 {

0% {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

to {
	-webkit-transform: translateX(calc(-200% - 1em));
	transform: translateX(calc(-200% - 1em));
}

}

@keyframes loop2 {

0% {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

to {
	-webkit-transform: translateX(calc(-200% - 1em));
	transform: translateX(calc(-200% - 1em));
}

}

@-webkit-keyframes text_anime_on {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@keyframes text_anime_on {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}


/*# sourceMappingURL=style.css.map */
