.page-kv {
    padding: 10rem 0 9rem;
    background: var(--base-white);
}

.page-kv__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(42rem, 52%);
    align-items: center;
    width: calc(100% - 4rem);
    margin-left: auto;
    padding-left: 4rem;
}

.page-kv__text {
    align-self: stretch;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 7rem;
    padding: 0 0 7.2rem;
}

.page-kv__breadcrumb {
    margin: 0;
    font-family: var(--font-en);
    font-size: var(--fz-12);
    letter-spacing: 0.08em;
    color: var(--text-gray);
}

.page-kv__breadcrumb a {
    color: inherit;
}

.page-kv__breadcrumb span {
    margin-left: 0.6rem;
}

.page-kv__heading {
    align-self: center;
}

.page-kv__en {
    margin: 0;
    color: var(--text-black);
    font-family: var(--font-en);
    font-size: clamp(5.6rem, 7vw, 9rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0;
}

.page-kv__title {
    margin: 1.6rem 0 0;
    padding: 0;
    color: var(--text-black);
    font-family: var(--font-serif);
    font-size: var(--fz-16);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-align: left;
}

.page-kv__title::after {
    display: none;
}

.page-kv__image {
    overflow: hidden;
    border-radius: 2rem 0 0 2rem;
}

.page-kv__image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8.8;
    object-fit: cover;
}

.page-body,
.faq-page {
    padding: 8rem 0 5rem;
}

.page-layout,
.faq-layout {
    display: grid;
    grid-template-columns: 22rem minmax(0, 1fr);
    gap: 7.2rem;
    align-items: start;
    max-width: 110rem;
    margin: 0 auto;
}

.page-layout.has-empty-toc {
    grid-template-columns: minmax(0, 72rem);
    justify-content: center;
}

.page-toc,
.faq-nav {
    position: sticky;
    top: 12rem;
}

.page-toc.is-empty {
    display: none;
}

.page-toc ul,
.faq-nav ul {
    display: grid;
    gap: 1.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-toc ul li,
.faq-nav ul li {
    position: static;
    padding-left: 0;
    list-style: none;
}

.page-toc ul li::before,
.page-toc ul li::after,
.faq-nav ul li::before,
.faq-nav ul li::after {
    display: none !important;
    content: none !important;
}

.page-toc a.is-active::before,
.faq-nav a.is-active::before {
    opacity: 1;
}

.page-sticky-nav {
    display: grid;
    gap: 1.6rem;
    padding: 2rem;
    background: var(--base-white);
    border-radius: 0.6rem;
    font-size: var(--fz-13);
}

.page-sticky-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--heading-brown);
    line-height: 1.6;
}

.page-sticky-nav__link span {
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--deco-pink);
    border-radius: 50%;
    transition: .3s;
}

.page-sticky-nav__link.is-active span {
    background: var(--deco-pink);
}

.page-content {
    min-width: 0;
}

.page-content > :first-child {
    margin-top: 0;
}

.page-content > :last-child {
    margin-bottom: 0;
}

.page-content h2:not(:first-child) {
    margin-top: 8rem;
}

.faq-section + .faq-section {
    margin-top: 9.6rem;
}

.faq-list {
    display: grid;
    gap: 1.6rem;
    margin-top: 5.6rem;
}

.faq-item {
    overflow: hidden;
    background: var(--base-white);
    border-radius: 0.8rem;
}

.faq-item summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.6rem;
    align-items: center;
    min-height: 6.4rem;
    padding: 1.8rem 2.8rem;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item__label,
.faq-answer__label {
    color: var(--gold);
    font-family: var(--font-en);
    font-size: var(--fz-18);
    line-height: 1;
}

.faq-item__question {
    font-size: var(--fz-14);
    font-weight: 400;
    line-height: 1.7;
}

.faq-item__icon {
    position: relative;
    width: 1.4rem;
    height: 1.4rem;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.4rem;
    height: 1px;
    background: var(--gold);
    transform: translate(-50%, -50%);
}

.faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-item.is-open .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-item.is-closing .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.6rem;
    box-sizing: border-box;
    padding: 0 2.8rem;
    overflow: hidden;
    will-change: height, opacity;
    transition:
        height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease;
}

.faq-answer__body {
    color: var(--text-black);
    font-size: var(--fz-14);
    line-height: 2;
    padding-bottom: 3.2rem;
}

.faq-answer__body > :first-child {
    margin-top: 0;
}

.faq-answer__body > :last-child {
    margin-bottom: 0;
}

.faq-empty {
    max-width: 72rem;
    margin: 0 auto;
    padding: 2.4rem;
    background: var(--base-white);
    border-radius: 0.8rem;
}

.faq-empty p {
    margin: 0;
    font-size: var(--fz-14);
    line-height: 1.8;
}

/*------------------------
about
-------------------------*/

.about-section + .about-section {
    margin-top: 10rem;
}

.about-section h2 {
    margin: 0;
}

.about-text {
    line-height: 2.2;
}

.about-text > :first-child {
    margin-top: 0;
}

.about-text > :last-child {
    margin-bottom: 0;
}

.about-policy__lead {
    margin: 4.8rem auto 0;
    text-align: center;
}

.about-policy__image {
    margin: 5.6rem auto 0;
    background: var(--base-white);
    box-shadow: 0 1.2rem 3rem rgba(191, 156, 149, 0.18);
}

.about-policy__image img {
    display: block;
    width: 100%;
    height: auto;
}

.about-promise-list,
.about-infection-list {
    display: grid;
    gap: 4.8rem;
    margin-top: 6.4rem;
}

.about-promise,
.about-infection-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 25rem;
    gap: 5.6rem;
    align-items: start;
}

.about-promise__number {
    margin: 0;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: var(--fz-20);
    line-height: 1;
}

.about-promise__title {
    margin: 0.8rem 0 0;
    padding: 0;
    color: var(--text-black);
    line-height: 1.7;
    text-align: left;
}

.about-promise__title::after {
    display: none;
}

.about-promise__en {
    margin: 0.6rem 0 0;
    color: var(--gold);
    font-family: var(--font-en);
    font-size: var(--fz-15);
    line-height: 1.3;
    letter-spacing: 0.12em;
}

.about-promise__text,
.about-infection-item__text {
    margin-top: 1.8rem;
}

.about-promise__image,
.about-infection-item__image {
    margin: 0;
    overflow: hidden;
}

.about-promise__image img,
.about-infection-item__image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/*------------------------
first
-------------------------*/

.first-page .page-layout.has-empty-toc {
    grid-template-columns: minmax(0, 84rem);
}

.first-section + .first-section {
    margin-top: 10rem;
}

.first-section h2 {
    margin: 0;
}

.first-belongings__list {
    display: grid;
    gap: 0.8rem;
    width: min(42rem, 100%);
    margin: 4.8rem auto 0;
    padding: 0;
    line-height: 1.9;
    list-style: none;
}

.first-belongings__list li {
    position: relative;
    padding-left: 1.8rem;
}

.first-belongings__list li::before {
    content: "";
    position: absolute;
    top: 0.85em;
    left: 0;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: var(--deco-pink);
}

.first-flow__list {
    display: grid;
    gap: 0;
    margin-top: 6.4rem;
}

.first-flow__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 25rem;
    gap: 5.6rem;
    align-items: center;
    padding: 3.2rem 0;
}

.first-flow__item + .first-flow__item {
    border-top: 1px solid rgba(191, 156, 149, 0.22);
}

.first-flow__heading {
    display: flex;
    gap: 1.2rem;
    align-items: baseline;
    margin-bottom: 1.6rem;
}

.first-flow__number {
    flex: 0 0 auto;
    margin: 0;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: var(--fz-24);
    line-height: 1;
}

.first-flow__title {
    margin: 0;
    padding: 0;
    line-height: 1.7;
    text-align: left;
}

.first-flow__title::after {
    display: none;
}

.first-flow__text {
    line-height: 2;
}

.first-flow__text > :first-child {
    margin-top: 0;
}

.first-flow__text > :last-child {
    margin-bottom: 0;
}

.first-flow__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2rem;
}

.first-flow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: 14rem;
    min-height: 4rem;
    padding: 0.2rem 2rem;
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-family: var(--font-serif);
    font-size: var(--fz-13);
    line-height: 1;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.first-flow-button--outline {
    background: var(--base-white);
    color: var(--gold);
}

.first-flow-button--fill {
    background: var(--gold);
    color: var(--base-white);
}

.first-flow-button:hover {
    transform: translateY(-0.2rem);
}

.first-flow-button--outline:hover {
    background: var(--gold);
    color: var(--base-white);
}

.first-flow-button--fill:hover {
    background: var(--base-white);
    color: var(--gold);
}

.first-flow-button__icon,
.first-flow-button__icon svg {
    display: block;
    width: 1.4rem;
    height: 1.4rem;
}

.first-flow-button__icon svg {
    fill: currentColor;
}

.first-flow__image {
    margin: 0;
    overflow: hidden;
}

.first-flow__image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/*------------------------
clinic
-------------------------*/

.clinic-page .page-layout {
    max-width: 120rem;
}

.clinic-page .page-layout.has-empty-toc {
    grid-template-columns: minmax(0, 112rem);
}

.clinic-section + .clinic-section {
    margin-top: 10rem;
}

.clinic-text {
    line-height: 2;
    font-size: var(--fz-14);
}

.clinic-text > :first-child {
    margin-top: 0;
}

.clinic-text > :last-child {
    margin-bottom: 0;
}

.clinic-overview__intro {
    display: grid;
    grid-template-columns: minmax(36rem, 0.92fr) minmax(0, 1fr);
    gap: 5rem;
    align-items: center;
    margin-top: 5.6rem;
}

.clinic-overview__intro.has-no-image {
    grid-template-columns: minmax(0, 1fr);
}

.clinic-overview__image {
    margin: 0;
    overflow: hidden;
    border-radius: 0.8rem;
    background: var(--base-white);
}

.clinic-overview__image img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.clinic-overview__list {
    margin: 0;
}

.clinic-overview__row {
    display: grid;
    grid-template-columns: 11rem minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--line);
}

.clinic-overview__row dt,
.clinic-overview__row dd {
    margin: 0;
    font-size: var(--fz-14);
    line-height: 1.9;
}

.clinic-overview__row dt {
    color: var(--pink);
    font-family: var(--font-serif);
    font-size: var(--fz-15);
    line-height: 1.5;
}

.clinic-hours .site-footer__schedule {
    width: min(100%, 62rem);
    overflow-x: visible;
    margin: 0 auto;
    padding: 0;
    border-radius: 0.8rem;
}

.clinic-hours .site-footer__schedule table {
    min-width: 0;
}

.clinic-hours .site-footer__buttons {
    width: min(100%, 62rem);
    margin-right: auto;
    margin-left: auto;
    margin-top: 3.2rem;
}

.clinic-gallery__slider {
    overflow: hidden;
}

.clinic-gallery__list {
    align-items: stretch;
}

.clinic-gallery__item,
.clinic-gallery__item.swiper-slide {
    width: min(40rem, 92%);
    height: auto;
}

.clinic-gallery__image {
    margin: 0;
    overflow: hidden;
    border-radius: 0.8rem;
    background: var(--base-white);
}

.clinic-gallery__image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9.5;
    object-fit: cover;
}

.clinic-gallery__item h5 {
    margin: 2rem 0 0;
    text-align: left;
    transition: opacity 0.3s ease;
}

.clinic-gallery__text {
    margin: 1.2rem 0 0;
    font-size: var(--fz-14);
    line-height: 2;
    transition: opacity 0.3s ease;
}

.clinic-gallery__slider.swiper-initialized .clinic-gallery__item:not(.swiper-slide-active) h5,
.clinic-gallery__slider.swiper-initialized .clinic-gallery__item:not(.swiper-slide-active) .clinic-gallery__text {
    opacity: 0;
}

.clinic-gallery .slider-prev,
.clinic-gallery .slider-next {
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.clinic-gallery .slider-prev::before,
.clinic-gallery .slider-next::before {
    transition:
        border-top-color 0.3s ease,
        border-right-color 0.3s ease;
}

.clinic-gallery .slider-prev:hover,
.clinic-gallery .slider-next:hover {
    background: var(--gold);
}

.clinic-gallery .slider-prev:hover::before,
.clinic-gallery .slider-next:hover::before {
    border-top-color: var(--base-white);
    border-right-color: var(--base-white);
}

/*------------------------
access
-------------------------*/

.access-map__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(32rem, 42%);
    gap: 5.6rem;
    align-items: center;
}

.access-map__body h3 {
    margin: 0 0 3.2rem;
}

.access-map__routes {
    display: grid;
    gap: 1.2rem;
}

.access-map__routes li {
    color: var(--text-gray);
    font-size: var(--fz-14);
    line-height: 1.9;
}

.access-map__button {
    gap: 0.8rem;
    margin-top: 3.2rem;
}

.access-map__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
}

.access-map__button-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.access-map__image {
    margin: 0;
}

.access-map__image img {
    display: block;
    width: 100%;
    height: auto;
}

.access-station__list {
    max-width: 76rem;
    margin-right: auto;
    margin-left: auto;
}

.access-station-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}

.access-station-item__icon svg {
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    fill: var(--pink);
}

.access-station-item__body {
    box-sizing: border-box;
    padding: 0 2.8rem;
    overflow: hidden;
    will-change: height, opacity;
    transition:
        height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease;
}

.access-station-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.4rem 2rem;
    padding-bottom: 3.2rem;
}

.access-station-step {
    display: grid;
    gap: 1.2rem;
}

.access-station-step__image {
    margin: 0;
    overflow: hidden;
    background: #d9d9d9;
}

.access-station-step__image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.access-station-step__image:empty,
.access-station-step__image.is-empty {
    aspect-ratio: 4 / 3;
}

.access-station-step p {
    margin: 0;
    font-size: var(--fz-13);
    line-height: 1.8;
}

/*------------------------
group
-------------------------*/

.group-page .page-layout {
    max-width: 120rem;
}

.group-page .page-layout.has-empty-toc {
    grid-template-columns: minmax(0, 112rem);
}

.group-section + .group-section {
    margin-top: 10rem;
}

.group-message__layout {
    display: grid;
    grid-template-columns: minmax(30rem, 40%) minmax(0, 1fr);
    gap: 5.6rem;
    align-items: center;
}

.group-message__layout.has-no-image {
    grid-template-columns: minmax(0, 72rem);
    justify-content: center;
}

.group-message__image {
    margin: 0;
    overflow: hidden;
}

.group-message__image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.group-clinics {
    overflow: hidden;
}

.group-page .top-group__slider,
.group-page .top-group__slider.swiper {
    overflow: visible;
    padding-bottom: 2rem;
}

.group-page .top-group__card,
.group-page .top-group__card.swiper-slide {
    width: min(34rem, 28vw);
    height: auto;
}

.group-page .top-group__card a,
.group-page .top-group__card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    overflow: hidden;
    background: var(--base-white);
    border-radius: 1rem;
    box-shadow: 0 1.2rem 2.4rem rgba(191, 156, 149, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.group-page .top-group__card a:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 1.6rem 3rem rgba(191, 156, 149, 0.36);
}

.group-page .top-group__image {
    overflow: hidden;
    aspect-ratio: 4 / 2.6;
    background: var(--base-light);
    border-radius: 0.6rem;
}

.group-page .top-group__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.group-page .top-group__card a:hover .top-group__image img {
    transform: scale(1.04);
}

.group-page .top-group__body {
    display: flex;
    flex-direction: column;
    padding-top: 2.4rem;
}

.group-page .top-group__name {
    margin: 0 0 1.5rem;
    padding: 0;
    color: var(--pink);
    font-size: var(--fz-16);
    font-weight: 400;
    line-height: 1.7;
}

.group-page .top-group__name::after {
    display: none;
}

.group-page .top-group__address,
.group-page .top-group__access {
    margin: 0;
    color: var(--text-black);
    font-size: var(--fz-13);
    line-height: 1.7;
}

.group-page .top-group__access {
    margin-top: 1.2rem;
}

.group-page .top-group__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
    width: fit-content;
    margin: 5.6rem auto 0;
}

.group-page .top-group__nav .slider-prev,
.group-page .top-group__nav .slider-next {
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.group-page .top-group__nav .slider-prev::before,
.group-page .top-group__nav .slider-next::before {
    transition:
        border-top-color 0.3s ease,
        border-right-color 0.3s ease;
}

.group-page .top-group__nav .slider-prev:hover,
.group-page .top-group__nav .slider-next:hover {
    background: var(--gold);
}

.group-page .top-group__nav .slider-prev:hover::before,
.group-page .top-group__nav .slider-next:hover::before {
    border-top-color: var(--base-white);
    border-right-color: var(--base-white);
}

.group-athlete {
    scroll-margin-top: 12rem;
}

.group-athlete__lead {
    margin: 0 auto 5.6rem;
    text-align: center;
}

.group-corporate__list {
    width: min(72rem, 100%);
    margin: 0 auto;
}

.group-corporate__row {
    display: grid;
    grid-template-columns: 12rem minmax(0, 1fr);
    gap: 3rem;
    padding: 1.4rem 0;
}

.group-corporate__row dt,
.group-corporate__row dd {
    margin: 0;
    font-size: var(--fz-14);
    line-height: 1.9;
}

.group-corporate__row dt {
    color: var(--pink);
    font-family: var(--font-serif);
}

.group-corporate__row dd a {
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

.group-corporate__row dd a:hover {
    text-decoration: none;
}

.group-banner-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
    width: min(80rem, 100%);
    margin: 5.6rem auto 0;
}

.group-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 7.2rem;
    padding: 1rem;
    background: var(--base-white);
    color: var(--text-black);
    font-size: var(--fz-13);
    line-height: 1.5;
    text-align: center;
    transition: opacity 0.3s ease;
}

a.group-banner-link:hover {
    opacity: 0.75;
}

.group-banner-link img {
    display: block;
    width: 100%;
    max-height: 6rem;
    object-fit: contain;
}

/*------------------------
loan
-------------------------*/

.loan-page .page-layout.has-empty-toc {
    grid-template-columns: minmax(0, 78rem);
}

.loan-section + .loan-section {
    margin-top: 10rem;
}

.loan-section h2 {
    margin: 0;
}

.loan-text {
    line-height: 2;
}

.loan-text > :first-child {
    margin-top: 0;
}

.loan-text > :last-child {
    margin-bottom: 0;
}

.loan-intro__text,
.loan-plan__lead {
    margin: 4.8rem auto 0;
    text-align: center;
}

.loan-plan__overview-image {
    margin: 5.6rem auto 0;
    overflow: hidden;
}

.loan-plan__overview-image img {
    display: block;
    width: 100%;
    height: auto;
}

.loan-plan__list {
    display: grid;
    gap: 5.6rem;
    margin-top: 6.4rem;
}

.loan-plan-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40rem;
    gap: 5.6rem;
    align-items: center;
}

.loan-plan-card h3,
.loan-flow-card h3,
.loan-simulation-item h3 {
    margin: 0;
    padding: 0;
    color: var(--heading-brown);
    font-size: var(--fz-18);
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
}

.loan-plan-card h3::after,
.loan-flow-card h3::after,
.loan-simulation-item h3::after {
    display: none;
}

.loan-plan-card .loan-text {
    margin-top: 1.6rem;
}

.loan-plan-card__image {
    margin: 0;
    overflow: hidden;
}

.loan-plan-card__image img {
    display: block;
    width: 100%;
    height: auto;
}

.loan-button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 6.4rem;
}

.loan-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20rem;
    min-height: 4rem;
    padding: 0.2rem 2.4rem;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: var(--base-white);
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: var(--fz-13);
    line-height: 1;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.loan-button:hover {
    background: var(--gold);
    color: var(--base-white);
}

.loan-flow__list {
    display: grid;
    gap: 1.6rem;
    width: min(72rem, 100%);
    margin: 5.6rem auto 0;
}

.loan-flow-card {
    display: grid;
    grid-template-columns: 5.6rem minmax(0, 1fr);
    gap: 2.4rem;
    align-items: start;
    padding: 2.4rem 3rem;
    background: var(--base-white);
    border-radius: 0.6rem;
}

.loan-flow-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.8rem;
    height: 3.8rem;
    margin: 0;
    border-radius: 50%;
    background: var(--gold);
    color: var(--base-white);
    font-family: var(--font-serif);
    font-size: var(--fz-18);
    line-height: 1;
}

.loan-flow-card .loan-text {
    margin-top: 1rem;
}

.loan-flow__note {
    margin: 0 auto 0;
    padding: 2rem 5.2rem;
    color: var(--text-gray);
    font-size: var(--fz-12);
    line-height: 1.8;
}

.loan-simulation__list {
    display: grid;
    gap: 7.2rem;
    width: min(54rem, 100%);
    margin: 5.6rem auto 0;
}

.loan-simulation-item h3 {
    margin-bottom: 2.4rem;
    text-align: center;
}

.loan-simulation-item__image {
    margin: 0;
    overflow: hidden;
}

.loan-simulation-item__image img {
    display: block;
    width: 100%;
    height: auto;
}

.loan-faq__list {
    width: min(72rem, 100%);
    margin-right: auto;
    margin-left: auto;
}

/*------------------------
symptom archive
-------------------------*/

.symptom-archive {
    padding: 10rem 0 12rem;
    background-image: url("../img/common/bg-paper.png");
    background-size: cover;
    background-position: center;
}

.symptom-archive__inner {
    width: min(76rem, calc(100% - 4rem));
    margin: 0 auto;
}

.symptom-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem 2rem;
}

.symptom-archive__item.top-symptoms__item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 5.8rem;
    padding: 0 4.8rem 0 1.8rem;
    border: 1px solid var(--gold);
    border-radius: 0.4rem;
    background: rgba(255,255,255,0.7);
    transition: 0.3s ease;
}

.symptom-archive__item.top-symptoms__item:hover {
    background: var(--base-white);
    transform: translateY(-2px);
}

.symptom-archive__item.top-symptoms__item span {
    color: var(--text-black);
    font-family: var(--font-serif);
    font-size: var(--fz-18);
    line-height: 1.6;
}

.symptom-archive__item.top-symptoms__item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.8rem;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    transform: translateY(-50%) rotate(45deg);
}

.symptom-archive__empty {
    margin: 0;
    padding: 2.4rem;
    background: var(--base-white);
    color: var(--text-gray);
    font-size: var(--fz-14);
    line-height: 1.8;
    text-align: center;
}

.clinic-equipment__section {
    margin-top: 6.4rem;
}

.clinic-equipment__section:first-of-type {
    margin-top: 0;
}

/* 20260710 変更：productsの分類見出しH2にも医療機器カード見出し余白を適用 */
.clinic-equipment__section h2,
.clinic-equipment__section h3 {
    margin: 0 0 3.2rem;
}

.clinic-equipment__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem;
}

.clinic-equipment-card {
    overflow: hidden;
    display: grid;
    background: var(--base-white);
    border-radius: 0.8rem;
    box-shadow: 0 1.6rem 3.2rem rgba(191, 156, 149, 0.16);
}

.clinic-equipment-card__image {
    margin: 0;
}

.clinic-equipment-card__image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.clinic-equipment-card__body {
    padding: 2.4rem;
}

.clinic-equipment-card__body h5 {
    margin-bottom: 1.2rem;
}

.about-infection-item {
    grid-template-columns: minmax(0, 1fr) 25rem;
}


.page-related__inner {
    max-width: 100rem;
    margin: 10rem 0 auto;
}

.page-related__title {
    margin: 0;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 3vw, 3.6rem);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-align: center;
}

.page-related__title::after {
    content: "";
    display: block;
    width: 4.8rem;
    height: 1px;
    margin: 2.8rem auto 0;
    background: var(--deco-pink);
}

.page-related__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4.8rem;
    margin-top: 8rem;
}


.page-related-card {
    display: grid;
    gap: 2.4rem;
    padding: 1.6rem 1.6rem 2.4rem;
    background: var(--base-white);
    border-radius: 0.8rem;
    box-shadow: 0 1.2rem 2.4rem rgba(191, 156, 149, 0.28);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-related-card:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 1.6rem 3rem rgba(191, 156, 149, 0.36);
}

.page-related-card__image {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9.6;
    background: #d9d9d9;
    border-radius: 0.8rem;
}

.page-related-card__image img,
.page-related-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
}

.page-related-card__image img {
    object-fit: cover;
    transition: transform 0.4s ease;
}

.page-related-card:hover .page-related-card__image img {
    transform: scale(1.04);
}

.page-related-card__title {
    color: var(--text-black);
    font-family: var(--font-serif);
    font-size: var(--fz-16);
    line-height: 1.6;
}

/*------------------------
404
-------------------------*/

.not-found {
    padding: 10rem 0 12rem;
    background-image: url("../img/common/bg-paper.png");
    background-size: cover;
    background-position: center;
}

.not-found__inner {
    width: min(86rem, calc(100% - 4rem));
    margin: 0 auto;
}

.not-found__breadcrumb {
    margin: 0;
    color: var(--text-gray);
    font-family: var(--font-en);
    font-size: var(--fz-12);
    letter-spacing: 0.08em;
}

.not-found__breadcrumb a {
    color: inherit;
}

.not-found__breadcrumb span {
    margin-left: 0.6rem;
}

.not-found__content {
    margin-top: 8rem;
    padding: 8rem 4rem;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 0.8rem;
    text-align: center;
}

.not-found__code {
    margin: 0;
    color: var(--deco-pink);
    font-family: var(--font-en);
    font-size: clamp(8rem, 14vw, 16rem);
    line-height: 0.8;
    opacity: 0.75;
}

.not-found h1 {
    margin: 4rem 0 0;
    padding: 0;
    color: var(--heading-brown);
    font-family: var(--font-serif);
    font-size: var(--fz-28);
    font-weight: 400;
    line-height: 1.6;
}

.not-found h1::after {
    display: none;
}

.not-found__text {
    margin: 3.2rem 0 0;
    color: var(--text-gray);
    font-size: var(--fz-14);
    line-height: 2;
}

.not-found__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.6rem;
    margin-top: 4.8rem;
}

/*------------------------
treatment archive
-------------------------*/

.treatment-archive.top-treatment {
    padding: 8rem 0 12rem;
}

.treatment-archive .top-treatment__pickup {
    margin-bottom: 9.6rem;
}

.treatment-archive .top-treatment__card-content,
.treatment-archive .top-treatment__card-label,
.treatment-archive .top-treatment__card-title {
    align-items: flex-start;
    text-align: left;
}

.treatment-archive__sections {
    display: grid;
    gap: 8rem;
}

.treatment-archive-section {
    scroll-margin-top: 12rem;
}

.treatment-archive-section__title {
    margin: 0 0 3.2rem;
    padding: 0;
    color: var(--heading-brown);
    font-family: var(--font-serif);
    font-size: var(--fz-24);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-align: left;
}

.treatment-archive-section__title::after {
    display: none;
}

.treatment-archive__empty {
    margin: 0;
    padding: 4rem;
    background: var(--base-white);
    color: var(--text-gray);
    font-size: var(--fz-14);
    line-height: 1.8;
    text-align: center;
}

/*------------------------
blog archive
-------------------------*/

.blog-archive {
    padding: 7.2rem 0 12rem;
    background: var(--base-gray);
    scroll-margin-top: 8rem;
}

.blog-archive__layout {
    display: grid;
    grid-template-columns: 14rem minmax(0, 1fr);
    gap: 11rem;
    align-items: start;
    width: min(112rem, calc(100% - 8rem));
    margin: 0 auto;
}

.blog-archive__filter {
    position: sticky;
    top: 12rem;
    z-index: 4;
}

.blog-category-filter {
    display: grid;
    gap: 1.2rem;
}

.blog-category-filter__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0.4rem 1.6rem;
    border: 1px solid var(--pink);
    border-radius: 999px;
    background: var(--base-white);
    color: var(--pink);
    font-family: var(--font-serif);
    font-size: var(--fz-13);
    line-height: 1.3;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-category-filter__button:hover,
.blog-category-filter__button.is-active {
    border-color: var(--pink);
    background: var(--pink);
    color: var(--base-white);
}

.blog-archive__content {
    min-width: 0;
}

.blog-archive__list.top-blog__list {
    gap: 7.2rem 4rem;
}

.blog-archive-card .top-blog__card-title {
    margin-top: 1.2rem;
    text-align: left;
}

.blog-archive-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    margin-top: 8rem;
}

.blog-archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.8rem;
    height: 2.8rem;
    color: var(--gold);
    font-family: var(--font-en);
    font-size: var(--fz-13);
    line-height: 1;
}

.blog-archive-pagination .page-numbers.current {
    border-radius: 50%;
    background: var(--gold);
    color: var(--base-white);
}

.blog-archive-pagination .page-numbers.prev,
.blog-archive-pagination .page-numbers.next {
    position: relative;
    width: 3rem;
    min-width: 3rem;
    height: 3rem;
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-size: 0;
    transition: background 0.2s ease;
}

.blog-archive-pagination .page-numbers.prev::before,
.blog-archive-pagination .page-numbers.next::before {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    transition: border-color 0.2s ease;
}

.blog-archive-pagination .page-numbers.prev::before {
    transform: rotate(-135deg);
}

.blog-archive-pagination .page-numbers.next::before {
    transform: rotate(45deg);
}

.blog-archive-pagination .page-numbers.prev:hover,
.blog-archive-pagination .page-numbers.next:hover {
    background: var(--gold);
}

.blog-archive-pagination .page-numbers.prev:hover::before,
.blog-archive-pagination .page-numbers.next:hover::before {
    border-color: var(--base-white);
}

.blog-archive__empty {
    margin: 0;
    padding: 4rem;
    background: var(--base-white);
    color: var(--text-gray);
    font-size: var(--fz-14);
    line-height: 1.8;
    text-align: center;
}

@media (max-width: 1024px) {
    .blog-archive__layout {
        grid-template-columns: 13rem minmax(0, 1fr);
        gap: 5.6rem;
        width: min(100% - 5rem, 92rem);
    }

    .blog-archive__list.top-blog__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .page-kv {
        padding: 1.2rem 0 6.4rem;
    }

    .page-kv__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 100%;
        margin: 0;
        padding-left: 2rem;
    }

    .page-kv__text {
        min-height: 15rem;
        width: calc(100% - 4rem);
        grid-template-rows: auto;
        gap: 0;
        padding: 0;
    }

    .page-kv__breadcrumb {
        font-size: var(--fz-11);
    }

    .page-kv__en {
        font-size: 5.6rem;
    }

    .page-kv__title {
        margin-top: 1rem;
        font-size: var(--fz-14);
    }

    .page-kv__image {
        margin-left: auto;
        border-radius: 1.2rem 0 0 1.2rem;
    }

    .page-kv__image img {
        width: calc(100vw - 4rem);
        aspect-ratio: 16 / 10;
    }

    .page-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .page-toc,
    .faq-nav {
        position: static;
        top: auto;
        width: 100%;
        display: none;
    }

    .page-toc .page-sticky-nav,
    .faq-nav .page-sticky-nav {
        padding: 1.8rem 1.6rem;
    }

    .page-body,
    .faq-page {
        padding: 6.4rem 2rem 8rem;
    }

    .page-layout,
    .faq-layout {
        display: block;
    }

    .page-toc,
    .faq-nav {
        position: static;
        margin-bottom: 5.6rem;
        display: none;
    }

    .page-sticky-nav {
        display: flex;
        gap: 2rem;
        overflow-x: auto;
        padding: 1.8rem 2rem;
        white-space: nowrap;
    }

    .page-toc ul,
    .faq-nav ul {
        display: flex;
        gap: 2rem;
        overflow-x: auto;
        padding-bottom: 0.4rem;
        white-space: nowrap;
    }

    .page-toc li,
    .faq-nav li {
        list-style: none;
    }

    .page-toc li::before,
    .page-toc li::after,
    .faq-nav li::before,
    .faq-nav li::after {
        display: none !important;
        content: none !important;
    }

    .faq-section + .faq-section {
        margin-top: 7.2rem;
    }

    .faq-list {
        margin-top: 4rem;
    }

    .faq-item summary {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 1.2rem;
        min-height: 5.8rem;
        padding: 1.6rem 1.8rem;
    }

    .faq-answer {
        gap: 1.2rem;
        padding: 0 1.8rem;
    }

    .faq-answer__body {
        padding-bottom: 2.4rem;
    }

    .page-related {
        padding: 0 2rem;
    }

    .page-related__title {
        font-size: 2.4rem;
    }

    .page-related__list {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        margin-top: 5.6rem;
    }

    .page-related-card {
        grid-template-columns: 10.8rem minmax(0, 1fr);
        align-items: center;
        gap: 1.6rem;
        padding: 1.2rem;
        text-align: left;
    }

    .page-related-card__image {
        aspect-ratio: 4 / 3;
        border-radius: 0.6rem;
    }

    .page-related-card__title {
        font-size: var(--fz-14);
        line-height: 1.7;
    }

    .not-found {
        padding: 6.4rem 0 8rem;
    }

    .not-found__content {
        margin-top: 5.6rem;
        padding: 5.6rem 2rem;
    }

    .not-found h1 {
        margin-top: 3.2rem;
        font-size: var(--fz-22);
    }

    .not-found__text {
        text-align: left;
    }

    .not-found__buttons {
        display: grid;
        gap: 1.2rem;
        margin-top: 4rem;
    }

    .not-found__buttons .link-btn {
        width: 100%;
    }

    .about-section + .about-section {
        margin-top: 7.2rem;
    }

    .about-policy__lead {
        margin-top: 4rem;
        text-align: left;
    }

    .about-policy__image {
        margin-top: 4rem;
    }

    .about-promise-list,
    .about-infection-list {
        gap: 4rem;
        margin-top: 4.8rem;
    }

    .about-promise,
    .about-infection-item {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .about-promise__title {
        overflow-wrap: anywhere;
    }

    .about-promise__image,
    .about-infection-item__image {
        width: 100%;
        margin-left: auto;
    }

    .first-section + .first-section {
        margin-top: 7.2rem;
    }

    .first-belongings__list {
        margin-top: 4rem;
    }

    .first-flow__list {
        margin-top: 4.8rem;
    }

    .first-flow__item {
        grid-template-columns: 1fr;
        gap: 2.4rem;
        padding: 3.2rem 0;
    }

    .first-flow__heading {
        gap: 1rem;
        margin-bottom: 1.4rem;
    }

    .first-flow__title {
        overflow-wrap: anywhere;
    }

    .first-flow__buttons {
        gap: 1rem;
    }

    .first-flow-button {
        min-width: 13rem;
    }

    .first-flow__image {
        margin-left: auto;
    }

    .clinic-section + .clinic-section {
        margin-top: 7.2rem;
    }

    .clinic-overview__intro {
        grid-template-columns: 1fr;
        gap: 3.2rem;
        margin-top: 4rem;
    }

    .clinic-overview__image {
        order: -1;
    }

    .clinic-overview__list {
        margin-top: 4rem;
    }

    .clinic-overview__row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1.8rem 0;
    }

    .clinic-hours .site-footer__schedule {
        overflow-x: visible;
        padding: 2rem 1.6rem;
    }

    .clinic-hours .site-footer__schedule table {
        width: 100%;
        min-width: 0;
        font-size: var(--fz-12);
    }

    .clinic-hours .site-footer__schedule th,
    .clinic-hours .site-footer__schedule td {
        padding: 0.7rem 0.4rem;
    }

    .clinic-hours .site-footer__schedule-note {
        margin-top: 1rem;
        font-size: var(--fz-11);
        line-height: 1.6;
    }

    .clinic-gallery__item,
    .clinic-gallery__item.swiper-slide {
        width: min(92%, 48rem);
    }

    .clinic-gallery__item h5 {
        text-align: left;
    }

    .clinic-gallery__text {
        max-width: none;
        margin-right: 0;
        margin-left: 0;
    }

    .access-map__layout {
        grid-template-columns: 1fr;
        gap: 3.2rem;
    }

    .access-map__body h3 {
        margin-bottom: 2.4rem;
    }

    .access-map__image {
        order: -1;
    }

    .access-station__list {
        max-width: none;
    }

    .access-station-item__body {
        padding: 0 1.8rem;
    }

    .access-station-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2.4rem;
    }

    .group-section + .group-section {
        margin-top: 7.2rem;
    }

    .group-message__layout {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .group-message__image {
        order: -1;
    }

    .group-page .top-group__card,
    .group-page .top-group__card.swiper-slide {
        width: 82%;
    }

    .group-page .top-group__card a,
    .group-page .top-group__card-inner {
        padding: 1.6rem;
    }

    .group-page .top-group__nav {
        gap: 1.6rem;
        margin-top: 4rem;
    }

    .group-athlete {
        scroll-margin-top: 8rem;
    }

    .group-athlete__lead {
        margin-bottom: 4rem;
        text-align: left;
    }

    .group-corporate__row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1.6rem 0;
    }

    .group-banner-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        margin-top: 4rem;
    }

    .group-banner-link {
        min-height: 6.4rem;
    }

    .loan-section + .loan-section {
        margin-top: 7.2rem;
    }

    .loan-intro__text,
    .loan-plan__lead {
        margin-top: 4rem;
        text-align: left;
    }

    .loan-plan__overview-image {
        margin-top: 4rem;
    }

    .loan-plan__list {
        gap: 4rem;
        margin-top: 4.8rem;
    }

    .loan-plan-card {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .loan-plan-card__image {
        margin-left: auto;
    }

    .loan-button-wrap {
        margin-top: 4.8rem;
    }

    .loan-flow__list,
    .loan-simulation__list {
        margin-top: 4.8rem;
    }

    .loan-flow-card {
        grid-template-columns: 4.4rem minmax(0, 1fr);
        gap: 1.6rem;
        padding: 2rem 1.8rem;
    }

    .loan-flow-card__number {
        width: 3.4rem;
        height: 3.4rem;
    }

    .loan-flow__note {
    padding: 2rem 1rem;
    }


    .loan-simulation__list {
        gap: 5.6rem;
    }

    .treatment-archive.top-treatment {
        padding: 5.6rem 0 8rem;
    }

    .treatment-archive .top-treatment__pickup {
        margin-bottom: 6.4rem;
    }

    .treatment-archive__sections {
        gap: 6.4rem;
    }

    .treatment-archive-section {
        scroll-margin-top: 8rem;
    }

    .treatment-archive-section__title {
        margin-bottom: 2.4rem;
        font-size: var(--fz-20);
    }

    .treatment-archive__empty {
        padding: 3.2rem 2rem;
    }

    .blog-archive {
        padding: 5.6rem 0 8rem;
    }

    .blog-archive__layout {
        display: block;
        width: min(100% - 4rem, 60rem);
    }

    .blog-archive__filter {
        position: static;
        top: auto;
        margin: 0 0 4.8rem;
        padding: 0;
        overflow: visible;
    }

    .blog-category-filter {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        width: 100%;
        min-width: 0;
    }

    .blog-category-filter__button {
        min-width: 0;
        min-height: 3.2rem;
        padding: 0.4rem 1.4rem;
        font-size: var(--fz-12);
    }

    .blog-archive__list.top-blog__list {
        grid-template-columns: 1fr;
        gap: 4.8rem;
    }

    .blog-archive-pagination {
        gap: 1.2rem;
        margin-top: 5.6rem;
    }

    .blog-archive__empty {
        padding: 3.2rem 2rem;
    }

    .symptom-archive {
        padding: 7.2rem 0 8rem;
    }

    .symptom-archive__inner {
        width: min(100% - 4rem, 60rem);
    }

    .symptom-archive__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.2rem;
    }

    .symptom-archive__item.top-symptoms__item {
        min-height: 6.4rem;
        padding: 0 3.2rem 0 1.4rem;
    }

    .symptom-archive__item.top-symptoms__item span {
        font-size: var(--fz-14);
    }

    .symptom-archive__item.top-symptoms__item::after {
        right: 1.4rem;
        width: 0.7rem;
        height: 0.7rem;
    }

    .clinic-equipment__section {
        margin-top: 5.6rem;
    }

    /* 20260710 変更：SP時も分類見出しH2の余白を維持 */
    .clinic-equipment__section h2,
    .clinic-equipment__section h3 {
        margin-bottom: 2.4rem;
    }

    .clinic-equipment__cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .clinic-equipment-card__body {
        padding: 2rem;
    }
}
