@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
============================= */
/* main visual */
.mainVisual {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 1;
}

.mv-marquee {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mv-track {
  display: flex;
  width: max-content;
  animation: mv-scroll 40s linear infinite;
}

.mv-slide {
  flex: 0 0 auto;
  width: 90vw;
  margin-right: 16px;
  height: 100%;
}

.mv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mainVisual__txt {
    position: absolute;
    bottom: 0%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 10;
}

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

.catchcopy {
    color: var(--primary-black);
    font-size: 3.2rem;
    font-weight: 500;
    background-color: var(--primary-white);
    margin-bottom: -1px;
    line-height: 1.4;
    padding: 5px 0 5px 1vw;
}

.reserve {
    display: none;
}

@keyframes mv-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media screen and (min-width: 1025px) {
  .mainVisual {
    height: calc(44% - 242px);
  }

  .mv-slide {
    width: 70vw;
    margin-right: 32px;
  }

  .catchcopy {
        font-size: 4rem;
    }
}

/* 1025px pc */

/* about */
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.about__content {
    order: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.about__topic {
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-align: center;
    color: var(--primary-brown, #A78B71);
    margin-top: 40px;
}

.about__txt {
    font-size: clamp(1.6rem, 1.8vw, 1.8rem);
    line-height: 1.8;
    padding: 5%;
    margin-bottom: 20px;
}

.about__imgWrap {
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    align-items: center;
    order: 2;
}

.about__img {
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin: 10px;
}

.about__btn {
    margin-top: 30px;
    text-align: center;
}

.about__btnTxt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 48px;
    background-color: var(--primary-liteBrown);
    color: var(--primary-white);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.5;
    position: relative;
    height: 66px;
    margin-bottom: 36px;
}

.about__btnArrow {
    width: 81px;
    height: auto;
    margin-left: 16px;
}

/* about pc */
@media screen and (min-width: 1050px) {
    .section--about {
        padding: 100px 0;
    }

    .about {
        display:flex;
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        gap: 12px;
        flex-direction: row;
        align-items: flex-start;
    }

    .about__imgWrap {
        display: flex;
        align-items: flex-start;
        order: -1;
    }

    .about__img {
        width: 92%;
        height: auto;
        display: block;
        position: static;
        margin-top: 20px;
    }

    .about__content {
        display:flex;
        width: 599px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .about__topic {
        text-align: left;
        font-size: 4.4rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        margin:0 0 10px 0;
    }


    .about__txt {
        padding: 0;
        font-size: min(2vw, 20.5px);
        line-height: 1.8;
        margin-bottom:auto;
    }

    .about__btn {
        position:relative;
        left: 363px;
        margin-top: -49px;
        align-self:flex-end;
    }

    .about__btnTxt {
        font-size: 3.2rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        height: 85px;
        line-height: 80px;
        margin-bottom: 0px;
        margin-top: 60px;
        transition: 0.4s;
    }

    .about__btnTxt:hover {
        background-color: #A78B71;
    }
}
/* 1025px pc */

@media screen and (min-width: 1100px) {
    .about__btnTxt {
        margin-top: 12px;
    }
}

@media screen and (min-width: 1200px) {
    .about__btnTxt {
        margin-top: -10px;
    }
}

/* 当院の特徴 */
.section--feature {
    margin-top: 50px;
    background-image: url("../img/feature-backgroundSP.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding-bottom: 40px;
}

.feature__topic {
    padding-top: 75px;
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-align: center;
    color: var(--primary-brown);
    margin-top: 30px;
}

.feature__img1PC,
.feature__img2PC,
.feature__img3PC,
.feature__img4PC {
    display: none;
}

.feature {
    max-width: 720px;
    margin: 5vw auto;
}

.feature__item {
    margin-bottom: 10px;
}

.feature__content {
    padding: 20px;
}

.feature__txt {
    background-color: var(--primary-white);
    padding-bottom: 30px;
}
.feature__title {
    color: #635140;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.06em;
    padding: 20px;
}

.pcBr {
    display: none;
}

.feature__desc {
    font-size: 1.5rem;
    line-height: 1.8;
    padding: 0 20px;
}

/* 当院の特徴 pc */
@media screen and (min-width: 1025px) {
    .section--feature {
        margin-top: 60px;
        background-image: url("../img/feature-backgroundPC.jpg");
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        padding-top: 160px;
        padding-bottom: 80px;
    }

    .feature__topic {
        padding-top: 0;
        font-size: 4.4rem;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.1em;
        margin-bottom: 60px;
    }

    .feature {
        max-width: none;
        width: 100%;
        margin: 0;
    }

    .feature__item {
        position: relative;
        overflow: visible;
        margin-bottom: 120px;
    }

    .feature__content {
        display: flex;
        align-items: stretch;
        position: relative;
        gap: 0;
        max-width: 1300px;
        margin: 0 auto;
        padding: 0;
    }

    .feature__item:nth-child(even) .feature__content {
        flex-direction: row-reverse;
    }

    .feature__media {
        width: 50%;
        overflow: hidden;
        margin: 0;
    }

    .feature__txt {
        width: 50%;
        padding: 60px 70px;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .pcBr {
        display: block;
    }

    .feature__title {
        font-size: 3.2rem;
        font-weight: 500;
        letter-spacing: 0.06em;
    }

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

    .feature__img1PC,
    .feature__img2PC,
    .feature__img3PC,
    .feature__img4PC {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .feature__img1SP,
    .feature__img2SP,
    .feature__img3SP,
    .feature__img4SP {
        display: none;
    }
}
/* 1025px pc */

/* 診療案内 */
.guide__topic {
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-align: center;
    color: var(--primary-brown);
    margin: 30px 0 40px 0;
}

.guide__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 3vw, 40px);
    padding: clamp(16px, 4vw, 40px);
    margin: 0 auto;
    justify-content: center;
    max-width: 900px;
}

.guide__item {
    display: flex;
    justify-content: center;
}

.guide__item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 10px solid #9F988C;
    padding: 10px;
    text-decoration: none;
    width: 100%;
    max-width: 220px;
}

.guide__icon {
    width: 90px;
    height: auto;
    margin-bottom: 5px;
}

.guide__txt {
    color: #7C967E;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.guide__btn {
    margin-top: 30px;
    text-align: center;
}

.guide__btnTxt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 48px;
    background-color: var(--primary-liteBrown);
    color: var(--primary-white);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    height: 66px;
    margin-bottom: 40px;
}

.guide__arrow {
    width: 81px;
    height: auto;
    display: inline-block;
}

/* 診療案内 pc */
@media screen and (min-width:1025px) {
    .guide__topic {
        font-size: 4.4rem;
        font-weight: 500;
        line-height: 1.8;
        letter-spacing: 0.1em;
        margin: 50px 0 60px 0;
    }

    .guide__list {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(30px, 3vw, 60px);
        max-width: 1100px;
    }

    .guide__item a {
        max-width: 300px;
        transition: 0.4s ease;
    }

    .guide__icon {
        width: 180px;
        height: auto;
        margin-bottom: 5px;
        transition: transform 0.4s ease;
    }

    .guide__item a:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 30px rgba(167, 139, 113, 0.15);
        border-color: var(--primary-brown);
    }

    .guide__item a:hover .guide__icon {
        transform: scale(1.06);
    }

    .guide__txt {
        color: #7C967E;
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 1.8;
        letter-spacing: 0.1em;
        margin-bottom: 5px;
    }

    .guide__btn {
        margin-top: 60px;
    }

    .guide__btnTxt {
        gap: 50px;
        padding: 35px 3.1vw;
        font-size: 3.2rem;
        letter-spacing: 0.1em;
        height: 100px;
        margin-bottom: 80px;
        transition: 0.4s;
    }

    .guide__btnTxt:hover {
        background-color: #A78B71;
    }

    .guide__arrow {
        width: 108px;
        height: auto;
    }
}
/* 1025px pc */

/* お知らせ */
.section--news {
    background-color: var(--primary-liteGreen, #D7E4D7);
    padding: 30px 1.4vw;
}

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

.guide__btnTxt:hover {
    background-color: #A78B71;
}

.news__list {
    margin-bottom: 30px;
}

.news__item {
    margin-bottom: 10px;
    padding: 0 80px;
}

.news__time {
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 10px;
}

.news__type {
    background-color: #DCCBB3;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 4px 1.25vw;
}

.news__txt {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 50px;
}

/* お知らせ pc */
@media screen and (min-width: 1025px) {
    .news__topic {
        margin-top: 60px;
        font-size: 3.2rem;
        line-height: 1.8;
        letter-spacing: 0.1em;
    }

    .news__list {
        display: grid;
        max-width: 900px;
        margin: 0 auto 80px;
        grid-template-columns: 150px 120px 1fr;
        row-gap: 30px;
        align-items: center;
    }

    .news__item {
       display: contents;
       grid-column: 1;
    }

    .news__time {
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1.8;
        margin: 0 16px;
    }

    .news__type {
        grid-column: 2;
        font-size: 1.6em;
        width: 102px;
        text-align: center;
    }

    .news__txt {
        grid-column: 3;
        margin: 0 0 0 16px;
        text-align: left;
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1.8em;
    }
}
/* 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 */

/*==========================
fadeIn
==========================*/
.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}

/*==========================
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;
        margin-top: 30px;
    }
    
    .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:1025px) {
    .fixed__btnSp{
        display: none;
    }
}
/* 1025px pc */