@charset "utf-8";

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

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

body {
    margin: 0;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

/* =====================================================
   Common：Button
===================================================== */

.c-btn {
    --btn-bg: #5AB7AA;
    --btn-icon-bg: #3A746C;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    width: fit-content;
    max-width: 100%;
    padding: 10px 10px 10px 30px;
    border-radius: 60px;
    background: var(--btn-bg);
    color: #FFF;
    font-family: "Zen Old Mincho", serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.c-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.c-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: var(--btn-icon-bg);
    color: #FFF;
    font-size: 14px;
    line-height: 1;
}

.c-btn--green {
    --btn-bg: #5AB7AA;
    --btn-icon-bg: #3A746C;
}

.c-btn--blue {
    --btn-bg: #5C96B7;
    --btn-icon-bg: #3F6C86;
}

.c-btn--purple {
    --btn-bg: #7F89C7;
    --btn-icon-bg: #555C86;
}

.c-btn--line {
    --btn-bg: #06C755;
    --btn-icon-bg: #049943;
}

@media screen and (max-width: 767px) {
    .c-btn {
        padding: 10px 10px 10px 22px;
        gap: 12px;
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: 1.6px;
    }

    .c-btn__icon {
        flex: 0 0 27px;
    }
}


/* =====================================================
   Common：Anchor position
===================================================== */

#top-information,
#top-important,
#top-news-schedule,
#top-reason,
#top-pickup,
#top-medical-information,
#top-equipment,
#top-greeting,
#top-first-examination,
#top-recruit,
#top-line,
#top-esthetic-link {
    scroll-margin-top: 90px;
}

@media screen and (max-width: 767px) {
    #top-information,
    #top-important,
    #top-news-schedule,
    #top-reason,
    #top-pickup,
    #top-medical-information,
    #top-equipment,
    #top-greeting,
    #top-first-examination,
    #top-recruit,
    #top-line,
    #top-esthetic-link {
        scroll-margin-top: 70px;
    }
}


/* ----------------- FV Header ------------------ */

.site-header--fv {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    background: transparent;
    padding: 14px 48px 0;
    box-sizing: border-box;
}

.site-header--fv * {
    box-sizing: border-box;
}

.site-header__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
}

.site-header__branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-header__title {
    margin: 0 0 8px;
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 11.592px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.02em;
}

.site-header__logo {
    display: block;
    line-height: 0;
}

.site-header__logo img {
    display: block;
    width: 365px;
    max-width: 365px;
    height: auto;
}

.site-header__cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 38px;
    padding-top: 46px;
    color: #fff;
}

.site-header__tel,
.site-header__web {
    color: #fff;
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.site-header__tel:hover,
.site-header__web:hover {
    opacity: 0.78;
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 10px rgba(88, 177, 164, 0.55));
}

.site-header__tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.site-header__tel-label {
    display: block;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.06em;
}

.site-header__tel-main {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0.03em;
}

.site-header__web {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.site-header__cta-icon {
    display: inline-block;
    width: 34px;
    height: auto;
    flex: 0 0 auto;
}

.site-header__cta-border {
    width: 1px;
    height: 62px;
    background: rgba(255, 255, 255, 0.85);
}

/* ----------------- FV ------------------ */

.top-fv {
    position: relative;
    width: 100%;
    height: min(100svh, 1000px);
    min-height: 760px;
    overflow: hidden;
    background: #eef4f2;
}

.top-fv__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.top-fv__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.top-fv__copy {
    position: absolute;
    top: 23.5%;
    left: 54.5%;
    margin: 0;
    color: #FFF;
    text-shadow: 0 4px 20px #58B1A4;
    font-size: 68px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.top-fv__point {
    position: absolute;
    right: 5.4%;
    bottom: 6.5%;
    width: min(45vw, 825px);
    line-height: 0;
}

.top-fv__point img {
    display: block;
    width: 100%;
    height: auto;
}

/* ----------------- PC Navigation ------------------ */

.nav {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    transition: all 0.3s ease-in-out;
    z-index: 100;
    box-shadow: 0 4px 18px rgba(68, 120, 112, 0.08);
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.2%;
    width: 94%;
    max-width: 1600px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.nav-item {
    position: relative;
}

.nav-item a,
.nav-item-menu {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 500;
    padding: 18px 0;
    display: block;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.nav-item a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 0;
    height: 2px;
    background: #58B1A4;
    transition: all 0.3s ease-out;
    transform: translateX(-50%);
}

.nav-item a:hover::after {
    width: 100%;
}

.nav-item a:hover,
.nav-item-menu:hover {
    color: #58B1A4;
}

.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 12px 0;
    margin: 0;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.dropdown li {
    padding: 0;
}

.dropdown li a {
    color: #4a4a4a;
    display: block;
    font-size: 14px;
    padding: 12px 18px;
    transition: background 0.3s ease, padding-left 0.3s ease, color 0.3s ease;
}

.dropdown li a:hover {
    background: rgba(88, 177, 164, 0.12);
    padding-left: 24px;
    color: #2f9f91;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    z-index: 10;
}

/* ----------------- Drawer ------------------ */

#drawer-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    top: -100px;
    left: -9999px;
}

.drawer-hamburger {
    position: fixed;
    top: 10px;
    right: 25px;
    background: #58B1A4;
    border-radius: 4px;
    width: 55px;
    height: 55px;
    color: #fff;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    cursor: pointer;
}

.drawer-hamburger-icon {
    width: 22px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
    top: 6px;
}

.drawer-hamburger-icon::before,
.drawer-hamburger-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    left: 0;
}

.drawer-hamburger-icon::before {
    top: -7px;
}

.drawer-hamburger-icon::after {
    top: 7px;
}

.menu_txt {
    position: relative;
    top: 10px;
    line-height: 1;
}

.menu_txt::before {
    content: "MENU";
    font-family: "Inter", sans-serif;
    font-size: 8px;
    letter-spacing: 0.02em;
}

#drawer-checkbox:checked+#drawer-icon .drawer-hamburger-icon {
    background: transparent;
}

#drawer-checkbox:checked+#drawer-icon .drawer-hamburger-icon::before {
    transform: rotate(45deg);
    top: 0;
}

#drawer-checkbox:checked+#drawer-icon .drawer-hamburger-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

#drawer-checkbox:checked+#drawer-icon .menu_txt::before {
    content: "CLOSE";
}

#drawer-content {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #FBFDFD;
    z-index: 10000;
    overflow-y: auto;
    padding: 72px 20px 44px;
    box-sizing: border-box;
}

#drawer-checkbox:checked~#drawer-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    color: #0E201E;
}

.drawer-nav dl,
.drawer-nav dt,
.drawer-nav dd {
    margin: 0;
    padding: 0;
}

.drw_logo {
    width: 180px;
    margin-bottom: 28px;
    line-height: 0;
}

.com_sp_menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.com_sp_menu li {
    list-style: none;
    margin-bottom: 0.65em;
    font-size: 1rem;
}

.com_sp_menu li a {
    color: #0E201E;
}

li.littl {
    font-size: 1rem;
    font-weight: 600;
    padding-left: 0;
    margin-top: 1.35em;
    color: #5AB7AA;
}

.com_sp_menu li:not(.littl) {
    position: relative;
    padding-left: 1.4em;
    color: #5AB7AA;
}

.com_sp_menu li:not(.littl)::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 0.48em;
    height: 0.48em;
    background-color: #91ddd3;
    border-radius: 50%;
}

.drw_index {
    font-weight: 600;
    font-size: 1.2em;
    margin: 1.5em 0 0.7em;
    color: #5AB7AA;
    letter-spacing: 0.08em;
}

.drw_info address {
    font-style: normal;
    line-height: 1.8;
}

.drw_info .schedule-table {
    width: 100%;
    margin: 14px 0 8px;
    border-collapse: collapse;
    font-size: 12px;
}

.drw_info .schedule-table th,
.drw_info .schedule-table td {
    border: 1px solid #5AB7AA;
    padding: 7px 5px;
    text-align: center;
    color: #5AB7AA;
}

.drw_info .schedule-table th:first-child,
.drw_info .schedule-table td:first-child {
    min-width: 92px;
}

#drawer-content .drw_info .schedule-table thead th {
    background: #58B1A4;
    color: #fff;
    border-color: #58B1A4;
    font-weight: 600;
}

#drawer-content .drw_info .schedule-table tbody td {
    background: transparent;
    color: #5AB7AA;
}

#drawer-content .drw_info .schedule-table {
    border-collapse: collapse;
    border: 1px solid #8f9a97;
}

#drawer-content .drw_info .schedule-table thead th {
    background: #58B1A4;
    color: #fff;
    border: 1px solid #8f9a97;
}

#drawer-content .drw_info .schedule-table tbody td {
    border: 1px solid #8f9a97;
}

.closed {
    color: rgba(255, 255, 255, 0.65);
}

.drawer-note {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
}

.telp {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1;
}

.web-reserve a {
    display: inline-block;
    font-size: 1.1rem;
    margin-top: 1em;
    background: #58B1A4;
    color: #fff;
    padding: 0.7em 1.4em;
    border-radius: 999px;
    text-decoration: none;
}

/* ----------------- Tablet ------------------ */

@media screen and (min-width: 1025px) and (max-width: 1280px) {

    .sp-only {
        display: block;
    }

    .pc-only {
        display: none;
    }


    .site-header--fv {
        padding: 14px 48px 0;
    }

    .site-header__logo img {
        width: 365px;
        max-width: 365px;
    }

    .site-header__cta {
        gap: 38px;
        padding-top: 46px;
    }

    .site-header__tel-main {
        font-size: 40px;
    }

    .site-header__web {
        font-size: 36px;
    }

    .top-fv {
        min-height: 760px;
    }

    .top-fv__copy {
        top: 23.5%;
        left: 54.5%;
        font-size: 68px;
        letter-spacing: 0.08em;
    }

    .top-fv__point {
        right: 5.4%;
        bottom: 8.5%;
        width: min(45vw, 825px);
    }
}


/* タブレット：768px〜1024px */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    /* PCナビ・PC用CTAは非表示 */
    .nav.pc-only,
    .site-header__cta.pc-only {
        display: none !important;
    }

    /* ハンバーガーメニューを表示 */
    .drawer-wrap.sp-only {
        display: block;
    }

    .drawer-hamburger {
        display: flex;
        top: 16px;
        right: 24px;
        width: 65px;
        height: 65px;
        border-radius: 5px;
    }

    .drawer-hamburger-icon {
        width: 24px;
        top: 7px;
    }

    .menu_txt::before {
        font-size: 9px;
    }

    /* ヘッダー */
    .site-header--fv {
        padding: 12px 28px 0;
    }

    .site-header__inner {
        display: block;
    }

    .site-header__title {
        margin: 0 0 5px;
        font-size: 8px;
        line-height: 1.4;
    }

    .site-header__logo img {
        width: 250px;
        max-width: 250px;
    }

    /* FV */
    .top-fv {
        height: 74vw;
        min-height: 560px;
        max-height: 720px;
    }


    .top-fv__bg img {
        object-fit: cover;
        object-position: center top;
    }

    /* キャッチコピー */
    .top-fv__copy {
        top: 27%;
        left: 49%;
        font-size: clamp(42px, 5.2vw, 54px);
        line-height: 1.45;
        letter-spacing: 0.07em;
        white-space: nowrap;
    }

    /* 3つの訴求ポイント */
    .top-fv__point {
        right: 4%;
        bottom: 7%;
        width: 53vw;
        max-width: 520px;
    }

    /* ドロワー内 */
    #drawer-content {
        padding: 84px 32px 56px;
    }

    .drw_logo {
        width: 220px;
        margin-bottom: 32px;
    }

    .com_sp_menu li {
        font-size: 1.05rem;
        margin-bottom: 0.75em;
    }

    .drw_index {
        font-size: 1.25em;
    }

    .drw_info .schedule-table {
        max-width: 620px;
        font-size: 13px;
    }

    .telp {
        font-size: 1.8rem;
    }

    .web-reserve a {
        font-size: 1.15rem;
        padding: 0.75em 1.6em;
    }
}

/* ----------------- SP ------------------ */

@media screen and (max-width: 767px) {
    .pc-only {
        display: none !important;
    }

    .sp-only {
        display: block;
    }

    .drawer-hamburger {
        display: flex;
    }

    .site-header--fv {
        padding: 7px 18px 0;
    }

    .site-header__inner {
        display: block;
    }

    .site-header__title {
        margin: 0 0 2px;
        font-size: 5px;
        line-height: normal;
    }

    .site-header__logo img {
        width: 153px;
        max-width: 153px;
    }

    .top-fv {
        height: 118vw;
        min-height: 442px;
        max-height: 560px;
    }

    .top-fv__copy {
        top: 32%;
        left: 16.7%;
        font-size: 32px;
        line-height: 1.72;
        letter-spacing: 0.06em;
        white-space: nowrap;
    }

    .top-fv__point {
        right: 50%;
        bottom: 4.5%;
        width: 95%;
        max-width: 360px;
        transform: translateX(50%);
    }
}

/* =====================================================
   改行制御
   <br class="sp-only">：SPのみ改行
   <br class="pc-only">：PCのみ改行
   <br>：常時改行
===================================================== */

/* PC：1025px〜 */
br.pc-only {
    display: inline;
}

br.sp-only {
    display: none;
}

/* Tablet：768px〜1024px
   PCのみでもSPのみでもないため、どちらも改行しない */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    br.pc-only,
    br.sp-only {
        display: none;
    }
}

/* SP：〜767px */
@media screen and (max-width: 767px) {
    br.pc-only {
        display: none;
    }

    br.sp-only {
        display: inline;
    }
}

/* =====================================================
   Footer
===================================================== */

#site-footer {
    overflow: hidden;
    background: #FBFDFD;
    color: #0E201E;
}

#site-footer * {
    box-sizing: border-box;
    font-family: "Zen Old Mincho", serif;
}

/* =====================================================
   PC：1025px〜
===================================================== */

.site-footer__main {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 70px 0px 44px;
}

.site-footer__logo {
    width: 360px;
    max-width: 100%;
    margin: 0 auto 54px;
    line-height: 0;
}

.site-footer__logo a {
    display: block;
}

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

.site-footer__content {
    display: grid;
    grid-template-columns: 540px 540px;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
}

.site-footer__left,
.site-footer__right {
    min-width: 0;
}

/* 診療時間表 */
.site-footer__schedule {
    width: 540px;
    max-width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin: 0 0 14px;
}

.site-footer__schedule th,
.site-footer__schedule td {
    border: 1px solid rgba(14, 32, 30, 0.55);
    text-align: center;
    vertical-align: middle;
    color: #5AB7AA;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    padding: 0;
}

.site-footer__schedule th {
    color: #0E201E;
}

.site-footer__schedule thead th {
    height: 41px;
    background: #5AB7AA;
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    white-space: nowrap;
    word-break: keep-all;
}

.site-footer__schedule thead th:first-child {
    width: 158px;
}

.site-footer__schedule tbody th {
    height: 40px;
    background: #FFFEFE;
    font-size: 18px;
    font-weight: 400;
}

.site-footer__schedule tbody td {
    background: #FFFEFE;
}

/* 日/祝の見出しは濃い緑のまま */
.site-footer__schedule thead th:last-child {
    background: #5AB7AA;
    color: #FFF;
    white-space: nowrap;
    word-break: keep-all;
}

/* 日/祝の診療時間欄だけ薄い緑 */
.site-footer__schedule tbody td:last-child {
    background: #EBF4F3;
}

.site-footer__schedule thead th:first-child {
    width: 158px;
}

/* 月〜土 */
.site-footer__schedule thead th:nth-child(2),
.site-footer__schedule thead th:nth-child(3),
.site-footer__schedule thead th:nth-child(4),
.site-footer__schedule thead th:nth-child(5),
.site-footer__schedule thead th:nth-child(6),
.site-footer__schedule thead th:nth-child(7) {
    width: 48px;
}

/* 日/祝だけ少し広くする */
.site-footer__schedule thead th:last-child,
.site-footer__schedule tbody td:last-child {
    width: 60px;
}

.site-footer__schedule thead th:last-child {
    background: #5AB7AA;
    color: #FFF;
    white-space: nowrap;
    word-break: keep-all;
    padding: 0 6px;
}

.site-footer__schedule tbody td:last-child {
    background: #EBF4F3;
}

.site-footer__schedule-note {
    text-align: center;
}

/* 電話番号 */
.site-footer__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    margin: 40px auto;
    color: #0E201E;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.site-footer__tel:hover {
    opacity: 0.75;
}

.site-footer__tel img {
    display: block;
    width: 36px;
    height: auto;
    flex: 0 0 auto;
    padding-top: 5px;
}

.site-footer__tel span {
    display: block;
    color: #0E201E;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
}

/* ボタン */
.site-footer__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}



/* map */
.site-footer__map {
    width: 540px;
    max-width: 100%;
    height: 326px;
    margin: 0 0 14px;
    background: #D9D9D9;
    overflow: hidden;
}

.site-footer__map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.site-footer__address {
    margin: 0;
    color: #0E201E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.32px;
}

/* nav */
.site-footer__nav {
    width: 100%;
    background: #5AB7AA;
}

.site-footer__nav-list {
    display: grid;
	grid-template-columns: repeat(6, auto);
    justify-content: center;
    align-items: center;
    gap: 36px;
    width: 100%;
    max-width: 1360px;
    min-height: 76px;
    margin: 0 auto;
    padding: 20px;
    list-style: none;
}

.site-footer__nav-list li {
    margin: 0;
    padding: 0;
}

.site-footer__nav-list a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.8px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.site-footer__nav-list a:hover {
    opacity: 0.75;
}

.site-footer__copy {
    padding: 38px 20px 28px;
    text-align: center;
    background: #FBFDFD;
}

.site-footer__copy small {
    color: #0E201E;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.24px;
}


/* =====================================================
   Tablet：768px〜1024px
===================================================== */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .site-footer__main {
        max-width: 760px;
        padding: 58px 28px 48px;
    }

    .site-footer__logo {
        width: 320px;
        margin-bottom: 42px;
    }

    .site-footer__content {
        display: block;
    }

    .site-footer__left {
        margin-bottom: 42px;
    }

    .site-footer__schedule {
        margin-left: auto;
        margin-right: auto;
    }

    .site-footer__map {
        width: 100%;
        height: 330px;
    }

    .site-footer__address {
        max-width: 540px;
        margin: 0 auto;
    }

    .site-footer__nav-list {
        display: grid;
        grid-template-columns: repeat(4, auto);
        gap: 24px 30px;
        padding: 28px;
    }
}


/* =====================================================
   SP：〜767px
===================================================== */

@media screen and (max-width: 767px) {
    .site-footer__main {
        max-width: 375px;
        padding: 48px 16px 42px;
    }

    .site-footer__logo {
        width: 220px;
        margin-bottom: 38px;
    }

    .site-footer__content {
        display: block;
    }

    .site-footer__left {
        margin-bottom: 30px;
    }

    .site-footer__schedule {
        width: 100%;
        margin-bottom: 14px;
    }

    .site-footer__schedule th,
    .site-footer__schedule td {
        font-size: 13px;
    }

    .site-footer__schedule thead th {
        height: 31px;
        font-size: 13px;
    }

    .site-footer__schedule thead th:first-child {
        width: 104px;
    }

    .site-footer__schedule tbody th {
        height: 34px;
        font-size: 13px;
    }

    .schedule-mark {
        font-size: 13px;
    }

    .schedule-mark--triangle,
    .schedule-mark--square,
    .schedule-mark--slash {
        font-size: 16px;
    }

    .site-footer__schedule-note {
        margin-bottom: 28px;
    }

    .site-footer__schedule-note p {
        font-size: 14px;
    }

    .site-footer__tel {
        margin-bottom: 22px;
    }

    .site-footer__tel img {
        width: 30px;
    }

    .site-footer__tel span {
        font-size: 32px;
        letter-spacing: 0.72px;
    }

    .site-footer__btns {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    

    .site-footer__map {
        width: 100%;
        height: 198px;
        margin-bottom: 24px;
    }

    .site-footer__address {
        width: fit-content;
        max-width: 100%;
        margin: 0 auto;
        font-size: 16px;
        line-height: 1.65;
        letter-spacing: 0.32px;
    }

    .site-footer__nav {
        margin-top: 0;
    }

    .site-footer__nav-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 34px;
        min-height: 0;
        padding: 32px 14px;
    }

    .site-footer__nav-list a {
        font-size: 16px;
        letter-spacing: 0.8px;
        white-space: normal;
    }

    .site-footer__copy {
        padding: 26px 24px 24px;
    }

    .site-footer__copy small {
        font-size: 10px;
        line-height: 1.7;
        letter-spacing: 0.2px;
    }

    .site-footer__schedule thead th:first-child {
        width: 104px;
    }

    /* 月〜土 */
    .site-footer__schedule thead th:nth-child(2),
    .site-footer__schedule thead th:nth-child(3),
    .site-footer__schedule thead th:nth-child(4),
    .site-footer__schedule thead th:nth-child(5),
    .site-footer__schedule thead th:nth-child(6),
    .site-footer__schedule thead th:nth-child(7) {
        width: 30px;
    }

    /* 日/祝だけ少し広く */
    .site-footer__schedule thead th:last-child,
    .site-footer__schedule tbody td:last-child {
        width: 42px;
    }

    .site-footer__schedule thead th:last-child {
        background: #5AB7AA;
        color: #FFF;
        white-space: nowrap;
        word-break: keep-all;
        padding: 0 4px;
    }

    .site-footer__schedule tbody td:last-child {
        background: #EBF4F3;
    }
}

/*-------------------------------------
  追尾ボタン
--------------------------------------*/

.mobile-tracking-bar {
    display: none;
}

.tracking-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    width: 650px;
    height: 60px;
    font-family: "Zen Old Mincho", serif;
    box-shadow: 0 -4px 16px rgba(14, 32, 30, 0.12);
}

.tracking-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 12px 0;
    color: #FFF;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.2px;
    transition: opacity 0.3s ease, filter 0.3s ease, background 0.3s ease;
}

.tracking-button:hover {
    opacity: 0.88;
    filter: brightness(1.04);
}

/* 電話 */
.phone-btn {
    background: linear-gradient(
        90deg,
        #5AB7AA 0%,
        #4AAEA1 52%,
        #3A9D92 100%
    );
}

.phone-btn:hover {
    background: linear-gradient(
        90deg,
        #48AFA2 0%,
        #3D9F94 52%,
        #318E84 100%
    );
}

/* WEB予約 */
.web-btn {
    background: linear-gradient(
        90deg,
        #5C96B7 0%,
        #4F89AB 54%,
        #3F6C86 100%
    );
}

.web-btn:hover {
    background: linear-gradient(
        90deg,
        #528CAC 0%,
        #457A98 54%,
        #365F78 100%
    );
}

/* お問い合わせを追加する場合用 */
.contact-btn {
    background: linear-gradient(
        90deg,
        #7F89C7 0%,
        #6E78B7 55%,
        #555C86 100%
    );
}

.contact-btn:hover {
    background: linear-gradient(
        90deg,
        #747FC0 0%,
        #626CAD 55%,
        #4C527A 100%
    );
}

/* TOP */
.top-btn {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 80px;
    background: #5ab7aa;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.8px;
}

.top-btn:hover {
    background: #3C4865;
}

.top-arrow {
    display: inline-block;
    margin-bottom: 2px;
    font-size: 20px;
    line-height: 1;
}

.top-btn span {
    display: inline-block;
    line-height: 1;
}

/*-------------------------------------
  モバイル用
--------------------------------------*/

@media screen and (max-width: 768px) {
    .tracking-bar {
        display: none;
    }

    .mobile-tracking-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 1000;
        display: flex;
        justify-content: space-evenly;
        width: 100%;
        background: #FBFDFD;
        font-family: "Zen Old Mincho", serif;
        box-shadow: 0 -4px 16px rgba(14, 32, 30, 0.14);
    }

    .mobile-tracking-bar .tracking-button {
        flex: 1;
        padding: 18px 8px;
        color: #FFF;
        text-align: center;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .mobile-tracking-bar .phone-btn {
        background: linear-gradient(
            90deg,
            #5AB7AA 0%,
            #4AAEA1 52%,
            #3A9D92 100%
        );
    }

    .mobile-tracking-bar .web-btn {
        background: linear-gradient(
            90deg,
            #5C96B7 0%,
            #4F89AB 54%,
            #3F6C86 100%
        );
    }

    .mobile-tracking-bar .contact-btn {
        background: linear-gradient(
            90deg,
            #7F89C7 0%,
            #6E78B7 55%,
            #555C86 100%
        );
    }

    .mobile-tracking-bar .top-btn {
        position: absolute;
        right: 8px;
        top: -58px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        padding: 0;
        border-radius: 50%;
        background: #5ab7aa;
        color: #FFF;
        font-size: 12px;
        line-height: 1;
        letter-spacing: 0.6px;
        box-shadow: 0 4px 14px rgba(14, 32, 30, 0.18);
    }

    .mobile-tracking-bar .top-btn:hover {
        background: #3C4865;
    }
}