@charset "utf-8";
/* =============================
common
============================= */
:root {
    --primary-white: #FFFFFF;
    --primary-black: #333333;
    --primary-green: #8CAB8C;
    --primary-darkGreen: #7C967E;
    --primary-liteGreen: #D7E4D7;
    --primary-brown: #A78B71;
    --primary-liteBrown: #CFBCA1;
    --contentWidth: 91.4%;
    --contentPadding: 4.2%;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP",
        "Zen Maru Gothic", 
        "ABeeZee",
        sans-serif;
    font-style: normal;
    color: var(--primary-black, #333333);
    background-color: var(--primary-white, #FFFFFF);
    line-height: 1.8;
}

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

.topic {
    color: var(--primary-brown, #A78B71);
    text-align: center;
    font-family: Noto Sans JP;
    font-size: 2.6rem;
    line-height: 1;
    margin: 0 auto;
}

.btn {
    display: block;
    color: var(--primary-white, #FFFFFF);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    background-color: var(--primary-liteBrown, #CFBCA1);
    padding: 16px 32px 18px;
    position: relative;
    transition: 0.4s;
}

.btn::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateX(-50%);
    transition: 0.4s;
}

.btn:hover {
    opacity: 0.5;
}

/* common pc */
@media screen and (min-width:1025px) {
    .topic {
        font-size: 4.4rem;
        line-height: 1;
    }

    .topic::after {
        margin: 32px auto 0;
    }

    .btn {
        width: 343px;
        height: 56px;
        font-size: 3.2rem;
    }
}
/* 1025px pc */

/* =============================
header
============================= */
.header {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4.2%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 33px;
    height: 33px;
}

.header__topic {
    font-size: 1.6rem;
    font-family: "Zen Maru Gothic";
    font-weight: 700;
    line-height: 1.3;
}

.contact {
    display: none;
}

/* nav初期表示 */
.nav  {
    background-color: var(--primary-white);
    width: 100%;
    height: 100vh;
    padding: 24px 6.4%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav.active {
    transform: translateX(0);
}

.nav__header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 32px;
}

.nav__btn {
    width: 35px;
    height: auto;
}

.nav__list {
    display: flex;
    flex-direction: column;
    margin: 40px 0 0 0;
    padding: 0 24px;
}

.nav__item {
    border-bottom: 2px solid #B6CBB8;
}

.nav__item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 2.4rem;
    color: var(--primary-black);
    line-height: 1;
}

.nav__item a::after {
    content: "";
    width: 65px;
    height: 7px;
    background-image: url(../img/arrow-black.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.header__btn {
    width: 35px;
    height: auto;
}

.mega-menu {
    display: none;
}

.nav__item--pc {
    display: none;
}

/* header pc */
@media screen and (min-width:1025px) {
    .header {
        display: flex;
        justify-content: center;
        width: 100%;
        height: auto;
        padding: 0;
        flex-direction: column;
        position: sticky;
        top: 0;
        z-index: 1000;
        background-color: var(--primary-white);
    }

    .header__inner {
        margin: 0 auto;
        padding: 10px clamp(24px, 4vw, 80px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5vw;
        flex-wrap: nowrap;
        width: 100%;
        min-width: 0;
    }

    .header__logo {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .logo-mark {
        width: 80px;
        height: auto;
    }

    .header__topic a {
        font-size: clamp(2.2rem, 2.6vw, 3.2rem);
        font-weight: 700;
        letter-spacing: 0.05em;
        white-space: nowrap;
    }

    .header__topic,
    .logo-mark {
        display: inline-block;
        vertical-align: middle;
    }

    .contact {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: nowrap;
        justify-content: flex-end;
        min-width: 0;
        max-width: 100%;
    }
    
    .tel-markB {
        width: 23px;
        height: auto;
        flex: 0 0 auto;
    }

    .tel {
        font-family: "ABeeZee";
        font-size: 2.4rem;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .contact__btn {
        text-align: center;
        flex: 0 0 auto;
    }   

    .contact__btnTxt {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 14px 2.5vw;
        background-color: var(--primary-green);
        color: var(--primary-white);
        font-weight: 500;
        line-height: 1.5;
        transition: 0.4s;
        position: relative;
        height: 66px;
        border-radius: 50px;
        margin-bottom: 0;
        white-space: nowrap;
        max-width: 100%;
        padding: 14px clamp(20px, 2vw, 36px);
        font-size: clamp(1.6rem, 1.8vw, 2rem);
    }

    .contact__btnTxt:hover {
        background-color: #B6CBB8;
    }

    .contact__btnVector {
        width: 9px;
        height: auto;
        display: inline-block;
        transition: transform 0.4s ease;
    }

    .nav {
        position: static;
        height: auto;
        transform: none;
        transition: none;
        padding: 0;
        z-index: auto;
    }

    .nav__list {
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-items: center;
        gap: 3vw;
        margin: 0;
        padding: 16px 4%;
        flex-wrap: wrap;
    }

    .header__btn {
        display: none;
    }

    .nav__item {
        display: block;
        border-bottom: none;
        white-space: nowrap;
    }

    .nav__item a {
        font-size: 2rem;
        font-weight: 400;
        transition: color 0.4s ease;
        padding: 0;
    }

    .nav__item a::after {
        content: none;
    }

    .nav__header {
        display: none;
    }

    .nav__item--sp {
        display: none;
    }

    .nav__item--pc {
        display: block;
    }

    /* メガメニュー */
    .has-mega {
        position: relative;
    }

    .nav__item a {
        position: relative;
        padding-bottom: 6px;
    }

    .nav__item.has-mega > a {
        position: relative;
    }

    .nav__item.has-mega.active > a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 85px;
        height: 4px;
        background: var(--primary-brown);
    }

    .mega-menu {
        display: block;
        position: fixed;
        top: 157px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.7);
        padding: 60px 0 100px;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s ease;
        z-index: 999;
    }

    .has-mega.active .mega-menu {
        opacity: 1;
        visibility: visible;
    }

    .mega-menu__inner {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: clamp(40px, 8vw, 180px);
        align-items: flex-start;
        padding: 0 10px;
    }

    .mega-menu__title {
        min-width: 220px;
        justify-content: flex-start;
        display: flex;
        align-items: center;
        padding-top: 0;
    }

    .mega-menu__title h2 {
        font-size: clamp(2.2rem, 2.8vw, 3.6rem);
        line-height: 2.2;
        margin: 0;
    }

    .mega-menu__content {
        display: flex;
        gap: clamp(32px, 5vw, 90px);
        margin-top: 20px;
        padding-right: 10px;
    }

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

    .mega-menu__col li {
        margin-bottom: 30px;
        position: relative;
        padding-left: 1.4vw;
    }

    .mega-menu__col li::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--primary-brown);
        line-height: 1;
        transition: background-color .25s ease;
        z-index: 2;
    }

    .mega-menu__col li:hover a {
        background-color: #DCCBB3;
        color: var(--primary-black);
        margin-left: -12px;
        padding-left: 32px;
    }

    .mega-menu__col li:hover::before {
        background-color: #79736A;
    }

    .mega-menu__col a {
        display: inline-block;
        line-height: 1;
        padding: 10px 18px 10px 20px;
        text-decoration: none;
        font-size: clamp(1.8rem, 1.6vw, 2.4rem);
        vertical-align: middle;
        transition: background-color .25s ease, color .25s ease;
        position: relative;
        z-index: 1;
    }

    .mega-menu__col a:hover {
        background-color: #DCCBB3;
        color: var(--primary-black);
    }
    
    body.mega-open .reserve,
    body.mega-open .fixed__btnSp {
        opacity: 0;
        pointer-events: none;
    }
}
/* 1025px pc */

/* =============================
main
============================= */
/* key visual */
.keyVisual__SP {
    margin: 0 auto;
}

.keyVisual__PC {
  display: none;
}

/* key visual pc */
@media screen and (min-width: 1025px) {
    .keyVisual__PC {
        display: block;
        margin-bottom: 60px;
    }

    .keyVisual__SP {
        display: none;
    }
}
/* 1025px pc */

/* menu btn */
.menu__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 30px 0;
    margin: 0 20px;
}

.menu__btn {
    text-align: center;
}   

.menu__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    height: 50px;
    background-color: var(--primary-green);
    color: var(--primary-white);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.06em;
}

.menu__vectorImg {
    position: absolute;
    right: 15px;
    width: 10px;
    height: auto;
}

/* menu btn pc */
@media screen and (min-width: 1025px) {
    .menu__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 32px;
        max-width: 1100px;
        margin: 0 auto;
        margin-bottom: 100px;
    }

    .menu__item:hover {
        background-color: var(--primary-darkGreen);
        transform: translateY(-2px);
    }

    .menu__item:hover .menu__vectorImg {
        transform: translateX(2px);
    }

    .menu__item {
        font-size: 2rem;
        height: 80px;
        transition: 0.25s;
    }

    .menu__vectorImg {
        width: 20px;
        transition: transform 0.4s ease;
    }
}
/* 1025px pc */

/* 保険診療 */
.section--treatment {
    padding: 20px 20px 10px;
}

.treatmentInsurance__topic {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--primary-brown);
    margin-bottom: 30px;
}

.treatmentInsurance {
    padding: 0;
    margin: 0;
}

.treatmentInsurance__item {
    margin-bottom: 40px;
}

.treatmentInsurance__card {
    padding: 0 24px 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.treatmentInsurance__belt {
    background-color: #F0E3D2;
    padding: 3px 20px 3px 40px;
    margin: 0 -24px 24px;
    position: relative;
}

.treatmentInsurance__belt::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 11px;
    height: 100%;
    background-color: #C9B59A;
}

.treatmentInsurance__title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin: 0;
}

.treatmentInsurance__img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.treatmentInsurance__txt {
    font-size: 1.4rem;
    line-height: 1.8;
    padding: 0 5px;
    text-align: justify
}

.treatmentInsurance__btn {
    margin: 30px auto 0;
    background-color: #CFBCA1;
    width: 80%;
    max-width: 280px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: var(--primary-white);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.treatmentInsurance__btnArrow {
    position: static;
    right: 20px;
    width: 65px;
}

/* 保険診療　pc */
@media screen and (min-width: 1025px) {
    .treatmentInsurance__topic {
        font-size: 3.2rem;
        letter-spacing: 0.2em;
        margin-bottom: 60px;
    }

    .treatmentInsurance__card {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 60px 60px;
        margin-bottom: 60px;
    }

    .treatmentInsurance__card:last-of-type {
        margin-bottom: 120px;
    }

    .treatmentInsurance__belt {
        padding: 14px 40px 14px 60px;
        margin: 0 -60px 40px;
        position: relative;
    }

    .treatmentInsurance__belt::before {
        content: "";
        left: 20px;
        top: 0;
        width: 19px;
        height: 100%;
    }

    .treatmentInsurance__title {
        font-size: 3.2rem;
        scroll-margin-top: 160px;
    }

    .treatmentInsurance__content {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    .treatmentInsurance__img {
        width: 480px;
        height: auto;
        flex-shrink: 0;
    }

    .treatmentInsurance__txt {
        flex: 1;
        font-size: 2rem;
        line-height: 1.5;
    }

    .treatmentInsurance__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        padding: 0 80px;
        margin: 40px auto 0;
        width: 43%;
        height: 100px;
        max-width: 700px;
        color: var(--primary-white);
        font-size: 2.4rem;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: 0.06em;
        white-space: nowrap;
        transform: 0.4s;
    }

    .treatmentInsurance__btn:hover {
    opacity: 0.6;
    }

    .treatmentInsurance__btnArrow {
        width: 108px;
        height: auto;
        display: inline-block;
        transition: transform 0.4s ease;
    }
}
/* 1025px pc */

/* 自由診療 */
.treatmentPrivate__topic {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #738873;
    margin-bottom: 30px;
}

.treatmentPrivate {
    padding: 0;
    margin: 0;
}

.treatmentPrivate__item {
    margin-bottom: 40px;
}

.treatmentPrivate__card {
    padding: 0 24px 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.treatmentPrivate__belt {
    background-color: #D7E4D7;
    padding: 3px 20px 3px 40px;
    margin: 0 -24px 24px;
    position: relative;
}

.treatmentPrivate__belt::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 11px;
    height: 100%;
    background-color: var(--primary-green);
}

.treatmentPrivate__title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin: 0;
}

.treatmentPrivate__img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.treatmentPrivate__txt {
    font-size: 1.4rem;
    line-height: 1.8;
    padding: 0 5px;
    text-align: justify;
}

.treatmentPrivate__btn {
    margin: 30px auto 0;
    background-color: var(--primary-green);
    width: 80%;
    max-width: 280px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: var(--primary-white);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.treatmentPrivate__btnArrow {
    position: static;
    right: 20px;
    width: 65px;
}

/* 自由診療 pc */
@media screen and (min-width: 1025px) {
    .treatmentPrivate__topic {
        font-size: 3.2rem;
        letter-spacing: 0.2em;
        margin-bottom: 60px;
    }

    .treatmentPrivate__card {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 60px 60px;
        margin-bottom: 60px;
    }

    .treatmentPrivate__belt {
        padding: 14px 40px 14px 60px;
        margin: 0 -60px 40px;
        position: relative;
    }

    .treatmentPrivate__belt::before {
        content: "";
        left: 20px;
        top: 0;
        width: 19px;
        height: 100%;
    }

    .treatmentPrivate__title {
        font-size: 3.2rem;
        scroll-margin-top: 160px;
    }

    .treatmentPrivate__content {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    .treatmentPrivate__img {
        width: 480px;
        height: auto;
        flex-shrink: 0;
    }

    .treatmentPrivate__txt {
        flex: 1;
        font-size: 2rem;
        line-height: 1.5;
    }

    .treatmentPrivate__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        padding: 0 80px;
        margin: 40px auto 0;
        width: 45%;
        height: 100px;
        max-width: 700px;
        color: var(--primary-white);
        font-size: 2.4rem;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: 0.06em;
        white-space: nowrap;
        transform: 0.4s;
    }

    .treatmentPrivate__btn:hover {
    opacity: 0.6;
    }

    .treatmentPrivate__btnArrow {
        width: 108px;
        height: auto;
        display: inline-block;
        transition: transform 0.4s ease;
    }
}
/* 1025px pc */

/* information */
.section--info {
    padding: 60px 20px;
}

.info__img {
    width: 100%;
    max-width: 375px;
    height: auto;
    margin:0 auto 30px;
    display: block;
}

.info__topic {
    font-family: "Zen Maru Gothic";
    font-size: 2rem;
    font-weight: 700;
    padding: 0 0 0 60px;
    text-align: left;
    margin-bottom: 16px;
}

.info__list {
    padding: 0 0 0 60px;
    margin: 0 0 20px;
    max-width: 360px;
}

.info__item {
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

.info__item a {
    color: #C5AA90;
    font-weight: 700;
}

.info__contact {
    background-color: var(--primary-liteGreen);
    margin: 10px auto 40px;
    padding: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info__contactTop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: nowrap;
}

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

.info__tel-markB {
    width: 20px;
    height: auto;
    flex-shrink: 0;
}

.info__tel {
    font-family: "ABeeZee";
    font-size: 1.6rem;
    line-height: 1;
}

.info__btn {
    text-align: center;
}

.info__btnTxt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 40px;
    background-color: var(--primary-green);
    color: var(--primary-white);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    height: 66px;
    border-radius: 50px;
}

.info__btnVector {
   width: 9px;
   height: auto;
   display: inline-block;
   transition: transform 0.4s ease;
}

.medicalHours__imgSP {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.medicalHours__imgPC {
    display: none;
}

/* info pc */
@media screen and (min-width: 1025px) {
    .section--info {
        max-width: 1370px;
        margin: 0 auto;
        padding: 20px ;
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        align-items: stretch;
        gap: 32px;
        margin-top: 60px;
    }

    .info__img {
        display: block;
        grid-column: 2;
        grid-row: 1 / span 3;
        width: 100%;
        margin-top: 10px;
        max-width: none;
        height: 92%;  
        object-fit: cover;
    }

    .info__topic,
    .info__list,
    .info__contact {
        text-align: left;
        margin-left: 0;
        grid-column: 1;
    }

    .info__topic {
        padding: 0;
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 0;
    }

    .info__list {
        max-width: none;
        padding: 0;
        margin-bottom: 10px;
    }

    .info__item {
        padding: 0;
        font-size: 2.4rem;
        line-height: 1.8;
    }

    .info__contact {
        align-items: flex-start;
        text-align: left;
        width: 100%;
        padding: 30px 40px;
    }

    .info__contactTop {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-bottom: 14px;
    }

    .info__contactTxt {
        margin: 0;
        font-size: 2.4rem;
        white-space: nowrap;
    }

    .info__tel-markB {
        display: inline-block;
        vertical-align: middle;
        width: 20px;
        margin-right: 10px;
        justify-self: end;
    }

    .info__tel {
        font-size: 2.8rem;
        line-height: 1;
        margin: 0;
        justify-self: end;
        white-space: nowrap;
    }

    .info__btn {
        margin-top: 0;
        text-align: left;
    }

    .info__btnTxt {
        transition: 0.4s;
    }

    .info__btnTxt:hover {
    opacity: 0.5;
    }

    .medicalHours__imgSP {
        display: none;
    }

    .medicalHours__imgPC {
        display: block;
        margin: 0 auto;
        grid-column: 1 / -1;
        max-width: 760px;
        margin-top: -20px;
        margin-bottom: 40px;
    }
}
/* 1025px pc */

/*==========================
footer
==========================*/
.footer {
    background-color: var(--primary-liteGreen);
    padding: 60px 40px 30px;
}

.footer__inner {
    max-width: 100%;
    margin: 0 auto;
}

.footer__title {
    font-family: "Zen Maru Gothic";
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.2em;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.footer__listTitle {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.footer__item {
    display: none;
}

/* footer pc */
@media screen and (min-width: 1025px) {
    .footer {
        padding: 80px 60px 40px;
    }

    .footer__inner {
        display: grid;
        grid-template-columns: 1.5fr 2fr;
        gap: 10vw;
        align-items: start;
    }

    .footer__title {
        font-size: 2.5rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        white-space: nowrap;
    }

    .footer__nav {
        margin-top: 0;
        display: grid;
        grid-template-columns: repeat(3, auto);
        justify-content: end;
        gap: 2vw;
        padding: 0 20%;
    }

    .footer__list {
        margin-top: 0;
        padding: 0;
        margin: 0;
        min-width: 144px;
    }

    .footer__listTitle {
        font-size: 1.8rem;
        line-height: 1.8;
    }

     .footer__item {
        display: block;
        font-size: 1.4rem;
        line-height: 1.8;
     }

     .copy {
        font-size: 1.6rem;
     }
}
/* 1025px pc */

/*==========================
scrollTop
==========================*/
.pageTop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    position: fixed;
    bottom: 10%;
    right: 1.4%;
}

.pageTop.is-active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.pageTop__img {
    width: 6px;
    height: auto;
    display: block;
}

.pageTop__txt {
    font-size: 1.3rem;
    display: block;
    margin: 0;
    text-align: center;
}

/* scrollTop pc */
@media screen and (min-width:1025px) {
    .pageTop__img {
        width: 9px;
    }

    .pageTop__txt {
        font-size: 2rem;
    }
}
/* 1025px pc */

/*==========================
pc WEB予約追従ボタン
==========================*/
/* WEB予約ボタン */
@media screen and (min-width: 1025px) {
    .reserve {
        display: flex;
        position: fixed;
        top: 160px;
        right: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background-color: var(--primary-green);
        color: var(--primary-white);
        font-size: 1.8rem;
        padding: 10px 1.4vw;
        border-radius: 50%;
        transition: 0.4s;
        width: 160px;
        height: 160px;
        transition: all 0.4s ease;
        z-index: 9999;
    }
    
    .reserve img {
        width: 60px;
        height: auto;
    }

    .reserve span {
        font-size: 1.8rem;
    }

    .reserve:hover {
        background-color: var(--primary-darkGreen);
        transform: translateY(-2px);
    }
}
/* 1025px pc */

/*==========================
 sp　tel,WEB予約追従ボタン
==========================*/
.fixed__btnSp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}

.fixed__btnSp a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-green);
    color: var(--primary-white);
    padding: 10px 0;
}

.fixed__tel {
    font-family: "ABeeZee";
    font-size: 2rem;
    border-right: 1px solid var(--primary-black);
    box-sizing: border-box;
}

.fixed__tel img {
    width: 24px;
    height: auto;
}

.fixed__reserve {
    font-size: 2rem;
    font-weight: 500;
}

.fixed__reserve img {
    width: 40px;
    height: auto;
}
/* fixed pc */
@media screen and (min-width:769px) {
    .fixed__btnSp{
        display: none;
    }
}
/* 1025px pc */