@charset "UTF-8";

[data-animation^=fade-in]:not(.animated) {
	opacity: 0;
}

.js-has-pseudo [csstools-has-2j-2s-2p-38-2p-19-34-2p-36-2p-30-30-2p-3c-2l-1m-32-33-38-14-2j-2s-2p-38-2p-19-34-2p-36-2p-30-30-2p-3c-19-33-3a-2t-36-2u-30-33-3b-1p-38-36-39-2t-2l-15-1m-2w-2p-37-14-1q-w-2x-31-2v-15]:not(.does-not-exist):not(does-not-exist) {
	overflow: hidden;
}

[data-parallax]:not([data-parallax-overflow=true]):has(> img) {
	overflow: hidden;
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fade-in-left {
	0% {
		opacity: 0;
		transform: translateX(12px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fade-in-right {
	0% {
		opacity: 0;
		transform: translateX(-12px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fade-in-up {
	0% {
		opacity: 0;
		transform: translateY(8px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

:root {
	--font-fallback: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	--font-base: "Zen Kaku Gothic New", var(--font-fallback);
	--font-heading: var(--font-base);
	--font-english: "Inter", var(--font-base);
	--font-icon: "icomoon";
	--font-size-xxs: 1rem;
	--font-size-xs: 1.2rem;
	--font-size-sm: 1.4rem;
	--font-size-md: 1.6rem;
	--font-size-lg: 1.8rem;
	--font-size-xl: 2.1rem;
	--font-size-xxl: 2.8rem;
	--font-size-xxxl: 3.2rem;
	--font-weight-regular: 400;
	--font-weight-bold: 700;
}

@media (max-width: 525px) {
	:root {
		--font-size-xs: 1.1rem;
		--font-size-sm: 1.3rem;
		--font-size-md: 1.4rem;
		--font-size-lg: 1.6rem;
		--font-size-xl: 1.9rem;
		--font-size-xxl: 2.5rem;
		--font-size-xxxl: 3rem;
	}
}

:root {
	--ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
	--ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
	--ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
	--ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
	--ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
	--ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	--ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
	--ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
	--ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
	--ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
	--ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
	--ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	--ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
	--ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
	--ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
	--ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
	--ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
	--ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
	--ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
	--ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
	--ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

:root {
	--vw: 1vw;
	--z-index-header: 3;
	--section-gap-xl: clamp(120px, calc(35 * var(--vw)), 200px);
	--section-gap-lg: clamp(80px, calc(25 * var(--vw)), 160px);
	--section-gap-md: clamp(50px, calc(20 * var(--vw)), 120px);
	--section-gap-sm: clamp(36px, calc(11 * var(--vw)), 80px);
	--section-gap-xs: clamp(26px, calc(6 * var(--vw)), 46px);
	--section-gap: var(--section-gap-md);
	--header-gap-lg: clamp(36px, calc(11 * var(--vw)), 80px);
	--header-gap-md: clamp(26px, calc(6 * var(--vw)), 46px);
	--header-gap-sm: clamp(20px, calc(5 * var(--vw)), 36px);
	--header-gap-xs: clamp(17px, calc(2 * var(--vw)), 24px);
	--header-gap: var(--header-gap-md);
	--radius-md: 5px;
	--radius-lg: 15px;
}

/* -----------------------------
 ブレークポイント
----------------------------- */
:root {
	--breakpoint-xs: 360;
	--breakpoint-xs-px: 360px;
	--breakpoint-sm: 525;
	--breakpoint-sm-px: 525px;
	--breakpoint-md: 768;
	--breakpoint-md-px: 768px;
	--breakpoint-lg: 1024;
	--breakpoint-lg-px: 1024px;
	--breakpoint-xl: 1280;
	--breakpoint-xl-px: 1280px;
	--breakpoint-sp: 525;
	--breakpoint-sp-px: 525px;
	--breakpoint-tablet: 768;
	--breakpoint-tablet-px: 768px;
	--breakpoint-pc: 1024;
	--breakpoint-pc-px: 1024px;
	--breakpoint-wide: 1280;
	--breakpoint-wide-px: 1280px;
}

/* -----------------------------
 カラーパレット
----------------------------- */
:root {
	--color-noir: #333;
	--color-noir-rgb: 51, 51, 51;
	--color-taupe: #0f0f0f;
	--color-taupe-rgb: 15, 15, 15;
	--color-hippie-blue: #51869b;
	--color-hippie-blue-rgb: 81, 134, 155;
	--color-white: #fff;
	--color-white-rgb: 255, 255, 255;
	--color-pearl: #e2e0db;
	--color-pearl-rgb: 226, 224, 219;
	--color-milk: #efeeeb;
	--color-milk-rgb: 239, 238, 235;
	--color-navy: #003d7f;
	--color-navy-rgb: 0, 61, 127;
	--color-gray: #dbdbdb;
	--color-gray-rgb: 219, 219, 219;
	--color-red: #e8371e;
	--color-red-rgb: 232, 55, 26;
	--color-black: #000;
	--color-black-rgb: 0, 0, 0;
}

/* -----------------------------
 テーマ色
----------------------------- */
:root {
	--color-primary: var(--color-hippie-blue);
	--color-primary-rgb: var(--color-hippie-blue-rgb);
	--color-secondary: var(--color-milk);
	--color-secondary-rgb: var(--color-milk-rgb);
	--color-secondary-alt: var(--color-pearl);
	--color-secondary-alt-rgb: var(--color-pearl-rgb);
	--color-bg: var(--color-white);
	--color-bg-rgb: var(--color-white-rgb);
	--color-heading: var(--color-noir);
	--color-heading-rgb: var(--color-noir-rgb);
	--color-text: var(--color-black);
	--color-text-rgb: var(--color-black-rgb);
	--color-text-contrast: var(--color-white);
	--color-text-contrast-rgb: var(--color-white-rgb);
}

html {
	font-size: 62.5%;
	overflow-x: hidden;
}

body {
	width: 100%;
	font-family: var(--font-base);
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-regular);
	line-height: 1.7;
	color: var(--color-text);
	letter-spacing: 0.075em;
	background: var(--color-bg);
}

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

em {
	font-style: unset;
}

.wow {
	animation-duration: 1.15s;
	animation-delay: 0.1s;
	animation-fill-mode: forwards;
}

.wow.fadeIn {
	opacity: 0;
}

.slick-slide {
	outline: none;
}

.simplebar-content-wrapper {
	outline: none;
}

.c-button01 {
	--padding-x: 1.5em;
	position: relative;
	z-index: 0;
	display: flex;
	gap: 1.25em;
	align-items: center;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 16em;
	max-width: 100%;
	min-height: 4.2rem;
	padding: 0.6em var(--padding-x);
	line-height: 1.3;
	color: var(--color-text-contrast);
	background-color: var(--color-navy);
	transition: opacity 0.3s, color 0.3s;
}

.c-button01::before {
	position: relative;
	font-family: var(--font-icon);
	font-size: 1.15em;
	content: "\e906";
	transition: transform 0.25s ease;
}

.c-button01:hover::before {
	transform: translateX(20%);
}

.c-button01:where(:not(.c-button01--outline)):hover {
	opacity: 0.8;
}

.c-button01:where(.c-button01--outline) {
	color: unset;
	background-color: unset;
	border: 1px solid;
}

.c-button01:where(.c-button01--outline)::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	content: "";
	background-color: var(--color-primary);
	border: inherit;
	opacity: 0;
	transition: opacity 0.3s;
}

.c-button01:where(.c-button01--outline):hover {
	color: var(--color-primary);
}

.c-button01:where(.c-button01--outline):hover::after {
	opacity: 0.1;
}

.c-button01:where(.c-button01--thin) {
	min-height: 3.6rem;
	padding: 0.34em var(--padding-x) 0.37em;
}

.c-button01:where(.c-button01--fit) {
	min-width: unset;
}

.c-button01:where(.c-button01--full) {
	width: 100%;
}

.c-button01__text {
	display: block;
	flex-grow: 1;
	font-size: var(--font-size-sm);
	text-align: center;
}

.c-card__image {
	display: block;
	width: 100%;
	aspect-ratio: var(--image-aspect-ratio, 1/0.73);
	margin-bottom: 1.5em;
	object-fit: cover;
}

.c-card__content {
	margin-top: 0.5em;
}

.c-career {
	--date-width: 4em;
	--row-gap: 0.5em;
	container-type: inline-size;
}

.c-career__heading {
	position: relative;
	display: block;
	margin-bottom: 10px;
	padding: 2px 20px;
	font-size: 2rem;
	color: var(--color-white);
	letter-spacing: 0.1em;
	background: #80a4b7;
}

@media (max-width: 525px) {
	.c-career__heading {
		padding: 2px 10px;
		font-size: 1.6rem;
	}
}

.c-career__list {
	padding: 0 10px;
}

.c-career__item {
	display: grid;
	grid-template-columns: auto 1fr;
	line-height: 1.7;
}

.c-career__item:where(.c-career__item + *) {
	margin-top: var(--row-gap);
}

.c-career__date {
	grid-column: 1;
	min-width: var(--date-width);
	margin-right: 1em;
}

.c-career__content {
	display: block;
	grid-column: 2;
	letter-spacing: 0.05em;
}

.c-detect-scroll {
	--gradation-size-y: 2.5em;
	--gradation-size-x: 1.5em;
	--top-gradation: 0%;
	--right-gradation: 0%;
	--bottom-gradation: 0%;
	--left-gradation: 0%;
}

.c-detect-scroll .simplebar-content-wrapper[data-scrollable*=y] {
	--top-gradation: var(--gradation-size-y);
	--bottom-gradation: var(--gradation-size-y);
}

.c-detect-scroll .simplebar-content-wrapper[data-scrollable*=y][data-scroll-state*=top] {
	--top-gradation: 0%;
}

.c-detect-scroll .simplebar-content-wrapper[data-scrollable*=y][data-scroll-state*=bottom] {
	--bottom-gradation: 0%;
}

.c-detect-scroll .simplebar-content-wrapper[data-scrollable*=x] {
	--right-gradation: var(--gradation-size-x);
	--left-gradation: var(--gradation-size-x);
}

.c-detect-scroll .simplebar-content-wrapper[data-scrollable*=x][data-scroll-state*=right] {
	--right-gradation: 0%;
}

.c-detect-scroll .simplebar-content-wrapper[data-scrollable*=x][data-scroll-state*=left] {
	--left-gradation: 0%;
}

.c-detect-scroll .simplebar-content-wrapper:is([data-scrollable*=x], [data-scrollable*=y]) {
	-webkit-mask-composite: source-out, source-over, source-over, source-over;
	mask-composite: subtract, add, add, add;
	-webkit-mask-image: linear-gradient(to right, #000, #000 100%), linear-gradient(to bottom, #000, transparent var(--top-gradation)), linear-gradient(to top, #000, transparent var(--bottom-gradation)), linear-gradient(to left, #000, transparent var(--right-gradation)), linear-gradient(to right, #000, transparent var(--left-gradation));
	mask-image: linear-gradient(to right, #000, #000 100%), linear-gradient(to bottom, #000, transparent var(--top-gradation)), linear-gradient(to top, #000, transparent var(--bottom-gradation)), linear-gradient(to left, #000, transparent var(--right-gradation)), linear-gradient(to right, #000, transparent var(--left-gradation));
}

.c-heading01 {
	--min-size: 2.7rem;
	--mid-size: calc(7 * var(--vw));
	--max-size: 3.8rem;
	font-size: clamp(var(--min-size), var(--mid-size), var(--max-size));
	font-weight: bold;
	line-height: 1.5;
	color: var(--color-heading);
	letter-spacing: 0.1em;
}

.c-heading01--md {
	--min-size: 2.3rem;
	--mid-size: calc(5.2 * var(--vw));
	--max-size: 3rem;
}

.c-heading01--sm {
	--min-size: 2rem;
	--mid-size: calc(2.7 * var(--vw));
	--max-size: 2.6rem;
}

.c-heading01--xs {
	--min-size: 1.9rem;
	--mid-size: calc(2.5 * var(--vw));
	--max-size: 2.3rem;
}

.c-image {
	border-radius: var(--radius-md);
}

.c-image--full {
	width: 100%;
}

.c-image--cover {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-image--no-radius {
	border-radius: unset;
}

.c-image--square {
	aspect-ratio: 1/1;
	object-fit: cover;
}

.c-keep-word {
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.c-list {
	--prefix: "・";
	--padding: 1.3em;
	--row-gap: 0.15em;
	--prefix-color: currentcolor;
	list-style: none;
}

.c-list--note {
	--prefix: "※";
}

.c-list--ordered {
	--prefix: counter(list) ".";
	counter-reset: list;
}

.c-list--ordered:where(.c-list--note) {
	--prefix: "※"counter(list);
	--padding: 2.3em;
}

.c-list--check {
	--prefix: "";
	--padding: 1.75em;
}

.c-list__item {
	position: relative;
	padding-left: var(--padding);
}

.c-list__item:where(.c-list--ordered > *) {
	counter-increment: list;
}

.c-list__item::before {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--prefix-color);
	content: var(--prefix);
}

.c-list__item:where(.c-list--check > *)::before {
	font-family: var(--font-icon);
}

.c-list__item:where(:nth-of-type(n + 2)) {
	margin-top: var(--row-gap);
}

.c-paragraph {
	line-height: 2;
}

.c-paragraph--sparse {
	line-height: 2.4;
}

.c-paragraph:where(.c-paragraph + *) {
	margin-top: 1em;
}

.c-signature {
	--position-size: var(--font-size-lg);
	--name-size: var(--font-size-xxl);
	--ruby-size: var(--font-size-xs);
	display: flex;
	flex-wrap: wrap;
	column-gap: var(--position-size);
	align-items: flex-end;
	line-height: 1;
	letter-spacing: 0.1em;
}

.c-signature__position {
	font-size: 2.9rem;
}

.c-signature__name {
	display: flex;
	column-gap: 0.5em;
	align-items: flex-end;
	font-size: var(--name-size);
}

.c-signature__name ruby {
	font-size: 3.4rem;
}

.c-signature__name small {
	font-size: var(--font-size-lg);
}

@media (max-width: 525px) {
	.p-reasons__inner {
		padding-bottom: 100px;
	}

	.c-signature__position {
		font-size: 1.8rem;
	}

	.c-signature__name ruby {
		font-size: 2.4rem;
	}

	.c-signature__name small {
		font-size: var(--font-size-md);
	}
}

.c-step-list {
	--number-size: min(6rem, calc(11 * var(--vw)));
	display: grid;
	row-gap: calc(var(--number-size) * 0.2);
	counter-reset: step-list;
	container: step-list/inline-size;
}

.c-step-list__item {
	display: flex;
	column-gap: 4cqw;
	counter-increment: step-list;
}

.c-step-list__item__header {
	position: relative;
	display: flex;
	column-gap: 0.5em;
}

.c-step-list__item__header::before {
	position: relative;
	display: block;
	font-size: min(var(--font-size-xl), 4.3 * var(--vw));
	font-weight: bold;
	line-height: 1.15;
	color: var(--color-heading);
	text-transform: uppercase;
	content: "Step";
}

.c-step-list__item__header::after {
	--border-top-position: calc(var(--number-size) + 0.35em);
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	font-size: var(--number-size);
	font-weight: bold;
	line-height: 1;
	color: var(--color-primary);
	letter-spacing: 0.1em;
	content: counter(step-list, decimal-leading-zero);
}

.c-step-list__item__header:where(:not(.c-step-list__item:last-child) > *)::after {
	background-image: linear-gradient(to bottom, transparent var(--border-top-position), currentcolor var(--border-top-position));
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 1px 100%;
}

@container step-list (width > 800px) {
	.c-step-list__item__header::before {
		align-self: flex-start;
		margin-top: calc(var(--number-size) / 2);
		transform: translateY(-0.3em);
	}
}

@container step-list (width <=800px) {
	.c-step-list__item__header {
		flex-direction: column;
		align-items: center;
	}

	.c-step-list__item__header::after {
		flex: 1;
	}
}

.c-step-list__item__body {
	flex: 1;
	padding-top: 0.5em;
}

.c-step-list__item__body:where(:not(.c-step-list__item:last-child) > *) {
	padding-bottom: var(--section-gap-xs);
}

.c-table {
	--border-color: rgba(var(--color-text-rgb), 30%);
	--header-bg-color: var(--color-secondary);
	min-width: 100%;
	margin-bottom: 2px;
}

.c-table th,
.c-table td {
	border-bottom: 1px solid var(--border-color);
}

.c-table th {
	position: relative;
	padding: 0.85em 1em;
	font-size: var(--font-size-lg);
	font-weight: bold;
	text-align: center;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.c-table th:first-child {
	width: 7em;
	min-width: 10em;
}

.c-table > thead > tr > th {
	color: var(--color-heading);
	background-color: var(--header-bg-color);
}

.c-table > tbody > tr > th {
	color: var(--color-primary);
	letter-spacing: 0.2em;
	vertical-align: middle;
}

.c-table > tbody > tr > td {
	min-width: min(20em, 85 * var(--vw));
	padding: 1.25em 1.5em;
}

.c-term-list {
	display: grid;
	container-type: inline-size;
}

.c-term-list__item {
	display: grid;
	grid-template-columns: var(--term-width, 5.25em) 1fr;
	gap: 0.15em 3em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

@container (width < 500px) {
	.c-term-list__item {
		grid-template-columns: auto;
	}
}

.c-term-list__item:where(.c-term-list--border > *) {
	padding-top: 0.85em;
	padding-bottom: 0.9em;
	border-bottom: 1px solid currentcolor;
}

.c-term-list__term {
	font-size: var(--term-font-size, 1em);
	font-weight: normal;
	text-align: center;
}

@container (width < 500px) {
	.c-term-list__term {
		font-weight: bold;
		text-align: left;
	}
}

.c-text-link {
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 0.15em;
	transition: opacity 0.2s;
}

.c-text-link:hover {
	opacity: 0.65;
}

.c-text-link--no-border {
	text-decoration: none;
}

.c-tile {
	display: flex;
	flex-wrap: wrap;
	gap: var(--row-gap, 1em) var(--column-gap, 1em);
}

.c-tile__item {
	width: calc((100% - var(--column-gap, 1em) * (var(--column-count, 3) - 1)) / var(--column-count, 3));
}

.l-breadcrumb {
	--arrow-size: 0.37em;
	--arrow-border-width: 1px;
}

.l-breadcrumb__list {
	display: flex;
	align-items: center;
	padding-left: 0.75em;
}

.l-breadcrumb__item {
	display: flex;
	align-items: center;
}

.l-breadcrumb__item:nth-child(n+2)::before {
	display: inline-block;
	padding: calc(var(--arrow-size) / 2);
	margin-top: 0.15em;
	margin-right: 1.2em;
	margin-left: 0.9em;
	content: "";
	border: solid var(--color-text);
	border-width: 0 var(--arrow-border-width) var(--arrow-border-width) 0;
	transform: rotate(-45deg);
}

.l-breadcrumb__item a {
	color: var(--color-primary);
	transition: opacity 0.2s;
}

.l-breadcrumb__item a:hover {
	opacity: 0.7;
}

:root {
	--container-width: 1420px;
	--container-width-md: 1320px;
	--container-width-lg: 1620px;
	--container-padding: 110px;
	--container-padding-left: var(--container-padding);
	--container-padding-right: var(--container-padding);
}

@media (max-width: 1024px) {
	:root {
		--container-padding: 64px;
	}
}

@media (max-width: 768px) {
	:root {
		--container-padding: 42px;
	}
}

@media (max-width: 525px) {
	:root {
		--container-padding: 20px;
	}
}

.l-container {
	width: var(--container-width);
	max-width: calc(100 * var(--vw));
	padding-right: var(--container-padding-right);
	padding-left: var(--container-padding-left);
	margin-right: auto;
	margin-left: auto;
}

.l-container--full {
	width: unset;
}

.l-container--md {
	width: var(--container-width-md);
}

.l-container--lg {
	width: var(--container-width-lg);
}

.l-footer {
	padding-top: 90px;
}

@media (max-width: 525px) {
	.l-footer {
		padding-top: 60px;
	}
}

.l-footer__inner {
	container: inner/inline-size;
}

@media (max-width: 860px) {
	.l-footer__inner {
		margin-bottom: 20px;
	}
}

.l-footer__grid {
	display: grid;
	gap: 30px;
}

@container inner (width > 860px) {
	.l-footer__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		grid-template-areas:
			"top middle"
			"bottom bottom";
	}
}

@container inner (width <=860px) {
	.l-footer__grid {
		grid-template-areas: "logo""top""middle""bottom";
		grid-template-columns: 1fr;
		gap: 0;
	}
}

.l-footer__logo {
	display: block;
	transition: opacity 0.2s;
}

@container inner (width > 860px) {
	.l-footer__logo {
		margin-bottom: 20px;
	}
}

@container inner (width <=860px) {
	.l-footer__logo {
		width: 100%;
		max-width: 500px;
		margin-bottom: 20px;
	}
}

.l-footer__logo:hover {
	opacity: 0.7;
}

.l-footer__logo > img {
	width: 100%;
}

.l-footer__logo > img.is-vertical {
	display: none;
}

@container inner (width <=860px) {
	.js-has-pseudo [csstools-has-1a-30-19-2u-33-33-38-2t-36-2n-2n-30-33-2v-33-1m-2w-2p-37-14-1a-2x-37-19-3a-2t-36-38-2x-2r-2p-30-15-w-1q-w-2x-31-2v-1m-32-33-38-14-1a-2x-37-19-3a-2t-36-38-2x-2r-2p-30-15]:not(.does-not-exist):not(.does-not-exist):not(does-not-exist) {
		display: none;
	}

	.l-footer__logo:has(.is-vertical) > img:not(.is-vertical) {
		display: none;
	}

	.js-has-pseudo [csstools-has-1a-30-19-2u-33-33-38-2t-36-2n-2n-30-33-2v-33-1m-2w-2p-37-14-1a-2x-37-19-3a-2t-36-38-2x-2r-2p-30-15-w-1q-w-2x-31-2v-1a-2x-37-19-3a-2t-36-38-2x-2r-2p-30]:not(.does-not-exist):not(.does-not-exist):not(does-not-exist) {
		display: block;
	}

	.l-footer__logo:has(.is-vertical) > img.is-vertical {
		display: block;
	}
}

.l-footer__top {
	grid-area: top;
}

.l-footer__middle {
	grid-area: middle;
}

.l-footer__bottom {
	grid-area: bottom;
}

.l-footer__address {
	color: var(--color-navy);
	font-size: var(--font-size-lg);
}

.l-footer__address__access {
	display: block;
}

.l-footer__tel {
	margin-top: 10px;
	font-size: 8.2rem;
	font-weight: bold;
	letter-spacing: 0.02em;
	color: var(--color-navy);
	line-height: 1;
	white-space: nowrap;
}

.l-footer__tel i {
	font-size: 6rem;
	margin-right: 5px;
}

@container inner (width <=860px) {
	.l-footer__tel {
		font-size: 4.8rem;
		text-align: center;
	}

	.l-footer__tel i {
		font-size: 3.6rem;
	}
}

.l-footer__banners ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.l-footer__banners img {
	width: 100%;
}

@container inner (width > 860px) {
	.l-footer__buttons > a {
		min-width: 12.5em;
	}
}

@container inner (width <=860px) {
	.l-footer__buttons {
		justify-content: center;
	}

	.l-footer__banners ul {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@container inner (width <=860px) {
	.l-footer__map {
		margin-top: 3em;
	}
}

.l-footer__map > iframe {
	width: 100%;
	height: 600px;
}

.l-footer__schedule {}

@container inner (width <=860px) {
	.l-footer__schedule {
		padding: 20px 10px;
		margin-inline: calc(var(--container-padding) / -2);
		background-color: rgba(var(--color-bg-rgb), 75%);
	}

	.l-footer__schedule .l-schedule {
		max-width: 720px;
		margin-inline: auto;
	}
}

.l-footer__sns {
	margin-top: 2.5em;
}

.l-footer__sns .l-sns {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	font-size: 30px;
}

@container inner (width <=860px) {
	.l-footer__sns .l-sns {
		justify-content: center;
	}
}

.l-footer__sns .l-sns__link {
	--size: 2em;
	box-sizing: content-box;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1/1;
	padding: 5px;
	text-align: center;
	border-radius: 50%;
	transition: color 0.2s;
}

.l-footer__sns .l-sns__link:hover {
	color: var(--color-primary);
}

.l-footer__sns .l-sns__text {
	display: none;
}

.l-footer__copyright {
	display: block;
	font-family: var(--font-english);
	font-weight: bold;
	color: var(--color-white);
	text-align: center;
	background: var(--color-navy);
	padding: 32px 20px;
}

@media (max-width: 1024px) {
	.l-footer__copyright {
		padding-bottom: calc(var(--side-button-size) + 40px);
	}
}

:root {
	--header-height: 90px;
}

.l-header {
	--header-bg-color: var(--color-white);
	--padding-x: 0px;
	--padding-y: 0px;
	position: sticky;
	top: 0;
	left: 0;
	z-index: var(--z-index-header);
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100px;
	padding: var(--padding-y) var(--padding-x);
	opacity: 0;
	transition: background 0.25s;
	container-type: inline-size;
}

.l-header.is-scrolled {
	background-color: rgba(var(--color-white-rgb), 0.9);
}

@media (min-width: 1025px) {
	.l-header {
		grid-template-areas: "lead address address toggle""logo tel tel toggle""nav nav nav toggle";
		grid-template-rows: auto auto auto;
		grid-template-columns: auto 1fr auto auto;
	}
}

@media (max-width: 1024px) {
	.l-header {
		--padding-y: 12px;
		grid-template-areas: "logo toggle";
		grid-template-rows: auto;
		grid-template-columns: 1fr auto;
	}
}

@media (max-width: 525px) {
	.l-header {
		--padding-x: 10px;
		--padding-y: 0;
		height: 60px;
	}
}

.l-header__logo {
	grid-area: logo;
	max-width: 395px;
	width: 100%;
	margin: 20px 30px 0 30px;
}

.l-header__logo__link {
	display: block;
	transition: opacity 0.3s;
}

.l-header__logo__link:hover {
	opacity: 0.65;
}

.l-header__logo__link > img {
	position: relative;
	display: block;
	width: 100%;
	max-width: 100%;
}

@media (max-width: 1024px) {
	.l-header__logo {
		margin: 0 20px;
	}
}

@media (max-width: 525px) {
	.l-header__logo {
		width: auto;
		margin: 0;
	}

	.l-header__logo img {
		width: 250px;
	}
}

.l-header__lead {
	font-size: var(--font-size-xs);
	position: absolute;
	left: 10px;
	top: 5px;
}

@media (max-width: 1024px) {
	.l-header__lead {
		display: none;
	}
}

.l-header__tel {
	grid-area: tel;
	margin-left: auto;
	font-size: 3.6rem;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	background: var(--color-gray);
	width: 332px;
	height: 100px;
	display: grid;
	place-content: center;
	place-items: center;
}

@media (max-width: 1024px) {
	.l-header__tel {
		display: none;
	}
}

.l-header__tel small {
	font-size: 1.5rem;
	display: block;
	margin-bottom: 10px;
}

.l-header__tel i {
	font-size: 3rem;
	margin-right: 5px;
}

.l-header__web {
	grid-area: web;
	color: #fff;
	font-size: 2.9rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.05em;
	text-align: center;
	background: #e8371e;
	width: 332px;
	height: 100px;
	display: grid;
	place-content: center;
	place-items: center;
}

@media (max-width: 1024px) {
	.l-header__web {
		display: none;
	}
}

.l-header__web small {
	font-size: 1.5rem;
	display: block;
	margin-bottom: 10px;
}

.l-header__web i {
	font-size: 2.4rem;
	margin-left: 20px;
}

.l-header__toggle {
	--toggle-size: 100px;
	--bar-width: 50%;
	--bar-height: 3px;
	--bar-gap: 13%;
	position: relative;
	grid-area: toggle;
	width: var(--toggle-size);
	height: var(--toggle-size);
	cursor: pointer;
	background: var(--color-navy);
}

@media (max-width: 525px) {
	.l-header__toggle {
		--toggle-size: 45px;
		--bar-height: 2px;
	}
}

.l-header__toggle > span {
	position: absolute;
	left: calc((100% - var(--bar-width)) / 2);
	display: block;
	width: var(--bar-width);
	height: var(--bar-height);
	background-color: var(--color-white);
	transition: all 0.4s var(--ease-out-quart);
}

.l-header__toggle > span:is(:not(.l-header.is-open *)):nth-child(1) {
	top: calc(50% - var(--bar-gap) - var(--bar-height) / 2);
}

.l-header__toggle > span:is(:not(.l-header.is-open *)):nth-child(3) {
	top: calc(50% + var(--bar-gap) + var(--bar-height) / 2);
}

.l-header__toggle > span:is(.l-header.is-open *):nth-child(1) {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.l-header__toggle > span:is(.l-header.is-open *):nth-child(2) {
	opacity: 0;
}

.l-header__toggle > span:is(.l-header.is-open *):nth-child(3) {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.l-header__toggle:before {
	color: var(--color-white);
	font-size: 1.5rem;
	letter-spacing: 0.075em;
	content: "menu";
	position: absolute;
	left: 30px;
	bottom: 5px;
}

@media (max-width: 525px) {
	.l-header__toggle:before {
		display: none;
	}
}

.l-header__menu {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: -1;
	height: 100vh;
	height: 100dvh;
	padding-top: var(--header-height);
	visibility: hidden;
	background-color: var(--header-bg-color);
	opacity: 0;
}

.l-header__menu .simplebar-content-wrapper {
	overscroll-behavior: contain;
}

.l-header__menu__scroller {
	container: grid/inline-size;
	height: 100%;
	padding-top: min(5cqw, 3em);
	padding-bottom: 3em;
}

.l-header__menu__grid {
	display: grid;
	grid-template-areas: "sub main";
	grid-template-columns: 1fr 1fr;
	width: 100%;
	max-width: 1820px;
	margin-inline: auto;
}

@container grid (width <=860px) {
	.l-header__menu__grid {
		grid-template-areas: "main""sub";
		grid-template-columns: 1fr;
		row-gap: 30px;
	}
}

.l-header__menu__block {
	container: block/inline-size;
}

.l-header__menu__block:nth-child(n+2) {
	border-left: 1px solid rgba(var(--color-text-rgb), 50%);
}

.l-header__menu__block--main {
	grid-area: main;
}

.l-header__menu__block--sub {
	grid-area: sub;
}

.l-header__menu__inner {
	padding-inline: 8cqw;
}

.l-header__menu .l-menu {
	display: grid;
}

.l-header__menu .l-menu__item {
	container: item/inline-size;
}

.l-header__menu .l-menu__link {
	position: relative;
	display: inline-block;
	padding-block: 0.75em;
	font-weight: bold;
	line-height: 1.3;
	transition: all 0.18s;
}

.l-header__menu .l-menu__link:hover {
	color: var(--color-navy);
}

.l-header__menu .l-menu__sub {
	--column-count: 3;
	display: grid;
	grid-template-columns: repeat(var(--column-count), 1fr);
	column-gap: 1em;
	padding-left: 0.5em;
	margin-bottom: 1em;
	font-size: var(--font-size-sm);
}

@container item (width <=580px) {
	.l-header__menu .l-menu__sub {
		--column-count: 2;
	}
}

.l-header__menu .l-menu__sub__link {
	--padding-y: 0.5em;
	position: relative;
	display: block;
	padding-block: var(--padding-y);
	padding-left: 1.3em;
	font-weight: bold;
}

.l-header__menu .l-menu__sub__link::before {
	position: absolute;
	top: var(--padding-y);
	left: 0;
	content: "・";
	opacity: 0.75;
}

.l-header__menu .l-menu__sub__text {
	position: relative;
	opacity: 0.75;
	transition: all 0.18s;
}

.l-header__menu .l-menu__sub__text:is(:hover > *) {
	color: var(--color-primary);
	opacity: 1;
}

.l-header__menu__address {
	display: flex;
	flex-wrap: wrap;
	column-gap: 0.5em;
	justify-content: center;
	text-align: center;
}

@container grid (width > 860px) {
	.l-header__menu__address__postal {
		width: 100%;
	}
}

.l-header__menu__tel {
	color: var(--color-navy);
	font-size: 4.8rem;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
}

.l-header__menu__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 1.5em;
	justify-content: center;
	margin-top: 1.75em;
}

@container grid (width > 860px) {
	.l-header__menu__buttons > a {
		min-width: 12.5em;
	}
}

.l-header__menu__schedule {
	max-width: 550px;
	margin-inline: auto;
	margin-top: 30px;
	font-size: var(--font-size-sm);
}

.l-header__menu__sns {
	margin-top: 2.5em;
}

.l-header__menu__sns .l-sns {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	justify-content: center;
	font-size: 30px;
}

.l-header__menu__sns .l-sns__link {
	--size: 2em;
	box-sizing: content-box;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1/1;
	padding: 5px;
	text-align: center;
	border-radius: 50%;
	transition: color 0.2s;
}

.l-header__menu__sns .l-sns__link:hover {
	color: var(--color-primary);
}

.l-header__menu__sns .l-sns__text {
	display: none;
}

.l-image-section {
	--direction: row;
	--align: flex-start;
	--image-width: 530px;
	--row-gap: 2em;
	--column-gap: 4cqw;
	--row-header-shift-top: -1em;
	--row-header-shift-left: calc((var(--column-gap) + 1em) * -1);
	--row-header-shift-right: calc((var(--column-gap) + 1em) / 2);
	--column-header-shift-top: calc((var(--row-gap) + 1em) * -1);
	--column-header-shift-left: max(calc(var(--container-padding) / -2), -1.5em);
	--column-header-shift-right: 1em;
	--header-shift-top: var(--row-header-shift-top);
	--header-shift-left: var(--row-header-shift-left);
	--header-shift-right: var(--row-header-shift-right);
	container-type: inline-size;
	container-name: image-section;
}

.l-image-section--reverse {
	--direction: row-reverse;
	--header-shift-left: var(--row-header-shift-right);
	--header-shift-right: var(--row-header-shift-left);
}

.l-image-section__inner {
	position: relative;
	display: flex;
	flex-direction: var(--direction);
	gap: var(--row-gap) var(--column-gap);
	align-items: flex-start;
}

.l-image-section__inner:where(:not(.l-image-section--md, .l-image-section--sm, .l-image-section--xs) > *) {
	--image-width: min(530px, 45%);
}

@container image-section (width <=850px) {
	.l-image-section__inner:where(:not(.l-image-section--md, .l-image-section--sm, .l-image-section--xs) > *) {
		--image-width: min(520px, 100%);
		--direction: column;
		--header-shift-top: var(--column-header-shift-top);
		--header-shift-left: var(--column-header-shift-left);
		--header-shift-right: var(--column-header-shift-right);
	}
}

.l-image-section__inner:where(.l-image-section--md > *) {
	--image-width: min(420px, 40%);
}

@container image-section (width <=750px) {
	.l-image-section__inner:where(.l-image-section--md > *) {
		--image-width: min(380px, 100%);
		--direction: column;
		--header-shift-top: var(--column-header-shift-top);
		--header-shift-left: var(--column-header-shift-left);
		--header-shift-right: var(--column-header-shift-right);
	}
}

.l-image-section__inner:where(.l-image-section--sm > *) {
	--image-width: min(320px, 35%);
}

@container image-section (width <=650px) {
	.l-image-section__inner:where(.l-image-section--sm > *) {
		--image-width: min(320px, 100%);
		--direction: column;
		--header-shift-top: var(--column-header-shift-top);
		--header-shift-left: var(--column-header-shift-left);
		--header-shift-right: var(--column-header-shift-right);
	}
}

@container image-section (width <=360px) {
	.l-image-section__inner:where(.l-image-section--sm > *) {
		--image-width: 100%;
	}
}

.l-image-section__inner:where(.l-image-section--xs > *) {
	--image-width: min(230px, 35%);
}

@container image-section (width <=550px) {
	.l-image-section__inner:where(.l-image-section--xs > *) {
		--image-width: min(280px, 100%);
		--direction: column;
		--header-shift-top: var(--column-header-shift-top);
		--header-shift-left: var(--column-header-shift-left);
		--header-shift-right: var(--column-header-shift-right);
	}
}

.l-image-section__main {
	position: relative;
	z-index: 1;
	flex: 1;
	order: 1;
	width: 100%;
}

.l-image-section__header {
	padding: 0.85em 1.5em 0.8em;
	margin: var(--header-shift-top) var(--header-shift-right) var(--header-gap-sm) var(--header-shift-left);
	background-color: var(--color-secondary);
}

.l-image-section__image {
	position: relative;
	z-index: 0;
	order: -1;
	width: 100%;
	max-width: var(--image-width);
	margin-inline: auto;
}

.l-image-section__image__main {
	display: block;
	width: 80%;
}

.l-image-section__image__sub {
	display: block;
	width: 55%;
	margin-top: -12%;
	margin-left: auto;
}

:root {
	--mv-width: 70%;
}

@media (max-width: 525px) {
	:root {
		--mv-width: 75%;
	}
}

.l-mv {
	--height: 500px;
	--font-size: 4.5rem;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

@media (max-width: 525px) {
	.l-mv {
		--font-size: 3rem;
	}
}

.l-mv__inner {
	container-type: inline-size;
	position: relative;
}

.l-mv__body {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	font-family: var(--font-heading);
	font-size: var(--font-size);
	font-weight: bold;
	line-height: 1.55;
	color: var(--color-heading);
	letter-spacing: 0.05em;
}

.l-mv__title {
	opacity: 0;
}

.l-mv__title__text {
	writing-mode: vertical-rl;
	text-orientation: upright;
}

.l-mv__visual {
	position: relative;
	z-index: 0;
	opacity: 0;
}

.l-mv__visual__inner {
	height: var(--height);
	margin-right: calc(50cqw - 50 * var(--vw));
	overflow: hidden;
	border-top-left-radius: var(--radius-lg);
	border-bottom-left-radius: var(--radius-lg);
}

.l-mv__visual__footer {
	margin-top: 2em;
}

.l-mv__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.l-nap__standard__list {
	--row-gap: 0;
}

.l-nap__standard__link {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	margin-top: 0.75em;
}

.l-nap__standard__icon {
	display: inline-block;
	margin-right: 0.25em;
}

.l-schedule {
	--padding-x: 0.5em;
	--padding-y: 1.4em;
	container-type: inline-size;
}

.l-schedule > table {
	width: 100%;
	border-bottom: 1px solid var(--color-gray);
}

@container (width < 500px) {
	.l-schedule > table {
		font-size: var(--font-size-sm);
	}
}

@container (width < 380px) {
	.l-schedule > table {
		font-size: var(--font-size-xs);
	}
}

.l-schedule > table th,
.l-schedule > table td {
	font-weight: normal;
	line-height: 1;
	text-align: center;
}

.l-schedule > table th:first-child,
.l-schedule > table td:first-child {
	width: 23%;
	white-space: nowrap;
}

.l-schedule > table th:not(:first-child),
.l-schedule > table td:not(:first-child) {
	padding-right: var(--padding-x);
	padding-left: var(--padding-x);
	text-align: center;
	color: var(--color-navy);
}

.l-schedule > table th:nth-child(n+2) {
	color: var(--color-text);
}

.l-schedule > table thead {
	background: var(--color-gray);
}

.l-schedule > table thead th:first-child {
	letter-spacing: 0.2em;
}

.l-schedule > table thead th {
	vertical-align: middle;
	padding: 10px 0;
}

.l-schedule > table tbody tr th,
.l-schedule > table tbody tr td {
	padding: 20px 0;
}

.l-schedule > table tbody tr:last-child th,
.l-schedule > table tbody tr:last-child td {
	padding: 0 0 20px;
}

.l-schedule__note {
	color: var(--color-navy);
	text-align: right;
	padding: 10px 30px 0 0;
}

@container (width < 500px) {
	.l-schedule__note {
		font-size: var(--font-size-sm);
	}
}

.l-side-sns {
	position: fixed;
	top: var(--header-height);
	bottom: 0;
	left: 0;
	z-index: 2;
	padding-bottom: calc(var(--side-button-size) + 20px);
	padding-left: calc((var(--container-padding-right) - var(--side-button-size)) / 2);
	font-size: 30px;
	opacity: 0;
}

@media (max-width: 1024px) {
	.l-side-sns {
		display: none;
	}
}

.l-side-sns .l-sns {
	display: flex;
	flex-direction: column;
	gap: 0.35em;
	align-items: center;
	justify-content: center;
	width: var(--side-button-size);
	height: 100%;
}

.l-side-sns .l-sns__link {
	display: block;
	transition: color 0.3s ease;
}

.l-side-sns .l-sns__link:hover {
	color: var(--color-primary);
}

.l-side-sns .l-sns__text {
	display: none;
}

:root {
	--side-button-size: 100px;
}

@media (max-width: 1024px) {
	:root {
		--side-button-size: 100px;
	}
}

@media (max-width: 768px) {
	:root {
		--side-button-size: 80px;
	}
}

@media (max-width: 525px) {
	:root {
		--side-button-size: 60px;
	}
}

.l-side {
	position: fixed;
	z-index: 2;
	opacity: 0;
}

@media (min-width: 1025px) {
	.l-side {
		right: 0;
		bottom: 0;
	}
}

@media (max-width: 1024px) {
	.l-side {
		--space-around: 10px;
		--row-gap: 10px;
		--column-gap: 0.75em;
		right: 0;
		bottom: 0;
		border-top: 1px solid var(--color-white);
	}
}

@media (max-width: 768px) {
	.l-side {
		right: auto;
		left: 0;
	}
}

@media (max-width: 525px) {
	.l-side {
		--space-around: 8px;
		--row-gap: 1em;
		--column-gap: 0.3em;
	}
}

.l-side__list {
	display: flex;
	font-size: var(--font-size-xs);
}

@media (min-width: 1025px) {
	.l-side__list {
		flex-direction: column;
		align-items: flex-end;
		justify-content: center;
		height: 345px;
	}
}

@media (max-width: 1024px) {
	.l-side__list {
		justify-content: flex-end;
	}
}

@media (max-width: 525px) {
	.js-has-pseudo [csstools-has-1a-30-19-37-2x-2s-2t-2n-2n-30-2x-37-38-1m-2w-2p-37-14-1a-30-19-37-2x-2s-2t-2n-2n-2x-38-2t-31-1m-32-38-2w-19-2r-2w-2x-30-2s-14-1h-15-15]:not(.does-not-exist):not(.does-not-exist) {
		justify-content: center;
	}

	.l-side__list:has(.l-side__item:nth-child(5)) {
		justify-content: center;
	}
}

.l-side__item {
	--button-bg-color: var(--color-bg);
	--button-text-color: var(--color-text);
	--button-border-color: rgba(var(--color-text-rgb), 20%);
	--button-hover-bg-color: var(--color-primary);
	--button-hover-text-color: var(--color-text-contrast);
	--button-hover-border-color: var(--color-primary);
	position: relative;
	width: var(--side-button-size);
	height: var(--side-button-size);
}

@media (min-width: 1025px) {
	.l-side__item:first-child {
		margin-top: auto;
	}

	.l-side__item:where(.l-side.is-contrast *) {
		--button-border-color: transparent;
	}
}

.l-side__item--tel {
	order: -1;
	width: calc(50vw - 40px);
	background: var(--color-navy);
}

@media (min-width: 769px) {
	.l-side__item--tel {
		display: none;
	}
}

@media (max-width: 525px) {
	.l-side__item--tel {
		width: calc(50vw - 30px);
	}
}

.l-side__item--web {
	display: none;
}

.l-side__item--schedule {
	flex-grow: 0;
	width: 100px;
}

@media (max-width: 1024px) {
	.l-side__item--schedule {
		width: 245px;
		border-left: 1px solid var(--color-white);
	}
}

@media (max-width: 768px) {
	.l-side__item--web {
		width: calc(50vw - 30px);
		background: var(--color-red);
		display: block;
	}	

	.l-side__item--schedule {
		width: calc(50vw - 40px);
		display: none;
	}
}

@media (max-width: 525px) {
	.l-side__item--schedule {
		width: calc(50vw - 30px);
	}
}

.l-side__item--top {
	--button-bg-color: var(--color-gray);
	--button-text-color: var(--color-text);
	--button-border-color: transparent;
}

@media (min-width: 1025px) {
	.l-side__item--top {
		margin-top: auto;
	}
}

.l-side__button {
	position: relative;
	z-index: 0;
	width: 100%;
	overflow: hidden;
	color: var(--color-white);
	background-color: var(--color-navy);
	transition: background 0.35s ease, color 0.15s ease, border 0.45s ease;
	container-type: inline-size;
}

.l-side__button.js-side-schedule-toggle {
	height: 245px;
}

@media (max-width: 1024px) {
	.l-side__button.js-side-schedule-toggle {
		width: 100%;
		height: 100px;
	}
}

@media (max-width: 768px) {
	.l-side__button.js-side-schedule-toggle {
		height: 80px;
	}
}

@media (max-width: 525px) {
	.l-side__button.js-side-schedule-toggle {
		height: 66px;
	}
}

.l-side__button.js-to-top {
	width: 100px;
	height: 100px;
	background: var(--color-gray);
}

.l-side__button.js-to-top .l-side__button__icon {
	color: var(--color-taupe);
	margin: 0;
}

@media (max-width: 768px) {
	.l-side__button.js-to-top {
		width: 80px;
		height: 80px;
	}
}

@media (max-width: 525px) {
	.l-side__button.js-to-top {
		width: 60px;
		height: 60px;
	}
}

.l-side__button__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 2.6rem;
	letter-spacing: 0.1em;
	line-height: 1;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.l-side__button.js-to-top .l-side__button__inner {
	-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

@media (max-width: 1024px) {
	.l-side__button__inner {
		position: relative;
		z-index: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		font-size: 2.6rem;
		letter-spacing: 0.1em;
		line-height: 1;
		-ms-writing-mode: horizontal-tb.;
		writing-mode: horizontal-tb;
	}
}

@media (max-width: 768px) {
	.l-side__button__inner {
		font-size: 1.6rem;
	}
}

.l-side__button__inner:is(.l-side__item--schedule.is-open *):nth-child(1) {
	display: none;
}

.l-side__button__inner:is(.l-side__item--schedule:not(.is-open) *):nth-child(2) {
	display: none;
}

.l-side__button__icon {
	margin-bottom: 10px;
}

.l-side__button__icon.icomoon-clock {
	order: 2;
	margin: 10px 0 0;
}

@media (max-width: 1024px) {
	.l-side__button__icon {
		margin: 0 5px 0 0;
	}

	.l-side__button__icon.icomoon-clock {
		order: 1;
		margin: 0 5px 0 0;
	}

	.l-side__button__icon.icomoon-arrow-right {
		order: 2;
		margin: 0 0 0 5px;
	}

	.l-side__button__text {
		order: 2;
	}

	.l-side__item--web .l-side__button__text {
		order: 1;
	}
}

.l-side__button__text {
	text-align: center;
}

@container (width <=86px) {
	.l-side__button__text {
		font-size: var(--font-size-xxs);
	}

	.l-side__button__text__extra {
		display: none;
	}
}

.l-side__schedule:is(.l-side__item--schedule.is-open > *) {
	--progress: 1;
	visibility: visible;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	opacity: 1;
}

.l-side__schedule:is(.l-side__item--schedule:not(.is-open) > *) {
	--progress: 0;
	visibility: hidden;
	opacity: 0;
}

@media (min-width: 1025px) {
	.l-side__schedule {
		position: absolute;
		top: 122px;
		right: 120px;
		transform: translateY(-50%) translateX(calc((1 - var(--progress)) * 10px));
	}
}

@media (max-width: 1024px) {
	.l-side__schedule {
		position: fixed;
		right: 0;
		bottom: calc(100% + var(--row-gap));
		width: 100%;
		max-width: 600px;
	}
}

.l-side__schedule__table {
	position: relative;
	padding: 1.5em 2em;
	font-size: var(--font-size-sm);
	color: var(--color-text);
	background-color: rgba(var(--color-bg-rgb), 85%);
	border: 1px solid rgba(var(--color-text-rgb), 15%);
}

@media (min-width: 1025px) {
	.l-side__schedule__table {
		min-width: 35em;

	}
}

@media (max-width: 1024px) {
	.l-side__schedule__table {
		width: calc(100% - 20px);
		right: 0;
		left: 10px;
	}
}

.l-side__schedule__table > .l-schedule {
	max-width: 740px;
	margin-inline: auto;
}
