@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        margin-right: auto;
        margin-left: auto;
    }
}

.menu_bg {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    height: clamp(160px, 25vw, 300px);
    background-image: url(../img/access_bg.jpg);
    background-size: cover;
    background-position: center;
    background-color:rgba(255, 255, 255, .6);
    background-blend-mode:lighten;
    position: relative;
}
.page_title {
    font-size: clamp(24px ,3vw, 30px);
    color: #fff;
    text-shadow: .1em .1em .2em #000, 
                 .1em .1em .2em #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.small_title {
    font-size: clamp(12px , 1.5vw, 18px);
}


/* サロン案内 */
#salon_info h2 {
    margin-bottom: .5em;
}
.image_wrap {
    margin-bottom: 1em;
}
.image_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

table.text_wrap {
    font-size: 1.2rem;
    text-align: left;
    border-collapse: collapse;
}
.text_wrap th,
.text_wrap td {
    padding: .5em 1em;
}

@media (min-width: 768px) {
    .flex_wrap {
        display: flex;
        gap: 1em
    }
    .image_wrap {
        flex: 1;
        margin-bottom: 0;
    }

    .text_wrap {
        flex: 1;
    }
}
@media (min-width: 1024px) {
    table.text_wrap {
        font-size: 1.6rem;
    }
}


/* Google Map */
.map {
    margin-top: 1em;
}

.map .container{
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.map iframe {
    width: 100%;
    aspect-ratio: 3/4;

    @media (min-width: 768px) {
        aspect-ratio: 4/3;
    }
    @media (min-width: 1024px) {
        aspect-ratio: 16/9;
    }

}

.btn_wrap {
    text-align: center;
    margin-top: 1em;
}
.google_btn {
    color: #fff;
    background-color:#a88646;
    border-radius: .2em;
    padding: 1em 1.6em;
    box-shadow: 0 .15em #b9b9b9;
}
.google_btn::after {
    content: '';
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    background-image: url(../../img/link-wh.png);
    background-size: cover;
    vertical-align: -.2em;
}