@charset "utf-8";
/*全ページ共通部分*/
html {
	scroll-behavior: smooth;
}
.ctr {
    max-width: 192rem;
    padding: 0 1.5rem;
}

/*=====================================================
ヘッダー
=====================================================*/
header .ctr {
    height: 14rem;
    box-shadow: 0 0 .5rem 0 rgba(0, 0, 0, 0.2);
    background: #fff;
    position: relative;
    z-index: 1;
}

/*
ヘッダー上
-----------------------------------------------------*/
header .ue {
    height: 8rem;
    display: flex;
    align-items: center;
}

/*
タイトル部分
-----------------------------------------------------*/
header .title-ctr {
    display: flex;
    align-items: center;
}

header .title-ctr img {
    height: 6rem;
}

header .logo {
    transition: .3s;
}

header .logo:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

header .title {
    margin-left: 1.3rem;
    padding-left: 1.2rem;
    height: 4rem;
    border-left: solid .1rem #bbb;
    display: flex;
    align-items: center;
    min-width: 20rem;
}

header .title p{
    margin-bottom: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff8b00;
    line-height: 1;
}

/*
サブナビ部分
-----------------------------------------------------*/
header .sub-nav {
    margin-left: auto;
    display: flex;
}

header .sub-nav ul{
    justify-content: flex-end;
}

header .sub-nav li{
    display: inline-block;
    font-size: 1.4rem;
    border: solid .1rem #b7a697;
    border-radius: .7rem;
    line-height: 1;
    padding: .5rem 1rem;
    margin-right: 1rem;
    transition: .3s ease-out;
    cursor: pointer;
}

header .sub-nav ul a{
    transition: .3s ease-out;
    color: #552904;
}

header .sub-nav i{
    color: #09ba80;
    transition: .3s ease-out;
}

header .sub-nav li:hover{
    background: #09ba80;
    border: solid .1rem #09ba80;
}

header .sub-nav li:hover a{
    color: #fff;
}

header .sub-nav li:hover i{
    color: #fff;
}


/*
CTAナビ部分
-----------------------------------------------------*/
.cta-nav {
    display: flex;
    margin-left: 1rem
}
.cta-nav .img1 {
    transition: .3s ease-out;
    cursor: pointer;
}
.cta-nav .img1:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.cta-nav .btn-1,.btn-2 {
    display: flex;
    align-items: center;
    width: 15rem;
    height: 8rem;
    color: #fff;
    transition: .3s ease-out;
    cursor: pointer;
}

.cta-nav .btn-1 {
    background-color: #ffa700;
    border-radius: 0 0 0 1rem;
    background-image: url("../images/sumaho.png");
    background-repeat:no-repeat;
    background-size:5.5rem;
    background-position:center;
}
.cta-nav .btn-2 {
    background-color: #ff8b00;
    border-radius: 0 0 1rem 0;
    background-image: url("../images/tel.png");
    background-repeat:no-repeat;
    background-size:7rem;
    background-position:center;
}

.cta-nav .btn-1:hover {
    background-color: #09ba80;
}

.cta-nav .btn-2:hover {
    background-color: #09ba80;
}

.cta-nav .btn-1 p,.btn-2 p{
    margin: 0 auto;
    margin-top: .5rem;
    margin-bottom: 0;
    line-height: 1.4;
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
}

.cta-nav .btn-1 span,.btn-2 span{
    font-weight: bold;
}

/*
ヘッダー下
-----------------------------------------------------*/
header .sita {
}


/*========================================================
ドロップダウンナビゲーション
========================================================*/
.dropmenu-wrap{
    margin-top: 2.7rem;
}

#dropmenu{
    margin: 0px auto;
    display: flex;
    justify-content: center;
}

#dropmenu > li {
    position: relative;
    border-right: solid .2rem #cbcbcb;
    padding: 0 1em;
}

#dropmenu > li:last-child {
    border-right: none;
}

#dropmenu > li a {
    display: block;
    font-size: 1.6rem; /*メインニューの文字サイズ*/
    line-height: 1;
    font-weight: bold;
    color: #7e6a59;
}

#dropmenu > li:hover > a{
    color: #0fba65;
}

#dropmenu li ul{
    position: absolute;
    top: 1em;
    left: 1em;
}

#dropmenu li:last-child ul{
    left: -5rem;
    width: 100%
}

#dropmenu li ul li{
    height: 0;
    overflow: hidden;
    width: 24rem;
    color: #fff;
    transition: .3s;
}

#dropmenu li ul li a:hover{
    background: #09ba80;
}

#dropmenu li ul li a{
    padding: 20px 15px;
    background: #109d6f; /*サブメニューの背景*/
    text-align: left;
    font-size: 14px; /*サブメニューの文字サイズ*/
    color: #fff; /*サブメニューの文字色*/
    font-weight: bold;
    transition: .3s;
}
#dropmenu li:hover ul li{
    overflow: visible;
    height: 56px;
}

#dropmenu li:hover ul li:first-child{
    margin-top: 1.7rem;
    border-top: 0;
}

#dropmenu li:hover ul li:last-child{
    border-bottom: 0;
}

#dropmenu li:hover ul li:last-child a{
    border-radius: 0 0 5px 5px;
}
/*END ドロップダウンナビゲーション
-------------------------------------------------------*/


/*========================================================
バーガーメニュー
========================================================*





/*===================================================================
フッター
====================================================================*/

/*========================================================
フッタービゲーション
========================================================*/
.footer_nav-ctr {
    padding: 2rem 0;
    border-top: solid .3rem #04ba80;
    border-bottom:  solid .3rem #04ba80;
}

/*トップへボタン
-------------------------------------------------------*/
.footer_nav-ctr .img1 img{
    width: 6rem;
    margin: 0 auto;
    transition: .3s ease-out;
    cursor: pointer;
}


.footer_nav-ctr .img1 img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/*ページナビ
-------------------------------------------------------*/
.footer_nav-wrap{
    margin-top: 2rem;
}

#footer_nav{
    margin: 0px auto;
    display: flex;
    justify-content: center;
}

#footer_nav > li {
    position: relative;
    border-right: solid .2rem #cbcbcb;
    padding: 0 1em;
}

#footer_nav > li:last-child {
    border-right: none;
}

#footer_nav > li a {
    display: block;
    font-size: 1.6rem; /*メインニューの文字サイズ*/
    line-height: 1;
    font-weight: bold;
    color: #7e6a59;
}

#footer_nav > li:hover > a{
    color: #0fba65;
}
@media screen and (min-width: 1025px) {
    .footer_nav-wrap i{
        display: none;
    }
    
}
@media screen and (max-width: 1024px) {
    
    /*ページナビ
    -------------------------------------------------------*/
    .footer_nav-wrap{
        max-width: 50rem;
        margin: 1rem auto 0;
    }

    #footer_nav{
        flex-flow: column;
    }

    #footer_nav > li {
        border-right: none;
        border-bottom: solid .2rem #cbcbcb;
        padding: 1em 1em 1em 0.5em;
    }

    #footer_nav > li:last-child {
        border-right: none;
        border-bottom: none;
    }  
}

/*関連エリア
-------------------------------------------------------*/
.relation {
    max-width: 120rem;
    margin: 0 auto;
    padding-bottom: 3rem
}

.relation-nav {
    display: flex;
    align-items: center;
    padding: 4rem 0 4rem 0;
    margin: 0;
}

.relation-nav .img1 {
    height: 8rem;
    margin-right: 2rem;
    transition: .3s ease-out;
    cursor: pointer;
}

.relation-nav .img1:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.relation-nav .img1 img {
    height: 100%
}

.relation-nav .btn {
    height: 6rem;
    padding: 0 1.5rem;
    margin-right: 2rem;
    border-radius: .3rem;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 5px rgba(0,0,0,0.3);/*影*/
    transition: .3s ease-out;
    cursor: pointer;
}

.relation-nav .btn:hover{
    background-color: #21c196;/*背景色*/
    box-shadow: 0 13px 20px -3px rgba(0,0,0,0.24);/*浮き上がるように*/
}

.relation-nav-btn-bgc-1 {
    background: #ffa700;
}

.relation-nav-btn-bgc-2 {
    background: #ff8b00;
}
.relation-nav-btn-bgc-3 {
    background: #7e6a59;
}

.relation-nav .btn .img2 {
    height: 4rem;
}

.relation-nav .btn .img2 img{
    height: 100%;
}

.relation-nav .btn p{
    font-weight: bold;
    padding: 0 0 0 1rem;
    line-height: 1.3;
    font-size: 1.8rem;
    margin: 0;
    color: #fff;
}
@media screen and (min-width: 1201px) {
    .relation-nav .btn p br{
        display: none;
    }
}

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

    /*関連エリア
    -------------------------------------------------------*/
    .relation {
        max-width: 120rem;
        margin: 0 auto;
        padding-bottom: 3rem
    }
    /*CTAナビ
    -------------------------------------------------------*/

    .relation-nav {
        max-width: 30rem;
        display: flex;
        flex-flow: column;
        align-items: center;
        padding: 4rem 0 4rem 0;
        margin: 0 auto;
    }

    .relation-nav .img1 {
        height: 8rem;
        margin-right: 0rem;
        margin-bottom: 2rem;
    }

    .relation-nav .img1 img {
        height: 100%
    }

    .relation-nav .btn {
        width: 100%;
        height: 6rem;
        padding: 0 1.5rem;
        margin-right: 0rem;
        border-radius: .3rem;
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        cursor: pointer;

    }

    .relation-nav .btn .img2 {
        height: 4rem;
    }

    .relation-nav .btn .img2 img{
        height: 100%;
    }
}

/*医院情報
-------------------------------------------------------*/
.info-wrap {
    display: flex;
}


/*診療時間
-------------------------------------------------------*/
.jikan{
    color: #7e6a59;
    font-size: 1.6rem;
    line-height: 1.2;
    width: 48%;
    margin-right: auto;
}
.jikan p {
    color: #7e6a59;
    font-size: 1.4rem;
    line-height: 1.2;
    margin: .7rem 0 0 0;
    text-align: center;
}

.jikan p span {
    margin: 0 2rem 0 0;
}

@media screen and (max-width: 500px) {
    .jikan p span {
        display: block;
        text-align:left;
        line-height: 1.5
    }
    
}

.jikan table{
    width: 100%;
    border-collapse:separate;
    border-spacing: 0;

}

.jikan table th:first-child{
    width: 40%;
    border-radius: 3px 0 0 0;
}

.jikan table th:last-child{
    border-radius: 0 3px 0 0;
    border-right: 1px solid #cecece;
}

.jikan table th{
    text-align: center;
    color: #7e6a59;
    border-left: 1px solid #cecece;
    border-top: 1px solid #cecece;
    border-bottom: 1px solid #cecece;
    width: 10%;
    padding: .8rem 0;
}

.jikan table td{
    text-align: center;
    border-left: 1px solid #cecece;
    border-bottom: 1px solid #cecece;
    border-top:none;
    width: 10%;
    padding: 1.4rem 0;
}

.jikan table td:last-child{
    border-right: 1px solid #cecece;
}

.jikan table tr:last-child td:first-child {
    border-radius: 0 0 0 3px;
}

.jikan table tr:last-child td:last-child {
    border-radius: 0 0 3px 0;
}

.gozen-pl{
    padding-left: .9rem;
}

@media screen and (max-width: 1024px) {
    .info-wrap {
        flex-flow: column;
        margin: 0 auto;
        max-width: 50rem
    }

    .jikan{
        margin: 0 auto;
        width: 100%;
    }
}

/*医院概要
-------------------------------------------------------*/
.gaiyou{
    color: #7e6a59;
    font-size: 1.6rem;
    line-height: 1.2;
    width: 50%;
    margin: -1rem 0 0 0;
}

.gaiyou table{
    width: 100%;
    border-collapse:separate;
    border-spacing: 0;
}

.gaiyou table th{
    text-align:left;
    color: #7e6a59;
    border-bottom: 1px dashed #cecece;
    width: 14%;
    padding: .8rem 0 0 1rem;
    font-weight: bold;
}

.gaiyou table td{
    text-align:left;
    border-bottom: 1px dashed #cecece;
    padding: 1.4rem 0;
}

.gaiyou table tr:last-child th {
    border-bottom: none;
}

.gaiyou table tr:last-child td {
    border-bottom: none;
}
    
    
@media screen and (min-width: 415px) {
    .gaiyou br{
        display: none;
    }
}    

@media screen and (max-width: 1024px) {
        
        .gaiyou{
            color: #7e6a59;
            font-size: 1.6rem;
            line-height: 1.2;
            width: 100%;
            margin: 3rem 0 0 0;
        }
        
        .gaiyou table th{
            text-align:left;
            color: #7e6a59;
            border-bottom: 1px dashed #cecece;
            width: 25%;
            padding: .8rem 0 0 1rem;
            font-weight: bold;
        }

        .gaiyou table td{
            text-align:left;
            border-bottom: 1px dashed #cecece;
            padding: 1.4rem 0;
        }
    }
    
    
    
/*コピーライト
-------------------------------------------------------*/
.copyright {
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
    background: #2da287;
    color:#fff;
    line-height: 1;
    padding: .5rem
}

/*END フッター
-------------------------------------------------------*/

/*===================================================================
TOPへボタン
====================================================================*/
/* パソコン・スマホ共通のCSS */
#PageTopBtn {
    position: fixed;/*ボタンの配置場所を固定*/
    bottom: 20px;/*下からのボタンの配置場所を指定*/
    /*右からのボタンの配置場所は、jsで指定*/
    z-index: 10;
    font-size: 13px;
}

#PageTopBtn a {
    display: block;/*配置の調整*/
    text-decoration: none;/*文字の下線を消す*/
    color: #fff;/*文字の色*/
    background: rgba(9, 186, 128, 0.89);/*ボタンの背景色*/
    text-align: center;/*文字を中央に配置*/
    border-radius: 50%;/*ボタンの角を少し丸くする*/
    outline: none;/*クリックしたときの黒い枠を消す*/
    transition: .3s ease-out;
    width: 90px;
    height: 60px;
    padding: 8px 0;
    line-height: 1.5;
}

#PageTopBtn a:hover {
    text-decoration: none;
    background: #ff8b00;/*マウスオーバー時の背景色*/
}

/*========================================================

レスポンシブ　*/

/*========================================================
PC用　1025以上
========================================================*/
@media screen and (max-width: 1350px) {
    
    /* PC用ヘッダー　サブナビ折り返し
    -------------------------------------------------------*/
    header .sub-nav li {
        display: block;
    }

    header .sub-nav ul li:first-child {
        margin-top: 0.4rem;
    }

    header .sub-nav ul li:last-child {
        margin-top: 0.8rem;
    }
}

/*========================================================
タブレット用　1024以下
========================================================*/
@media screen and (min-width: 1025px) {
    
    /* バーガーボタンを非表示
    -------------------------------------------------------*/
    header .burger-btn,.tel-btn {
        display: none;
    }
    
    .footer-fixed {
        display: none;
    }
}

/*========================================================*/
@media screen and (max-width: 1024px) {
    
    /* 電話ボタンを表示
    -------------------------------------------------------*/
    header .tel-btn {
        width: 3.6rem;
        height: 3.6rem;
        border-radius: .4rem;
        background: #ff8b00;
        display: flex;
        align-items: center;
        margin-left: auto;
        transition: .3s ease-out;
        cursor: pointer;
    }
    
    header .tel-btn:hover {
        opacity: .6;
    }

    header .tel-btn img {
        height: 60%;
        margin: 0 auto;
    }
    
    /* バーガーボタンを表示
    -------------------------------------------------------*/
    header .burger-btn {
        width: 3.6rem;
        height: 3.6rem;
        border-radius: .4rem;
        background: #0bb17a;
        display: flex;
        align-items: center;
        margin-left: 1rem;
    }

    header .burger-btn img {
        height: 55%;
        margin: 0 auto;
    }
    
    
    /* PC用ヘッダーを隠す
    -------------------------------------------------------*/
    header .sub-nav {
        display: none;
    }

    header .cta-nav {
        display: none;
    }

    header .sita {
        display: none;
    }
    
/* ヘッダーの高さを50pxに
-------------------------------------------------------*/
    header .ctr {
        height: 5rem;
    }
    
    header .ue {
        height: 5rem;
        display: flex;
        align-items: center;
    }
    
    header .title-ctr img {
        height: 4rem;
    }
    
    header .title {
        margin-left: 1rem;
        padding-left: 1rem;
        height: 3.6rem;
        min-width: 0rem;
    }

    header .title p {
        font-size: 1.6rem;
    }
    
    /* ヘッダーを固定する
    -------------------------------------------------------*/
    .header-fixed {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1;
    }
    
    .main-visual {
        padding-top: 5rem
    }

    .main-visual .img2 img{
        padding-top: 5rem
    }
    
    /* 固定フッターを表示する
    -------------------------------------------------------*/
    /* ページトップボタンを隠す
    -------------------------------------------------------*/
    #PageTopBtn {
        display: none
    }
    
    /* 固定フッター
    -------------------------------------------------------*/
    .copyright {
        margin-bottom: 5rem;
    }
    
    .footer-fixed {
        width: 100%;
        height: 5rem;
        background: rgba(255, 255, 255, 0.8);
        position: fixed;
        box-shadow: 0 0 .3rem 0 rgba(0, 0, 0, 0.2);
        bottom: 0;
        padding: .7rem 1.5rem;
        display: flex;
    }
    
    .footer-fixed .yoyaku-btn {
        display: inline-block;
        height: 3.6rem;
        background: #ff8b00;
        margin-right: .7rem;
        padding: .5rem 0;
        border-radius: .3rem;
        cursor: pointer;
        transition: .3s ease-out;
    }
    
    .footer-fixed .yoyaku-btn:hover {
        opacity: .6;
    }
    
    .footer-fixed .yoyaku-btn .img1 {
        height: 2.6rem;
        display: flex;
        align-items: center;
        margin-left: 1rem
    }
    
    .footer-fixed .yoyaku-btn .img1 img{
        height: 100%;
    }
    
    .footer-fixed .yoyaku-btn p{
        font-weight: bold;
        padding: 0 1rem;
        line-height: 1;
        font-size: 1.6rem;
        margin-bottom: 0;
        color: #fff;
    }
    
    .footer-fixed .btn2 {
        width: 3.6rem;
        height: 3.6rem;
        background: #09ba80;
        margin-left: auto;
        border-radius: 50%;
        text-align: center;
        padding-top: .2rem;
        color: #fff;
        font-size: 1.6rem;
        cursor: pointer;
        transition: .3s ease-out;
    }
    .footer-fixed .btn2:hover {
        opacity: .6;
    }
}

/*========================================================
スマホ用　767以下
========================================================*/
@media screen and (min-width: 415px) {
    /* 小さなロゴに差し替え*/
    .logo-1 {
        display: none;
    }
}

@media screen and (max-width: 414px) {
    /* 大きなロゴを非表示に*/
    .logo {
        display: none;
    }

    /* タイトル回りを小さく
    -------------------------------------------------------*/
    header .title-ctr img {
        height: 3.6rem;
    }

    header .title {
        margin-left: .5rem;
        padding-left: .5rem;
        height: 3.6rem;
        min-width: 0rem;
    }

    header .title p {
        font-size: 1.4rem;
        line-height: 1.2;
    }
}

@media screen and (min-width: 321px) {
    /* タイトルを改行する*/
    header .title br {
        display: none;
    }
}


/*========================================================
無料相談
========================================================*/
#soudan2 {
  margin-top:-1px;
  padding-top:1px;
}

/*中見出し：区切り線　センター*/
.hh2-2{
    color: #20a48a;
    display: flex;
    text-align: center;
    align-items: center;
    margin-top: 2em;
    font-weight: bold;
}
.hh2-2:before{
    content: "";
    flex-grow: 1;
    height: 2px;
    min-width: 1em;
    margin-right: .4em;
    background: #a6e0d4;
}
.hh2-2:after{
    content: "";
    flex-grow: 1;
    height: 2px;
    min-width: 1em;
    margin-left: .4em;
    background: #a6e0d4;
}
.cta {
    padding-top: 0rem;
    padding-bottom: 7rem;
/*    background:#fff6f0;*/

}

.cta .inner{
    margin: 0 auto;
    max-width: 80rem;
}

.cta .item-wrap {
    display: flex;
    
}

.cta .item1 {
    width: 50%;
    margin-right: 2rem;
    background: rgba(255, 255, 255, 0.3);
    padding: 1.5rem;
    border-radius: .5rem;
    border:solid .2rem #ffa66a;
}

.cta .item1 p {
    margin: 0
}

.cta .item2 {
    width: 50%;
    background: rgba(255, 255, 255, 0.3);
    padding: 1.5rem;
    border-radius: .5rem;
    border: solid .2rem #ffa66a;
}

.cta .uketuke {
    margin-top: 1rem;
    padding: 1rem;
/*    background: rgba(255, 255, 255, 1);*/
    border-radius: .5rem;
    border:solid .1rem #ffa66a;
}

.cta .uketuke p{
    line-height: 1.8;
    font-size: 1.4rem;
    margin: 0
}


.hh3-1 {　
    display: block;
    padding: 0em 0 .3em .4em;
    margin: .5em 0 .5em;
    color: #f27000;
    font-weight: bold;
}

@media screen and (max-width: 640px) {
    .cta .item-wrap {
        flex-flow: column;
        max-width: 40rem;
        margin: 0 auto;
    }

    .cta .item1 {
        width: 100%;
        margin-right: 0rem;
        margin-bottom: 2rem;
    }

    .cta .item2 {
        width: 100%;
    }
}

.foot-cta-btn{
    height: 6rem;
    padding: 0 1.5rem;
    margin-bottom: 1.7rem;
    border-radius: .3rem;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 5px rgba(0,0,0,0.3);/*影*/
    transition: .3s ease-out;
    cursor: pointer;
}

.foot-cta-btn .img1 {
    height: 8rem;
    margin-right: 2rem;
}

.foot-cta-btn .img1 img {
    height: 100%
}

.foot-cta-btn:hover{
    background-color: #21c196;/*背景色*/
    box-shadow: 0 13px 20px -3px rgba(0,0,0,0.24);/*浮き上がるように*/
}

.foot-cta-btn-bgc-1 {
    background: #ffa700;
}

.foot-cta-btn-bgc-2 {
    background: #ff8b00;
}

.foot-cta-btn .img2 {
    height: 4rem;
}

.foot-cta-btn .img2 img{
    height: 100%;
}

.foot-cta-btn p{
    font-weight: bold;
    padding: 0 0 0 1rem;
    line-height: 1.3;
    font-size: 1.8rem;
    margin: 0;
    color: #fff;
}

@media screen and (min-width: 800px) {
    .foot-cta-btn p br{
        display: none;
    }
}


/*
ヘッダー：バーガーメニュー
--------------------------------------------------------------------*/
/*
ナビドロワー 
--------------------------------------------------------------------*/

/*ナビドロワー本体*/
#nav-drawer {
    position: relative;
    z-index: 10 !important;/*最前面に*/
}

/*チェックボックスを非表示に*/
.nav-unshown {
    display: none;
}

/*バーガーボタンのコンテナ*/
#nav-open {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    transition: .3s ease-out;
}

/*バーガーボタンのホバー*/
#nav-open:hover {
    opacity: .6;
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;/*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;/*全体に広がるように*/
    right: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    transition: .3s ease-in-out;
}

/*チェックが入ったら表示*/
#nav-input:checked ~ #nav-close {
    display: block;/*カバーを表示*/
    opacity: .5;
}

#nav-input:checked ~ #nav-cont-ctr {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*中身を表示（左へスライド）*/
    box-shadow: -5px 0 5px rgba(0, 0, 0, .2);
}

/*中身のコンテナ*/
#nav-cont-ctr {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100 !important;/*最前面に*/
    width: 90%;/*左側に隙間を作る（閉じるカバーを表示）*/
    max-width: 340px;/*最大幅*/
    height: 100%;
    background: #fff;/*背景色*/
    transition: .3s ease-in-out;/*滑らかに表示*/
    -webkit-transform: translateX(105%);
    transform: translateX(105%);/*右に隠しておく*/
}

/*
ナビドロワー：中身
--------------------------------------------------------------------*/
.nav-cont {
    width: 100%;
    background: #ffffff;
    -webkit-overflow-scrolling: touch;
    z-index: 11 !important;
}

/*「MENU」の表示*/
.nav-cont_head {
    background: #1c9d73;
    height: 50px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 2.4rem;
    color: #fff;
    line-height: 1;
}

/*閉じるバツボタンのコンテナ*/
.nav-close-btn-wrap {
    position: absolute;
    left: 0;
    padding-left: 15px;
}

/*閉じるバツボタンの本体*/
#nav-close-btn {
    display: inline-block;
    position: relative;
    width: 36px;
    height: 36px;
    vertical-align: middle;
    border-radius: 50%;
    padding-top: 0px;
    padding-left: 0px;
    transition: .3s ease-out;
    cursor: pointer;
    
}

/*閉じるバツボタンのホバー*/
#nav-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/*CSSでバツを作る*/
#nav-close-btn .batu {
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 17px;
    padding: 0;
    width: 2px;/*太さ*/
    height: 26px;/*長さ*/
    background: #fff;
    transform: rotate(45deg);
    transition: 0.3s ease-in-out;
    border-radius: 2px;
}

#nav-close-btn .batu:before {
    display: block;
    content: "";
    position: absolute;
    top: 14px;
    left: -12px;/*位置調整*/
    width: 26px;/*長さ*/
    height: 2px;/*太さ*/
    margin-top: -2px;
    background: #fff;
    border-radius: 2px;
}

/*中身のボディ部分*/
.nav-cont_body {
    padding: 0rem 0rem;
}

.b-menu1 {
    display: flex;
    align-items: center;
}

.b-menu1 a{
    width: 50%;
    text-align: center;
    margin: 0;
    padding: 1rem 0;
    line-height: 1.3;
    color: #009363;
    transition: all .3s ease-out;
    cursor: pointer;
}

.b-menu1 a:first-child{
    border-right: solid 1px #d9d9d9;
}

.b-menu1 a:hover{
    background: #eee;
}

.b-menu1 i{
    font-size: 2.5rem;
    line-height: 1.3;
}

ul.b-menu2 li a {
    display: block;
    font-size: 1.6rem;
    line-height: 1.3;
    padding: 1em .5em;
    font-weight: bold;
    color: #009363;
    border-bottom: solid 1px #d9d9d9;
    transition: all .3s ease-out;
    cursor: pointer;
}

ul.b-menu2 li:first-child{
    border-top: solid 1px #d9d9d9;
}

ul.b-menu2 li a:hover{
    background: #eee;
}



