@charset "utf-8";

:root {
    --wrapper:92%;
    --header-height: 56px;
    --header-padding: 16px;
    --footer_fixed-height: 44px;
    --font-family-gothic: "Noto Sans JP",-apple-system,Helvetica Neue,Hiragino Kaku Gothic ProN,"メイリオ",meiryo,sans-serif;
    --font-family-serif: "Noto Serif JP", YuMincho, "Yu Mincho", 游明朝体, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    --wrapper-margin: calc((100vw - var(--wrapper)) / 2);
    --content-height: calc(100vh - var(--footer_fixed-height));
    --content-height: calc(100dvh - var(--footer_fixed-height));
}


@media only screen and (min-width: 768px) , print {
    :root {
        --footer_fixed-height: 0px;
    }
}
@media only screen and (min-width: 1024px) , print {
    :root {
        --header-height: 72px;
        --header-padding: 32px;
        --wrapper: 80vw;
    }
}
@media only screen and (min-width: 1500px) , print {
    :root {
        --wrapper: 1440px;
    }
}


.font_e {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font_g {
    font-family: var(--font-family-gothic);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font_m {
    font-family: var(--font-family-serif);
    font-weight: 500;
    font-style: normal;
}


.text-left {
    text-align: left!important;
}
.text-center {
    text-align: center!important;
}
.text-right {
    text-align: right!important;
}
.bg_line {
    color: #fff;
    background-color: #06c755!important;
}

.f11 {
    font-size: 11px;
}
.f12 {
    font-size: 12px;
}
.f14 {
    font-size: 14px;
}
.f15 {
    font-size: 15px;
}
.f16 {
    font-size: 16px;
}
.f18 {
    font-size: 18px;
}
.f24 {
    font-size:24px;
}
.f36 {
    font-size: 36px;
}

.lh01 {
    line-height: 1.4;
}
.lh02 {
    line-height: 1.25;
}
.lh03 {
    line-height: 1.8;
}
.lh04 {
    line-height: 2;
}
.lh05 {
    line-height: 2.4;
}
.lh06 {
    line-height: 3;
}
.lh07 {
    line-height: 1;
}


/* header
-------------------------------*/
.site_header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--header-padding);
}

.site_header,
.site_header .site_logo,
.head_nav,
.header_hide #menu_btn.show,
.footer_fixed {
    opacity: 1;
    transition: 1s;
    pointer-events: all;
}
.site_header.header_hide .site_logo,
.site_header.header_hide .head_nav,
.header_hide #menu_btn,
.footer_fixed.footer_hide {
    opacity: 0;
    pointer-events: none;
}
.site_header.header_hide {
    background: none;
}
.site_logo a {
    display: flex;
    align-items: center;
    height: 100%;
}
.head_nav {
    margin-left: auto;
    margin-right: 32px;
    gap: 24px;
    font-size: 13px;
    display: none;
}
.head_nav a {
    color: #5ec0c1;
}
.menu_icon {
    width: 56px;
    height: var(--header-height);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    border: 0;
    background: none;
    margin-right: -12px;
}
.menu_icon > span {
    height: 1px;
    width: 100%;
    background-color: #00a7b5;
}
.menu_icon > span:nth-child(3) {
    width: 72%;
}
.home .header_hide .menu_icon > span {
    background-color: #fff;
}

/*ドロワーメニュー*/
.body_drawer_open {
    overflow: hidden;
}
.nav_area {
    transition: 0.8s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    padding-top: var(--header-height);
    background-color: #f7f7f7;
    line-height: 1.8;
}
.open .nav_area {
    height: 100%;
    overflow-y: auto;
    z-index: 1000;
    pointer-events: all;
    opacity: 1;
}
.nav_header {
    background-color: #f7f7f7;
}
.menu_close_icon {
    position: relative;
}
.menu_close_icon > span {
    transform: rotate(45deg);
    width: 32px;
    content: "";
    display: block;
    border-bottom: 1px solid #00a7b5;
    position: absolute;
}
.menu_close_icon > span:last-child {
    transform: rotate(-45deg);
}
.menu_wrap {
    padding: 0 36px;
}
.menu {
    margin: 0;
    padding: 16px 0;
    list-style: none;
    display: grid;
    border-bottom: 1px solid;
}
.menu li a {
    padding: 16px 0;
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}
.menu li a:hover {
    background-color: rgb(94 192 193 / 15%);
}
.menu_child {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0 16px;
    list-style: none;
    padding: 0 0 8px 20px;
    border-left: 1px solid #c6cbcb;
}
.menu_child li a {
    padding: 4px 0;
    font-size: 12px;
}

.menu_sub li a {
    padding: 12px 0;
    font-size: 16px;
}
.nav_footer {
    padding: min(9.6vw , 80px) 16px;
    background-color: #00a7b5;
    color: #fff;
    line-height: 1.8;
    font-size: 16px;
    padding-bottom: 80px;
}
.nav_contact_list {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
}
.nav_contact_list > .btn {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 12px 16px;
    text-align: center;
    line-height: 1.8;
    font-size: 16px;
}
.nav_contact_list > .btn-default {
    background: #fff;
    color: #000;
    border: 1px solid;
}
.nav_contact .nav_contact_list {
    padding: 36px;
}
.nav_wrap {
    font-family: "Noto Serif JP", YuMincho, "Yu Mincho", 游明朝体, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media only screen and (min-width: 768px) , print {
    .nav_wrap {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 40px;
        max-width: 1440px;
        margin: 0 auto;
        padding-bottom: 40px;
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .nav_contact {
        padding: 28px 0;
    }
    .nav_contact .nav_contact_list {
        padding: 0;
    }
}
@media only screen and (min-width: 1024px) , print {
    .site_header {
        padding: 0 var(--header-padding);
    }
    .head_nav {
        display: flex;
    }
    .menu_wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: flex-start;
        padding: 0;
    }
}

/* main
-------------------------------*/
.btn_more {
    padding-right: 60px;
    display: inline-flex;
    align-items: center;
    color: #000;
    position: relative;
}
.btn_more::before {
    content: '';
    line-height: 1;
    position: absolute;
    right: 8px;
    width: 36px;
    height: 1px;
    background: currentColor;
    transition: 0.5s;
}
.btn_more::after {
    content: '';
    width: 8px;
    height: 8px;
    border: 1px solid;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: 0;
}
.btn_more:hover:before,
a:hover .btn_more:before {
    width: 0;
}
.btn_more_blue::before,
.btn_more_blue::after {
    color: #00a7b5;
}



/* footer
-------------------------------*/
.footer_contact {
    padding: 16px;
    z-index: 10;
    position: relative;
    background-color: #00a7b5;
    color: #fff;
    line-height: 1.8;
    font-size: 16px;
    font-family: "Noto Serif JP", YuMincho, "Yu Mincho", 游明朝体, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
.footer_contact_wrap {
    padding: 0 8px;
    display: grid;
    border: 1px solid #fff;
}
.footer_contact_wrap > a {
    padding: 24px 36px 16px;
    border-bottom: 1px solid #fff;
    position: relative;
    color: #fff;
}
.footer_contact_wrap > a:last-child {
    border: 0;
}
.footer_contact_wrap > a > div {
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 100%;
}
.footer_contact_title {
    font-size: 24px;
    font-weight: normal;
}
.footer_contact_wrap .btn_more {
    color: #fff;
}

.site_footer {
    padding-bottom: 44px;
    padding-top: 40px;
    position: relative;
    z-index: 10;
    background-color: #5ec0c1;
    color: #fff;
    font-size: 16px;
    font-family: "Noto Serif JP", YuMincho, "Yu Mincho", 游明朝体, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
.site_footer > .wrapper {
    margin: 0 auto;
    line-height: 1.8;
}
.foot_address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}
.foot_access_link {
    display: inline-flex;
    align-items: center;
    border: 1px solid;
    padding: 0 0 0 4px;
    font-size: 12px;
    color: #fff;
}
.foot_tel {
    color: #fff;
    margin: 12px auto;
    font-size: 36px;
}
.footer_sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
}

.footer_group_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 36px;
    margin-bottom: 36px;
}
.footer_group_btn {
    background: none;
    border: 1px solid;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    cursor: pointer;
    line-height: 1.8;
}
.footer_group_minus {
    display: none;
}
.footer_group_btn.active .footer_group_minus {
    display: block;
}
.footer_group_btn.active .footer_group_plus {
    display: none;
}
.footer_group {
    overflow: hidden;
    transition: 0.8s;
    height: 0;
}
.foot_group_bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.foot_group_bottom_desc {
    margin: min(5.33vw , 40px) 0 0;
}

.foot_group_bottom_desc dt {
    font-weight: 700;
    margin-bottom: 10px
}

.foot_group_bottom_desc dd {
    margin: 0
}

.foot_group_bottom_desc ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.foot_group_bottom_desc ul li {
    margin-top: 10px
}

.foot_group_bottom_desc ul li:first-child {
    margin-top: 0
}

.foot_group_bottom_desc a {
    text-decoration: none;
    color: #fff
}

.copy_common {
    text-align: center;
    padding-bottom: 36px;
    font-size: 11px;
}

.footer_fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--footer_fixed-height);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 4px 0;
    background: #fff;
    border-top: 1px solid #5ec0c1;
}
.footer_fixed > a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid;
    color: #00a7b5;
    line-height: 1.8;
}
.footer_fixed > a.footer_fixed_fair {
    position: relative;
    height: calc(100% + 8px);
    margin-top: -4px;
    margin-left: -1px;
    background-color: #00a7b5;
    color: #fff;
}
.footer_fixed_fair > span {
    background-color: #fffd95;
    color: #00a7b5;
    display: block;
    font-size: 10px;
    border: 1px solid;
    border-radius: 20px;
    position: absolute;
    top: -12px;
    padding: 0 8px;
}

@media only screen and (min-width: 768px) , print {
    .footer_contact_wrap {
        grid-template-columns: 1fr 1fr;
    }
    .footer_contact_wrap > a:nth-child(3) {
        border-bottom: 0;
    }
    .footer_contact_wrap > a:nth-child(2n+1):after {
        content: "";
        width: 1px;
        height: calc(100% - 40px);
        position: absolute;
        right: 0;
        background: #fff;
        top: 20px;
    }

    .site_footer {
        padding-bottom: 0;
    }

    .foot_group_bottom {
        flex-direction: row;
        gap: 80px;
        align-items: flex-start
    }

    .footer_fixed {
        display: none;
    }
}
@media only screen and (min-width: 1440px) , print {
    .footer_contact_wrap {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .footer_contact_wrap > a {
        border-bottom: 0;
    }
    .footer_contact_wrap > a:nth-child(2):after {
        content: "";
        width: 1px;
        height: calc(100% - 40px);
        position: absolute;
        right: 0;
        background: #fff;
        top: 20px;
    }
}