@charset "UTF-8";
/*
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
	box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
	margin: 0;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
	line-height: 1.5;
}

/*
  5. Improve media defaults
*/
img, picture, video, canvas, svg {
	max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input, button, textarea, select {
	font: inherit;
}

/*
  7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}

/*
  8. Create a root stacking context
*/
#root, #__next {
	isolation: isolate;
}

/* ==============================================
 * Base style
 */
:root {
	--font-ja: "Inter", "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, "Helvetica Neue", Arial, sans-serif;
	--font-en: var(--font-ja);
	--wrap-padding: 5.56vw;
	--header-height: 104px;
	--footer-height: 267px;
	--ease-out-quad: cubic-bezier(0.5, 1, 0.89, 1);
}
@media screen and (max-width: 767px) {
	:root {
		--wrap-padding: 8vw;
		--footer-height: 235px;
	}
}

body {
	font-family: var(--font-ja);
	font-size: 16px;
	line-height: 2;
	background-color: #E2F4EE;
	color: #333;
	opacity: 0;
	transition: opacity 0.4s;
}
body.is-loaded {
	opacity: 1;
}

a {
	color: #73988D;
	text-decoration: underline;
}

img,
svg {
	max-width: 100%;
	height: auto;
}

svg {
	overflow: visible;
}

button {
	cursor: pointer;
}

#root {
	max-width: 100%;
	overflow-x: clip;
}

main.js-show-header {
	margin-top: var(--header-height);
	min-height: calc(100vh - var(--header-height) - var(--footer-height));
	min-height: calc(100lvh - var(--header-height) - var(--footer-height));
}
@media screen and (max-width: 767px) {
	main.js-show-header {
		margin-top: 0;
		min-height: calc(100vh - var(--footer-height));
		min-height: calc(100lvh - var(--footer-height));
	}
}

.grecaptcha-badge {
	display: none !important;
	visibility: hidden;
}

h1 {
	margin: 2em 0 0.8em;
	text-align: center;
	font-size: 1.75rem;
	font-size: clamp(1.75rem, 1.56rem + 0.8080808081vw, 2.25rem); /* 28px @375px - 36px @1365px */
	font-weight: normal;
}
h1:first-child {
	margin-top: 0;
}

h3 {
	margin: 2em 0 0.8em;
	font-size: 1.25rem;
	font-size: clamp(1.25rem, 1.17rem + 0.303030303vw, 1.43rem); /* 20px @375px - 23px @1365px */
	font-weight: normal;
}
h3:first-child {
	margin-top: 0;
}

/* ==============================================
 * .header-pc
 */
.header-pc {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 80;
	background-color: #fff;
	opacity: 0;
	transition: opacity 0.5s;
}
@media screen and (max-width: 767px) {
	.header-pc {
		display: none;
	}
}
.header-pc.is-shown {
	opacity: 1;
}
.header-pc__wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: var(--header-height);
	padding: 0 max(40px, 2.92vw);
}
.header-pc__logo img {
	width: 120px;
	display: block;
	margin-bottom: 2px;
}
.header-pc__list {
	padding-left: 0;
	list-style-type: none;
	display: flex;
	align-items: center;
	font-family: var(--font-en);
	font-size: 15px;
	letter-spacing: 0.05em;
}
.header-pc__list > li {
	position: relative;
	padding: 0 24px;
}
.header-pc__list > li:last-child {
	padding-right: 0;
}
.header-pc__list > li:not(:first-child)::before {
	content: "";
	display: block;
	width: 1px;
	height: 0.9em;
	position: absolute;
	left: 0;
	top: calc(50% - 0.45em);
	background-color: #333;
}
.header-pc__list a {
	color: #333;
	transition: color 0.2s;
	text-decoration: none;
}
.header-pc__list a:hover {
	color: rgb(51 51 51 / 0.5);
}

/* ==============================================
 * .footer
 */
.footer {
	padding: min(91px, 6.66vw) 0 min(21px, 1.53vw);
	background: #73988D;
}
@media screen and (max-width: 767px) {
	.footer {
		padding-top: 65px;
		padding-bottom: 20px;
	}
}
.footer__sns {
	padding-left: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 40px;
}
.footer__sns img {
	width: 24px;
	display: block;
}
.footer__sns a {
	transition: opacity 0.3s;
}
.footer__sns a:hover {
	opacity: 0.7;
}
.footer__link {
	margin-top: 73px;
	padding-left: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
	.footer__link {
		margin-top: 56px;
	}
}
.footer__link > li {
	position: relative;
	padding: 0 8px;
}
.footer__link > li:not(:first-child)::before {
	content: "";
	display: block;
	width: 1px;
	height: 0.8em;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: calc(50% - 0.4em);
}
.footer__link a {
	padding: 0.5em 1em;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-underline-offset: 4px;
}
.footer__link a:hover {
	text-decoration: underline;
}
.footer__copyright {
	margin-top: 10px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	letter-spacing: 0.05em;
}
.footer__copyright span {
	font-family: var(--font-en);
	font-weight: 300;
}

/* ==============================================
 * .menu-btn
 */
.menu-btn {
	position: fixed;
	right: 10px;
	top: 10px;
	z-index: 110;
	display: none;
}
@media screen and (max-width: 767px) {
	.menu-btn {
		display: block;
	}
}
.menu-btn__btn {
	position: absolute;
	top: 0;
	right: 0;
	appearance: none;
	background: transparent;
	border-radius: 0;
	border-width: 0;
	width: 56px;
	height: 32px;
	padding: 10px;
}
.menu-btn__btn::before, .menu-btn__btn::after {
	content: "";
	display: block;
	width: 36px;
	height: 2px;
	background-color: #90B7AB;
	position: absolute;
	top: 10px;
	left: calc(50% - 18px);
	user-select: none;
	transition: transform 0.3s, top 0.3s;
}
.menu-btn__btn::after {
	top: calc(100% - 10px - 2px);
}
.menu-btn__btn.is-open::before {
	top: calc(50% - 1px);
	transform: rotate(29deg);
}
.menu-btn__btn.is-open::after {
	top: calc(50% - 1px);
	transform: rotate(-29deg);
}

/* ==============================================
 * .menu-sp
 */
.remodal {
	margin-bottom: 0;
	max-width: 100% !important;
}

.remodal-overlay {
	z-index: 0;
	display: none !important;
}

.remodal-wrapper {
	padding: 0;
	z-index: 100;
}

.menu-sp {
	display: block;
	position: fixed;
	inset: 0;
	background: center center/644px 644px repeat url("../img/common/bg_noise.png") #E2F4EE;
	padding: 0;
	max-height: 100vh;
	height: 100vh;
	overflow-y: auto;
}
.menu-sp__inner {
	min-height: 100vh;
	padding: 30px 0;
	display: grid;
	place-content: center;
}
.menu-sp__gnav {
	text-align: center;
	padding-left: 0;
	list-style-type: none;
}
.menu-sp__gnav li:not(:first-child) {
	margin-top: 20px;
}
.menu-sp__gnav a {
	padding: 10px;
	color: #333;
	text-decoration: none;
	font-size: 20px;
	letter-spacing: 0.05em;
	font-weight: 300;
}
.menu-sp__gnav a:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}
.menu-sp__sns {
	margin-top: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 0;
	list-style-type: none;
	gap: 0 40px;
}
.menu-sp__sns img {
	width: 24px;
}

/* ==============================================
 * common classes - display
 */
.u-lte-wrap {
	display: none;
}
@media screen and (max-width: 1365px) {
	.u-lte-wrap {
		display: block;
	}
}

.u-lte-tab {
	display: none;
}
@media screen and (max-width: 1024px) {
	.u-lte-tab {
		display: block;
	}
}

.u-lte-sp {
	display: none;
}
@media screen and (max-width: 767px) {
	.u-lte-sp {
		display: block;
	}
}

.u-lte-wrap-inline {
	display: none;
}
@media screen and (max-width: 1365px) {
	.u-lte-wrap-inline {
		display: inline;
	}
}

.u-lte-tab-inline {
	display: none;
}
@media screen and (max-width: 1024px) {
	.u-lte-tab-inline {
		display: inline;
	}
}

.u-lte-sp-inline {
	display: none;
}
@media screen and (max-width: 767px) {
	.u-lte-sp-inline {
		display: inline;
	}
}

@media screen and (max-width: 1365px) {
	.u-gt-wrap {
		display: none;
	}
}

@media screen and (max-width: 1080px) {
	.u-gt-1080 {
		display: none;
	}
}

@media screen and (max-width: 1024px) {
	.u-gt-tab {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.u-gt-sp {
		display: none;
	}
}

/* ==============================================
 * common classes - text-align
 */
.u-ta-center {
	text-align: center;
}

/* ==============================================
 * common classes - margin, padding
 */
.u-mt-5 {
	margin-top: 5px;
}

.u-mt-10 {
	margin-top: 10px;
}

.u-mt-15 {
	margin-top: 15px;
}

.u-mt-20 {
	margin-top: 20px;
}

.u-mt-25 {
	margin-top: 25px;
}

.u-mt-30 {
	margin-top: 30px;
}

.u-mt-35 {
	margin-top: 35px;
}

.u-mt-40 {
	margin-top: 40px;
}

.u-mt-45 {
	margin-top: 45px;
}

.u-mt-50 {
	margin-top: 50px;
}

.u-mt-55 {
	margin-top: 55px;
}

.u-mt-60 {
	margin-top: 60px;
}

.u-mt-65 {
	margin-top: 65px;
}

.u-mt-70 {
	margin-top: 70px;
}

.u-mt-75 {
	margin-top: 75px;
}

.u-mt-80 {
	margin-top: 80px;
}

.u-mt-85 {
	margin-top: 85px;
}

.u-mt-90 {
	margin-top: 90px;
}

.u-mt-95 {
	margin-top: 95px;
}

.u-mt-100 {
	margin-top: 100px;
}

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

.u-mb-10 {
	margin-bottom: 10px;
}

.u-mb-15 {
	margin-bottom: 15px;
}

.u-mb-20 {
	margin-bottom: 20px;
}

.u-mb-25 {
	margin-bottom: 25px;
}

.u-mb-30 {
	margin-bottom: 30px;
}

.u-mb-35 {
	margin-bottom: 35px;
}

.u-mb-40 {
	margin-bottom: 40px;
}

.u-mb-45 {
	margin-bottom: 45px;
}

.u-mb-50 {
	margin-bottom: 50px;
}

.u-mb-55 {
	margin-bottom: 55px;
}

.u-mb-60 {
	margin-bottom: 60px;
}

.u-mb-65 {
	margin-bottom: 65px;
}

.u-mb-70 {
	margin-bottom: 70px;
}

.u-mb-75 {
	margin-bottom: 75px;
}

.u-mb-80 {
	margin-bottom: 80px;
}

.u-mb-85 {
	margin-bottom: 85px;
}

.u-mb-90 {
	margin-bottom: 90px;
}

.u-mb-95 {
	margin-bottom: 95px;
}

.u-mb-100 {
	margin-bottom: 100px;
}

.u-pt-5 {
	padding-top: 5px;
}

.u-pt-10 {
	padding-top: 10px;
}

.u-pt-15 {
	padding-top: 15px;
}

.u-pt-20 {
	padding-top: 20px;
}

.u-pt-25 {
	padding-top: 25px;
}

.u-pt-30 {
	padding-top: 30px;
}

.u-pt-35 {
	padding-top: 35px;
}

.u-pt-40 {
	padding-top: 40px;
}

.u-pt-45 {
	padding-top: 45px;
}

.u-pt-50 {
	padding-top: 50px;
}

.u-pt-55 {
	padding-top: 55px;
}

.u-pt-60 {
	padding-top: 60px;
}

.u-pt-65 {
	padding-top: 65px;
}

.u-pt-70 {
	padding-top: 70px;
}

.u-pt-75 {
	padding-top: 75px;
}

.u-pt-80 {
	padding-top: 80px;
}

.u-pt-85 {
	padding-top: 85px;
}

.u-pt-90 {
	padding-top: 90px;
}

.u-pt-95 {
	padding-top: 95px;
}

.u-pt-100 {
	padding-top: 100px;
}

.u-pb-5 {
	padding-bottom: 5px;
}

.u-pb-10 {
	padding-bottom: 10px;
}

.u-pb-15 {
	padding-bottom: 15px;
}

.u-pb-20 {
	padding-bottom: 20px;
}

.u-pb-25 {
	padding-bottom: 25px;
}

.u-pb-30 {
	padding-bottom: 30px;
}

.u-pb-35 {
	padding-bottom: 35px;
}

.u-pb-40 {
	padding-bottom: 40px;
}

.u-pb-45 {
	padding-bottom: 45px;
}

.u-pb-50 {
	padding-bottom: 50px;
}

.u-pb-55 {
	padding-bottom: 55px;
}

.u-pb-60 {
	padding-bottom: 60px;
}

.u-pb-65 {
	padding-bottom: 65px;
}

.u-pb-70 {
	padding-bottom: 70px;
}

.u-pb-75 {
	padding-bottom: 75px;
}

.u-pb-80 {
	padding-bottom: 80px;
}

.u-pb-85 {
	padding-bottom: 85px;
}

.u-pb-90 {
	padding-bottom: 90px;
}

.u-pb-95 {
	padding-bottom: 95px;
}

.u-pb-100 {
	padding-bottom: 100px;
}

/* ==============================================
 * .anim-fade-in
 */
@keyframes animFadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.anim-fade-in {
	opacity: 0;
}
.anim-fade-in.js-animated {
	animation: 1.5s var(--ease-out-quad) forwards animFadeIn;
}

/* ==============================================
 * .anim-fade-in-blur
 */
@keyframes animFadeInBlur {
	0% {
		opacity: 0;
		filter: blur(4px);
	}
	100% {
		opacity: 1;
		filter: none;
	}
}
.anim-fade-in-blur {
	opacity: 0;
	filter: blur(4px);
}
.anim-fade-in-blur.js-animated {
	animation: 1.5s var(--ease-out-quad) forwards animFadeInBlur;
}

/* ==============================================
 * .c-wrap
 */
.c-wrap {
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--wrap-padding);
	padding-right: var(--wrap-padding);
	width: 1366px;
	max-width: 100%;
}

/* ==============================================
 * .c-bg-noize
 */
.c-bg-noize {
	position: fixed;
	inset: 0;
	background: center center/644px 644px repeat url("../img/common/bg_noise.png");
	z-index: 50;
	pointer-events: none; /* クリック・ホバー無効 */
	user-select: none; /* 範囲選択禁止 */
	-webkit-user-drag: none; /* 画像ドラッグ禁止 */
	-webkit-touch-callout: none; /* 長押しメニュー無効 */
	-webkit-tap-highlight-color: transparent; /* モバイルの青枠防止 */
	touch-action: none; /* タッチジェスチャー無効 */
}

/* ==============================================
 * .c-desc
 */
.c-desc {
	font-size: 15px;
	letter-spacing: 0.05em;
}
.c-desc p:not(:first-of-type), .c-desc:not(:first-of-type) {
	margin-top: 2em;
}
.c-desc h3 + p:not(:first-of-type) {
	margin-top: 0;
}

/* ==============================================
 * .c-hl-light
 */
.c-hl-light {
	font-size: 3rem;
	font-size: clamp(3rem, 2.95rem + 0.202020202vw, 3.12rem); /* 48px @375px - 50px @1365px */
	font-family: var(--font-en);
	letter-spacing: 0.1em;
	font-weight: 300;
}

/* ==============================================
 * .t-mv
 */
.t-mv {
	position: relative;
	max-width: 100%;
	overflow: hidden;
	height: 100vh;
	min-height: 51.24vw;
	max-height: 58.59vw;
	background: center center/cover no-repeat url("../img/top/mv_bg.webp");
}
@media screen and (max-width: 767px) {
	.t-mv {
		min-height: 125.33vw;
		max-height: 177.83vw;
		background-image: url("../img/top/mv_bg_sp.webp");
	}
}
.t-mv__line {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	padding-top: 3.25vh;
	z-index: 52;
}
@media screen and (max-width: 767px) {
	.t-mv__line {
		padding-top: 44.53vw;
	}
}
.t-mv__line img {
	display: block;
	width: calc(100vw + 2px);
	max-width: calc(100vw + 2px);
}
.t-mv__logo {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	padding-top: 3.51vh;
	z-index: 52;
}
@media screen and (max-width: 767px) {
	.t-mv__logo {
		padding-top: 0;
	}
}
.t-mv__logo img {
	display: block;
	width: 17.64vw;
	min-width: 241px;
	filter: drop-shadow(0 0 4.39vw rgb(0 0 0 / 0.7));
}
@media screen and (max-width: 767px) {
	.t-mv__logo img {
		width: 48.53vw;
		min-width: 0;
		filter: none;
	}
}

/* ==============================================
 * .t-message
 */
.t-message {
	margin: max(102px, 7.46vw) 0 0;
}
@media screen and (max-width: 767px) {
	.t-message {
		margin-top: 50px;
	}
}
@media screen and (max-width: 767px) {
	.t-message__ttl {
		letter-spacing: 0.05em;
	}
}
.t-message__row {
	display: flex;
	align-items: start;
	flex-direction: row-reverse;
	gap: 0 7.83vw;
}
@media screen and (max-width: 767px) {
	.t-message__row {
		flex-direction: column;
		row-gap: 11.46vw;
	}
}
.t-message__txt-col {
	flex: 1;
	margin-right: var(--wrap-padding);
}
@media screen and (max-width: 767px) {
	.t-message__txt-col {
		margin-left: var(--wrap-padding);
		margin-right: var(--wrap-padding);
	}
}
.t-message__txt-col .c-hl-light {
	margin-top: -0.26em;
}
.t-message__txt-col p:first-of-type {
	margin-top: 2.33em;
}
@media screen and (max-width: 767px) {
	.t-message__txt-col p:first-of-type {
		margin-top: 20px;
	}
}
.t-message__img {
	overflow: hidden;
	border-radius: max(8px, 0.58vw);
}
.t-message__img img {
	display: block;
	width: 100%;
}
.t-message__img--01 {
	width: 48.9vw;
}
@media screen and (max-width: 767px) {
	.t-message__img--01 {
		width: 84vw;
	}
}
.t-message__img--02 {
	margin: -12.08vw 0 0 auto;
	width: 29.28vw;
}
@media screen and (max-width: 1024px) {
	.t-message__img--02 {
		margin-top: 10.66vw;
	}
}
@media screen and (max-width: 767px) {
	.t-message__img--02 {
		width: 69.33vw;
	}
}

/* ==============================================
 * .t-ideal
 */
.t-ideal {
	margin: max(88px, 6.44vw) 0 max(133px, 9.73vw);
}
@media screen and (max-width: 767px) {
	.t-ideal {
		margin-top: 54px;
		margin-bottom: 50px;
	}
}
.t-ideal__ttl {
	display: flex;
	align-items: center;
	gap: 0 0.1em;
}
@media screen and (max-width: 767px) {
	.t-ideal__ttl {
		letter-spacing: 0.05em;
	}
}
.t-ideal__ttl img {
	width: 0.82em;
}
.t-ideal__ctt {
	margin: 0 0 0 auto;
	width: 73.47%;
	max-width: 100%;
}
@media screen and (max-width: 767px) {
	.t-ideal__ctt {
		width: auto;
	}
}
.t-ideal__hl {
	margin: 1.4em 0 1.03em;
	font-size: 1.43rem;
	font-size: clamp(1.43rem, 1.22rem + 0.9090909091vw, 2rem); /* 23px @375px - 32px @1365px */
}
@media screen and (max-width: 767px) {
	.t-ideal__hl {
		margin-top: 10px;
		margin-bottom: 19px;
	}
}
.t-ideal__list {
	padding-left: 0;
	list-style-type: none;
}
.t-ideal__list li {
	padding: 0 0 24px 30px;
	font-size: 16px;
	position: relative;
	line-height: 1.6;
	border-bottom: 1px solid #BCBCBC;
}
@media screen and (max-width: 767px) {
	.t-ideal__list li {
		white-space: nowrap;
		letter-spacing: 0em;
		padding-bottom: 22px;
	}
}
.t-ideal__list li:not(:first-child) {
	margin-top: 24px;
}
@media screen and (max-width: 767px) {
	.t-ideal__list li:not(:first-child) {
		margin-top: 23px;
	}
}
.t-ideal__list li::before {
	content: "";
	display: block;
	width: 0.87em;
	height: 0.87em;
	background-color: #333;
	border-radius: 50%;
	position: absolute;
	left: 6px;
	top: 6px;
}
@media screen and (max-width: 767px) {
	.t-ideal__list li::before {
		top: 5px;
	}
}

/* ==============================================
 * .t-about
 */
.t-about {
	padding: max(76px, 5.56vw) 0 max(99px, 7.24vw);
	color: #fff;
	background-color: #73988D;
}
@media screen and (max-width: 767px) {
	.t-about {
		padding-top: 34px;
		padding-bottom: 56px;
	}
}
@media screen and (max-width: 767px) {
	.t-about__ttl {
		letter-spacing: 0.05em;
		white-space: nowrap;
	}
}
.t-about__list {
	margin-top: 24px;
	padding-left: 0;
	list-style-type: none;
}
@media screen and (max-width: 767px) {
	.t-about__list {
		margin-top: 14px;
	}
}
.t-about__list > li {
	display: flex;
	border-bottom: 1px solid #fff;
	padding: 80px 0;
	gap: 0 7.57%;
	align-items: center;
}
@media screen and (max-width: 767px) {
	.t-about__list > li {
		flex-direction: column;
		padding: 53px 0 26px;
		row-gap: 30px;
	}
}
.t-about__list > li:first-child {
	border-top: 1px solid #fff;
}
.t-about__img-col {
	width: 53.13%;
}
@media screen and (max-width: 1024px) {
	.t-about__img-col {
		width: 45%;
	}
}
@media screen and (max-width: 767px) {
	.t-about__img-col {
		width: 100%;
	}
}
.t-about__img-wrap {
	overflow: hidden;
	border-radius: max(8px, 0.58vw);
}
.t-about__img-wrap img {
	display: block;
}
.t-about__txt-col {
	flex: 1;
}
.t-about__hl {
	font-size: 23px;
	letter-spacing: 0.05em;
	font-weight: normal;
}
@media screen and (max-width: 767px) {
	.t-about__hl {
		letter-spacing: 0em;
	}
}
.t-about__desc {
	margin-top: 17px;
}
@media screen and (max-width: 767px) {
	.t-about__desc {
		margin-top: 10px;
	}
}

/* ==============================================
 * .t-product
 */
.t-product {
	margin: max(72px, 5.27vw) 0 max(87px, 6.36vw);
}
@media screen and (max-width: 767px) {
	.t-product {
		margin-top: 38px;
		margin-bottom: 65px;
	}
}
@media screen and (max-width: 767px) {
	.t-product__wrap.c-wrap {
		padding-left: 0;
		padding-right: 0;
	}
}
.t-product__ttl {
	text-align: center;
}
.t-product__desc {
	margin-top: -0.27em;
	text-align: center;
}
.t-product__list {
	margin-top: 36px;
	list-style-type: none;
	padding-left: 0;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 1024px) {
	.t-product__list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		justify-content: center;
		row-gap: 20px;
	}
}
@media screen and (max-width: 767px) {
	.t-product__list {
		grid-template-columns: repeat(2, 1fr);
		width: 500px;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		padding-left: 2.8%;
		padding-right: 2.8%;
	}
}
.t-product__list > li {
	width: 16.47%;
	max-width: 200px;
}
@media screen and (max-width: 1024px) {
	.t-product__list > li {
		width: auto;
		margin-left: auto;
		margin-right: auto;
	}
}
.t-product__list > li:nth-child(1) {
	animation-delay: 0.08s;
}
@media screen and (max-width: 1024px) {
	.t-product__list > li:nth-child(1) {
		animation-delay: 0s;
	}
}
.t-product__list > li:nth-child(2) {
	animation-delay: 0.16s;
}
@media screen and (max-width: 1024px) {
	.t-product__list > li:nth-child(2) {
		animation-delay: 0s;
	}
}
.t-product__list > li:nth-child(3) {
	animation-delay: 0.24s;
}
@media screen and (max-width: 1024px) {
	.t-product__list > li:nth-child(3) {
		animation-delay: 0s;
	}
}
.t-product__list > li:nth-child(4) {
	animation-delay: 0.32s;
}
@media screen and (max-width: 1024px) {
	.t-product__list > li:nth-child(4) {
		animation-delay: 0s;
	}
}
.t-product__list > li:nth-child(5) {
	animation-delay: 0.4s;
}
@media screen and (max-width: 1024px) {
	.t-product__list > li:nth-child(5) {
		animation-delay: 0s;
	}
}
.t-product__list > li:nth-child(6) {
	animation-delay: 0.48s;
}
@media screen and (max-width: 1024px) {
	.t-product__list > li:nth-child(6) {
		animation-delay: 0s;
	}
}
@media screen and (max-width: 1024px) {
	.t-product__list > li:nth-child(3n-1) {
		animation-delay: 0.08s;
	}
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
	.t-product__list > li:nth-child(3n-1) {
		animation-delay: 0s;
	}
}
@media screen and (max-width: 1024px) {
	.t-product__list > li:nth-child(3n) {
		animation-delay: 0.16s;
	}
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
	.t-product__list > li:nth-child(3n) {
		animation-delay: 0s;
	}
}
@media screen and (max-width: 767px) {
	.t-product__list > li:nth-child(even) {
		animation-delay: 0.08s;
	}
}
.t-product__icon img {
	display: block;
	width: 100%;
}
.t-product__name {
	margin-top: 13px;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.2;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.t-product__name {
		margin-top: 8px;
	}
}
.t-product__detail {
	margin-top: 14px;
	padding-left: 0;
	list-style-type: none;
}
@media screen and (max-width: 767px) {
	.t-product__detail {
		margin-top: 10px;
	}
}
.t-product__detail li {
	font-size: 15px;
	letter-spacing: 0.05em;
	line-height: 1.2;
	text-align: center;
}

/* ==============================================
 * .t-flow
 */
.t-flow {
	counter-reset: flow-num;
	padding: max(44px, 3.22vw) 0 max(100px, 7.32vw);
	background-color: #fff;
}
@media screen and (max-width: 767px) {
	.t-flow {
		padding-top: 40px;
		padding-bottom: 70px;
	}
}
.t-flow__wrap {
	display: flex;
	justify-content: space-between;
	align-items: start;
}
@media screen and (max-width: 1024px) {
	.t-flow__wrap {
		flex-direction: column;
	}
}
@media screen and (max-width: 767px) {
	.t-flow__ttl {
		width: 100%;
		text-align: center;
	}
}
.t-flow__list {
	margin-top: 47px;
	padding-left: 0;
	list-style-type: none;
	width: 729px;
	max-width: 80%;
}
@media screen and (max-width: 1024px) {
	.t-flow__list {
		max-width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.t-flow__list {
		margin-top: 30px;
	}
}
.t-flow__list > li {
	position: relative;
	padding: 0 0 60px 84px;
}
@media screen and (max-width: 767px) {
	.t-flow__list > li {
		padding-left: 57px;
		padding-bottom: 36px;
	}
}
.t-flow__list > li:last-child {
	padding-bottom: 0;
}
.t-flow__list > li::before {
	content: "";
	display: block;
	width: 4px;
	height: 100%;
	position: absolute;
	left: 12px;
	top: 0;
	bottom: 0;
	background-color: #90B7AB;
}
.t-flow__list > li:first-child::before {
	top: auto;
	height: calc(100% - 14px);
}
.t-flow__list > li:last-child::before {
	bottom: auto;
	height: 14px;
}
.t-flow__list > li:first-child::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 2px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: #90B7AB;
}
.t-flow__list > li:not(:first-child)::after {
	content: "";
	display: block;
	position: absolute;
	left: -2px;
	top: 5px;
	width: 32px;
	height: 16px;
	background-color: #90B7AB;
	clip-path: polygon(50% 36.4375%, 0% 0%, 50% 100%, 100% 0%);
}
.t-flow__hl {
	position: relative;
	font-size: 22px;
	letter-spacing: 0.05em;
	font-weight: normal;
	padding-left: 40px;
	line-height: 1.4;
}
.t-flow__hl::before {
	counter-increment: flow-num;
	content: counter(flow-num);
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 16px;
	width: 1.75em;
	height: 1.75em;
	line-height: 1.625;
	border: 1px solid #707070;
	border-radius: 50%;
	text-align: center;
	font-family: var(--font-en);
	font-weight: 300;
}
.t-flow__desc {
	margin-top: 14px;
	font-size: 15px;
	line-height: 1.6;
}

/* ==============================================
 * .t-feature
 */
.t-feature {
	padding: max(109px, 7.97vw) 0 max(90px, 6.58vw);
}
@media screen and (max-width: 767px) {
	.t-feature {
		padding-top: 43px;
		padding-bottom: 50px;
	}
}
@media screen and (max-width: 767px) {
	.t-feature__ttl {
		letter-spacing: 0.05em;
	}
}
.t-feature__list {
	margin-top: 24px;
	padding-left: 0;
	list-style-type: none;
}
@media screen and (max-width: 767px) {
	.t-feature__list {
		margin-top: 16px;
	}
}
.t-feature__list > li {
	display: flex;
	border-bottom: 1px solid #BCBCBC;
	padding: 80px 0;
	gap: 0 5.51%;
	align-items: start;
}
@media screen and (max-width: 767px) {
	.t-feature__list > li {
		padding-top: 56px;
		padding-bottom: 38px;
		flex-direction: column;
		row-gap: 32px;
	}
}
.t-feature__list > li:first-child {
	border-top: 1px solid #BCBCBC;
}
.t-feature__img-col {
	width: 46.12%;
}
@media screen and (max-width: 767px) {
	.t-feature__img-col {
		width: 100%;
	}
}
.t-feature__img-wrap {
	overflow: hidden;
	border-radius: max(8px, 0.58vw);
}
.t-feature__img-wrap img {
	display: block;
}
.t-feature__txt-col {
	flex: 1;
}
.t-feature__hl {
	margin-top: -0.31em;
	font-size: 1.43rem;
	font-size: clamp(1.43rem, 1.36rem + 0.303030303vw, 1.62rem); /* 23px @375px - 26px @1365px */
	letter-spacing: 0.05em;
	font-weight: normal;
}
@media screen and (max-width: 767px) {
	.t-feature__hl {
		letter-spacing: 0em;
	}
}
.t-feature__desc {
	margin-top: 17px;
}
@media screen and (max-width: 767px) {
	.t-feature__desc {
		margin-top: 10px;
	}
}

/* ==============================================
 * .t-contact
 */
.t-contact {
	padding: max(70px, 5.12vw) 0 max(80px, 5.85vw);
	border: 2.92vw solid #73988D;
	background-color: #F8FAFA;
}
@media screen and (max-width: 767px) {
	.t-contact {
		padding-top: 25px;
		padding-bottom: 52px;
		border-width: min(4.26vw, 40px);
	}
}
.t-contact__ttl {
	text-align: center;
}
.t-contact__inner {
	margin: 0 auto;
	width: 600px;
	max-width: 78.66vw;
}
.t-contact__form {
	margin-top: 33px;
}
@media screen and (max-width: 767px) {
	.t-contact__form {
		margin-top: 28px;
	}
}
.t-contact__confirm {
	display: none;
}
.t-contact input,
.t-contact textarea,
.t-contact button {
	position: relative;
	appearance: none;
	border-width: 0;
	border-radius: 0;
	padding: 19px 20px;
	font-size: 15px;
	line-height: 1.467;
	background-color: #FFFFFF;
	width: 100%;
	z-index: 52;
	color: #333;
	outline: 0;
}
@media screen and (max-width: 767px) {
	.t-contact input,
	.t-contact textarea,
	.t-contact button {
		padding-left: 10px;
		padding-right: 10px;
	}
}
.t-contact input.wpcf7-not-valid,
.t-contact textarea.wpcf7-not-valid,
.t-contact button.wpcf7-not-valid {
	outline: 1px solid #FF0000;
}
.t-contact input::placeholder,
.t-contact textarea::placeholder {
	color: #BFBFBF;
	font-family: var(--font-ja);
	transition: color 0.2s;
}
.t-contact textarea {
	resize: vertical;
	min-height: 120px;
	height: 120px;
}
.t-contact input[type=checkbox],
.t-contact input[type=radio] {
	position: relative;
	width: 20px;
	height: 20px;
	padding: 0;
	cursor: pointer;
}
.t-contact input[type=checkbox]::before,
.t-contact input[type=radio]::before {
	content: "";
	display: block;
	width: 13px;
	height: 13px;
	position: absolute;
	left: 1px;
	top: -1px;
	clip-path: polygon(80% 0, 100% 0, 100% 100%, 50% 100%, 50% 80%, 80% 80%);
	transform: rotate(45deg);
	background-color: #73988D;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
}
.t-contact input[type=checkbox]:checked::before,
.t-contact input[type=radio]:checked::before {
	opacity: 1;
}
.t-contact input[type=radio] {
	border-radius: 50%;
}
.t-contact input[type=submit],
.t-contact button {
	padding-left: 42px;
	padding-right: 42px;
	width: auto;
	font-size: 14px;
	color: #fff;
	background-color: #73988D;
	cursor: pointer;
}
.t-contact textarea {
	display: block;
}
.t-contact__name {
	margin-top: 23px;
	font-size: 15px;
	letter-spacing: 0.05em;
	font-weight: normal;
}
.t-contact__name:first-child {
	margin-top: 0;
}
.t-contact__required {
	margin-left: 7px;
	font-size: 10px;
	letter-spacing: 0.05em;
	color: #FF0000;
}
.t-contact__field {
	margin: 4px 0 0;
}
.t-contact__field--choice {
	margin-top: 17px;
	margin-bottom: 6px;
}
.t-contact__field--choice label {
	display: flex;
	align-items: start;
	justify-content: start;
	gap: 0 8px;
	font-size: 15px;
	letter-spacing: 0em;
	line-height: 1.333;
	cursor: pointer;
}
.t-contact__field--choice label input[type=checkbox],
.t-contact__field--choice label input[type=radio] {
	min-width: 20px;
	min-height: 20px;
}
.t-contact__field--product .wpcf7-checkbox {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px 0;
}
@media screen and (max-width: 1024px) {
	.t-contact__field--product .wpcf7-checkbox {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 767px) {
	.t-contact__field--product .wpcf7-checkbox {
		grid-template-columns: repeat(2, 1fr);
	}
}
.t-contact__field--product .wpcf7-checkbox > * {
	margin-left: 0;
}
@media screen and (max-width: 1024px) {
	.t-contact__field--product .wpcf7-checkbox > *:nth-child(5) {
		grid-column: 2/4;
	}
}
@media screen and (max-width: 767px) {
	.t-contact__field--product .wpcf7-checkbox > *:nth-child(5) {
		grid-column: unset;
	}
}
.t-contact__field--product .wpcf7-checkbox > *:nth-child(6) {
	grid-column: 2/4;
}
@media screen and (max-width: 1024px) {
	.t-contact__field--product .wpcf7-checkbox > *:nth-child(6) {
		grid-column: 1/3;
	}
}
@media screen and (max-width: 767px) {
	.t-contact__field--product .wpcf7-checkbox > *:nth-child(6) {
		grid-column: unset;
		grid-row: 3/5;
		grid-column: 2;
	}
}
.t-contact__submit {
	text-align: center;
	margin-top: 80px;
	position: relative;
}
@media screen and (max-width: 767px) {
	.t-contact__submit {
		margin-top: 47px;
	}
}
.t-contact__submit p {
	display: flex;
	gap: 0 20px;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width: 767px) {
	.t-contact__submit p {
		column-gap: 6px;
	}
}
.t-contact__submit .wpcf7-spinner {
	position: absolute;
	bottom: -30px;
	left: calc(50% - 12px);
	margin: 0;
}
.t-contact__recaptcha {
	margin-top: 24px;
	font-size: 13px;
}
.t-contact .wpcf7-not-valid-tip, .t-contact__error-msg {
	margin-top: 3px;
	color: #FF0000;
}
.t-contact .wpcf7 form.invalid .wpcf7-response-output, .t-contact .wpcf7 form.unaccepted .wpcf7-response-output, .t-contact .wpcf7 form.payment-required .wpcf7-response-output, .t-contact__error-field {
	outline: 1px solid #FF0000 !important;
}
.t-contact .t-contact__confirm .t-contact__field {
	margin-left: 2em;
}
.t-contact .t-contact__field--f_message {
	white-space: pre-wrap;
}
.t-contact .t-contact__btn-gray {
	background-color: #abb2b0 !important;
}

/* ==============================================
 * .t-faq
 */
.t-faq {
	margin: max(110px, 8.05vw) 0;
}
@media screen and (max-width: 767px) {
	.t-faq {
		margin-top: 45px;
		margin-bottom: 60px;
	}
}
@media screen and (max-width: 767px) {
	.t-faq__ttl {
		text-align: center;
	}
}
.t-faq__ctt {
	margin-left: auto;
	width: 73.47%;
}
@media screen and (max-width: 1024px) {
	.t-faq__ctt {
		width: auto;
	}
}
.t-faq__sub-ttl {
	margin-top: 49px;
	font-size: 32px;
	letter-spacing: 0;
	font-weight: normal;
}
@media screen and (max-width: 767px) {
	.t-faq__sub-ttl {
		margin-top: 19px;
		text-align: center;
	}
}
.t-faq__list {
	margin: 32px 0 0;
	line-height: 1.467;
	border-bottom: 1px solid #BCBCBC;
}
@media screen and (max-width: 767px) {
	.t-faq__list {
		letter-spacing: 0em;
	}
}
.t-faq__q, .t-faq__a {
	position: relative;
	padding-left: 34px;
}
.t-faq__q {
	padding-bottom: 26px;
	padding-right: 36px;
	cursor: pointer;
}
.t-faq__q::before, .t-faq__q::after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 12px;
	width: 24px;
	height: 1px;
	background-color: #333333;
	transition: opacity 0.3s, transform 0.3s;
	pointer-events: none;
}
.t-faq__q::after {
	transform: rotate(90deg);
}
.t-faq__q:not(:first-child) {
	padding-top: 26px;
	border-top: 1px solid #BCBCBC;
}
.t-faq__q:not(:first-child) .t-faq__point {
	top: 24px;
}
.t-faq__q:not(:first-child)::before, .t-faq__q:not(:first-child)::after {
	top: 38px;
}
.t-faq__a {
	display: none;
	padding-bottom: 22px;
	padding-right: 23px;
}
.t-faq__point {
	position: absolute;
	left: 0;
	top: -2px;
	font-family: var(--font-en);
	font-size: 22px;
}
.t-faq__q.is-active::before {
	transform: rotate(90deg);
	opacity: 0;
}
.t-faq__q.is-active::after {
	transform: rotate(180deg);
}
/*# sourceMappingURL=style.css.map */
