/***************
基本設定
***************/

html {
    font-size: 62.5%;
}

body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

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

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

.imgarea img{
    width:100%;
}

.txt.last{
    margin-bottom:0 !important;
}

.indent{
    padding-left:1em;
    text-indent:-1em;
}

.underline{
    text-decoration: underline;
}

.bold{
    font-weight:bold;
}

.red{
    color:#982039;
}

.notel{
    pointer-events: none;
    color:#000000;
}



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

    html {
        overflow-x: hidden;
    }

    body {
        font-size: 1.6rem;
        overflow-x: hidden;
    }


    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    .flex {
        flex-wrap: wrap;
    }

    .scroll {
        overflow: auto;
    }


}

/********************
ヘッダー
********************/

header {
    width: 100%;
    padding: 1.04vw 0;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    background: #ffffff;
}

.kasou header {
    position: relative;
}

header .inner {
    width: 83.333vw;
    margin: 0 auto;
    padding: 0 1.04vw;
    box-sizing: border-box;

}

header .title-logo {
    display: flex;
    align-items: center;
}

header .title-logo img {
    width: 17.1875vw;
}

header .info {
    padding-top: 0.7vw;
}

header .tel {
    color: #0a8006;
    font-weight: bold;
    display: block;
    margin-bottom: 0.8vw;
    font-size: 0.9375vw
}

header .tel span {
    font-size: 1.5625vw;
}

header .fax {
    font-weight: bold;
    color: #0a8006;
    margin-bottom: 0.26vw;
    font-size: 0.9375vw;
}

header .address {
    font-weight: bold;
    font-size: 0.9375vw
}


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

    header {
        padding: 12.48px 0;
        min-width: 1200px;
    }

    header .inner {
        width: 1000px;
        padding: 0 12.48px;

    }

    header .title-logo img {
        width: 206.25px;
    }

    header .info {
        padding-top: 8.407px;
    }

    header .tel {
        margin-bottom: 9.608px;
        font-size: 10.875px;
    }

    header .tel span {
        font-size: 18.125px;
    }

    header .fax {
        font-weight: bold;
        color: #0a8006;
        margin-bottom: 3px;
        font-size: 10.875px;

    }

    header .address {
        font-weight: bold;
        font-size: 10.875px;

    }
}

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

    header {
        min-width: inherit;
        position: relative;
        padding: 0;
        background: rgba(255, 255, 255, 0.9);
    }

    header .inner {
        width: 100%;
        padding: 15px;
    }

    header .title-logo img {
        width: 70%;
    }

    header .info {
        display: none;
    }

    
}

/********************
メニュー
********************/


.navi-wrap {
    width: 41.66vw;
}

.sub-menu {
    display: flex;
    align-items: end;
    margin-bottom: 0.52vw;
}

.sub-menu-item a {
    color: #0a8006;
    font-size: 0.9375vw;
    font-weight: 600;
    transition: 0.3s;
}

.sub-menu-item a:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.sub-menu-item:before {
    content: "";
    display: inline-block;
    margin-right: 0.26vw;
}

.sub-menu01:before {
    background: url(../images/icon-submenu-01.png) center center no-repeat;
    background-size: contain;
    width: 1.40vw;
    height: 1.51vw;
}

.sub-menu02:before {
    background: url(../images/icon-submenu-02.png) center center no-repeat;
    background-size: contain;
    width: 1.35vw;
    height: 1.25vw;
}

.sub-menu03:before {
    background: url(../images/icon-submenu-03.png) center center no-repeat;
    background-size: contain;
    width: 0.88vw;
    height: 1.30vw;
}

.sub-menu04:before {
    background: url(../images/icon-submenu-04.png) center center no-repeat;
    background-size: contain;
    width: 1.666vw;
    height: 1.14vw;
}

.sub-menu05:before {
    background: url(../images/icon-submenu-05.png) center center no-repeat;
    background-size: contain;
    width: 0.72vw;
    height: 1.25vw;
}

.sub-menu06:before {
    background: url(../images/icon-submenu-06.png) center center no-repeat;
    background-size: contain;
    width: 1.666vw;
    height: 1.145vw;
}

.main-menu li a {
    font-size: 0.9375vw;
    display: block;
    color: #000000;
    font-weight: bold;
    padding: 0.78vw 0;
    background: linear-gradient(to right,
            #0a8006,
            #0a8006 50%,
            transparent 50%,
            transparent) 100% 0 / 200% 100%;
    transition: background-position 0.3s;
}

.main-menu li a:hover {
    background-position: 0 0;
    color: #ffffff;
    transition: 0.3s;
}

.main-menu li {
    border-right: 1px solid #000000;
    text-align: center;
    width: 20%;
    margin: 0 auto;
}

.main-menu li:first-child {
    border-left: 1px solid #000000;
}

.navi-fixed {
    width: 100%;
    min-width: 83.34vw;
    background: rgba(10, 128, 6, 0.9);
    z-index: 100;
    position: fixed;
    top: 0;
    display: none;
}

.navi-fixed-list {
    width: 62.5vw;
    margin: 0 auto;
}

.navi-fixed-list a {
    display: block;
    color: #ffffff;
    padding: 1.04166vw 0.520vw;
    font-weight: bold;
    font-size: 0.9375vw;
}

.navi-fixed-list a:hover {
    background: #325e2c;
}


@media screen and (max-width: 1200px) {
    .navi-wrap {
        width: 500px;
    }

    .sub-menu {
        margin-bottom: 6.24px;
    }

    .sub-menu-item a {
        font-size: 11.25px;
    }

    .sub-menu-item:before {
        content: "";
        display: inline-block;
        margin-right: 3.12px;
    }

    .sub-menu01:before {
        width: 16.8px;
        height: 18.11px;
    }

    .sub-menu02:before {
        width: 16.19px;
        height: 15px;
    }

    .sub-menu03:before {
        width: 10.55px;
        height: 15.99px;
    }

    .sub-menu04:before {
        width: 19.98px;
        height: 13.67px;
    }

    .sub-menu05:before {
        width: 8.63px;
        height: 15px;
    }

    .sub-menu06:before {
        width: 19.98px;
        height: 13.73px;
    }

    .main-menu li a {
        font-size: 11.25px;
        padding: 9.36px 0;
    }

    .main-menu li a:hover {
        background-position: 0 0;
        color: #ffffff;
        transition: 0.3s;
    }

    .navi-fixed {
        min-width: 1200px;
    }

    .navi-fixed-list {
        width: 750px;
    }

    .navi-fixed-list a {
        padding: 12.4999px 6.24px;
        font-size: 11.25px;
    }

}

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

    .navi-wrap {
        position: fixed;
        z-index: 999;
        top: 0;
        right: -120%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.9);
        transition: all 0.6s;
    }

    .navi-wrap.panelactive {
        right: 0;
    }

    .menu-wrap {
        display: flex;
        flex-wrap: wrap;
        position: relative;
        top: 5%;
    }

    .sub-menu {
        display: flex;
        text-align: center;
        margin: 0 auto;
        align-items: inherit;
        order: 2;
    }

    .sub-menu li {
        width: 100%;
    }

    .sub-menu-item:before {
        display: none;
    }

    .sub-menu-item a {
        color: #000000;
        font-weight: bold;
        display: block;
        transition: inherit;
        padding: 15px 0;
        font-size: 18px;
    }

    .sub-menu-item a:hover {
        opacity: inherit;
        transition: inherit;
    }

    .main-menu {
        order: 1;
        margin: 0 auto;
    }

    .main-menu li {
        border-right: none;
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }

    .main-menu li a {
        font-size: 1.8rem;
        display: block;
        color: #000000;
        font-weight: bold;
        padding: 15px 0;
        background: inherit;
        transition: inherit;
    }

    .main-menu li a:hover {
        background-position: inherit;
        color: inherit;
        transition: inherit;
    }

    .main-menu li:first-child {
        border-left: none;
    }

    .menu-logo {
        order: -1;
        margin: 0 auto 20px;
    }

    .menu-logo img {
        width: 220px;
    }

    .openbtn {
        position: fixed;
        z-index: 9999;
        top: 15px;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height: 50px;
        background: #0a8006;
        border-radius: 5px;
    }

    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .navi-fixed {
        display: none !important;
    }
}


/********************
フッター
********************/
footer {
    min-width: 1200px;
}

footer .inner {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    box-sizing: border-box;
}

footer .footer-logo {
    margin-bottom: 40px;
}

footer .footer-content-wrap {
    display: flex;
    margin-bottom: 30px;
}

footer .footer-info {
    border-right: 2px solid #e1e1e1;
    line-height: 1.5;
    padding-right: 30px;
}

footer .footer-info .address {
    margin-bottom: 10px;
    display:flex;
}

footer .footer-info .address-map img{
    width:45px;
    position: relative;
    top:8px;
}

footer .footer-info .tel {
    font-weight: bold;
}

footer .footer-info span {
    font-size: 3rem;
}



footer .footer-time {
    padding: 0 30px;
}

footer .footer-time-content {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

footer .footer-time-content .title {
    font-weight: bold;
    width: 100px;
    text-align: center;
    padding: 10px 0;
    margin-right: 16px;
    color: #ffffff;
}

footer .footer-time-content .title.green {
    background: #325e2c;
}

footer .footer-time-content .title.red {
    background: #982039;
}

footer .footer-time-content .txt {
    line-height: 1.5;
}

footer .footer-info a {
    color: #000000;
}

footer .footer-bg {
    background: url(../images/footer-image.png) center right no-repeat;
    background-size: contain;
    width: 408px;
    height: 374px;
    position: absolute;
    right: 0;
    top: -50px;
}

footer .copyright {
    background: #0a8006;
    min-width: 1200px;
    color: #ffffff;
    text-align: center;
    padding: 30px 0;
}

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

    footer .copyright {
        background: #0a8006;
        min-width: 1200px;
        color: #ffffff;
        text-align: center;
        padding: 30px 20px;
    }
    

}



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

    footer {
        margin-bottom: 64px;
        min-width: inherit;
    }

    footer .inner {
        width: 95%;
    }

    footer .footer-logo {
        margin-bottom: 20px;
    }

    footer .footer-logo img {
        width: 80%;
    }

    footer .footer-content-wrap {
        display: block;
        margin-bottom: 0px;
    }

    footer .footer-time-content {
        margin-bottom: 18.75px;
        flex-wrap: wrap;
    }

    footer .footer-time-content .title {
        width: 100%;
        padding: 8px 0;
        margin-right: 0px;
        margin-bottom: 8px;
    }


    footer .footer-info {
        border-right: none;
        padding-right: 0px;
        margin-bottom: 30px;
    }

    footer .footer-info span {
        font-size: 2.2rem;
    }

    footer .footer-time {
        padding: 0;
        border-right: none;
        margin-bottom: 50px;
    }

    footer .footer-time-content:last-child {
        margin-bottom: 0px;
    }

    footer .footer-bg {
        display: none;
        background: url(../images/footer-image.png) center right no-repeat;
        background-size: contain;
        width: 40vw;
        height: 35vw;
        position: absolute;
        z-index: -1;
        top: 27vw;
    }

    footer .copyright {
        min-width: inherit;
        padding: 20px 0;
    }


}

/********************
フロート
********************/
@media screen and (max-width: 640px) {

    .float {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        background: rgba(50, 94, 44, 0.9);
        padding: 10px;
        box-sizing: border-box;
        z-index: 4;
    }

    .float .flex {
        width: 95%;
        margin: 0 auto;
        flex-wrap: inherit;
        align-items: center;
    }

    .float .tel {
        width: 90%
    }

    .float .tel img {
        width: 90%;
    }

    .float .access {
        border-left: 1px solid #ffffff;
        padding-left: 30px;
    }

    .float .access img {
        width: 70%;
    }
}

/********************
下層基本設定
********************/

/* 2カラム */
.kasou .main-wrap{
    min-width:1200px;
}

/* 2カラム */
.kasou .main-wrap .inner{
    width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* 2カラム */
.kasou .main-wrap{
    margin-bottom:100px;
}

/* 2カラム */
.kasou .main-wrap .main{
    width:860px;
}

/* 2カラム */
.kasou .main-wrap .side-menu{
    width:280px;
}

/* 1カラム */
.kasou .main.sec .inner{
    width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.kasou .sec{
    margin-bottom:80px;
    padding-top:70px;
    margin-top:-70px;
    position: relative;
}



.kasou .sec h2.title{
    font-size:2.7rem;
    color:#0a8006;
    display:flex;
    align-items: center;
    border-bottom:2px solid #0a8006;
    padding-bottom:8px;
    margin-bottom:40px;
}

.kasou .sec .txt{
    line-height:1.6;
    margin-bottom:20px;
}



.kasou .sec h2.title:before{
    content:"";
    display:inline-block;
    background:url(../images/icon-midashi.png) center center no-repeat;
    background-size:contain;
    width:40px;
    height:40px;
    margin-right:10px;
}

.kasou .sec h3.title{
    color:#0a8006;
    font-size:2.4rem;
    border-left:7px solid #0a8006;
    padding-left:10px;
    margin-bottom:30px;
}


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

/* 2カラム */
.kasou .main-wrap{
    min-width:inherit;
}

/* 2カラム */
.kasou .main-wrap .inner{
    width:95%;
    padding:0;
}

/* 2カラム */
.kasou .main-wrap{
    margin-bottom:50px;
}

/* 2カラム */
.kasou .main-wrap .main{
    width:100%;
}

/* 2カラム */
.kasou .main-wrap .side-menu{
    width:100%;
}

/* 1カラム */
.kasou .main.sec .inner{
    width:95%;
    padding:0;
}

.kasou .sec{
    margin-bottom:50px;
    padding-top:70px;
    margin-top:-70px;
}

.kasou .sec h2.title{
    font-size:2.2rem;
    margin-bottom:24px;
    line-height:1.3;
}

.kasou .sec .txt{
    line-height:1.8;
    margin-bottom:20px;
}

.kasou .sec h2.title:before{
    width:30px;
    height:30px;
    margin-right:5px;
}

.kasou .sec h3.title{
    font-size:2.0rem;
    margin-bottom:20px;
    line-height:1.5;
}


    
}



/*******************
下層ビジュアル
*******************/
.kasou .visual{
    min-width:1200px;
    width:100%;
    height:18.22916vw;
    position: relative;
    margin-bottom:20px;
}

.kasou .visual .title{
    font-size:1.875vw;
    width:30vw;
    padding:0.78125vw 0;
    background:rgba(10,128,6,0.8);
    color:#ffffff; 
    position: absolute;
    left:0;
    right:0;
    top:50%;
    transform: translateY(-50%);
    margin:0 auto;
    text-align:center;
}

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

    .kasou .visual{
        min-width:1200px;
        height:218.73px;
    }
        
    .kasou .visual .title{
        font-size:22.5px;
        width:360px;
        padding:9.375px 0;
    }


}

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

    .kasou .visual {
        min-width: inherit;
        width: 100%;
        height: 200px;
    }

    .kasou .visual .title {
        font-size: 2.2rem;
        width: 70%;
        padding: 15px 0;
    }    

}

/*******************
パンくずリスト
*******************/
.kasou .bread-crumb-list{
    margin-bottom:50px;
    min-width:1200px;
    position: relative;
    z-index: 9;
}

.kasou .bread-crumb-list .inner{
    width:1200px;
    margin:0 auto;
    padding:0 20px;
    box-sizing: border-box;
}

.kasou .bread-crumb-list .list{
    display:flex;
}

.kasou .bread-crumb-list .list li{
    margin-right:20px;
    font-size:1.6rem;
    color:#777777;
}

.kasou .bread-crumb-list .list li:first-child:after{
    content:">";
    display:inline-block;
    color:#777777;
    margin-left:20px;
}

.kasou .bread-crumb-list .list li:nth-child(3):before{
    content:">";
    display:inline-block;
    color:#777777;
    margin-right:20px;
}

.kasou .bread-crumb-list .list li a{
    color:#777777;
}

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

    .kasou .bread-crumb-list {
        margin-bottom: 30px;
        min-width: inherit;
    }

    .kasou .bread-crumb-list .list li{
        margin-right:10px;
        font-size:1.4rem;
    }
    
    .kasou .bread-crumb-list .list li:first-child:after{
        margin-left:10px;
        font-size:1.4rem;
    }


}

/********************
サイドメニュー
********************/

.kasou .main-wrap .side-menu h3.title{
    background:#0a8006;
    color:#ffffff;
    text-align:center;
    padding:20px 0;
    font-size:2.0rem;
    border-radius: 5px;
}

.kasou .side-menu-inner{
    position: sticky;
    top: 80px;
}

.kasou02 .side-menu .main-list{
    border-bottom:1px solid #d8d8d8;
}

.kasou02 .side-menu .main-list > li{
    font-weight:bold;
    font-size:1.8rem;
    cursor: pointer;
}

.kasou02 .side-menu .main-list li span{
    position: relative;
    display:block;
    padding:25px 0;
}

.kasou02 .side-menu .main-list li span:before{
    content:"";
    display:inline-block;
    background:#000000;
    width:14px;
    height:1px;
    position: absolute;
    top:50%;
    right:10px;
}

.kasou02 .side-menu .main-list li span:after{
    content:"";
    display:inline-block;
    background:#000000;
    width: 14px;
    height:1px;
    transform: rotate(90deg);
    transition: 0.3s;
    opacity: 1;
    position: absolute;
    top:50%;
    right:10px;    
}

.kasou02 .side-menu .main-list li span.active:after {
    opacity: 0;
    transform: rotate(180deg);
    transition: .3s;
}

.kasou02 .side-menu .sub-list{
    margin-bottom:20px;
    display:none;
}

.kasou02 .side-menu .sub-list li{
    font-weight:500;
    font-size:1.8rem;
    padding:5px 0;
    padding-left:1.2em;
    text-indent:-0.5em;
    line-height:1.5;
}

.kasou02 .side-menu .sub-list li:before{
    content:">";
    display:inline-block;
    padding-right:5px;
    
}

.kasou02 .side-menu .sub-list li a{
    color:#000000;
}

.kasou02 .main-list.rihabiri .sub-list li:first-child{
    letter-spacing: -0.05em;
}

.kasou02 .main-list.injection .sub-list li:first-child{
    letter-spacing: -0.05em;
}

.kasou02 .main-list.injection .sub-list li:nth-child(2){
    letter-spacing: -0.05em;
}

.kasou02 .main-list.sas .sub-list li:first-child{
    letter-spacing: -0.1em;
}

.kasou02 .main-list.sas .sub-list li:nth-child(2){
    letter-spacing: -0.1em;
}

.kasou01 .side-menu .sub-list li{
    border-bottom: 1px solid #d8d8d8;
}

.kasou01 .side-menu .sub-list li a{
    color:#000000;
    display:flex;
    align-items: center;
    padding:20px 10px;
    position: relative;
}

.kasou01 .side-menu .sub-list li a:after{
    content:"";
    display:inline-block;
    background:url(../images/icon-yajirushi-green.svg) center center no-repeat;
    background-size:contain;
    width:10px;
    height:11px;
    position: absolute;
    right:10px;
    transition: 0.3s;
}

.kasou01 .side-menu .sub-list li a:hover:after{
    right:0px;
    transition: 0.3s;
}

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


}

/********************
医師紹介
********************/
.kasou .doctor-list li{
    width:20%;
    padding:10px 10px 15px 10px;
    box-shadow: 0px 0px 0.52vw 0px rgba(0,0,0,0.2);
    text-align:center;
    position: relative;
    cursor: pointer;
}

.kasou .doctor-list li img{
    width:100%;
    margin-bottom:15px;
}

.kasou .doctor-list li span{
    display:block;
}

.kasou .doctor-list li a{
    color:#000000;
    line-height:1.2;
}

.kasou .doctor-list .circle-btn{
    width:36px;
    height:36px;
    background:#0a8006;
    border-radius: 50%;
    position: absolute;
    right:-15px;
}

.kasou .doctor-list .circle-btn:before{
    content:"";
    width:15px;
    height:2px;
    background:#ffffff;
    position: absolute;
    top:50%;
    left:0;
    right:0;
    margin:0 auto;
    transform: rotate(0deg);
    transition: 0.3s;
}

.kasou .doctor-list .circle-btn:after{
    content:"";
    width:15px;
    height:2px;
    background:#ffffff;
    position: absolute;
    top:50%;
    left:0;
    right:0;
    margin:0 auto;
    transform: rotate(90deg);
    transition: 0.3s;
}

.kasou .doctor-list li:hover .circle-btn:before{
    transform: rotate(45deg) scale(1.3);
    transition: 0.3s;
}

.kasou .doctor-list li:hover .circle-btn:after{
    transform: rotate(135deg) scale(1.3);
    transition: 0.3s;
}

.kasou .doctor-list .nospace{
    box-shadow:none;
    cursor: initial;
}


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

    .kasou .doctor-list{
        width:90%;
        margin:0 auto;
    }

    .kasou .doctor-list li{
        width:40%;
        margin-bottom:50px;
    }

    .kasou .doctor-list .circle-btn {
        width: 28px;
        height: 28px;
    }    


}

/************************
医師紹介モーダル
************************/
.modaal-noscroll {
    overflow-y: scroll;
}

.modaal-container {
    max-width:800px;
}

.profile .imgarea{
    width:250px;
    text-align:center;
}

.profile .imgarea span{
    display:block;
    font-weight:bold;
    margin-top:10px;
}

.profile .txtarea{
    width:450px;
}

.profile .block{
    margin-bottom:30px;
}

.profile h3.title{
    font-size:2.0rem;
    border-bottom:3px solid #e7e7e7;
    position: relative;
    margin-bottom:10px;
    padding-bottom:5px;
}

.profile h3.title:after{
    content:"";
    display:block;
    width:30%;
    height:3px;
    background:#0a8006;
    position: absolute;
    bottom:-3px;
}

.profile .list li{
    line-height:1.5;
}

.profile .list li:before{
    content:"◎";
    display:inline-block;
    margin-right:5px;
}

@media screen and (max-width: 869px) { 
    
    .modaal-content-container {
        padding: 3.452vw;
    }

    .modaal-container {
        max-width:92.059vw;
    }
    
    .profile .imgarea{
        width:28.76vw;
    }

    .profile .imgarea img{
        width:28.76vw;
    }
    
    .profile .imgarea span{
        margin-top:1.15vw;
    }
    
    .profile .txtarea{
        width:51.783vw;
    }
    
    .profile .block{
        margin-bottom:3.45vw;
    }
    
    .profile h3.title{
        font-size:2.3vw;
        border-bottom:0.345vw solid #e7e7e7;
        margin-bottom:1.15vw;
        padding-bottom:0.57vw;
    }
    
    .profile h3.title:after{
        height:0.345vw;
        bottom:-0.345vw;
    }
    
    
    .profile .list li:before{
        margin-right:0.575vw;
    }

    .modaal-close {
        background:rgba(13,100,7,0.8) !important;
    }


}

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

    .modaal-noscroll {
        overflow: hidden;
    }    

    .modaal-content-container {
        padding: 15px;
    }

    .modaal-container {
        max-width:inherit;
    }
    
    .profile .imgarea{
        width:60%;
        margin:0 auto 30px;
    }

    .profile .imgarea img{
        width:100%;
    }
    
    .profile .imgarea span{
        margin-top:10px;
    }
    
    .profile .txtarea{
        width:100%;
    }
    
    .profile .block{
        margin-bottom:20px;
    }
    
    .profile h3.title{
        font-size:1.8rem;
        border-bottom:3px solid #e7e7e7;
        margin-bottom:10px;
        padding-bottom:8px;
    }
    
    .profile h3.title:after{
        height:3px;
        bottom:-3px;
    }
    
    .profile .list li:before{
        margin-right:5px;
    }




}

/********************
診療担当医表
********************/
.kasou02 .tanto-hyou{
    border-collapse: collapse;
    width:860px;
}

.kasou02 .tanto-hyou th,.kasou02 .tanto-hyou td{
    border:1px solid #000000;
    padding:5px;
    text-align:center;
    vertical-align: middle;
    line-height:1.4;
}

.kasou02 .tanto-hyou th{
    letter-spacing: -0.01em;
}

.kasou02 .tanto-hyou th span{
    display:block;
    font-size:1.6rem;
}

.kasou02 .tanto-hyou td{
    font-size:1.6rem;
    width:13.5%;
}

.kasou02 .tanto-hyou td span{
    display:block;
    font-size:1.4rem;
    letter-spacing: -0.05em;
}

.kasou02 .tanto-hyou .green{
    background:#0a8006;
    color:#ffffff;
}

.kasou02 .tanto-hyou .pink{
    background:#f7e9e9;
}


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

    .kasou02 .tanto-hyou{
        width:920px;
    }
    

}

/************************
リンクボタン
************************/

.kasou .link-btn{
    display:flex;
    align-items: center;
    justify-content: center;
    border:2px solid #d7d4d4;
    border-radius: 10px;
    padding:15px 0;
    text-align:center;
    position: relative;
    overflow:hidden;
    transition: ease .2s;
    box-sizing: border-box;
}

.kasou .link-btn span{
    position: relative;
    z-index: 3;
    color:#000000;
    line-height:1.5;
    transition: ease .2s;

}

.kasou .link-btn:hover span{
    color:#ffffff;
}

.kasou .link-btn:after{
    content:"";
    display:inline-block;
    background:url(../images/icon-maru-yajirushi-green.svg);
    background-size:contain;
    width:20px;
    height:20px;
    position: absolute;
    right:15px;
    z-index: 3;
}

.kasou .link-btn:hover:after{
    background:url(../images/icon-maru-yajirushi-white.svg);
    background-size:contain;
    width:20px;
    height:20px;

}

.kasou .bgleft:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background:#0a8006;
    width: 100%;
   height: 100%;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
   transform-origin: right top;
}

.kasou .bgleft:hover:before{
   transform-origin:left top;
   transform:scale(1, 1);
}


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

    .kasou .link-btn:hover span{
        color:initial;
    }

    .kasou .link-btn:hover:after{
        background:url(../images/icon-maru-yajirushi-green.svg);
        background-size:contain;
    
    }
    
    .kasou .bgleft:before {
        background:#ffffff;
        transition:initial;
        transform: initial;
       transform-origin: initial;
    }
    
    .kasou .bgleft:hover:before{
        transform-origin:initial;
        transform:initial;
     }
}

/************************
ファイルリンク
************************/
.file-wrap{
    margin-bottom:30px;
    display:flex;
    flex-wrap: wrap;
}

.file-link{
    display:block;
    width:300px;
    background:#effbf0;
    border:1px solid #0a8006;
    padding:20px;
    color:#000000;
    letter-spacing: 0.1em;
    position: relative;
    margin-right:30px;
}

.file-link:hover .sankaku{
    right:0;
    bottom:0;
    transition: 0.1s;
}

.file-link .title{
    margin-bottom:8px;
}

.file-link .file-icon{
    font-size:1.4rem;
    display:flex;
    align-items: center;
}

.file-link .file-icon.pdf img{
    width:18px;
    height:23px;
    margin-right:5px;
}

.file-link .file-icon.excel img{
    width:22px;
    height:22px;
    margin-right:5px;
}

.file-link .sankaku{
    background:url(../images/icon-sankaku-green.svg) center center no-repeat;
    width:20px;
    height:20px;
    position: absolute;
    right:5px;
    bottom:5px;
    transition: 0.1s;
}

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

.file-wrap{
    margin-bottom:20px;
    display:flex;
    flex-wrap: wrap;
}


.file-link{
    width:100%;
    padding:20px;
    margin-right:0px;
    margin-bottom:10px;
    box-sizing: border-box;
}


}




/************************
リスト(スクエア)
************************/
.kasou .list.square{
    list-style-type: square;
    margin-left:20px;
}

.kasou .list.square li{
    color:#0a8006;
    line-height:1.5;
    margin-bottom:16px;
}

.kasou .list.square li span{
    color:#000000;
}