@charset "utf-8";

/*
===========================================================
   # 電話をかける｜スマホ画面下部（スマホのみ有効）
===========================================================
*/
/* スマホ以外で電話自動発信を無効にする */


/* 
===========================================================
   # お電話でお問い合わせ｜Contact
===========================================================
*/
/* 前後に線 */
.phone{
    display: flex;
    align-items: center; /* 垂直中心 */
    justify-content: center; /* 水平中心 */
    white-space: nowrap;
}
.phone:before, .phone:after {
    border-top: 1px solid #bbb;
    content: "";
    width: 100%; /* 線の長さ */
}
.phone:before {
    margin-right: 1rem; /* 文字の右隣 */
}
.phone:after {
    margin-left: 1rem; /* 文字の左隣 */
}
.phone-number{
    font-size: 30px;
    letter-spacing: 0.02em;
}

.hours{
    display: inline-block;
    padding: 2px 18px 1px;
    background: #22a0dd;
    color: #fff;
    border-radius: 999px;
}

@media (min-width: 992px) {
    .phone-number{
        font-size: 34px;
    }
    .contact-mail{
        margin-top: 35px;
    }
}

/* 
===========================================================
   # お問い合わせはこちら｜Contact
===========================================================
*/
.contact-wrap{
    position: relative;
    background: #fcfbee;
    text-align: center;
    border: 2px solid #8da9ff;
    border-radius: 12px;
    padding: 15px 0;
    margin-bottom: 10px;
    overflow: hidden;
    z-index: 1;
}
.contact-title{
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
    z-index: 1;
}
.contact-number{
    font-size: 25px;
    color: #222;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    z-index: 1;
}
.contact-number > i{
    color: #0d61a0;
}
.contact-time{
    background: #fff;
    font-size: 14px;
    color: #555;
    letter-spacing: 0.1em;
    border: 1px dashed #ccc;
    padding: 6px 0;
    margin: 0 auto;
    max-width: 280px;
    z-index: 1;
}
.contact-bottom{
    font-size: 14px;
    padding: 12px 0 0;
    margin: 0 auto;
    z-index: 1;
}

/* 
===========================================================
   # クリニック情報｜Clinic Info
===========================================================
*/
#info dl{
    border-bottom: ;
}

#info dl dt{
    width: 100%;
    display: inline-block;
    background: #3a4890;
    color: #fff;
    text-align: center;
    margin: 5px;
    margin-right: 0;
    margin-left: 0;
    padding: 6px;
    border-radius: 20px;
}
#info dl dd{
    margin: 0;
    padding: 5px 0 10px;
    border-top: none;
    text-align: center;
    font-weight: bold;
}
@media (min-width: 992px){
    #info dl dt{
        width: 135px;
        margin: 0;
        float: left;
        clear: left;
        font-size: 1rem;
        font-weight: bold;
        padding: 5px 25px;
/*        margin-right: 15px; */
    }
    #info dl dd{
        margin: 0 0 10px 150px;
        padding-top: 5px;
        font-size: 1.1rem;
        text-align: left;
    }
}


/* 
===========================================================
   # 代表メッセージ
===========================================================
*/
@media only screen and (max-width: 991px) {
    .president{
	    position: relative;
	    overflow: hidden;
	    margin: 0 auto;
	    width: 100%;
	    padding-top: 60%;/* 90%, 80%, 70%, 60% */
	    padding-bottom: 10%;
    }
    .president img{
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

