@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&family=Noto+Serif+JP:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');



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

base

----------------------------------------------------------  */
:root {
    --color-prime: #36b340;
    --color-bg: #3cb149;
    --font-serif: 'Noto Serif JP', serif;
    --font-garamond: 'EB Garamond', serif;
}

body {
    /* color: #333; */
    color: #1A1A1A;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1.6;
    background-color: #F9F9F9 !important;
    background-image: url("../img/body_back.jpg");
}

body.top {
    /* background: linear-gradient(to right, #F9F9F9 55%, transparent 55%); */
}

@media screen and (max-width: 768px) {
    body {
        font-size: 1.6rem;
    }
}

body.top {
    background: #F9F9F9;
}

a {
    /* color: #333; */
    color: #1A1A1A;
}



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

font-size

----------------------------------------------------------  */
html {
    font-size: 0.833vw;
}

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

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

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

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



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

header

----------------------------------------------------------  */
/* header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    padding-left: 2rem;
}

header h1 {
    width: 20rem;
    line-height: 1;
}

header.low {
    position: relative;
}

@media screen and (max-width: 768px) {
    header {
        padding-left: 0;
        height: 6rem;
    }

    header h1 {
        width: 12rem;
        margin: 0 auto;
    }
} */

.head_flex {
    display: flex;
}



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

nav

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

ul.gnav-menu > li {
    font-family: var(--font-serif);
    white-space: nowrap;
}

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

ul.gnav-menu > li > a {
    color: #fff;
    display: flex;
    align-items: center;
    height: 9rem;
    position: relative;
}


ul.gnav-menu > li > a::after {
    position: absolute;
    background: #fff;
    bottom: 0;
    content: '';
    height: 0.3rem;
    left: 0;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
    width: 100%;
}


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

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



/* header.low ul.gnav-menu > li > a {
    color: #333;
}

header.low ul.gnav-menu > li:last-child > a {
    color: #fff;
}

header.low ul > li > a::after {
    background: var(--color-prime);
} */



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

footer

----------------------------------------------------------  */
footer {
    background: var(--color-prime);
    color: #fff;
    /* padding: 8rem 12rem 4rem 12rem; */
    padding: 8rem 7rem 4rem 7rem;
}

footer a {
    color: #fff;
}

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

footer .logo {
    width: 20rem;
    padding-right: 0;
}

footer .logo img {
    width: 100%;
    margin: inherit;
}

footer nav ul {
    display: flex;
}

footer nav ul li:not(:last-child) {
    margin-right: 3rem;
}

footer small {
    display: block;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    footer {
        padding: 6rem 3rem 11rem;
    }

    footer .wrap {
        display: block;
        margin-bottom: 5rem;
    }

    footer .logo {
        width: 20rem;
        margin: 0 auto 5rem auto;
    }

    footer nav ul {
        display: block;
    }

    footer nav ul li {
        text-align: center;
    }

    footer nav ul li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    footer small {
        text-align: center;
    }
}



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

page-ttl

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

.page-ttl > div {
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24rem;
}

.page-ttl h2 {
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.15em;
}

.page-ttl h2 span {
    display: block;
    font-family: var(--font-garamond);
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
    .page-ttl {
        padding-top: 60px;
    }
    .page-ttl > div {
        height: 20rem;
    }

    .page-ttl h2 span {
        font-size: 3.6rem;
    }
}



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

style

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

.ttl:after {
    border-bottom: solid 4px var(--color-prime);
    bottom: -4px;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}

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

/* detail */
dl.detail {
    display: flex;
    flex-wrap: wrap;
    border-top: solid 0.12rem #dadada;
}

dl.detail dt {
    font-weight: bold;
    padding: 1.5rem;
    width: 25%;
    white-space: nowrap;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: solid 0.12rem #dadada;
}

dl.detail dd {
    padding: 1.5rem;
    width: 75%;
    border-bottom: solid 0.12rem #dadada;
}

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

    dl.detail dt {
        width: 100%;
        justify-content: flex-start;
        padding: 1.2rem 2rem;
    }

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



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

hamburger

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

.gnav-sp .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.gnav-sp-menu li {
    text-align: center;
    font-family: var(--font-serif);
}

.gnav-sp-menu li a {
    display: block;
    font-size: 1.8rem;
    padding: 1.5rem 0;
    white-space: nowrap;
}


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

.toggle-btn span {
    display: block;
    position: absolute;
    left: 1.8rem;
    width: 2rem;
    height: 0.2rem;
    background-color: #fff;
    transition: all .4s;
}

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

.toggle-btn span:nth-child(2) {
    top: 2.7rem;
}

.toggle-btn span:nth-child(3) {
    top: 3.5rem;
}

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

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

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

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

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



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

layout

----------------------------------------------------------  */
.container {
    margin: 8rem auto 10rem auto;
    width: 88rem
}

.container .wrap {
    display: flex;
    justify-content: space-between;
}

.container .wrap.reverse {
    flex-direction: row-reverse;
}

.container .wrap > figure {
    width: 35%;
}

.container .wrap > div {
    width: 60%;
}

.container h4 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .container {
        margin: 6rem 3rem 8rem 3rem;
        width: auto;
    }

    .container .wrap {
        display: block;
    }

    .container .wrap > figure {
        width: 100%;
        margin-bottom: 2rem;
    }

    .container .wrap > div {
        width: 100%;
    }

    .container h4 {
        font-size: 1.8rem;
    }
}



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

display

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

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



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

page-top

----------------------------------------------------------  */
#page-top {
    position: fixed;
    z-index: 999;
    bottom: 1rem;
    right: 1rem;
}

#page-top a {
    background: #fff;
    color: var(--color-prime);
    border: solid 0.2rem var(--color-prime);
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    line-height: 1;
    font-size: 1.4rem;
    padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {
    #page-top {
        bottom: 57px;
    }
}


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

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.line {
    text-decoration: underline;
}

a:hover.line {
    text-decoration: none;
}

a:hover {
    opacity: 0.5;
}

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

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



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

class

----------------------------------------------------------  */
/* position */
.hv-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
    z-index: 99;
}

/* map */
.gmap iframe {
    width: 100%;
    height: 40rem;
}

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

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

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

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

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

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

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

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

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

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

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

.mb-65 {
    margin-bottom: 6.5rem !important;
}

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

.mb-75 {
    margin-bottom: 7.5rem !important;
}

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

.mb-85 {
    margin-bottom: 8.5rem !important;
}

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

.mb-95 {
    margin-bottom: 9.5rem !important;
}

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



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

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

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

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

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

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

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

.w100 {
    width: 100% !important;
}



















#header_tagline {
    background: var(--color-prime, #22a650);
    padding: 4px 3%;
}

#header_tagline h1 {
    color: #fff;
    font-size: 0.875em;
}

#header {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    /* background: #fffbf6; */
    position: relative;
}

#header_in {
    padding: 0 3%;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 37%;
    padding-right: 1.5%;
    margin: 0;
}

.logo img {
    margin: -20px 0;
    padding: 0;
    width: 75%;
}

.h_address {
    font-size: 0.8em;
    margin-top: 20px;
}

.header_contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 63%;
}

.header_contact_left {
    margin-right: 2%;
}

.time-table__wrap {
    margin-top: 4rem;
    margin-bottom: 5rem;
}
.time-table__wrap--type2 {
    margin-top: 0rem;
    margin-bottom: 0rem;
}
.time-table__wrap p {
    margin-bottom: 1rem;
}
.time-table__wrap p span.red {
    color: red;
}
.time-table__wrap p span.bold {
    font-weight: bold;
}
.time-table__wrap p span.padding {
    padding-right: 0.5rem;
}
.header_contact_left .time-table,
.f_time-table .time-table {
    border: 1px solid var(--titcol, #1A1A1A);
    border-radius: 10px;
}
.time-table th,
.time-table td {
    border: 1px solid var(--titcol, #1A1A1A);
    padding: 4px 8px;
    font-size: 1.0em;
    white-space: nowrap;
    color: var(--titcol, #1A1A1A);
    color: #1A1A1A;
    font-weight: normal;
    width: 7rem;
    vertical-align: middle;
}
.time-table--type2 th,
.time-table--type2 td {
    border: 1px solid var(--titcol, #dadada);
    width: 5rem;
}
@media screen and (min-width: 1280px) {
    .time-table th,
    .time-table td {
        font-size: 1.1em;
    }

    .h_address_br {
        display: none;
    }
}

div.staff .staff-prof-box {
    display: flex;
    justify-content: space-between;
}

#symptoms_page .container > div.staff:nth-of-type(even) .staff-prof-box {
    flex-flow: row-reverse;
}

div.staff .staff-prof-box .img {
    width: 35%;
}

div.staff .staff-prof-box .img img {
    border-radius: 15px;
}

#symptoms_page div.staff .staff-prof-box .img img,
#symptoms_page .container > div.staff:nth-of-type(even) .staff-prof-box .staff-txt {
    border-radius: 0 0 15px 15px;
}

div.staff .staff-prof-box .staff-txt {
    width: 60%;
    background: #fff;
    padding: calc(var(--basevw, 0.078vw) * 30);
    border-radius: 15px;
}

#symptoms_page div.staff .staff-prof-box .staff-txt {
    width: 65%;
    border-radius: 0 15px 15px 0;
}

#symptoms_page .container > div.staff:nth-of-type(even) .staff-prof-box .img img {
    border-radius: 0 15px 15px 0;
}

div.staff .staff-txt p {
    font-size: 0.9em;
    line-height: 2;
}

.time-table th {
    text-align: left;
}

.time-table td {
    text-align: center;
}

.time-table + p.cap {
    margin-top: 5px;
    color: var(--capcol, #666);
    font-size: 85%;
}

.time-table thead {
    background-color: var(--color-prime);
}
.time-table--type2 thead {
    background-color: var(--color-bg);
}
.time-table thead td {
    color: #fff;
    font-weight: bold;
}
.time-table--type2 thead td, .time-table--type2 thead th {
    color: #1A1A1A;
    font-weight: bold;
}
.time-table--type2 thead th {
    text-align: center;
}
.time-table--type2 tbody th {
    padding-block: 1rem;
}
.header_contact_right h4,
.foot-contact h4 {
    font-size: 1.1em;
    color: var(--pointcol, #fd930d);
    white-space: nowrap;
    text-align: center;
    margin-bottom: 0.5em;
}

.header_contact_right h4 strong,
.foot-contact h4 strong {
    font-size: 1.2em;
    font-weight: 700;
}

p.tel {
    font-family: Overpass, sans-serif;
    font-weight: 700;
    font-size: 1.8em;
    text-align: center;
    color: var(--titcol, #1A1A1A);
}

p.tel i {
    margin-right: 1rem;
}

.btn_h {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    height: 50px;
    padding: 0 10px;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    margin: 0 5px;
}
.header_contact_right .btn_h {
    height: 3.4em;
    font-size: 1.1em;
}

.btn_h span {
    text-decoration: none;
    line-height: 1;
    color: #fff !important;
    font-size: 1.1em;
    font-weight: 600;
}

.btn_h i {
    font-size: 3em;
    position: absolute;
    left: -0.2em;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
    color: #fff;
}

.btn_mail {
    /* background: var(--btnmail, #e561a3); */
    background: var(--pointcol2, #ffae0e);
}

.btn_line {
    background: var(--btnline, #07b53b);
}

.header_contact_right ul {
    flex-direction: column;
    display: flex;
    justify-content: space-between;
/*ここから追加*/
  gap: 0px; /* 画像間のすき間 */
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
/*ここまで追加*/
}
/*ここから追加*/
.header_contact_right ul li img {
  width: 60px; /* お好みに合わせてサイズ調整 */
  height: auto;
  margin-right: 1.5rem; /* テキストとの間隔を広げる */
}
.header-tel {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
    background: url(../img/tel.png) no-repeat left center;
    background-size: 4rem 4rem;
    padding-left: 6.3rem;
    background-position: 1rem 0.4rem;
}
.header-address {
    display: flex;
    align-items: center;
    margin-top: 0.3rem;
}
.header-address .icon {
    line-height: 1;
    width: 2.8rem;
    margin-right: 1rem;
}
.header-address .text {
    font-size: 1.05rem;
    line-height: 1.4;
    letter-spacing: 0;
}

/*ここまで追加*/
.header_contact_right ul li {
    display: inline-block;
    width: 100%;
}
.header_contact_right ul li a{
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #616161;
  font-size: 2.4rem; /* フォントサイズを調整 */
  font-weight: bold; /* 太字を追加 */
  line-height: 1.2;
  margin-left: 0.8rem; /* 左に少し余白を追加して位置を微調整 */
}
.header_contact_right ul li a.contact-address {
  font-size: 1.2rem; /* 住所のみ小さく */
}
#global_navi {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    /* overflow: hidden; */
    background-color: var(--color-prime);
    /* background-image: linear-gradient(180deg, #57d585 0%, #129f43 74%); */
}

#global_navi .container {
    height: 6rem;
    margin: 0 auto;
    width: 110rem;
    /* overflow: hidden; */
}

#global_navi_in > ul {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

#global_navi_in > ul > li {
    display: flex;
    vertical-align: middle;
    text-align: center;
    position: relative;
    /* width: calc(100% / 7); */
    width: 100%;
}

#global_navi_in > ul > li::before {
    content: ' ';
    display: block;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-prime), white, var(--color-prime));
    position: absolute;
    left: 0;
    top: 0;
}

#global_navi_in > ul > li:last-of-type::after {
    content: ' ';
    display: block;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-prime), white, var(--color-prime));
    position: absolute;
    right: 0;
    top: 0;
}

#global_navi_in > ul > li::before {
    content: ' ';
    display: block;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-prime), white, var(--color-prime));
    position: absolute;
    left: 0;
    top: 0;
}

#global_navi_in > ul > li:last-of-type::after {
    content: ' ';
    display: block;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-prime), white, var(--color-prime));
    position: absolute;
    right: 0;
    top: 0;
}

#global_navi_in ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: var(--color-prime) 0px 0px 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    height: 100%;
    width: 100%;
    transition: 0.5s;
}

#global_navi_in ul li a:hover {
    opacity: 0.7;
}

#global_navi_in ul li.current a {
    border-bottom: 4px solid var(--pointcol2, #0C8A52);
}


/* =================================================================
   サブメニュー 
*/

#global_navi ul ul{
	display: block;
}
#global_navi ul li{
	position: relative;
}

#global_navi li.has-child ul{
	position: absolute;
	left:0;
	top:62px;
	z-index: 99999999;
	background: var(--color-prime2);
	width:99%;
    margin-left: 1%;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
}

#global_navi li.has-child:hover > ul,
#global_navi li.has-child ul li:hover > ul,
#global_navi li.has-child:active > ul,
#global_navi li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

#global_navi li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px rgba(255,255,255,0.6);
    height: 55px;
}

#global_navi li.has-child ul li:last-child > a{
 border-bottom:none;
 }

#global_navi li.has-child ul li a:hover,
#global_navi li.has-child ul li a:active{
	background:var(--color-prime);
    opacity: 1;
}

#global_navi ul li.has-child > a::before {
    border-left: 2px solid;
    border-top: 2px solid;
    border-color: #fff;
    content: '';
    height: 6px;
    position: absolute;
    left: 19px;
    top: 41%;
    -moz-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    width: 6px;
}
/* ================================================================= */


@media screen and (min-width: 1025px) {
    .d-md-none {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .btn_h span {
        font-size: 1em;
    }

    .logo {
        width: 33%;
        padding-right: 0;
    }

    .header_contact {
        width: 67%;
    }

    .time-table th,
    .time-table td {
        padding: 4px;
        padding: 4px 8px;
        font-size: 1.2em;

    }
}

@media screen and (max-width: 768px) {
    .sp-header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 9999999;
    }

    .sp-header-in {
        width: 100%;
        overflow: hidden;
        border-bottom: 2px solid var(--color-prime, #063014);
        background-color: #F9F9F9;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        padding: 0 3%;
    }

    .sp-logo {
        /* width: 50%; */
        width: 190px;

    }

    .sp-logo a {
        display: block;
        padding: 0 3% 0 0;
    }

    .sp-logo a img {
        margin: auto;
    }

    .sp-botan {
        width: 45%;
        display: flex;
        justify-content: flex-end;
        margin-top: 0.5%;
    }

    .sp-botan ul {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }

    .sp-botan ul li {
        width: 38%;
        padding: 1%;
    }

    .sp-botan ul li:last-child {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-left: 4%;
    }

    .sp-botan ul li:last-child i {
        font-size: 5vw;
        color: var(--color-prime, #22a650) !important;
    }

    input#sp-menu:checked + .sp-header .sp-botan ul li:last-child i.fa-bars:before {
        content: '\f00d';
    }

    .sp-botan ul li a {
        display: flex;
        flex-flow: column;
        align-items: center;
        text-align: center;
        border: 1px solid var(--color-prime, #43ad69);
        border-radius: 8px;
        padding: 6px 2px;
        text-decoration: none !important;
        color: var(--color-prime, #22a650) !important;
    }

    .sp-botan ul li span {
        font-size: 0.75em;
        white-space: nowrap;
    }

    .sp-botan ul li label {
        display: flex;
        flex-flow: column;
        align-items: center;
        transition: 0.2s;
    }

    .sp-botan ul li img {
        padding: 2px 1px;
        height: auto;
    }

    .sp-menu {
        overflow: hidden;
        opacity: 0;
        height: 0;
        transition: 0.2s;
        background-color: #ef9700;
    }

    input#sp-menu:checked + .sp-header .sp-menu {
        opacity: 1;
        height: auto;
    }

    input#sp-menu:checked + .sp-header label img {
        opacity: 0;
    }

    .sp-menu ul.menu {
        width: 100%;
        overflow: hidden;
        border-left: 1px solid white;
        border-top: 1px solid white;
    }

    .sp-menu ul.menu > li {
        width: 100%;
        float: left;
    }

    .sp-menu ul.menu li:last-of-type:nth-of-type(odd) {
        width: 100%;
    }

    .sp-menu ul.menu  li  a {
        position: relative;
        display: block;
        padding: 12px 0px 12px 30px;
        font-size: 15px;
        font-weight: bold;
        text-align: left;
        color: white;
        text-decoration: none;
        background-color: var(--color-prime);
        border-right: 1px solid white;
        border-bottom: 1px solid white;
    }

    .sp-menu ul.menu li a::before {
        border-left: 2px solid;
        border-top: 2px solid;
        border-color: #fff;
        content: '';
        height: 6px;
        position: absolute;
        left: 12px;
        top: 45%;
        -moz-transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg);
        width: 6px;
    }
    .sp-menu ul.menu li.has-child > a::before {
        top: 41%;
        -moz-transform: rotate(225deg);
        -webkit-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
        transform: rotate(225deg);
    }
    .sp-menu ul.menu li.has-child.active > a::before {
        top: 49%;
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }


    /* =================================================================
    サブメニュー 
    */

    .sp-menu ul ul{
        display: block;
    }
    .sp-menu ul li{
        position: relative;
    }

    .sp-menu li.has-child ul{
        position: absolute;
        /* left:0;
        top:62px; */
        z-index: 4;
        width:99%;
        margin-left: 1%;
        visibility: hidden;
        opacity: 0;
        transition: all .3s;
    }

    .sp-menu li.has-child:hover > ul,
    .sp-menu li.has-child ul li:hover > ul,
    .sp-menu li.has-child:active > ul,
    .sp-menu li.has-child ul li:active > ul{
    visibility: visible;
    opacity: 1;
    }

    .sp-menu li.has-child ul li a{
        color: #fff;
        border-bottom:solid 1px rgba(255,255,255,0.6);
        background: rgba(255, 255, 255, 0.2);
    }

    .sp-menu li.has-child ul li:last-child > a{
        border-bottom:none;
    }

    .sp-menu li.has-child ul li a:hover,
    .sp-menu li.has-child ul li a:active{
        opacity: 1;
    }

	 .sp-menu li.has-child ul,
	 .sp-menu li.has-child ul ul{
        position: relative;
        /* left:0;
        top:0; */
        visibility:visible;
        opacity:1;
        display: none;
        transition:none;
    }
    /* ================================================================= */


    .time-table th,
    .time-table td {
        padding: 4px;
        font-size: 1.3em;
    }
    .time-table + p.cap {
        font-size: 100%;
    }
    .time-table--type2 th,
    .time-table--type2 td {
        font-size: 0.95em;
    }


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

    #header_in,
    #global_navi_in {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
}





.urltext {
    word-wrap: break-word; 
    overflow-wrap: break-word;
    word-break: break-all; 
}

/*  追従ボタン */
@media screen and (min-width: 769px) {

    #side_button {
        position: fixed;
        top: 30%;
        z-index: 100;
        opacity: 0;
        -webkit-transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0s;
        transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0s;
    }
    body.home #side_button.right {
        margin-left: 60px;
    }
    body.home #side_button.right.animate {
        -webkit-animation: side_button_animation 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 3.5s;
        animation: side_button_animation 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 3.5s;
    }

    #side_button .item {
        position: relative;
    }
    #side_button .item:before {
        font-size: 18px;
        color: #fff;
        font-weight: normal;
        position: absolute;
        left: 0px;
        text-align: center;
        z-index: 1;
        width: 60px;
        height: 60px;
        line-height: 62px;
    }
    #side_button .side_button_icon_tel:before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f095";
    }
    #side_button .side_button_icon_calendar:before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f133";
    }
    #side_button .side_button_icon_map:before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f3c5";
    }
    #side_button .num1:before {
        color: #ffffff;
    }

    #side_button a {
        font-size: 14px;
        display: block;
        height: 60px;
        line-height: 60px;
        padding: 0 0px 0 62px;
        color: #fff;
        background: #529eaa;
        position: relative;
    }
    #side_button a {
        background: var(--color-prime);
    }
    #side_button a:hover {
        background: #0C8A52;
        opacity: 1;
    }
    #side_button a[href^="tel:"] {
        pointer-events: initial;
    }


    @-webkit-keyframes side_button_animation {
    0% { margin-left:60px; }
    100% { margin-left:0px; }
    }
    @keyframes side_button_animation {
    0% { margin-left:60px; }
    100% { margin-left:0px; }
    }
}

@media screen and (max-width: 768px) {
    #side_button {
        position: fixed;
        bottom: 0;
        z-index: 100;
        display: flex;
        justify-content: space-between;
        width: 100% !important;
        left: inherit !important;
        border-top: 1px solid #fff;

    }
    #side_button .item {
        position: relative;
        flex-basis: 33.3333%;
    }
    #side_button .item:not(:last-child) {
        border-right: 1px solid #fff;
    }
    #side_button .item span {
        position: relative;
        padding-left: 1.5em;
    }
    #side_button .item span:before {
        font-size: 18px;
        color: #fff;
        font-weight: normal;
        position: absolute;
        left: -1.1em;
        text-align: center;
        z-index: 1;
        width: 60px;
        height: 50px;
        line-height: 52px;
    }
    #side_button .side_button_icon_tel span:before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f095";
    }
    #side_button .side_button_icon_calendar span:before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f133";
    }
    #side_button .side_button_icon_map span:before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f3c5";
    }
    #side_button .num1 span:before {
        color: #ffffff;
    }
    #side_button a {
        font-size: 14px;
        display: block;
        height: 50px;
        line-height: 50px;
        padding: 0 0px 0 0;
        color: #fff;
        background: #36b340;
        position: relative;
        text-align: center;
        text-decoration: none;
    }

}


@media screen and (max-width: 768px) {
    #link1, #link2 {
        padding-top: 70px;
        margin-top: -70px;
    }
}

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

Accordion

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

.faq__q {
    position: relative;
    cursor: pointer;
    margin-top: 2em;
    padding-left: 3em;
    padding-bottom: 0em;
    color: var(--titcol, #5c2f0d) !important;
    font-size: 1.6em !important;
    height: 2em;
    display: flex;
    align-items: center;

}
.faq__q--top {
    margin-top: 0.5em;
}
.faq__q--noicon {
    font-size: 1.15em !important;
    padding-left: 0;
    margin-top: 1.5em;
    line-height: 1.5em;
    padding-bottom: 1em;
}
.faq__q--noicon.faq__q--top {
    margin-top: 0em;
}

.faq__q:not(.faq__q--noicon)::before {
    position: absolute;
    top: -0.1em;
    left: 0;
    content: 'Q';
    font-family: 'Roboto', sans-serif;
    font-size: 1.4em;
    line-height: 1.7em;
    text-align: center;
    display: inline-block;
    width: 1.7em;
    height: 1.7em;
    color: #fff;
    background: var(--keycol, #36b340);
    margin-right: 1em;
    margin-bottom: 1em;
    vertical-align: -0em;
}
.faq__q::after {
    content: "";
    background: url(../img/plus.png) no-repeat center top / contain;
    width: 1.5em;
    height: 1.5em;
    border: none;
    position: absolute;
    top: 0.3em;
    right: 0;
    transition: all 0.3s;
}
.faq__q.faq__q--noicon:after {
    top: -0.2em;
}
.faq__q.faq__q--open::after {
    background: url(../img/minus.png) no-repeat center top / contain;
    transform: rotate(180deg);
}
.faq__a {
    position: relative;
    margin-top: 0;
    margin-bottom: 3em;
    display: none;
    padding-left: 5em;
}
.faq__a--noicon {
    padding-left: 0;
    line-height: 2;
    font-size: 0.9em;
}
.faq__a:not(.faq__a--noicon)::before {
    position: absolute;
    top: -0.1em;
    left: 0;
    content: 'A';
    font-family: 'Roboto', sans-serif;
    font-size: 2.7em;
    line-height: 1.4em;
    text-align: center;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    color: var(--keycol, #f7f8f7);
    background: #fd9b1b;
    position: absolute;
    left: 0;
    top: 0;
}
.faq__a p {
    margin-top: 0;
}
.faq__a a {
    text-decoration: underline;
}
.faq__a img {
    width: 100%;
    height: auto;
}


@media screen and (max-width: 767px) {
    .faq__q {
        padding-right: 3rem;
        font-size: 1.4em !important;
    }
    .faq__q--noicon {
        font-size: 1.1em !important;
        margin-top: 2em;
    }
    .faq__q::after {
        top: 0.4em;
    }
    .faq__a {
        margin-bottom: 40px;
        padding-left: 4.5em;
    }
    .faq__a--noicon {
        padding-left: 0;
    }    
    .faq__a::before {
        font-size: 2.4em;
    }
    
}

div.staff .staff-prof-box .staff-txt.staff-txt--100 {
    width: 100% !important;
}
#symptoms_page div.staff .staff-prof-box .staff-txt.staff-txt--100 {
    width: 100% !important;
}

body.faq-page h3.ttl {
  margin-top: 3em; /* 必要に応じて調整可能 */
}

body.faq-page .section_s {
  margin-bottom: 1.5em; /* 適宜調整可能 */
}





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

Treatment list

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

    .columns {
        display: flex;
    }

}

.menu_bnr_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.menu_bnr_list .column {
    position: relative;
    flex-basis: 28%;
    margin-bottom: 13rem;
}
.menu_bnr_list .menu_bnr {
    border-radius: 1.5rem;
    margin-bottom: 2.6rem;
    position: relative;
    transition: .3s;
}
.menu_bnr_list .column p {
    line-height: 1.57;
    margin-bottom: 2rem;
}
.menu_bnr_list .menu_bnr img {
    border-radius: 1.5rem;
}
.menu_bnr_list .menu_bnr .menu_title {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 1.5rem;
    color: #fff;
    font-size: 2.0rem;
    height: 100%;
    left: 0;
    line-height: 1.4;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
}
.menu_bnr_list .menu_bnr .menu_title .link {
    border-bottom: 0.12rem solid #fff;
    display: inline-block;
    margin: 0.6rem 0;
    font-weight: 500;
}
.menu_bnr_list .column p {
    line-height: 1.57;
    margin-bottom: 2.3rem;
}
.menu_bnr_list .column .button {
    position: absolute;
    bottom: -5.5rem;
    width: 100%;
    text-align: center;
    transition: .3s;
}
.menu_bnr_list .column .button a {
    background: #fff;
    border: 0.6rem solid #dcd4c7;
    border-radius: 3rem;
    color: #8B7246;
    display: inline-block;
    font-size: 1.3rem;
    letter-spacing: 0.175em;
    line-height: 1.6;
    width: 100%;
    padding: 1.1rem 1rem 1.1rem 1rem;
    position: relative;
    text-decoration: none;
}
.menu_bnr_list .column .button a:hover {
    background: #c9b38e;
    border-color: #c9b38e;
    color: #fff;
}

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

    .menu_bnr_list .column {
        flex-basis: 47%;
    }

}
.offers{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px 2%; /* 画像の間に余白を設定 */
    margin-top: 2em;
}
offers img{
    width:32%; /* 3列に設定 */
    border-radius: 20;    
}

.kadomaru {
    border-radius:20px;
    }
/*  ----------------------------------------------------------

gallery__block

----------------------------------------------------------  */
.gallery__block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2em 0;
}
.gallery__block > div {
    flex-basis: 32%;
}
.gallery__block img {
    margin-bottom: 0.3em;
}
@media screen and (max-width: 767px) {
    .gallery__block > div {
        flex-basis: 48%;
    }    
}
