@charset "UTF-8";
/* Web Font */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Zen+Maru+Gothic:wght@700&display=swap");
@import url("https://use.typekit.net/yni7snd.css");
/* Custom Properties */
:root {
	/* color */
	--color-default: #232323;
	--color-orange: #f08200;
	--color-green: #46a05a;
	--color-green01: #f6faf7;
	--color-yellow: #ffdc00;
	/* font */
	--font-default: "Zen Kaku Gothic New", sans-serif;
	--font-zenmaru: "Zen Maru Gothic", sans-serif;
	--font-din: "din-condensed-variable", sans-serif;
	/* font-variation-settings */
	--font-din-fw: "wght" 600;
	/* アニメーション */
	--ts-arrow: inset .2s ease-out;
	--ts-pon: scale .5s cubic-bezier(0.57,1.67,0.54,1.28);
}

/*-------------------------
reset
---------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
	-webkit-text-size-adjust: 100%;
}

body, input, textarea {
	font-size: 16px;
}

body {
	color: var(--color-default);
	font-family: var(--font-default);
	font-size: 16px;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	text-align: justify;
	line-height: 1.8;
	margin: 0;
	position: relative;
}

img, a, ul, li, iframe, fieldset {
	border: none;
	outline: none;
}

a, img {
	display: block;
	width: 100%;
}

a.inline, img.inline {
	display: inline;
	width: auto;
}

img {
	line-height: 0;
}

a {
	color: var(--color-text);
	text-decoration: none;
	transition: 0.2s ease-out;
}

h1, h2, h3, h4, ol, ul, li, dl, dt, dd, p, figure, from, iframe, fieldset, legend {
	margin-block-start: 0;
	margin-block-end: 0;
	margin: 0;
	padding: 0;
}

ol, ul {
	list-style: none;
}

h1, h2, h3, h4 {
	font-size: 100%;
	font-weight: normal;
}

em {
	font-style: normal;
}

article, aside, footer, header, main, nav, section {
	display: block;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

textarea {
	resize: vertical;
}

input, textarea, select {
	font-size: 16px;
	padding: 3px;
	border: 1px solid #b2b2b2;
	border-radius: 5px;
}

select {
	padding: 2.5px 3px;
}

label {
	display: -webkit-box;
	display: flex;
	align-items: center;
}

label input {
	display: block;
}

/* iOSでのデフォルトスタイルをリセット */
input:focus {
	outline: none;
}

input[type=submit],
input[type=button] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
	display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
	outline-offset: -2px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	margin-left: 5px;
	opacity: 0.5;
}

@media (width <= 640px) {
	.pc {
		display: none !important;
	}
}
@media (width > 640px) {
	.sp {
		display: none !important;
	}
}
/* サイド */
.box-side {
	padding-inline: 35px;
}
@media (width <= 370px) {
	.box-side {
		padding-inline: 20px;
	}
}

/* 横幅 */
.w860 {
	width: 100%;
	max-width: 860px;
}
.w860.box-side {
	max-width: 930px;
}

/* 背景色 */
/* セクション */
/* マージン */
.c-mt-s {
	margin-top: 30px !important;
}
@media (width <= 640px) {
	.c-mt-s {
		margin-top: 20px !important;
	}
}

.c-mt-m {
	margin-top: 60px !important;
}
@media (width <= 640px) {
	.c-mt-m {
		margin-top: 40px !important;
	}
}

.c-mt-l {
	margin-top: 100px !important;
}
@media (width <= 640px) {
	.c-mt-l {
		margin-top: 80px !important;
	}
}

.m-auto {
	margin-inline: auto !important;
}

/* リスト */
.c-list01 > li {
	padding-left: 1em;
	position: relative;
}
.c-list01 > li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.c-list01--notes > li::before {
	content: "※";
}
.c-list01--circle > li::before {
	content: "●";
	font-size: 0.75em;
	top: 0.25em;
}

.c-list02 {
	counter-reset: number;
}
.c-list02 > li {
	padding-left: 1em;
	position: relative;
}
.c-list02 > li::before {
	counter-increment: number;
	content: counter(number);
	color: var(--color-green);
	font-weight: 500;
	position: absolute;
	inset: 0 auto auto 0;
}

/* 汎用タイトル */
.c-title01 {
	font-size: 42px;
	font-weight: bold;
	line-height: 1;
}
@media (width <= 370px) {
	.c-title01 {
		font-size: 36px;
	}
}
.c-title01::after {
	content: ".";
	color: var(--color-green);
}

.c-title02 {
	font-family: var(--font-zenmaru);
	font-size: clamp(24px, 1.079rem + 1.05vw, 32px);
	font-weight: bold;
	text-align: center;
	color: #fff;
	max-width: max-content;
	padding-inline: 20px;
	margin-inline: auto;
	position: relative;
}
@media (width <= 640px) {
	.c-title02 {
		padding-inline: 15px;
	}
}
@media (width <= 370px) {
	.c-title02 {
		font-size: 20px;
	}
}
.c-title02::before, .c-title02::after {
	content: "";
	display: block;
	width: 12px;
	aspect-ratio: 1/2;
	background: url(../img/common/icon_slash.svg) center/contain no-repeat;
	position: absolute;
	bottom: 0.3em;
}
@media (width <= 640px) {
	.c-title02::before, .c-title02::after {
		width: 9px;
	}
}
.c-title02::before {
	left: 0;
}
.c-title02::after {
	scale: -1 1;
	right: 0;
}

.c-title03 {
	font-size: 28px;
	font-weight: bold;
	color: var(--color-green);
}
.c-title03__en {
	display: block;
	font-size: 16px;
	text-align: center;
}

.c-title04 {
	display: flex;
	align-items: last baseline;
	flex-wrap: wrap;
	gap: 0.3em 0.5em;
}
.c-title04__ja {
	font-size: 20px;
	font-weight: bold;
	color: var(--color-green);
}
.c-title04--column {
	flex-direction: column;
	align-items: stretch;
}

.c-title05,
.c-title05 * {
	font-size: clamp(24px, 1.079rem + 1.05vw, 32px);
	font-family: var(--font-zenmaru);
}
@media (width <= 370px) {
	.c-title05,
	.c-title05 * {
		font-size: 20px;
	}
}

.c-title05 {
	font-weight: bold;
	text-align: center;
	color: #fff;
	line-height: 1.55;
}
.c-title05--green {
	color: var(--color-green);
}

/* 汎用テキスト */
.ib {
	display: inline-block !important;
}

.brackets {
	display: inline-block;
	margin: 0 -0.5em;
}

.c-fz-l {
	font-size: 1.5em;
}

.c-text-j {
	text-align: justify !important;
}

.c-text-r {
	text-align: right !important;
}

.c-text-c {
	text-align: center !important;
}

.c-text-c-l {
	text-align: center !important;
}
@media (width <= 640px) {
	.c-text-c-l {
		text-align: justify !important;
	}
}

.c-text-l-c {
	text-align: justify !important;
}
@media (width <= 640px) {
	.c-text-l-c {
		text-align: center !important;
	}
}

.c-fw-m {
	font-weight: 500 !important;
}

.c-fw-b {
	font-weight: bold !important;
}

.c-color-yellow {
	color: var(--color-yellow) !important;
}

.c-color-orange {
	color: var(--color-orange) !important;
}

.c-color-green {
	color: var(--color-green) !important;
}

.c-dots__dots {
	display: inline-block;
	position: relative;
}
.c-dots__dots::before {
	content: "";
	display: block;
	width: 6px;
	aspect-ratio: 1;
	background-color: var(--color-green);
	border-radius: 50%;
	position: absolute;
	inset: auto auto calc(100% - 5px) 50%;
	translate: -50% 0;
	scale: 0;
	animation-duration: 0.6s;
	animation-timing-function: cubic-bezier(0, 0.95, 0.47, 1.61);
	animation-fill-mode: forwards;
}
.c-dots__dots:nth-of-type(2)::before {
	animation-delay: 0.1s;
}
.c-dots__dots:nth-of-type(3)::before {
	animation-delay: 0.2s;
}
.c-dots__dots:nth-of-type(4)::before {
	animation-delay: 0.3s;
}
.c-dots__dots--yellow::before {
	background-color: var(--color-yellow);
}
.c-dots__dots--orange::before {
	background-color: var(--color-orange);
}
.c-dots__dots--s::before {
	width: 3.5px;
	bottom: calc(100% - 8px);
}
.c-dots__dots--H::before {
	left: calc(50% + 0.23em);
}
.c-dots__dots--N::before {
	left: calc(50% + 0.23em);
}
.c-dots__dots--W::before {
	left: calc(50% + 0.4em);
}
.c-dots.animated .c-dots__dots::before {
	animation-name: op-circle;
}

@keyframes op-circle {
	50% {
		scale: 1.8;
	}
	100% {
		scale: 1;
	}
}
/* 汎用ボタン */
.c-btn01 {
	--color: var(--color-green);
	color: var(--color);
	font-weight: 500;
	border-bottom: 1px dotted var(--color);
	width: 180px;
	padding: 0 30px 5px 10px;
	position: relative;
}
.c-btn01::after {
	content: "";
	display: block;
	width: 16px;
	aspect-ratio: 1;
	background: url(../img/common/icon_arrow02.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% 8px auto auto;
	translate: 0 -50%;
	transition: var(--ts-arrow);
}
@media (any-hover: hover) {
	.c-btn01:hover::after {
		right: -2px;
	}
}
.c-btn01--s {
	width: 100px;
}
.c-btn01--reverse {
	text-align: right;
	padding: 0 10px 5px 30px;
}
.c-btn01--reverse::after {
	inset: 50% auto auto 8px;
	scale: -1 1;
}
@media (any-hover: hover) {
	.c-btn01--reverse:hover::after {
		left: -2px;
	}
}
.c-btn01--right {
	margin-left: auto;
}

.c-btn02 {
	color: var(--color-green);
	text-align: center;
	width: 160px;
	border: 1px solid #a2cfac;
	border-radius: 2px;
	padding: 3px 5px;
}
@media (any-hover: hover) {
	.c-btn02:hover {
		color: #fff;
		background-color: #a2cfac;
	}
}

/* 波 */
.c-wave {
	position: relative;
}
.c-wave__wave {
	display: block;
	width: 100%;
	height: 100px;
	background: left bottom/200% auto repeat-x;
	position: absolute;
	inset: auto auto -1px 0;
	animation: wave-bottom 80s linear infinite;
	pointer-events: none;
}
@media (width > 1400px) {
	.c-wave__wave {
		background-size: 2200px auto;
	}
}
.c-wave__wave::before, .c-wave__wave::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: left center/200% auto repeat-x;
	position: absolute;
	inset: auto auto 0 0;
	animation: wave-bottom 40s linear infinite;
}
@media (width > 1400px) {
	.c-wave__wave::before, .c-wave__wave::after {
		background-size: 2200px auto;
	}
}
.c-wave__wave::after {
	animation: wave-bottom 15s linear infinite;
}
.c-wave--01 .c-wave__wave {
	background-image: url(../img/common/parts_wave03_01.webp);
}
.c-wave--01 .c-wave__wave::before {
	background-image: url(../img/common/parts_wave03_02.webp);
}
.c-wave--01 .c-wave__wave::after {
	background-image: url(../img/common/parts_wave03_03.webp);
}
.c-wave--02 .c-wave__wave {
	background-image: url(../img/common/parts_wave04_01.webp);
}
.c-wave--02 .c-wave__wave::before {
	background-image: url(../img/common/parts_wave04_02.webp);
}
.c-wave--02 .c-wave__wave::after {
	background-image: url(../img/common/parts_wave04_03.webp);
}
.c-wave--03 .c-wave__wave {
	background-image: url(../img/common/parts_wave06_01.webp);
}
.c-wave--03 .c-wave__wave::before {
	background-image: url(../img/common/parts_wave06_02.webp);
}
.c-wave--03 .c-wave__wave::after {
	background-image: url(../img/common/parts_wave06_03.webp);
}

/* アニメーション */
@keyframes wave-top {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 200% 0;
	}
}
@keyframes wave-bottom {
	from {
		background-position: 0 100%;
	}
	to {
		background-position: -200% 100%;
	}
}
@media (width > 1400px) {
	@keyframes wave-top {
		from {
			background-position: 0 0;
		}
		to {
			background-position: -2200px 0;
		}
	}
	@keyframes wave-bottom {
		from {
			background-position: 0 100%;
		}
		to {
			background-position: 2200px 100%;
		}
	}
}
@keyframes zoom-in {
	to {
		transform: scale(1.05);
	}
}
@keyframes shake {
	0% {
		transform: rotate(0);
	}
	16% {
		transform: rotate(12deg);
	}
	32% {
		transform: rotate(-10deg);
	}
	48% {
		transform: rotate(8deg);
	}
	64% {
		transform: rotate(-6deg);
	}
	80% {
		transform: rotate(4deg);
	}
	96% {
		transform: rotate(-2deg);
	}
	100% {
		transform: rotate(0deg);
	}
}
/* 背景ズーム */
.c-bg-zoom {
	overflow: hidden;
}
.c-bg-zoom img {
	transition: scale 6s ease-out;
	scale: 1;
}
.c-bg-zoom.animated img {
	scale: 1.05;
}

/* フェードイン */
.c-feed {
	translate: 0 100px;
	opacity: 0;
	transition: opacity 1s, translate 1s ease-out;
}
.c-feed.animated {
	translate: 0 0;
	opacity: 1;
}

/* メイン */
.main {
	width: calc(100% - 300px);
	border-right: 1px solid #a2cfac;
	border-bottom: 1px solid #a2cfac;
	border-bottom-right-radius: 50px;
	overflow: hidden;
}
@media (width <= 1200px) {
	.main {
		width: 100%;
		border: 0;
		border-radius: 0;
	}
}

/* 下層FV */
.l-fv {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 400px;
	background: url(../img/common/fv_img.webp) 90% center/cover no-repeat;
}
@media (width <= 1200px) {
	.l-fv {
		height: 440px;
		background-image: url(../img/common/fv_img_xl.webp);
		background-position: center;
	}
}
@media (width <= 640px) {
	.l-fv {
		align-items: flex-start;
		padding-top: 60px;
		background-position: 87% center;
	}
}
.l-fv__wave {
	display: none;
}
@media (width <= 1200px) {
	.l-fv__wave {
		display: block;
		width: 100%;
		height: 100px;
		background: url(../img/common/parts_wave05_01.webp) left center/200% auto repeat-x;
		position: absolute;
		inset: -1px auto auto 0;
		animation: wave-top 80s linear infinite;
		pointer-events: none;
	}
	.l-fv__wave::before, .l-fv__wave::after {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background: url(../img/common/parts_wave05_02.webp) left center/200% auto repeat-x;
		position: absolute;
		inset: auto auto 0 0;
		animation: wave-top 40s linear infinite;
	}
	.l-fv__wave::after {
		background-image: url(../img/common/parts_wave05_03.webp);
		animation: wave-top 15s linear infinite;
	}
}

/* ボタングループ */
.btn-group {
	width: 100%;
	max-width: 990px;
	padding: 80px 35px 115px;
	margin-inline: auto;
}
@media (width <= 640px) {
	.btn-group {
		padding: 40px 35px 50px;
	}
}
@media (width <= 370px) {
	.btn-group {
		padding-inline: 20px;
	}
}
.btn-group__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.btn-group__list--noimg .btn-group__list-btn {
	align-items: center;
	padding: 5px 60px;
}
@media (width <= 370px) {
	.btn-group__list--noimg .btn-group__list-btn {
		padding: 5px 50px;
	}
}
.btn-group__list--noimg .btn-group__list-btn::before {
	content: none;
}
@media (width <= 370px) {
	.btn-group__list--noimg .btn-group__list-btn::after {
		right: 30px;
	}
}
.btn-group__list-item {
	width: 300px;
}
@media (width <= 640px) {
	.btn-group__list-item {
		width: 100%;
	}
}
.btn-group__list-btn {
	display: flex;
	justify-content: center;
	flex-direction: column;
	line-height: 1.5;
	min-height: 100px;
	background-color: var(--color-green01);
	border-radius: 6px;
	padding: 5px 60px 5px 130px;
	position: relative;
}
@media (width <= 370px) {
	.btn-group__list-btn {
		padding-left: 110px;
	}
}
.btn-group__list-btn::before {
	content: "";
	display: block;
	width: 120px;
	aspect-ratio: 120/110;
	background: center/contain no-repeat;
	position: absolute;
	inset: auto auto 0 0;
	transform-origin: left bottom;
	transition: scale 0.3s ease-out;
}
@media (width <= 370px) {
	.btn-group__list-btn::before {
		width: 100px;
	}
}
.btn-group__list-btn::after {
	content: "";
	display: block;
	width: 16px;
	aspect-ratio: 1;
	background: url(../img/common/icon_arrow02.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% 40px auto auto;
	translate: 0 -50%;
	transition: var(--ts-arrow);
}
.btn-group__list-btn::first-letter {
	color: var(--color-green);
}
@media (any-hover: hover) {
	.btn-group__list-btn:hover::before {
		scale: 1.05;
	}
	.btn-group__list-btn:hover::after {
		right: 30px;
	}
}
.btn-group__list-btn--fa::before {
	background-image: url(../img/common/btn_img01.webp);
}
.btn-group__list-btn--guide::before {
	background-image: url(../img/common/btn_img02.webp);
}
.btn-group__list-btn--faq::before {
	background-image: url(../img/common/btn_img03.webp);
}
.btn-group__list-btn-en {
	font-size: 25px;
	font-weight: bold;
}
.btn-group__list-btn-en::first-letter {
	color: var(--color-green);
}
.btn-group__list-btn-ja {
	font-weight: 500;
	color: var(--color-green);
	letter-spacing: -0.05em;
}

.header {
	display: flex;
	flex-direction: column;
	height: 100vh;
	width: 300px;
	padding-block: 100px 120px;
	position: fixed;
	inset: 0 0 auto auto;
	z-index: 1;
	overflow-y: auto;
}
@media (width <= 1200px) {
	.header {
		width: 100%;
		height: auto;
		padding-block: 30px 0;
		position: relative;
		inset: 0;
	}
}
.header__title {
	width: 160px;
	margin-inline: auto;
}
@media (width <= 1200px) {
	.header__title {
		width: 120px;
		margin-bottom: 20px;
	}
}
.header__nav {
	padding: 0 50px;
	margin-top: 75px;
}
@media (width <= 1200px) {
	.header__nav {
		display: none;
	}
}
.header__nav-link {
	font-weight: 500;
	color: var(--color-orange);
	border-top: 1px solid #fad9b2;
	padding: 40px 40px 40px 20px;
	position: relative;
	white-space: nowrap;
}
.header__nav-link::after {
	content: "";
	display: block;
	width: 16px;
	aspect-ratio: 1;
	background: url(../img/common/icon_arrow01.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% 18px auto auto;
	translate: 0 -50%;
	transition: var(--ts-arrow);
}
@media (any-hover: hover) {
	.header__nav-link:hover::after {
		right: 8px;
	}
}
.header__cv {
	width: 250px;
	position: fixed;
	inset: auto 0 0 auto;
	z-index: 100;
}
@media (width <= 1200px) {
	.header__cv {
		width: auto;
		display: flex;
		padding-left: 0;
	}
}
.header__cv-link {
	font-weight: 500;
	padding: 16px 65px 16px 40px;
	position: relative;
}
@media (width <= 1200px) {
	.header__cv-link {
		padding: 16px 45px 16px 20px;
	}
}
.header__cv-link::after {
	content: "";
	display: block;
	width: 24px;
	aspect-ratio: 1;
	background: center/contain no-repeat;
	position: absolute;
	inset: 50% 35px auto auto;
	translate: 0 -50%;
}
@media (width <= 1200px) {
	.header__cv-link::after {
		width: 20px;
		right: 20px;
	}
}
@media (any-hover: hover) {
	.header__cv-link:hover::after {
		animation: shake 0.4s ease;
	}
}
.header__cv-link--reservation {
	color: var(--color-orange);
	background-color: #fdf2e5;
	border-top-left-radius: 30px;
}
.header__cv-link--reservation::after {
	background-image: url(../img/common/icon_reservation.svg);
}
.header__cv-link--mail {
	color: #fff;
	background-color: var(--color-orange);
}
.header__cv-link--mail::after {
	background-image: url(../img/common/icon_mail.svg);
}

.footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 70px 260px 50px;
	position: relative;
}
@media (width <= 1200px) {
	.footer {
		padding-inline: 35px;
	}
}
@media (width <= 640px) {
	.footer {
		padding-bottom: 100px;
	}
}
@media (width <= 370px) {
	.footer {
		padding-inline: 20px;
	}
}
.footer__logo {
	width: 180px;
}
.footer__nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1em 2em;
	margin-top: 40px;
}
.footer__link {
	font-weight: 500;
}
@media (any-hover: hover) {
	.footer__link:hover {
		color: var(--color-orange);
	}
}
.footer__copy {
	font-size: 14px;
	font-weight: 500;
	margin-top: 60px;
}
@media (width <= 640px) {
	.footer__copy {
		margin-top: 30px;
	}
}

.spNavi {
	display: none;
	position: fixed;
	inset: 0 0 auto auto;
	z-index: 100;
}
@media (width <= 1200px) {
	.spNavi {
		display: block;
	}
}
.spNavi__icon {
	font-size: 0;
	width: 60px;
	aspect-ratio: 1;
	border-radius: 50%;
	position: relative;
	z-index: 100;
	cursor: pointer;
	/*ボタン内側*/
}
.spNavi__icon::before, .spNavi__icon::after,
.spNavi__icon span {
	display: block;
	background: var(--color-green);
	height: 1px;
	width: 28px;
	transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
	position: absolute;
	transform: translate(-50%, 0);
}
.spNavi__icon::before {
	content: "";
	inset: calc(50% - 8px) auto auto 50%;
}
.spNavi__icon::after {
	content: "";
	inset: calc(50% + 8px) auto auto 50%;
}
.spNavi__icon span {
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
}
.spNavi__icon--active::before, .spNavi__icon--active::after {
	width: 50%;
}
.spNavi__icon--active::before {
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}
.spNavi__icon--active::after {
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.spNavi__icon--active span {
	opacity: 0;
}
.spNavi__menu {
	position: fixed;
	inset: 0 0 auto auto;
	z-index: 99;
	translate: 100% 0;
	opacity: 0;
	transition: translate 0.5s, opacity 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.spNavi__menu .header {
	height: 100dvh;
	width: 300px;
	background-color: #fff;
}
.spNavi__menu .header__nav {
	display: block;
	margin-top: 40px;
}
.spNavi__menu .header__nav-link {
	padding: 20px 40px 20px 20px;
	white-space: nowrap;
	font-size: 14px;
}
.spNavi__menu .header__cv {
	flex-direction: column;
	padding-left: 50px;
	position: relative;
}
.spNavi__menu--active {
	translate: 0 0;
	opacity: 1;
}

/* fv */
.t-fv {
	display: flex;
	align-items: flex-end;
	height: 100vh;
	padding: 160px 35px;
	position: relative;
}
@media (max-height: 950px) {
	.t-fv {
		padding: 130px 35px;
	}
}
@media (width <= 640px) {
	.t-fv {
		height: 440px;
		padding: 60px 35px;
	}
}
@media (width <= 370px) {
	.t-fv {
		padding: 60px 20px;
	}
}
.t-fv__wave-top, .t-fv__wave-bottom {
	display: block;
	width: 100%;
	height: 100px;
	background: url(../img/common/parts_wave02_01.webp) left center/200% auto repeat-x;
	position: absolute;
	inset: auto auto -1px 0;
	animation: wave-bottom 80s linear infinite;
	pointer-events: none;
}
@media (width > 1400px) {
	.t-fv__wave-top, .t-fv__wave-bottom {
		background-size: 2200px auto;
	}
}
.t-fv__wave-top::before, .t-fv__wave-top::after, .t-fv__wave-bottom::before, .t-fv__wave-bottom::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url(../img/common/parts_wave02_02.webp) left center/200% auto repeat-x;
	position: absolute;
	inset: auto auto 0 0;
	animation: wave-bottom 40s linear infinite;
}
@media (width > 1400px) {
	.t-fv__wave-top::before, .t-fv__wave-top::after, .t-fv__wave-bottom::before, .t-fv__wave-bottom::after {
		background-size: 2200px auto;
	}
}
.t-fv__wave-top::after, .t-fv__wave-bottom::after {
	background-image: url(../img/common/parts_wave02_03.webp);
	animation: wave-bottom 15s linear infinite;
}
.t-fv__wave-top, .t-fv__wave-top::before, .t-fv__wave-top::after {
	animation-name: wave-top;
	inset: -1px auto auto 0;
}
.t-fv__wave-top {
	background-image: url(../img/common/parts_wave01_01.webp);
}
.t-fv__wave-top::before {
	background-image: url(../img/common/parts_wave01_02.webp);
}
.t-fv__wave-top::after {
	background-image: url(../img/common/parts_wave01_03.webp);
}
.t-fv__title {
	color: var(--color-green);
}
.t-fv__title span {
	display: block;
}
.t-fv__title-en {
	font-size: clamp(10px, 0.099rem + 1.32vw, 20px);
}
.t-fv__title-ja {
	font-size: clamp(24px, -0.079rem + 3.95vw, 54px);
	font-weight: bold;
}
@media (width <= 370px) {
	.t-fv__title-ja {
		font-size: 22px;
	}
}
.t-fv__bg {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0 auto auto 0;
	z-index: -1;
	overflow: hidden;
}
.t-fv__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: zoom-in 6s ease-out forwards;
}
.t-fv__balloon {
	position: absolute;
	top: 45%;
	left: calc(50% + 490px);
	transform: translate(-50%, -50%);
	z-index: 10;
	width: 240px;
	height: 240px;
	background-color: var(--color-orange);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
	line-height: 1.2;
}
.t-fv__balloon::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 25px;
	width: 30px;
	height: 50px;
	background-color: var(--color-orange);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	transform: rotate(42deg);
	z-index: -1;
	filter: url(#round);
}
.t-fv__balloon-year {
	font-size: 30px;
	font-weight: bold;
}
.t-fv__balloon-month {
	font-weight: bold;
	line-height: 1;
	margin-bottom:5px;
}
.t-fv__balloon-num {
	font-size: 70px;
}
.t-fv__balloon-unit {
	font-size: 40px;
}
.t-fv__balloon-text {
	font-size: 33px;
	font-weight: bold;
	letter-spacing: 0;
}
@media (width <= 1530px) {
	.t-fv__balloon {
		left: 90%;
	}
}
@media (width <= 1200px) {
	.t-fv__balloon {
		position: absolute;
		top: 20px;
		left: auto;
		right: 20px;
		transform: none;
		width: 150px;
		height: 150px;
	}
	.t-fv__balloon::after {
		bottom: -5px;
		left: 18px;
		width: 22px;
		height: 38px;
	}
	.t-fv__balloon-year {
		font-size: 18px;
	}
	.t-fv__balloon-num {
		font-size: 50px;
	}
	.t-fv__balloon-unit {
		font-size: 30px;
	}
	.t-fv__balloon-text {
		font-size: 20px;
	}
}
@media (width <= 640px) {
	.t-fv__balloon {
		position: absolute;
		top: 15px;
		left: auto;
		right: 15px;
		transform: none;
		width: 130px;
		height: 130px;
	}
	.t-fv__balloon::after {
		bottom: -5px;
		left: 15px;
		width: 18px;
		height: 28px;
	}
	.t-fv__balloon-year {
		font-size: 15px;
	}
	.t-fv__balloon-num {
		font-size: 42px;
	}
	.t-fv__balloon-unit {
		font-size: 25px;
	}
	.t-fv__balloon-text {
		font-size: 17px;
	}
}

/* news */
.t-news {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	padding-top: 40px;
}
@media (width <= 640px) {
	.t-news {
		padding-top: 80px;
	}
}
.t-news .c-title01 {
	max-width: max-content;
}
@media (width <= 640px) {
	.t-news .c-btn01 {
		order: 1;
		margin-top: 30px;
	}
}
.t-news__list {
	width: 100%;
	margin-top: 40px;
}
.t-news__list-item {
	border-top: 1px solid #bdbdbd;
}
.t-news__list-item:last-child {
	border-bottom: 1px solid #bdbdbd;
}
.t-news__list-link {
	display: flex;
	align-items: center;
	gap: 10px 30px;
	padding: 40px 40px 40px 20px;
	position: relative;
}
@media (width <= 640px) {
	.t-news__list-link {
		flex-direction: column;
		align-items: flex-start;
		padding: 30px 0;
	}
}
.t-news__list-link::after {
	content: "";
	display: block;
	width: 16px;
	aspect-ratio: 1;
	background: url(../img/common/icon_arrow02.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% 18px auto auto;
	translate: 0 -50%;
	transition: var(--ts-arrow);
}
@media (width <= 640px) {
	.t-news__list-link::after {
		content: none;
	}
}
@media (any-hover: hover) {
	.t-news__list-link:hover {
		color: var(--color-green);
	}
	.t-news__list-link:hover::after {
		right: 8px;
	}
}
.t-news__list-info {
	display: flex;
	align-items: center;
	gap: 30px;
	width: max-content;
}
.t-news__list-cat {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-green);
	line-height: 1.5;
	border: 1px solid var(--color-green);
	border-radius: 2px;
	padding: 0 5px 1px;
}
.t-news__list-title {
	flex: 1;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.65;
}

/* concept */
.t-concept {
	padding: 90px 0 140px;
	position: relative;
}
@media (width <= 640px) {
	.t-concept {
		padding: 60px 0 0;
	}
}
.t-concept__box {
	width: 100%;
	max-width: 500px;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	padding: 65px 35px 45px;
	margin-left: auto;
}
@media (width <= 640px) {
	.t-concept__box {
		max-width: 100%;
		background-color: transparent;
		padding: 0 35px;
	}
}
@media (width <= 370px) {
	.t-concept__box {
		padding: 0 20px;
	}
}
.t-concept__box-in {
	width: 100%;
	max-width: 380px;
	margin-inline: auto;
}
.t-concept__box-in > * + * {
	margin-top: 50px;
}
@media (width <= 640px) {
	.t-concept__box-in > * + * {
		margin-top: 30px;
	}
}
.t-concept__box-in .c-btn01 {
	margin-top: 40px;
}
@media (width <= 640px) {
	.t-concept__box-in .c-btn01 {
		margin-top: 30px;
	}
}
.t-concept__title {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.65;
}
@media (width <= 370px) {
	.t-concept__title {
		font-size: 24px;
	}
}
.t-concept__title::first-letter {
	color: var(--color-green);
}
.t-concept__text {
	letter-spacing: -0.05em;
}
.t-concept__bg {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0 auto auto 0;
	z-index: -1;
}
@media (width <= 640px) {
	.t-concept__bg {
		height: 533px;
		margin-top: -100px;
		position: relative;
	}
}
.t-concept__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (width <= 640px) {
	.t-concept__bg img {
		object-position: 30% center;
	}
}

/* strength */
.t-strength {
	background-color: var(--color-green);
	padding: 80px 0 190px;
}
@media (width <= 640px) {
	.t-strength {
		padding: 60px 0 70px;
	}
}
.t-strength__list {
	counter-reset: num;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 60px 70px;
}
@media (width <= 640px) {
	.t-strength__list {
		flex-direction: column;
	}
}
.t-strength__list-item {
	counter-increment: num;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: calc((100% - 140px) / 3);
	position: relative;
}
@media (width <= 960px) {
	.t-strength__list-item {
		width: calc((100% - 70px) / 2);
	}
}
@media (width <= 640px) {
	.t-strength__list-item {
		width: 100%;
	}
}
.t-strength__list-item::before {
	content: counter(num, decimal-leading-zero);
	font-family: var(--font-din);
	font-variation-settings: var(--font-din-fw);
	font-size: 50px;
	color: #fff;
	line-height: 1;
	position: absolute;
	inset: 0 auto auto -5px;
	translate: 0 -50%;
}
@media (width <= 640px) {
	.t-strength__list-item::before {
		top: -15px;
		translate: 0 0;
	}
}
@media (width > 960px) {
	.t-strength__list-item:nth-child(3n+2) {
		transition-delay: 0.2s;
	}
	.t-strength__list-item:nth-child(3n+3) {
		transition-delay: 0.4s;
	}
}
@media (width <= 960px) {
	.t-strength__list-item:nth-child(even) {
		transition-delay: 0.2s;
	}
}
.t-strength__list-title {
	font-size: 20px;
	font-weight: bold;
	color: var(--color-yellow);
	text-align: left;
	letter-spacing: -0.01em;
}
.t-strength__list-text {
	color: #fff;
}
.t-strength__list-img {
	order: -1;
	border-radius: 6px;
	overflow: hidden;
}

/* link */
.t-link {
	width: 100%;
	max-width: 890px;
	padding-top: 90px;
	margin-inline: auto;
}
@media (width <= 640px) {
	.t-link {
		padding-top: 45px;
	}
}
.t-link__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 40px;
}
@media (width <= 640px) {
	.t-link__list {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
.t-link__list-item {
	border-radius: 12px;
	overflow: hidden;
}
@media (width > 640px) {
	.t-link__list-item:nth-child(2) {
		transition-delay: 0.2s;
	}
}
.t-link__list-box {
	background-color: var(--color-green01);
	padding: 50px 45px;
}
@media (width <= 767px) {
	.t-link__list-box {
		padding: 30px 30px 50px;
	}
}
.t-link__list-box > * + * {
	margin-top: 30px;
}
@media (width <= 640px) {
	.t-link__list-box > * + * {
		margin-top: 20px;
	}
}
.t-link__list-title {
	font-size: 22px;
	font-weight: 500;
	color: var(--color-green);
	text-align: center;
}

/* access */
.t-access {
	display: flex;
	justify-content: space-between;
	gap: 60px 80px;
	width: 100%;
	max-width: 895px;
	padding-top: 125px;
	margin-inline: auto;
}
@media (width <= 640px) {
	.t-access {
		flex-direction: column;
		padding-top: 55px;
	}
}
.t-access__info {
	flex: 0 0 40.782122905%;
	padding-left: 35px;
}
@media (width <= 640px) {
	.t-access__info {
		padding-right: 35px;
	}
}
@media (width <= 370px) {
	.t-access__info {
		padding-left: 20px;
		padding-right: 20px;
	}
}
.t-access__info .c-btn01 {
	margin-top: 50px;
}
@media (width <= 640px) {
	.t-access__info .c-btn01 {
		margin-top: 20px;
	}
}
.t-access__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0 15px;
	margin-top: 40px;
}
.t-access__list > * {
	letter-spacing: -0.01em;
}
.t-access__list > dt {
	font-weight: 500;
	color: var(--color-green);
	text-align-last: justify;
	width: 65px;
}
.t-access__list > dd {
	width: calc(100% - 65px - 15px);
}
.t-access__map {
	flex: 1;
	height: 440px;
	border-top-left-radius: 12px;
	margin-right: calc((-100vw + 300px) / 2 + 50%);
	overflow: hidden;
}
@media (width <= 1200px) {
	.t-access__map {
		margin-right: calc(-50vw + 50%);
	}
}
@media (width <= 640px) {
	.t-access__map {
		height: 280px;
		border-top-left-radius: 0;
	}
}
.t-access__map iframe {
	width: 100%;
	height: 100%;
}

/* map */
.fa-map {
	padding-top: 40px;
}
.fa-map__img {
	border-radius: 12px;
	overflow: hidden;
}

/* area */
.fa-area {
	padding: 120px 0 175px;
}
@media (width <= 640px) {
	.fa-area {
		padding: 50px 0 80px;
	}
}
.fa-area__panel01 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (width <= 640px) {
	.fa-area__panel01 {
		flex-direction: column;
		gap: 40px;
	}
}
.fa-area__panel01 > * {
	flex: 0 0 45.3488372093%;
}
.fa-area__panel01-text {
	letter-spacing: -0.065em;
	margin-top: 40px;
}
.fa-area__panel01-img {
	border-radius: 12px;
	overflow: hidden;
}
.fa-area__panel02 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (width <= 640px) {
	.fa-area__panel02 {
		flex-direction: column-reverse;
		gap: 40px;
	}
}
.fa-area__panel02 > .box01 {
	flex: 0 0 30.2325581395%;
}
.fa-area__panel02 > .box02 {
	flex: 0 0 60.4651162791%;
}
.fa-area__panel02-img {
	border-radius: 12px;
	overflow: hidden;
}
@media (width <= 640px) {
	.fa-area__panel02-img {
		width: 220px;
	}
}
@media (width > 640px) {
	.fa-area__panel02-text {
		letter-spacing: -0.05em;
	}
}

/* installation　*/
.fa-installation {
	background-color: var(--color-green01);
	padding: 55px 0 170px;
}
@media (width <= 640px) {
	.fa-installation {
		padding: 60px 0 80px;
	}
}
.fa-installation__titlebox {
	display: flex;
	flex-wrap: wrap;
	align-items: last baseline;
	gap: 30px 50px;
}
.fa-installation__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 60px 52.5px;
	margin-top: 40px;
}
@media (width <= 640px) {
	.fa-installation__list {
		gap: 40px;
	}
}
.fa-installation__list-item {
	display: flex;
	flex-direction: column;
	width: calc((100% - 210px) / 5);
}
@media (width <= 960px) {
	.fa-installation__list-item {
		width: calc((100% - 157.5px) / 4);
	}
}
@media (width <= 640px) {
	.fa-installation__list-item {
		width: calc((100% - 40px) / 2);
	}
}
.fa-installation__list-item.animated .fa-installation__list-icon {
	scale: 1;
}
@media (width > 960px) {
	.fa-installation__list-item:nth-child(5n+2) .fa-installation__list-icon {
		transition-delay: 0.1s;
	}
	.fa-installation__list-item:nth-child(5n+3) .fa-installation__list-icon {
		transition-delay: 0.2s;
	}
	.fa-installation__list-item:nth-child(5n+4) .fa-installation__list-icon {
		transition-delay: 0.3s;
	}
	.fa-installation__list-item:nth-child(5n+5) .fa-installation__list-icon {
		transition-delay: 0.4s;
	}
}
@media (min-width: 641px) and (max-width: 960px) {
	.fa-installation__list-item:nth-child(4n+2) .fa-installation__list-icon {
		transition-delay: 0.1s;
	}
	.fa-installation__list-item:nth-child(4n+3) .fa-installation__list-icon {
		transition-delay: 0.2s;
	}
	.fa-installation__list-item:nth-child(4n+4) .fa-installation__list-icon {
		transition-delay: 0.2s;
	}
}
@media (width <= 640px) {
	.fa-installation__list-item:nth-child(even) .fa-installation__list-icon {
		transition-delay: 0.1s;
	}
}
.fa-installation__list-title {
	font-weight: bold;
	color: var(--color-green);
	text-align: center;
	margin-bottom: 20px;
}
.fa-installation__list-icon {
	order: -1;
	scale: 0;
	transition: var(--ts-pon);
	margin-bottom: 30px;
}

/* strength */
.fa-strength {
	background-color: var(--color-green);
	padding: 40px 0 170px;
}
@media (width <= 640px) {
	.fa-strength {
		padding: 50px 0 70px;
	}
}
.fa-strength__panel {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 40px 8.1395348837%;
}
@media (width <= 767px) {
	.fa-strength__panel {
		flex-direction: column;
	}
}
.fa-strength__panel > .box01 {
	flex: 0 0 48.8372093023%;
}
.fa-strength__panel > .box02 {
	flex: 0 0 41.8604651163%;
}
.fa-strength__panel .c-title02::before, .fa-strength__panel .c-title02::after {
	bottom: 0.2em;
}
.fa-strength__img {
	border-radius: 6px;
	overflow: hidden;
}
.fa-strength__subtitle {
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	margin-top: 40px;
}
.fa-strength__text {
	color: #fff;
	margin-top: 10px;
}
@media (width <= 640px) {
	.fa-strength__text {
		letter-spacing: -0.085em;
	}
}

/* pet */
.fa-pet {
	padding-top: 65px;
}
@media (width <= 640px) {
	.fa-pet {
		padding-top: 35px;
	}
}
.fa-pet__panel01 {
	position: relative;
}
.fa-pet__panel01-img {
	width: 20.1162790698%;
	position: absolute;
	inset: -20px -50px auto auto;
}
@media (width <= 960px) {
	.fa-pet__panel01-img {
		width: 17.4418604651%;
	}
}
@media (width <= 640px) {
	.fa-pet__panel01-img {
		width: 90px;
		inset: -50px -10px auto auto;
	}
}
.fa-pet__panel02 {
	display: flex;
	justify-content: space-between;
}
@media (width <= 640px) {
	.fa-pet__panel02 {
		flex-direction: column;
		gap: 40px;
	}
}
.fa-pet__panel02 > .box01 {
	flex: 0 0 46.511627907%;
}
@media (width <= 640px) {
	.fa-pet__panel02 > .box01 {
		display: contents;
	}
}
.fa-pet__panel02 > .box02 {
	flex: 0 0 45.3488372093%;
	padding-bottom: 180px;
}
@media (width <= 640px) {
	.fa-pet__panel02 > .box02 {
		padding-bottom: 0;
	}
}
.fa-pet__panel02-img {
	height: 400px;
	border-radius: 0 32px 32px 0;
	margin: 60px 0 0 calc(-50vw + 150px + 430px);
	overflow: hidden;
}
@media (max-width: 1230px) {
	.fa-pet__panel02-img {
		margin-left: -35px;
	}
}
@media (width <= 1200px) {
	.fa-pet__panel02-img {
		margin-left: calc(-50vw + 430px);
	}
}
@media (max-width: 930px) {
	.fa-pet__panel02-img {
		margin-left: -35px;
	}
}
@media (width <= 640px) {
	.fa-pet__panel02-img {
		order: 1;
		height: 240px;
		margin-top: 0;
	}
}
@media (width <= 370px) {
	.fa-pet__panel02-img {
		margin-left: -20px;
	}
}
.fa-pet__panel02-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fa-pet__panel03 {
	background-color: #fff;
	border: 1px solid #a2cfac;
	border-radius: 6px;
	padding: 50px 30px;
	margin-top: -170px;
	position: relative;
}
@media (width <= 640px) {
	.fa-pet__panel03 {
		padding: 30px;
		margin-top: 40px;
	}
}
.fa-pet__panel03 > * {
	width: 100%;
	max-width: 600px;
	margin-inline: auto;
}
.fa-pet__title {
	font-size: 18px;
	font-weight: 500;
	color: var(--color-green);
	margin-bottom: 10px;
}
.fa-pet__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0 40px;
}
@media (width <= 640px) {
	.fa-pet__list {
		flex-direction: column;
	}
}
.fa-pet__list > div {
	display: flex;
}
.fa-pet__list > div > dt {
	color: var(--color-green);
	font-weight: 500;
	text-align-last: justify;
	width: 4.6em;
	padding-right: 0.6em;
	position: relative;
}
.fa-pet__list > div > dt::after {
	content: ":";
	position: absolute;
	inset: -0.15em 0.1em auto auto;
}
.fa-pet__list > div > dd {
	flex: 1;
	letter-spacing: -0.06em;
}

/* price */
.fa-price {
	padding-top: 120px;
}
@media (width <= 640px) {
	.fa-price {
		padding-top: 60px;
	}
}

/* 地図 */
.ac-shiga {
	width: 100%;
	max-width: 800px;
	padding-block: 100px 0;
	margin-inline: auto;
}
@media (width <= 640px) {
	.ac-shiga {
		padding-block: 60px 300px;
		position: relative;
	}
}
.ac-shiga__title {
	font-family: var(--font-zenmaru);
	font-size: 32px;
	text-align: center;
	line-height: 1.55;
	letter-spacing: -0.05em;
	color: var(--color-green);
	max-width: max-content;
	position: relative;
	z-index: 1;
}
@media (width <= 370px) {
	.ac-shiga__title {
		font-size: 28px;
	}
}
.ac-shiga__map {
	max-width: 640px;
	margin: -190px 0 0 30px;
	position: relative;
}
@media (width <= 640px) {
	.ac-shiga__map {
		width: 570px;
		max-width: none;
		margin: 0;
		position: absolute;
		inset: 40px auto auto 45%;
		translate: -50% 0;
	}
}
.ac-shiga__map.animated .ac-shiga__map-shiga {
	scale: 1;
}
.ac-shiga__map-ja {
	filter: blur(2px);
}
.ac-shiga__map-shiga {
	width: 21.875%;
	position: absolute;
	inset: auto auto 27.2727272727% 45.78125%;
	filter: drop-shadow(5px 5px 10px rgba(35, 35, 35, 0.3));
	scale: 0;
	transition: var(--ts-pon);
}

/* access */
.ac-access {
	padding-bottom: 160px;
	margin-top: -55px;
}
@media (width <= 640px) {
	.ac-access {
		padding-bottom: 80px;
	}
}
.ac-access__panel {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
@media (width <= 640px) {
	.ac-access__panel {
		flex-direction: column;
	}
}
.ac-access__panel > .box01 {
	flex: 0 0 25.5813953488%;
	padding-top: 110px;
}
@media (width <= 640px) {
	.ac-access__panel > .box01 {
		padding-top: 0;
	}
}
.ac-access__panel > .box02 {
	flex: 0 0 67.4418604651%;
}
.ac-access__list {
	--width: 140px;
	display: flex;
	flex-wrap: wrap;
}
@media (width <= 640px) {
	.ac-access__list {
		--width: 70px;
	}
}
.ac-access__list > * {
	border-top: 1px solid #c7e2cd;
	padding-block: 10px;
}
.ac-access__list > dt:last-of-type,
.ac-access__list > dd:last-of-type {
	border-bottom: 1px solid #c7e2cd;
}
.ac-access__list > dt {
	font-weight: 500;
	color: var(--color-green);
	width: var(--width);
	padding-left: 30px;
}
@media (width <= 640px) {
	.ac-access__list > dt {
		padding-left: 0;
	}
}
.ac-access__list > dd {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	letter-spacing: -0.03em;
	width: calc(100% - var(--width));
	padding-right: 30px;
}
@media (width <= 640px) {
	.ac-access__list > dd {
		align-items: flex-start;
		flex-direction: column;
		padding-right: 0;
	}
}
.ac-access__list-time {
	font-weight: 500;
	text-align: center;
	width: 70px;
}
.ac-access__map {
	width: 100%;
	height: 400px;
	border-radius: 12px;
	margin-top: 80px;
	overflow: hidden;
}
@media (width <= 640px) {
	.ac-access__map {
		height: 300px;
		margin-top: 40px;
	}
}
.ac-access__map iframe {
	width: 100%;
	height: 100%;
}
.ac-access__info {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0 2em;
	margin-top: 50px;
}
@media (width <= 640px) {
	.ac-access__info {
		margin-top: 30px;
	}
}
@media (width <= 370px) {
	.ac-access__info {
		justify-content: flex-start;
	}
}
.ac-access__info-item {
	display: flex;
	flex-wrap: wrap;
	gap: 0 1em;
}
.ac-access__info-item > dt {
	font-weight: 500;
	color: var(--color-green);
}

/* spot */
.ac-spot {
	background-color: var(--color-green01);
	padding: 85px 0 205px;
}
@media (width <= 640px) {
	.ac-spot {
		padding: 55px 0 95px;
	}
}
.ac-spot__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 65px 70px;
	margin-top: 60px;
}
@media (width <= 767px) {
	.ac-spot__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (width <= 640px) {
	.ac-spot__list {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 60px;
	}
}
.ac-spot__list-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.ac-spot__list-title {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
}
.ac-spot__list-title--ls {
	letter-spacing: -0.18em;
}
.ac-spot__list-time {
	order: -1;
	font-weight: 500;
	color: #fff;
	text-align: center;
	width: 180px;
	background-color: var(--color-green);
	border-radius: calc(infinity * 1px);
	padding: 2px 0 4px;
	margin-bottom: 20px;
	position: relative;
	scale: 0;
	transition: var(--ts-pon);
	transform-origin: center bottom;
}
.ac-spot__list-time::after {
	content: "";
	display: block;
	width: 10px;
	aspect-ratio: 10/5;
	background-color: var(--color-green);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	position: absolute;
	inset: calc(100% - 1px) auto auto 50%;
	translate: -50% 0;
}
.ac-spot__list-time.animated {
	scale: 1;
}
.ac-spot__list-time-l {
	font-size: 1.2em;
}
.ac-spot__list-img {
	order: -2;
	border-radius: 6px;
	margin-bottom: 30px;
	overflow: hidden;
}

/* How to */
.guide-ht {
	padding-block: 90px 210px;
}
@media (width <= 640px) {
	.guide-ht {
		padding-block: 60px 85px;
	}
}
.guide-ht__text {
	margin-top: 50px;
}
@media (width <= 640px) {
	.guide-ht__text {
		margin-top: 30px;
	}
}

/* 料金・支払い方法 */
.guide-pp {
	margin-top: 120px;
}
@media (width <= 640px) {
	.guide-pp {
		margin-top: 60px;
	}
}

/* 料金　*/
.guide-price {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 30px 0;
}
@media (width <= 640px) {
	.guide-price {
		flex-direction: column;
		align-items: stretch;
	}
}
.guide-price > .box01 {
	flex: 0 0 31.3953488372%;
}
.guide-price > .box02 {
	flex: 0 0 60.4651162791%;
}
.guide-price__text {
	margin-top: 30px;
}
.guide-price__table-text, .guide-price__table-list-item {
	padding-inline: 20px;
}
@media (width <= 640px) {
	.guide-price__table-text, .guide-price__table-list-item {
		padding-inline: 0;
	}
}
.guide-price__table-text {
	display: block;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 10px;
}
.guide-price__table-list-item {
	display: flex;
	align-items: last baseline;
	justify-content: space-between;
	border-top: 1px solid #bdbdbd;
	padding-block: 13px;
	position: relative;
}
@media (width <= 640px) {
	.guide-price__table-list-item {
		padding-block: 25px;
	}
}
.guide-price__table-list-item:last-child {
	border-bottom: 1px solid #bdbdbd;
}
.guide-price__table-list-item > * {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.45;
}
.guide-price__table-list-title {
	padding-left: 0.8em;
	position: relative;
}
.guide-price__table-list-title::before {
	content: "●";
	font-size: 0.5em;
	position: absolute;
	inset: 0.9em auto auto 0;
	color: var(--color-green);
}
@media (width <= 640px) {
	.guide-price__table-list-text--spab {
		position: absolute;
		inset: 10px 0 auto auto;
	}
}

/* 支払い方法 */
.guide-payment {
	border-top: 1px solid #bdbdbd;
	padding-top: 70px;
	margin-top: 70px;
}
@media (width <= 640px) {
	.guide-payment {
		border-top: 0;
		padding-top: 60px;
		margin-top: 0;
	}
}

/* 流れ */
.guide-flow {
	background-color: var(--color-green01);
	padding-block: 60px 185px;
}
@media (width <= 640px) {
	.guide-flow {
		padding-block: 60px 80px;
	}
}
.guide-flow__slide {
	padding: 0 40px !important;
	margin-top: 40px;
}
@media (width <= 640px) {
	.guide-flow__slide {
		padding: 0 35px !important;
	}
}
@media (width <= 370px) {
	.guide-flow__slide {
		padding: 0 20px !important;
	}
}
.guide-flow__slide-list {
	counter-reset: num;
}
@media (width <= 640px) {
	.guide-flow__slide-list {
		flex-direction: column;
		gap: 20px;
	}
}
.guide-flow__slide-item {
	counter-increment: num;
	height: auto !important;
	background-color: #fff;
	border-radius: 6px;
	padding: 50px 30px;
	position: relative;
}
@media (width <= 640px) {
	.guide-flow__slide-item {
		translate: 0 100px;
		opacity: 0;
		transition: opacity 1s, translate 1s ease-out !important;
	}
	.guide-flow__slide-item.animated {
		translate: 0 0;
		opacity: 1;
	}
}
.guide-flow__slide-item::before {
	content: counter(num, decimal-leading-zero);
	font-family: var(--font-din);
	font-size: 50px;
	color: #daecde;
	font-variation-settings: var(--font-din-fw);
	line-height: 1;
	position: absolute;
	inset: 30px auto auto 30px;
}
.guide-flow__slide-box {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.guide-flow__slide-title {
	font-size: 20px;
	font-weight: bold;
	color: var(--color-green);
	margin-bottom: 20px;
}
.guide-flow__slide-text {
	letter-spacing: -0.05em;
}
.guide-flow__slide-icon {
	order: -1;
	width: 130px;
	margin: 0 auto 40px;
}
.guide-flow__slide-btn {
	margin-top: 20px;
}
.guide-flow__slide-prev, .guide-flow__slide-next {
	width: 35px;
	aspect-ratio: 35/70;
	background: var(--color-green) url(../img/common/icon_arrow03.svg) 70% center/10px auto no-repeat;
	border-radius: calc(infinity * 1px) 0 0 calc(infinity * 1px);
	position: absolute;
	inset: 95px 0 auto auto;
	z-index: 1;
	cursor: pointer;
	opacity: 1;
	transition: opacity 0.2s ease-out;
}
@media (width <= 640px) {
	.guide-flow__slide-prev, .guide-flow__slide-next {
		display: none;
	}
}
.guide-flow__slide-prev.swiper-button-disabled, .guide-flow__slide-next.swiper-button-disabled {
	opacity: 0;
}
.guide-flow__slide-prev {
	inset: 95px auto auto 0;
	scale: -1 1;
}

/* 注意 */
.guide-note {
	padding-top: 90px;
}
.guide-note__text {
	margin-top: 30px;
}
.guide-note__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px;
}
@media (width <= 640px) {
	.guide-note__list {
		gap: 40px;
	}
}
.guide-note__list-item {
	width: calc((100% - 200px) / 5);
}
@media (width <= 960px) {
	.guide-note__list-item {
		width: calc((100% - 150px) / 4);
	}
}
@media (width <= 767px) {
	.guide-note__list-item {
		width: calc((100% - 100px) / 3);
	}
}
@media (width <= 640px) {
	.guide-note__list-item {
		width: calc((100% - 40px) / 2);
	}
}
.guide-note__list-item.animated .guide-note__list-icon {
	scale: 1;
}
@media (width > 960px) {
	.guide-note__list-item:nth-child(5n+2) .guide-note__list-icon {
		transition-delay: 0.1s;
	}
	.guide-note__list-item:nth-child(5n+3) .guide-note__list-icon {
		transition-delay: 0.2s;
	}
	.guide-note__list-item:nth-child(5n+4) .guide-note__list-icon {
		transition-delay: 0.2s;
	}
	.guide-note__list-item:nth-child(5n+5) .guide-note__list-icon {
		transition-delay: 0.2s;
	}
}
@media (min-width: 768px) and (max-width: 960px) {
	.guide-note__list-item:nth-child(4n+2) .guide-note__list-icon {
		transition-delay: 0.1s;
	}
	.guide-note__list-item:nth-child(4n+3) .guide-note__list-icon {
		transition-delay: 0.2s;
	}
	.guide-note__list-item:nth-child(4n+4) .guide-note__list-icon {
		transition-delay: 0.3s;
	}
}
@media (min-width: 641px) and (max-width: 767px) {
	.guide-note__list-item:nth-child(3n+2) .guide-note__list-icon {
		transition-delay: 0.1s;
	}
	.guide-note__list-item:nth-child(3n+3) .guide-note__list-icon {
		transition-delay: 0.2s;
	}
}
@media (width <= 640px) {
	.guide-note__list-item:nth-child(even) .guide-note__list-icon {
		transition-delay: 0.1s;
	}
}
.guide-note__list-icon {
	scale: 0;
	transition: var(--ts-pon);
}
.guide-note__list-text {
	font-weight: 500;
	text-align: center;
	letter-spacing: -0.09em;
	margin-top: 20px;
}
@media (width <= 370px) {
	.guide-note__list-text {
		font-size: 14px;
	}
}
.guide-note__panel {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	border: 1px solid #a2cfac;
	border-radius: 6px;
	padding: 30px;
}
@media (width <= 640px) {
	.guide-note__panel {
		min-height: 180px;
	}
}
.guide-note__panel .c-list02 {
	letter-spacing: -0.05em;
}
.guide-note__panel + .guide-note__panel {
	margin-top: 20px;
}
.guide-note__panel--orange {
	border-color: #f7c080;
	padding: 30px 10px;
}
.guide-note__hurry-text {
	font-family: var(--font-zenmaru);
	text-align: center;
}
.guide-note__hurry-text01 {
	display: block;
	font-size: clamp(22px, 0.849rem + 1.32vw, 32px);
	color: var(--color-green);
}
.guide-note__hurry-text01--fz22 {
	font-size: 22px;
	line-height: 1.3;
	margin-bottom: 20px;
}
@media (width <= 640px) {
	.guide-note__hurry-text01--fz22 {
		margin-bottom: 5px;
	}
}
@media (width <= 370px) {
	.guide-note__hurry-text01--fz22 {
		font-size: 20px;
	}
}
.guide-note__hurry-text02 {
	font-size: clamp(16px, 0.684rem + 0.79vw, 22px);
}
.guide-note__hurry-tel {
	display: flex;
	align-items: last baseline;
	justify-content: center;
	gap: 5px;
	font-size: clamp(35px, 1.398rem + 1.97vw, 50px);
	color: var(--color-orange);
	line-height: 1;
	margin-top: -10px;
}
@media (width <= 640px) {
	.guide-note__hurry-tel {
		margin-top: 0;
	}
}
.guide-note__hurry-tel::before {
	content: "";
	display: block;
	width: 0.7em;
	aspect-ratio: 1;
	background: url(../img/common/icon_tel.svg) center/contain no-repeat;
}

/* キャンセル */
.guide-cancel {
	padding-block: 120px 50px;
}
@media (width <= 640px) {
	.guide-cancel {
		padding-block: 60px 20px;
	}
}
.guide-cancel__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0 2em;
	margin: 30px 0 10px;
}
@media (width <= 640px) {
	.guide-cancel__list {
		justify-content: center;
	}
}
.guide-cancel__list-item {
	font-size: 18px;
	font-weight: 500;
}

.news {
	width: 100%;
	max-width: 1050px;
	padding-block: 70px 60px;
	margin-inline: auto;
}
@media (width <= 640px) {
	.news {
		padding-bottom: 10px;
	}
}
.news__inner {
	width: 100%;
	max-width: 1050px;
	padding-inline: 35px;
	margin-inline: auto;
}
@media (width <= 370px) {
	.news__inner {
		padding-inline: 20px;
	}
}
.news__cat {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
@media (width <= 640px) {
	.news__cat {
		justify-content: flex-start;
	}
}
@media (width <= 640px) {
	.news__cat-item--all {
		width: 100%;
	}
}
.news__cat-link {
	font-weight: 500;
	color: #fff;
	text-align: center;
	width: 90px;
	background-color: #a2cfac;
	border: 1px solid #a2cfac;
	border-radius: 2px;
}
.news__cat-link--current {
	color: var(--color-green);
	background-color: #fff;
}
@media (any-hover: hover) {
	.news__cat-link:hover {
		color: var(--color-green);
		background-color: #fff;
	}
}
.news__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 60px 40px;
}
.news__list-link::after {
	content: "";
	display: block;
	width: 16px;
	aspect-ratio: 16/4;
	background: url(../img/common/icon_arrow02.svg) center/contain no-repeat;
	margin: 40px 0 0 auto;
	position: relative;
	right: 0;
	transition: var(--ts-arrow);
}
@media (any-hover: hover) {
	.news__list-link:hover {
		color: var(--color-green);
	}
	.news__list-link:hover .news__list-img img {
		scale: 1.05;
	}
	.news__list-link:hover::after {
		right: -10px;
	}
}
.news__list-item {
	width: 300px;
}
@media (width <= 640px) {
	.news__list-item {
		width: 100%;
	}
}
.news__list-img {
	aspect-ratio: 3/2;
	border-radius: 6px;
	overflow: hidden;
}
.news__list-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: scale 0.5s ease-out;
}
.news__list-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 30px;
	margin-top: 20px;
}
.news__list-cat-list {
	display: flex;
	gap: 10px;
}
.news__list-cat {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-green);
	border: 1px solid #a2cfac;
	border-radius: 2px;
	padding: 0 10px;
}
@media (any-hover: hover) {
	.news__list-cat--link:hover {
		color: #fff;
		background-color: var(--color-green);
	}
}
.news__list-title {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: -0.05em;
	line-height: 1.65;
	margin-top: 20px;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	padding-inline: 20px;
	margin-top: 60px;
}
@media (width <= 640px) {
	.nav-links {
		gap: 10px;
		margin-top: 50px;
	}
}
.nav-links > * {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 300;
	color: var(--color-green);
	width: 40px;
	height: max-content;
	aspect-ratio: 1;
	border: 1px solid transparent;
	border-radius: 50%;
	position: relative;
}
.nav-links > *.current {
	background-color: #ecf5ee;
}
.nav-links > *.prev, .nav-links > *.next {
	--margin: 40px;
	width: 60px;
	border: 1px solid #a2cfac;
	background: url(../img/common/icon_arrow04.svg) center/8px auto no-repeat;
}
@media (width <= 640px) {
	.nav-links > *.prev, .nav-links > *.next {
		--margin: 5px;
	}
}
.nav-links > *.prev {
	margin-right: var(--margin);
	scale: -1 1;
}
.nav-links > *.next {
	margin-left: var(--margin);
}
@media (any-hover: hover) {
	.nav-links a:hover {
		color: var(--color-green);
		background-color: #ecf5ee;
	}
}
@media (any-hover: hover) {
	.nav-links a.prev:hover, .nav-links a.next:hover {
		background-color: #ecf5ee;
	}
}

/*　詳細 */
.news-detail {
	padding-block: 100px 80px;
	/* SPのみスライド */
}
@media (width <= 640px) {
	.news-detail {
		padding-block: 60px 30px;
	}
}
.news-detail .news__list-info {
	margin-top: 0;
}
.news-detail__title {
	font-size: clamp(22px, 1.27rem + 0.26vw, 24px);
	font-weight: bold;
	letter-spacing: -0.05em;
	line-height: 1.75;
	margin-top: 30px;
}
.news-detail__img {
	width: 100%;
	max-width: 540px;
	border-radius: 6px;
	margin: 60px auto 0;
	overflow: hidden;
}
@media (width <= 640px) {
	.news-detail__img {
		margin-top: 40px;
	}
}
.news-detail__content {
	margin-top: 160px;
	/* リスト */
	/* テーブル */
	/* 説明リスト */
	/* flex */
	/* ボタン */
}
@media (width <= 640px) {
	.news-detail__content {
		margin-top: 60px;
	}
}
.news-detail__content > * + * {
	margin-top: 60px;
}
.news-detail__content h2 {
	font-size: 22px;
	font-weight: bold;
	color: var(--color-green);
	text-decoration: underline;
	text-decoration-color: #a1cfab;
	text-underline-offset: 10px;
	text-decoration-thickness: 1px;
}
.news-detail__content h3 {
	font-size: 20px;
	font-weight: bold;
}
.news-detail__content h4 {
	font-size: 18px;
	font-weight: 500;
	color: var(--color-green);
}
.news-detail__content a {
	display: inline;
	font-weight: 500;
	color: var(--color-orange);
	text-decoration: underline var(--color-orange) 1px;
	text-underline-offset: 3px;
}
.news-detail__content strong {
	font-weight: bold;
	color: var(--color-green);
}
.news-detail__content img {
	border-radius: 6px;
}
.news-detail__content ul > li {
	padding-left: 1em;
	position: relative;
}
.news-detail__content ul > li::before {
	content: "●";
	font-size: 0.75em;
	color: var(--color-green);
	position: absolute;
	inset: 0.25em auto auto 0;
}
.news-detail__content ol {
	counter-reset: number;
}
.news-detail__content ol > li {
	padding-left: 1.5em;
	position: relative;
}
.news-detail__content ol > li::before {
	counter-increment: number;
	content: counter(number, decimal-leading-zero);
	color: var(--color-green);
	font-weight: bold;
	position: absolute;
	inset: 0 auto auto 0;
}
.news-detail__content .scroll-hint {
	overflow: hidden !important;
	overflow-x: auto !important;
}
.news-detail__content table {
	width: 100%;
	border-radius: 6px;
	border-bottom-left-radius: 0;
	overflow: hidden;
}
@media (width <= 640px) {
	.news-detail__content table {
		width: max-content;
	}
}
.news-detail__content table th {
	color: #fff;
}
.news-detail__content table th, .news-detail__content table td {
	text-align: center;
	box-sizing: border-box;
	padding: 10px;
	position: relative;
}
.news-detail__content table thead {
	background-color: var(--color-green);
}
.news-detail__content table tbody tr > td {
	border-bottom: 1px solid #a1cfab;
}
.news-detail__content table tbody tr:first-child th::before {
	content: none;
}
.news-detail__content table tbody th {
	background-color: #7dbc8b;
}
.news-detail__content table tbody th::before {
	content: "";
	display: block;
	width: 80%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	inset: 0 auto auto 50%;
	translate: -50% 0;
}
.news-detail__content table thead tr > * + *::before,
.news-detail__content table tbody tr > td + td::before {
	content: "";
	display: block;
	width: 1px;
	height: 60%;
	position: absolute;
	inset: 50% auto auto 0;
	translate: 0 -50%;
}
.news-detail__content table thead tr > * + *::before {
	background-color: #fff;
}
.news-detail__content table tbody tr > td + td::before {
	background-color: #a1cfab;
}
.news-detail__content dl {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 0;
	overflow: hidden;
}
@media (width <= 640px) {
	.news-detail__content dl {
		flex-direction: column;
		gap: 0;
	}
}
.news-detail__content dl > * {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	min-height: 50px;
	padding: 10px;
}
@media (width <= 640px) {
	.news-detail__content dl > * {
		width: 100%;
	}
}
.news-detail__content dl > dt {
	font-weight: bold;
	color: #fff;
	background-color: #6bb37b;
	border-radius: 6px 0 0 6px;
}
@media (width <= 640px) {
	.news-detail__content dl > dt {
		border-radius: 6px 6px 0 0;
	}
}
.news-detail__content dl > dd {
	background-color: #f6faf7;
	border-radius: 0 6px 6px 0;
}
@media (width <= 640px) {
	.news-detail__content dl > dd {
		border-radius: 0 0 6px 6px;
	}
}
@media (width <= 640px) {
	.news-detail__content dl > dd + dt {
		margin-top: 10px;
	}
}
.news-detail__content .flex {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}
@media (width <= 640px) {
	.news-detail__content .flex {
		flex-direction: column-reverse;
	}
}
.news-detail__content .flex > * {
	width: calc((100% - 60px) / 2);
}
@media (width <= 640px) {
	.news-detail__content .flex > * {
		width: 100%;
	}
}
@media (width <= 640px) {
	.news-detail__content .flex img {
		width: calc(100% + 35px);
		border-radius: 6px 0 0 6px;
		margin: 0 -35px 0 0;
	}
}
@media (width <= 370px) {
	.news-detail__content .flex img {
		width: calc(100% + 20px);
		margin: 0 -20px 0 0;
	}
}
.news-detail__content .flex--reverse {
	flex-direction: row-reverse;
}
@media (width <= 640px) {
	.news-detail__content .flex--reverse {
		flex-direction: column-reverse;
	}
}
@media (width <= 640px) {
	.news-detail__content .flex--reverse img {
		width: calc(100% + 35px);
		border-radius: 0 6px 6px 0;
		margin: 0 0 0 -35px;
	}
}
@media (width <= 370px) {
	.news-detail__content .flex--reverse img {
		width: calc(100% + 20px);
		margin: 0 0 0 -20px;
	}
}
.news-detail__content .grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 60px 20px;
}
.news-detail__content .grid > * {
	width: 100%;
}
@media (width > 640px) {
	.news-detail__content .grid--2col {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (width > 640px) {
	.news-detail__content .grid--3col {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (width <= 767px) {
	.news-detail__content .grid--3col {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (width <= 640px) {
	.news-detail__content .grid--3col {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
@media (width > 640px) {
	.news-detail__content .grid--4col {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
@media (width <= 767px) {
	.news-detail__content .grid--4col {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (width <= 640px) {
	.news-detail__content .grid--4col {
		display: flex;
		gap: 0 !important;
		grid-template-columns: none;
	}
}
@media (width <= 767px) {
	.news-detail__content .grid--sp2col {
		gap: 20px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
.news-detail__content .grid--gap40 {
	column-gap: 40px;
}
.news-detail__content .grid--gap60 {
	column-gap: 60px;
}
.news-detail__content .card div {
	padding-top: 30px;
}
.news-detail__content .card div > * + * {
	margin-top: 20px;
}
.news-detail__content .card h3 {
	font-size: 20px;
	font-weight: bold;
	color: var(--color-green);
	letter-spacing: -0.08em;
}
.news-detail__content .card--s h3 {
	font-size: 16px;
}
.news-detail__content .card--deco img {
	border-radius: 12px 12px 0 0;
}
.news-detail__content .card--deco div {
	background-color: #f6faf7;
	border-radius: 0 0 12px 12px;
	padding: 30px 30px 40px;
}
.news-detail__content .btn {
	--btn-color: var(--color-green);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	min-height: 86px;
	border: 1px solid var(--btn-color);
	background-color: var(--btn-color);
	border-radius: 6px;
	padding: 5px 25px;
	position: relative;
	transition: 0.2s ease-out;
	cursor: pointer;
}
.news-detail__content .btn::after {
	content: "";
	display: block;
	width: 8px;
	aspect-ratio: 1/2;
	background: url(../img/common/icon_arrow03.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% 15px auto auto;
	translate: 0 -50%;
	transition: inset 0.2s ease-out;
}
@media (any-hover: hover) {
	.news-detail__content .btn:hover::after {
		right: 5px;
	}
}
.news-detail__content .btn--h50 {
	min-height: 50px;
}
.news-detail__content .sep {
	height: 1px;
	background-color: var(--color-green);
	margin-block: 60px;
}
.news-detail__slide {
	overflow: visible !important;
}
.news-detail__slide-prev, .news-detail__slide-next {
	width: 35px;
	aspect-ratio: 35/70;
	background: var(--color-green) url(../img/common/icon_arrow03.svg) 70% center/10px auto no-repeat;
	border-radius: calc(infinity * 1px) 0 0 calc(infinity * 1px);
	position: absolute;
	inset: 35px -35px auto auto;
	z-index: 1;
	cursor: pointer;
	opacity: 1;
	transition: opacity 0.2s ease-out;
}
@media (width > 640px) {
	.news-detail__slide-prev, .news-detail__slide-next {
		display: none;
	}
}
@media (width <= 370px) {
	.news-detail__slide-prev, .news-detail__slide-next {
		top: 20px;
		right: -20px;
	}
}
.news-detail__slide-prev.swiper-button-disabled, .news-detail__slide-next.swiper-button-disabled {
	opacity: 0;
}
.news-detail__slide-prev {
	inset: 35px auto auto -35px;
	scale: -1 1;
}
@media (width <= 370px) {
	.news-detail__slide-prev {
		top: 20px;
		left: -20px;
	}
}

/* 詳細ページネーション */
.single-pn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px 40px;
	margin-top: 100px;
}
@media (width <= 640px) {
	.single-pn {
		justify-content: space-between;
		margin-top: 40px;
	}
}
@media (width <= 640px) {
	.single-pn > li:has(.c-btn02) {
		order: -1;
		width: 100%;
	}
}
@media (width <= 640px) {
	.single-pn .c-btn02 {
		order: -1;
		width: 100%;
		padding-block: 10px;
	}
}

.faq {
	padding-block: 65px 20px;
}
.faq__cat {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 80px;
}
@media (width <= 640px) {
	.faq__cat-item {
		width: calc((100% - 10px) / 2);
	}
}
.faq__cat-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	width: 140px;
	min-height: 30px;
	background-color: #a2cfac;
	border: 1px solid #a2cfac;
	border-radius: 2px;
	cursor: pointer;
	transition: 0.2s ease-out;
}
@media (width <= 640px) {
	.faq__cat-btn {
		width: 100%;
	}
}
@media (any-hover: hover) {
	.faq__cat-btn:hover {
		color: var(--color-green);
		background-color: #fff;
	}
}
.faq__cat-btn--all {
	width: 90px;
}
@media (width <= 640px) {
	.faq__cat-btn--all {
		width: 100%;
	}
}
.faq__cat-btn--active {
	color: var(--color-green);
	background-color: #fff;
}
.faq__kinds {
	display: none;
}
.faq__kinds--active {
	display: block;
	animation: faqFeed 0.5s ease-out forwards;
}
.faq__kinds-title {
	font-size: 22px;
	font-weight: 500;
	border-bottom: 1px solid #bdbdbd;
	padding-bottom: 10px;
}
.faq__kinds-title::first-letter {
	color: var(--color-green);
}
.faq__list-question {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.65;
	border-bottom: 1px solid #c7e2cd;
	padding: 25px 40px 25px 0;
	position: relative;
	transition: 0.2s ease-out;
	cursor: pointer;
}
@media (any-hover: hover) {
	.faq__list-question:hover {
		color: var(--color-green);
	}
	.faq__list-question:hover .faq__list-question-toggle {
		inset: calc(50% + 10px) 0 auto auto;
	}
}
.faq__list-question.open {
	border-color: transparent;
}
.faq__list-question.open .faq__list-question-toggle {
	background-color: #a2cfac;
	border-color: transparent;
}
.faq__list-question.open .faq__list-question-toggle::before, .faq__list-question.open .faq__list-question-toggle::after {
	background-color: #fff;
}
.faq__list-question.open .faq__list-question-toggle::after {
	rotate: 0deg;
}
.faq__list-question-toggle {
	width: 32px;
	aspect-ratio: 1;
	border: 1px solid #a2cfac;
	border-radius: 50%;
	position: absolute;
	inset: 50% 0 auto auto;
	translate: 0 -50%;
	transition: 0.2s ease-out;
}
.faq__list-question-toggle::before, .faq__list-question-toggle::after {
	content: "";
	display: block;
	width: 14px;
	height: 1px;
	background-color: #a2cfac;
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
	transition: 0.2s ease-out;
}
.faq__list-question-toggle::after {
	rotate: 90deg;
}
.faq__list-answer {
	display: none;
	background-color: #ecf5ee;
	border-radius: 6px;
	padding: 50px 30px;
}
@media (width <= 767px) {
	.faq__list-answer {
		padding: 30px;
	}
}
.faq__list-text {
	width: 100%;
	max-width: 760px;
	margin-inline: auto;
}

@keyframes faqFeed {
	from {
		opacity: 0;
		translate: 0 50px;
	}
	to {
		opacity: 1;
		translate: 0 0;
	}
}
.contact {
	padding-block: 65px 110px;
}
@media (width <= 640px) {
	.contact {
		padding-bottom: 30px;
	}
}
.contact__form {
	width: 100%;
	max-width: 910px;
}
.contact__form-text {
	letter-spacing: -0.081em;
	margin-top: 50px;
}
@media (width <= 640px) {
	.contact__form-text {
		margin-top: 40px;
	}
}
.contact__form-text a {
	display: inline;
	color: var(--color-orange);
	font-weight: 500;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}
.contact__form-details {
	display: flex;
	flex-wrap: wrap;
	gap: 65px 20px;
	margin-top: 80px;
}
@media (width <= 640px) {
	.contact__form-details {
		flex-direction: column;
		row-gap: 0;
		margin-top: 50px;
	}
}
.contact__form-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 18px;
	font-weight: 500;
	color: var(--color-green);
	width: 200px;
	height: max-content;
	min-height: 40px;
	position: relative;
}
@media (width <= 640px) {
	.contact__form-title {
		flex-direction: row-reverse;
		column-gap: 10px;
		width: 100%;
		max-width: max-content;
	}
}
.contact__form-title::after {
	content: "任意";
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #fff;
	width: 40px;
	height: 24px;
	background-color: #a2cfac;
	border-radius: 2px;
	padding-bottom: 1px;
}
.contact__form-title--required::after {
	content: "必須";
	background-color: var(--color-orange);
}
.contact__form-contents {
	width: calc(100% - 220px);
}
@media (width <= 640px) {
	.contact__form-contents {
		width: 100%;
	}
}
.contact__form-contents > * {
	display: block;
}
.contact__form-contents > * + * {
	margin-top: 10px;
}
.contact__form-contents input[type=text],
.contact__form-contents input[type=email],
.contact__form-contents input[type=tel],
.contact__form-contents textarea {
	width: 100%;
	border: 0;
	border-radius: 2px;
	min-height: 40px;
	background-color: #ecf5ee;
	padding: 5px 10px;
}
.contact__form-contents--radio {
	font-size: 18px;
	font-weight: 500;
}
.contact__form-contents--radio .wpcf7-list-item + .wpcf7-list-item {
	display: block;
	margin-top: 5px;
}
.contact__form-contents--w340 > * {
	width: 100%;
	max-width: 340px;
}
@media (width <= 640px) {
	.contact__form-contents--w340 > * {
		max-width: 250px;
	}
}
@media (width <= 640px) {
	.contact__form-contents + .contact__form-title {
		margin-top: 30px;
	}
}
.contact__form-privacy {
	height: 270px;
	background-color: #fff;
	border: 1px solid #c7e2cd;
	border-radius: 6px;
	padding: 35px;
	margin-top: 60px;
	overflow: auto;
}
@media (width <= 370px) {
	.contact__form-privacy {
		padding: 35px 20px;
	}
}
.contact__form-privacy > dt {
	font-weight: bold;
}
.contact__form-privacy > dd {
	margin-top: 0.5lh;
}
.contact__form-privacy > dd + dt {
	margin-top: 1lh;
}
.contact__form-btn {
	width: 100%;
	max-width: 500px;
	margin: 80px auto 0;
	position: relative;
}
@media (width <= 640px) {
	.contact__form-btn {
		margin-top: 40px;
	}
}
.contact__form-btn::after {
	content: "";
	width: 16px;
	aspect-ratio: 1;
	background: url(../img/common/icon_arrow03.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% 40px auto auto;
	translate: 0 -50%;
	transition: inset 0.2s ease-out;
}
.contact__form-btn input {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	width: 100%;
	max-width: 500px;
	min-height: 100px;
	background: var(--color-green);
	border-radius: 6px;
	padding: 5px 60px;
	position: relative;
	transition: 0.2s ease-out;
}
.contact__form-btn input:disabled {
	background: #dcdcdc;
}
@media (any-hover: hover) {
	.contact__form-btn:hover::after {
		right: 30px;
	}
}
.contact__form-doui label {
	justify-content: center;
}
.contact .wpcf7-list-item {
	margin-left: 0;
}
.contact .wpcf7-spinner {
	display: none;
}

.thanks__box {
	width: 100%;
	max-width: max-content;
}
.thanks__box p + p {
	margin-top: 1em;
}/*# sourceMappingURL=style.css.map */