/***********************************
* 共通
************************************/
/* pc基準 */
html, body {
    font-size: 22px;
}
/* 余白 */
#contents {
    padding: 1rem 20%;
}
.d_block {
    margin: 1rem auto 2rem;
}
/* pcヘッダー */
#header {
    width: 100%;
    height: 80px;
    padding: .5rem 20%;
}
h1.logo {
    font-size: 2.5rem;
    width: auto;
    height: auto;
    text-align: center;
    line-height: 1.2;
}
h1.logo span {
    font-size: 1rem;
    font-family: "Noto Serif JP", "Noto Sans JP";
    margin: 0 0 0 1rem;
}
/* ページメニュー */
.h_menu {
    margin-left: auto;
    line-height: 1;
    list-style: none;
}
.h_menu li {
    text-align: center;
    height: 100%;
    padding: 0 .5rem .2rem;
    margin-left: 1rem;
}
.h_menu ul li:last-child {
    border-right: none;
}
.h_menu li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    /* font-size: .8rem; */
    color: #ffffff;
    text-decoration: none;
    transition: .2s;
}
.h_menu li a:hover {
    color: #F8AB06;
}
@media screen and (max-width: 1366px) {
    /* タブレット基準 */
    html, body {
        font-size: 20px;
    }
    /* タブレット */
    #contents {
        padding: 1rem 5%;
    }
    #header {
        padding: .5rem 5%;
    }
    #header {
        height: 70px;
        padding: .5rem 5%;
    }
    /* ページメニュー */
    .h_menu li {
        padding: 0 .5rem .2rem;
        margin-left: .5rem;
    }
}
@media screen and (max-width: 767px) {
    /* 小さめのタブレットはスマホ同様にする */
    h1.logo {
        width: 100%;
        font-size: 2.3rem;
        line-height: 1;
    }
    #header {
        height: 85px;
    }
    .h_menu {
        width: 100%;
        margin-left: 0;
        justify-content: space-around;
    }
    .h_menu li {
        text-align: center;
        height: 100%;
        width: calc(100% / 3);
        padding: 0 0.5rem 0.2rem;
        margin-left: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.8);
    }
}
/* フッター */
#footer {
    padding: .5rem 20%;
    width: 100%;
    color: #ffffff;
}
@media screen and (max-width: 1366px) {
    #footer {
        padding: .5rem 5%;
    }
}
/* 見出し */
h2 {
    font-size: 1.3rem;
    position: relative;
    padding: 0.4rem 1rem;
    background: linear-gradient(to right, #7F001B, #F8AB06);
    color: #ffffff;
    margin-bottom: .5rem;
}
/* 下線見出し */
h3 {
    font-size: 1.3rem;
    font-weight: 900;
    position: relative;
    padding: 0.2rem .5rem;
    margin-bottom: .5rem;
}
.h3::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #7F001B, #F8AB06);
    position: absolute;
        top: 100%;
        left: 0;
}

/***********************************
* スライドショー
************************************/
#main_view {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 650px;
    padding-top: 70px;
    margin-bottom: 0;
    /* overflow: hidden; */
}
/* スライド */
.slide_wrap {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}
#slider {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}
@media screen and (max-width: 1023px) {
    #main_view {
        height: 50vh;
        min-height: 450px;
        padding-top: 70px;
    }
}
/***********************************
* メッセージ
************************************/
#message {
    margin: 1rem 0;
}

/***********************************
* 営業時間
************************************/
.time {
    width: 100%;
    margin: 1rem 0;
    text-align: left;
}
.time th {
    width: 5rem;
    min-width: 5rem;
}

/* シャンプー写真 */
.shampoo .flex-left {
    width: 70%;
}
.shampoo .flex_img {
    width: 30%;
    padding-left: 1rem;
}
.shampoo .flex_img img {
    width: 100%;
}
/***********************************
* 料金メニュー
************************************/
.price_menu {
    width: calc(50% - 1rem);
    margin: .5rem 0;
    border-collapse: collapse;
}
.price_menu.tbl_left {
    margin-right: 1rem;
}
.price_menu.tbl_right {
    margin-left: 1rem;
}
.price_menu th {
    /* 料金メニュー内 小見出し */
    border-bottom: 5px double #7F001B;
    height: 1.5rem;
}
.price_menu tbody tr {
    border-bottom: 1px dotted #7F001B;
}
.price_menu thead tr th,
.price_menu tbody tr td {
    padding: .5rem 0;
}
.price_menu td.price {
    width: 25%;
    text-align: right;
    font-size: 1.2rem;
}
.price_menu th, .sub_th {
    font-size: 1.1rem;
    font-weight: 900;
}
@media screen and (max-width: 1023px) {
    .price_menu {
        width: 100%;
        margin: .5rem 0;
        border-collapse: collapse;
    }
    .price_menu.tbl_left {
        margin-right: 0;
    }
    .price_menu.tbl_right {
        margin-left: 0;
    }
}
/***********************************
* 交通アクセス
************************************/
#access {
    padding-bottom: 2rem;
}
/* 画像配置 */
.map_flex .flex-left.map {
     width: 60%;
}
.map_flex .flex_img {
    width: 40%;
}

/* 画像横並びver */
.map_imgs {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    align-items: flex-start;
}
.map_imgs img {
    width: 50%;
    padding: 5px;
}