@charset "utf-8";

/*********************************************************************
*
*  For ALL
*
*********************************************************************/

/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --co_3: #333;
    --co_4: #787878;
    --co_5: #ff8e2b;
    --co_6: #00885a;
    --co_7: #d4d4d4;
    --co_8: #06c755;
    --co_9: #e1e1e1;
    --co_10: #77ab59;
    --co_11: #b5b5b5;
    --co_12: #f3f3f3;
    --co_13: #a7d400;
    --co_14: #228d68;
    --co_15: #c8d5c5;
}

/* ---------------------------------------------------- */
/* html body */
/* ---------------------------------------------------- */
html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    /* iPhone */
    overflow-y: scroll;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--co_2);
    line-height: 1.8;
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    background-color: var(--co_1);
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

@media (min-width: 1000px) {
    body {
        min-width: 1180px;
        font-size: 16px;
    }
}

@media (max-width: 999px) {
    body {
        min-width: 320px;
        font-size: 14px;
    }
}

/* ---------------------------------------------------- */
/* img */
/* ---------------------------------------------------- */
img {
    display: inline-block;
    width: auto;
    max-width: 100% !important;
    height: auto !important;
    vertical-align: bottom;
}

a img {
    display: block;
    width: 100% !important;
}

/* ---------------------------------------------------- */
/* a */
/* ---------------------------------------------------- */
a {
    color: var(--co_10);
    text-decoration: underline;
    outline: none;
    transition: 0.3s ease-in-out;
}

@media (min-width: 1000px) {
    a:hover {
        text-decoration: none;
    }
}

/* ---------------------------------------------------- */
/* body_wrap */
/* ---------------------------------------------------- */
.body_wrap {
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}

/* ---------------------------------------------------- */
/* contents_wrap */
/* ---------------------------------------------------- */
@media (min-width: 1000px) {
    .contents_wrap {
        padding-bottom: 100px;
    }
}

@media (max-width: 999px) {
    .contents_wrap {
        padding-top: 55px;
        padding-bottom: 80px;
    }
}

/* ---------------------------------------------------- */
/* .header_1 */
/* ---------------------------------------------------- */
@media (min-width: 1000px) {
    .header_1 {
        position: relative;
        width: 100%;
        height: 140px;
        background-color: var(--co_1);
        z-index: 200;
    }

    .header_1 .header_inner {
        position: relative;
        margin: 0 auto;
        max-width: 1400px;
        min-width: 1100px;
        height: 100%;
    }

    .header_1 .site_ttl_1 {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 274px;
    }

    .header_1 .site_ttl_1 a {
        display: block;
    }

    .header_1 .desc_1 {
        display: none;
    }

    .header_1 .nav_1 {
        position: absolute;
        right: 480px;
        bottom: 0;
    }

    .header_1 .nav_1 .main-menu {
        display: flex;
    }

    .header_1 .nav_1 .main-menu > li {
        flex: initial;
        width: auto;
    }

    .header_1 .nav_1 .main-menu > li + li {
        margin-left: 50px;
    }

    .header_1 .nav_1 .main-menu > li > a {
        position: relative;
        display: block;
        padding-bottom: 35px;
        color: var(--co_3);
        line-height: 1.4;
        text-align: center;
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }
    .header_1 .nav_1 .main-menu > li > a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 20px;
        display: block;
        width: 100%;
        height: 5px;
        background-color: var(--co_6);
        opacity: 0;
        transition: 0.3s ease-in-out;
    }
    .header_1 .nav_1 .main-menu > li.is_children_show > a::after,
    .header_1 .nav_1 .main-menu > li > a:hover::after {
        opacity: 1;
    }

    .header_1 .nav_1 .sub-menu {
        pointer-events: none;
        display: flex;
        align-content: flex-start;
        flex-wrap: wrap;
        position: absolute;
        left: 0;
        bottom: 10px;
        padding: 30px;
        padding-left: 180px;
        width: 500px;
        min-height: 80px;
        transform: translateY(100%);
        background-color: var(--co_1);
        box-shadow: 0px 0 10px 0px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        opacity: 0;
        transition: 0.3s ease-in-out;
    }

    .header_1 .nav_1 .is_children_show .sub-menu {
        opacity: 1;
        pointer-events: all;
    }

    .header_1 .nav_1 .sub-menu > li {
        flex: auto;
        position: relative;
        margin-right: 20px;
        margin-bottom: 20px;
        width: calc(100% / 2 - 20px);
    }

    .header_1 .nav_1 .sub-menu > li > a {
        position: relative;
        display: block;
        padding-left: 10px;
        color: var(--co_3);
        font-size: 12px;
        line-height: 1;
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }

    .header_1 .nav_1 .sub-menu > li > a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 3px;
        display: block;
        width: 6px;
        height: 6px;
        border-top: 1px solid var(--co_4);
        border-right: 1px solid var(--co_4);
        transform: translateX(-50%) rotate(45deg);
        transition: 0.3s ease-in-out;
    }

    .header_1 .nav_1 .sub-menu > li > a:hover {
        color: var(--co_6);
    }

    .header_1 .nav_1 .sub-menu .thumb {
        position: absolute;
        left: 30px;
        top: 30px;
        padding-left: 35px;
        width: auto;
    }

    .header_1 .nav_1 .sub-menu .thumb a {
        padding: 0;
    }
    .header_1 .nav_1 .sub-menu .thumb a::before {
        display: none;
    }

    .header_1 .nav_1 .sub-menu .thumb span {
        display: block;
    }
    .header_1 .nav_1 .sub-menu .thumb span > span:nth-of-type(1) {
        font-size: 17px;
    }
    .header_1 .nav_1 .sub-menu .thumb span > span:nth-of-type(2) {
        margin-top: 10px;
        color: var(--co_4);
        font-size: 11px;
    }

    .header_1 .nav_1 .sub-menu .thumb i {
        position: absolute;
        left: 0;
        top: -5px;
        display: block;
        width: 25px;
        height: 25px;
        background-repeat: no-repeat;
    }

    .header_1 .nav_1 .sub-menu .thumb_1 i {
        background-image: url(../img/ico/info_1_b.svg);
    }

    .header_1 .nav_2 {
        position: absolute;
        right: 20px;
        top: 30px;
    }

    .header_1 .nav_2 .main-menu {
        display: flex;
    }

    .header_1 .nav_2 .main-menu > li {
        flex: initial;
        position: relative;
        width: auto;
    }

    .header_1 .nav_2 .main-menu > li + li {
        margin-left: 30px;
    }
    .header_1 .nav_2 .main-menu > .menu-item-47 {
        margin-left: 15px;
        padding-left: 15px;
        border-left: 1px solid var(--co_4);
    }
    .header_1 .nav_2 .main-menu > li > a {
        position: relative;
        display: block;
        color: var(--co_4);
        font-size: 14px;
        line-height: 1;
        text-align: center;
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }
    .header_1 .nav_2 .main-menu > li > a:hover {
        color: var(--co_6);
    }

    .header_1 .btn_1 {
        position: absolute;
        right: 220px;
        bottom: 20px;
        display: block;
        color: var(--co_6);
        line-height: 1;
        text-decoration: none;
    }

    .header_1 .btn_1 .num {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 26px;
    }
    .header_1 .btn_1 .num::before {
        content: "";
        display: block;
        margin-right: 4px;
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        background-image: url(../img/ico/phone_1_b.svg);
    }

    .header_1 .btn_1 .time {
        display: block;
        margin-top: 10px;
        color: var(--co_4);
        font-size: 11px;
        text-align: right;
    }
    .header_1 .btn_2 {
        position: absolute;
        right: 20px;
        bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 180px;
        height: 50px;
        color: var(--co_1);
        font-size: 18px;
        line-height: 1;
        text-align: center;
        text-decoration: none;
        background-color: var(--co_5);
        border-radius: 2px;
    }
    .header_1 .btn_2::before {
        content: "";
        display: block;
        margin-right: 5px;
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        background-image: url(../img/ico/reservation_1.svg);
    }

    .header_1 .btn_toggle_megamenu {
        display: none;
    }

    .header_1 .toggle_megamenu_wrap {
        display: none !important;
    }
}

@media (min-width: 1000px) and (max-width: 1250px) {
    .header_1 .site_ttl_1 {
        width: 200px;
    }
}

@media (max-width: 999px) {
    .header_1 {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 55px;
        background-color: var(--co_1);
        z-index: 200;
    }

    .header_1 .header_inner {
        position: relative;
        height: 100%;
    }

    .header_1 .site_ttl_1 {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 140px;
    }

    .header_1 .site_ttl_1 a {
        display: block;
    }
    .header_1 .desc_1 {
        position: absolute;
        left: 180px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header_1 .nav_1 {
        display: none;
    }

    .header_1 .nav_2 {
        display: none;
    }

    .header_1 .btn_1 {
        display: none;
    }
    .header_1 .btn_2 {
        display: none;
    }
    .header_1 .nav_4 {
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .header_1 .nav_4 .main-menu > li {
        position: relative;
        padding-left: 35px;
    }
    .header_1 .nav_4 .main-menu > li + li {
        margin-top: 20px;
    }

    .header_1 .nav_4 .main-menu > li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        width: 20px;
        height: 20px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .header_1 .nav_4 .main-menu > li.menu-item-54::before {
        background-image: url(../img/ico/news_1_b.svg);
    }
    .header_1 .nav_4 .main-menu > li.menu-item-55::before {
        background-image: url(../img/ico/info_1_b.svg);
    }
    .header_1 .nav_4 .main-menu > li.menu-item-58::before {
        background-image: url(../img/ico/time_1_b.svg);
    }
    .header_1 .nav_4 .main-menu > li.menu-item-59::before {
        background-image: url(../img/ico/flow_1_b.svg);
    }
    .header_1 .nav_4 .main-menu > li.menu-item-60::before {
        background-image: url(../img/ico/clinic_1_b.svg);
    }
    .header_1 .nav_4 .main-menu > li.menu-item-61::before {
        background-image: url(../img/ico/access_1_b.svg);
    }
    .header_1 .nav_4 .main-menu > li.menu-item-62::before {
        background-image: url(../img/ico/faq_1_b.svg);
    }

    .header_1 .nav_4 .main-menu > li > a {
        position: relative;
        display: block;
        color: var(--co_3);
        font-size: 16px;
        line-height: 1.4;
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }

    .header_1 .nav_4 .main-menu > li.menu-item-has-children > a {
        margin-right: 30px;
    }

    .header_1 .nav_4 .main-menu > li > a > span > span {
        display: block;
    }

    .header_1 .nav_4 .main-menu > li > a > span > span:nth-of-type(2) {
        margin-top: 5px;
        font-family: "Montserrat", "M PLUS 2", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
        color: var(--co_5);
    }

    .header_1 .nav_4 .main-menu > li > i {
        position: absolute;
        right: 0;
        top: 0;
        display: block;
        width: 16px;
        height: 16px;
        background-image: url(../img/ico/arrow_1_b.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .header_1 .nav_4 .main-menu > li.menu-item-has-children > i {
        position: absolute;
        right: 0;
        top: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 16px;
        height: 16px;
        transition: 0.3s ease-in-out;
        background-image: none;
        z-index: 2;
    }

    .header_1 .nav_4 .main-menu > li.menu-item-has-children > i::before {
        content: "";
        position: absolute;
        display: block;
        width: 10px;
        height: 10px;
        border-top: 2px solid var(--co_6);
        border-right: 2px solid var(--co_6);
        transform: rotate(135deg);
        transition: 0.3s ease-in-out;
    }

    .header_1 .nav_4 .main-menu > li.menu-item-has-children.is_children_show > i::before {
        transform: rotate(-45deg);
    }

    .header_1 .nav_4 .sub-menu {
        display: none;
        padding-left: 0;
    }

    .header_1 .nav_4 .sub-menu li {
        position: relative;
        margin-top: 15px;
        padding-left: 20px;
    }

    .header_1 .nav_4 .sub-menu a {
        position: relative;
        display: block;
        color: var(--co_4);
        font-size: 14px;
        line-height: 1.2;
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }

    .header_1 .nav_4 .sub-menu li > i {
        position: absolute;
        left: 4px;
        top: 5px;
        display: block;
        width: 8px;
        height: 8px;
        border-top: 2px solid var(--co_4);
        border-right: 2px solid var(--co_4);
        transform: rotate(45deg);
        transition: 0.3s ease-in-out;
        background-image: none;
    }

    .header_1 .nav_5 {
        margin-bottom: 20px;
        padding: 20px 0;
        border-top: 1px solid var(--co_7);
        border-bottom: 1px solid var(--co_7);
    }

    .header_1 .nav_5 .main-menu > li {
        position: relative;
        padding-left: 20px;
    }
    .header_1 .nav_5 .main-menu > li + li {
        margin-top: 20px;
    }
    .header_1 .nav_5 .main-menu > li > a {
        position: relative;
        display: block;
        color: var(--co_4);
        font-size: 14px;
        line-height: 1.2;
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }
    .header_1 .nav_5 .main-menu > li > i {
        position: absolute;
        left: 4px;
        top: 5px;
        display: block;
        width: 8px;
        height: 8px;
        border-top: 2px solid var(--co_4);
        border-right: 2px solid var(--co_4);
        transform: rotate(45deg);
        transition: 0.3s ease-in-out;
        background-image: none;
    }

    .header_1 .btn_3 {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;
        margin-top: 10px;
        height: 60px;
        color: var(--co_1);
        line-height: 1;
        text-align: center;
        text-decoration: none;
        background-color: var(--co_6);
        border-radius: 4px;
    }

    .header_1 .btn_3 .num {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
    }
    .header_1 .btn_3 .num::before {
        content: "";
        display: block;
        margin-right: 4px;
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        background-image: url(../img/ico/phone_1.svg);
    }

    .header_1 .btn_3 .time {
        display: block;
        margin-top: 5px;
        width: 100%;
        font-size: 11px;
        text-align: center;
    }
    .header_1 .btn_4 {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
        color: var(--co_1);
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        text-decoration: none;
        background-color: var(--co_5);
        border-radius: 4px;
    }
    .header_1 .btn_4::before {
        content: "";
        display: block;
        margin-right: 5px;
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        background-image: url(../img/ico/reservation_1.svg);
    }
    .header_1 .btn_toggle_megamenu {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 100%;
        background-color: var(--co_6);
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
        z-index: 110;
        transition: 0.3s ease-in-out;
    }

    .header_1 .btn_toggle_megamenu::after {
        content: "MENU";
        position: absolute;
        left: 0%;
        bottom: 9px;
        display: block;
        width: 100%;
        font-family: "Poppins", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
        color: var(--co_1);
        font-size: 11px;
        font-weight: 500;
        text-decoration: none;
        text-align: center;
        line-height: 1;
        transition: 0.3s ease-in-out;
    }

    .header_1 .btn_toggle_megamenu.is_show::after {
        content: "CLOSE";
    }

    .header_1 .btn_toggle_megamenu div {
        position: relative;
        margin-bottom: 15px;
        width: 24px;
        height: 24px;
    }

    .header_1 .btn_toggle_megamenu div > span:before,
    .header_1 .btn_toggle_megamenu div > span:after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--co_1);
        transform-origin: center center;
        transition: 0.3s ease-in-out;
        transform-origin: center;
    }

    .header_1 .btn_toggle_megamenu div > span:before {
        transform: translateY(-4px);
    }

    .header_1 .btn_toggle_megamenu div > span:after {
        transform: translateY(4px);
    }

    .header_1 .btn_toggle_megamenu.is_show div > span:before,
    .header_1 .btn_toggle_megamenu.is_show div > span:after {
        width: 100% !important;
    }
    .header_1 .btn_toggle_megamenu.is_show div > span:before {
        transform: translateY(-50%) rotate(-45deg);
    }

    .header_1 .btn_toggle_megamenu.is_show div > span:after {
        bottom: 0;
        transform: translateY(-50%) rotate(45deg);
    }
    .header_1 .toggle_megamenu_wrap {
        position: relative;
        display: none;
        position: fixed;
        left: 0;
        top: 55px;
        width: 100%;
        height: calc(100% - 55px);
        background-color: var(--co_1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 100;
    }
    .header_1 .toggle_megamenu_wrap::before {
        content: "";
        position: absolute;
        left: 0;
        top: -1px;
        display: block;
        width: 100%;
        height: 1px;
        box-shadow: 0px 0 10px 5px rgba(0, 0, 0, 0.3);
    }

    .header_1 .toggle_megamenu_wrap .toggle_inner {
        padding: 30px 30px 30px;
    }
}

/* ---------------------------------------------------- */
/* .footer_1 */
/* ---------------------------------------------------- */
.footer_1 {
    position: relative;
    padding-top: 60px;
    padding-bottom: 180px;
    color: var(--co_1);
    background: linear-gradient(90deg, rgba(0, 136, 90, 1) 0%, rgba(197, 212, 194, 1) 100%);
}

.footer_1 .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
}
.footer_1 .box_1 {
    position: absolute;
    left: 0;
    top: 0;
}
.footer_1 .site_ttl_1 {
    margin-bottom: 20px;
}

.footer_1 .site_ttl_1 > a {
    display: block;
    width: 210px;
}

.footer_1 .site_ttl_1 > span {
    position: absolute;
    left: 240px;
    top: 10px;
    font-size: 11px;
    white-space: nowrap;
}
.footer_1 .address_1 {
    margin-bottom: 20px;
}
.footer_1 .tel_1 {
    font-size: 18px;
    font-weight: 700;
}
.footer_1 .access_1 {
    display: none;
}
.footer_1 .nav_1 {
    display: flex;
    justify-content: flex-end;
}
.footer_1 .nav_1 a:hover {
    opacity: 0.6;
}
.footer_1 .nav_1 .main-menu + .main-menu {
    margin-left: 60px;
}

.footer_1 .nav_1 .main-menu > li + li {
    margin-top: 30px;
}

.footer_1 .nav_1 .main-menu > li > a {
    position: relative;
    display: block;
    color: var(--co_1);
    line-height: 1.4;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
}

.footer_1 .nav_1 .sub-menu li {
    position: relative;
    margin-top: 15px;
    padding-left: 15px;
}

.footer_1 .nav_1 .sub-menu a {
    position: relative;
    display: block;
    color: var(--co_1);
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
}

.footer_1 .nav_1 .sub-menu li > i {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    font-size: 14px;
    line-height: 1.2;
}

.footer_1 .nav_1 .sub-menu li > i::before {
    content: "-";
}

.footer_1 .nav_2 {
    margin-top: 40px;
}
.footer_1 .nav_2 > ul {
    display: flex;
    justify-content: flex-end;
}

.footer_1 .nav_2 > ul > li {
    flex: initial;
    position: relative;
    width: auto;
}

.footer_1 .nav_2 > ul > li + li {
    margin-left: 20px;
}

.footer_1 .nav_2 a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--co_4);
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
}
.footer_1 .nav_2 a::before {
    content: "";
    display: block;
    margin-right: 4px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.footer_1 .nav_2 .instagram a::before {
    background-image: url(../img/ico/instagram_1.svg);
}

.footer_1 .nav_2 .line a::before {
    background-image: url(../img/ico/line_1.svg);
}

.footer_1 .nav_2 .twitter a::before {
    background-image: url(../img/ico/twitter_1.svg);
}

.footer_1 .nav_3 {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 130px;
    background-color: var(--co_1);
    box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
    z-index: 100;
}
.footer_1 .nav_3 > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.footer_1 .nav_3 > ul > li {
    flex: none;
    position: relative;
    padding: 0 25px;
    width: 380px;
}

.footer_1 .nav_3 > ul > li > span {
    margin-bottom: 5px;
    display: block;
    color: var(--co_3);
    font-size: 14px;
    text-align: center;
}

.footer_1 .nav_3 a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    color: var(--co_1);
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    background-color: var(--co_2);
    box-shadow: 0px 10px 10px 0 rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}
.footer_1 .nav_3 a::before {
    content: "";
    display: block;
    margin-right: 10px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.footer_1 .nav_3 .line a {
    background-color: var(--co_8);
}
.footer_1 .nav_3 .line a::before {
    background-image: url(../img/ico/line_2.svg);
}
.footer_1 .nav_3 .clinic a {
    background-color: var(--co_6);
}
.footer_1 .nav_3 .clinic a::before {
    background-image: url(../img/ico/clinic_2.svg);
}
.footer_1 .nav_3 .reservation a {
    background-color: var(--co_5);
}
.footer_1 .nav_3 .reservation a::before {
    background-image: url(../img/ico/reservation_1.svg);
}

.footer_1 .copyright_1 {
    position: absolute;
    left: 0;
    bottom: 0;
    color: var(--co_1);
    font-size: 12px;
    opacity: 0.6;
}

.footer_1 .btn_pagetop_1 {
    position: absolute;
    right: 0;
    top: -110px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    width: 100px;
    height: 100px;
    color: var(--co_1);
    text-decoration: none;
    background-color: var(--co_6);
    border-radius: 100%;
}
.footer_1 .btn_pagetop_1::before {
    content: "";
    margin: 5px 0;
    width: 100%;
    height: 20px;
    display: block;
    background-image: url(../img/ico/arrow_2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.footer_1 .btn_pagetop_1::after {
    content: "TOP";
    display: block;
    width: 100%;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 999px) {
    .footer_1 {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .footer_1 .footer_inner {
        max-width: calc(100% - 40px);
    }
    .footer_1 .box_1 {
        position: static;
    }
    .footer_1 .site_ttl_1 {
        margin-bottom: 20px;
    }

    .footer_1 .site_ttl_1 > a {
        margin: 0 auto 10px;
        width: 170px;
    }

    .footer_1 .site_ttl_1 > span {
        position: static;
        display: block;
        text-align: center;
    }
    .footer_1 .address_1 {
        margin-bottom: 20px;
        text-align: center;
    }
    .footer_1 .access_1 {
        display: block;
        font-size: 12px;
        text-align: center;
        opacity: 0.6;
    }
    .footer_1 .tel_1 {
        display: none;
    }
    .footer_1 .nav_1 {
        display: none;
    }

    .footer_1 .nav_2 {
        position: static;
        margin-top: 20px;
    }
    .footer_1 .nav_2 > ul {
        justify-content: center;
        margin-right: -20px;
    }

    .footer_1 .nav_2 > ul > li {
        margin-right: 20px;
    }

    .footer_1 .nav_3 {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: auto;
        background-color: var(--co_9);
        box-shadow: none;
    }
    .footer_1 .nav_3 > ul {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5px 3px;
        height: auto;
    }

    .footer_1 .nav_3 > ul > li {
        padding: 0 2px;
        width: calc(100% / 2 - 30px);
    }

    .footer_1 .nav_3 > ul > li > span {
        display: none;
    }

    .footer_1 .nav_3 a {
        align-content: center;
        flex-wrap: wrap;
        height: 50px;
        font-size: 10px;
    }
    .footer_1 .nav_3 a::before {
        margin-right: 5px;
        width: 18px;
        height: 18px;
    }
    .footer_1 .nav_3 .line {
        width: 50px;
    }
    .footer_1 .nav_3 .line a {
        background-color: var(--co_1);
    }
    .footer_1 .nav_3 .line a span {
        display: none;
    }
    .footer_1 .nav_3 .line a::before {
        margin: 0;
        width: 30px;
        height: 30px;
        background-image: url(../img/ico/line_2_b.svg);
    }

    .footer_1 .copyright_1 {
        position: static;
        margin: 30px -20px 0;
        padding: 20px 20px;
        font-size: 11px;
        text-align: center;
        color: var(--co_4);
        background-color: var(--co_1);
        opacity: 1;
    }

    .footer_1 .btn_pagetop_1 {
        right: auto;
        left: 50%;
        bottom: auto;
        top: -90px;
        transform: translateX(-50%);
        width: auto;
        height: auto;
        color: var(--co_2);
        background-color: transparent;
    }
    .footer_1 .btn_pagetop_1::before {
        display: block;
        width: 10px;
        height: 10px;
        border-top: 2px solid var(--co_6);
        border-right: 2px solid var(--co_6);
        transform: rotate(-45deg);
        transition: 0.3s ease-in-out;
        background-image: none;
    }

    .footer_1 .btn_pagetop_1::after {
        content: "PAGE TOP";
        margin-top: -5px;
    }
}
