/*
Theme Name: BlankSlate Child
Template: blankslate
Text Domain: blankslate-child
*/

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

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

body {
	margin: 0;
	color: #333333;
	font-family: "Noto Serif JP", serif;
	font-size: 1.5rem;
	line-height: 1.8;
	/* background: #f6f3ee; */
	background: #ffffff;
}

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

a {
	color: inherit;
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

button {
	font: inherit;
}

iframe {
	max-width: 100%;
}

:root {
	--color-text: #333333;
	--color-bg: #f6f3ee;
	--color-surface: #ffffff;
	--color-accent: #7b8f8e;
	--color-accent-deep: #4a6361;
	--color-border: rgba(51, 51, 51, 0.14);
	--color-muted: #6f6a63;
	--color-soft: #ece7df;
	--shadow-soft: 0 2rem 4rem rgba(51, 51, 51, 0.08);
	--wrapper-width: 110rem;
	--section-space: 8rem;
}

.screen-reader-text {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	width: 1px;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
}

.l-site {}

.l-main {
	display: block;
}

.l-wrapper {
	max-width: min(100%, var(--wrapper-width));
	margin-inline: auto;
	padding-inline: 1rem;
}

.l-wrapper--full {
	width: 100%;
	max-width: 100%;
	padding-inline: 0;
}

.l-section {
	padding-block: var(--section-space);
}

.c-section-heading {
	display: grid;
	gap: 0.8rem;
	margin-bottom: 3.2rem;
}

.c-section-heading__title {
	font-size: clamp(2.8rem, 2.6rem + 0.4vw, 3rem);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.08em;
}

.c-section-heading__subtitle {
	font-size: 1.3rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.c-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1.2rem 2.4rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.c-btn--primary {
	color: #ffffff;
	background: var(--color-accent-deep);
}

.c-btn--secondary {
	border-color: var(--color-accent-deep);
	color: var(--color-accent-deep);
	background: transparent;
}

.c-btn--more::after {
	content: "→";
	margin-left: 0.8rem;
}

.only-sp-fv {
	display: none;
}

.only-pc-fv {
	display: none;
}

@media screen and (max-width:525px) {
	.only-sp-fv {
		display: block;
	}

	.only-pc-fv {
		display: none;
	}
}

.l-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #ffffff;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.l-header__wrapper {
	width: min(100%, var(--wrapper-width));
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
	padding: 2rem 1rem 2.4rem;
}

.l-header__branding {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	flex-shrink: 0;
}

.l-header__corporation {
	font-size: 1.7rem;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #355daa;
}

.l-header__logo {
	font-size: clamp(2.4rem, 2rem + 1.3vw, 3.4rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.03em;
}

.l-header__logo a,
.l-header__logo .custom-logo-link {
	color: #355daa;
}

.l-header__nav-area {
	display: flex;
	align-items: center;
	margin-left: auto;
}

.l-header__menu {
	display: flex;
	align-items: center;
	gap: clamp(3.6rem, 1.8rem + 1.6vw, 6rem);
}

.l-header__menu .menu-item {
	position: relative;
	font-size: 1.5rem;
	line-height: 1.4;
}

.l-header__menu a {
	display: inline-flex;
	align-items: center;
	padding-block: 0.8rem;
	color: #4d5566;
}

.l-header__menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(1rem);
	min-width: 24rem;
	background: #ffffff;
	border: 1px solid #e1dcd3;
	border-radius: 0.8rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	padding: 1.2rem 0;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 100;
}

.l-header__menu .menu-item-has-children:hover .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.l-header__menu .sub-menu .menu-item {
	width: 100%;
}

.l-header__menu .sub-menu a {
	display: block;
	padding: 1rem 2.4rem;
	color: #47536a;
	font-size: 1.4rem;
	line-height: 1.4;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.l-header__menu .sub-menu a:hover {
	background-color: #f6f3ee;
	color: #2453aa;
}

.l-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 4.8rem;
	height: 4.8rem;
	min-width: 4.8rem;
	min-height: 4.8rem;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	background: var(--color-surface);
	color: var(--color-accent-deep);
	padding: 0;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	z-index: 1000;
	flex-shrink: 0;
}

.l-header__toggle-line,
.l-header__toggle-line::before,
.l-header__toggle-line::after {
	display: block;
	width: 2rem;
	height: 0.2rem;
	background: currentColor;
	border-radius: 999px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	content: "";
}

.l-header__toggle-line {
	position: relative;
}

.l-header__toggle-line::before {
	position: absolute;
	top: -0.6rem;
	left: 0;
}

.l-header__toggle-line::after {
	position: absolute;
	top: 0.6rem;
	left: 0;
}

.l-header.is-menu-open .l-header__toggle-line {
	background: transparent;
}

.l-header.is-menu-open .l-header__toggle-line::before {
	top: 0;
	transform: rotate(45deg);
}

.l-header.is-menu-open .l-header__toggle-line::after {
	top: 0;
	transform: rotate(-45deg);
}

.l-fv {
	position: relative;
	overflow: hidden;
	height: calc(100vh - 3.2rem);
	max-height: 81rem;
	background: #ffffff;
}

.l-fv__media,
.l-fv__overlay,
.l-fv__image {
	position: absolute;
	inset: 0;
}

.l-fv__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: -10% center;
	left: 5%;
}

.l-fv__overlay {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 33%, rgba(255, 255, 255, 0.56) 52%, rgba(255, 255, 255, 0.22) 72%, rgba(255, 255, 255, 0.08) 100%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.18) 100%);
	z-index: 1;
}

.l-fv__content {
	position: relative;
	z-index: 2;
	height: 100%;
}

.l-fv__inner {
	width: min(100%, var(--wrapper-width));
	margin-inline: auto;
	padding: 1.6rem 1rem 1.2rem;
	display: grid;
	grid-template-columns: minmax(0, 62rem) minmax(0, 1fr);
	grid-template-rows: auto auto 1fr;
	gap: 1.2rem;
	height: 100%;
	align-content: start;
}

.l-fv__lead {
	display: grid;
	gap: 1.6rem;
}

.l-fv__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 0.6rem 1.8rem;
	border-radius: 999px;
	background: #ffe548;
	color: #2453aa;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
}

.l-fv__heading {
	max-width: 12.5em;
	color: #2f57a5;
	font-size: clamp(3.5rem, 2.9rem + 0.7vw, 5rem);
	font-weight: 400;
	line-height: 1.38;
	letter-spacing: 0.04em;
}

.l-fv__heading-line {
	display: block;
	white-space: nowrap;
}

.l-fv__description {
	max-width: 52rem;
	font-size: 1.5rem;
	line-height: 1.85;
	color: #4f596a;
}

.l-fv__cards {
	grid-column: 1 / 2;
	display: grid;
	gap: 1rem;
	max-width: 64rem;
	align-content: start;
}

.l-fv__card {
	padding: 1.5rem 1.8rem 1.6rem;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(65, 96, 159, 0.08);
	border-radius: 1.4rem;
	box-shadow: 0 0.5rem 1.4rem rgba(50, 66, 102, 0.1);
}

.l-fv__card-title {
	margin-bottom: 1rem;
	color: #2453aa;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
}

.l-fv__card-title--icon::before {
	content: "◎";
	margin-right: 0.8rem;
	font-size: 1.6rem;
	vertical-align: middle;
}

.l-fv__table-wrap {
	overflow-x: auto;
}

.l-fv__table {
	width: 100%;
	border-collapse: collapse;
	color: #4f596a;
	font-size: 1.2rem;
	background: #ffffff;
}

.l-fv__table thead th {
	padding: 0.9rem 0.8rem;
	font-size: 1.3rem;
	font-weight: 700;
	color: #2e56a6;
	background: #f2f2f2;
}

.l-fv__table thead th:first-child,
.l-fv__table tbody th {
	text-align: left;
	padding-left: 1.2rem;
}

.l-fv__table tbody th,
.l-fv__table tbody td {
	padding: 1rem 0.8rem;
	border-bottom: 1px solid #e3e3e3;
	text-align: center;
}

.l-fv__table tbody th {
	font-size: 1.3rem;
	font-weight: 400;
}

.l-fv__table tbody tr:last-child th,
.l-fv__table tbody tr:last-child td {
	border-bottom: 0;
}

.l-fv__table td {
	font-size: 1.8rem;
	line-height: 1;
}

.l-fv__table td.is-open {
	color: #6f6f6f;
}

.l-fv__table td.is-closed {
	color: #ff6b6b;
}

.l-fv__access-list {
	display: grid;
	gap: 0.4rem;
	margin-bottom: 1.2rem;
	color: #606975;
	font-size: 1.35rem;
	line-height: 1.55;
}

.l-fv__access-list li {
	position: relative;
	padding-left: 1.2em;
}

.l-fv__access-list li::before {
	content: "・";
	position: absolute;
	left: 0;
}

.l-fv__access-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	border-radius: 1rem;
	background: #418fdc;
	color: #ffffff;
	font-size: 1.45rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.l-fv__access-button::before {
	content: "◎";
	margin-right: 0.8rem;
	font-size: 1.5rem;
}

.l-flow {
	padding-block: 8rem;
	background: #ffffff;
}

.l-flow__heading {
	display: grid;
	justify-items: center;
	gap: 1.2rem;
	margin-bottom: 5.6rem;
	text-align: center;
}

.l-flow__title {
	color: #2453aa;
	font-size: 3.2rem;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0.08em;
}

.l-flow__subtitle {
	color: #6f7888;
	font-size: 1rem;
	letter-spacing: 0.24em;
}

.l-flow__line {
	display: block;
	width: 5.4rem;
	height: 0.2rem;
	margin-top: 1.2rem;
	background: #c8a86d;
}

.l-flow__steps {
	display: grid;
	gap: 2rem;
	width: min(100%, 82rem);
	margin-inline: auto;
}

.l-flow__step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2rem;
	padding: 2.8rem 3rem;
	border-left: 0.4rem solid #1297df;
	border-radius: 0.8rem;
	background: #ffffff;
	box-shadow: 0 0.6rem 1.8rem rgba(40, 51, 79, 0.1);
}

.l-flow__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 5.6rem;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: #1297df;
	color: #ffffff;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
}

.l-flow__body {
	color: #47536a;
	font-size: 1.3rem;
	line-height: 1.9;
}

.l-flow__body p+p {
	margin-top: 0.4rem;
}

.l-flow__step-title {
	margin-bottom: 2rem;
	color: #1297df;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.4;
}

.l-flow__tel {
	color: #2453aa;
	font-weight: 700;
}

.l-flow__notice {
	width: min(100%, 82rem);
	margin: 3rem auto 0;
	padding: 1.4rem 2rem;
	border: 0.2rem solid #ff9400;
	border-radius: 0.8rem;
	background: #fff5df;
	color: #e96500;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}

.l-flow__actions {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 3.2rem;
}

.l-flow__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1.4rem 3.2rem;
	border-radius: 999px;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
}

.l-flow__button--primary {
	background: #ff9400;
	color: #ffffff;
}

.l-flow__button--primary::before {
	content: "☎";
	margin-right: 0.8rem;
}

.l-flow__button--secondary {
	border: 0.2rem solid #1297df;
	background: #ffffff;
	color: #1297df;
}

.l-access-hours {
	padding-block: 9rem;
	background: #ffffff;
}

.l-access-hours__heading {
	display: grid;
	justify-items: center;
	gap: 1.2rem;
	margin-bottom: 7.2rem;
	text-align: center;
}

.l-access-hours__title {
	color: #004996;
	font-size: 4.2rem;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.08em;
}

.l-access-hours__subtitle {
	color: #6f7888;
	font-size: 1.4rem;
	letter-spacing: 0.24em;
}

.l-access-hours__line {
	display: block;
	width: 7rem;
	height: 0.2rem;
	margin-top: 1.8rem;
	background: #c8a86d;
}

.l-access-hours__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 5.6rem;
	width: min(100%, 118rem);
	margin-inline: auto;
}

.l-access-hours__access,
.l-access-hours__hours {
	min-width: 0;
}

.l-access-hours__section-title {
	margin-bottom: 2.4rem;
	color: #004996;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.5;
}

.l-access-hours__postal,
.l-access-hours__address,
.l-access-hours__lead {
	color: #424b5f;
	font-size: 1.6rem;
	line-height: 1.9;
}

.l-access-hours__postal {
	margin-bottom: 0.8rem;
}

.l-access-hours__address {
	margin-bottom: 2.4rem;
}

.l-access-hours__lead {
	margin-bottom: 2.4rem;
}

.l-access-hours__map {
	overflow: hidden;
	margin-bottom: 2.4rem;
	border-radius: 1rem;
	box-shadow: 0 1rem 2.4rem rgba(40, 51, 79, 0.12);
}

.l-access-hours__map iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	border: 0;
}

.l-access-hours__route-list {
	display: grid;
	gap: 0.4rem;
	color: #424b5f;
	font-size: 1.5rem;
	line-height: 1.7;
}

.l-access-hours__route-list li {
	position: relative;
	padding-left: 1.2em;
}

.l-access-hours__route-list li::before {
	content: "・";
	position: absolute;
	left: 0;
}

.l-access-hours__table-wrap {
	overflow-x: auto;
	width: 100%;
	max-width: 100%;
	margin-bottom: 4.4rem;
	-webkit-overflow-scrolling: touch;
}

.l-access-hours__table {
	width: 100%;
	/* min-width: 58rem; */
	border-collapse: collapse;
	color: #004996;
	font-size: 1.6rem;
	line-height: 1.4;
	text-align: center;
}

.l-access-hours__table th,
.l-access-hours__table td {
	padding: 1.5rem 1.2rem;
	border-bottom: 0.1rem solid #dfe3e8;
	font-weight: 700;
}

.l-access-hours__table thead th {
	border-bottom: 0;
	background: #004996;
	color: #ffffff;
}

.l-access-hours__table tbody th {
	text-align: left;
	white-space: nowrap;
}

.l-access-hours__table .is-open {
	color: #1d1d1d;
	font-size: 2.2rem;
	line-height: 1;
}

.l-access-hours__table .is-closed {
	color: #ff2937;
	font-size: 1.8rem;
}

.l-access-hours__notice {
	margin-bottom: 3.2rem;
	padding: 1.6rem 2rem;
	border: 0.1rem solid #ff9400;
	border-radius: 0.8rem;
	background: #fff4df;
	color: #e96500;
	font-size: 1.5rem;
	line-height: 1.6;
	text-align: center;
}

.l-access-hours__phone-card {
	display: grid;
	justify-items: center;
	gap: 1.2rem;
	padding: 3.4rem 2rem;
	border: 0.3rem solid #004996;
	border-radius: 1rem;
	color: #004996;
	text-align: center;
}

.l-access-hours__phone-icon {
	font-size: 3.2rem;
	line-height: 1;
}

.l-access-hours__phone-number {
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
}

.l-access-hours__phone-note {
	color: #424b5f;
	font-size: 1.4rem;
	line-height: 1.6;
}

.l-footer {
	padding-block: 3.8rem;
	background: #004996;
	color: #ffffff;
	text-align: center;
}

.l-footer__inner {
	width: min(100% - 4rem, 96rem);
	margin-inline: auto;
}

.l-footer__name {
	margin-bottom: 2rem;
	font-size: 2.2rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.08em;
}

.l-footer__address,
.l-footer__tel,
.l-footer__copy {
	font-size: 1.4rem;
	line-height: 1.7;
}

.l-footer__address {
	margin-bottom: 1rem;
	font-style: normal;
}

.l-footer__tel {
	margin-bottom: 2rem;
}

.l-footer__tel a {
	color: inherit;
}

.l-footer__copy {
	color: rgba(255, 255, 255, 0.72);
}

.l-facility {
	padding-block: 9rem 8rem;
	background: #ffffff;
}

.l-facility__heading {
	display: grid;
	justify-items: center;
	gap: 1.2rem;
	margin-bottom: 7.2rem;
	text-align: center;
}

.l-facility__title {
	color: #2453aa;
	font-size: 4.8rem;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0.08em;
}

.l-facility__subtitle {
	color: #6f7888;
	font-size: 1.3rem;
	letter-spacing: 0.24em;
}

.l-facility__line {
	display: block;
	width: 8.2rem;
	height: 0.2rem;
	margin-top: 1.8rem;
	background: #c8a86d;
}

.l-facility__slider {
	position: relative;
	width: min(100%, 104rem);
	margin-inline: auto;
}

.l-facility__viewport {
	position: relative;
	overflow: hidden;
	border-radius: 0.8rem;
	box-shadow: 0 1.2rem 2.8rem rgba(40, 51, 79, 0.12);
}

.l-facility__slide {
	position: relative;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.7s ease, visibility 0.7s ease;
}

.l-facility__slide.is-active {
	opacity: 1;
	visibility: visible;
}

.l-facility__slide:not(:first-child) {
	position: absolute;
	inset: 0;
}

.l-facility__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.l-facility__caption {
	position: absolute;
	left: 3rem;
	bottom: 2.4rem;
	z-index: 1;
	color: #ffffff;
	font-size: 2rem;
	line-height: 1.5;
	text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.28);
}

.l-facility__viewport::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 28%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 100%);
	pointer-events: none;
}

.l-facility__arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 5.6rem;
	aspect-ratio: 1 / 1;
	border: 0;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 0.6rem 1.6rem rgba(40, 51, 79, 0.16);
	color: #2453aa;
	font-size: 4rem;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
}

.l-facility__arrow--prev {
	left: 2.4rem;
}

.l-facility__arrow--next {
	right: 2.4rem;
}

.l-facility__dots {
	display: flex;
	justify-content: center;
	gap: 0.8rem;
	margin-top: 2rem;
}

.l-facility__dot {
	width: 1.2rem;
	aspect-ratio: 1 / 1;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #d5dde5;
	cursor: pointer;
}

.l-facility__dot.is-active {
	background: #3f95df;
}

.l-facility__actions {
	display: flex;
	justify-content: center;
	margin-top: 4.8rem;
}

.l-facility__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1.7rem 4.4rem;
	border: 0.3rem solid #3f95df;
	border-radius: 999px;
	background: #ffffff;
	color: #3f95df;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
}

.l-doctor {
	padding-block: 9rem;
	background: #fafaf8;
}

.l-doctor__heading {
	display: grid;
	justify-items: center;
	gap: 1.2rem;
	margin-bottom: 7.6rem;
	text-align: center;
}

.l-doctor__title {
	color: #2453aa;
	font-size: 4.8rem;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0.08em;
}

.l-doctor__subtitle {
	color: #6f7888;
	font-size: 1.3rem;
	letter-spacing: 0.24em;
}

.l-doctor__line {
	display: block;
	width: 8.2rem;
	height: 0.2rem;
	margin-top: 1.8rem;
	background: #c8a86d;
}

.l-doctor__card {
	width: min(100%, 104rem);
	margin-inline: auto;
	padding: 5.6rem 6.4rem;
	border-radius: 0.8rem;
	background: #ffffff;
	box-shadow: 0 0.8rem 2rem rgba(40, 51, 79, 0.12);
}

.l-doctor__profile {
	display: grid;
	grid-template-columns: 22rem 1fr;
	gap: 4.8rem;
	align-items: center;
	margin-bottom: 5.2rem;
}

.l-doctor__photo-wrap {
	overflow: hidden;
	width: 18rem;
	aspect-ratio: 1 / 1;
	border: 0.6rem solid #c8b27c;
	border-radius: 50%;
}

.l-doctor__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.l-doctor__position {
	margin-bottom: 1.6rem;
	color: #6f7888;
	font-size: 1.5rem;
	font-weight: 700;
}

.l-doctor__name {
	margin-bottom: 2.2rem;
	color: #2453aa;
	font-size: 3.2rem;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.08em;
}

.l-doctor__message {
	color: #47536a;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.8;
}

.l-doctor__details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 4rem;
}

.l-doctor__detail-title {
	padding-bottom: 1.4rem;
	margin-bottom: 2rem;
	border-bottom: 0.2rem solid #c8b27c;
	color: #2453aa;
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 1.4;
}

.l-doctor__list {
	display: grid;
	gap: 1.2rem;
	color: #47536a;
	font-size: 1.5rem;
	line-height: 1.7;
}

.l-features {
	padding-block: 9rem 8rem;
	background: #ffffff;
}

.l-features__heading {
	display: grid;
	justify-items: center;
	gap: 1.2rem;
	margin-bottom: 7.2rem;
	text-align: center;
}

.l-features__title {
	color: #2453aa;
	font-size: 4.8rem;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0.08em;
}

.l-features__subtitle {
	color: #6f7888;
	font-size: 1.3rem;
	letter-spacing: 0.24em;
}

.l-features__line {
	display: block;
	width: 8.2rem;
	height: 0.2rem;
	margin-top: 1.8rem;
	background: #c8a86d;
}

.l-features__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 4rem;
}

.l-features__card {
	overflow: hidden;
	border-radius: 0.8rem;
	background: #ffffff;
	box-shadow: 0 0.8rem 2rem rgba(40, 51, 79, 0.12);
}

.l-features__image {
	width: 100%;
	aspect-ratio: 16 / 7;
	object-fit: cover;
}

.l-features__body {
	padding: 3.2rem 3.6rem 3.6rem;
}

.l-features__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1.4rem;
	margin-bottom: 2.4rem;
	border-radius: 0.4rem;
	background: #c8b27c;
	color: #ffffff;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.3;
}

.l-features__card-title {
	margin-bottom: 2rem;
	color: #2453aa;
	font-size: 2.4rem;
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: 0.04em;
}

.l-features__text {
	color: #5a6576;
	font-size: 1.5rem;
	line-height: 1.9;
}

.l-features__actions {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 6rem;
}

.l-features__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24rem;
	padding: 1.6rem 3.6rem;
	border: 0.3rem solid currentColor;
	border-radius: 999px;
	background: #ffffff;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.4;
}

.l-features__button--blue {
	color: #3f95df;
}

.l-features__button--pink {
	color: #df3f7a;
}

.l-checkup {
	padding-block: 8rem;
	background: #eef8fc;
}

.l-checkup__heading {
	display: grid;
	justify-items: center;
	gap: 2.2rem;
	margin-bottom: 5.6rem;
	text-align: center;
}

.l-checkup__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 2.4rem;
	border-radius: 999px;
	background: #ffe548;
	color: #2453aa;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.4;
}

.l-checkup__title {
	color: #2453aa;
	font-size: 3.2rem;
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: 0.04em;
}

.l-checkup__description {
	color: #47536a;
	font-size: 1.5rem;
	line-height: 2;
}

.l-checkup__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 3rem;
	width: min(100%, 96rem);
	margin-inline: auto;
}

.l-checkup__card {
	display: grid;
	justify-items: center;
	gap: 1.6rem;
	padding: 3.2rem 2.4rem;
	border-radius: 0.8rem;
	background: #ffffff;
	box-shadow: 0 0.8rem 1.8rem rgba(40, 51, 79, 0.12);
	text-align: center;
}

.l-checkup__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 5.8rem;
	height: 5.8rem;
	border-radius: 50%;
	background: #3f95df;
	color: #ffffff;
	font-size: 3rem;
	line-height: 1;
}

.l-checkup__card-title {
	color: #2453aa;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
}

.l-checkup__card-text {
	color: #5a6576;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.7;
}

.l-checkup__actions {
	display: flex;
	justify-content: center;
	margin-top: 4.8rem;
}

.l-checkup__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
	padding: 1.8rem 4.4rem;
	border-radius: 999px;
	background: #3f95df;
	color: #ffffff;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
}

.l-checkup__button::after {
	content: "›";
	font-size: 3rem;
	line-height: 1;
}

.l-cta {
	padding-top: 8rem;
}

.l-cta__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 7rem;
	align-items: center;
}

.l-cta__content {
	color: #47536a;
}

.l-cta__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.6rem 2rem;
	margin-bottom: 2rem;
	border-radius: 999px;
	background: #c8b27c;
	color: #ffffff;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.3;
}

.l-cta__title {
	margin-bottom: 2rem;
	color: #2453aa;
	font-size: clamp(2.4rem, 2.1rem + 0.8vw, 3.2rem);
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: 0.06em;
}

.l-cta__description {
	margin-bottom: 2rem;
	font-size: 1.5rem;
	line-height: 2;
}

.l-cta__list {
	display: grid;
	gap: 0.6rem;
	margin-bottom: 2rem;
}

.l-cta__list li {
	position: relative;
	padding-left: 2.8rem;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.7;
}

.l-cta__list li::before {
	content: "";
	position: absolute;
	top: 0.7rem;
	left: 0;
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background: #c8b27c;
}

.l-cta__actions {
	display: flex;
	gap: 1.6rem;
}

.l-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	min-width: 0;
	padding: 1.2rem 2.8rem;
	border-radius: 0.8rem;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
}

.l-cta__button--primary {
	background: #2453aa;
	color: #ffffff;
}

.l-cta__button--primary::before {
	content: "☎";
	margin-right: 1.2rem;
	font-size: 2rem;
	line-height: 1;
}

.l-cta__button--secondary {
	border: 0.3rem solid #56a7f3;
	background: #ffffff;
	color: #56a7f3;
}

.l-cta__image-wrap {
	overflow: hidden;
	border-radius: 1.8rem;
	box-shadow: 0 1.2rem 2.6rem rgba(40, 51, 79, 0.1);
}

.l-cta__image {
	width: 100%;
	height: auto;
}

.l-symptoms {
	padding-top: 5.6rem;
	padding-bottom: 0;
}

.l-symptoms__panel {
	position: relative;
	overflow: hidden;
	padding: 8rem 3rem 6.4rem;
	border-radius: 0;
}

.l-symptoms__media,
.l-symptoms__overlay {
	position: absolute;
	inset: 0;
}

.l-symptoms__bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.l-symptoms__overlay {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.84) 34%, rgba(255, 255, 255, 0.88) 100%),
		linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.18) 100%);
}

.l-symptoms__inner {
	position: relative;
	z-index: 1;
	width: min(100%, 136rem);
	margin-inline: auto;
}

.l-symptoms__heading {
	display: grid;
	justify-items: center;
	gap: 1.4rem;
	margin-bottom: 8.4rem;
	text-align: center;
}

.l-symptoms__title {
	color: #2453aa;
	font-size: clamp(5rem, 4.2rem + 1vw, 6.2rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.08em;
}

.l-symptoms__subtitle {
	color: #6f7888;
	font-size: 1.3rem;
	letter-spacing: 0.24em;
}

.l-symptoms__line {
	display: block;
	width: 7.8rem;
	height: 0.2rem;
	margin-top: 1.6rem;
	background: #c8a86d;
}

.l-symptoms__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2.6rem 2rem;
}

.l-symptoms__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	border: 1px solid rgba(36, 83, 170, 0.12);
	border-radius: 1.6rem;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 0.8rem 2rem rgba(43, 56, 86, 0.08);
	color: #2453aa;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

.l-symptoms__notice {
	margin-top: 5.6rem;
	color: #d6584a;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.8;
	text-align: center;
}

.l-greeting {
	padding-top: 3rem;
}

.l-greeting__heading {
	display: grid;
	justify-items: center;
	gap: 1.2rem;
	margin-bottom: 9.6rem;
	text-align: center;
}

.l-greeting__title {
	color: #2453aa;
	font-size: clamp(5.2rem, 4.6rem + 0.8vw, 6.4rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.08em;
}

.l-greeting__subtitle {
	color: #6f7888;
	font-size: 1.3rem;
	letter-spacing: 0.24em;
}

.l-greeting__line {
	display: block;
	width: 8.2rem;
	height: 0.2rem;
	margin-top: 1.8rem;
	background: #c8a86d;
}

.l-greeting__rows {
	display: grid;
	gap: 6.8rem;
}

.l-greeting__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 6rem;
	align-items: center;
}

.l-greeting__row--reverse {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.l-greeting__text {
	color: #47536a;
}

.l-greeting__text p {
	font-size: 1.5rem;
	line-height: 2;
}

.l-greeting__text p+p {
	margin-top: 0.6rem;
}

.l-greeting__lead {
	margin-bottom: 3rem;
	color: #2453aa;
	font-size: clamp(4rem, 3.3rem + 0.6vw, 4.8rem);
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.08em;
}

.l-greeting__image-wrap {
	overflow: hidden;
	border-radius: 1.8rem;
	box-shadow: 0 1.2rem 2.6rem rgba(40, 51, 79, 0.1);
}

.l-greeting__image {
	width: 100%;
	height: auto;
}

.l-feature-links {
	padding-top: 2.4rem;
}

.l-feature-links__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 4.4rem;
}

.l-feature-links__card {
	position: relative;
	overflow: hidden;
	border-radius: 2rem;
	box-shadow: 0 1.6rem 3rem rgba(40, 51, 79, 0.12);
}

.l-feature-links__media,
.l-feature-links__overlay {
	position: absolute;
	inset: 0;
}

.l-feature-links__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.l-feature-links__overlay {
	background: linear-gradient(180deg, rgba(37, 43, 57, 0.08) 0%, rgba(37, 43, 57, 0.26) 38%, rgba(37, 43, 57, 0.66) 100%);
}

.l-feature-links__overlay--pink {
	background: linear-gradient(180deg, rgba(99, 76, 111, 0.08) 0%, rgba(123, 74, 109, 0.26) 38%, rgba(136, 67, 98, 0.62) 100%);
}

.l-feature-links__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 3rem 5.2rem;
	color: #ffffff;
}

.l-feature-links__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 8.3rem;
	padding: 0.5rem 2rem;
	border-radius: 999px;
	background: #ffe548;
	color: #2453aa;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 2rem;
}

.l-feature-links__title {
	margin-bottom: 2.4rem;
	font-size: clamp(2.4rem, 2.1rem + 0.8vw, 3.2rem);
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.04em;
}

.l-feature-links__description {
	max-width: 60rem;
	margin-bottom: 3.2rem;
	font-size: 1.5rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.94);
}

.l-feature-links__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	border: 0.3rem solid rgba(255, 255, 255, 0.92);
	border-radius: 999px;
	color: #ffffff;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.l-feature-links__button::after {
	content: "›";
	margin-left: 1.6rem;
	font-size: 3rem;
	line-height: 1;
}

@media (max-width: 1024px) {
	:root {
		--section-space: 5.6rem;
	}

	.l-header__toggle {
		display: inline-flex !important;
	}

	.l-header__nav-area {
		position: fixed;
		inset: 8rem 0 0 0;
		display: flex;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		z-index: 1000;
		flex-direction: column;
		align-items: stretch;
		padding: 2.4rem 2rem 12rem;
		background: rgba(246, 243, 238, 0.98);
		overflow-y: auto;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.l-header.is-menu-open .l-header__nav-area {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.l-header__menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}

	.l-header__menu .menu-item {
		width: 100%;
		border-bottom: 1px solid var(--color-border);
	}

	.l-header__menu a {
		width: 100%;
		padding-block: 1.4rem;
	}

	.l-header__menu .sub-menu {
		position: static;
		transform: none;
		visibility: visible;
		opacity: 1;
		box-shadow: none;
		border: none;
		background: transparent;
		padding: 0 0 1.2rem 2rem;
		min-width: auto;
		margin-top: -0.8rem;
	}

	.l-header__menu .sub-menu .menu-item {
		border-bottom: none;
	}

	.l-header__menu .sub-menu a {
		padding-block: 0.8rem;
		font-size: 1.4rem;
		color: #6f7888;
	}

	.l-fv {
		height: auto;
		max-height: none;
		display: grid;
		grid-template-columns: 1fr;
	}

	.l-fv__media,
	.l-fv__overlay {
		position: relative;
		inset: auto;
		grid-area: 1 / 1;
		height: calc(100svh - 40rem);
		min-height: 40rem;
	}

	.l-fv__overlay {
		background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
	}

	.l-fv__heading,
	.l-fv__description {
		color: #ffffff;
		text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
	}

	.l-fv__image {
		object-position: 64% center;
	}

	.l-fv__content,
	.l-fv__inner {
		display: contents;
	}

	.l-fv__lead {
		grid-area: 1 / 1;
		position: relative;
		z-index: 2;
		width: min(100%, var(--wrapper-width));
		margin-inline: auto;
		padding: 2.4rem 1rem;
		align-self: center;
	}

	.l-fv__cards {
		grid-area: 2 / 1;
		position: relative;
		z-index: 2;
		width: min(100%, var(--wrapper-width));
		margin-inline: auto;
		padding: 4rem 1rem 2rem;
	}

	.l-cta {
		padding-top: 6rem;
	}

	.l-cta__grid {
		grid-template-columns: 1fr;
		gap: 3.2rem;
	}

	.l-checkup__cards {
		grid-template-columns: 1fr;
		width: min(100%, 44rem);
	}

	.l-features__grid {
		grid-template-columns: 1fr;
	}

	.l-doctor__profile {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.l-doctor__details {
		grid-template-columns: 1fr;
	}

	.l-facility__slider {
		width: min(100%, 86rem);
	}

	.l-flow__steps,
	.l-flow__notice {
		width: min(100%, 76rem);
	}

	.l-access-hours__grid {
		grid-template-columns: 1fr;
		gap: 4.8rem;
		width: min(100%, 76rem);
	}

	.l-symptoms__panel {
		padding: 6rem 2rem 5rem;
	}

	.l-symptoms__heading {
		margin-bottom: 5.2rem;
	}

	.l-symptoms__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.l-greeting {
		padding-top: 6.4rem;
	}

	.l-greeting__heading {
		margin-bottom: 5.6rem;
	}

	.l-greeting__rows {
		gap: 4rem;
	}

	.l-greeting__row,
	.l-greeting__row--reverse {
		grid-template-columns: 1fr;
		gap: 2.4rem;
	}

	.l-greeting__row--reverse .l-greeting__image-wrap {
		order: 2;
	}

	.l-greeting__row--reverse .l-greeting__text {
		order: 1;
	}

	.l-feature-links__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	:root {
		--section-space: 4rem;
	}

	body {
		font-size: 1.5rem;
	}

	.l-header__wrapper {
		padding: 1.4rem 1rem 1.8rem;
	}

	.l-header__corporation {
		font-size: 1.2rem;
	}

	.l-header__logo {
		font-size: 2.4rem;
	}

	.l-fv__heading {
		font-size: clamp(3rem, 2.2rem + 2vw, 4.2rem);
		line-height: 1.5;
	}

	.l-fv__inner {
		padding: 2rem 1rem 3rem;
		gap: 2rem;
	}

	.l-fv__image {
		object-position: 68% center;
	}

	.l-fv__lead {
		gap: 2.2rem;
	}

	.l-fv__badge {
		padding-inline: 1.8rem;
		font-size: 1.5rem;
	}

	.l-fv__description {
		font-size: 1.7rem;
		line-height: 1.8;
	}

	.l-fv__card {
		padding: 1.8rem;
		border-radius: 1.6rem;
	}

	.l-fv__card-title {
		margin-bottom: 1.4rem;
		font-size: 1.8rem;
	}

	.l-fv__table {
		/* min-width: 64rem; */
	}

	.l-fv__table thead th {
		font-size: 1.2rem;
	}

	.l-fv__table tbody th,
	.l-fv__table tbody td {
		padding: 1.4rem 0.8rem;
	}

	.l-fv__table tbody th {
		font-size: 1.2rem;
	}

	.l-fv__table td {
		font-size: 2rem;
	}

	.l-fv__access-list {
		font-size: 1.5rem;
	}

	.l-fv__access-button {
		font-size: 1.6rem;
	}

	.l-cta {
		padding-top: 4.8rem;
	}

	.l-cta__tag {
		margin-bottom: 1.4rem;
		font-size: 1.4rem;
	}

	.l-cta__title {
		margin-bottom: 2.4rem;
		font-size: clamp(2.4rem, 2.1rem + 0.8vw, 3.2rem);
		line-height: 1.5;
	}

	.l-cta__description {
		margin-bottom: 2.4rem;
		line-height: 1.8;
	}

	.l-cta__list {
		gap: 1.4rem;
		margin-bottom: 2.8rem;
	}

	.l-cta__actions {
		flex-direction: column;
	}

	.l-cta__button {
		flex: 1 1 0;
		font-size: 1.5rem;
	}

	.l-checkup {
		padding-block: 5.6rem;
	}

	.l-checkup__heading {
		gap: 1.6rem;
		margin-bottom: 3.6rem;
	}

	.l-checkup__tag {
		font-size: 1.5rem;
	}

	.l-checkup__title {
		font-size: 2.4rem;
	}

	.l-checkup__description br {
		display: none;
	}

	.l-checkup__card {
		padding: 2.6rem 2rem;
	}

	.l-checkup__actions {
		margin-top: 3.2rem;
	}

	.l-checkup__button {
		width: min(100%, 28rem);
		padding: 1.5rem 2.8rem;
		font-size: 1.6rem;
	}

	.l-features {
		padding-block: 5.6rem;
	}

	.l-features__heading {
		margin-bottom: 4rem;
	}

	.l-features__title {
		font-size: 3.6rem;
	}

	.l-features__grid {
		gap: 2rem;
	}

	.l-features__body {
		padding: 2.4rem 2rem 2.8rem;
	}

	.l-features__card-title {
		font-size: 2rem;
	}

	.l-features__actions {
		flex-direction: column;
		align-items: center;
		margin-top: 3.6rem;
	}

	.l-features__button {
		width: min(100%, 30rem);
		min-width: 0;
		font-size: 1.6rem;
	}

	.l-doctor {
		padding-block: 5.6rem;
	}

	.l-doctor__heading {
		margin-bottom: 4rem;
	}

	.l-doctor__title {
		font-size: 3.6rem;
	}

	.l-doctor__card {
		padding: 3.2rem 2rem;
	}

	.l-doctor__profile {
		gap: 2.4rem;
		margin-bottom: 3.6rem;
	}

	.l-doctor__photo-wrap {
		width: 14rem;
	}

	.l-doctor__name {
		font-size: 2.6rem;
	}

	.l-doctor__message {
		font-size: 1.5rem;
	}

	.l-facility {
		padding-block: 5.6rem;
	}

	.l-facility__heading {
		margin-bottom: 4rem;
	}

	.l-facility__title {
		font-size: 3.4rem;
	}

	.l-facility__image {
		aspect-ratio: 4 / 3;
	}

	.l-facility__caption {
		left: 1.8rem;
		bottom: 1.6rem;
		font-size: 1.7rem;
	}

	.l-facility__arrow {
		width: 4.4rem;
		font-size: 3rem;
	}

	.l-facility__arrow--prev {
		left: 1rem;
	}

	.l-facility__arrow--next {
		right: 1rem;
	}

	.l-facility__button {
		width: min(100%, 30rem);
		padding: 1.5rem 2.8rem;
		font-size: 1.6rem;
	}

	.l-flow {
		padding-block: 5.6rem;
	}

	.l-flow__heading {
		margin-bottom: 3.6rem;
	}

	.l-flow__title {
		font-size: 2.6rem;
	}

	.l-flow__step {
		grid-template-columns: 1fr;
		gap: 1.6rem;
		padding: 2.4rem 2rem;
	}

	.l-flow__number {
		width: 4.8rem;
	}

	.l-flow__actions {
		flex-direction: column;
		align-items: center;
	}

	.l-flow__button {
		width: min(100%, 28rem);
	}

	.l-access-hours {
		padding-block: 5.6rem;
	}

	.l-access-hours__heading {
		margin-bottom: 4rem;
	}

	.l-access-hours__title {
		font-size: 3.2rem;
	}

	.l-access-hours__subtitle {
		font-size: 1.1rem;
	}

	.l-access-hours__grid {
		gap: 3.6rem;
		width: 100%;
		max-width: 100%;
		overflow: hidden;
	}

	.l-access-hours__section-title {
		margin-bottom: 1.6rem;
		font-size: 1.8rem;
	}

	.l-access-hours__postal,
	.l-access-hours__address,
	.l-access-hours__lead,
	.l-access-hours__route-list {
		font-size: 1.4rem;
	}

	.l-access-hours__map iframe {
		aspect-ratio: 4 / 3;
	}

	.l-access-hours__table-wrap {
		margin-bottom: 2.8rem;
	}

	.l-access-hours__table {
		font-size: 1.4rem;
		/* min-width: 52rem; */
	}

	.l-access-hours__table th,
	.l-access-hours__table td {
		padding: 1.3rem 1rem;
	}

	.l-access-hours__notice {
		margin-bottom: 2.4rem;
		font-size: 1.4rem;
	}

	.l-access-hours__phone-card {
		padding: 2.6rem 1.6rem;
	}

	.l-access-hours__phone-number {
		font-size: 2.8rem;
	}

	.l-footer {
		padding-block: 3.2rem;
	}

	.l-footer__name {
		margin-bottom: 1.6rem;
		font-size: 2rem;
	}

	.l-footer__address,
	.l-footer__tel,
	.l-footer__copy {
		font-size: 1.3rem;
	}

	.l-symptoms {
		padding-top: 4rem;
	}

	.l-symptoms__panel {
		padding: 4.8rem 1rem 4rem;
	}

	.l-symptoms__heading {
		margin-bottom: 3.6rem;
	}

	.l-symptoms__title {
		font-size: clamp(3.6rem, 3rem + 1vw, 4.8rem);
	}

	.l-symptoms__grid {
		grid-template-columns: 1fr;
		gap: 1.4rem;
	}

	.l-symptoms__item {
		font-size: 1.7rem;
		border-radius: 1.4rem;
	}

	.l-symptoms__notice {
		margin-top: 3.2rem;
		font-size: 1.4rem;
		line-height: 1.7;
	}

	.l-greeting {
		padding-top: 4.8rem;
	}

	.l-greeting__heading {
		margin-bottom: 4rem;
	}

	.l-greeting__title {
		font-size: clamp(3.8rem, 3rem + 1vw, 4.8rem);
	}

	.l-greeting__rows {
		gap: 3.2rem;
	}

	.l-greeting__lead {
		margin-bottom: 2rem;
		font-size: clamp(2.8rem, 2.2rem + 1vw, 3.6rem);
		line-height: 1.6;
	}

	.l-greeting__text p {
		font-size: 1.5rem;
		line-height: 1.9;
	}

	.l-greeting__image-wrap {
		border-radius: 1.4rem;
	}

	.l-feature-links {
		padding-top: 2rem;
	}

	.l-feature-links__grid {
		gap: 2rem;
	}

	.l-feature-links__card {
		border-radius: 1.6rem;
	}

	.l-feature-links__content {
		padding: 2rem 1.5rem;
	}

	.l-feature-links__tag {
		top: 2rem;
		left: 2rem;
		min-width: 7.2rem;
		padding-inline: 1.4rem;
		font-size: 1.4rem;
	}

	.l-feature-links__title {
		margin-bottom: 1.6rem;
		font-size: clamp(2.4rem, 2.1rem + 0.8vw, 3.2rem);
	}

	.l-feature-links__description {
		margin-bottom: 2rem;
		font-size: 1.5rem;
		line-height: 1.7;
	}

	.l-feature-links__button {
		font-size: 1.7rem;
	}

}

/* ==========================================================================
   Page Templates
   ========================================================================== */

.l-page-header {
	padding-block: 8rem 6rem;
	background: #f6f3ee;
	text-align: center;
}

.l-page-header__inner {
	display: grid;
	justify-items: center;
	gap: 1.6rem;
}

.l-page-header__title {
	color: #2453aa;
	font-size: clamp(2.4rem, 2.8rem + 1vw, 4.2rem);
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0.08em;
}

.l-page-header__title::after {
	content: "";
	display: block;
	width: 6.4rem;
	height: 0.2rem;
	margin: 2.4rem auto 0;
	background: #c8a86d;
}

.l-page-content {
	padding-block: 6rem 10rem;
	background: #ffffff;
}

.l-page-content__inner {
	max-width: 96rem;
	margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Entry Content Styles (Block Editor Content)
   -------------------------------------------------------------------------- */
.c-entry-content {
	color: #47536a;
	font-size: 1.6rem;
	line-height: 1.85;
}

.c-entry-content>*+* {
	margin-top: 2em;
}

/* Headings */
.c-entry-content h2 {
	margin-top: 3em;
	margin-bottom: 1.2em;
	padding-bottom: 1.4rem;
	border-bottom: 0.2rem solid #c8b27c;
	color: #2453aa;
	font-size: 2.8rem;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.06em;
}

.c-entry-content h3 {
	margin-top: 2.4em;
	margin-bottom: 1em;
	padding-left: 1.6rem;
	border-left: 0.4rem solid #1297df;
	color: #2453aa;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.45;
}

.c-entry-content h4 {
	margin-top: 2em;
	margin-bottom: 0.8em;
	color: #47536a;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
}

/* Paragraphs */
.c-entry-content p {
	margin-bottom: 1.6em;
}

.c-entry-content p:last-child {
	margin-bottom: 0;
}

/* Links */
.c-entry-content a {
	color: #1297df;
	text-decoration: underline;
	text-decoration-color: rgba(18, 151, 223, 0.4);
	text-underline-offset: 0.2em;
	transition: text-decoration-color 0.3s ease;
}

.c-entry-content a:hover {
	text-decoration-color: #1297df;
}

/* Lists */
.c-entry-content ul {
	margin-bottom: 1.6em;
	padding-left: 0;
	list-style: none;
}

.c-entry-content ul li {
	position: relative;
	margin-bottom: 0.6em;
	padding-left: 2.4rem;
}

.c-entry-content ul li::before {
	content: "";
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 50%;
	background: #c8b27c;
}

.c-entry-content ol {
	margin-bottom: 1.6em;
	padding-left: 2.4rem;
}

.c-entry-content ol li {
	margin-bottom: 0.6em;
	padding-left: 0.4rem;
}

/* Tables */
.c-entry-content table {
	width: 100%;
	margin-bottom: 2em;
	border-collapse: collapse;
	background: #ffffff;
}

.c-entry-content th,
.c-entry-content td {
	padding: 1.4rem 1.6rem;
	border: 1px solid #dfe3e8;
	line-height: 1.6;
}

.c-entry-content th {
	background: #f2f2f2;
	color: #2453aa;
	font-weight: 700;
	text-align: left;
	white-space: nowrap;
}

/* Blockquotes */
.c-entry-content blockquote {
	margin: 2em 0;
	padding: 2.4rem 3.2rem;
	border-left: 0.4rem solid #c8a86d;
	background: #fafaf8;
	color: #5a6576;
	font-style: italic;
}

.c-entry-content blockquote p:last-child {
	margin-bottom: 0;
}

/* Images */
.c-entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 0.8rem;
	box-shadow: 0 0.8rem 2rem rgba(40, 51, 79, 0.08);
}

.c-entry-content .wp-block-image {
	margin: 3em 0;
}

@media (min-width: 768px) {

	.c-entry-content .wp-block-columns .wp-block-image,
	.wp-block-columns .c-entry-content .wp-block-image {
		margin: 0;
	}
}

.c-entry-content .wp-block-image figcaption {
	margin-top: 1rem;
	color: #6f7888;
	font-size: 1.4rem;
	text-align: center;
}

/* Responsive Styles for Page Templates */
@media (max-width: 767px) {
	.l-page-header {
		padding-block: 6rem 4rem;
	}

	.l-page-content {
		padding-block: 4rem 6rem;
	}

	.c-entry-content h2 {
		font-size: 2.4rem;
	}

	.c-entry-content h3 {
		font-size: 2rem;
	}

	.c-entry-content h4 {
		font-size: 1.7rem;
	}

	.c-entry-content table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
}

/* --------------------------------------------------------------------------
   Flow List Component (for fixed pages)
   -------------------------------------------------------------------------- */
.c-flow-list {
	margin: 4rem 0;
}

.c-flow-item {
	display: grid;
	grid-template-columns: 4rem 1fr;
	gap: 2.4rem;
	padding-bottom: 4rem;
}

.c-flow-item:last-child {
	padding-bottom: 0;
}

.c-flow-number-col {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.c-flow-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: #1d468f;
	color: #ffffff;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(29, 70, 143, 0.2);
}

.c-flow-arrow {
	flex-grow: 1;
	width: 2px;
	background-color: #5b90d6;
	position: relative;
	margin-top: 0.8rem;
	margin-bottom: -3.2rem;
}

.c-flow-arrow::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%);
	border-top: 6px solid #5b90d6;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
}

.c-flow-content {
	background: #f4f8fc;
	padding: 3.2rem 4rem;
	border-radius: 1.2rem;
}

.c-entry-content .c-flow-title {
	margin: 0 0 1.6rem;
	padding: 0;
	border: none;
	color: #333333;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
}

.c-entry-content .c-flow-text p {
	margin-bottom: 0.8em;
	color: #333333;
}

.c-entry-content .c-flow-text p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.c-flow-item {
		grid-template-columns: 3.2rem 1fr;
		gap: 1.6rem;
		padding-bottom: 3.2rem;
	}

	.c-flow-number {
		width: 3.2rem;
		height: 3.2rem;
		font-size: 1.6rem;
	}

	.c-flow-arrow {
		margin-bottom: -2.4rem;
	}

	.c-flow-content {
		padding: 2.4rem 2rem;
	}
}


/* --------------------------------------------------------------------------
   Q&A List Component (for fixed pages)
   -------------------------------------------------------------------------- */
.c-qa-list {
	margin: 4rem 0;
	display: grid;
	gap: 2.4rem;
}

.c-qa-item {
	margin: 0;
	border-radius: 0.8rem;
	background: #f6f3ee;
	padding: 2.4rem 3.2rem;
}

.c-qa-q {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.6rem;
	align-items: flex-start;
	margin-bottom: 1.6rem;
	padding-bottom: 1.6rem;
	border-bottom: 1px dashed #d5ccc0;
}

.c-qa-a {
	margin: 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.6rem;
	align-items: flex-start;
}

.c-qa-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.6rem;
	height: 3.6rem;
	border-radius: 50%;
	color: #ffffff;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	font-family: Arial, Helvetica, sans-serif;
}

.c-qa-icon--q {
	background: #2453aa;
}

.c-qa-icon--a {
	background: #c8b27c;
}

.c-qa-q .c-qa-text {
	padding-top: 0.4rem;
	color: #2453aa;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
}

.c-qa-a .c-qa-text {
	padding-top: 0.4rem;
	color: #47536a;
	font-size: 1.5rem;
	line-height: 1.8;
}

.c-qa-a .c-qa-text p {
	margin-bottom: 0.8em;
}

.c-qa-a .c-qa-text p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.c-qa-item {
		padding: 2rem 1.6rem;
	}

	.c-qa-icon {
		width: 3.2rem;
		height: 3.2rem;
		font-size: 1.6rem;
	}

	.c-qa-q .c-qa-text {
		padding-top: 0.3rem;
		font-size: 1.6rem;
	}

	.c-qa-a .c-qa-text {
		padding-top: 0.3rem;
	}
}

/* --------------------------------------------------------------------------
   Page CTA
   -------------------------------------------------------------------------- */
.l-page-cta {
	padding: 6rem 2rem;
	background: #eef8fc;
	text-align: center;
}

.l-page-cta__inner {
	max-width: 72rem;
	margin-inline: auto;
}

.l-page-cta__title {
	color: #2453aa;
	font-size: clamp(2.4rem, 2rem + 1vw, 2.8rem);
	font-weight: 700;
	margin-bottom: 1.6rem;
}

.l-page-cta__text {
	color: #47536a;
	font-size: 1.5rem;
	line-height: 1.8;
	margin-bottom: 3.2rem;
}

.l-page-cta__button {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 3.2rem 2rem;
	background: #ffffff;
	border: 0.3rem solid #2453aa;
	border-radius: 1.2rem;
	color: #2453aa;
	box-shadow: 0 0.8rem 2rem rgba(36, 83, 170, 0.08);
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.l-page-cta__button:hover {
	background: #2453aa;
	color: #ffffff;
	transform: translateY(-2px);
}

.l-page-cta__button:hover .l-page-cta__note {
	color: rgba(255, 255, 255, 0.9);
}

.l-page-cta__number-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
	margin-bottom: 0.8rem;
}

.l-page-cta__icon {
	font-size: 3.2rem;
	line-height: 1;
}

.l-page-cta__number {
	font-size: clamp(3.2rem, 2.6rem + 1.2vw, 4.2rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
}

.l-page-cta__note {
	color: #6f7888;
	font-size: 1.3rem;
	font-weight: 700;
	transition: color 0.3s ease;
}

/* --------------------------------------------------------------------------
   Check List Component (for fixed pages)
   -------------------------------------------------------------------------- */
.c-check-list {
	background: #f6f3ee;
	padding: 3.2rem 4rem;
	margin: 4rem 0;
	border-radius: 0.8rem;
}

.c-check-list__inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 4rem;
	row-gap: 2rem;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.c-check-list__inner li {
	position: relative;
	padding-left: 3.6rem !important;
	color: #333333;
	font-size: 1.6rem;
	line-height: 1.5;
	display: flex;
	align-items: center;
}

.c-check-list__inner li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2.4rem;
	height: 2.4rem;
	background-color: #2453aa;
	border-radius: 50%;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
	background-size: 1.4rem;
	background-position: center;
	background-repeat: no-repeat;
}

@media (max-width: 767px) {
	.c-check-list {
		padding: 2.4rem 2rem;
	}

	.c-check-list__inner {
		grid-template-columns: 1fr;
		gap: 1.6rem;
	}
}

/* SP Footer Menu */
.l-sp-footer-menu {
	display: none;
}

@media (max-width: 767px) {
	body {
		padding-bottom: 7.2rem;
	}

	.l-sp-footer-menu {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background-color: #004b99;
		z-index: 999;
	}

	.l-sp-footer-menu__item {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 1.2rem 0;
		color: #ffffff;
		text-decoration: none;
		gap: 0.6rem;
	}

	.l-sp-footer-menu__item svg {
		width: 2.4rem;
		height: 2.4rem;
	}

	.l-sp-footer-menu__item span {
		font-size: 1.1rem;
		line-height: 1;
	}
}

/* -------------------------------------------------------------------------
 * l-news
 * ------------------------------------------------------------------------- */
.l-news {
	background: #ffffff;
}

.l-news__heading {
	display: grid;
	justify-items: center;
	gap: 1.2rem;
	margin-bottom: 4rem;
	text-align: center;
}

.l-news__title {
	color: #2453aa;
	font-size: 4.8rem;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0.08em;
}

.l-news__subtitle {
	color: #6f7888;
	font-size: 1rem;
	letter-spacing: 0.24em;
}

.l-news__line {
	display: block;
	width: 5.4rem;
	height: 0.2rem;
	margin-top: 1.2rem;
	background: #c8a86d;
}

.l-news__list {
	max-width: 82rem;
	margin: 0 auto;
}

.l-news__item {
	border-bottom: 1px solid #e3e3e3;
}

.l-news__item:first-child {
	border-top: 1px solid #e3e3e3;
}

.l-news__link {
	display: flex;
	gap: 2.4rem;
	align-items: baseline;
	padding: 2.4rem 1.6rem;
	transition: background-color 0.3s ease;
}

.l-news__link:hover {
	background-color: #f6f3ee;
}

.l-news__meta {
	flex-shrink: 0;
	min-width: 10rem;
}

.l-news__date {
	color: #47536a;
	font-size: 1.4rem;
}

.l-news__item-title {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.6;
	color: #333333;
}

.l-news__empty {
	text-align: center;
	color: #6f7888;
	padding: 4rem 0;
}

.l-news__actions {
	display: flex;
	justify-content: center;
	margin-top: 4.8rem;
}

.l-news__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1.4rem 3.2rem;
	border-radius: 999px;
	border: 1px solid #2453aa;
	background: #ffffff;
	color: #2453aa;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
	transition: all 0.3s ease;
}

.l-news__button:hover {
	background: #2453aa;
	color: #ffffff;
}

@media screen and (max-width: 768px) {
	.l-news__title {
		font-size: 3.6rem;
	}

	.l-news__link {
		flex-direction: column;
		gap: 0.8rem;
		padding: 2rem 1.6rem;
	}
}

/* -------------------------------------------------------------------------
 * Pagination
 * ------------------------------------------------------------------------- */
.c-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.2rem;
	margin-top: 5.6rem;
}

.c-pagination .page-numbers {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 4.4rem;
	height: 4.4rem;
	padding: 0 1.2rem;
	border: 1px solid #e1e1e1;
	border-radius: 999px;
	color: #4f596a;
	font-size: 1.4rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.c-pagination .page-numbers:hover,
.c-pagination .page-numbers.current {
	background: #2453aa;
	border-color: #2453aa;
	color: #ffffff;
}

.c-pagination .page-numbers.dots {
	border: none;
	background: transparent;
	color: #4f596a;
}