@charset "UTF-8";
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
figure {
    margin: 0;
    padding: 0;
}

img {
    border: 0;
    vertical-align: bottom;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

@font-face {
    font-family: 'noto sans';
    src: url("../fonts/NotoSansCJKjp-Regular.woff") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: 'noto sans bold';
    src: url("../fonts/NotoSansJP-Bold.woff") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url("../fonts/Oswald-Bold.ttf") format("truetype");
    font-display: swap;
}


/* html
------------------------------------------------- */

html {
    overflow-y: scroll;
    height: 100%;
    scroll-behavior: smooth;
}


/* body
------------------------------------------------- */

body {
    width: 100%;
    height: 100%;
    color: #333;
    font-size: 16px;
    font-family: 'noto sans';
    line-height: 1.6;
    letter-spacing: 0.05em;
    _display: inline;
    _zoom: 1;
}

body .pc {
    display: block;
}

body .sp {
    display: none;
}

@media (min-device-width: 641px) and (max-device-width: 1024px) {
    body {
        min-width: 1024px;
    }
}

@media (max-width: 640px) {
    body {
        min-width: 320px;
        max-width: 640px;
        font-size: 12px;
    }
    body img {
        width: 100%;
        height: auto;
    }
    body .pc {
        display: none;
    }
    body .sp {
        display: block;
    }
}

.wrap {
    overflow: hidden;
}


/* wrapper
------------------------------------------------- */

#wrapper {
    width: 100%;
    height: 100%;
    min-height: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    position: relative;
}


/* header
------------------------------------------------- */

.header {
    background: #fff;
    max-width: 1920px;
    margin: 0 auto;
}

.header__inner {
    position: relative;
}

.header__inner--logo {
    width: 300px;
    float: left;
    margin: 25px 0 0 20px;
}

.header__inner--logo img {
    width: 100%;
    height: auto;
}

.header__inner--nav {
    position: absolute;
    top: 0;
    right: 370px;
    /*width: 880px;*/
}

.header__inner--nav nav ul {
    display: flex;
    gap: 2.5em;
    align-items: center;
    height: 115px;
}

.header__inner--nav nav ul li {
    float: left;
    /*margin: 0 25px;*/
}

.header__inner--nav nav ul li a {
    display: block;
    padding: 10px 0;
    text-align: center;
    font-family: 'noto sans bold';
    line-height: 1.4;
    -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;
}

.header__inner--nav nav ul li a:hover {
    color: #01a33e;
    text-decoration: none;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    -o-transition: .5s;
    -ms-transition: .5s;
    transition: .5s;
}


/*.header__inner--nav nav ul li:first-child {
          padding: 40px 0; }
        .header__inner--nav nav ul li:nth-child(n+2):nth-child(-n+4) {
          padding: 28px 0; }
        .header__inner--nav nav ul li:nth-child(n+5):nth-child(-n+7) {
          padding: 40px 0; }*/

.header__inner--contact {
    width: 370px;
    float: right;
}

.header__inner--contact .tel a {
    display: block;
    pointer-events: none;
    background: #ec6182;
    width: 300px;
    min-height: 115px;
    padding: 0 0 0 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-family: 'noto sans bold';
    line-height: 1.2;
    position: relative;
}

.header__inner--contact .tel a span.txt {
    font-size: 14px;
}

.header__inner--contact .tel a span.closed {
    display: block;
    font-size: 14px;
    line-height: 2.0;
}

.header__inner--contact .tel a:before {
    content: "";
    position: absolute;
    top: 25px;
    left: 15px;
    background: url("../img/common/icon_tel.png") no-repeat center center;
    width: 74px;
    height: 68px;
}

@media (min-width: 641px) and (max-width: 1670px) {
    .header__inner--logo {
        width: 180px;
        margin: 20px 0 0 5px;
    }
    .header__inner--nav {
        right: 300px;
        /*width: 50%;*/
    }
    .header__inner--nav nav ul {
        height: 90px;
        gap: 1em;
    }
    .header__inner--nav nav ul li {
        /*margin: 0 2%;*/
    }
    .header__inner--nav nav ul li a {
        padding: 10px 0;
        font-size: 1.0vw;
    }
    .header__inner--nav nav ul li a:hover {
        color: #01a33e;
    }
    .header__inner--nav nav ul li:first-child {
        padding: 24px 0;
    }
    .header__inner--nav nav ul li:nth-child(n+2):nth-child(-n+4) {
        padding: 15px 0;
    }
    .header__inner--nav nav ul li:nth-child(n+5):nth-child(-n+7) {
        padding: 24px 0;
    }
    .header__inner--contact {
        width: 300px;
    }
    .header__inner--contact .tel a {
        width: 250px;
        min-height: 80px;
        padding: 5px 0 5px 50px;
        font-size: 20px;
    }
    .header__inner--contact .tel a span {
        font-size: 14px;
    }
    .header__inner--contact .tel a:before {
        top: 23px;
        left: 15px;
        background-size: cover;
        width: 40px;
        height: 37px;
    }
}

@media (max-width: 640px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }
    .header__inner {
        width: 100%;
        padding: 0;
    }
    .header__inner--logo {
        width: 40%;
        margin: 3% 0 3% 3%;
    }
    .header__inner--nav {
        top: 97%;
        right: 0;
        width: 100%;
    }
    .header__inner--nav nav {
        display: none;
        background: #5cb531;
        width: 80%;
        height: calc(100vh - 70px);
        margin: 0 auto;
        padding: 10% 10%;
        overflow-y: auto;
    }
    .header__inner--nav nav ul {
        display: block;
        margin-bottom: 0;
    }
    .header__inner--nav nav ul li {
        float: none;
        margin: 0 0 3%;
        padding: 0;
    }
    .header__inner--nav nav ul li:first-child {
        padding: 0;
    }
    .header__inner--nav nav ul li:nth-child(n+2):nth-child(-n+4) {
        padding: 0;
    }
    .header__inner--nav nav ul li:nth-child(n+5):nth-child(-n+8) {
        padding: 0;
    }
    .header__inner--nav nav ul li:last-child {
        margin: 0;
    }
    .header__inner--nav nav ul li a {
        padding-left: 15px;
        text-align: left;
        color: #fff;
        font-size: 14px;
        position: relative;
    }
    .header__inner--nav nav ul li a:before {
        content: "";
        position: absolute;
        top: 38%;
        left: 0;
        background: url("../img/common/icon_arrow_sp.png") no-repeat center center;
        background-size: cover;
        width: 8px;
        height: 8px;
    }
    .header__inner--nav nav ul li a:hover {
        color: #fff;
    }
    .header__inner--contact {
        display: none;
    }
    .header__inner--spmenu {
        width: 30%;
        float: right;
    }
    .header__inner--spmenu li:first-child {
        width: 50%;
        float: left;
    }
    .header__inner--spmenu li:last-child {
        width: 50%;
        float: right;
    }
    .header__inner--spmenu li:last-child #panel-btn #panel-btn-icon {
        display: block;
        background: url("../img/common/btn_menu_sp.png") no-repeat center center;
        background-size: cover;
        width: 100%;
        height: 100%;
        padding: 34% 0;
        position: relative;
        text-indent: -9999px;
        transition: 0.3s;
    }
    .header__inner--spmenu li:last-child #panel-btn #panel-btn-icon.close {
        background: url("../img/common/btn_menu_close_sp.png") no-repeat center center;
        background-size: cover;
        transition: 0.3s;
    }
}


/* mv
------------------------------------------------- */

.mv {
    background: url("../img/top/bg_mv.jpg") no-repeat center top;
    max-width: 1920px;
    min-height: 853px;
    margin: 0 auto;
}

.mv__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.mv__inner--catch {
    padding-top: 50px;
}

.mv__inner--schedule {
    position: absolute;
    top: 605px;
    right: 0;
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    width: 640px;
    padding: 30px 30px 25px;
}

.mv__inner--schedule .table_sche {
    width: 100%;
    margin-bottom: 10px;
}

.mv__inner--schedule .table_sche th {
    background: #01a33e;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-family: 'noto sans bold';
}

.mv__inner--schedule .table_sche th:first-child {
    width: 190px;
}

.mv__inner--schedule .table_sche th:nth-child(2n) {
    background: #22ad3a;
}

.mv__inner--schedule .table_sche td {
    border-right: 1px solid #8d8d8d;
    border-bottom: 1px solid #8d8d8d;
    padding: 12px 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
}

.mv__inner--schedule .table_sche td:last-child {
    border-right: none;
}

.mv__inner--schedule .table_sche td span {
    color: #fe7700;
    font-size: 14px;
}

.mv__inner--schedule .table_sche td i {
    display: block;
    height: 20px;
    line-height: 1;
}

.mv__inner--schedule .table_sche td i.icon1 {
    background: url("../img/common/icon_circle1.png") no-repeat center center;
    background-size: 17px 17px;
}

.mv__inner--schedule .table_sche td i.icon2 {
    background: url("../img/common/icon_circle2.png") no-repeat center center;
    background-size: 17px 17px;
}

.mv__inner--schedule .table_sche td i.icon3 {
    background: url("../img/common/icon_batsu.png") no-repeat center center;
    background-size: 17px 17px;
}

.mv__inner--schedule .caution {
    color: #ee7800;
    font-size: 14px;
}

@media (min-width: 641px) and (max-width: 1024px) {
    .mv {
        background-size: cover;
        min-height: 600px;
    }
    .mv__inner--catch {
        width: 18%;
        padding: 5% 0 5% 3%;
    }
    .mv__inner--catch img {
        width: 100%;
        height: auto;
    }
    .mv__inner--schedule {
        top: 400px;
        right: 10px;
        width: 500px;
        padding: 15px 15px;
    }
}

@media (max-width: 640px) {
    .mv {
        background-size: cover;
        min-height: 0;
        margin: 15% auto 0;
    }
    .mv__inner {
        max-width: 94%;
    }
    .mv__inner--catch {
        width: 28%;
        padding: 5% 0 10%;
    }
    .mv__inner--schedule {
        top: 92%;
        right: 2%;
        width: 90%;
        padding: 3% 3%;
    }
    .mv__inner--schedule .table_sche {
        width: 100%;
    }
    .mv__inner--schedule .table_sche th {
        padding: 2% 0;
        font-size: 13px;
    }
    .mv__inner--schedule .table_sche th:first-child {
        width: 35%;
    }
    .mv__inner--schedule .table_sche td {
        padding: 2% 0;
        font-size: 13px;
        line-height: 1.2;
    }
    .mv__inner--schedule .table_sche td span {
        font-size: 11px;
    }
    .mv__inner--schedule .table_sche td i {
        display: block;
        height: 12px;
    }
    .mv__inner--schedule .table_sche td i.icon1 {
        background-size: 12px 12px;
    }
    .mv__inner--schedule .table_sche td i.icon2 {
        background-size: 12px 12px;
    }
    .mv__inner--schedule .table_sche td i.icon3 {
        background-size: 12px 12px;
    }
    .mv__inner--schedule .caution {
        font-size: 11px;
    }
}

.mvlow {
    background: url("../img/common/bg_mv_low.jpg") no-repeat center top;
    max-width: 1920px;
    min-height: 252px;
    margin: 0 auto;
}

.mvlow__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.mvlow__inner h2 {
    background: url("../img/common/img_ttl_bar_w.png") no-repeat center bottom;
    padding: 80px 0 20px;
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-family: 'noto sans bold';
}

@media (max-width: 640px) {
    .mvlow {
        background-size: cover;
        min-height: 0;
        margin: 15% auto 0;
        padding: 10% 0;
    }
    .mvlow__inner {
        max-width: 94%;
    }
    .mvlow__inner h2 {
        background: url("../img/common/img_ttl_bar_w.png") no-repeat center bottom;
        padding: 0 0 3%;
        font-size: 20px;
    }
}

.cta_map {
    max-width: 1920px;
    margin: 0 auto 100px;
}

.cta_map iframe {
    width: 100%;
    height: 440px;
}

@media (max-width: 640px) {
    .cta_map {
        margin: 0 auto 10%;
    }
    .cta_map iframe {
        height: 300px;
    }
}

* html #pageTop {
    position: absolute;
}

#pageTop {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 2%;
    bottom: 2%;
    z-index: 900;
}

@media (max-width: 640px) {
    * html #pageTopSp {
        position: absolute;
    }
    #pageTop {
        position: fixed;
        width: 10%;
        height: auto;
        right: 3%;
        bottom: 2%;
        z-index: 9997;
    }
}


/* footer
------------------------------------------------- */

.footer {
    max-width: 1920px;
    margin: 0 auto;
}

.footer__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 70px;
    overflow: hidden;
    position: relative;
}

.footer__inner--profile {
    width: 350px;
    float: left;
}

.footer__inner--profile h1 {
    width: 300px;
    margin: 0 auto 30px;
}

.footer__inner--profile h1 img {
    width: 100%;
    height: auto;
}

.footer__inner--profile .table_foot {
    width: 100%;
    margin-bottom: 20px;
}

.footer__inner--profile .table_foot th {
    width: 85px;
    padding-top: 3px;
    font-size: 10px;
    vertical-align: top;
}

.footer__inner--profile .table_foot td {
    padding: 3px 3px;
    font-size: 10px;
}

.footer__inner--profile .table_foot td.week {
    text-align: center;
}

.footer__inner--nav {
    display: flex;
    flex-wrap: wrap;
    width: 570px;
    float: right;
}

.footer__inner--nav .dental {
    width: 100%;
    margin-bottom: 20px;
}

.footer__inner--nav .dental .name {
    margin-bottom: 5px;
    font-size: 14px;
    font-family: 'noto sans bold';
}

.footer__inner--nav .dental .add {
    margin-bottom: 10px;
    font-size: 14px;
    font-family: 'noto sans bold';
}

.footer__inner--nav .dental .shitei {
    margin-bottom: 8px;
    color: #5cb531;
    font-size: 14px;
    font-family: 'noto sans bold';
}

.footer__inner--nav .dental .tel a {
    pointer-events: none;
    padding-left: 42px;
    font-size: 30px;
    font-family: 'noto sans bold';
    position: relative;
}

.footer__inner--nav .dental .tel a:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    background: url("../img/common/icon_tel_f.png") no-repeat center center;
    width: 31px;
    height: 29px;
}

.footer__inner--nav ul {
    width: 33.3333%;
}

.footer__inner--nav ul.ttlno {
    padding-top: 30px;
}

.footer__inner--nav ul li {
    margin-bottom: 10px;
    font-size: 12px;
}

.footer__inner--nav ul li a {
    display: block;
    font-size: 12px;
    -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;
}

.footer__inner--nav ul li a:hover {
    color: #01a33e;
    text-decoration: none;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    -o-transition: .5s;
    -ms-transition: .5s;
    transition: .5s;
}

.footer .copyright {
    clear: both;
    background: #7fbe26;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-size: 12px;
}

@media (min-width: 641px) and (max-width: 1024px) {
    .footer__inner {
        max-width: 96%;
        padding: 0 0 60px;
    }
    .footer__inner--profile {
        width: 40%;
    }
    .footer__inner--profile h1 {
        width: 80%;
    }
    .footer__inner--nav {
        width: 55%;
    }
}

@media (max-width: 640px) {
    .footer__inner {
        max-width: 96%;
        padding: 0 0 8%;
    }
    .footer__inner--profile {
        width: 100%;
        float: none;
        margin-bottom: 5%;
    }
    .footer__inner--profile h1 {
        width: 60%;
        margin: 0 auto 4%;
    }
    .footer__inner--profile .table_foot {
        width: 80%;
        margin: 0 auto 3%;
    }
    .footer__inner--profile .table_foot th {
        width: 28%;
        font-size: 9px;
    }
    .footer__inner--profile .table_foot td {
        padding: 2px 2px;
        font-size: 9px;
    }
    .footer__inner--nav {
        display: block;
        width: 100%;
        float: none;
    }
    .footer__inner--nav .dental {
        width: 100%;
        margin-bottom: 4%;
    }
    .footer__inner--nav .dental .name {
        display: none;
    }
    .footer__inner--nav .dental .add {
        margin-bottom: 2%;
        text-align: center;
        font-size: 13px;
    }
    .footer__inner--nav .dental .shitei {
        margin-bottom: 2%;
        text-align: center;
        font-size: 13px;
    }
    .footer__inner--nav .dental .tel {
        text-align: center;
    }
    .footer__inner--nav .dental .tel a {
        pointer-events: auto;
    }
    .footer__inner--nav .dental .tel a:hover {
        text-decoration: none;
    }
    .footer__inner--nav ul {
        width: 100%;
        margin-bottom: 5%;
        overflow: hidden;
    }
    .footer__inner--nav ul.ttlno {
        border-top: 1px solid #ccc;
        margin-bottom: 0;
        padding-top: 0;
    }
    .footer__inner--nav ul.ttlno li:first-child {
        border-left: 1px solid #ccc;
    }
    .footer__inner--nav ul.ttlno li:nth-child(2n) {
        border-left: none;
    }
    .footer__inner--nav ul li {
        border-right: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        width: 49.5%;
        float: left;
        margin-bottom: 0;
        font-size: 12px;
    }
    .footer__inner--nav ul li:nth-child(2n) {
        border-left: 1px solid #ccc;
    }
    .footer__inner--nav ul li.ttl {
        background: #eee;
        width: 100%;
        padding: 2% 0;
        text-align: center;
    }
    .footer__inner--nav ul li a {
        display: block;
        padding: 4% 5%;
        font-size: 12px;
        -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;
    }
    .footer__inner--nav ul li a:hover {
        color: #01a33e;
        text-decoration: none;
        -moz-transition: .5s;
        -webkit-transition: .5s;
        -o-transition: .5s;
        -ms-transition: .5s;
        transition: .5s;
    }
    .footer .copyright {
        padding: 3% 0;
        font-size: 11px;
    }
}


/* link
------------------------------------------------- */

a:link,
a:visited {
    color: #333;
    text-decoration: none;
}

a:hover,
a:active {
    color: #333;
    text-decoration: underline;
}


/* alpha
------------------------------------------------- */

a.alpha img {
    -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.alpha:hover img {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -moz-transition: .5s;
    -webkit-transition: .5s;
    -o-transition: .5s;
    -ms-transition: .5s;
    transition: .5s;
}


/* clearfix
------------------------------------------------- */

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

@font-face {
    font-family: 'noto sans';
    src: url("../fonts/NotoSansCJKjp-Regular.woff") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: 'noto sans bold';
    src: url("../fonts/NotoSansJP-Bold.woff") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url("../fonts/Oswald-Bold.ttf") format("truetype");
    font-display: swap;
}


/* *******************************************
     トップ
******************************************* */

#top .guide {
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 0 90px;
}

#top .guide__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#top .guide__inner .read {
    margin-bottom: 70px;
    text-align: center;
    font-size: 20px;
    font-family: 'noto sans bold';
}

#top .guide__inner ul {
    display: flex;
    flex-wrap: wrap;
}

#top .guide__inner ul li {
    display: block;
    width: 288px;
    margin-right: 16px;
    position: relative;
}

#top .guide__inner ul li:hover:before {
    top: 4%;
    left: 4%;
}

#top .guide__inner ul li:before {
    content: "";
    display: block;
    position: absolute;
    border: 1px solid #01a33e;
    top: 0;
    left: 0;
    width: 96%;
    height: 96%;
    z-index: -1;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#top .guide__inner ul li:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #d6e9bb;
    width: 96%;
    height: 96%;
    z-index: -2;
}

#top .guide__inner ul li:first-child {
    padding-top: 5px;
    text-align: center;
}

#top .guide__inner ul li:first-child .icon {
    margin-bottom: 15px;
}

#top .guide__inner ul li:first-child h2 {
    background: url("../img/common/img_ttl_bar.png") no-repeat center bottom;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 32px;
    font-family: 'noto sans bold';
}

#top .guide__inner ul li:first-child .btn a {
    display: block;
    background: #5cb531;
    width: 95%;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    -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;
}

#top .guide__inner ul li:first-child .btn a span {
    padding-left: 18px;
    position: relative;
}

#top .guide__inner ul li:first-child .btn a span:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    background: url("../img/common/icon_arrow_btn.png") no-repeat center center;
    width: 9px;
    height: 9px;
}

#top .guide__inner ul li:first-child .btn a:hover {
    background: #76c64b;
    text-decoration: none;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    -o-transition: .5s;
    -ms-transition: .5s;
    transition: .5s;
}

#top .guide__inner ul li:first-child:before {
    display: none;
}

#top .guide__inner ul li:first-child:after {
    display: none;
}

#top .guide__inner ul li:nth-child(4n) {
    margin-right: 0;
}

#top .guide__inner ul li:nth-child(-n+4) {
    margin-bottom: 16px;
}

#top .guide__inner ul li:nth-child(7) a h3 {
    letter-spacing: -0.05em;
}

#top .guide__inner ul li a {
    display: block;
    padding: 30px 0 50px;
    text-align: center;
}

#top .guide__inner ul li a figure {
    margin-bottom: 10px;
}

#top .guide__inner ul li a h3 {
    font-size: 24px;
}

#top .guide__inner ul li a:hover {
    text-decoration: none;
}

@media (min-width: 641px) and (max-width: 1240px) {
    #top .guide__inner {
        max-width: 96%;
        padding: 0;
    }
    #top .guide__inner ul li {
        width: 23.5%;
        margin-right: 2%;
    }
    #top .guide__inner ul li:hover:before {
        top: 0;
        left: 0;
    }
    #top .guide__inner ul li:first-child .btn a:hover {
        background: #5cb531;
    }
    #top .guide__inner ul li a h3 {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    #top .guide {
        padding: 45% 0 6%;
    }
    #top .guide__inner {
        max-width: 96%;
        padding: 0;
    }
    #top .guide__inner .read {
        margin-bottom: 8%;
        font-size: 16px;
    }
    #top .guide__inner ul {
        display: block;
        overflow: hidden;
    }
    #top .guide__inner ul li {
        width: 48%;
        margin: 0 0 4%;
    }
    #top .guide__inner ul li:hover:before {
        top: 0;
        left: 0;
    }
    #top .guide__inner ul li:first-child {
        padding-top: 2%;
        text-align: center;
    }
    #top .guide__inner ul li:first-child .icon {
        width: 25%;
        margin: 0 auto 4%;
    }
    #top .guide__inner ul li:first-child h2 {
        margin-bottom: 8%;
        padding-bottom: 2%;
        font-size: 16px;
    }
    #top .guide__inner ul li:first-child .btn a {
        width: 95%;
        padding: 4% 0;
    }
    #top .guide__inner ul li:first-child .btn a span {
        padding-left: 18px;
    }
    #top .guide__inner ul li:first-child .btn a span:before {
        top: 5px;
        left: 0;
    }
    #top .guide__inner ul li:first-child .btn a:hover {
        background: #5cb531;
    }
    #top .guide__inner ul li:nth-child(odd) {
        clear: both;
        float: left;
    }
    #top .guide__inner ul li:nth-child(even) {
        float: right;
    }
    #top .guide__inner ul li:nth-child(4n) {
        margin: 0 0 4%;
    }
    #top .guide__inner ul li:nth-child(-n+4) {
        margin: 0 0 4%;
    }
    #top .guide__inner ul li a {
        padding: 8% 0 10%;
    }
    #top .guide__inner ul li a figure {
        width: 40%;
        margin: 0 auto 1%;
    }
    #top .guide__inner ul li a h3 {
        font-size: 14px;
    }
}

#top .notice {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 0 90px;
}

#top .notice__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#top .notice__inner .icon {
    margin-bottom: 5px;
    text-align: center;
}

#top .notice__inner h2 {
    background: url("../img/common/img_ttl_bar.png") no-repeat center bottom;
    margin-bottom: 30px;
    padding-bottom: 10px;
    text-align: center;
    font-size: 32px;
    font-family: 'noto sans bold';
}

#top .notice__inner ul li {
    text-indent: -1.0em;
    margin-left: 1.0em;
    margin-bottom: 8px;
    font-size: 18px;
}

@media (min-width: 641px) and (max-width: 1240px) {
    #top .notice {
        padding: 0 0 70px;
    }
    #top .notice__inner {
        max-width: 96%;
        padding: 0;
    }
    #top .notice__inner ul li {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    #top .notice {
        padding: 0 0 8%;
    }
    #top .notice__inner {
        max-width: 96%;
        padding: 0;
    }
    #top .notice__inner .icon {
        width: 15%;
        margin: 0 auto 1%;
    }
    #top .notice__inner h2 {
        margin-bottom: 8%;
        padding-bottom: 2%;
        font-size: 16px;
    }
    #top .notice__inner ul li {
        margin-bottom: 2%;
        font-size: 14px;
    }
}

#top .news {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 0 90px;
}

#top .news__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#top .news__inner .icon {
    margin-bottom: 5px;
    text-align: center;
}

#top .news__inner h2 {
    background: url("../img/common/img_ttl_bar.png") no-repeat center bottom;
    margin-bottom: 30px;
    padding-bottom: 10px;
    text-align: center;
    font-size: 32px;
    font-family: 'noto sans bold';
}

#top .news__inner ul {
    border-top: 1px dashed #666;
}

#top .news__inner ul li {
    border-bottom: 1px dashed #666;
    padding: 15px 0;
    font-size: 18px;
    overflow: hidden;
}

#top .news__inner ul li .date {
    width: 8%;
    float: left;
}

#top .news__inner ul li .title {
    width: 87%;
    float: right;
    color: #5cb531;
}

@media (min-width: 641px) and (max-width: 1240px) {
    #top .news {
        padding: 0 0 70px;
    }
    #top .news__inner {
        max-width: 96%;
        padding: 0;
    }
    #top .news__inner ul li {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    #top .news {
        padding: 0 0 8%;
    }
    #top .news__inner {
        max-width: 96%;
        padding: 0;
    }
    #top .news__inner .icon {
        width: 15%;
        margin: 0 auto 1%;
    }
    #top .news__inner h2 {
        margin-bottom: 8%;
        padding-bottom: 2%;
        font-size: 16px;
    }
    #top .news__inner ul li {
        padding: 3% 0;
        font-size: 14px;
    }
    #top .news__inner ul li .date {
        float: none;
    }
    #top .news__inner ul li .title {
        float: none;
    }
}

#top .office {
    background: url("../img/top/bg_office.jpg") no-repeat center top;
    background-size: cover;
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 0;
}

#top .office__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#top .office__inner h2 {
    background: url("../img/common/img_ttl_bar.png") no-repeat center bottom;
    margin-bottom: 40px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 32px;
    font-family: 'noto sans bold';
}

#top .office__inner h2 span {
    padding: 0 100px;
    position: relative;
}

#top .office__inner h2 span:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/top/icon_ttl_office_l.png") no-repeat center center;
    width: 61px;
    height: 64px;
}

#top .office__inner h2 span:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: url("../img/top/icon_ttl_office_r.png") no-repeat center center;
    width: 72px;
    height: 64px;
}

#top .office__inner .txt {
    margin-bottom: 50px;
    text-align: center;
    font-size: 18px;
    line-height: 2.0;
}

#top .office__inner--menu {
    overflow: hidden;
}

#top .office__inner--menu li {
    border: 2px solid #5cb531;
    width: 31%;
    float: left;
    text-align: center;
    -webkit-transition: background-size .3s ease;
    -o-transition: background-size .3s ease;
    transition: background-size .3s ease;
}

#top .office__inner--menu li:first-child {
    background: url("../img/top/img_office01.jpg") no-repeat center center;
    background-size: 100% auto;
    margin-right: 3%;
}

#top .office__inner--menu li:nth-child(2) {
    background: url("../img/top/img_office02.jpg") no-repeat center center;
    background-size: 100% auto;
}

#top .office__inner--menu li:nth-child(3) {
    background: url("../img/top/img_office03.jpg") no-repeat center center;
    background-size: 100% auto;
    float: right;
}

#top .office__inner--menu li:hover {
    background-size: 105% auto;
}

#top .office__inner--menu li a {
    display: block;
    padding: 70px 0;
}

#top .office__inner--menu li a .box {
    background: rgba(127, 190, 38, 0.8);
    width: 80%;
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
}

#top .office__inner--menu li a .box h3 {
    color: #fff;
    font-size: 30px;
    font-family: 'noto sans bold';
    line-height: 1.4;
}

#top .office__inner--menu li a .box .en {
    color: #fff;
    font-size: 18px;
    font-family: 'Oswald';
}

#top .office__inner--menu li a:hover {
    text-decoration: none;
}

@media (min-width: 641px) and (max-width: 1240px) {
    #top .office__inner {
        max-width: 96%;
        padding: 0;
    }
    #top .office__inner .txt {
        font-size: 16px;
    }
    #top .office__inner--menu li:hover {
        background-size: 100% 100%;
    }
    #top .office__inner--menu li a {
        padding: 60px 0;
    }
    #top .office__inner--menu li a .box h3 {
        font-size: 20px;
    }
    #top .office__inner--menu li a .box .en {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    #top .office {
        padding: 8% 0;
    }
    #top .office__inner {
        max-width: 96%;
        padding: 0;
    }
    #top .office__inner h2 {
        margin-bottom: 6%;
        padding-bottom: 2%;
        font-size: 18px;
    }
    #top .office__inner h2 span {
        padding: 0 60px;
    }
    #top .office__inner h2 span:before {
        background-size: cover;
        width: 40px;
        height: 42px;
    }
    #top .office__inner h2 span:after {
        background-size: cover;
        width: 47px;
        height: 42px;
    }
    #top .office__inner .txt {
        margin-bottom: 8%;
        font-size: 14px;
    }
    #top .office__inner--menu li {
        width: 90%;
        float: none;
    }
    #top .office__inner--menu li:first-child {
        background-size: 100% auto;
        margin: 0 auto 5%;
    }
    #top .office__inner--menu li:nth-child(2) {
        background-size: 100% auto;
        float: none;
        margin: 0 auto 5%;
    }
    #top .office__inner--menu li:nth-child(3) {
        background-size: 100% auto;
        float: none;
        margin: 0 auto;
    }
    #top .office__inner--menu li:hover {
        background-size: 100% auto;
    }
    #top .office__inner--menu li a {
        padding: 8% 0;
    }
    #top .office__inner--menu li a .box {
        width: 60%;
        padding: 3% 0;
    }
    #top .office__inner--menu li a .box h3 {
        font-size: 18px;
    }
    #top .office__inner--menu li a .box .en {
        font-size: 12px;
    }
}

#top .info {
    display: flex;
    background: #36995c;
    max-width: 1920px;
    width: 100%;
    margin: 100px auto;
}

#top .info__map {
    width: 50%;
}

#top .info__map iframe {
    width: 100%;
    height: 440px;
    vertical-align: bottom;
}

#top .info__detail {
    width: 550px;
    margin: 40px 0 0 50px;
    position: relative;
}

#top .info__detail figure {
    position: absolute;
    top: 0;
    right: 0;
}

#top .info__detail .logo {
    width: 280px;
    margin-bottom: 10px;
}

#top .info__detail .logo img {
    width: 100%;
    height: auto;
}

#top .info__detail .tel {
    margin-bottom: 20px;
}

#top .info__detail .tel a {
    pointer-events: none;
    padding-left: 47px;
    color: #fff;
    font-size: 32px;
    font-family: 'noto sans bold';
    position: relative;
}

#top .info__detail .tel a:before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    background: url("../img/common/icon_tel_info.png") no-repeat center center;
    width: 37px;
    height: 35px;
}

#top .info__detail .table_sche {
    width: 100%;
    margin-bottom: 10px;
}

#top .info__detail .table_sche th {
    background: #01a33e;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-family: 'noto sans bold';
}

#top .info__detail .table_sche th:first-child {
    width: 190px;
}

#top .info__detail .table_sche th:nth-child(2n) {
    background: #22ad3a;
}

#top .info__detail .table_sche td {
    border-right: 1px solid #8d8d8d;
    border-bottom: 1px solid #8d8d8d;
    background: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
}

#top .info__detail .table_sche td:last-child {
    border-right: none;
}

#top .info__detail .table_sche td span {
    color: #fe7700;
    font-size: 12px;
}

#top .info__detail .table_sche td i {
    display: block;
    height: 20px;
    line-height: 1;
}

#top .info__detail .table_sche td i.icon1 {
    background: url("../img/common/icon_circle1.png") no-repeat center center;
    background-size: 17px 17px;
}

#top .info__detail .table_sche td i.icon2 {
    background: url("../img/common/icon_circle2.png") no-repeat center center;
    background-size: 17px 17px;
}

#top .info__detail .table_sche td i.icon3 {
    background: url("../img/common/icon_batsu.png") no-repeat center center;
    background-size: 17px 17px;
}

#top .info__detail .caution {
    color: #ff9529;
    font-size: 14px;
}

#top .info__detail p {
    color: #fff;
}

@media (min-width: 641px) and (max-width: 1240px) {
    #top .info {
        margin: 80px auto;
    }
    #top .info__detail {
        width: 46%;
        margin: 0;
        padding: 4% 2% 0;
    }
    #top .info__detail figure {
        width: 30%;
        top: 10%;
        right: 4%;
    }
    #top .info__detail figure img {
        width: 100%;
        height: auto;
    }
    #top .info__detail .logo {
        width: 60%;
        margin-bottom: 10px;
    }
    #top .info__detail .tel {
        margin-bottom: 20px;
    }
}

@media (max-width: 640px) {
    #top .info {
        display: block;
        margin: 10% auto;
    }
    #top .info__map {
        width: 100%;
    }
    #top .info__map iframe {
        height: 300px;
    }
    #top .info__detail {
        width: 90%;
        margin: 0;
        padding: 7% 5%;
    }
    #top .info__detail figure {
        position: relative;
        width: 50%;
        margin: 0 auto 5%;
    }
    #top .info__detail .logo {
        width: 60%;
        margin: 0 auto 2%;
    }
    #top .info__detail .tel {
        margin-bottom: 3%;
        text-align: center;
    }
    #top .info__detail .tel a {
        pointer-events: auto;
    }
    #top .info__detail .tel a:hover {
        text-decoration: none;
    }
    #top .info__detail .table_sche {
        margin-bottom: 3%;
    }
    #top .info__detail .table_sche th {
        padding: 2% 0;
        font-size: 13px;
    }
    #top .info__detail .table_sche th:first-child {
        width: 35%;
    }
    #top .info__detail .table_sche td {
        padding: 2% 0;
        font-size: 13px;
    }
    #top .info__detail .table_sche td span {
        font-size: 11px;
    }
    #top .info__detail .table_sche td i {
        height: 12px;
    }
    #top .info__detail .table_sche td i.icon1 {
        background-size: 12px 12px;
    }
    #top .info__detail .table_sche td i.icon2 {
        background-size: 12px 12px;
    }
    #top .info__detail .table_sche td i.icon3 {
        background-size: 12px 12px;
    }
    #top .info__detail .caution {
        font-size: 11px;
    }
}

@font-face {
    font-family: 'noto sans';
    src: url("../fonts/NotoSansCJKjp-Regular.woff") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: 'noto sans bold';
    src: url("../fonts/NotoSansJP-Bold.woff") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url("../fonts/Oswald-Bold.ttf") format("truetype");
    font-display: swap;
}


/* *******************************************
     医院紹介
******************************************* */

#office .clinic {
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 0 90px;
}

#office .clinic__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#office .clinic__inner--txt01 {
    margin-bottom: 70px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

#office .clinic__inner--block01 {
    width: 1100px;
    margin-left: 100px;
    margin-bottom: 70px;
}

#office .clinic__inner--block01 dl {
    margin-bottom: 10px;
    overflow: hidden;
}

#office .clinic__inner--block01 dl dt {
    width: 48%;
    float: left;
}

#office .clinic__inner--block01 dl dt .logo {
    width: 280px;
    margin-bottom: 15px;
}

#office .clinic__inner--block01 dl dt .logo img {
    width: 100%;
    height: auto;
}

#office .clinic__inner--block01 dl dt .tel {
    margin-bottom: 15px;
}

#office .clinic__inner--block01 dl dt .tel a {
    pointer-events: none;
    padding-left: 47px;
    color: #ea6182;
    font-size: 32px;
    font-family: 'noto sans bold';
    position: relative;
}

#office .clinic__inner--block01 dl dt .tel a:before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    background: url("../img/common/icon_tel_p.png") no-repeat center center;
    width: 36px;
    height: 35px;
}

#office .clinic__inner--block01 dl dt .table_sche {
    width: 100%;
    margin-bottom: 10px;
}

#office .clinic__inner--block01 dl dt .table_sche th {
    background: #01a33e;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-family: 'noto sans bold';
}

#office .clinic__inner--block01 dl dt .table_sche th:first-child {
    width: 190px;
}

#office .clinic__inner--block01 dl dt .table_sche th:nth-child(2n) {
    background: #22ad3a;
}

#office .clinic__inner--block01 dl dt .table_sche td {
    border-right: 1px solid #8d8d8d;
    border-bottom: 1px solid #8d8d8d;
    background: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
}

#office .clinic__inner--block01 dl dt .table_sche td:last-child {
    border-right: none;
}

#office .clinic__inner--block01 dl dt .table_sche td span {
    color: #fe7700;
    font-size: 12px;
}

#office .clinic__inner--block01 dl dt .table_sche td i {
    display: block;
    height: 20px;
    line-height: 1;
}

#office .clinic__inner--block01 dl dt .table_sche td i.icon1 {
    background: url("../img/common/icon_circle1.png") no-repeat center center;
    background-size: 17px 17px;
}

#office .clinic__inner--block01 dl dt .table_sche td i.icon2 {
    background: url("../img/common/icon_circle2.png") no-repeat center center;
    background-size: 17px 17px;
}

#office .clinic__inner--block01 dl dt .table_sche td i.icon3 {
    background: url("../img/common/icon_batsu.png") no-repeat center center;
    background-size: 17px 17px;
}

#office .clinic__inner--block01 dl dd {
    width: 46%;
    float: right;
}

#office .clinic__inner--block01 dl dd img {
    width: 100%;
    height: auto;
}

#office .clinic__inner--block01 .caution {
    color: #ee7800;
    font-size: 14px;
}

#office .clinic__inner--block02 {
    width: 1100px;
    margin-left: 100px;
    margin-bottom: 70px;
}

#office .clinic__inner--block02 dl {
    overflow: hidden;
}

#office .clinic__inner--block02 dl dt {
    width: 46%;
    float: left;
}

#office .clinic__inner--block02 dl dd {
    width: 46%;
    float: right;
}

#office .clinic__inner--block02 dl figure {
    margin-bottom: 10px;
}

#office .clinic__inner--block02 dl figure img {
    width: 100%;
    height: auto;
}

#office .clinic__inner--block02 dl p {
    text-indent: -1.0em;
    margin-left: 1.0em;
}

#office .clinic__inner--txt02 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

#office .clinic__inner--map {
    margin-bottom: 80px;
}

#office .clinic__inner--map img {
    width: 100%;
    height: auto;
}

#office .clinic__inner h3 {
    margin-bottom: 30px;
    text-align: center;
    color: #01a33e;
    font-size: 32px;
    font-family: 'noto sans bold';
}

#office .clinic__inner--block03 {
    display: flex;
    align-items: center;
    background: rgba(127, 190, 38, 0.35);
    margin-bottom: 60px;
}

#office .clinic__inner--block03 figure {
    width: 35%;
}

#office .clinic__inner--block03 figure img {
    width: 100%;
    height: auto;
}

#office .clinic__inner--block03 div {
    width: 59%;
    padding: 0 3%;
    font-size: 18px;
    line-height: 1.8;
}

#office .clinic__inner--block03 div p.ctr {
    margin-top: 10px;
    text-align: center;
    font-family: 'noto sans bold';
}

#office .clinic__inner--block04 h4 {
    background: rgba(127, 190, 38, 0.35);
    margin-bottom: 15px;
    padding: 8px 20px;
    font-size: 20px;
    font-family: 'noto sans bold';
}

#office .clinic__inner--block04 .txt {
    margin-bottom: 50px;
    padding: 0 20px;
    font-size: 18px;
    line-height: 1.8;
}

#office .clinic__inner--block04 .txt.last {
    margin-bottom: 0;
}

#office .clinic__inner--block04 .txt_btm {
    margin-top: 30px;
    text-align: center;
    font-size: 18px;
    font-family: 'noto sans bold';
    line-height: 1.8;
}

@media (min-width: 641px) and (max-width: 1240px) {
    #office .clinic__inner {
        max-width: 96%;
        padding: 0;
    }
    #office .clinic__inner--block01 {
        width: 100%;
        margin-left: 0;
    }
    #office .clinic__inner--block01 dl dt {
        width: 48%;
    }
    #office .clinic__inner--block01 dl dt .logo {
        margin-bottom: 10px;
    }
    #office .clinic__inner--block01 dl dt .tel {
        margin-bottom: 10px;
    }
    #office .clinic__inner--block01 dl dd {
        width: 46%;
    }
    #office .clinic__inner--block02 {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    #office .clinic {
        padding: 8% 0 10%;
    }
    #office .clinic__inner {
        max-width: 96%;
        padding: 0;
    }
    #office .clinic__inner--txt01 {
        margin-bottom: 8%;
        font-size: 14px;
    }
    #office .clinic__inner--block01 {
        width: 100%;
        margin-left: 0;
        margin-bottom: 8%;
    }
    #office .clinic__inner--block01 dl {
        margin-bottom: 2%;
    }
    #office .clinic__inner--block01 dl dt {
        width: 100%;
        float: none;
    }
    #office .clinic__inner--block01 dl dt .logo {
        width: 60%;
        margin: 0 auto 2%;
    }
    #office .clinic__inner--block01 dl dt .tel {
        margin-bottom: 3%;
        text-align: center;
    }
    #office .clinic__inner--block01 dl dt .tel a {
        pointer-events: auto;
    }
    #office .clinic__inner--block01 dl dt .tel a:hover {
        text-decoration: none;
    }
    #office .clinic__inner--block01 dl dt .table_sche {
        margin-bottom: 4%;
    }
    #office .clinic__inner--block01 dl dt .table_sche th {
        padding: 2% 0;
        font-size: 13px;
    }
    #office .clinic__inner--block01 dl dt .table_sche th:first-child {
        width: 35%;
    }
    #office .clinic__inner--block01 dl dt .table_sche td {
        padding: 2% 0;
        font-size: 13px;
    }
    #office .clinic__inner--block01 dl dt .table_sche td span {
        font-size: 11px;
    }
    #office .clinic__inner--block01 dl dt .table_sche td i {
        height: 12px;
    }
    #office .clinic__inner--block01 dl dt .table_sche td i.icon1 {
        background-size: 12px 12px;
    }
    #office .clinic__inner--block01 dl dt .table_sche td i.icon2 {
        background-size: 12px 12px;
    }
    #office .clinic__inner--block01 dl dt .table_sche td i.icon3 {
        background-size: 12px 12px;
    }
    #office .clinic__inner--block01 dl dd {
        width: 100%;
        float: none;
    }
    #office .clinic__inner--block01 .caution {
        font-size: 12px;
    }
    #office .clinic__inner--block02 {
        width: 100%;
        margin-left: 0;
        margin-bottom: 8%;
    }
    #office .clinic__inner--block02 dl dt {
        width: 100%;
        float: none;
        margin-bottom: 6%;
    }
    #office .clinic__inner--block02 dl dd {
        width: 100%;
        float: none;
    }
    #office .clinic__inner--block02 dl figure {
        margin-bottom: 2%;
    }
    #office .clinic__inner--txt02 {
        margin-bottom: 5%;
        font-size: 14px;
    }
    #office .clinic__inner--map {
        margin-bottom: 10%;
    }
    #office .clinic__inner h3 {
        margin-bottom: 2%;
        font-size: 18px;
    }
    #office .clinic__inner--block03 {
        display: block;
        margin-bottom: 8%;
    }
    #office .clinic__inner--block03 figure {
        width: 100%;
    }
    #office .clinic__inner--block03 div {
        width: 94%;
        padding: 3% 3%;
        font-size: 13px;
        line-height: 1.6;
    }
    #office .clinic__inner--block03 div p.ctr {
        margin-top: 3%;
    }
    #office .clinic__inner--block04 h4 {
        margin-bottom: 3%;
        padding: 1% 3%;
        font-size: 16px;
    }
    #office .clinic__inner--block04 .txt {
        margin-bottom: 8%;
        padding: 0 3%;
        font-size: 13px;
        line-height: 1.6;
    }
    #office .clinic__inner--block04 .txt_btm {
        margin-top: 5%;
        font-size: 13px;
        line-height: 1.6;
    }
}


/* *******************************************
     ドクター＆スタッフ紹介
******************************************* */

#office .doctor {
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 0 90px;
}

#office .doctor__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#office .doctor__inner--catch {
    margin-bottom: 30px;
    text-align: center;
    color: #01a33e;
    font-size: 32px;
    font-family: 'noto sans bold';
}

#office .doctor__inner--txt {
    margin-bottom: 40px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

#office .doctor__inner--image {
    text-align: center;
}

#office .doctor__inner--profile {
    background: url("../img/office/bg_doctor.jpg") no-repeat center top;
    background-size: cover;
    margin-bottom: 70px;
    padding: 50px 50px;
    overflow: hidden;
}

#office .doctor__inner--profile .face {
    width: 260px;
    float: left;
    margin-left: 80px;
}

#office .doctor__inner--profile .face img {
    width: 100%;
    height: auto;
}

#office .doctor__inner--profile .box {
    background: rgba(127, 190, 38, 0.85);
    width: 600px;
    float: right;
    padding: 20px 30px;
    color: #fff;
}

#office .doctor__inner--profile .box h3 {
    margin-bottom: 15px;
    font-size: 28px;
    font-family: 'noto sans bold';
}

#office .doctor__inner--profile .box ul li {
    margin-bottom: 5px;
    font-size: 18px;
    font-family: 'noto sans bold';
}

#office .doctor__inner--profile .box ul.coc li {
    display: flex;
    justify-content: space-between;
}
#office .doctor__inner--profile .box ul.coc li .text {
    width: 70%;
}
#office .doctor__inner--profile .box ul.coc li .img {
    width: 25%;
}
#office .doctor__inner--profile .box ul.coc li .img img {
    width: 100%;
    height: auto;
}

#office .doctor__inner--staff .box {
    border: 1px solid #01a33e;
    width: 1118px;
    margin-bottom: 70px;
    padding: 30px 40px;
    position: relative;
}

#office .doctor__inner--staff .box.last {
    margin-bottom: 0;
}

#office .doctor__inner--staff .box:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: rgba(127, 190, 38, 0.85);
    width: 100%;
    height: 100%;
    z-index: -2;
}

#office .doctor__inner--staff .box dl {
    display: flex;
    align-items: center;
}

#office .doctor__inner--staff .box dl dt {
    width: 300px;
    margin-right: 20px;
    text-align: center;
    color: #fff;
    font-size: 28px;
    font-family: 'noto sans bold';
    line-height: 1.2;
}

#office .doctor__inner--staff .box dl dt span {
    font-size: 20px;
}

#office .doctor__inner--staff .box dl dd {
    color: #fff;
    font-family: 'noto sans bold';
}

#office .doctor__inner--staff .box dl dd .uni {
    font-size: 18px;
}

#office .doctor__inner--staff .box dl dd ul li {
    margin-bottom: 5px;
    font-size: 28px;
    overflow: hidden;
}

#office .doctor__inner--staff .box dl dd ul li .name {
    width: 310px;
    float: left;
}

#office .doctor__inner--staff .box dl dd ul li .week {
    float: left;
}

@media (min-width: 641px) and (max-width: 1240px) {
    #office .doctor__inner {
        max-width: 96%;
        padding: 0;
    }
    #office .doctor__inner--profile .face {
        width: 280px;
        float: left;
        margin-left: 20px;
    }
    #office .doctor__inner--profile .box {
        width: 500px;
    }
    #office .doctor__inner--profile .box h3 {
        font-size: 28px;
    }
    #office .doctor__inner--profile .box ul li {
        margin-bottom: 5px;
        font-size: 18px;
    }
    #office .doctor__inner--staff .box {
        width: 94%;
        padding: 30px 3%;
    }
    #office .doctor__inner--staff .box dl dt {
        width: 270px;
        margin-right: 10px;
        font-size: 24px;
    }
    #office .doctor__inner--staff .box dl dt span {
        font-size: 20px;
    }
    #office .doctor__inner--staff .box dl dd .uni {
        font-size: 18px;
    }
    #office .doctor__inner--staff .box dl dd ul li {
        margin-bottom: 5px;
        font-size: 24px;
    }
    #office .doctor__inner--staff .box dl dd ul li .name {
        width: 160px;
    }
}

@media (max-width: 640px) {
    #office .doctor {
        padding: 8% 0 10%;
    }
    #office .doctor__inner {
        max-width: 96%;
        padding: 0;
    }
    #office .doctor__inner--catch {
        margin-bottom: 4%;
        font-size: 18px;
    }
    #office .doctor__inner--txt {
        margin-bottom: 8%;
        font-size: 14px;
    }
    #office .doctor__inner--image {
        width: 70%;
        margin: 0 auto;
    }
    #office .doctor__inner--profile {
        background-size: cover;
        margin-bottom: 10%;
        padding: 5% 5%;
    }
    #office .doctor__inner--profile .face {
        width: 30%;
        float: none;
        margin: 0 auto 5%;
    }
    #office .doctor__inner--profile .box {
        width: 94%;
        float: none;
        padding: 3% 3%;
    }
    #office .doctor__inner--profile .box h3 {
        margin-bottom: 3%;
        font-size: 18px;
    }
    #office .doctor__inner--profile .box ul li {
        margin-bottom: 2%;
        font-size: 13px;
    }
    #office .doctor__inner--staff .box {
        border: none;
        background: rgba(127, 190, 38, 0.85);
        width: 94%;
        margin-bottom: 5%;
        padding: 3% 3%;
    }
    #office .doctor__inner--staff .box:after {
        display: none;
    }
    #office .doctor__inner--staff .box dl {
        display: block;
    }
    #office .doctor__inner--staff .box dl dt {
        width: 100%;
        margin: 0 0 3%;
        text-align: left;
        font-size: 18px;
    }
    #office .doctor__inner--staff .box dl dt span {
        font-size: 14px;
    }
    #office .doctor__inner--staff .box dl dd .uni {
        font-size: 14px;
    }
    #office .doctor__inner--staff .box dl dd ul li {
        margin-bottom: 1%;
        font-size: 14px;
    }
    #office .doctor__inner--staff .box dl dd ul li .name {
        width: 45%;
    }
    #office .doctor__inner--staff .box dl dd ul li .week {
        width: 50%;
    }
}


/* *******************************************
     ドクター＆スタッフ紹介
******************************************* */

#office .technology {
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 0 90px;
}

#office .technology__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#office .technology__inner h3 {
    margin-bottom: 30px;
    text-align: center;
    color: #01a33e;
    font-size: 32px;
    font-family: 'noto sans bold';
}

#office .technology__inner--box {
    background: rgba(127, 190, 38, 0.35);
    margin-bottom: 50px;
    overflow: hidden;
}

#office .technology__inner--box.last {
    margin-bottom: 0;
}

#office .technology__inner--box figure {
    width: 42%;
    float: right;
}

#office .technology__inner--box figure img {
    width: 100%;
    height: auto;
}

#office .technology__inner--box figure+div {
    width: 52%;
    float: left;
    padding: 25px 3% 0;
    font-size: 18px;
    line-height: 2.0;
}

#office .technology__inner--box figure+div span {
    color: #01a33e;
    font-family: 'noto sans bold';
}

@media (min-width: 641px) and (max-width: 1240px) {
    #office .technology__inner {
        max-width: 96%;
        padding: 0;
    }
    #office .technology__inner--box figure {
        width: 42%;
    }
    #office .technology__inner--box figure+div {
        width: 52%;
        padding: 20px 3% 0;
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 640px) {
    #office .technology {
        padding: 8% 0 10%;
    }
    #office .technology__inner {
        max-width: 96%;
        padding: 0;
    }
    #office .technology__inner h3 {
        margin-bottom: 2%;
        font-size: 18px;
    }
    #office .technology__inner--box {
        margin-bottom: 8%;
    }
    #office .technology__inner--box figure {
        width: 100%;
        float: none;
    }
    #office .technology__inner--box figure+div {
        width: 94%;
        float: none;
        padding: 5% 3%;
        font-size: 13px;
        line-height: 1.6;
    }
}

@font-face {
    font-family: 'noto sans';
    src: url("../fonts/NotoSansCJKjp-Regular.woff") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: 'noto sans bold';
    src: url("../fonts/NotoSansJP-Bold.woff") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url("../fonts/Oswald-Bold.ttf") format("truetype");
    font-display: swap;
}


/* *******************************************
     診療内容＆診療時間
******************************************* */

#medical .guide {
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 0 90px;
}

#medical .guide__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#medical .guide__inner--menu {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

#medical .guide__inner--menu li {
    display: block;
    width: 288px;
    margin-right: 16px;
    position: relative;
}

#medical .guide__inner--menu li:hover:before {
    top: 4%;
    left: 4%;
}

#medical .guide__inner--menu li:before {
    content: "";
    display: block;
    position: absolute;
    border: 1px solid #01a33e;
    top: 0;
    left: 0;
    width: 96%;
    height: 96%;
    z-index: -1;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#medical .guide__inner--menu li:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #d6e9bb;
    width: 96%;
    height: 96%;
    z-index: -2;
}

#medical .guide__inner--menu li:first-child {
    padding-top: 30px;
    text-align: center;
}

#medical .guide__inner--menu li:first-child .icon {
    margin-bottom: 15px;
}

#medical .guide__inner--menu li:first-child h2 {
    background: url("../img/common/img_ttl_bar.png") no-repeat center bottom;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 32px;
    font-family: 'noto sans bold';
}

#medical .guide__inner--menu li:first-child:before {
    display: none;
}

#medical .guide__inner--menu li:first-child:after {
    display: none;
}

#medical .guide__inner--menu li:nth-child(4n) {
    margin-right: 0;
}

#medical .guide__inner--menu li:nth-child(-n+4) {
    margin-bottom: 16px;
}

#medical .guide__inner--menu li:nth-child(7) a h3 {
    letter-spacing: -0.05em;
}

#medical .guide__inner--menu li a {
    display: block;
    padding: 30px 0 50px;
    text-align: center;
}

#medical .guide__inner--menu li a figure {
    margin-bottom: 10px;
}

#medical .guide__inner--menu li a h3 {
    font-size: 24px;
}

#medical .guide__inner--menu li a:hover {
    text-decoration: none;
}

#medical .guide__inner--block dl {
    margin-bottom: 30px;
    overflow: hidden;
}

#medical .guide__inner--block dl dt {
    width: 48%;
    float: left;
}

#medical .guide__inner--block dl dt img {
    width: 100%;
    height: auto;
}

#medical .guide__inner--block dl dd {
    width: 48%;
    float: right;
    font-size: 18px;
    line-height: 2.0;
}

#medical .guide__inner--block .kome {
    margin-bottom: 60px;
}

#medical .guide__inner--block .kome li {
    text-indent: -1.0em;
    margin-left: 1.0em;
    color: #e60012;
}

#medical .guide__inner--box {
    border: 1px solid #01a33e;
    background: #fff;
    padding: 50px;
    position: relative;
}

#medical .guide__inner--box:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: rgba(127, 190, 38, 0.35);
    width: 100%;
    height: 100%;
    z-index: -2;
}

#medical .guide__inner--box .table_sche {
    width: 100%;
    margin-bottom: 20px;
}

#medical .guide__inner--box .table_sche th {
    background: #01a33e;
    padding: 15px 0;
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-family: 'noto sans bold';
}

#medical .guide__inner--box .table_sche th:first-child {
    width: 300px;
}

#medical .guide__inner--box .table_sche th:nth-child(2n) {
    background: #22ad3a;
}

#medical .guide__inner--box .table_sche td {
    border-right: 1.5px solid #666464;
    border-bottom: 1.5px solid #666464;
    background: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 30px;
    line-height: 1.2;
}

#medical .guide__inner--box .table_sche td:last-child {
    border-right: none;
}

#medical .guide__inner--box .table_sche td span {
    color: #fe7700;
    font-size: 12px;
}

#medical .guide__inner--box .table_sche td i {
    display: block;
    height: 20px;
    line-height: 1;
}

#medical .guide__inner--box .table_sche td i.icon1 {
    background: url("../img/common/icon_circle1.png") no-repeat center center;
    background-size: 20px 20px;
}

#medical .guide__inner--box .table_sche td i.icon2 {
    background: url("../img/common/icon_circle2.png") no-repeat center center;
    background-size: 20px 20px;
}

#medical .guide__inner--box .table_sche td i.icon3 {
    background: url("../img/common/icon_batsu.png") no-repeat center center;
    background-size: 20px 20px;
}

#medical .guide__inner--box .caution {
    color: #ee7800;
    font-size: 20px;
    font-family: 'noto sans bold';
}

@media (min-width: 641px) and (max-width: 1240px) {
    #medical .guide__inner {
        max-width: 96%;
        padding: 0;
    }
    #medical .guide__inner--menu li {
        width: 23.5%;
        margin-right: 2%;
    }
    #medical .guide__inner--menu li:hover:before {
        top: 0;
        left: 0;
    }
    #medical .guide__inner--menu li a h3 {
        font-size: 20px;
    }
    #medical .guide__inner--block dl dd {
        line-height: 1.8;
    }
    #medical .guide__inner--box .caution {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    #medical .guide {
        padding: 8% 0 10%;
    }
    #medical .guide__inner {
        max-width: 96%;
        padding: 0;
    }
    #medical .guide__inner--menu {
        display: block;
        overflow: hidden;
        margin-bottom: 5%;
    }
    #medical .guide__inner--menu li {
        width: 48%;
        margin: 0 0 4%;
    }
    #medical .guide__inner--menu li:hover:before {
        top: 0;
        left: 0;
    }
    #medical .guide__inner--menu li:first-child {
        padding-top: 5%;
    }
    #medical .guide__inner--menu li:first-child .icon {
        width: 25%;
        margin: 0 auto 4%;
    }
    #medical .guide__inner--menu li:first-child h2 {
        margin-bottom: 8%;
        padding-bottom: 2%;
        font-size: 16px;
    }
    #medical .guide__inner--menu li:nth-child(odd) {
        clear: both;
        float: left;
    }
    #medical .guide__inner--menu li:nth-child(even) {
        float: right;
    }
    #medical .guide__inner--menu li:nth-child(4n) {
        margin: 0 0 4%;
    }
    #medical .guide__inner--menu li:nth-child(-n+4) {
        margin: 0 0 4%;
    }
    #medical .guide__inner--menu li a {
        padding: 8% 0 10%;
    }
    #medical .guide__inner--menu li a figure {
        width: 40%;
        margin: 0 auto 1%;
    }
    #medical .guide__inner--menu li a h3 {
        font-size: 14px;
    }
    #medical .guide__inner--block dl {
        margin-bottom: 4%;
    }
    #medical .guide__inner--block dl dt {
        width: 100%;
        float: none;
        margin-bottom: 5%;
    }
    #medical .guide__inner--block dl dd {
        width: 100%;
        float: none;
        font-size: 14px;
        line-height: 1.6;
    }
    #medical .guide__inner--block .kome {
        margin-bottom: 8%;
    }
    #medical .guide__inner--box {
        padding: 5% 3%;
    }
    #medical .guide__inner--box:after {
        bottom: -5px;
        right: -5px;
    }
    #medical .guide__inner--box .table_sche {
        margin-bottom: 3%;
    }
    #medical .guide__inner--box .table_sche th {
        padding: 3% 0;
        font-size: 13px;
    }
    #medical .guide__inner--box .table_sche th:first-child {
        width: 35%;
    }
    #medical .guide__inner--box .table_sche td {
        border-right: 1px solid #666464;
        border-bottom: 1px solid #666464;
        padding: 3% 0;
        font-size: 13px;
        line-height: 1.2;
    }
    #medical .guide__inner--box .table_sche td span {
        font-size: 11px;
    }
    #medical .guide__inner--box .table_sche td i {
        height: 12px;
    }
    #medical .guide__inner--box .table_sche td i.icon1 {
        background-size: 12px 12px;
    }
    #medical .guide__inner--box .table_sche td i.icon2 {
        background-size: 12px 12px;
    }
    #medical .guide__inner--box .table_sche td i.icon3 {
        background-size: 12px 12px;
    }
    #medical .guide__inner--box .caution {
        font-size: 12px;
    }
}

/* 20241216追加　審美LP */

.lp_pc,.lp_sp{
    display: flex;
  justify-content: center; 
  align-items: center; 
  padding-top: 20px;
  width: 100%;
    height: auto;
}

  @media screen and (max-width: 768px) {
    .lp_pc {
      display: none; 
    }
    .lp_sp {
      display: flex; 
    }
  }
 
  @media screen and (min-width: 769px) {
    .lp_sp {
      display: none; 
    }
    .lp_pc {
      display: flex;
    }
  }