/* * { outline: 2px dotted red; } */
:root {
    --main-lh: 1.5;
    --font-xs: 12px;
    --font-sm: 14px;
    --font-md: 16px;
    --font-lg: 20px;
    --font-xl: 56px;
    --en-spacing: 0.05em;
    --number-spacing: 0.05em;
    --black: #333;
    --white: #fff;
    --blue: #056AB7;
    --darkgray:#221714;
    --gray: #707070;
    --orange: #FF9500;
    --bg-gray: #F8F8F8;
    --bg-light-blue: #F3F7FB;
    --border-color: rgba(0, 0, 0, 0.2);
    --radius: 20px;
    --radius-sp: 16px;
    --font-family-sans-serif: 'Montserrat', sans-serif;
    --header: 100px;
    --header-sp: 60px;
}
html {
    scroll-behavior: smooth;
    scroll-padding: calc(var(--header) + 60px);
}
@media only screen and (max-width: 767px) {
    html {
        scroll-padding: calc(var(--header-sp) + 30px);
    }
}
body {
    font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", -apple-system,Segoe UI,Helvetica Neue,Hiragino Kaku Gothic ProN,"メイリオ",meiryo,sans-serif;
    line-height: 1.7;
    color: var(--black);
}
a {
    position: relative;
    display: inline-block;
}
.news__list_ttl,
.link__txt {
    position: relative;
}
.feature__list > li a:hover,
.news__list_ttl:hover,
.link:hover,
.header__list > li a:hover {
    color: var(--blue);
    transition-duration: 0.4s;
}
.news__list_ttl::after,
.link__txt::after,
.header__list > li a::after {
    opacity: 0;
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--blue);
    bottom: 0;
}
.link:hover .news__list_ttl::after,
.link:hover .link__txt::after,
.header__list > li a:hover::after {
    opacity: 1;
    transition: 0.5s;
    z-index: 3;
}
@media only screen and (max-width: 767px) {
    .header__list > li a:hover::after {
        opacity: 0;
    }
}
.content {
    /* width: 1400px;
    max-width: 1400px; */
    margin: 0 auto;
}
@media only screen and (max-width: 767px) {
    .content {
        width: 100%;
    }
}
/************************  
共通パーツ 
************************/
.pc-only{
    display: block;
}
.sp-only{
    display: none;
}
@media screen and (max-width: 767px){
    .pc-only{
        display: none;
    }
    .sp-only{
        display: block;
    } 
}
.ttl {
    letter-spacing: var(--en-spacing);
    font-family: var(--font-family-sans-serif);
    font-size: 56px;
    font-weight: 600;
    margin: 0 0 70px;
    position: relative;
    line-height: 1;
}
.ttl.type02 {
    letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
    .ttl {
        font-size: 36px;
        margin: 0 0 40px 0;
    }
}
.ttl:before {
    position: absolute;
    top: calc(60% - 1px);
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background: #E2E2E2;
}
@media only screen and (max-width: 767px) {
    .ttl:before {
        display: none;
    }
}
.ttl__box_partition {
    font-size: 42px;
    font-weight: 600;
    display: inline-block;
    margin: 0 10px;
}
@media only screen and (max-width: 767px) {
    .ttl__box_partition{
        font-size: 28px;
    }
}
.ttl__box {
    background: var(--white);
    position: relative;
    display: inline-block;
}
.ttl__box_txt {
    letter-spacing: 0;
    font-size: 14px;
    font-weight: bold;
    color: var(--orange);
    padding: 0 34px 0 16px;
    vertical-align: middle;
}
@media only screen and (max-width: 767px) {
    .ttl__box_txt {
        font-size: 12px;
        padding: 0 0 0 16px;
    }
}
.sub_ttl {
    border-left: 5px solid var(--blue);
    font-family: var(--font-family-sans-serif);
    font-size: 28px;
    font-weight: 600;
    padding: 0 0 0 20px;
    line-height: 1;
    margin: 0 0 36px;
}
@media only screen and (max-width: 767px) {
    .sub_ttl {
        font-size: 24px;
    }
}
.sub_ttl span{
    font-size: 14px;
    color: var(--gray);
    display: inline-block;
    margin: 0 0 0 14px;
    vertical-align: middle;
}
@media only screen and (max-width: 767px) {
    .sub_ttl span {
        font-size: 11px;
    }
}
.link {
    display: inline-block;
}
.link__circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #E6F0F8;
    position: relative;
    margin: 0 0 0 20px;
    transition-duration: 0.4s;
}
@media only screen and (max-width: 767px) {
    .link__circle {
        min-width: 36px;
        width: 36px;
        height: 36px;
    }
}
.link:hover .link__circle {
    background: var(--blue);
    margin: 0 0 0 20px;
}
.link__circle.type02 {
    background: none;
    margin: 0 0 0 auto;
}
.link:hover .link__circle.type02 {
    background: var(--blue);
    margin: 0 0 0 auto;
}
  
.link__arrow:before {
    font-family: var(--font-family-sans-serif);
    content: "\2192";
    display: block;
    font-size: 20px;
    color: var(--blue);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
    .link__arrow:before {
        font-size: 14px;
    }
}
.link:hover .link__arrow:before {
    color: var(--white);
}
.link a {
    font-size: 14px;
    color: var(--blue);
    display: flex;
    align-items: center;
}
.feature__list > li a img:hover,
.header__logo:hover,
.footer__logo:hover,
.insta__link:hover,
.tel_btn:hover,
.tel_link:hover {
    opacity: 0.8;
    transition-duration: 0.4s;
}
.tel_link {
    display: inline-block;
    font-weight: 600;
    background: url(../img/common/icon_tel_orange.png) no-repeat left center;
    background-size: 39px auto;
    font-size: 28px;
    color: var(--orange);
    padding: 0 0 0 46px;
    line-height: 46px;
    letter-spacing: var(--number-spacing);
    font-family: var(--font-family-sans-serif);
}
.tel_link.small {
    background: url(../img/common/icon_tel_orange.png) no-repeat left center;
    background-size: 37px auto;
    font-size: 26px;
    padding: 0 0 0 42px;
    line-height: 37px;
}
.tel_link.large {
    background: url(../img/common/icon_tel_orange.png) no-repeat left center;
    background-size: 52px auto;
    font-size: 39px;
    font-weight: 600;
    line-height: 52px;
    padding: 0 0 0 70px;
}
@media only screen and (max-width: 767px) {
    .tel_link.large {
        background-size: 44px auto;
        font-size: 31px;
        line-height: 44px;
        padding: 0 0 0 54px;
        letter-spacing: 0.02em;
    }
}
.tel_link.blue {
    background: url(../img/common/icon_tel_blue.png) no-repeat 0 50%;
    background-size: 37px auto;
    color: var(--blue);
}

.tel_btn {
    margin: 0 0 10px;
}
.tel_btn_link {
    background: var(--orange);
    border-radius: 30px;
    padding: 10px;
    display: flex;
    padding: 6px 40px;
    align-items: center;
}
@media only screen and (max-width: 767px) {
    .tel_btn_link {
        border-radius: 40px;
        padding: 15px 30px;
    }
}
.tel_btn_ttl {
    display: flex;
    color: var(--white);
    font-size: 13px;
    background: url(../img/common/icon_tel_white.png) no-repeat 0 50%;
    background-size: 18px auto;
    padding: 0 0 0 30px;
    width: 40%;
    border-right: 1px solid #FFB54D;
}
@media only screen and (max-width: 767px) {
    .tel_btn_ttl {
        font-weight: 700;
        width: 34%;
    }
}
.tel_btn_txt {
    color: var(--white);
    font-size: 28px;
    font-weight: 500;
    flex: 1;
    text-align: right;
    white-space: nowrap;
    letter-spacing: var(--number-spacing);
    font-family: var(--font-family-sans-serif);
}
@media only screen and (max-width: 767px) {
    .tel_btn_txt {
        font-weight: 600;
        font-size: 20px;
    }
}
.fax_btn {
    margin: 0 0 10px;
}
.fax_btn_link {
    pointer-events: none;
    border:1px solid var(--orange);
    border-radius: 30px;
    padding: 10px;
    display: flex;
    padding: 6px 40px;
    align-items: center;
}
@media only screen and (max-width: 767px) {
    .fax_btn_link {
        border-radius: 40px;
        padding: 15px 30px;
    }
}
.fax_btn_ttl {
    display: flex;
    color: var(--orange);
    font-size: 13px;
    padding: 0 0 0 30px;
    width: 40%;
    border-right: 1px solid #FADAAE;
}
@media only screen and (max-width: 767px) {
    .fax_btn_ttl {
        /* justify-content: right; */
        padding: 0 0 0 40px;
        font-weight: 700;
        width: 34%;
    }
}
.fax_btn_txt {
    color: var(--orange);
    font-size: 28px;
    font-weight: 500;
    flex: 1;
    text-align: right;
    white-space: nowrap;
    letter-spacing: var(--number-spacing);
    font-family: var(--font-family-sans-serif);
}
@media only screen and (max-width: 767px) {
    .fax_btn_txt {
        font-weight: 600;
        font-size: 20px;
    }
}
/************************  
ヘッダー
************************/
.header {
    top: 0;
    position: sticky;
    width: 1320px;
    margin: 0 auto;
    padding: 30px 0 20px;
    z-index: 3;
    background: var(--white);
    transition: all 0.2s ease-in-out;
    min-height: var(--header);
}
@media only screen and (max-width: 767px) {
    .header {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        min-height: var(--header-sp);
    }
}
.header.is-animation {
    top: 20px;
    width: 1280px;
    padding: 20px 30px;
    margin: 0 auto;  
    border-radius: var(--radius);
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
    .header.is-animation {
        border-radius: var(--radius-sp);
        top: 0;
        width: 100%;
        padding: 20px 20px;
        margin: 0 auto;  
        border-radius: 0;
        box-shadow: none;
    }
}
.header__body {
    display: flex;
    align-items: center;
}
.header__box {
    align-items: center;
    margin: 0 0 0 auto;
    display: flex;
}
.header__list {
    display: flex;
    gap:0 35px;
}
@media only screen and (max-width: 767px) {
    .header__list {
        display: block;
    }
}
.header__list > li {
    font-size: 14px;
    font-weight: 700;
}
.nav__tel {
    border-top: 1px solid var(--border-color);
    padding: 40px 0 0;
}
@media only screen and (max-width: 767px) {
    .header__list > li {
        margin: 0 0 10px;
    }
    .header__list > li a{
        display: block;
        font-size: 10px;
        background: url(../img/common/icon_arrow_circle.png) no-repeat 100% 50%;
        padding: 0 50px 0 0;
        background-size: 36px auto;
        line-height: 36px;
    }
    .header__logo {
        width: 60%;
    }
}
.header__list_en {
    display: none;
    font-family: var(--font-family-sans-serif);
}
@media only screen and (max-width: 767px) {
    .header__list_en {
        font-size: 24px;
        display: block;
    }
    .header__list_jp {
        color: var(--gray);
    }
}
@media only screen and (max-width: 767px) {
    .header__list_price {
        display: none;
    }
}
.header__tel {
    margin: 0 0 0 45px;
    text-align: right;
}
.header__tel_txt {
    font-size: 12px;
    margin: 4px 0 0 0;
}
.header__tel_note {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: var(--number-spacing);
    font-family: var(--font-family-sans-serif);
}
@media only screen and (max-width: 767px) {
    .header__tel {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .header__nav {
      position: fixed;
      /* top: -100%; */
      /* right: -100%; */
      width: 100%;
      height: 100vh;
      padding: 40px 40px 0;
      background-color: var(--white);
      opacity: 0;
      transition: all .4s;
      z-index: 4;
      overflow-y: auto;
    }
    .nav__btn {
      position: absolute;
      right: 24px;
      top: 8px;
      width: 40px;
      height: 40px;
      cursor: pointer;
      z-index: 6;
    }
    .nav__btn_border {
      position: absolute;
      left: 11px;
      width: 30px;
      height: 1px;
      background-color: var(--gray);
      transition: all .6s;
    }
    .nav__btn_border_top {
      top: 14px;
    }
    .nav__btn_border_center {
      top: 22px;
    }
    .nav__btn_border_bottom {
      top: 30px;
    }
    /* open時 */
    .nav-open .header__nav {
        top: 60px;
        border-top: 2px solid #eee;
        opacity: 1;
        right: 0;
      }
      .nav-open .nav__btn_border_top {
        transform: rotate(45deg);
        top: 20px;
      }
      .nav-open .nav__btn_border_center {
        width: 0;
        left: 50%;
      }
      .nav-open .nav__btn_border_bottom {
        transform: rotate(-45deg);
        top: 20px;
      }
}
/************************  
フッター
************************/
.footer_wrap {
    background: var(--bg-gray);
}
.footer {
    background: var(--bg-gray);
    width: 1400px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}
@media only screen and (max-width: 768px) {
    .footer {
        width: 100%;
    }
}
.footer__body {
    width: 1120px;
    margin: 0 auto;
    padding: 100px 0;
}
@media only screen and (max-width: 767px) {
    .footer__body {
        width: 100%;
        padding: 50px 40px;
    }
}
.footer__bodyin {
    display: flex;
}
@media only screen and (max-width: 767px) {
    .footer__bodyin {
        display: block;
    }
}
.footer__logo {
    margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
    .footer__logo {
        margin: 0 30px 30px;
    }
}
.footer__address_txt {
    font-size: 13px;
    margin: 0 0 30px;
}
@media only screen and (max-width: 767px) {
    .footer__address_txt {
        font-size: 11px;
        text-align: center;
        margin: 0 0 50px;
    }
}
.footer__address_clinic {
    display: flex;
    margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
    .footer__address_clinic {
        justify-content: center;
    }
}
.footer__address_clinic_ttl {
    font-size: 13px;
    line-height: 1;
    font-weight: normal;
    border-right: 1px solid var(--border-color);
    padding: 0 10px 0 0;
    margin: 0 10px 0 0;
}
@media only screen and (max-width: 767px) {
    .footer__address_clinic_ttl {
        font-size: 11px;
    }
}
.footer__address_clinic_txt {
    font-size: 13px;
    line-height: 1;
}
@media only screen and (max-width: 767px) {
    .footer__address_clinic_txt {
        font-size: 11px;
    }
}
.footer__box {
    width: 460px;
    margin: 0 0 0 auto;
}
@media only screen and (max-width: 767px) {
    .footer__box {
        width: 100%;
    }
}
.footer__list {
    display: flex;
    flex-wrap: wrap;
    gap:0 33px;
    margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
    .footer__list {
        flex-wrap: wrap;
        gap:0 0;
    }
}
.footer__list > li {
    font-size: 13px;
    font-weight: bold;
    flex: 0 0 auto;
}

.footer__list > li:nth-child(6) {
    margin-top: 16px;
}

@media only screen and (max-width: 767px) {
    .footer__list > li {
        font-size: 12px;
        width: 50%;
        margin: 0 0 20px;
    }

    .footer__list > li:nth-child(6) {
        margin-top: 0px;
    }
}
.business_box {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: var(--gray);
}
.business_box__time{
    display: inline-block;
    margin: 0 10px 0 0;
    letter-spacing: var(--number-spacing);
    font-family: var(--font-family-sans-serif);
}
@media only screen and (max-width: 767px) {
    .business_box__day {
        display: block;
    }
}
.copyright {
    margin: -24px 0 0;
    font-family: var(--font-family-sans-serif);
    font-size: 10px;
    display: block;
}
@media only screen and (max-width: 767px) {
    .copyright {
        margin: 60px 0 0;
        text-align: center;
    }
}
/************************  
ページ
************************/
/* keyビジュアル */
.key {
    width: 1320px;
    margin: 0 auto 120px;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .key {
        width: 100%;
        margin: 0 auto 100px;
        padding: 0 20px;
    }
}
.key__catch {
    position: absolute;
    top: 30%;
    left: 80px;
    z-index: 2;
}
@media only screen and (max-width: 767px) {
    .key__catch {
        left: 0;
        width: 100%;
        margin: 10px 0 0 0;
    }
}
.key__catch_ttl {
    font-weight: 700;
    font-size: 34px;
    line-height: 1.6;
    margin: 0 0 35px;
}
@media only screen and (max-width: 767px) {
    .key__catch_ttl {
        font-size: 20px;
        margin: 0 0 12px;
    }
}
.key__catch_txt {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.9;
    color: var(--darkgray);
}
@media only screen and (max-width: 767px) {
    .key__catch_txt {
        font-size: 12px;
    }
}
.key__img {
    width: 100%;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .key__img {
        margin: 0 0 40px;
        z-index: 1;
    }
}
.key__content {
    display: flex;
    position: absolute;
    bottom: -1px;
    right: -1px;
    flex-direction: row-reverse; /* key__boxが右、key__bannerを左に */
    z-index: 2;
}
@media only screen and (max-width: 767px) {
    .key__content {
        position: static; /* SP時相対配置に戻す */
        flex-direction: column;
        align-items: center;
    }
}
.key__box {
    width: 314px;
    height: 186px;
    padding: 35px 0 0;
    background: var(--white);
    border-radius: 20px 0 0 0;
}
@media only screen and (max-width: 767px) {
    .key__box {
        background: var(--bg-gray);
        width: 100%;
        height: auto;
        padding: 20px 20px;
        border-radius: var(--radius-sp);
    }
}
.key__box_ttl {
    color: var(--blue);
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    margin: 0 0 10px;
}
.key__box_note {
    text-align: center;
    font-size: 11px;
}
.key__box_note span {
    font-size: 12px;
    font-weight: bold;
}
.key__tel {
    text-align: center;
    margin: 0 0 15px;
}
@media only screen and (max-width: 767px) {
    .key__tel {
        margin: 0 0 20px;
    }
}
.key__banner {
    margin-right: 16px; /* key__boxとの間隔を調整 */
}
@media only screen and (max-width: 767px) {
    .key__banner {
        width: 100%;
        height: auto;
        margin-top: 20px;
        margin-right: 0; /* 縦並び右マージンをリセット */
    }
    .key__banner a {
        display: block; /* 親要素の幅を取る */
        width: 100%;
    }
}
.key__banner img {
    width: 320px;
    height: 166px;
    display: block;
    margin: auto;
}
@media only screen and (max-width: 767px) {
    .key__banner img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0;
    }
}
.key__scroll {
    position: absolute;
    right: -20px;
    bottom: 0;
}
@media only screen and (max-width: 767px) {
    .key__scroll {
        display: none;
    }
}

.key__body {
    position: relative;
}
.key__ttl_wrap {
    padding: 40px 40px 0 0;
    border-radius: 0 20px 0 0;
    background: var(--white);
    position: absolute;
    bottom: -1px;
    left: -1px;
    z-index: 2;
}
@media only screen and (max-width: 767px) {
    .key__ttl_wrap {
        padding: 20px 20px 0 0;
    }
}
.key__ttl_en {
    display: block;
    letter-spacing: var(--en-spacing);
    font-family: var(--font-family-sans-serif);
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    margin: 0 0 10px;
}
@media only screen and (max-width: 767px) {
    .key__ttl_en {
        font-size: 28px;
        line-height: 1;
        margin: 0 0 0;
    }
}
.key__ttl_jp {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray);
}
@media only screen and (max-width: 767px) {
    .key__ttl_jp {
        font-size: 10px;
    }
}
/* お知らせ */
.news {
    width: 1120px;
    margin: 0 auto 100px;
}
.news__add_margin_top {
    margin-top: 70px;
}
@media only screen and (max-width: 767px) {
    .news {
        width: 100%;
        padding: 0 20px;
    }
    .news__add_margin_top {
        margin-top: 20px;
    }
}
.news__box_wrap {
    display: flex;
    gap: 0 20px;
    margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
    .news__box_wrap {
        display: block;
    }
}
.news__box {
    margin: 0 0 0 auto;
    background: url(../img/common/icon_news.png) no-repeat 50% 30% var(--bg-light-blue);
    background-size: 35px auto;
    width: 310px;
    border-radius: var(--radius);
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 148px;
}
@media only screen and (max-width: 767px) {
    .news__box {
        border-radius: var(--radius-sp);
        background-position: 10% 50%;
        width: 100%;
        min-height: auto;
        padding: 20px 10px;
    }
}
.news__box .link{
    position: absolute;
    bottom: 20%;
}
@media only screen and (max-width: 767px) {
    .news__box .link{
        position: relative;
    }
}
.news__list {
    width: 780px;
}
@media only screen and (max-width: 767px) {
    .news__list {
        width: 100%;
        margin: 0 0 20px;
    }
}
.news__list > li {
    border-radius: var(--radius);
    padding: 10px 20px 10px 28px;
    background:#F8F8F8;
    margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
    .news__list > li {
        border-radius: var(--radius-sp);
        background-position: 95% 50%;
        margin: 0 0 10px;
    }
}
.news__list > li:last-child {
    margin: 0;
}
.news__list > li a{
    display: flex;
    align-items: center;
}
.news__list_box {
    display: flex;
    align-items: center;
    width: 90%;
}
.news__list_date {
    color: var(--blue);
    font-size: 14px;
    margin: 0 10px 0 0;
}
.news__list_ttl {
    padding: 4px 0;
    color: var(--blue);
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.news_h3 {
    font-size: 30px;
    margin: 0 0 2.5rem;
    color: #333333;
}
@media only screen and (max-width: 767px) {
    .news_h3{
        font-size: 20px;
    }
}
.news__txt {
    margin: 0 0 24px;
    color: var(--gray);
    font-size: 15px;
}
@media only screen and (max-width: 767px) {
    .news__txt{
        margin: 0 0 40px;
        font-size: 14px;
    }
}
/* 私たちの理念 */
.philosophy {
    margin: 0 auto 100px;
}
.philosophy__body {
    background: url(../img/index/bg_philosophy.png) no-repeat 0 top;
    height: 400px;
}
@media only screen and (max-width: 767px) {
    .philosophy__body {
        height: auto;
        background: none;
    }
}
.philosophy__img {
    display: none;
}
@media only screen and (max-width: 767px) {
    .philosophy__img {
        display: block;
        margin: 0 40px 0 0;
    }
}
.philosophy__box {
    width: 1120px;
    margin: 0 auto 100px;
    padding: 70px 0 0 670px;
}
@media only screen and (max-width: 767px) {
    .philosophy__box {
        width: auto;
        background: url(../img/index/txt_philosophy.png) no-repeat 0 40%;
        background-size: 100% auto;
        padding: 40px 40px;
    }
}
.philosophy__ttl {
    font-weight: 700;
    font-size: 30px;
    margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
    .philosophy__ttl {
        font-size: 18px;
        margin: 0 0 20px;
    }
}
.philosophy__txt {
    font-weight: 700;
    color: var(--gray);
    margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
    .philosophy__txt {
        font-size: 12px;
    }
}

/* ポリシー */
.policies {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 120px;
}
.policy {
    background: #056AB70D;
    border-radius: 10px;
    width: 353px;
    height: 334px;
    text-align: center;
}
.policy .circle {
    margin: 40px auto;
    background: #056AB7;
    font-size: 16px;
    height: 54px;
    width: 54px;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.policy h2 {
    font-size: 28px;
    font-weight: bold;
    color: #056AB7;
}
.policy .line {
    width: 30px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    border: 0.5px solid #707070
}
.policy .desc-wrap {
    margin-top: 10px;
    display: flex;
    height: 100px;
    justify-content: center; /* 水平方向で中央寄せ */
    align-content: center; /* 垂直方向で中央寄せ */
}
.policy .desc {
    font-size: 15px;
    color:#707070;
    margin-bottom: 10px;
}

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

    /* ポリシー */
    .policies {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        margin-top: 35px;
        margin-bottom: 100px;
        align-items: center;
    }
    .policy {
        background: #056AB70D;
        border-radius: 10px;
        width: 335px;
        height: auto;
        padding: 32px 16px;
        text-align: center;
        display: flex;
        flex-direction: row;
        align-items: center;

    }
    .policy .circle {
        background: #056AB7;
        font-size: 16px;
        height: 54px;
        width: 54px;
        color: white;
        font-weight: bold;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 36px;
    }

    .policy .under-wrapper {
        text-align: left;
        flex-grow: 1;
    }

    .policy h2 {
        font-size: 20px;
        font-weight: bold;
        color: #056AB7;
    }
    .policy .line {
        display: none;
    }
    .policy .desc-wrap {
        margin-top: 10px;
        display: flex;
        height: auto;
        justify-content: left; /* 水平方向で中央寄せ */
        align-content: center; /* 垂直方向で中央寄せ */
    }
    .policy .desc {
        font-size: 15px;
        color:#707070;
        margin-bottom: 10px;
    }
}


/* 訪問診療の流れ */
.flow {
    background: var(--bg-light-blue);
    border-radius: 60px;
    margin: 0 auto 120px;
}
@media only screen and (max-width: 767px) {
    .flow {
        margin: 0 auto 100px;
        border-radius: var(--radius-sp);
        padding: 0 20px;
    }
}
.flow .ttl__box {
    background: #F5F8FC;
}
.flow_body {
    width: 1120px;
    margin: 0 auto;
    padding: 100px 0;
}
@media only screen and (max-width: 767px) {
    .flow_body {
        width: 100%;
        margin: 0 auto 40px;
        padding: 40px 0;
    }
}
.flow__tel {
    background: #FFFFFF;
    border-radius: var(--radius);
    padding: 60px;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .flow__tel {
        border-radius: var(--radius-sp);
        padding: 30px 20px;
    }
}
.flow__tel_txt {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 16px;
}
@media only screen and (max-width: 767px) {
    .flow__tel_txt {
        margin: 0 0 20px;
        font-size: 14px;
    }
}
.flow__tel_note {
    margin: 0 0 20px;
    font-size: 14px;
}
@media only screen and (max-width: 767px) {
    .flow__tel_note {
        font-size: 11px;
        margin: 0 auto 30px;
        width: 275px;
    }
}
.flow__tel_box {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media only screen and (max-width: 767px) {
    .flow__tel_box {
        display: block;
        margin: 0 auto;
        width: 275px;
    }
}
.flow__tel_table_wrap {
    text-align: left;
    margin: 0 0 0 50px;
    padding: 0 0 0 50px;
    border-left: 1px solid var(--border-color);
}
@media only screen and (max-width: 767px) {
    .flow__tel_table_wrap {
        margin: 20px auto 0;
        padding: 0 0;
        border: none;
    }
}
.flow__tel_table {
    display: flex;
}
.flow__tel_table_ttl {
    font-weight: 700;
    font-size: 14px;
}
@media only screen and (max-width: 767px) {
    .flow__tel_table_ttl {
        font-size: 13px;
    }
}
.flow__tel_table_ttl:after {
    border-top: 1px solid var(--border-color);
    content: "";
    width: 28px;
    margin: 0 10px;
    display: inline-block;
    vertical-align: middle;
}
@media only screen and (max-width: 767px) {
    .flow__tel_table_ttl:after {
        border:none;
        content: ":";
        width: auto;
        margin: 0 4px;
    }
}
.flow__tel_table_ttl span {
    display: inline-block;
    margin: 0 14px;
}
.flow__tel_table_time {
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: var(--number-spacing);
    font-family: var(--font-family-sans-serif);
}
@media only screen and (max-width: 767px) {
    .flow__tel_table_time {
        font-size: 13px;
    }
}
.flow__tel_table_day {
    color: var(--orange);
    font-size: 14px;
    font-weight: 700;
}
@media only screen and (max-width: 767px) {
    .flow__tel_table_day {
        font-size: 13px;
    }
}
.flow__box {
    background: #E7F1F9;
    border-radius: var(--radius);
    padding:40px 60px;
    margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
    .flow__box {
        border-radius: var(--radius-sp);
        padding:40px 20px;
        margin: 0 0 40px;
    }
}
.flow_body {
    position: relative;
}
.flow__list > li {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}
@media only screen and (max-width: 767px) {
    .flow__list > li {
        display: block;
    }
}
.flow__list > li::before {
    border-left: 1px solid #C3CAD0;
    content: "";
    position: absolute;
    bottom: -48px;
    left: 30px;
    width: 1px;
    height: 54%;
}
@media only screen and (max-width: 767px) {
    .flow__list > li::before  {
        bottom: -26px;
        left: 50%;
        width: 1px;
        height: 14%;
    }
}
.flow__list > li:last-child{
    margin: 0;
}
.flow__list > li:last-child:before {
    border: none;
}
.flow__step {
    background: url(../img/common/icon_tel.png) no-repeat 60px 50% var(--white);
    background-size: auto 36px;
    border-radius: var(--radius);
    padding: 20px 60px 20px 150px;
    margin: 0 0 0 60px;
    flex: 1;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .flow__step {
        background-size: auto 28px;
        border-radius: var(--radius-sp);
        background-position: 50% 20%;
        padding: 90px 20px 20px;
        margin: 0 0 20px;
    }
}
.flow__step.step02 {
    background-image: url(../img/common/icon_comment.png);
}
.flow__step.step03 {
    background-image: url(../img/common/icon_calender.png);
}
.flow__step.step04 {
    background-image: url(../img/common/icon_bag.png);
}
.flow__step_ttl {
    color: var(--blue);
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 10px;
}
@media only screen and (max-width: 767px) {
    .flow__step_ttl {
        text-align: center;
        margin: 0 0 10px;
        font-size: 14px;
    }
}
.flow__step_txt {
    color: var(--gray);
    font-size: 16px;
}
@media only screen and (max-width: 767px) {
    .flow__step_txt {
        font-size: 13px;
    }
}
.flow__box_step {
    letter-spacing: var(--en-spacing);
    position: relative;
    font-family: var(--font-family-sans-serif);
    font-weight: 500;
    font-size: 16px;
}
@media only screen and (max-width: 767px) {
    .flow__box_step {
        margin: 0 0 10px;
        text-align: center;
    }
}
/* クリニック紹介 */
.clinic {
    width: 1120px;
    margin: 0 auto 100px;
}
@media only screen and (max-width: 767px) {
    .clinic {
        display: block;
        width: 100%;
        padding: 0 20px;
    }
}
.clinic__photo {
    display: flex;
    gap: 0 30px;
    margin: 0 0 70px;
}
@media only screen and (max-width: 767px) {
    .clinic__photo {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    .clinic__photo_main {
        margin: 0 0 20px;
    }
    .clinic__photo_sub {
        display: flex;
        gap: 0 20px;
    }
}
.clinic__photo_sub_img {
    margin: 0 0 30px;
}
.clinic__box_wrap {
    display: flex;
    gap: 0 60px;
    margin: 0 0 80px;
}
@media only screen and (max-width: 767px) {
    .clinic__box_wrap {
        display: block;
        margin: 0 0 100px;
    }
}
.clinic__box01 {
    width: 530px;
}
@media only screen and (max-width: 767px) {
    .clinic__box01 {
        width: 100%;
        margin: 0 0 50px;
    }
}
.clinic__box02 {
    width: 530px;
}
@media only screen and (max-width: 767px) {
    .clinic__box02 {
        width: 100%;
    }
}
.clinic__txt {
    font-weight: 700;
    font-size: 16px;
}
@media only screen and (max-width: 767px) {
    .clinic__txt {
        margin: 0 0 4px;
        font-weight: 700;
        font-size: 14px;
    }
}
.clinic__note {
    font-size: 14px;
}
@media only screen and (max-width: 767px) {
    .clinic__note {
        font-size: 13px;
        margin: 0 0 20px;
    }
}
.clinic__box_img {
    margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
    .clinic__box_img {
        margin: 0 0 20px;
    }
}
.clinic_body {
    position: relative;
}
.clinic_body__tel {
    position: absolute;
    bottom: 120px;
    left: 140px;
}
.clinic__address {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
    .clinic__address {
        display: block;
    }
}
.clinic__address_box {
    width: 360px;
}
@media only screen and (max-width: 767px) {
    .clinic__address_box {
        width: 100%;
    }
}
.clinic__address_link {
    margin: 0 0 0 auto;
}
@media only screen and (max-width: 767px) {
    .clinic__address_link {
        margin: 0 0 30px;
    }
}
.clinic__list > li {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
}
.clinic__list > li:first-child {
    border-top: 1px solid var(--border-color);
}
.clinic__list_day {
    font-weight: 700;
    font-size: 16px;
    padding: 0 0 0 30px;
    width: 32%;
}
.clinic__list_time.type02 {
    color: var(--orange);
}
@media only screen and (max-width: 767px) {
    .clinic__list_day {
        font-size: 14px;
        padding: 0 0 0 10px;
    }
}
.clinic__list_time {
    color: var(--blue);
    font-weight: 700;
    padding: 0 0 0 60px;
    font-size: 16px;
    border-left: 1px solid var(--border-color);
    letter-spacing: var(--number-spacing);
    font-family: var(--font-family-sans-serif);
}
@media only screen and (max-width: 767px) {
    .clinic__list_time {
        font-size: 14px;
        padding: 0 0 0 30px;
    }
}


/* 診療費 */
.wrap_box {
    display: flex;
    gap: 0 50px;
    width: 1120px;
    margin: 0 auto 100px;
}
@media only screen and (max-width: 767px) {
    .wrap_box {
        display: block;
        width: 100%;
    }
}
.box {
    width: 530px;
    margin: 0 0 0 auto;
}
@media only screen and (max-width: 767px) {
    .box {
        width: 100%;
        padding: 0 20px;
        margin: 0 0 100px;
    }
}
/* 診療費 */
.price {
    width: 1120px;
    margin: 0 auto 100px;
}
@media only screen and (max-width: 767px) {
    .price {
        width: 100%;
        padding: 0 20px;
    }
}
.price__box {
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 50px;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .price__box {
        border-radius: var(--radius-sp);
    }
}
.price__img {
    margin: 0 auto 30px;
}
@media only screen and (max-width: 767px) {
    .price__img {
        max-width: 184px;
    }
}
.price__img02 {
    max-width: 248px;
    margin: 0 auto 30px;
}
@media only screen and (max-width: 767px) {
    .price__img02 {
        max-width: 184px;
    }
}
.price__txt {
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 10px;
}
@media only screen and (max-width: 767px) {
    .price__txt {
        font-size: 14px;
    }
}
.price__txt02 {
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 20px;
    color: var(--blue);
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .price__txt02 {
        font-size: 14px;
    }
}
.price__note {
    font-size: 15px;
    color: var(--gray);
    margin: 0 0 30px;
}
@media only screen and (max-width: 767px) {
    .price__note {
        font-size: 12px;
    }
}
.price__note02 {
    font-size: 15px;
    color: var(--gray);
}
@media only screen and (max-width: 767px) {
    .price__note02 {
        font-size: 11px;
    }
}
.price__note03 {
    font-size: 14px;
    color: var(--gray);
}
@media only screen and (max-width: 767px) {
    .price__note03 {
        font-size: 12px;
    }
}
/* 在宅支援エリア */
.area__box {
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .area__box {
        border-radius: var(--radius-sp);
        padding: 20px;
    }
}
.area__img {
    margin: 0 0 30px;
}
.area__txt {
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 10px;
}
@media only screen and (max-width: 767px) {
    .area__txt {
        font-size: 14px;
        align-items: center;
    }
}
.area__txt02 {
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 10px;
}
.area__note {
    font-size: 15px;
    margin: 0 0 20px;
    color: var(--gray);
}
@media only screen and (max-width: 767px) {
    .area__note {
        font-size: 11px;
    }
}
/* 当院の特徴 */
.feature {
    width: 1120px;
    margin: 0 auto 100px;
}
@media only screen and (max-width: 767px) {
    .feature {
        width: 100%;
        padding: 0 0 0 20px;
    }
}
.feature__list {
    display: flex;
    gap: 0 56px;
    margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
    .feature__list {
        display: block;
        width: 100%;
        padding: 0 0 0 20px;
    }
}
.feature__list > li{
    width: 336px;
}
@media only screen and (max-width: 767px) {
    .feature__list > li{
        width: 100%;
        margin: 0 0 60px;
    }
}
.feature__list_ttl {
    font-weight: 700;
}
@media only screen and (max-width: 767px) {
    .feature__list_ttl {
       font-size: 14px;
       padding: 0 40px 0 0;
    }
}
.feature__img {
    margin: 0 0 24px;
}
@media only screen and (max-width: 767px) {
    .feature__img {
        width: 100%;
        margin: 0 0 20px;
    }
}



/* 私たちの理念 */
.dialogue {
    margin: 0 auto 130px;
}
@media only screen and (max-width: 767px) {
    .dialogue {
        margin: 0 auto 100px;
    }
}
.dialogue__body {
    position: relative;
    flex: 1;
    background: url(../img/philosophy/bg_goal.png) no-repeat 0 50%;
    aspect-ratio: 1400 / 530;
    background-size: cover;
}
@media only screen and (max-width: 767px) {
    .dialogue__body {
        background: url(../img/philosophy/bg_goal-sp.png) no-repeat 0 50%;
        aspect-ratio: 375 / 565;
        background-size: cover;
    }
}
.dialogue__box {
    position: absolute;
    top:35%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .dialogue__box {
        top:33%;
    }
}
.dialogue__ttl {
    font-weight: 700;
    font-size: 30px;
    margin: 0 0 35px;
    line-height: 1.5;
}
@media only screen and (max-width: 767px) {
    .dialogue__ttl {
        font-size: 18px;
        margin: 0 0 20px;
    }
}
.dialogue__txt {
    font-size: 15px;
    line-height: 2.5;
    font-weight: 700;
    color: var(--gray);
    margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
    .dialogue__txt {
        line-height: 2.2;
        font-size: 12px;
    }
}

.mil-policy {
    width: 1120px;
    margin: 0 auto 100px;
}
@media only screen and (max-width: 767px) {
    .mil-policy {
        width: 100%;
        padding: 0 0 0 20px;
    }
}

.goal {
    width: 1120px;
    margin: 0 auto 100px;
}
@media only screen and (max-width: 767px) {
    .goal {
        width: 100%;
        padding: 0 0 0 20px;
    }
}
.goal__list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
@media only screen and (max-width: 767px) {
    .goal__list {
        display: block;
        width: 100%;
        padding: 0 0 0 20px;
    }
}
.goal__list > li{
    position: relative;
    width: 530px;
}
@media only screen and (max-width: 767px) {
    .goal__list > li{
        width: 100%;
        margin: 0 0 60px;
    }
}
.goal__box {
    padding: 24px 0 0 30px;
    background: var(--white);
    border-radius: 20px 0 0 0;
    position: absolute;
    bottom: -1px;
    right: -1px;
}
@media only screen and (max-width: 767px) {
    .goal__box{
        padding: 20px 20px 0;
        border-radius: 16px 0 0 0;
    }
}
.goal__box_ttl {
    font-weight: 700;
    font-size: 16px;
}
@media only screen and (max-width: 767px) {
    .goal__box_ttl{
        font-size: 14px;
    }
}
/* 診察内容 */
.treatment {
    width: 1120px;
    margin: -70px auto 100px;
}
@media only screen and (max-width: 767px) {
    .treatment {
        display: block;
        width: 100%;
        padding: 0 20px;
    }
}
.treatment__em {
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
    .treatment__em {
        font-size: 14px;
        margin: 0 0 40px;
    }
}
.treatment__txt {
    margin: 0 0 24px;
    color: var(--gray);
    font-size: 15px;
}
@media only screen and (max-width: 767px) {
    .treatment__txt{
        font-size: 14px;
        margin: 0 0 40px;
    }
}
.treatment__box {
    background: var(--bg-light-blue);
    border-radius: var(--radius);
    padding: 30px 60px 50px;
    margin: 0 0 50px;
}
@media only screen and (max-width: 767px) {
    .treatment__box {
        border-radius: var(--radius-sp);
        padding: 20px;
    }
}
.treatment__list {
    border-radius: var(--radius);
    padding: 30px 40px;
    background: #FFFFFF;
    gap:0 30px;
}
@media only screen and (max-width: 767px) {
    .treatment__list{
        border-radius: var(--radius-sp);
        display: block;
        padding: 40px 20px;
    }
}
.treatment__list > li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    gap: 0 30px;
    margin: 0 0 24px;
    padding: 0 0 24px;
}
@media only screen and (max-width: 767px) {
    .treatment__list > li{
        display: block;
        width: 100%;
        min-height: auto;
        padding: 0 0 30px;
        margin: 0 0 30px;
    }
}
.treatment__list > li:last-child{
    margin: 0;
    padding: 0;
    border: none;
}
.treatment__list_img {
    text-align: center;
    padding: 0 20px;
    min-width: 90px;
}
@media only screen and (max-width: 767px) {
    .treatment__list_img img{
        margin: 0 0 20px;
    }
    .icon_shield{
        width: auto;
        height: 33px;
    }
    .icon_courtesy{
        width: auto;
        height: 33px;
    }
    .icon_psychiatry{
        width: auto;
        height: 34px;
    }
    .icon_psychiatry{
        width: auto;
        height: 35px;
    }
    .icon_care{
        width: auto;
        height: 36px;
    }
}
.treatment__list_ttl {
    font-weight: bold;
    color: var(--blue);
    margin: 0 0 10px;
    font-size: 16px;
}
@media only screen and (max-width: 767px) {
    .treatment__list_ttl {
        text-align: center;
    }
}
.treatment__list_txt {
    font-size: 15px;
    color: var(--gray);
}
@media only screen and (max-width: 767px) {
    .treatment__list_txt {
        font-size: 14px;
    }
}
.price__column {
    display: flex;
    gap: 0 60px;
}
@media only screen and (max-width: 767px) {
    .price__column{
        display: block;
    }
}
.price__column_box01 {
    width: 530px;
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 50px;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .price__column_box01{
        width: 100%;
        margin: 0 0 60px;
        border-radius: var(--radius-sp);
    }
}
.price__column_box02 {
    width: 530px;
}
@media only screen and (max-width: 767px) {
    .price__column_box02{
        width: 100%;
    }
}
.price__table {
    margin: 0 0 30px;
}
.price__table > li {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}
.price__table > li:first-child {
    border-top: 1px solid var(--border-color);
}
.price__table_box01 {
    padding: 0 0 0 40px;
    flex: 1;
}
@media only screen and (max-width: 767px) {
    .price__table_box01 {
        padding: 0 0 0 20px;
    }
}
.price__table_ttl {
    font-weight: 700;
    font-size: 16px;
}
@media only screen and (max-width: 767px) {
    .price__table_ttl {
        font-size: 14px;
    }
}
.price__table_note {
    font-weight: 500;
    font-size: 13px;
    color: var(--gray);
}
@media only screen and (max-width: 767px) {
    .price__table_note {
        font-size: 9px;
    }
}
.price__table_box02 {
    font-size: 20px;
    width: 34%;
    text-align: center;
    color: var(--orange);
    /* padding: 0 40px 0 60px; */
    line-height: 1;
    border-left: 1px solid var(--border-color);
}
@media only screen and (max-width: 767px) {
    .price__table_box02 {
        padding: 0 0;
    }
}
.price__table_txt01 {
    letter-spacing: var(--number-spacing);
    font-family: var(--font-family-sans-serif);
    font-size: 20px;
    font-weight: 600;
}
@media only screen and (max-width: 767px) {
    .price__table_txt01 {
        font-size: 16px;
    }
}
.price__table_txt02 {
    font-size: 16px;
    font-weight: 700;
}
@media only screen and (max-width: 767px) {
    .price__table_txt02 {
        font-size: 14px;
    }
}
/* 医師紹介 */
.doctor__body {
    width: 1120px;
    margin: 0 auto 100px;
}
@media only screen and (max-width: 767px) {
    .doctor__body{
        width: 100%;
    }
}
.doctor__box {
    display: flex;
}
@media only screen and (max-width: 767px) {
    .doctor__box{
        display: block;
    }
}
.doctor__box_img {
    width: 483px;
}
@media only screen and (max-width: 767px) {
    .doctor__box_img {
        width: 100%;
        padding: 0 0 0 40px;
    }
}
.doctor__career {
    flex: 1;
    margin: 0 0 0 60px;
    padding: 20px 0 0;
}
@media only screen and (max-width: 767px) {
    .doctor__career {
        display: block;
        margin: 0 0;
        padding: 0;
    }
}
@media only screen and (max-width: 767px) {
    .doctor__career_box_wrap{
        position: relative;
        background: var(--white);
        margin: -60px 0 20px 80px;
        padding: 20px;
        border-radius: 20px 0 0 0;
    }
}
.doctor__career_box {
    border-top: 1px solid #D9D9D9;
    margin: -10px 0 0;
    padding: 30px 0 0;
}
@media only screen and (max-width: 767px) {
    .doctor__career_box {
        margin: -20px 0 0;
    }
}
.doctor__career_box_in {
    display: flex;
    gap: 0 40px;
}
@media only screen and (max-width: 767px) {
    .doctor__career_box_in{
        display: block;
    }
}
.doctor__career_list {
    margin: 0 0 10px;
}
.doctor__career_list > li {
    font-size: 15px;
    color: var(--gray);
}
@media only screen and (max-width: 767px) {
    .doctor__career_list > li {
        font-size: 12px;
    }
}
.doctor__message {
    background: var(--white);
    border-radius: var(--radius);
    padding: 60px 0 60px 60px;
    margin: 20px 0 0 -180px;
}
@media only screen and (max-width: 767px) {
    .doctor__message{
        padding: 0 20px;
        margin: 0 0 100px;
        border-radius: var(--radius-sp);
    }
}
.doctor__message_txt {
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 30px;
}
@media only screen and (max-width: 767px) {
    .doctor__message_txt {
        font-size: 14px;
    }
}
.doctor__detail {
    margin: 0 0 0 60px;
}
@media only screen and (max-width: 767px) {
    .doctor__detail {
        margin: 0 20px;
        display: block;
    }
}
.doctor__detail_list {
    display: flex;
    flex-wrap : wrap;
    gap: 40px 0;
}
@media only screen and (max-width: 767px) {
    .doctor__detail_list {
        gap: 20px 0;
    }
}
.doctor__detail_list > li {
    width: 50%;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 767px) {
    .doctor__detail_list > li{
        width: 100%;
    }
}
.doctor__detail_box {
    flex: 1;
    margin: 0 0 0 20px;
    color: var(--gray);
}
@media only screen and (max-width: 767px) {
    .doctor__detail_box {
        color: var(--black);
    }
}
.doctor__detail_ttl {
    font-size: 15px;
}
@media only screen and (max-width: 767px) {
    .doctor__detail_ttl {
        font-size: 14px;
    }
}
.doctor__detail_txt {
    font-size: 14px;
}
@media only screen and (max-width: 767px) {
    .doctor__detail_txt {
        font-size: 13px;
    }
}
.doctor__detail_name {
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 4px;
}
@media only screen and (max-width: 767px) {
    .doctor__detail_name {
        font-size: 18px;
    }
}
@media only screen and (max-width: 767px) {
    .doctor__detail_img {
        width: 168px;
    }
}
/* クリニック紹介 */
.hour__body {
    width: 1120px;
    margin: 0 auto 100px;
    display: flex;
    gap: 0 25px;
}
@media only screen and (max-width: 767px) {
    .hour__body{
        width: 100%;
        display: block;
    }
}
.hour__list_wrap {
    width: 780px;
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 40px 40px;
}
@media only screen and (max-width: 767px) {
    .hour__list_wrap{
        width: 100%;
        margin: 0 0 20px;
        padding: 20px 40px;
        border-radius: var(--radius-sp);
    }
}
.hour__box {
    width: 314px;
    padding: 30px 20px;
    background: var(--bg-light-blue);
    border-radius: var(--radius);
}
@media only screen and (max-width: 767px) {
    .hour__box {
        width: 100%;
        height: auto;
        position: relative;
        padding: 40px 20px;
        border-radius: var(--radius-sp);
    }
}
.hour__list-pc {
    display: flex;
    justify-content: center;
    gap: 0 70px;
    border-top: 1px solid #D9D9D9;
    margin: 24px 0 0;
    padding: 24px 0 0;
}
.hour__list-pc > li:first-child{
    width: 430px;
}
@media only screen and (max-width: 767px) {
    .hour__list-pc{
        display: none;
    }
}
.hour__list {
    display: flex;
    justify-content: center;
    gap: 0 45px;
}
@media only screen and (max-width: 767px) {
    .hour__list {
        display: block;
    }
    .hour__list > li {
        display: flex;
        align-items: center;
    }
}
.hour__list_line{
    display: none;
}
@media only screen and (max-width: 767px) {
    .hour__list_line {
        display: flex;
        align-items: center;
        font-size: 16px;
        width: auto;
        border-left: 1px solid #D9D9D9;
        padding: 0 0 0 40px;
        margin: 0 0 0 40px;
        flex: 1;
        min-height: 70px;
    }
}
.hour__list_time {
    text-align: center;
    color: var(--blue);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: var(--number-spacing);
    font-family: var(--font-family-sans-serif);
}
@media only screen and (max-width: 767px) {
    .hour__list_time {
        font-size: 16px;
        justify-content: center;
    }
}
.hour__list_txt {
    text-align: center;
    color: var(--orange);
    font-size: 16px;
    font-weight: 700;
}
@media only screen and (max-width: 767px) {
    .hour__list_txt {
        font-size: 16px;
        justify-content: center
    }
}
.hour__day {
    background-color: #C7DCEB;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    text-align: center;
    line-height: 54px;
    font-weight: bold;
    color: var(--blue);
}
.hour__day.holiday {
    background: #F9E4C6;
    color: var(--orange);
}
.hour__box_ttl {
    color: var(--blue);
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 14px;
}
.hour__box_note {
    text-align: center;
    font-size: 12px;
}
.hour__box_note span{
    font-size: 13px;
    font-weight: bold;
}
.hour__box_in {
    text-align: center;
    margin: 0 0 14px;
}

.partners__box_in {
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}
@media only screen and (max-width: 767px) {
    .partners__box_in {
        display: none;
    }
}
.partners__list > li {
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 0 rgba(255,255,255,0.1);
}
@media only screen and (max-width: 767px) {
    .partners__list > li {
        display: block;
        border: none;
        padding: 0;
        margin: 0 0 60px;
    }
}
.partners__list_box {
    border-right: 1px solid var(--border-color);
    padding: 0 20px 0 42px;
}
@media only screen and (max-width: 767px) {
    .partners__list_box {
        font-size: 14px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        /* gap: 0 20px; */
        padding: 0 0 20px;
        margin: 20px 0;
    }
}
.partners__list_ttl {
    display: none;
}
@media only screen and (max-width: 767px) {
    .partners__list_ttl {
        font-size: 14px;
        display: flex;
        width: 30%;
        padding: 0 0 0 10px;
        border-right: 1px solid var(--border-color);
    }
}
@media only screen and (max-width: 767px) {
    .partners__list_txt {
        font-size: 14px;
        flex: 1;
        padding: 0 0 0 10px;
    }
}
.partners__list_txt_tel {
    letter-spacing: var(--number-spacing);
    font-family: var(--font-family-sans-serif);
    font-weight: 600;
    font-size: 20px;
}
@media only screen and (max-width: 767px) {
    .partners__list_txt_tel {
        font-size: 16px;
    }
}
.partners__list_box.name {
    width: 384px;
}
@media only screen and (max-width: 767px) {
    .partners__list_box.name {
        width: 100%;
    }
}
.partners__list_box.subject {
    width: 185px;
}
@media only screen and (max-width: 767px) {
    .partners__list_box.subject {
        width: 100%;
    }
}
.partners__list_box.address {
    width: 313px;
}
@media only screen and (max-width: 767px) {
    .partners__list_box.address {
        width: 100%;
    }
}
.partners__list_box.tel {
    width: 238px;
    border-right: none;
}
@media only screen and (max-width: 767px) {
    .partners__list_box.tel {
        width: 100%;
    }
}


.promise {
    width: 1120px;
    margin: 0 auto 100px;
}
@media only screen and (max-width: 767px) {
    .promise {
        display: block;
        width: 100%;
        padding: 0 20px;
    }
}
.promise__box {
    width: 100%;
    padding: 30px 60px 30px 90px;
    background: #F3F8FC;
    border-radius: var(--radius);
}
@media only screen and (max-width: 767px) {
    .promise__box {
        padding: 60px 20px 50px;
        border-radius: var(--radius-sp);
    }
}
.promise__list > li {
    position: relative;
    margin: 0 0 30px;
}
@media only screen and (max-width: 767px) {
    .promise__list > li {
        margin: 0 0 60px;
    }
}
.promise__list > li:last-child {
    margin: 0;
}
.promise__step {
    background:var(--white);
    border-radius: var(--radius);
    padding: 24px 20px 24px 90px;
    flex: 1;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 767px) {
    .promise__step {
        display: block;
        background-position: 50% 20%;
        padding: 50px 20px 20px;
        margin: 0 0;
        border-radius: var(--radius-sp);
    }
}
.promise__step_box {
    border-left: 1px solid var(--border-color);
    margin: 0 0 0 60px;
    padding: 0 0 0 60px;
}
@media only screen and (max-width: 767px) {
    .promise__step_box {
        border: none;
        margin: 0;
        padding: 0;
    }
}
.promise__step_ttl {
    color: var(--blue);
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 10px;
}
@media only screen and (max-width: 767px) {
    .promise__step_ttl {
        font-size: 14px;
        text-align: center;
        margin: 0 0 10px;
    }
}
.promise__step_txt {
    color: var(--gray);
    font-size: 16px;
}
@media only screen and (max-width: 767px) {
    .promise__step_txt {
        font-size: 13px;
    }
}
.promise__box_step {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
    letter-spacing: var(--number-spacing);
    font-family: var(--font-family-sans-serif);
    font-size: 16px;
    background-color: var(--blue);
    border-radius: 50%;
    width: 54px;
    height: 54px;
    text-align: center;
    line-height: 54px;
    color: var(--white);
}
@media only screen and (max-width: 767px) {
    .promise__box_step {
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}
.promise__step_icon{
    min-width: 46px;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .promise__step_icon {
        margin: 0 0 20px;
    }
}
.step01 .promise__step_icon{
    text-align: right;
}
@media only screen and (max-width: 767px) {
    .step01 .promise__step_icon{
        text-align: center;
    }
}
.insta {
    width: 900px;
    background: var(--bg-gray);
    border-radius: var(--radius);
    margin: 0 auto 100px;
    padding:40px 20px;
}
@media only screen and (max-width: 767px) {
    .insta {
        width: auto;
        margin: 0 20px 100px;
        padding:40px 40px;
        border-radius: var(--radius-sp);
    }
}
.insta__body {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media only screen and (max-width: 767px) {
    .insta__body {
        display: block;
    }
}
.insta__box_wrap {
    display: flex;
    align-items: center;
    gap: 0 40px;
    margin: 0 0 0 40px;
    padding: 0 0 0 40px;
    border-left: 1px solid var(--border-color);
}
@media only screen and (max-width: 767px) {
    .insta__box_wrap {
        display: block;
        margin: 0;
        padding: 0;
        border: none;
        text-align: center;
    }
    .insta__box {
        margin: 0 0 30px;
    }
}
@media only screen and (max-width: 767px) {
    .insta__logo {
        margin: 0 auto 20px;
    }
}
.insta__link a {
    background: var(--orange);
    border-radius: 30px;
    display: flex;
    padding: 10px 20px;
    align-items: center;
}
.insta__link_txt {
    margin: 0 auto;
    padding: 0 34px;
    color: var(--white);
    background: url(../img/common/icon_arrow_white.png) no-repeat 90% 50% var(--orange);
    background-size: 16px auto;
}
.insta__box_ttl {
    font-size: 30px;
    line-height: 1;
    font-weight: 600;
    font-family: var(--font-family-sans-serif);
    letter-spacing: var(--en-spacing);
}
.insta__box_txt {
    font-size: 14px;
    font-family: var(--font-family-sans-serif);
    letter-spacing: var(--en-spacing);
}


@media only screen and (max-width: 767px) {
    .access__box01 {
        margin: 0 0 20px;
    }
}
@media only screen and (max-width: 767px) {
    .access__box02 {
        margin: 0 0 20px;
    }
}
/* 診察内容 */
.enhancement {
    width: 1120px;
    margin: 70px auto 100px;
}
@media only screen and (max-width: 767px) {
    .enhancement {
        display: block;
        width: 100%;
        margin: 40px auto 100px;
        padding: 0 20px;
    }
}
.enhancement__ttl {
    font-weight: 700;
    font-size: 24px;
    margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
    .enhancement__ttl {
        font-size: 20px;
    }
}
.enhancement__txt {
    font-size: 16px;
    margin: 0 0 10px;
}
@media only screen and (max-width: 767px) {
    .enhancement__txt {
        font-size: 14px;
    }
}
.enhancement__list {
    list-style-type: disc;
    color: var(--gray);
    font-size: 16px;
    padding: 0 0 0 20px;
}
@media only screen and (max-width: 767px) {
    .enhancement__list {
        font-size: 14px;
    }
}
.treatment__txt_note {
    text-decoration: underline;
}
.treatment__txt_note:hover {
    text-decoration: none;
}

.cooperation-box {
    margin-top: 80px;
}

.cooperation-text {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 16px;
}

.cooperation__box_in {
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 20px 0;

    border-bottom: 1px solid var(--border-color);
}
@media only screen and (max-width: 767px) {
    .cooperation__box_in {
        display: none;
    }
}
.cooperation__list > li {
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.1);
}
@media only screen and (max-width: 767px) {
    .cooperation__list > li {
        display: block;
        border: none;
        padding: 0;
        margin: 0;
    }
}
.cooperation__list_box {
    padding: 0 20px 0 42px;
}
@media only screen and (max-width: 767px) {
    .cooperation__list_box {
        border-right: none;
        display: flex;
        align-items: center;
        padding: 20px 0 ;
        margin: 0;
    }
}
.cooperation__list_ttl {
    display: none;
}
@media only screen and (max-width: 767px) {
    .cooperation__list_ttl {
        font-size: 14px;
        display: flex;
        width: 30%;
        padding: 0 0 0 10px;
        border-right: 1px solid var(--border-color);
    }
}
@media only screen and (max-width: 767px) {
    .cooperation__list_txt {
        font-size: 14px;
        flex: 1;
        padding: 0 0 0 10px;
    }
}
.cooperation__list_txt_tel {
    letter-spacing: var(--number-spacing);
    font-family: var(--font-family-sans-serif);
    font-weight: 600;
    font-size: 20px;
}
@media only screen and (max-width: 767px) {
    .cooperation__list_txt_tel {
        font-size: 16px;
    }
}
.cooperation__list_box.type {
    width: 384px;
}

.cooperation__list_box.name {
    position: relative;
    width: 100%;
    border-left: 1px solid var(--border-color);
}
@media only screen and (max-width: 767px) {
    .cooperation__list_box.name {
        width: 100%;
        border-left: none;
        padding-left: 20px;
        border-bottom: 1px solid var(--border-color);
    }
}

/* Add this new rule */
.cooperation__list li:not(:first-child) .cooperation__list_box.type:empty {
    border-bottom: none;
}

@media only screen and (max-width: 767px) {
    .cooperation__list li:not(:first-child) .cooperation__list_box.type:empty {
        display: none;
        border-bottom: 1px solid var(--border-color);
    }
}

/* Add this rule to draw a line above category groups with spacing */
.cooperation__list li.category-divider {
    border-bottom: 1px solid var(--border-color);/* add padding-bottom to separate the line from the text */
}

@media only screen and (max-width: 767px) {
    .cooperation__list li.category-divider {
        border-bottom: none;
    }
}

.cooperation-border-wrapper {
    padding: 0 !important;
}
.cooperation__list_box.border {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

@media only screen and (max-width: 767px) {
    .cooperation-border-wrapper {
        padding: 0 !important;
        display: none !important;
    }
}
