@charset "utf-8";
/*============================================================
水平線
<div class="hr so_1 t_01"></div>
============================================================*/
/*線のスタイル＆太さ*/
.hr.so_1{
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
.hr.so_2{
    border-bottom-width: 2px;
    border-bottom-style: solid;
}
.hr.da_1{
    border-bottom-width: 1px;
    border-bottom-style: dashed;
}
.hr.da_2{
    border-bottom-width: 2px;
    border-bottom-style: dashed;
}
.hr.do_1{
    border-bottom-width: 1px;
    border-bottom-style:dotted;
}
.hr.do_2{
    border-bottom-width: 2px;
    border-bottom-style:dotted;
}
/*線の色*/
.hr.t_01{
    border-bottom-color:rgba(0, 0, 0, 0.05);
}
.hr.t_02{
    border-bottom-color:rgba(0, 0, 0, 0.15);
}
.hr.t_03{
    border-bottom-color:rgba(0, 0, 0, 0.25);
}

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

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

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

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

/*
.page-date {
    color: #3642bf;
}
*/

/*
吹き出し
-----------------------------------------*/
.balloon {
    width: 100%;
    display: flex;
}
.balloon .faceicon {
    margin-right: -12rem;
    width: 105px;
    height: 105px;
    overflow: hidden;
/*    border: solid 3px #f0d3c3;*/
/*    border-radius: 50%;*/
    position: relative;
/*    background-color: #000000*/
}
.balloon .faceicon img{
    position: absolute;
    top:50%;
    left: 40%;
    transform: translate(-50%,-50%);
    width: 100%;
}
.balloon .says {
    display: flex;
    align-items: center;
    position: relative; 
    margin: 00px 0 0px 120px;
    padding: 15px 15px;
    border-radius: 12px;
    background: #f8ecdd;
    color: #72531a;
    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 #f8ecdd;
}
.balloon .says p {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
@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;
    }
*/
}




