@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;
    }
}

body {
    color: #333;
    /* カラー */
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3",
        "Hiragino Mincho Pro", "Noto Serif JP", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 2;
}



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

header

----------------------------------------------------------  */
.header {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    width: 100%;
    position: fixed;
    top: 0;
    transition: all 0.5s;
}

.logo {
    width: 35rem;
}

@media screen and (min-width: 768px) {
    .header.hide {
        transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
    }
}

@media screen and (max-width: 767px) {
    .header {
        padding: 0;
        justify-content: center;
        position: relative;
        height: 6rem;
    }

    .logo {
        width: 30rem;
    }
}

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

gnav

----------------------------------------------------------  */
ul.gnav {
    display: flex;
    align-items: center;
}

ul.gnav li {
    font-family: "Bodoni Moda", serif;
}

ul.gnav li:not(:first-child) {
    margin-left: 4rem;
}

ul.gnav a {
    display: inline-block;
    position: relative;
    text-decoration: none;
}

ul.gnav a::after {
    position: absolute;
    background: #b87433;
    bottom: -2px;
    content: "";
    height: 1px;
    left: 0;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
    width: 100%;
}

ul.gnav a:hover::after {
    transform: scale(1, 1);
}

ul.gnav a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

ul.gnav li.gnav-reserve a {
    background: #6c5a47;
    color: #fff;
    display: block;
    padding: 0.8rem 2rem;
}

ul.gnav li.gnav-reserve a:hover {
    opacity: 0.5;
}

ul.gnav li.gnav-reserve a::after {
    background: none;
}

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

footer

----------------------------------------------------------  */
footer {
    background: #f6efe7;
}

.footer-wrap {
    padding: 6rem 5%;
    display: flex;
    justify-content: space-between;
}

footer .sns ul {
    display: flex;
    margin-top: 2rem;
}

footer .sns ul li {
    width: 2rem;
}

footer .sns ul li:not(:last-child) {
    margin-right: 2rem;
}

footer small {
    display: block;
    text-align: center;
    background: url(../img/top-texture2.jpg) no-repeat center bottom;
    background-size: cover;
    color: #fff;
    line-height: 1;
    padding: 2.5em 0;
    font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
    .footer-wrap {
        padding: 6rem 2rem;
        display: block;
    }

    footer .logo {
        width: 30rem;
        margin: 0 auto 2rem;
    }

    footer .sns ul {
        justify-content: center;
        margin-top: 2.5rem;
        margin-bottom: 4rem;
        align-items: center;
    }

    footer .sns ul li {
        width: 3.5rem;
    }

    footer ul.gnav {
        display: block;
    }

    footer ul.gnav li {
        text-align: center;
        font-size: 2rem;
    }

    footer ul.gnav li:not(:last-child) {
        margin-bottom: 1rem;
    }

    footer ul.gnav li:not(:first-child) {
        margin-left: 0;
    }

    footer small {
        padding: 2.5em 0 7rem 0;
    }
}

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

page-ttl

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

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

.page-ttl h2 {
    font-family: "Bodoni Moda", serif;
    color: #fff;
    font-size: 4.8rem;
    line-height: 1;
    text-align: center;
    padding: 22rem 0 12rem 0;
    font-weight: normal;
}

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


.treatment-detail-btn {
    display: block;
    width: 420px;
    max-width: 100%;
    text-align: center;

    padding: 18px 20px;

    background: #f0832b;
    color: #fff;

    border-radius: 999px;

    font-size: 1.4rem;
    font-weight: bold;

    margin: 40px 0 0 auto;
}

.treatment-detail-btn {
    display: block;
    width: 420px;
    max-width: 100%;
    margin-left: auto;
    margin-top: 40px;
}

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

style

----------------------------------------------------------  */
.heading {
    line-height: 1;
    text-align: center;
    font-family: "Bodoni Moda", serif;
    font-size: 4rem;
    margin-bottom: 6rem;
    font-weight: normal;
}

.heading::after {
    content: "";
    background: #333;
    width: 4rem;
    height: 1px;
    display: block;
    margin: 2rem auto 0 auto;
}

@media screen and (max-width: 767px) {
    .heading {
        margin-bottom: 4rem;
    }
}

.more {
    border: solid 1px #ff6f18;
    width: 24rem;
    padding: 1px;
    text-align: center;
    line-height: 1;
    margin: 0 auto;
    font-family: "Bodoni Moda", serif;
    transition: all 0.3s;
}

.more a {
    display: block;
    border: solid 1px #fff;
    padding: 2rem 0;
    color: #fff;
    background: #ff6f18;
}

.more:hover {
    opacity: 0.5 !important;
}

.more a:hover {
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .more {
        width: auto;
    }
}

.ttl {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    /* 細 */
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 3rem;
    padding: 1rem 0 1.4rem 0;
    position: relative;
}

.ttl:after {
    border-bottom: solid 3px #ff6f18;
    /* 太 */
    bottom: -3px;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}

.ttl-line {
    border-left: solid 6px #ff6f18;
    padding-left: 2rem;

    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 3rem;
}

@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;
    }
}

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

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 0.5s;
    z-index: -1;
    opacity: 0;
}

.open nav.gnav-sp {
    top: 0;
    opacity: 1;
    z-index: 99999;
}

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 #ddd;
    font-size: 2rem;
    font-family: "Bodoni Moda", serif;
}

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 0.5s;
    cursor: pointer;
    z-index: 100000;
    background: #f0832b;
}

.toggle_btn span {
    display: block;
    position: absolute;
    left: 1.5rem;
    width: 3rem;
    height: 2px;
    background-color: #fff;
    transition: all 0.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 0.5s;
}

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

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

gallery

----------------------------------------------------------  */
.gallery-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center;
    margin: 60px auto 80px auto;
}

.gallery-list li {
    list-style: none;
    margin: 0 10px 20px 10px;
}

.gallery-list img {
    border-radius: 50%;
    height: 160px;
    width: 160px;
    object-fit: cover;
}

.gallery-list span {
    display: block;
    font-size: 12px;
    line-height: 1.7;
    margin: 12px 0 0 0;
    text-align: center;
    width: 160px;
}

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

@media screen and (max-width: 767px) {
    .gallery-list {
        width: auto;
        margin: 30px 0 40px 0;
    }

    .gallery-list li {
        margin: 5px 5px 15px 5px;
    }

    .gallery-list img {
        width: 110px;
        height: 110px;
    }

    .gallery-list span {
        font-size: 10px;
        line-height: 1.6;
        margin: 10px auto 0 auto;
        width: 110px;
    }
}

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

layout

----------------------------------------------------------  */
.container {
    padding: 10rem 10%;
}

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

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

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: #fd6805;
    /* カラー */
}

@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: 50px;
        right: 10px;
    }

    #page-top i {
        font-size: 32px !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 {
    color: #333;
}

a:hover {
    opacity: 0.5 !important;
    filter: alpha(opacity=50);
}

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

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

Google翻訳

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

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

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

@media screen and (max-width: 767px) {
    #google_translate {
        position: fixed;
        left: 0;
        top: 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: 2rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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


/* 診療内容 下層メニュー */
.has-child {
    position: relative;
}

.sub-menu {
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* PC：ホバーで表示 */
.pc .has-child:hover .sub-menu {
    display: block;
}

.pc .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 12rem;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.12);
}

.pc .sub-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    white-space: nowrap;
    text-align: center;
}

/* SP：アコーディオン用 */
.sp .has-child>a {
    position: relative;
    padding-right: 2rem;
}

.sp .has-child>a::after {
    content: "";
    position: absolute;
    right: 2rem;
    top: 50%;
    width: 1.5rem;
    height: 1.5rem;
    border-right: 0.125rem solid currentColor;
    border-bottom: 0.125rem solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.3s;
}

.sp .has-child.open>a::after {
    transform: translateY(-35%) rotate(-135deg);
}

.sp .sub-menu {
    background: rgba(255, 255, 255, 0.15);
}

.sp .sub-menu li a {
    display: block;
    padding: 0.75rem 1rem 0.75rem 2rem;
    font-size: 1.95rem;
}

.sub-menu li {
    margin-left: 0 !important;
}

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

footer

------------------------------------------- */
footer {
    padding: 4rem 10rem 2rem 10rem;
}

footer .wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

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

footer .time {
    width: 40rem;
}

footer nav {
    display: flex;
    gap: 3rem;
}

footer nav ul {
    display: flex;
    flex-direction: column;
}

footer nav>ul>li:not(:last-child) {
    margin-bottom: 1rem;
}

footer nav>ul>li>a {
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
}

footer nav>ul>li>a img {
    width: 1rem;
    margin-right: 0.5rem;
    margin-top: 0.3rem;
}

footer nav>ul ul {
    margin-top: 1rem;
    gap: 0.4rem;
}

footer nav>ul ul a {
    color: #333;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

footer nav>ul ul a::before {
    content: "・";
}

footer small {
    display: block;
    font-size: 1rem;
    text-align: right;
}

@media screen and (max-width: 768px) {
    footer {
        padding: 4rem 0 8rem 0;
    }

    footer .wrap {
        flex-direction: column;
        align-items: center;
        margin-bottom: 5rem;
    }

    footer .wrap>* {
        width: 100%;
    }

    footer .wrap>div {
        padding: 0 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .logo {
        width: 80%;
        margin-bottom: 2rem;
    }

    footer .table-wrap {
        width: 100%;
    }

    footer .time {
        width: 100%;
    }

    footer nav {
        flex-wrap: wrap;
        padding: 0 3rem;
        display: flex;
        gap: 0;
        row-gap: 0;
        margin-top: 3rem;
    }

    footer nav>ul {
        width: 50%;
    }

    footer small {
        display: block;
        font-size: 1rem;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    footer nav>ul {
        width: 50%;
    }

    footer nav>ul>li>a {
        font-size: 2rem;
        padding: 0 2rem;
    }

    footer nav>ul ul a {
        font-size: 2.4rem;
    }
}

.fixed-side-btn {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateY(-50%);
}

.fixed-side-btn__item {
    position: relative;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto 1fr;
    column-gap: 0.45rem;
    align-items: center;
    width: 6.4rem;
    min-height: 13.5rem;
    padding: 1.2rem 0.7rem 1.1rem;
    color: #fff;
    text-decoration: none;
    border-radius: 1.1rem 0 0 1.1rem;
    border: solid 0.1rem rgba(255, 255, 255, 0.45);
    border-right: none;
    box-shadow: 0 0.35rem 1rem rgba(70, 48, 28, 0.18);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.fixed-side-btn__item:hover {
    transform: translateX(-0.3rem);
    opacity: 0.9;
}

.fixed-side-btn__item--hours {
    background: #7a4a25;
}

.fixed-side-btn__item--access {
    background: #6f6047;
}

.fixed-side-btn__icon {
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.9rem;
    height: 3.9rem;
    margin: 0 auto 0.8rem;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 50%;
}

.fixed-side-btn__icon svg {
    width: 2rem;
    height: 2rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: #f0832b;
}

.fixed-side-btn__item--access .fixed-side-btn__icon svg {
    color: #f0832b;
}

.fixed-side-btn__jp {
    display: block;
    font-family: serif;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.06em;
    writing-mode: vertical-rl;
}

.fixed-side-btn__en {
    display: block;
    font-family: serif;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: 0.16em;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.fixed-side-btn__item--tel {
    background: #f0832b;
}

.fixed-side-btn__item--tel {
    display: none;
}

/* スマホでは下部固定に変更 */
@media screen and (max-width: 768px) {



    .fixed-side-btn {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        flex-direction: row;
        gap: 0;
        transform: none;
    }

    .fixed-side-btn__item--tel {
        display: flex;
    }

    .fixed-side-btn__item {
        flex: 1;
        width: auto;
        min-height: auto;
        padding: 1rem 0.8rem;
        border-radius: 0;
        border: none;
        box-shadow: 0 -0.4rem 1rem rgba(70, 48, 28, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.7rem;
    }

    .fixed-side-btn__item:hover {
        transform: none;
    }

    .fixed-side-btn__icon {
        width: 3.2rem;
        height: 3.2rem;
        margin: 0;
    }

    .fixed-side-btn__icon svg {
        width: 1.8rem;
        height: 1.8rem;
    }

    .fixed-side-btn__jp,
    .fixed-side-btn__en {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
    }

    .fixed-side-btn__jp {
        font-size: 1.5rem;
        line-height: 1;
    }

    .fixed-side-btn__en {
        display: none;
    }
}

.top-symptom {
    background: #fffaf4;
}

.symptom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
}

.symptom-grid li {
    list-style: none;
}

.symptom-grid a {
    display: block;
    height: 100%;
    background: #fff;
    border: 1px solid #f0dfcf;
    border-radius: 2rem;
    padding: 2.4rem 2rem;
    text-align: center;
    box-shadow: 0 0.6rem 1.6rem rgba(120, 80, 40, 0.08);
}

.symptom-grid img {
    width: 13rem;
    height: 13rem;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.symptom-grid h3 {
    font-size: 1.8rem;
    color: #7a4a25;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.symptom-grid p {
    font-size: 1.35rem;
    line-height: 1.8;
    text-align: left;
}

@media screen and (max-width: 767px) {
    .symptom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem;
    }

    .symptom-grid a {
        padding: 1.6rem 1.2rem;
        border-radius: 1.4rem;
    }

    .symptom-grid img {
        width: 9rem;
        height: 9rem;
    }

    .symptom-grid h3 {
        font-size: 1.6rem;
    }

    .symptom-grid p {
        font-size: 1.2rem;
    }
}

/* 症状アイコン */

.top-symptom {
    background: #fffaf4;
    padding: 8rem 10%;
}

.symptom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.symptom-grid li {
    list-style: none;
}

.symptom-grid a {
    display: block;
    background: #fff;
    border-radius: 2rem;
    padding: 2rem;
    height: 100%;
    text-decoration: none;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.symptom-grid a:hover {
    transform: translateY(-5px);
}

.symptom-grid img {
    width: 100%;
    max-width: 14rem;
    display: block;
    margin: 0 auto 1.5rem;
}

.symptom-grid h3 {
    font-size: 1.8rem;
    color: #7a4a25;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
}

.symptom-grid p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
}

@media screen and (max-width:767px) {

    .top-symptom {
        padding: 6rem 2rem;
    }

    .symptom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .symptom-grid a {
        padding: 1.5rem;
    }

    .symptom-grid h3 {
        font-size: 1.5rem;
    }

    .symptom-grid p {
        font-size: 1.2rem;
    }
}

/* =========================
   プラセンタバナー
========================= */

.placenta-banner-wrap {
    margin-top: 30px;
    margin-bottom: 80px;
}

.placenta-banner-link {
    display: block;
    transition: .3s;
}

.placenta-banner-link:hover {
    opacity: .9;
    transform: translateY(-3px);
}

.placenta-banner-link img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.treatment-link {
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

.treatment-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #ff7a1a;
    color: #fff;

    width: auto;
    min-width: 300px;

    padding: 14px 32px;
    border-radius: 999px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.treatment-link a:hover {
    background: #e76808;
    opacity: 1 !important;
}

.treatment-link span {
    font-size: 18px;
}

.fever-text .treatment-link {
    text-align: left;
    margin-top: 30px;
}

.fever-text .treatment-link {
    margin-top: 30px;
    text-align: left;
}

.fever-text .treatment-link a {
    display: inline-flex;
}

.notice-section {
    padding: 70px 0;
    background: #fffaf5;
}

.notice-accordion {
    max-width: 980px;
    margin: 35px auto 0;
}

.notice-accordion details {
    background: #fffaf5;
    border: 1px solid #f4dcc6;
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(138, 90, 43, .08);
    overflow: hidden;
}

.notice-accordion summary {
    position: relative;
    padding: 24px 70px 24px 32px;
    font-size: 1.9rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.notice-accordion summary::-webkit-details-marker {
    display: none;
}

.notice-accordion summary::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #f0832b;
    opacity: .75;
}

.notice-accordion summary::after {
    content: "+";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fffaf5;
    color: #f0832b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
}

.notice-accordion details[open] summary::after {
    content: "−";
    background: #f0832b;
    color: #fff;
}

.notice-content {
    padding: 0 32px 30px;
    line-height: 2;
    color: #444;
}

.notice-content p {
    margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
    .notice-section {
        padding: 50px 0;
    }

    .notice-accordion summary {
        padding: 20px 58px 20px 24px;
        font-size: 1.6rem;
    }

    .notice-content {
        padding: 0 24px 24px;
        font-size: 1.5rem;
    }
}

.notice-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.notice-accordion {
    width: 100%;
    max-width: none;
}

@media screen and (max-width: 768px) {
    .notice-inner {
        width: 100%;
        max-width: none;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .notice-accordion {
        width: 100%;
    }

    .notice-accordion summary {
        font-size: 1.6rem;
        padding: 18px 54px 18px 22px;
        line-height: 1.6;
    }

    .notice-content {
        padding: 0 22px 24px;
        font-size: 1.5rem;
        line-height: 1.8;
    }
}


@media screen and (max-width: 768px) {
    .access-guide-section {
        padding: 50px 0;
    }

    .access-guide-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .access-guide-card {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .access-guide-card h3 {
        font-size: 2rem;
    }

    .access-step img {
        height: 190px;
    }

    .access-step span {
        width: 46px;
        height: 46px;
        font-size: 1.7rem;
    }
}

.access-route-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.access-route-card {
    position: relative;
    background: #fff;
    border: 1px solid #f5d7bd;
    border-radius: 24px;
    padding: 18px 18px 24px;
    box-shadow: 0 10px 28px rgba(138, 90, 43, .08);
    overflow: visible;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

.access-route-card::after {
    content: "→";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #f0832b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    z-index: 5;
    box-shadow: 0 6px 14px rgba(240, 131, 43, .25);
}

.access-route-card:last-child::after {
    display: none;
}

.access-route-card:hover {
    transform: translateY(-10px);
    background: #fffaf5;
    border-color: #f0832b;
    box-shadow: 0 22px 45px rgba(240, 131, 43, .22);
}

.access-route-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(240, 131, 43, .08), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.access-route-card:hover::before {
    opacity: 1;
}

.access-route-card span {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 70px;
    height: 70px;
    background: #f0832b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.1;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(240, 131, 43, .35);
}

@media screen and (min-width: 1025px) {
    .access-route-card:not(:nth-child(4n))::after {
        content: "→";
        position: absolute;
        right: -25px;
        top: 50%;
        transform: translateY(-50%);
        color: #f0832b;
        font-size: 2.8rem;
        font-weight: bold;
        z-index: 5;
    }
}

.access-route-card:hover span {
    transform: scale(1.08);
}

.access-route-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    margin-bottom: 20px;
    transition: transform .45s ease, filter .45s ease;
}

.access-route-card:hover img {
    transform: scale(1.04);
    filter: brightness(1.04);
}

.access-route-card h3 {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #2b241f;
    transition: color .35s ease;
}

.access-route-card:hover h3 {
    color: #f0832b;
}

.access-route-card p {
    line-height: 1.8;
    margin: 0;
    font-size: 1.55rem;
}

.access-route-card--goal {
    background: #fff8f0;
    border: 2px solid #f0832b;
}

@media screen and (max-width: 1024px) {
    .access-route-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .access-route-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .access-route-card {
        padding: 16px 16px 22px;
        border-radius: 22px;
    }

    .access-route-card img {
        height: 220px;
    }

    .access-route-card span {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
    }

    .access-route-card h3 {
        font-size: 1.8rem;
    }
}


.access-route-main {
    position: relative;
    margin: 35px 0 40px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(138, 90, 43, .12);
}

.access-route-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.access-route-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .05));
}

.access-route-main__text {
    position: absolute;
    left: 45px;
    bottom: 38px;
    color: #fff;
    z-index: 2;
}

.access-route-main__text span {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 18px;
    background: #f0832b;
    border-radius: 999px;
    font-weight: 700;
}

.access-route-main__text h3 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.access-route-main__text p {
    line-height: 1.8;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .access-route-main img {
        height: 260px;
    }

    .access-route-main__text {
        left: 22px;
        right: 22px;
        bottom: 24px;
    }

    .access-route-main__text h3 {
        font-size: 2rem;
    }
}


.access-section {
    padding: 80px 0;
    background: #fffaf5;
}

.access-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.access-section .ttl {
    margin-bottom: 50px;
}

.access-route-section {
    padding: 0;
    background: transparent;
}

.access-route-card:hover {
    opacity: 1 !important;
}

.access-route-card {
    cursor: pointer;
}

/* =========================
   アクセス案内
========================= */

.access-section {
    padding: 80px 0;
    background: #fffaf5;
}

.access-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.access-section .ttl {
    margin-bottom: 50px;
}

.access-route-section {
    padding: 0;
    background: transparent;
}

.access-route-lead {
    margin: 20px 0 40px;
    line-height: 2;
}

/* メイン画像 */
.access-route-main {
    position: relative;
    margin: 35px 0 50px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(138, 90, 43, .12);
}

.access-route-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.access-route-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .5),
            rgba(0, 0, 0, .12));
}

.access-route-main__text {
    position: absolute;
    left: 45px;
    bottom: 38px;
    color: #fff;
    z-index: 2;
}

.access-route-main__text span {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 18px;
    background: #f0832b;
    border-radius: 999px;
    font-weight: 700;
}

.access-route-main__text h3 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.access-route-main__text p {
    line-height: 1.8;
    margin: 0;
}

/* ルートカード */
.access-route-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.access-route-card {
    position: relative;
    background: #fff;
    border: 1px solid #f5d7bd;
    border-radius: 24px;
    padding: 14px 14px 24px;
    box-shadow: 0 10px 28px rgba(138, 90, 43, .08);
    overflow: hidden;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

.access-route-card:hover {
    opacity: 1 !important;
    transform: translateY(-10px);
    background: #fffaf5;
    border-color: #f0832b;
    box-shadow: 0 22px 45px rgba(240, 131, 43, .22);
}

.access-route-card span {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 64px;
    height: 64px;
    background: #f0832b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(240, 131, 43, .35);
    transition: transform .35s ease;
}

.access-route-card:hover span {
    transform: scale(1.08);
}

.access-route-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    margin-bottom: 20px;
    transition: transform .45s ease, filter .45s ease;
}

.access-route-card:hover img {
    transform: scale(1.04);
    filter: brightness(1.04);
}

.access-route-card h3 {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #2b241f;
    transition: color .35s ease;
}

.access-route-card:hover h3 {
    color: #f0832b;
}

.access-route-card p {
    line-height: 1.8;
    margin: 0;
    font-size: 1.55rem;
}

.access-route-card--goal {
    background: #fff8f0;
    border: 2px solid #f0832b;
}

/* SP */
@media screen and (max-width: 1024px) {
    .access-route-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .access-section {
        padding: 50px 0;
    }

    .access-route-main img {
        height: 260px;
    }

    .access-route-main__text {
        left: 22px;
        right: 22px;
        bottom: 24px;
    }

    .access-route-main__text h3 {
        font-size: 2rem;
    }

    .access-route-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .access-route-card img {
        height: 230px;
    }

    .access-route-card span {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
    }

    .access-route-card h3 {
        font-size: 1.8rem;
    }
}

/* =========================
   アクセス案内 上書き用
   ※common.cssの一番下に追加
========================= */

.access-section {
    padding: 80px 0 !important;
    background: #fffaf5 !important;
}

.access-inner {
    width: 100% !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
}

.access-route-section {
    padding: 0 !important;
    background: transparent !important;
}

.access-route-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 26px !important;
}

.access-route-card {
    position: relative !important;
    background: #fff !important;
    border: 1px solid #f5d7bd !important;
    border-radius: 24px !important;
    padding: 14px 14px 26px !important;
    box-shadow: 0 10px 28px rgba(138, 90, 43, .08) !important;
    overflow: visible !important;
    cursor: pointer !important;
    transition: .35s ease !important;
}

.access-route-card:hover {
    opacity: 1 !important;
    transform: translateY(-12px) scale(1.015) !important;
    background: #fffaf5 !important;
    border-color: #f0832b !important;
    box-shadow: 0 22px 45px rgba(240, 131, 43, .22) !important;
}

.access-route-card::after {
    content: "→" !important;
    position: absolute !important;
    right: -22px !important;
    top: 48% !important;
    width: 42px !important;
    height: 42px !important;
    background: #f0832b !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2rem !important;
    font-weight: bold !important;
    z-index: 20 !important;
    box-shadow: 0 6px 14px rgba(240, 131, 43, .3) !important;
}

/* 3列なので3枚目・6枚目・最後は矢印なし */
.access-route-card:nth-child(3n)::after,
.access-route-card:last-child::after {
    display: none !important;
}

.access-route-card span {
    position: absolute !important;
    top: 22px !important;
    left: 22px !important;
    width: 66px !important;
    height: 66px !important;
    background: #f0832b !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 2.2rem !important;
    line-height: 1 !important;
    z-index: 2 !important;
    box-shadow: 0 8px 18px rgba(240, 131, 43, .35) !important;
}

.access-route-card img {
    width: 100% !important;
    height: 340px !important;
    object-fit: cover !important;
    border-radius: 18px !important;
    display: block !important;
    margin-bottom: 22px !important;
    transition: .45s ease !important;
}

.access-route-card:hover img {
    transform: scale(1.035) !important;
    filter: brightness(1.04) !important;
}

.access-route-card h3 {
    font-size: 2.35rem !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;
    color: #2b241f !important;
}

.access-route-card:hover h3 {
    color: #f0832b !important;
}

.access-route-card p {
    font-size: 1.6rem !important;
    line-height: 1.9 !important;
    margin: 0 !important;
}

.access-route-card--goal {
    background: #fff8f0 !important;
    border: 2px solid #f0832b !important;
}

/* メイン画像 */
.access-route-main {
    position: relative !important;
    margin: 35px 0 50px !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: 0 14px 35px rgba(138, 90, 43, .12) !important;
}

.access-route-main img {
    width: 100% !important;
    height: 420px !important;
    object-fit: cover !important;
    display: block !important;
}

.access-route-main::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, .12)) !important;
}

.access-route-main__text {
    position: absolute !important;
    left: 45px !important;
    bottom: 38px !important;
    color: #fff !important;
    z-index: 2 !important;
}

.access-route-main__text h3 {
    font-size: 3rem !important;
}

/* スマホ */
@media screen and (max-width: 1024px) {
    .access-route-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .access-route-card::after {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .access-section {
        padding: 50px 0 !important;
    }

    .access-route-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .access-route-card img {
        height: 230px !important;
    }

    .access-route-card span {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.7rem !important;
    }

    .access-route-card h3 {
        font-size: 1.8rem !important;
    }

    .access-route-main img {
        height: 260px !important;
    }

    .access-route-main__text {
        left: 22px !important;
        right: 22px !important;
        bottom: 24px !important;
    }

    .access-route-main__text h3 {
        font-size: 2rem !important;
    }
}

/* =========================
   お車でお越しの方
========================= */

.car-route-section {
    margin-top: 80px;
}

.car-route-lead {
    margin: 20px 0 35px;
    line-height: 2;
}

.car-route-branch {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.car-route-common {
    max-width: 900px;
    margin: 0 auto;
}

.car-route-card {
    position: relative;
    background: #fff;
    border: 1px solid #f5d7bd;
    border-radius: 24px;
    padding: 16px 16px 26px;
    box-shadow: 0 10px 28px rgba(138, 90, 43, .08);
    overflow: hidden;
    transition: .35s ease;
}

.car-route-card:hover {
    transform: translateY(-10px);
    border-color: #f0832b;
    background: #fffaf5;
    box-shadow: 0 22px 45px rgba(240, 131, 43, .22);
}

.car-route-card span {
    position: absolute;
    top: 22px;
    left: 22px;
    background: #f0832b;
    color: #fff;
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(240, 131, 43, .35);
}

.car-route-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    margin-bottom: 22px;
    transition: .45s ease;
}

.car-route-card:hover img {
    transform: scale(1.035);
    filter: brightness(1.04);
}

.car-route-card h3 {
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.car-route-card p {
    font-size: 1.6rem;
    line-height: 1.9;
    margin: 0;
}

.car-route-card--goal {
    background: #fff8f0;
    border: 2px solid #f0832b;
}

.car-route-arrow {
    text-align: center;
    color: #f0832b;
    font-size: 3rem;
    font-weight: bold;
    margin: 26px 0;
}

.hospital-info-title {
    margin-top: 80px;
    margin-bottom: 50px;
}

/* スマホ */
@media screen and (max-width: 768px) {
    .car-route-section {
        margin-top: 60px;
    }

    .car-route-branch {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .car-route-common {
        max-width: none;
    }

    .car-route-card {
        padding: 14px 14px 22px;
    }

    .car-route-card img {
        height: 230px;
    }

    .car-route-card span {
        top: 18px;
        left: 18px;
        font-size: 1.3rem;
        padding: 7px 14px;
    }

    .car-route-card h3 {
        font-size: 1.8rem;
    }

    .car-route-card p {
        font-size: 1.5rem;
    }
}

#access {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 80px;
}

#access iframe {
    width: 100%;
    height: 500px;
    display: block;
}

.access-map-title {
    margin-top: 60px;
    margin-bottom: 20px;
}

.ttl-line,
.map-lead {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

.map-lead {
    line-height: 2;
    margin: 0 0 40px;
}


.access-map-heading .ttl-line {
    margin-bottom: 30px !important;
}

@media screen and (max-width: 768px) {
    .access-map-heading {
        width: auto !important;
        margin-left: 0 !important;
        margin-top: 60px !important;
        padding: 0 2rem !important;
    }
}

.access-map-heading {
    max-width: none !important;
    width: 100% !important;
    margin: 80px 0 40px 0 !important;
    text-align: left !important;
}

.access-map-heading {
    margin-top: 80px;
    margin-bottom: 40px;
}

.access-map-heading .ttl-line {
    margin-bottom: 30px;
}

.map-lead {
    margin: 0 0 40px;
    line-height: 2;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .access-map-heading {
        margin-top: 60px;
    }
}

.placenta-section {
    margin-top: 120px;
}

.homecare-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.homecare-img {
    width: 50%;
}

.homecare-img img {
    width: 100%;
    display: block;
}

.homecare-content {
    width: 50%;
}

.homecare-content p {
    line-height: 2;
    margin-bottom: 30px;
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 420px;
    height: 80px;
    border-radius: 999px;
    background: #f0832b;
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    transition: .3s;
}

.btn-orange:hover {
    opacity: .85;
}

@media screen and (max-width:768px) {

    .placenta-section {
        margin-top: 80px;
    }

    .homecare-flex {
        flex-direction: column;
        gap: 30px;
    }

    .homecare-img,
    .homecare-content {
        width: 100%;
    }

    .btn-orange {
        width: 100%;
        min-width: auto;
        font-size: 1.6rem;
        height: 65px;
    }

}

.doctor-profile {
    margin-top: 80px;
}

.doctor-profile-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.profile-col {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.profile-col h4 {
    color: #c87d34;
    margin-bottom: 20px;
    font-size: 24px;
}

.profile-col ul {
    margin: 0;
    padding-left: 20px;
}

.profile-col li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.doctor-gallery {
    margin-top: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 20px;
    transition: .4s;
}

.gallery-grid img:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

@media(max-width:768px) {

    .doctor-profile-box {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

}

/* 医院情報・車案内・アクセスマップの位置調整 */
.hospital-info-title {
    margin-top: 90px !important;
    margin-bottom: 40px !important;
}

.car-route-section {
    margin-top: 90px !important;
}

.access-map-heading {
    margin-top: 90px !important;
    margin-bottom: 35px !important;
}

/* タイトルだけ中央寄せにしない */
.hospital-info-title,
.car-route-section .ttl-line,
.access-map-heading .ttl-line {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* アクセスカード画像をPC・ノートPCで統一 */
.access-route-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

.access-route-card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: contain !important;
    background: #fff !important;
}

/* 矢印が切れないように */
.access-route-card {
    overflow: visible !important;
}

/* ノートPCでも3列維持 */
@media screen and (max-width: 1200px) {
    .access-route-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* タブレット以下は2列 */
@media screen and (max-width: 900px) {
    .access-route-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* スマホは1列 */
@media screen and (max-width: 600px) {
    .access-route-grid {
        grid-template-columns: 1fr !important;
    }
}

.holiday-note {
    color: #d9534f;
    font-weight: bold;
}

/* TOP 診療内容 見出しデザイン */

.top-staff li h3.heading-2 {
    position: relative;
    font-size: 3.8rem;
    font-weight: 700;
    color: #8a5a2b;
    line-height: 1.4;

    margin-bottom: 2.5rem;
    padding-bottom: 1.2rem;

    position: relative;
}

.top-staff li h3.heading-2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 120px;
    height: 4px;

    background: #f0832b;
    border-radius: 999px;
}

.top-staff li h3.heading-2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 4px;

    background: #f0832b;
    border-radius: 999px;

    transition: width .8s ease;
}

.top-staff li.swiper-slide-active h3.heading-2::after,
.top-staff li:hover h3.heading-2::after {
    width: 80px;
}

@media screen and (max-width:768px) {

    .top-staff li h3.heading-2 {
        font-size: 2.4rem;
        margin-bottom: 1.8rem;
    }

    .top-staff li h3.heading-2::after {
        width: 60px;
    }

}

/* footer PCメニュー調整 */

@media screen and (min-width: 769px) {

    footer nav {
        gap: 5rem;
        align-items: flex-start;
    }

    footer nav>ul>li>a {
        font-size: 1.7rem;
        font-weight: 700;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }

    footer nav>ul ul {
        margin-top: 0.8rem;
    }

    footer nav>ul ul li {
        margin-bottom: 0.45rem;
    }

    footer nav>ul ul a {
        font-size: 1.25rem;
        line-height: 1.6;
        color: #555;
    }

    footer nav>ul ul a::before {
        content: "・";
        margin-right: 0.2rem;
    }
}

@media screen and (min-width: 769px) {

    footer nav>ul>li:has(ul)>a::before {
        content: "▼";
        font-size: 1rem;
        margin-right: 0.6rem;
        color: #666;
    }

}

/* about.html アクセスマップ：TOPと同じサイズ感 */
#access.about-access-map {
    width: 80% !important;
    max-width: 1400px !important;
    margin: 4rem auto 8rem !important;
}

#access.about-access-map iframe {
    width: 100% !important;
    height: 420px !important;
    display: block !important;
}

@media screen and (max-width: 767px) {
    #access.about-access-map {
        width: 100% !important;
        padding: 0 2rem !important;
        box-sizing: border-box;
        margin: 3rem auto 6rem !important;
    }

    #access.about-access-map iframe {
        height: 320px !important;
    }
}

/* about.html：アクセスマップだけTOPと同じサイズ感に戻す */
#access.about-access-map {
    width: 80% !important;
    max-width: 1400px !important;
    margin: 4rem auto 8rem !important;
    padding: 0 !important;
}

#access.about-access-map iframe {
    width: 100% !important;
    height: 420px !important;
    display: block !important;
}

/* about.html 医院紹介のアクセスマップだけ調整 */
#access.about-access-map {
    width: 100% !important;
    max-width: none !important;
    margin: 4rem auto 8rem !important;
    padding: 0 10% !important;
    box-sizing: border-box !important;
}

#access.about-access-map iframe {
    width: 100% !important;
    height: 420px !important;
    display: block !important;
}

@media screen and (max-width: 767px) {
    #access.about-access-map {
        padding: 0 2rem !important;
        margin: 3rem auto 6rem !important;
    }

    #access.about-access-map iframe {
        height: 320px !important;
    }
}

/* footer PC/SP メニュー調整：全ページ共通 */
@media screen and (min-width: 769px) {

    footer {
        padding: 4rem 8rem 2rem;
    }

    footer nav {
        display: grid;
        grid-template-columns: 90px 120px 170px 170px 120px;
        gap: 3rem;
        align-items: flex-start;
    }

    footer nav>ul>li>a {
        font-size: 1.55rem;
        font-weight: 700;
        line-height: 1.4;
        white-space: nowrap;
        margin-bottom: 1rem;
    }

    footer nav>ul ul a {
        font-size: 1.18rem;
        line-height: 1.7;
        color: #555;
        white-space: nowrap;
    }

    footer nav>ul>li:has(ul)>a::before {
        content: "▼";
        font-size: 0.9rem;
        margin-right: 0.5rem;
        color: #666;
    }
}

@media screen and (max-width: 768px) {

    footer nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem 2rem;
        padding: 0 2.4rem;
    }

    footer nav>ul {
        width: 100% !important;
    }

    footer nav>ul>li>a {
        font-size: 1.45rem !important;
        line-height: 1.6;
        padding: 0 !important;
        font-weight: 700;
    }

    footer nav>ul ul {
        margin-top: 0.4rem;
    }

    footer nav>ul ul a {
        font-size: 1.15rem !important;
        line-height: 1.6;
        white-space: normal;
    }

    footer nav>ul ul a::before {
        content: "・";
        margin-right: 0.2rem;
    }
}

@media screen and (min-width: 769px) {

    footer nav {
        display: grid;
        grid-template-columns:
            minmax(80px, 90px) minmax(110px, 140px) minmax(160px, 220px) minmax(160px, 220px) minmax(120px, 160px);

        gap: 1.5rem;
        width: 100%;
    }
}

@media screen and (min-width: 769px) {

    .table-wrap>span {
        white-space: nowrap;
    }

}

.facility-banner {
    max-width: 980px;
    margin: 5rem auto 8rem;
}

.facility-banner__link {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 2.6rem;
    align-items: center;
    background: #fffaf5;
    border: 1px solid #f4dcc6;
    border-radius: 2.4rem;
    padding: 2.2rem;
    box-shadow: 0 10px 28px rgba(138, 90, 43, .08);
    text-decoration: none;
}

.facility-banner__img img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 1.8rem;
    display: block;
}

.facility-banner__text p {
    font-size: 1.6rem;
    line-height: 2;
    color: #444;
    margin-bottom: 2rem;
}

.facility-banner__btn {
    display: inline-block;
    background: #f0832b;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 999px;
    font-weight: bold;
}

.facility-banner__link:hover {
    opacity: 1 !important;
    transform: translateY(-4px);
}

@media screen and (max-width: 767px) {
    .facility-banner__link {
        grid-template-columns: 1fr;
        padding: 1.8rem;
    }

    .facility-banner__img img {
        height: 22rem;
    }

    .facility-banner__text h3 {
        font-size: 2.4rem;
    }

    .facility-banner__text p {
        font-size: 1.5rem;
    }
}

.facility-banner__text span {
    display: block;
    font-size: 1.7rem;
    letter-spacing: .2em;
    color: #f0832b;
    margin-bottom: 1rem;
    font-weight: bold;
}

.facility-banner__text h3 {

    font-size: 3.8rem;

    color: #7a4a25;

    line-height: 1.3;

    margin-bottom: 2rem;

    font-weight: bold;

}

.facility-banner__text p {

    font-size: 2rem;

    line-height: 2;

    color: #555;

    margin-bottom: 3rem;

}

@media screen and (max-width:767px) {

    .facility-banner__text span {
        font-size: 1.6rem;
    }

    .facility-banner__text h3 {
        font-size: 3.2rem;
    }

    .facility-banner__text p {
        font-size: 1.7rem;
    }

}

.facility-banner .more {

    display: inline-block;

    background: #f0832b;

    color: #fff !important;

    padding: 18px 42px;

    border-radius: 999px;

    font-size: 1.8rem;

    font-weight: bold;

    transition: .3s;

}

.facility-banner .more:hover {

    background: #e86f15;

}

.facility-banner__btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    padding: 16px 36px;
    background: #f0832b;
    color: #fff !important;
    border-radius: 999px;
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
}

.facility-banner__link:hover .facility-banner__btn {
    background: #d96f1f;
    opacity: 1 !important;
}

/* =========================================
   TOP 院内・設備紹介
   ノートPC～大画面まで自然に可変
========================================= */

.facility-banner {
    width: calc(100% - 8rem) !important;
    max-width: 1440px !important;
    margin: 5rem auto 8rem !important;
    box-sizing: border-box !important;
}

.facility-banner__link {
    display: grid !important;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%) !important;
    align-items: center !important;

    width: 100% !important;
    gap: clamp(2.5rem, 4vw, 6rem) !important;
    padding: clamp(2.2rem, 3vw, 4.5rem) !important;

    background: #fffaf5 !important;
    border: 1px solid #f4dcc6 !important;
    border-radius: clamp(2rem, 2vw, 3rem) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.facility-banner__img {
    width: 100% !important;
    min-width: 0 !important;
}

.facility-banner__img img {
    display: block !important;
    width: 100% !important;
    height: clamp(240px, 24vw, 380px) !important;
    max-height: 380px !important;

    object-fit: cover !important;
    border-radius: 1.8rem !important;
}

.facility-banner__text {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.facility-banner__text span {
    font-size: clamp(1.4rem, 1.1vw, 1.8rem) !important;
    line-height: 1.4 !important;
    margin-bottom: clamp(1rem, 1.5vw, 2rem) !important;
}

.facility-banner__text h3 {
    font-size: clamp(3rem, 3vw, 5rem) !important;
    line-height: 1.3 !important;
    margin-bottom: clamp(1.5rem, 2vw, 3rem) !important;

    white-space: nowrap !important;
}

.facility-banner__text p {
    font-size: clamp(1.6rem, 1.5vw, 2.2rem) !important;
    line-height: 2 !important;
    margin-bottom: clamp(2rem, 2.5vw, 3.5rem) !important;

    white-space: normal !important;
    word-break: normal !important;
}

.facility-banner__btn {
    min-width: clamp(220px, 18vw, 280px) !important;
    padding: clamp(14px, 1.3vw, 20px) clamp(28px, 2.5vw, 44px) !important;
    font-size: clamp(1.5rem, 1.3vw, 1.9rem) !important;
}

/* ノートPC */
@media screen and (min-width: 768px) and (max-width: 1199px) {

    .facility-banner {
        width: calc(100% - 6rem) !important;
        max-width: 1100px !important;
    }

    .facility-banner__link {
        grid-template-columns: minmax(0, 47%) minmax(0, 53%) !important;
        gap: 3rem !important;
        padding: 2.6rem !important;
    }

    .facility-banner__img img {
        height: clamp(230px, 26vw, 310px) !important;
    }

    .facility-banner__text h3 {
        font-size: clamp(3rem, 3.5vw, 4.2rem) !important;
    }

    .facility-banner__text p {
        font-size: clamp(1.55rem, 1.7vw, 1.9rem) !important;
    }
}

/* スマホ */
@media screen and (max-width: 767px) {

    .facility-banner {
        width: calc(100% - 4rem) !important;
        margin: 4rem auto 6rem !important;
    }

    .facility-banner__link {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 1.8rem !important;
    }

    .facility-banner__img img {
        height: 22rem !important;
        max-height: none !important;
    }

    .facility-banner__text h3 {
        font-size: 3.2rem !important;
        white-space: normal !important;
    }

    .facility-banner__text p {
        font-size: 1.7rem !important;
    }

    .facility-banner__btn {
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* ==========================
   感染症対策 見出し（SP）
========================== */
@media screen and (max-width: 767px) {
    .infection-heading {
        font-size: 2.8rem;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }
}