@charset "UTF-8";

/* =========================================================
   RESET
========================================================= */

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: #333333;
    background: #ffffff;
    font-family:
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.04em;
}

body.is-drawer-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    padding: 0;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

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

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

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

main {
    display: block;
}

.site-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section {
    position: relative;
    padding: 120px 0;
}

.section-inner {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
}

.section-heading {
    margin-bottom: 58px;
    text-align: left;
}

.section-heading__en {
    margin-bottom: 8px;
    color: #b5965e;
    font-family: "Noto Serif JP", serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.22em;
}

.section-heading__title {
    color: #2f2f2f;
    font-family: "Noto Serif JP", serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.section-heading__text {
    max-width: 760px;
    margin: 20px auto 0;
    font-size: 1.6rem;
    line-height: 2;
}

.section-button-wrap {
    margin-top: 55px;
    text-align: center;
}

/* =========================================================
   COMMON BUTTON
========================================================= */

.common-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 320px;
    min-height: 68px;
    padding: 18px 28px 18px 34px;
    overflow: hidden;
    color: #ffffff;
    background: #b49661;
    border: 1px solid #b49661;
    transition:
        color 0.35s ease,
        background 0.35s ease;
}

.common-button::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.35s ease;
}

.common-button span {
    position: relative;
    z-index: 1;
}

.common-button span:first-child {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.common-button span:last-child {
    margin-left: 28px;
    font-size: 2rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.common-button:hover {
    color: #b49661;
}

.common-button:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
}

.common-button:hover span:last-child {
    transform: translateX(5px);
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e8e3db;
}

.site-header__upper {
    background: #ffffff;
}

.site-header__inner {
    width: min(1420px, calc(100% - 48px));
    margin: 0 auto;
}

.site-header__upper .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 106px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    display: block;
    width: auto;
    height: 70px;
}

.site-header__right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-tel {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #473b2a;
}

.header-tel__icon {
    display: grid;
    width: 44px;
    height: 44px;
    color: #ffffff;
    background: #b49661;
    border-radius: 50%;
    place-items: center;
}

.header-tel__content {
    display: flex;
    flex-direction: column;
}

.header-tel__number {
    font-family: "Noto Serif JP", serif;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.header-tel__hours {
    margin-top: 5px;
    color: #797979;
    font-size: 1.1rem;
    line-height: 1.4;
}

.header-action {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.header-action__button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 52px;
    padding: 10px 15px;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.header-action__button:hover {
    opacity: 0.82;
    transform: translateY(-2px);
}

.header-action__button--reserve {
    background: #b49661;
}

.header-action__button--line {
    background: #67b260;
}

.header-action__icon {
    margin-right: 7px;
}

.site-header__lower {
    background: #ffffff;
    border-top: 1px solid #eeeeee;
}

.global-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-nav__item {
    position: relative;
}

.global-nav__item + .global-nav__item::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 14px;
    content: "";
    background: #dddddd;
    transform: translateY(-50%);
}

.global-nav__link {
    position: relative;
    display: block;
    padding: 18px 29px;
    color: #444444;
    font-size: 1.3rem;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.global-nav__link::after {
    position: absolute;
    right: 28px;
    bottom: 8px;
    left: 28px;
    height: 1px;
    content: "";
    background: #b49661;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.3s ease;
}

.global-nav__link:hover::after,
.global-nav__link.is-current::after {
    transform: scaleX(1);
    transform-origin: left center;
}

/* =========================================================
   DRAWER BUTTON
========================================================= */

.drawer-button {
    display: none;
    width: 54px;
    height: 54px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #b49661;
}

.drawer-button__line {
    width: 23px;
    height: 1px;
    margin: 3px 0;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.drawer-button__text {
    margin-top: 4px;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1;
    letter-spacing: 0.08em;
}

.drawer-button[aria-expanded="true"] .drawer-button__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.drawer-button[aria-expanded="true"] .drawer-button__line:nth-child(2) {
    opacity: 0;
}

.drawer-button[aria-expanded="true"] .drawer-button__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   DRAWER MENU
========================================================= */

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgb(0 0 0 / 45%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.drawer-overlay.is-visible {
    opacity: 1;
}

.drawer-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    width: min(460px, 90vw);
    height: 100dvh;
    overflow-y: auto;
    background: #ffffff;
    box-shadow: -10px 0 30px rgb(0 0 0 / 10%);
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.drawer-menu.is-open {
    transform: translateX(0);
}

.drawer-menu__header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 12px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e9e3da;
}

.drawer-menu__logo {
    display: flex;
    align-items: center;
}

.drawer-menu__logo img {
    width: 48px;
    margin-right: 12px;
}

.drawer-menu__logo span {
    display: flex;
    flex-direction: column;
}

.drawer-menu__logo strong {
    color: #795f38;
    font-family: "Noto Serif JP", serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3;
}

.drawer-menu__logo small {
    margin-top: 2px;
    font-size: 1rem;
}

.drawer-menu__close {
    position: relative;
    width: 44px;
    height: 44px;
}

.drawer-menu__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 27px;
    height: 1px;
    background: #333333;
}

.drawer-menu__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-menu__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-menu__body {
    padding: 18px 24px 40px;
}

.drawer-nav__item {
    border-bottom: 1px solid #e8e4de;
}

.drawer-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    color: #333333;
    font-size: 1.4rem;
    font-weight: 500;
}

.drawer-nav__link span:last-child {
    color: #b49661;
    font-size: 1.7rem;
}

.drawer-nav__link.is-current {
    color: #9d7c47;
}

.drawer-menu__treatment {
    margin-top: 32px;
}

.drawer-menu__heading {
    padding-bottom: 12px;
    color: #8c6e42;
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    border-bottom: 1px solid #b49661;
}

.drawer-treatment__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
    margin-top: 8px;
}

.drawer-treatment__list li {
    border-bottom: 1px solid #ece8e2;
}

.drawer-treatment__list a {
    position: relative;
    display: block;
    padding: 13px 18px 13px 0;
    color: #555555;
    font-size: 1.25rem;
}

.drawer-treatment__list a::after {
    position: absolute;
    top: 50%;
    right: 2px;
    color: #b49661;
    content: "›";
    transform: translateY(-50%);
}

.drawer-menu__contact {
    margin-top: 34px;
}

.drawer-contact {
    display: block;
    padding: 18px;
    text-align: center;
}

.drawer-contact--tel {
    color: #ffffff;
    background: #3d392f;
}

.drawer-contact small,
.drawer-contact span {
    display: block;
}

.drawer-contact small {
    font-size: 1.1rem;
}

.drawer-contact strong {
    display: block;
    margin-top: 4px;
    font-family: "Noto Serif JP", serif;
    font-size: 2.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.drawer-contact span {
    margin-top: 4px;
    font-size: 1rem;
}

.drawer-contact__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}

.drawer-contact__button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
}

.drawer-contact__button--reserve {
    background: #b49661;
}

.drawer-contact__button--line {
    background: #65af5e;
}

/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact {
    padding: 94px 0;
    color: #ffffff;
    background:
        linear-gradient(rgb(53 48 40 / 92%), rgb(53 48 40 / 92%)),
        url("/assets/images/common/footer-contact-bg.jpg") center / cover no-repeat;
}

.footer-contact__inner {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
}

.footer-contact__intro {
    text-align: center;
}

.footer-contact__sub {
    color: #d5c4a5;
    font-size: 1.3rem;
    letter-spacing: 0.18em;
}

.footer-contact__title {
    margin-top: 12px;
    font-family: "Noto Serif JP", serif;
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.08em;
}

.footer-contact__text {
    margin-top: 18px;
    color: rgb(255 255 255 / 82%);
    font-size: 1.5rem;
    line-height: 2;
}

.footer-contact__buttons {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 12px;
    margin-top: 48px;
}

.footer-contact__button {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 116px;
    padding: 20px 28px;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.footer-contact__button:hover {
    opacity: 0.86;
    transform: translateY(-3px);
}

.footer-contact__button--tel {
    background: #1f1f1f;
}

.footer-contact__button--reserve {
    background: #b49661;
}

.footer-contact__button--line {
    background: #67b260;
}

.footer-contact__icon {
    flex-shrink: 0;
    margin-right: 18px;
}

.footer-contact__button-content {
    display: flex;
    flex-direction: column;
}

.footer-contact__button-content small {
    font-size: 1.05rem;
    line-height: 1.5;
}

.footer-contact__button-content strong {
    margin-top: 2px;
    font-family: "Noto Serif JP", serif;
    font-size: 2.7rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.footer-contact__button-content span {
    margin-top: 3px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.footer-contact__arrow {
    position: absolute;
    right: 22px;
    font-size: 2rem;
}

/* =========================================================
   FOOTER MAIN
========================================================= */

.site-footer {
    color: #333333;
    background: #ffffff;
}

.site-footer__main {
    padding: 86px 0 68px;
    background: #f8f6f2;
}

.site-footer__inner {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
}

.site-footer__main .site-footer__inner {
    display: grid;
    grid-template-columns: 1.05fr 1.35fr 1fr;
    gap: 50px;
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo__mark {
    width: 68px;
    margin-right: 16px;
}

.footer-logo__english {
    display: block;
    color: #765e3b;
    font-family: "Noto Serif JP", serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.35;
}

.footer-logo__japanese {
    display: block;
    margin-top: 4px;
    color: #5e5e5e;
    font-size: 1.1rem;
}

.footer-clinic__address {
    margin-top: 28px;
    color: #555555;
    font-size: 1.3rem;
    line-height: 1.9;
}

.footer-clinic__contact {
    margin-top: 22px;
}

.footer-clinic__tel {
    display: inline-flex;
    align-items: center;
    color: #443b2d;
    font-family: "Noto Serif JP", serif;
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.footer-clinic__tel span {
    margin-right: 8px;
    color: #b49661;
    font-size: 2rem;
}

.footer-clinic__contact p {
    margin-top: 4px;
    color: #777777;
    font-size: 1.05rem;
}

.footer-hours__heading h2 {
    color: #57452b;
    font-family: "Noto Serif JP", serif;
    font-size: 2rem;
    font-weight: 500;
}

.footer-hours__table-wrap {
    margin-top: 20px;
    overflow-x: auto;
}

.footer-hours__table {
    min-width: 520px;
    background: #ffffff;
}

.footer-hours__table th,
.footer-hours__table td {
    padding: 11px 8px;
    text-align: center;
    border: 1px solid #ded7cc;
}

.footer-hours__table thead th {
    color: #ffffff;
    background: #8a7048;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-hours__table tbody th {
    color: #555555;
    background: #eee8de;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-hours__table tbody td {
    color: #8d6c37;
    font-size: 1.3rem;
}

.footer-hours__note {
    margin-top: 10px;
    color: #777777;
    font-size: 1.05rem;
}

.footer-map__link {
    position: relative;
    display: block;
    overflow: hidden;
}

.footer-map__link img {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.footer-map__link:hover img {
    transform: scale(1.04);
}

.footer-map__label {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 9px 12px;
    color: #ffffff;
    background: rgb(50 45 37 / 85%);
    font-size: 1.15rem;
    text-align: center;
}

.footer-map__label span {
    margin-right: 5px;
    color: #c5a56e;
}

/* =========================================================
   FOOTER NAVIGATION
========================================================= */

.site-footer__navigation {
    padding: 64px 0;
    background: #ffffff;
    border-top: 1px solid #ece7df;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px;
}

.footer-nav__heading {
    padding-bottom: 13px;
    color: #725b37;
    font-family: "Noto Serif JP", serif;
    font-size: 1.7rem;
    border-bottom: 1px solid #b49661;
}

.footer-nav__list {
    margin-top: 12px;
}

.footer-nav__list li {
    border-bottom: 1px solid #eeeeee;
}

.footer-nav__list a {
    position: relative;
    display: block;
    padding: 11px 18px 11px 0;
    color: #555555;
    font-size: 1.2rem;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.footer-nav__list a::after {
    position: absolute;
    top: 50%;
    right: 2px;
    color: #b49661;
    content: "›";
    transform: translateY(-50%);
}

.footer-nav__list a:hover {
    padding-left: 5px;
    color: #9c7a46;
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.site-footer__bottom {
    padding: 22px 0;
    color: rgb(255 255 255 / 76%);
    background: #302e2a;
}

.site-footer__bottom .site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.footer-bottom-nav a {
    font-size: 1.05rem;
}

.site-footer__copyright {
    font-size: 1rem;
    letter-spacing: 0.05em;
}

/* =========================================================
   PAGE TOP
========================================================= */

.page-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 850;
    display: flex;
    width: 66px;
    height: 66px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #b49661;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}

.page-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.page-top:hover {
    background: #8e7140;
}

.page-top__arrow {
    font-size: 1.8rem;
    line-height: 1;
}

.page-top__text {
    margin-top: 5px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

/* =========================================================
   SMARTPHONE FIXED CONTACT
========================================================= */

.sp-fixed-contact {
    display: none;
}

/* =========================================================
   ANIMATION
========================================================= */

.js-fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.js-fade-up.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1180px) {

    .site-logo__mark {
        width: 60px;
        margin-right: 14px;
    }

    .site-logo__english {
        font-size: 2rem;
    }

    .site-logo__japanese {
        font-size: 1rem;
    }

    .site-header__inner {
        width: min(100%, calc(100% - 32px));
    }

    .site-logo img {
        height: 60px;
    }

    .header-tel__number {
        font-size: 2rem;
    }

    .header-tel__hours {
        display: none;
    }

    .header-action__button {
        min-width: 110px;
        font-size: 1.2rem;
    }

    .global-nav__link {
        padding-right: 19px;
        padding-left: 19px;
        font-size: 1.2rem;
    }

    .footer-contact__buttons {
        grid-template-columns: 1fr;
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
    }

    .footer-contact__button {
        min-height: 105px;
    }

    .site-footer__main .site-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-map {
        grid-column: 1 / -1;
    }

    .footer-map__link {
        max-width: 700px;
    }
}

/* =========================================================
   SP
========================================================= */

@media screen and (max-width: 767px) {

    .site-logo__mark {
        width: 46px;
        margin-right: 10px;
    }

    .site-logo__english {
        font-size: 1.55rem;
        letter-spacing: .03em;
    }

    .site-logo__japanese {
        margin-top: 2px;
        font-size: .9rem;
        white-space: nowrap;
    }

    html {
        font-size: 62.5%;
    }

    body {
        padding-bottom: 64px;
        font-size: 1.4rem;
        line-height: 1.8;
    }

    .section {
        padding: 74px 0;
    }

    .section-inner,
    .footer-contact__inner,
    .site-footer__inner {
        width: calc(100% - 40px);
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading__en {
        font-size: 1.05rem;
    }

    .section-heading__title {
        font-size: 2.8rem;
        line-height: 1.5;
    }

    .section-heading__text {
        margin-top: 14px;
        font-size: 1.3rem;
        text-align: left;
    }

    .common-button {
        width: 100%;
        min-width: 0;
        min-height: 60px;
        padding: 15px 20px;
    }

    .common-button span:first-child {
        font-size: 1.3rem;
    }

    .site-header {
        position: relative;
    }

    .site-header__upper .site-header__inner {
        min-height: 64px;
    }

    .site-header__inner {
        width: calc(100% - 20px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .site-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
        min-width: 0;
        max-width: calc(100% - 58px);
    }

    .site-logo__mark {
        flex: 0 0 auto;
    }

    .site-logo__mark img,
    .site-logo img {
        display: block;
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .site-logo__text {
        display: flex;
        flex-direction: column;
        min-width: 0;
        line-height: 1.15;
    }

    .site-logo__english {
        font-size: 10px;
        white-space: nowrap;
    }

    .site-logo__japanese {
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
    }

    .site-header__right {
        flex: 0 0 auto;
        gap: 8px;
    }

    .header-contact {
        display: none;
    }

    .drawer-button {
        display: flex;
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        position: relative;
        z-index: 10;
    }

    .site-header__lower {
        display: none;
    }

    .site-logo__english{
        font-size: 1.8rem !important;
    }

    .footer-contact {
        padding: 68px 0;
    }

    .footer-contact__sub {
        font-size: 1.05rem;
    }

    .footer-contact__title {
        margin-top: 10px;
        font-size: 2.5rem;
        line-height: 1.65;
    }

    .footer-contact__text {
        font-size: 1.3rem;
        text-align: left;
    }

    .footer-contact__buttons {
        display: block;
        margin-top: 32px;
    }

    .footer-contact__button {
        min-height: 92px;
        padding: 17px 20px;
    }

    .footer-contact__button + .footer-contact__button {
        margin-top: 8px;
    }

    .footer-contact__icon {
        margin-right: 13px;
    }

    .footer-contact__button-content strong {
        font-size: 2.3rem;
    }

    .footer-contact__arrow {
        right: 15px;
    }

    .site-footer__main {
        padding: 62px 0 50px;
    }

    .site-footer__main .site-footer__inner {
        display: block;
    }

    .footer-logo__mark {
        width: 58px;
    }

    .footer-logo__english {
        font-size: 1.8rem;
    }

    .footer-clinic__address {
        margin-top: 22px;
        font-size: 1.2rem;
    }

    .footer-clinic__tel {
        font-size: 2.4rem;
    }

    .footer-hours {
        margin-top: 42px;
    }

    .footer-hours__heading h2 {
        font-size: 1.8rem;
    }

    .footer-hours__table {
        min-width: 500px;
    }

    .footer-map {
        margin-top: 42px;
    }

    .site-footer__navigation {
        padding: 48px 0;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 34px 22px;
    }

    .footer-nav__heading {
        font-size: 1.5rem;
    }

    .footer-nav__list a {
        font-size: 1.1rem;
    }

    .site-footer__bottom {
        padding: 22px 0 26px;
    }

    .site-footer__bottom .site-footer__inner {
        display: block;
        text-align: center;
    }

    .footer-bottom-nav {
        justify-content: center;
        gap: 12px 18px;
    }

    .site-footer__copyright {
        margin-top: 16px;
    }

    .page-top {
        right: 12px;
        bottom: 76px;
        width: 52px;
        height: 52px;
    }

    .page-top__text {
        display: none;
    }

    .sp-fixed-contact {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 900;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        min-height: 64px;
        box-shadow: 0 -3px 16px rgb(0 0 0 / 12%);
    }

    .sp-fixed-contact__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 1.05rem;
        font-weight: 500;
        line-height: 1.2;
    }

    .sp-fixed-contact__item--tel {
        background: #302e2a;
    }

    .sp-fixed-contact__item--reserve {
        background: #b49661;
    }

    .sp-fixed-contact__item--line {
        background: #67b260;
    }

    .sp-fixed-contact__icon {
        margin-bottom: 4px;
    }
}

/* =========================================================
   SMALL SP
========================================================= */

@media screen and (max-width: 420px) {

    .site-logo__english {
        font-size: 1.35rem;
    }

    .site-logo__japanese {
        font-size: .85rem;
    }

    .site-logo img {
        height: 40px;
    }

    .drawer-button {
        width: 50px;
        height: 50px;
    }

    .drawer-treatment__list {
        grid-template-columns: 1fr;
    }

    .footer-contact__title {
        font-size: 2.2rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }
}


.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo__mark {
    flex-shrink: 0;
    width: 70px;
    margin-right: 18px;
}

.site-logo__mark img {
    display: block;
    width: 100%;
    height: auto;
}

.site-logo__text {
    display: flex;
    flex-direction: column;
}

.site-logo__english {
    color: #7b633c;
    font-family: "Noto Serif JP", serif;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: .08em;
}

.site-logo__japanese {
    margin-top: 4px;
    color: #575757;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: .06em;
}


.document-page{
    padding:90px 0;
}

.document-box{
    background:#fff;
    border:1px solid #e5e5e5;
    padding:40px;
    margin-top:50px;
}

.document-box h3{
    font-size:28px;
    margin-bottom:30px;
    color:#173f5b;
}

.document-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 0;
    border-bottom:1px solid #ececec;
    gap:30px;
}

.document-item:last-child{
    border:none;
}

.document-item h4{
    font-size:22px;
    margin-bottom:10px;
}

.document-item p{
    color:#666;
    line-height:1.8;
}

.document-item--primary{
    background:#f7f9fb;
    padding:30px;
    border-radius:8px;
}

.document-note{
    margin-top:60px;
    background:#f8f8f8;
    padding:35px;
}

.document-note h3{
    margin-bottom:20px;
}

.document-note ul{
    margin:0;
    padding-left:20px;
}

.document-note li{
    margin-bottom:12px;
    line-height:1.9;
}

@media(max-width:768px){

.document-box{
    padding:25px;
}

.document-item{
    flex-direction:column;
    align-items:flex-start;
}

.document-item .common-button{
    width:100%;
}

}