@charset "UTF-8";

@media screen and (min-width: 1401px) {
    html {
        font-size: 16px;
    }
}

html {
    font-size: 0.833vw;
    /* 10px / 1200px * 100 */
}

@media screen and (max-width: 767px) {
    html {
        font-size: 1.302vw;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 2.083vw;
    }
}

:root {
    /* --main-color: #1ba1e6; */
    --main-color: #753623;
    --sub-color: #753623;
    --sub-white: #F9FCFF;


}

body {
    color: #444;
    /* カラー */
    font-family: "Noto Sans JP",
        "Yu Gothic",
        "YuGothic",
        "游ゴシック",
        "Hiragino Kaku Gothic Pro",
        "ヒラギノ角ゴ Pro W3",
        "游ゴシック体",
        "Meiryo",
        "メイリオ",
        sans-serif;

    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 2.0;
}

a {
    color: #444;
}


/*  ----------------------------------------------------------

header

----------------------------------------------------------  */
header {
    padding: 1.5rem 0 0 0;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 90px 0 2rem;
}

header h1 {
    width: 20rem;
}


.header-info {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    align-items: center;
}

.header-tel {
    font-weight: bold;
    background: url(../img/ico-tel.png) no-repeat left center;
    background-size: 2.6rem auto;
    padding-left: 3.5rem;
    background-position: 0rem 0.8rem;
    font-size: 2rem;
}

header nav ul li {
    font-family: 'Inter', sans-serif;
}

nav ul .current-pg a {
    color: var(--main-color);

}

.header__sns li {
    width: 3rem;
}

.header__sns li img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}


@media screen and (min-width: 768px) {
    .float-reserve {
        position: fixed;
        right: 0;
        top: 16rem;
        z-index: 100;
        line-height: 1;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        display: flex;
    }
    
    .float-reserve a:nth-child(2) {
        margin-top: 3rem;
        background-color: #569E47;
    }
}

.float-reserve a {
    background: url(../img/arrow1.png) no-repeat center bottom 1.5rem;
    background-size: 1.6rem;
    background-color: var(--sub-color);
    color: #fff;
    display: block;

    padding: 2.5rem 2rem 4.5rem 1.7rem;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    header {
        padding: 0;
        height: 6rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-wrap {
        display: block;
        padding: 0;
    }

    header h1 {
        width: 25rem;
    }

    .float-reserve {
        position: fixed;
        right: 0;
        bottom: 0;
        z-index: 100;
        line-height: 1;
        width: 100%;
        display: flex;
    }

    .float-reserve a {
        width: 33.33333%;
        background: url(../img/arrow1.png) no-repeat center right 1.5rem;
        background-size: 2.4rem;
        -ms-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        padding: 3rem 0;
        font-size: 2.4rem;
        text-align: center;
    }
    
    .float-reserve a:nth-child(1) {
        width: 33.33333%;
        background: url(../img/arrow1.png) no-repeat center right 1.5rem;
        background-size: 2.4rem;
        -ms-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        padding: 3rem 0;
        font-size: 2.4rem;
        text-align: center;
        background-color: #569E47;
    }
    
    .float-reserve a:nth-child(2) {
        width: 33.33333%;
        background: url(../img/arrow1.png) no-repeat center right 1.5rem;
        background-size: 2.4rem;
        -ms-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        padding: 3rem 0;
        font-size: 2.4rem;
        text-align: center;
        background-color: #F06CC5;
    }
    
    .float-reserve a:nth-child(3) {
        width: 33.33333%;
        background: url(../img/arrow1.png) no-repeat center right 1.5rem;
        background-size: 2.4rem;
        -ms-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        padding: 3rem 0;
        font-size: 2.4rem;
        text-align: center;
        background-color: var(--main-color);
    }




    .header__sns li {
        display: block;
        width: 4rem;
    }
}


/*  ----------------------------------------------------------

footer

----------------------------------------------------------  */
footer {
    padding-bottom: 6rem;
}

footer .gnav {
    padding: 1.2rem 0;
    /* background: #ecf7fb; */
    background: #e5d3dc;
}

.footer-wrap {
    padding: 6rem 11% 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-wrap .logo {
    width: 20rem;
    margin-bottom: 1rem;
}

.footer-wrap address {
    margin-bottom: 1rem;
}

.footer-wrap .more {
    margin: 0;
    margin-top: 8rem;
}

footer small {
    display: block;
    text-align: center;
    color: var(--sub-color);
}

.footer-sns {
    display: flex;
    gap: 11rem;
    align-items: center;
}

.footer-sns ul li {
    width: 3rem;
}

.footer__copy {
    text-align: end;
    padding-top: 1rem;

}

@media screen and (max-width: 767px) {
    footer {
        padding-bottom: 8rem;
    }

    .footer-wrap {
        padding: 6rem 5% 3rem 5%;
        display: block;
    }

    .footer-wrap .logo {
        width: 20rem;
        margin: 0 auto 2rem auto;
    }

    .footer-wrap address {
        margin-bottom: 1rem;
    }

    .footer-wrap > div:first-of-type {
        margin-bottom: 3rem;
    }

    .footer__copy {
        text-align: center;
        padding-top: 5rem;

    }

    .footer-sns {
        gap: 1rem;
    }
}


/*  ----------------------------------------------------------

gnav

----------------------------------------------------------  */
.gnav ul {
    display: flex;
    justify-content: center;
    padding: 1.5rem 1%;
}

.gnav ul li {
    width: calc(100% / 10);
    text-align: center;
    line-height: 1;
    font-weight: bold;
    font-size: 1.4rem;
}

.gnav ul li:not(:last-child) {
    border-right: 1px solid #bebebe;
}

.gnav ul li span {
    font-family: 'Roboto', sans-serif;
    color: var(--main-color);
    display: block;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    transition: all .3s;
}

.gnav ul li a {
    display: block;
}

@media screen and (max-width: 767px) {
    .gnav {
        display: none;
    }
}



/*  ----------------------------------------------------------

page-ttl

----------------------------------------------------------  */
.page-ttl {
    background: url(../img/page-bg.jpg) no-repeat;
    background-position: 50% 80%;
    background-size: cover;
}

.page-ttl div {
    background: rgba(0, 0, 0, 0.5);
}

.page-ttl h2 {
    color: #fff;
    font-size: 4.2rem;
    line-height: 1;
    text-align: center;
    padding: 10.5rem 0 10rem 0;
}

.page-ttl h2 span {
    display: block;
    color: var(--main-color);
    font-size: 1.4rem;
    margin-top: 1.5rem;
}

@media screen and (max-width: 767px) {
    .page-ttl h2 {
        padding: 6rem 0;
    }
}


/*  ----------------------------------------------------------

style

----------------------------------------------------------  */
.heading {
    text-align: center;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 6rem;
}

.heading span {
    color: var(--main-color);
    font-family: "Noto Sans JP";
    font-size: 3.2rem;
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 900;
}

.more {
    text-align: center;
    line-height: 1;
    display: block;
    color: #fff;
    width: 24rem;
    padding: 1.8rem 0;
    margin: 0 auto;
    font-family: 'Noto Sans JP';
    font-weight: 700;
    background: url(../img/arrow1.png) no-repeat center right 1.5rem;
    background-size: 1.8rem;
    background-color: var(--main-color);
}
.more-insta{
    background:#fff;
    border: 1px solid #5e524e;
    border-radius: 7.5px;
    padding: 1.2rem 0;
    color: #5e524e;
    display: flex;
    align-items: center;
    justify-content: center;
}
.more-insta img{
    width: 2.5rem;
    height: auto;
    margin: 0 1rem 0 0;
}

.border-blue {
    position: relative;
    margin-bottom: 8rem;
}

.border-blue:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    /*線の上下位置*/
    display: inline-block;
    width: 10rem;
    /*線の長さ*/
    height: 5px;
    /*線の太さ*/
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    /*位置調整*/
    background-color: var(--main-color);
    /*線の色*/
    border-radius: 2px;
    /*線の丸み*/
}

@media screen and (max-width: 767px) {
    .more {
        width: 100%;
    }
    .more-insta img{
        width: 2.5rem;
    }
}

.time-schedule {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
    font-size: 1.4rem;
    color: var(--main-color);
}

.time-schedule th {
    border: 1px solid var(--sub-color);
    text-align: center;
    vertical-align: middle;
    padding: 2.2rem 0;
    color: var(--main-color);
    line-height: 1.5;
    font-size: 1.6rem;
    font-weight: 700;
    background: #fff;
}

.time-schedule td {
    border: 1px solid var(--main-color);
    text-align: center;
    vertical-align: middle;
    padding: 2.2rem 0;
    line-height: 1.7;
    color: var(--main-color);
    background: #fff;
    font-size: 1.4rem;
}

/* 時間列 */
.time-schedule th:first-child,
.time-schedule td:first-child {
    width: 20rem;
}

.time-schedule td:first-child {
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    text-align: left;
    padding-left: 1.6rem;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
}

/* 曜日列 */
.time-schedule th:not(:first-child),
.time-schedule td:not(:first-child) {
    width: calc((100% - 24rem - 6.5rem) / 6);
}
/* 日・祝列 */
.time-schedule th:last-child,
.time-schedule td:last-child {
    width: 6.5rem;
    white-space: nowrap;
}
/* ← ここに追加 ↓ */
.time-schedule th:last-child,
.time-schedule td:last-child {
    width: 9rem;
    white-space: nowrap;
}
/* ← ここに追加 ↑ */

/* 日・祝を2段にしたときの見え方 */
.time-schedule th.holiday-col {
    white-space: nowrap;
    line-height: 1.5;
    font-size: 1.5rem;
}


/* 記号サイズを少しだけTOP寄りに */
.time-schedule td:nth-child(n+2) {
    font-size: 1.8rem;
}

/* 注釈 */
.note {
    margin-top: 2.4rem;
    text-align: center;
    color: var(--main-color);
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
    .time-schedule {
        font-size: 1.3rem;
    }

    .time-schedule th {
        font-size: 1.4rem;
        padding: 1.8rem 0.2rem;
    }

    .time-schedule td {
        font-size: 1.3rem;
        padding: 1.8rem 0.2rem;
    }

    .time-schedule th:first-child,
    .time-schedule td:first-child {
        width: 14rem;
    }

    .time-schedule td:first-child {
        font-size: 1.4rem;
        padding-left: 1rem;
    }

    .time-schedule th:not(:first-child),
    .time-schedule td:not(:first-child) {
        width: calc((100% - 14rem - 6rem) / 6);
    }

    .time-schedule th:last-child,
    .time-schedule td:last-child {
        width: 6rem;
    }

    .top-access-info .note,
    .note {
        font-size: 1.3rem;
        line-height: 1.9;
    }
}


/*  ----------------------------------------------------------

hamburger

----------------------------------------------------------  */
nav.gnav-sp {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.open nav.gnav-sp {
    top: 0;
    opacity: 1;
    z-index: 99999;
    visibility: visible;
    pointer-events: auto;
}

nav.gnav-sp .inner {
    padding: 6rem 2.5rem 3rem 2.5rem;
}

nav.gnav-sp .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav.gnav-sp .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid var(--sub-color);
    font-size: 2rem;
    font-weight: bold;
}

nav.gnav-sp .inner ul li span {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: var(--main-color);
    margin-left: 2rem;
}

nav.gnav-sp .inner ul li a {
    display: block;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
}

@media screen and (max-width: 767px) {
    /*nav {
		left: -220px;
		width: 220px;
	}*/
}

/* toggle_btn */
.toggle_btn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    transition: all .5s;
    cursor: pointer;
    z-index: 100000;
    background: var(--main-color);
}

.toggle_btn span {
    display: block;
    position: absolute;
    left: 1.5rem;
    width: 3rem;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    transition: all .5s;
}

.toggle_btn span:nth-child(1) {
    top: 1.9rem;
}

.toggle_btn span:nth-child(2) {
    top: 2.9rem;
}

.toggle_btn span:nth-child(3) {
    top: 3.9rem;
}

.open .toggle_btn span {
    background-color: #fff;
}

.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(1rem) rotate(-45deg);
    transform: translateY(1rem) rotate(-45deg);
}

.open .toggle_btn span:nth-child(2) {
    opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-1rem) rotate(45deg);
    transform: translateY(-1rem) rotate(45deg);
}

/* mask */
#mask {
    display: none;
    transition: all .5s;
}

.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    opacity: .8;
    z-index: 2;
    cursor: pointer;
}


/*  ----------------------------------------------------------

guide

----------------------------------------------------------  */
.guide-list {
    display: flex;
    flex-wrap: wrap;
}

.gallery-list li {
    width: calc(20% - 20px * 4/5);
    /* margin: 0 2.5% 2.5% 0; */
    margin-right: 20px;
    margin-top: 20px;
}

/* .gallery-list li:nth-child(5n) {
    margin-right: 0;
}

.gallery-list li:nth-child(-n+5) {
    margin-top: 0;
} */

.gallery-list img {
    height: 16rem;
    width: 100%;
    object-fit: cover;
}

.gallery-list span {
    display: block;
    font-size: 1.4rem;
    line-height: 1.7;
    margin: 1rem 0 0 0;
    text-align: center;
}

.object-fit-img {
    object-fit: contain;
    font-family: 'object-fit: contain;'
}

@media screen and (min-width: 1025px) {
    .gallery-list li {
        width: calc(20% - 20px * 4/5);
        /* margin: 0 2.5% 2.5% 0; */
        margin-right: 20px;
        margin-top: 20px;
    }

    .gallery-list li:nth-child(5n) {
        margin-right: 0;
    }

    .gallery-list li:nth-child(-n+5) {
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .gallery-list li {
        width: calc(33.3333333% - 12px * 2/3);
        /* margin: 0 3.5% 3.5% 0; */
        margin-right: 12px;
        margin-top: 12px;
    }

    .gallery-list li:nth-child(3n) {
        margin-right: 0;
    }

    .gallery-list li:nth-child(-n+3) {
        margin-top: 0;
    }

    /* .gallery-list li:nth-child(5n) {
        margin-right: 12px;
    }

    .gallery-list li:nth-child(-n+5) {
        margin-top: 12px;
    } */

    .gallery-list img {
        height: 14rem;
    }
}


/*  ----------------------------------------------------------

layout

----------------------------------------------------------  */
.base-layout {
    padding: 12rem 10%;
    background: var(--sub-white);
}

.container {
    margin: 10rem auto;
    width: 80%;
}

.container .inner {
    display: flex;
    margin-bottom: 6rem;
}

.container .inner > div:first-of-type {
    margin-right: 4rem;
}

.container .inner img {
    width: 32rem;
}

.container .inner img + span {
    display: block;
    margin-top: 1rem;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .base-layout {
        padding: 8rem 2rem;
    }

    .container {
        margin: 8rem 2rem;
        width: auto;
        margin-bottom: 4rem;
    }

    .container .inner {
        display: block;
    }

    .container .inner > div:first-of-type {
        margin-right: 0;
        margin-bottom: 3rem;
    }

    .container .inner img {
        width: 100%;
        height: auto;
    }
}


/*  ----------------------------------------------------------

display

----------------------------------------------------------  */
@media screen and (min-width: 768px) {
    .sp {
        display: none;
    }
}

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


/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
    line-height: 1;
    position: fixed;
    z-index: 999;
}

#page-top a {
    color: var(--main-color);
    /* カラー */
}

@media screen and (min-width: 768px) {
    #page-top {
        bottom: 20px;
        right: 15px;
    }

    #page-top i {
        font-size: 40px !important;
    }
}

@media screen and (max-width: 767px) {
    #page-top {
        bottom: 9rem;
        right: 1rem;
    }

    #page-top i {
        font-size: 5rem !important;
    }
}


/*  ----------------------------------------------------------

link

----------------------------------------------------------  */
a {
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

a:hover {
    opacity: 0.4;
    filter: alpha(opacity=60);
}

@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

@media screen and (max-width: 767px) {
    a[href^="tel:"] {
        text-decoration: underline;
    }
}


/*  ----------------------------------------------------------

Google翻訳

----------------------------------------------------------  */
#google_translate {
    position: absolute;
    z-index: 9999;
}

#google_translate img {
    width: auto;
    height: auto;
}

@media screen and (min-width: 768px) {
    #google_translate {
        right: 0;
        top: 0;
    }
}

@media screen and (max-width: 767px) {
    #google_translate {
        left: 0;
        bottom: 0;
    }
}


/*  ----------------------------------------------------------

fade

----------------------------------------------------------  */
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInUp {
    0% {
        opacity: 0;
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation: fadeInUp 0.6s ease;
    -moz-animation: fadeInUp 0.6s ease;
    -ms-animation: fadeInUp 0.6s ease;
    animation: fadeInUp 0.6s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both
}

.fade {
    opacity: 0;
}

.delay1 {
    animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
}

.delay2 {
    animation-delay: 0.35s;
    -moz-animation-delay: 0.35s;
    -webkit-animation-delay: 0.35s;
    -o-animation-delay: 0.35s;
}

.delay3 {
    animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
}

.delay4 {
    animation-delay: 0.65s;
    -moz-animation-delay: 0.65s;
    -webkit-animation-delay: 0.65s;
    -o-animation-delay: 0.65s;
}

.delay5 {
    animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
}


/*  ----------------------------------------------------------

class

----------------------------------------------------------  */
.mb10 {
    margin-bottom: 1rem !important;
}

.mb15 {
    margin-bottom: 1.5rem !important;
}

.mb20 {
    margin-bottom: 2.0rem !important;
}

.mb25 {
    margin-bottom: 2.5rem !important;
}

.mb30 {
    margin-bottom: 3.0rem !important;
}

.mb35 {
    margin-bottom: 3.5rem !important;
}

.mb40 {
    margin-bottom: 4.0rem !important;
}

.mb45 {
    margin-bottom: 4.5rem !important;
}

.mb50 {
    margin-bottom: 5.0rem !important;
}

.mb55 {
    margin-bottom: 5.5rem !important;
}

.mb60 {
    margin-bottom: 6.0rem !important;
}

.mb70 {
    margin-bottom: 7.0rem !important;
}

.mb80 {
    margin-bottom: 8.0rem !important;
}

.mb90 {
    margin-bottom: 9.0rem !important;
}

.mb100 {
    margin-bottom: 10.0rem !important;
}

.fit {
    height: auto;
    width: 100%;
}


@media screen and (max-width: 767px) {
    .ttl:after {
        width: 40%;
    }
}

dl.detail {
    display: flex;
    flex-wrap: wrap;
}

dl.detail dt {
    font-weight: bold;
    padding: 1.5rem;
    width: 25%;
}

dl.detail dd {
    padding: 1.5rem;
    width: 75%;
}

dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
    border-bottom: none;
}

dl.bk dt,
dl.bk dd {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

dl.wh dt,
dl.wh dd {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 767px) {
    dl.detail {
        display: block;
    }

    dl.detail dt {
        font-weight: bold;
        padding: 1.2rem 1.2rem 0 1.2rem;
        width: 100%;
    }

    dl.detail dd {
        padding: 0 1.2rem 1.2rem 1.2rem;
        width: 100%;
    }

    dl.bk dt {
        border-bottom: none;
    }

    dl.wh dt {
        border-bottom: none;
    }
}

.has-child{
    position: relative;
}


.has-child > a::before {
    border-left: 2px solid;
    border-top: 2px solid;
    border-color: #000;
    content: "";
    height: 6px;
    position: absolute;
    left: 1.4rem;
    -moz-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    width: 6px;
    top:10%;
}


.has-child ul li{
    width: 100%;
    padding: 0.4rem;
}

.has-child ul li:not(:last-child){
    border-right: none;
}


.has-child ul{
    display: none;
}

@media screen and (min-width: 768px) {
    .has-child:hover ul{
        display: block;
        position: absolute;
        background: #fff;
        z-index: 999;
    }
}


@media screen and (max-width: 767px) {
    
    .has-child > a::before {
    border-left: 2px solid;
    border-top: 2px solid;
    border-color: #000;
    content: "";
    height: 6px;
    position: absolute;
    -moz-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    width: 6px;
    top: 3.5rem;
}
    .has-child a{
        margin-left: 2rem;
    }
    
    /* PCヘッダーナビ用（バーガー内 gnav-sp は JS 開閉のため除外） */
    header .gnav .has-child:hover ul {
    display: none;
    position: relative;
    background: #fff;
    z-index: 0;
}

    
    .has-child ul{
    display: none;
    position: relative;
    background: #fff;
    z-index: 999;
}

    /* バーガー内：ドロップダウンをパネル内に収める（PC用 absolute が効かないよう明示） */
    nav.gnav-sp .has-child ul {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
}

.fade-left,
.fade-right{
  opacity: 0;
}


/* 左から */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInLeft {
  animation: fadeInLeft 0.8s ease both;
}

/* 右から */
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInRight {
  animation: fadeInRight 0.8s ease both;
}

@media screen and (max-width:767px) {
    
.float-reserve a[href^="tel:"]{
    text-decoration: none!important;
}
    
}
/* ============================================
   PC固定サイドボタン 強制縦並び
   ============================================ */
.float-reserve.pc {
    all: unset !important;
    position: fixed !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important;
    width: 70px !important;
}

.float-reserve.pc a {
    all: unset !important;
    display: block !important;
    width: 70px !important;
    padding: 16px 8px !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

/* WEB予約（上） */
.float-reserve.pc a:first-child {
    background: rgba(90, 80, 65, 0.92) !important;
    color: #fff !important;
    border-radius: 12px 0 0 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.12) !important;
}
.float-reserve.pc a:first-child:hover {
    background: rgba(70, 60, 45, 0.96) !important;
}

/* 診療時間（下） */
.float-reserve.pc a:last-child {
    background: rgba(110, 100, 85, 0.92) !important;
    color: #fff !important;
    border-radius: 0 0 0 12px !important;
}
.float-reserve.pc a:last-child:hover {
    background: rgba(90, 80, 65, 0.96) !important;
}

/* アイコン */
.float-reserve.pc .float-icon {
    all: unset !important;
    display: block !important;
    font-size: 22px !important;
    margin-bottom: 6px !important;
    opacity: 0.9 !important;
    line-height: 1 !important;
    text-align: center !important;
}

/* 英字 */
.float-reserve.pc .float-en {
    all: unset !important;
    display: block !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 9px !important;
    letter-spacing: 0.2em !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.7) !important;
    margin-bottom: 4px !important;
    line-height: 1 !important;
    text-align: center !important;
}

/* 日本語（縦書き） */
.float-reserve.pc .float-ja {
    all: unset !important;
    display: block !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    color: #fff !important;
    writing-mode: vertical-rl !important;
    text-orientation: mixed !important;
    line-height: 1.4 !important;
    margin: 0 auto !important;
    text-align: center !important;
}
