@charset "utf-8";
/*============================================================
水平線
<div class="hr so_1 t_01"></div>
============================================================*/
/*線のスタイル＆太さ*/
.sen.solid_1px{
    border-bottom-style: solid;
    border-bottom-width: 1px;
}
.sen.dashed_1px{
    border-bottom-style: dashed;
    border-bottom-width: 1px;
}
.sen.dotted_1px{
    border-bottom-style:dotted;
    border-bottom-width: 1px;
}
/*線の色*/
.sen.color_01{
    border-bottom-color:rgba(0, 0, 0, 0.3);
}

/*
地図
---------------------------------------------------------*/
/*地図*/
.map-box {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.map{
    width: 100%; 
    overflow: hidden;
    height: 350px;
}

.bigmap-btn {
    text-align: center;
    width: 100%;
    display: inline-block;
    background-color: #ffffff;
    border-top: solid .1rem #d0d0d0;
    color: #e84a13;
    padding: 1em;
    cursor: pointer;
    transition: .3s ease-out;
}

.bigmap-btn:hover{
    background-color: #e7a16e;
    color: #fff;
}

.page-date {
    color: #a5b5b7;
}

/*
吹き出し
-----------------------------------------*/
.balloon {
    width: 100%;
    display: flex;
}
.balloon .faceicon {
    margin-right: -10rem;
    width: 105px;
    height: 105px;
    overflow: hidden;
    border: solid 3px #f0d3c3;
    border-radius: 50%;
    position: relative;
}
.balloon .faceicon img{
    position: absolute;
    top:6px;
    left: -6px;
    width: 115%;
}
.balloon .says {
    display: flex;
    align-items: center;
    position: relative; 
    margin: 10px 0 0 120px;
    padding: 1.5rem 13px;
    border-radius: 12px;
    background: #fae7dd;
    color: #e65a0f;
    flex: 1;
}
.balloon .says:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 24px; 
    left: -24px;
    border: 12px solid rgba(255, 255, 255, 0);
    border-right: 12px solid #fae7dd;
}
.balloon .says p {
    margin: 0;
    padding: 0;
    line-height: 1.8;
}
@media print,screen and (max-width: 500px) {
    .balloon .faceicon {
        margin-right: -105px;
        width: 80px;
        height: 80px;
    }
    .balloon .faceicon img{
        top:3px;
        left: -5px;
        width: 115%;
    }
    .balloon .says {
        margin: 5px 0 0 120px;
    }
    .balloon .says p {
        font-size: 1.4rem;
    }
}

/*
詰め物・被せ物の種類 星の評価 Add 230307 tom
---------------------------------------------------------*/
.star5 {
    position: relative;
    z-index: 0;
    display: inline-block;
    white-space: nowrap;
    color: #CCCCCC;
}
.star5:before, .star5:after{
    content: '★★★★★';
}
.star5:after{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #e39424;
}
.star5[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5[data-rate="4.5"]:after{ width: 90%; } /* 星4.5 */
.star5[data-rate="4"]:after{ width: 80%; } /* 星4 */
.star5[data-rate="3.5"]:after{ width: 70%; } /* 星3.5 */
.star5[data-rate="3"]:after{ width: 60%; } /* 星3 */
.star5[data-rate="2.5"]:after{ width: 50%; } /* 星2.5 */
.star5[data-rate="2"]:after{ width: 40%; } /* 星2 */
.star5[data-rate="1.5"]:after{ width: 30%; } /* 星1.5 */
.star5[data-rate="1"]:after{ width: 20%; } /* 星1 */
.star5[data-rate="0.5"]:after{ width: 10%; } /* 星0.5 */
.star5[data-rate="0"]:after{ width: 0%; } /* 星0 */



