/* 全頁共通CSS */

*{
    margin: 0;
    padding: 0;
}
*,
*::before, *::after{
    box-sizing: inherit;
}
body{
    background-color: #F5F0E7;
    box-sizing: border-box;
    color: #393641;
    font-family: YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
    font-weight: 500;
    font-style: normal;
    font-optical-sizing: auto;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 1px;
    overflow-x: hidden!important;
    -webkit-text-size-adjust: 100%;
}
@media (min-width:1200px){
    body{
        font-size: 18px;
        line-height: 2;
    }
}
body.active{
    width: 100%;
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden!important;
    overscroll-behavior: none;    
}
img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
a {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    cursor: pointer;
    word-wrap:break-word;
}
*:focus {
    outline: none;
}

/*--------------------------------------------------------
    ヘッダー
--------------------------------------------------------*/
/* 固定 */
.ly_header{
    background-color: #F5F0E7;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 999;
}
@media (min-width:1200px){
    .ly_header{
        height: 130px;
    }
}

/*===== ロゴ =====*/
.el_headerLogo{
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 130px;
    z-index: 800;
}
.el_headerLogo a{
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}
.el_headerLogo a:hover{
    opacity: 0.5;
}
.el_headerLogo img{
    margin: 0;
    width: 100%;
}
@media (min-width:768px){
    .el_headerLogo{
        max-width: 150px;
    }
}
@media (min-width:1200px){
    .el_headerLogo{
        max-width: 200px;
        left: 40px;
    }
}
@media (min-width:1400px){
    .el_headerLogo{
        left: 60px;
    }
}

/*===== スマホメニュー 開閉ボタン =====*/
.el_headerBtnCont{
    border-radius: 50px;
    cursor: pointer;
	transition: all .5s;
    transform: translateY(-50%);
	position: absolute;
	top: 50%;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 999;
}
.el_headerBtn{
    width: 30px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.el_headerBtn span{
    background-color: #EEB4B0;
	position: absolute;
	left: 0;
    width: 100%;
	height: 2px;
}
.el_headerBtn,
.el_headerBtn span{
	display: inline-block;
	transition: all .5s;
}
.el_headerBtn span:first-child{
	top: 0;
}
.el_headerBtn span:last-child{
	bottom: 0;
}
@media (min-width:1200px){
    .el_headerBtnCont{
        right: 40px;
        width: 70px;
        height: 70px;
    }
    .el_headerBtn{
        width: 55px;
    }
}
@media (min-width:1400px){
    .el_headerBtnCont{
        right: 60px;
    }
}

/* メニュー開いたとき */
.el_headerBtnCont.active{
    background-color: #EEB4B0;
}
.el_headerBtn.active span{
    background-color: #fff;
}
.el_headerBtn.active span:first-child{
	transform: translateY(4px) rotate(-20deg);
}
.el_headerBtn.active span:last-child{
	transform: translateY(-4px) rotate(20deg);
}


/*===== ハンバーガーメニュー ボタンクリックで表示 =====*/
.bl_headerMenuCont{
    background-color: #EEB4B0;
    display: none;
    overflow-x: scroll;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 20px 150px;
    width: 100%;
    height: 100vh;
    z-index: 900;
}
@media (min-width:1200px){
    .bl_headerMenuCont{
        padding: 0 30px 30px;
    }
}
@media (min-width:1600px){
    .bl_headerMenuCont{
        overflow: hidden;
    }
}

/* 画像 */
.bl_headerMenuCont .bl_menuImg{
    display: block;
    position: relative;
    width: 100%;
    height: 40%;
    max-height: 480px;
}
.bl_headerMenuCont .bl_menuImg img{
    border-radius: 0 0 30px 30px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.bl_headerMenuCont .bl_menuImg .bl_textCont{
    position: absolute;
    left: 5%;
    bottom: 8%;
}
.bl_headerMenuCont .bl_menuImg .bl_textCont p{
    color: #fff;
    font-weight: bold;
    font-size: 28px;
    line-height: 1.4;
}
.bl_headerMenuCont .bl_menuImg .bl_textCont p+p{
    font-weight: normal;
    font-size: 14px;
    margin-top: 10px;
}
@media (min-width:375px){
    .bl_headerMenuCont .bl_menuImg .bl_textCont p+p br{
        display: none;
    }
}
@media (min-width:768px){
    .bl_headerMenuCont .bl_menuImg img{
        border-radius: 0 0 40px 40px;
    }
    .bl_headerMenuCont .bl_menuImg .bl_textCont p{
        font-size: 42px;
    }
    .bl_headerMenuCont .bl_menuImg .bl_textCont p+p{
        font-size: 16px;
        margin-top: 15px;
    }
}
@media (min-width:1200px){
    .bl_headerMenuCont .bl_menuImg{
        height: 45%;
    }
    .bl_headerMenuCont .bl_menuImg .bl_textCont{
        left: 40px;
        bottom: 40px;
    }
}
@media (min-width:1600px){
    .bl_headerMenuCont .bl_menuImg .bl_textCont{
        left: 50px;
        bottom: 50px;
    }
    .bl_headerMenuCont .bl_menuImg .bl_textCont p{
        font-size: 50px;
    }
    .bl_headerMenuCont .bl_menuImg .bl_textCont p+p{
        font-size: 18px;
    }
}
@media (min-width:2000px){
    .bl_headerMenuCont .bl_menuImg{
        height: 50%;
    }
    .bl_headerMenuCont .bl_menuImg .bl_textCont{
        left: 70px;
        bottom:70px;
    }
    .bl_headerMenuCont .bl_menuImg .bl_textCont p{
        font-size: 60px;
    }
    .bl_headerMenuCont .bl_menuImg .bl_textCont p+p{
        font-size: 20px;
    }
}

/* メニュー */
.bl_headerMenuCont .bl_gbCont{
    margin: 30px auto 60px;
    max-width: 1000px;
}
@media (min-width:1200px){
    .bl_headerMenuCont .bl_gbCont{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
        margin: 60px auto 20px;
    }
}
@media (min-width:1600px){
    .bl_headerMenuCont .bl_gbCont{
        max-width: 1440px;
    }
}

/* コピーライト */
.el_copyright{
    color: #fff;
    font-size: 12px;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width:1200px){
    .bl_headerMenuCont .el_copyright{
        text-align: right;
    }
}
@media (min-width:1600px){
    .el_copyright{
        max-width: 1440px;
    }
}

/*===== メニュー PCのみ表示 =====*/
.bl_headerMenu-pc{
    display: none;
}
@media (min-width:1200px){
    .bl_headerMenu-pc{
        display: block;
        position: absolute;
        top: 50%;
        right: 140px;
        transform: translateY(-50%);
    }
}
@media (min-width:1400px){
    .bl_headerMenu-pc{
        right: 160px;
    }
}

/*===== グローバルメニュー =====*/
.bl_globalMenu{
    list-style: none;
}
.bl_globalMenu+.bl_globalMenu{
    margin-top: 30px;
}
.bl_globalMenu li+li{
    margin-top: 30px;
}
.bl_globalMenu li a,
.bl_globalMenu li span{
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}
.bl_globalMenu li a:hover{
    opacity: 0.6;
}
@media (min-width:1200px){
    .bl_globalMenu+.bl_globalMenu{
        margin: 0;
    }
    .bl_headerMenu-pc .bl_globalMenu{
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .bl_headerMenu-pc .bl_globalMenu li+li{
        margin: 0 0 0 25px;
    }
    .bl_headerMenu-pc .bl_globalMenu li a,
    .bl_headerMenu-pc .bl_globalMenu li span{
        color: #393641;
        position: relative;
    }
    .bl_headerMenu-pc .bl_globalMenu li a:hover{
        color: #EEB4B0;
        opacity: 1;
    }
    .bl_headerMenu-pc .bl_globalMenu li a:hover::after{
        background-color: #93BB8F;
        border-radius: 50%;
        display: block;
        content: '';
        width: 6px;
        height: 6px;
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media (min-width:1400px){
    .bl_headerMenu-pc .bl_globalMenu li+li{
        margin: 0 0 0 30px;
    }
}

/* LINE */
.bl_globalMenu li .el_line{
    background-color: #93BB8F;
    border-radius: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 25px;
}
.bl_globalMenu li .el_line::before{
    background-image: url("assets/img/icon_line-w.svg");
    content: '';
    display: inline-block;
    margin-right: 15px;
    width: 18px;
    height: 18px;
}
.bl_globalMenu li .el_line:hover{
    background-color: #fff;
    color: #93BB8F;
    opacity: 1;
}
.bl_globalMenu li .el_line:hover::before{
    background-image: url("assets/img/icon_line-g.svg");
}
@media (min-width:1200px){
    .bl_globalMenu li .el_line{
        width: 320px;
    }
}

/* サブメニュー */
.bl_globalMenu ul{
    margin-top: 20px;
    padding-left: 20px;
    list-style: none;
}
.bl_globalMenu ul li a{
    position: relative;
}
.bl_globalMenu ul li a::before{
    background-color: #fff;
    border-radius: 50%;
    content: '';
    display: inline-block;
    margin-right: 15px;
    width: 5px;
    height: 5px;
    vertical-align: 3px;
}
.bl_globalMenu ul li+li{
    margin-top: 20px;
}

/*===== 問診用 =====*/
/* 固定 */
.ly_header.monshin{
    position: relative;
}


/*--------------------------------------------------------
    コンテンツ
--------------------------------------------------------*/
/*===== コンテナ =====*/
.bl_cont{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 25px;
}
.bl_cont p+p{
    margin-top: 20px;
}
.bl_cont a{
    color: #393641;
    font-weight: bold;
    text-decoration: underline;
    transition: 0.3s;
}
.bl_cont a:hover{
    opacity: 0.6;
}
@media (min-width:768px){
    .bl_cont{
        padding: 0 30px;
    }
}
@media (min-width:1500px){
    .bl_cont{
        padding: 0;
    }
}

/*===== テーブル =====*/
table{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    word-wrap: break-word;
}
table th,
table td{
    padding: 20px 0!important;
}
table th,
table td:first-child{
    vertical-align: top;
}

/*===== リキャプチャ =====*/
.grecaptcha-badge{
    visibility: hidden;
}

/*--------------------------------------------------------
    bl_time-access
--------------------------------------------------------*/
.bl_time-access{
    background-color: #EEB4B0;
    max-width: 1440px;
    margin: 80px auto 0;
}
@media (min-width:1024px){
    .bl_time-access{
        border-radius: 20px;
        margin: 120px auto;
        padding: 0;
    }
}

/*===== flex =====*/
@media (min-width:1024px){
    .bl_time-access .bl_flexCont{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
    }
    .bl_time-access .bl_flexCol{
        max-width: 930px;
        width: 55%;
    }
    .bl_time-access .bl_flexCol+.bl_flexCol{
        margin-top: 0;
        max-width: 510px;
        width: 45%;
    }
}
@media (min-width:1200px){
    .bl_time-access .bl_flexCol{
        width: 58%;
    }
    .bl_time-access .bl_flexCol+.bl_flexCol{
        width: 42%;
    }
}
@media (min-width:1400px){
    .bl_time-access .bl_flexCol{
        width: 63%;
    }
    .bl_time-access .bl_flexCol+.bl_flexCol{
        width: 100%;
    }
}
@media (min-width:1600px){
    .bl_time-access .bl_flexCol{
        width: 100%;
    }
}

/*===== テキスト =====*/
.bl_time-access .bl_time{
    color: #393641;
    background-color: #EEB4B0;
    border-radius: 20px 20px 0 0;
    padding: 60px 30px 40px;
}
@media (min-width:1024px){
    .bl_time-access .bl_time{
        border-radius: 20px 0 0 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 30px;
    }
}
@media (min-width:1200px){
    .bl_time-access .bl_time{
        padding: 0 60px;
    }
}
@media (min-width:1400px){
    .bl_time-access .bl_time{
        padding: 0 80px;
    }
}

/* h2 */
.bl_time-access .bl_time h2{
    font-size: 15px;
    text-align: center;
    margin: 0 auto;
    padding: 0;
}
.bl_time-access .bl_time h2::before{
    display: none;
}
@media (min-width:1024px){
    .bl_time-access .bl_time h2{
        text-align: left;
    }
}

/* リンクコンテナ */
.bl_time-access .bl_linkCont .bl_flexCol,
.bl_time-access .bl_linkCont .bl_flexCol+.bl_flexCol{
    margin: 0;
}
@media (min-width:768px){
    .bl_time-access .bl_linkCont{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }
    .bl_time-access .bl_linkCont .bl_flexCol{
        width: auto;
    }
    .bl_time-access .bl_linkCont .bl_flexCol+.bl_flexCol{
        margin-left: 30px;
        width: 180px;
    }
}
@media (min-width:1024px){
    .bl_time-access .bl_linkCont{
        justify-content: flex-start;
    }
}
@media (min-width:1200px){
    .bl_time-access .bl_linkCont a{
        font-size: 18px;
    }
}

/* tel */
.bl_time-access .bl_time .el_tel{
    color: #393641;
    display: block;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}
.bl_time-access .bl_time .el_tel::before{
    background-image: url("assets/img/icon_tel-b.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    vertical-align: -3px;
}

/* LINE */
.bl_time-access .bl_time .el_line{
    border: 1px solid #393641;
    border-radius: 60px;
    color: #393641;
    display: block;
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    max-width: 180px;
    margin: 10px auto 0;
    padding: 0;
    width: 100%;
}
.bl_time-access .bl_time .el_line:hover{
    background-color: #93BB8F;
    border: 1px solid #93BB8F;
}
.bl_time-access .bl_time .el_line::before{
    background-image: url("assets/img/icon_line-b.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    vertical-align: middle;
}
@media (min-width:768px){
    .bl_time-access .bl_time .el_line{
        margin: 0;
    }
}

/* 診療時間テーブル 全ページ共通 */
.bl_timeTable{
    font-size: 16px;
    text-align: center;
}
.bl_timeTable tr{
    border-bottom: 1px solid #393641;
}
.bl_timeTable th:first-child,
.bl_timeTable td:first-child{
    width: 25%;
}
.bl_timeTable + p{
    font-size: 16px;
    margin-top: 20px;
}
@media (min-width:1200px){
    .bl_timeTable{
        font-size: 18px;
    }
    .bl_timeTable + p{
        font-size: 18px;
    }
}

/* 診察時間 */
.bl_time-access .bl_timeTable{
    margin-top: 30px;
}

/*===== 画像 =====*/
.bl_time-access .bl_access{
    color: #fff;
    text-decoration: none;
    position: relative;
}
.bl_time-access .bl_access .bl_textCont{
    position: absolute;
    bottom: 30px;
    left: 30px;
}
.bl_time-access .bl_access .bl_textCont p{
    font-size: 16px;
}
.bl_time-access .bl_access .bl_textCont p:first-child::before{
    background-image: url("assets/img/icon_access.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}
.bl_time-access .bl_access .bl_textCont .el_mapBtn{
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: normal;
    text-decoration: none!important;
    text-align: center;
    transition: 0.3s;
    letter-spacing: 2px;
    margin-top: 10px;
    max-width: 280px;
    padding: 2px 0;
    width: 100%;
}
.bl_time-access .bl_access .bl_textCont .el_mapBtn:hover{
    background-color: #EEB4B0;
    border: 1px solid #EEB4B0;
}
@media (min-width:768px){
    .bl_time-access .bl_access .bl_textCont .el_mapBtn{
        max-width: 320px;
    }
}
@media (min-width:1024px){
    .bl_time-access .bl_access img{
        border-radius: 0 20px 20px 0;
    }
}

/*===== ご予約・お問い合わせ =====*/
.bl_time-access .bl_timeTable th,
.bl_time-access .bl_timeTable td{
    color: #393641!important;
}


/*--------------------------------------------------------
    ページトップボタン
--------------------------------------------------------*/
.el_pageTop{
    margin: auto;
    text-align: center;
    text-decoration: none;
    width: 80px;
    height: 80px;
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 850;
}
.el_pageTop a{
    background-color: #EEB4B0;
    border-radius: 50%;
    color: #fff;
    display: block;
    font-size: 11px;
    font-weight: 700;
    line-height: 95px;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    height: 100%;
}
.el_pageTop a::before{
    background-image: url("assets/img/icon_pageTop.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: block;
    margin: auto;
    text-align: center;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 10px;
    right: 0;
    left: 0;
}
.el_pageTop a:hover{
    opacity: 0.6;
}
@media (min-width:768px){
    .el_pageTop{
        right: 30px;
        bottom: 90px;
    }
}
@media (min-width:1200px){
    .el_pageTop{
        bottom: 110px;
    }
}

/*--------------------------------------------------------
    下部メニュー
--------------------------------------------------------*/
.bl_bottomMenu{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 850;
}
.bl_bottomMenu .el_tel,
.bl_bottomMenu .el_line{
    color: #fff;
    display: block;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    padding: 20px 10px;
    width: 100%;
}
.bl_bottomMenu .el_tel{
    background-color: #EEB4B0;
}
.bl_bottomMenu .el_line{
    background-color: #93BB8F;
}
.bl_bottomMenu .el_tel:hover,
.bl_bottomMenu .el_line:hover{
    background-color: #B4A58C;
    opacity: 1;
}
.bl_bottomMenu .el_tel::before,
.bl_bottomMenu .el_line::before{
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: '';
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    vertical-align: -3px;
}
.bl_bottomMenu .el_tel::before{
    background-image: url("assets/img/icon_tel-w.svg");
}
.bl_bottomMenu .el_line::before{
    background-image: url("assets/img/icon_line-w.svg");
}
@media (min-width:375px){
    .bl_bottomMenu .el_tel,
    .bl_bottomMenu .el_line{
        font-size: 14px;
    }
}
@media (min-width:500px){
    .bl_bottomMenu{
        width: 100%;
    }
}
@media (min-width:768px){
    .bl_bottomMenu{
        background-color: #fff;
        border-radius: 100px;
        max-width: 380px;
        padding: 15px 30px;
        left: auto;
        right: 30px;
        bottom: 20px;
        transform: none;
    }
    .bl_bottomMenu .el_tel,
    .bl_bottomMenu .el_line{
        background-color: transparent;
        color: #393641;
        font-weight: bold;
        text-align: left;
        text-decoration: none;
        transition: 0.3s;
        padding: 0;
        width: auto;
    }
    .bl_bottomMenu .el_line{
        border-left: 1px solid #EAE3D9;
        margin-left: 20px;
        padding-left: 20px;
    }
    .bl_bottomMenu .el_tel:hover,
    .bl_bottomMenu .el_line:hover{
        background-color: transparent!important;
    }
    .bl_bottomMenu .el_tel:hover{
        color: #EEB4B0;
    }
    .bl_bottomMenu .el_line:hover{
        color: #93BB8F;
    }
    .bl_bottomMenu .el_tel::before,
    .bl_bottomMenu .el_line::before{
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        content: '';
        display: inline-block;
        margin-right: 10px;
        width: 15px;
        height: 15px;
        vertical-align: -3px;
    }
    .bl_bottomMenu .el_tel::before{
        background-image: url("assets/img/icon_tel-p.svg");
    }
    .bl_bottomMenu .el_line::before{
        background-image: url("assets/img/icon_line-g.svg");
    }
}
@media (min-width:1200px){
    .bl_bottomMenu{
        bottom: 30px;
        max-width: 420px;
    }
    .bl_bottomMenu .el_tel,
    .bl_bottomMenu .el_line{
        font-size: 18px;
    }
    .bl_bottomMenu .el_tel::before,
    .bl_bottomMenu .el_line::before{
        width: 20px;
        height: 20px;
        vertical-align: -5px;
    }
}

/*--------------------------------------------------------
    フッター
--------------------------------------------------------*/
.ly_footer{
    background-color: #B4A58C;
    color: #fff;
    padding: 80px 30px 120px;
    position: relative;
    z-index: 30;
}
.ly_footer .bl_footerInner{
    max-width: 1440px;
    margin: 0 auto;
}
.ly_footer a{
    transition: 0.3s;
}
.ly_footer a:hover{
    opacity: 0.6;
}
@media (min-width:1024px){
    .ly_footer{
        margin-top: 120px;
    }
}
@media (min-width:1200px){
    .ly_footer{
        padding: 120px 0 80px;
    }
}

/*===== メニュー =====*/
.ly_footer .bl_gbCont{
    margin: 0 auto 60px;
    max-width: 1000px;
}
.ly_footer .bl_globalMenu li a{
    font-size: 16px;
}
@media (min-width:1200px){
    .ly_footer .bl_gbCont{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
        margin-bottom: 80px;
    }
    .ly_footer .bl_globalMenu li a{
        font-size: 18px;
    }
}
@media (min-width:1600px){
    .ly_footer .bl_gbCont{
        max-width: 1440px;
    }
}

/* メニュー 最後 */
.ly_footer .bl_globalMenu:last-child{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 60px;
    max-width: 320px;
}
.ly_footer .bl_globalMenu:last-child li{
    width: 100%;
}
.ly_footer .bl_globalMenu:last-child li+li{
    width: auto;
}
@media (min-width:1200px){
    .ly_footer .bl_globalMenu:last-child{
        display: block;
        margin-top: 0;
    }
    .ly_footer .bl_globalMenu:last-child li+li{
        width: 100%;
    }
}

/*===== 問診用 =====*/
.ly_footer.monshin{
    padding: 30px;
}
.ly_footer.monshin .el_copyright{
    text-align: center;
}


/*--------------------------------------------------------
    ヘルパー
--------------------------------------------------------*/
/* clear fix  */
.clear::before, .clear::after,
.hp_clearFix::before,
.hp_clearFix::after{
    content: "";
    display: table;
    table-layout: fixed;
}
.clear::after,
.hp_clearFix::after{
    clear: both;
}

/* フォントサイズ */
.hp_fzXS{
    font-size: 12px!important;
}
.hp_fzSm{
    font-size: 14px!important;
}
.hp_fzMd{
    font-size: 18px!important;
}
.hp_fzLg{
    font-size: 24px!important;
}
.hp_fzXL{
    font-size: 32px!important;
}
.hp_fzXXL{
    font-size: 40px!important;
}
.hp_fzXXXL{
    font-size: 50px!important;
}
.hp_fz20{
    font-size: 20px!important;
}

/* フォントウェイト */
.hp_fwBold{
    font-weight: bold!important;
}

/* フォントカラー */
.el_fcPink{
    color: #EEB4B0!important;
}
.el_fcGreen{
    color: #93BB8F!important;
}
.el_fcWhite{
    color: #fff!important;
}

/* 背景色 */
.bl_bgPink{
    background-color: #EEB4B0!important;
}
.bl_bgGreen{
    background-color: #93BB8F!important;
}
a.bl_bgPink:hover,
a.bl_bgGreen:hover{
    background-color: #B4A58C!important;
}

/* 上マージン */
.hp_mt1rem{
    margin-top: 1rem !important;
}
.hp_mt2rem{
    margin-top: 2rem !important;
}
.hp_mt3rem{
    margin-top: 3rem !important;
}
.hp_mt4rem{
    margin-top: 4rem !important;
}
.hp_mt5rem{
    margin-top: 5rem !important;
}
.hp_mt6rem{
    margin-top: 6rem !important;
}
.hp_mt7rem{
    margin-top: 7rem !important;
}
.hp_mt8rem{
    margin-top: 8rem !important;
}
.hp_mt9rem{
    margin-top: 9rem !important;
}
.hp_mt10rem{
    margin-top: 10rem !important;
}
.hp_mt0{
    margin-top: 0!important;
}

/* 下マージン*/
.hp_mb1rem{
    margin-bottom: 1rem !important;
}
.hp_mb2rem{
    margin-bottom: 2rem !important;
}
.hp_mb3rem{
    margin-bottom: 3rem !important;
}
.hp_mb4rem{
    margin-bottom: 4rem !important;
}
.hp_mb5rem{
    margin-bottom: 5rem !important;
}
.hp_mb6rem{
    margin-bottom: 6rem !important;
}
.hp_mb7rem{
    margin-bottom: 7rem !important;
}
.hp_mb8rem{
    margin-bottom: 8rem !important;
}
.hp_mb9rem{
    margin-bottom: 9rem !important;
}
.hp_mb10rem{
    margin-bottom: 10rem !important;
}
.hp_mb0{
    margin-bottom: 0 !important;
}

/* マージンなし */
.hp_mNone{
    margin: 0!important;
}

/* スペーサー */
.bl_spacer{
    margin: 120px auto;
    width: 100%;
}

/* 文章の揃え */
.hp_txtCenter{
    text-align: center !important;
}
.hp_txtLeft{
    text-align: left !important;
}
.hp_txtRight{
    text-align: right !important;
}
@media (min-width:768px){
    .el_centerTb{
        text-align: center;
    }
}
@media (min-width:1024px){
    .el_centerPc{
        text-align: center;
    }
}

/* 表示 */
.hp_pcOnly{
    display: none;
}
@media (min-width:768px){
    .hp_spOnly{
        display: none;
    }
    .hp_pcOnly{
        display: block;
    }
}
@media (min-width:1024px){
    .hp_none{
        display: none;
    }
}