.ukkmc-sub-page {
    min-height: 100dvh;
    background: #fff;
    color: #231915;
}

.sub-hero {
    position: relative;
    isolation: isolate;
    padding: 170px 0 80px;
    background: #171310 url('https://dlry93ar9nt3z.cloudfront.net/static/img/sub-bg.png') center center / cover no-repeat;
    color: #fff;
}

.sub-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(23, 19, 16, 0.2);
}

.sub-hero__inner {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
}

.sub-hero__eyebrow {
    margin: 0 0 10px;
    color: #f7cbb0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.sub-hero h1 {
    margin: 0;
    font-family: 'MaruBuri';
    font-size: 54px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: 0;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.notice-section {
    padding: 92px 0 120px;
}

.notice-section__inner {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
}

.notice-section__summary {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    color: #5f564f;
}

.notice-section__summary p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}

.notice-section__summary strong {
    color: var(--ukkmc-point-color);
    font-weight: 600;
}

.notice-search {
    display: flex;
    align-items: center;
    width: min(100%, 360px);
    height: 48px;
    border-bottom: 1px solid #231915;
}

.notice-search__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.notice-search input {
    min-width: 0;
    flex: 1;
    height: 100%;
    border: 0;
    background: transparent;
    color: #231915;
    font-size: 16px;
    line-height: 1.4;
    outline: none;
}

.notice-search input::placeholder {
    color: #9b918a;
}

.notice-search input::-webkit-search-cancel-button {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    appearance: none;
    -webkit-appearance: none;
    background: var(--ukkmc-point-color);
    cursor: pointer;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 4l8 8M12 4l-8 8' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 4l8 8M12 4l-8 8' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
}

.notice-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    color: var(--ukkmc-point-color);
    cursor: pointer;
    white-space: nowrap;
}

.notice-search button i {
    font-size: 22px;
    line-height: 1;
}

.notice-search button:focus-visible {
    outline: 2px solid var(--ukkmc-point-color);
    outline-offset: 3px;
}

.notice-list {
    border-top: 2px solid #231915;
}

.notice-list__empty {
    margin: 0;
    padding: 44px 20px;
    border-bottom: 1px solid #eadfd6;
    color: #85776b;
    text-align: center;
}

.notice-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) 132px 28px;
    align-items: center;
    gap: 22px;
    min-height: 90px;
    padding: 25px 15px 25px 0;
    border-bottom: 1px solid #eadfd6;
    color: inherit;
}

.notice-item__number {
    color: var(--ukkmc-point-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
}

.notice-item__body {
    min-width: 0;
}

.notice-item__body strong {
    display: block;
    color: #231915;
    font-family: 'MaruBuri';
    font-size: 20px;
    font-weight: 600;
    line-height: 1.42;
    word-break: keep-all;
}

.notice-item__date {
    color: #7c7068;
    font-size: 16px;
    line-height: 1.4;
    white-space: nowrap;
    text-align: center;
}

.notice-item i {
    color: var(--ukkmc-point-color);
    font-size: 22px;
    transition: transform 0.2s ease;
}

.notice-item:hover i,
.notice-item:focus-visible i {
    transform: translateX(4px);
}

.notice-item:focus-visible {
    outline: 2px solid var(--ukkmc-point-color);
    outline-offset: 6px;
}

.notice-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 46px;
}

.notice-pagination a,
.notice-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    color: #5f564f;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.notice-pagination__page.is-active {
    background: var(--ukkmc-point-color);
    color: #fff;
}

.notice-pagination__button {
    border: 1px solid #eadfd6;
}

.notice-pagination__button i {
    font-size: 18px;
    line-height: 1;
}

.notice-pagination__button--disabled {
    color: #c7bbb2;
    pointer-events: none;
}

.notice-pagination a:focus-visible {
    outline: 2px solid var(--ukkmc-point-color);
    outline-offset: 3px;
}

.notice-detail {
    padding: 92px 0 120px;
}

.notice-detail__inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.notice-detail__header {
    padding: 0 0 34px;
    border-bottom: 2px solid #231915;
}

.notice-detail__label {
    margin: 0 0 14px;
    color: var(--ukkmc-point-color);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.notice-detail__header h2 {
    margin: 0;
    color: #231915;
    font-family: 'MaruBuri';
    font-size: 36px;
    font-weight: 600;
    line-height: 1.36;
    letter-spacing: 0;
    word-break: keep-all;
}

.notice-detail__meta {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 22px 0 0;
    color: #7c7068;
}

.notice-detail__meta div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.notice-detail__meta dt,
.notice-detail__meta dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

.notice-detail__meta dt {
    color: #231915;
    font-weight: 600;
}

.notice-detail__content {
    min-height: 300px;
    padding: 54px 0 64px;
    border-bottom: 1px solid #eadfd6;
    color: #4f4741;
    font-size: 17px;
    line-height: 1.9;
    word-break: keep-all;
}

.notice-detail__content p {
    margin: 0;
}

.notice-detail__content p + p {
    margin-top: 18px;
}

.notice-detail__files {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 30px;
    padding: 28px 0;
    border-bottom: 1px solid #eadfd6;
}

.notice-detail__files h3 {
    margin: 0;
    color: #231915;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
}

.notice-detail__files ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.notice-detail__files p {
    margin: 0;
    color: #7c7068;
    font-size: 16px;
    line-height: 1.6;
}

.notice-detail__files a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    color: #4f4741;
    font-size: 16px;
    line-height: 1.5;
}

.notice-detail__files a i {
    flex-shrink: 0;
    color: var(--ukkmc-point-color);
    font-size: 18px;
}

.notice-detail__files a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-detail__files a em {
    flex-shrink: 0;
    color: #9b918a;
    font-style: normal;
    font-size: 14px;
}

.notice-detail__files a:focus-visible,
.notice-detail__nav-item:focus-visible,
.notice-detail__list-button:focus-visible {
    outline: 2px solid var(--ukkmc-point-color);
    outline-offset: 3px;
}

.notice-detail__nav {
    border-bottom: 1px solid #eadfd6;
}

.notice-detail__nav-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 24px;
    min-height: 76px;
    border-top: 1px solid #eadfd6;
    color: inherit;
}

.notice-detail__nav-item.is-disabled {
    color: #a69a91;
    cursor: default;
}

.notice-detail__nav-item span {
    color: var(--ukkmc-point-color);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.notice-detail__nav-item strong {
    overflow: hidden;
    color: #4f4741;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-detail__nav-item i {
    color: var(--ukkmc-point-color);
    font-size: 20px;
    line-height: 1;
}

.notice-detail__actions {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.notice-detail__list-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 150px;
    height: 52px;
    padding: 0 24px;
    background: #231915;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.notice-detail__list-button i {
    font-size: 18px;
    line-height: 1;
}

.location-page {
    position: relative;
    overflow: hidden;
    padding: 100px 0 132px;
    background: #fff;
}

.location-page::before {
    content: "";
    position: absolute;
    right: -160px;
    bottom: 120px;
    width: min(40vw, 560px);
    aspect-ratio: 1 / 1;
    background: url('https://dlry93ar9nt3z.cloudfront.net/static/img/video-bg.svg') right bottom / contain no-repeat;
    opacity: 0.12;
    pointer-events: none;
}

.location-page__inner {
    position: relative;
    z-index: 1;
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "hours"
        "map"
        "guide";
    gap: 0;
    align-items: start;
}

.location-map {
    grid-area: map;
    width: 75%;
    margin:30px auto;
    aspect-ratio: 2 / 1;
    overflow: hidden; 
}

.location-map img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-hours-summary {
    grid-area: hours;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 44px;
    margin-bottom: 36px;
    padding: 30px 0;
    border-top: 1px solid #ded2c8;
    border-bottom: 1px solid #ded2c8;
    align-items: center;
}

.location-hours-summary h3 {
    margin: 0;
    color: #231915;
    font-family: 'MaruBuri';
    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.location-hours-summary dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin: 0;
}

.location-hours-summary dt {
    margin-bottom: 8px;
    color: var(--ukkmc-point-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
}

.location-hours-summary dd {
    margin: 0;
    color: #5f564f;
    font-size: 16px;
    line-height: 1.72;
    word-break: keep-all;
}

.location-guide {
    grid-area: guide;
    display: block;
    width: 100%;
    margin: 0 auto;
}

.location-guide__row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 44px;
    padding: 34px 0;
    border-bottom: 1px solid #ded2c8;
}

.location-guide__row--contact {
    grid-area: auto;
    align-self: auto;
    border-top: 0;
}

.location-guide__row--address {
    grid-area: auto;
    border-top: 0;
}

.location-guide__row--traffic {
    grid-area: auto;
    border-top: 0;
}

.location-guide__row h3 {
    margin: 0;
    color: #231915;
    font-family: 'MaruBuri';
    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.location-guide__columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.location-guide__columns strong {
    display: block;
    margin-bottom: 9px;
    color: var(--ukkmc-point-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
}

.location-guide__columns p {
    margin: 0;
    color: #5f564f;
    font-size: 16px;
    line-height: 1.72;
    word-break: keep-all;
}

.location-guide__columns p + p {
    margin-top: 5px;
}

.location-guide__columns a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.location-guide__columns a:focus-visible {
    outline: 2px solid var(--ukkmc-point-color);
    outline-offset: 3px;
}

.location-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.location-contact__phone {
    color: #231915;
    font-family: 'MaruBuri';
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.location-contact__reservation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    background: var(--ukkmc-point-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.location-contact__reservation i {
    font-size: 21px;
    line-height: 1;
}

.location-contact a:focus-visible {
    outline: 2px solid var(--ukkmc-point-color);
    outline-offset: 3px;
}

.doctor-page {
    position: relative;
    overflow: hidden;
    padding: 100px 0 132px;
    background: #fff;
}

.doctor-page::before {
    content: "";
    position: absolute;
    top: 170px;
    right: -120px;
    width: min(36vw, 520px);
    aspect-ratio: 1 / 1;
    background: url('https://dlry93ar9nt3z.cloudfront.net/static/img/video-bg01.svg') right top / contain no-repeat;
    opacity: 0.14;
    pointer-events: none;
}

.doctor-page__inner {
    position: relative;
    z-index: 1;
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
}

.doctor-page__header {
    max-width: 760px;
    margin-bottom: 74px;
}

.doctor-page__eyebrow {
    margin: 0 0 16px;
    color: var(--ukkmc-point-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.doctor-page__header h2 {
    margin: 0;
    color: #231915;
    font-family: 'MaruBuri';
    font-size: 48px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.03em;
    word-break: keep-all;
}

.doctor-page__list {
    display: grid;
    gap: 200px;
}

.doctor-card {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
    align-items: center;
    gap: 64px;
}

.doctor-card--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
}

.doctor-card--reverse .doctor-card__visual {
    order: 2;
}

.doctor-card--reverse .doctor-card__content {
    order: 1;
}

.doctor-card__visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #f4eae3;
    border-radius:0 150px 0 0;
}

.doctor-card__visual::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: #eadfd6;
}

.doctor-card__visual img {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 1;
    width: min(88%, 420px);
    height: 96%;
    object-fit: contain;
    object-position: bottom center;
    transform: translateX(-50%);
}

.doctor-card__content {
    position: relative;
    padding: 52px 0;
}

.doctor-card__number {
    position: absolute;
    top: 0;
    right: 0;
    color: rgba(185, 132, 97, 0.16);
    font-size: 150px;
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.02em; 
}

.doctor-card__role {
    margin: 0 0 12px;
    color: var(--ukkmc-point-color);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.doctor-card h3 {
    margin: 0;
    color: #231915;
    font-family: 'MaruBuri';
    font-size: 42px;
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.03em;
}

.doctor-card--featured h3 {
    font-size: 54px;
}

.doctor-card--featured h3 span {
    color: var(--ukkmc-point-color);
}

.doctor-card__profile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
    max-width: 640px;
    margin: 38px 0 0;
    padding: 32px 0 0;
    border-top: 1px solid #eadfd6;
    list-style: none;
}

.doctor-card__profile li {
    position: relative;
    padding-left: 18px;
    color: #4f4741;
    font-size: 17px;
    line-height: 1.55;
    word-break: keep-all;
}

.doctor-card__profile li::before {
    content: "\e93f";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--ukkmc-point-color);
    font-family: 'xeicon';
}


@media (max-width: 960px) {
    .sub-hero {
        padding: 150px 0 76px;
    }

    .sub-hero h1 {
        font-size: 44px;
    }

    .notice-section {
        padding: 72px 0 92px;
    }

    .notice-item {
        grid-template-columns: 54px minmax(0, 1fr) 24px;
        gap: 16px;
    }

    .notice-item__date {
        grid-column: 2;
        grid-row: 2;
    }

    .notice-item i {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

    .notice-detail,
    .location-page,
    .doctor-page {
        padding: 78px 0 96px;
    }

    .notice-detail__header h2 {
        font-size: 30px;
    }

    .notice-detail__files {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 24px;
    }

    .doctor-page__header {
        margin-bottom: 52px;
    }

    .doctor-page__header h2 {
        font-size: 38px;
    }

    .doctor-card,
    .doctor-card--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .location-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "hours"
            "map"
            "guide";
        gap: 0;
    }

    .location-hours-summary,
    .location-guide__row {
        grid-template-columns: 120px 1fr;
        gap: 28px;
    }

    .location-hours-summary dl,
    .location-guide__columns {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .location-contact {
        align-items: flex-start;
    }

    .doctor-card--reverse .doctor-card__visual,
    .doctor-card--reverse .doctor-card__content {
        order: initial;
    }

    .doctor-card__visual {
        min-height: 460px;
    }

    .doctor-card__content {
        padding: 0;
    }

    .doctor-card__number {
        top: -8px;
        font-size: 86px;
    }
}

@media (max-width: 640px) {
    .sub-hero {
        padding: 148px 0 58px;
    }

    .sub-hero__inner,
    .notice-section__inner,
    .notice-detail__inner,
    .location-page__inner,
    .doctor-page__inner {
        width: min(100%, calc(100% - 24px));
    }

    .sub-hero h1 {
        font-size: 34px;
    }

    .notice-section__summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .notice-search {
        width: 100%;
    }

    .notice-item {
        grid-template-columns: 1fr 24px;
        min-height: 0;
        padding: 24px 0;
    }

    .notice-item__number {
        grid-column: 1 / -1;
        font-size: 14px;
    }

    .notice-item__body {
        grid-column: 1;
    }

    .notice-item__body strong {
        font-size: 21px;
    }

    .notice-item__date {
        grid-column: 1;
    }

    .notice-item i {
        grid-column: 2;
        grid-row: 2 / span 2;
    }

    .notice-detail,
    .location-page,
    .doctor-page {
        padding: 62px 0 74px;
    }

    .notice-detail__header {
        padding-bottom: 26px;
    }

    .notice-detail__header h2 {
        font-size: 25px;
    }

    .notice-detail__meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .notice-detail__content {
        min-height: 240px;
        padding: 38px 0 46px;
        font-size: 16px;
    }

    .notice-detail__files {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 24px 0;
    }

    .notice-detail__files a {
        width: 100%;
    }

    .notice-detail__nav-item {
        grid-template-columns: 72px minmax(0, 1fr) 22px;
        gap: 14px;
        min-height: 68px;
    }

    .notice-detail__nav-item span {
        text-align: left;
    }

    .location-page::before,
    .doctor-page::before {
        width: 86vw;
        opacity: 0.1;
    }

    .doctor-page__header {
        margin-bottom: 42px;
    }

    .doctor-page__header h2 {
        font-size: 30px;
    }

    .location-layout {
        gap: 0;
    }

    .location-hours-summary,
    .location-guide__row {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 0;
    }

    .location-hours-summary h3,
    .location-guide__row h3 {
        font-size: 22px;
    }

    .location-guide__columns {
        gap: 20px;
    }

    .location-contact__phone {
        font-size: 30px;
    }

    .location-contact__reservation {
        width: 100%;
    }

    .doctor-page__list {
        gap: 54px;
    }

    .doctor-card__visual {
        min-height: 390px;
    }

    .doctor-card__visual img {
        width: min(92%, 330px);
    }

    .doctor-card h3 {
        font-size: 32px;
    }

    .doctor-card--featured h3 {
        font-size: 38px;
    }

    .doctor-card__profile {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 28px;
        padding-top: 24px;
    }

    .doctor-card__profile li {
        font-size: 16px;
    }
}

@media (max-width: 1400px) {
    .doctor-page {
        padding: 88px 0 116px;
    }

    .doctor-page__header {
        margin-bottom: 62px;
    }

    .doctor-page__list {
        gap: 150px;
    }

    .doctor-card,
    .doctor-card--reverse {
        grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1fr);
        gap: 50px;
    }

    .doctor-card--reverse {
        grid-template-columns: minmax(0, 1fr) minmax(310px, 0.78fr);
    }

    .doctor-card__visual {
        min-height: 500px;
    }

    .doctor-card__profile {
        gap: 10px 20px;
    }
}

@media (max-width: 1024px) {
    .sub-hero--doctor {
        padding: 150px 0 72px;
    }

    .sub-hero--doctor h1 {
        font-size: 44px;
    }

    .doctor-page {
        padding: 76px 0 96px;
    }

    .doctor-page::before {
        top: 120px;
        right: -180px;
        width: 520px;
    }

    .doctor-page__header {
        max-width: 620px;
        margin-bottom: 48px;
    }

    .doctor-page__header h2 {
        font-size: 38px;
        letter-spacing: 0;
    }

    .doctor-page__list {
        gap: 88px;
    }

    .doctor-card,
    .doctor-card--reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .doctor-card--reverse .doctor-card__visual,
    .doctor-card--reverse .doctor-card__content {
        order: initial;
    }

    .doctor-card__visual {
        width: min(100%, 560px);
        min-height: 460px;
    }

    .doctor-card__content {
        padding: 0;
    }

    .doctor-card__number {
        top: -4px;
        font-size: 92px;
    }

    .doctor-card h3 {
        font-size: 38px;
        letter-spacing: 0;
    }

    .doctor-card--featured h3 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .sub-hero--doctor {
        padding: 138px 0 56px;
    }

    .sub-hero--doctor h1 {
        font-size: 34px;
    }

    .doctor-page {
        padding: 62px 0 78px;
    }

    .doctor-page__inner {
        width: min(100%, calc(100% - 24px));
    }

    .doctor-page__header {
        margin-bottom: 40px;
    }

    .doctor-page__eyebrow {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .doctor-page__header h2 {
        font-size: 30px;
    }

    .doctor-page__list {
        gap: 58px;
    }

    .doctor-card {
        gap: 24px;
    }

    .doctor-card__visual {
        min-height: 390px;
        border-radius: 0 110px 0 0;
    }

    .doctor-card__visual img {
        width: min(92%, 330px);
    }

    .doctor-card__number {
        font-size: 74px;
    }

    .doctor-card__role {
        margin-bottom: 8px;
        font-size: 15px;
    }

    .doctor-card h3 {
        font-size: 31px;
    }

    .doctor-card--featured h3 {
        font-size: 38px;
    }

    .doctor-card__profile {
        grid-template-columns: 1fr;
        gap: 9px;
        max-width: none;
        margin-top: 26px;
        padding-top: 22px;
    }

    .doctor-card__profile li {
        font-size: 16px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .sub-hero--doctor {
        padding: 124px 0 46px;
    }

    .sub-hero--doctor h1 {
        font-size: 30px;
    }

    .doctor-page {
        padding: 52px 0 66px;
    }

    .doctor-page::before {
        top: 80px;
        right: -210px;
        width: 430px;
        opacity: 0.08;
    }

    .doctor-page__header {
        margin-bottom: 32px;
    }

    .doctor-page__header h2 {
        font-size: 27px;
    }

    .doctor-page__list {
        gap: 50px;
    }

    .doctor-card {
        gap: 20px;
    }

    .doctor-card__visual {
        min-height: 315px;
        border-radius: 0 72px 0 0;
    }

    .doctor-card__visual img {
        width: min(92%, 270px);
    }

    .doctor-card__number {
        top: 0;
        font-size: 58px;
    }

    .doctor-card h3 {
        padding-right: 54px;
        font-size: 27px;
        line-height: 1.25;
    }

    .doctor-card--featured h3 {
        font-size: 32px;
    }

    .doctor-card__profile {
        margin-top: 22px;
        padding-top: 20px;
    }

    .doctor-card__profile li {
        padding-left: 16px;
        font-size: 15px;
        line-height: 1.48;
    }
}

@media (max-width: 1400px) {
    .notice-section {
        padding: 84px 0 108px;
    }

    .notice-item {
        grid-template-columns: 68px minmax(0, 1fr) 120px 26px;
        gap: 18px;
    }
}

@media (max-width: 1024px) {
    .sub-hero--clinic,
    .sub-hero--notice {
        padding: 150px 0 72px;
    }

    .sub-hero--clinic h1,
    .sub-hero--notice h1 {
        font-size: 44px;
    }

    .notice-section {
        padding: 72px 0 92px;
    }

    .notice-section__summary {
        align-items: center;
        gap: 20px;
        margin-bottom: 24px;
    }

    .notice-section__summary p {
        font-size: 16px;
    }

    .notice-search {
        width: min(100%, 320px);
    }

    .notice-item {
        grid-template-columns: 54px minmax(0, 1fr) 112px 24px;
        gap: 14px;
        min-height: 84px;
        padding: 22px 8px 22px 0;
    }

    .notice-item__number {
        font-size: 17px;
    }

    .notice-item__body strong {
        font-size: 19px;
    }

    .notice-item__date {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .sub-hero--clinic,
    .sub-hero--notice {
        padding: 138px 0 56px;
    }

    .sub-hero--clinic h1,
    .sub-hero--notice h1 {
        font-size: 34px;
    }

    .notice-section {
        padding: 58px 0 76px;
    }

    .notice-section__inner {
        width: min(100%, calc(100% - 24px));
    }

    .notice-section__summary {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 22px;
    }

    .notice-search {
        width: 100%;
        max-width: 420px;
    }

    .notice-item {
        grid-template-columns: 44px minmax(0, 1fr) 22px;
        gap: 12px;
        min-height: 0;
        padding: 22px 0;
    }

    .notice-item__number {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: start;
        padding-top: 3px;
        font-size: 15px;
    }

    .notice-item__body {
        grid-column: 2;
        grid-row: 1;
    }

    .notice-item__body strong {
        font-size: 18px;
        line-height: 1.45;
    }

    .notice-item__date {
        grid-column: 2;
        grid-row: 2;
        font-size: 14px;
        text-align: left;
    }

    .notice-item i {
        grid-column: 3;
        grid-row: 1 / span 2;
        align-self: center;
        font-size: 20px;
    }

    .notice-pagination {
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 36px;
    }

    .notice-pagination a,
    .notice-pagination span {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .sub-hero--clinic,
    .sub-hero--notice {
        padding: 124px 0 46px;
    }

    .sub-hero--clinic h1,
    .sub-hero--notice h1 {
        font-size: 30px;
    }

    .notice-section {
        padding: 46px 0 62px;
    }

    .notice-section__summary {
        gap: 14px;
    }

    .notice-section__summary p {
        font-size: 15px;
    }

    .notice-search {
        height: 44px;
    }

    .notice-search input {
        font-size: 15px;
    }

    .notice-search button {
        width: 38px;
        height: 38px;
    }

    .notice-item {
        grid-template-columns: 1fr 22px;
        gap: 8px 10px;
        padding: 20px 0;
    }

    .notice-item__number {
        grid-column: 1;
        grid-row: 1;
        padding-top: 0;
        font-size: 13px;
        text-align: left;
    }

    .notice-item__body {
        grid-column: 1;
        grid-row: 2;
    }

    .notice-item__body strong {
        font-size: 17px;
    }

    .notice-item__date {
        grid-column: 1;
        grid-row: 3;
        font-size: 13px;
    }

    .notice-item i {
        grid-column: 2;
        grid-row: 1 / span 3;
    }

    .notice-pagination {
        margin-top: 30px;
    }
}

@media (max-width: 1400px) {
    .notice-detail {
        padding: 84px 0 108px;
    }
}

@media (max-width: 1024px) {
    .notice-detail {
        padding: 72px 0 92px;
    }

    .notice-detail__inner {
        width: min(960px, calc(100% - 32px));
    }

    .notice-detail__header {
        padding-bottom: 30px;
    }

    .notice-detail__header h2 {
        font-size: 32px;
    }

    .notice-detail__content {
        min-height: 260px;
        padding: 46px 0 56px;
        font-size: 16px;
        line-height: 1.85;
    }

    .notice-detail__files {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .notice-detail {
        padding: 58px 0 76px;
    }

    .notice-detail__inner {
        width: min(100%, calc(100% - 24px));
    }

    .notice-detail__header {
        padding-bottom: 26px;
    }

    .notice-detail__label {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .notice-detail__header h2 {
        font-size: 26px;
        line-height: 1.38;
    }

    .notice-detail__meta {
        flex-wrap: wrap;
        gap: 10px 18px;
        margin-top: 18px;
    }

    .notice-detail__meta dt,
    .notice-detail__meta dd {
        font-size: 14px;
    }

    .notice-detail__content {
        min-height: 220px;
        padding: 38px 0 46px;
        font-size: 16px;
        line-height: 1.75;
    }

    .notice-detail__content img,
    .notice-detail__content video,
    .notice-detail__content iframe {
        max-width: 100%;
        height: auto;
    }

    .notice-detail__content table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }

    .notice-detail__files {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 0;
    }

    .notice-detail__files h3 {
        font-size: 17px;
    }

    .notice-detail__files a {
        display: flex;
        width: 100%;
        min-width: 0;
        font-size: 15px;
    }

    .notice-detail__files a span {
        min-width: 0;
    }

    .notice-detail__nav-item {
        grid-template-columns: 74px minmax(0, 1fr) 22px;
        gap: 14px;
        min-height: 68px;
    }

    .notice-detail__nav-item span {
        font-size: 14px;
        text-align: left;
    }

    .notice-detail__nav-item strong {
        font-size: 15px;
    }

    .notice-detail__actions {
        margin-top: 36px;
    }
}

@media (max-width: 480px) {
    .notice-detail {
        padding: 46px 0 62px;
    }

    .notice-detail__header {
        padding-bottom: 22px;
    }

    .notice-detail__header h2 {
        font-size: 23px;
    }

    .notice-detail__meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
        margin-top: 16px;
    }

    .notice-detail__content {
        min-height: 190px;
        padding: 32px 0 40px;
        font-size: 15px;
        line-height: 1.7;
    }

    .notice-detail__files {
        padding: 22px 0;
    }

    .notice-detail__files a {
        align-items: flex-start;
        gap: 8px;
    }

    .notice-detail__files a em {
        font-size: 12px;
    }

    .notice-detail__nav-item {
        grid-template-columns: 1fr 22px;
        gap: 6px 10px;
        min-height: 0;
        padding: 18px 0;
    }

    .notice-detail__nav-item span {
        grid-column: 1;
        grid-row: 1;
        font-size: 13px;
    }

    .notice-detail__nav-item strong {
        grid-column: 1;
        grid-row: 2;
        font-size: 15px;
        white-space: normal;
    }

    .notice-detail__nav-item i {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
    }

    .notice-detail__list-button {
        width: 100%;
        height: 48px;
        font-size: 15px;
    }
}

@media (max-width: 1400px) {
    .location-page {
        padding: 88px 0 116px;
    }

    .location-map {
        width: min(100%, 1080px);
    }

    .location-hours-summary,
    .location-guide__row {
        grid-template-columns: 130px minmax(0, 1fr);
        gap: 36px;
    }
}

@media (max-width: 1024px) {
    .sub-hero--location {
        padding: 150px 0 72px;
    }

    .sub-hero--location h1 {
        font-size: 44px;
    }

    .location-page {
        padding: 72px 0 92px;
    }

    .location-page::before {
        right: -220px;
        bottom: 80px;
        width: 520px;
    }

    .location-map {
        width: 100%;
        margin: 24px auto;
    }

    .location-hours-summary,
    .location-guide__row {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 28px;
        padding: 28px 0;
    }

    .location-hours-summary dl {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .location-guide__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .location-contact {
        flex-wrap: wrap;
        gap: 16px 20px;
    }

    .location-contact__phone {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .sub-hero--location {
        padding: 138px 0 56px;
    }

    .sub-hero--location h1 {
        font-size: 34px;
    }

    .location-page {
        padding: 58px 0 76px;
    }

    .location-page__inner {
        width: min(100%, calc(100% - 24px));
    }

    .location-page::before {
        right: -230px;
        bottom: 60px;
        width: 480px;
        opacity: 0.09;
    }

    .location-hours-summary {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 28px;
        padding: 26px 0;
    }

    .location-hours-summary h3,
    .location-guide__row h3 {
        font-size: 22px;
    }

    .location-hours-summary dl {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .location-hours-summary dl div {
        display: grid;
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
    }

    .location-hours-summary dt {
        margin: 0;
        font-size: 15px;
    }

    .location-hours-summary dd {
        font-size: 15px;
    }

    .location-map {
        margin: 22px auto;
    }

    .location-guide__row {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 0;
    }

    .location-guide__columns {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .location-guide__columns strong {
        margin-bottom: 7px;
        font-size: 15px;
    }

    .location-guide__columns p {
        font-size: 15px;
    }

    .location-contact {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .location-contact__phone {
        font-size: 31px;
    }

    .location-contact__reservation {
        min-height: 48px;
        padding: 0 22px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .sub-hero--location {
        padding: 124px 0 46px;
    }

    .sub-hero--location h1 {
        font-size: 30px;
    }

    .location-page {
        padding: 46px 0 62px;
    }

    .location-hours-summary {
        margin-bottom: 22px;
        padding: 22px 0;
    }

    .location-hours-summary h3,
    .location-guide__row h3 {
        font-size: 20px;
    }

    .location-hours-summary dl div {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 12px;
    }

    .location-map {
        margin: 18px auto;
        aspect-ratio: 2 / 1;
    }

    .location-guide__row {
        gap: 14px;
        padding: 24px 0;
    }

    .location-contact__phone {
        font-size: 28px;
    }

    .location-contact__reservation {
        width: 100%;
        min-height: 48px;
    }
}
