.menu_bg {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    height: clamp(160px, 25vw, 300px);
    background-image: url(../img/shop-overview_bg.jpg);
    background-size: cover;
    background-position: center;
    background-color:rgba(255, 255, 255, .5);
    background-blend-mode:lighten;
    position: relative;
}
.page_title {
    font-size: clamp(20px ,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);
}


/* 動物取扱業標識 table */
#salon_table {
    table-layout: fixed;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}
#salon_table .title_box {
    margin-bottom: 1em;
}
#salon_table .container_title {
    text-align: center;
    margin-bottom: 0;
}
#salon_table .container_title_small {
    font-size: 1.2rem;
    text-align: center;

    @media (min-width: 768px) {
        font-size: 1.6rem;
    }
}

table  {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}
table th, table td {
    display: block;
    background-color: #fff;
    padding: .5em 1em;
}
table th {
    color: #fff;
    
    letter-spacing: .02em;
}
@media screen and (min-width: 768px) {
    table th, table td {
        display: table-cell;
        border: solid 1px #979797;
        padding: 1em;
    }
}
table th {
    background-color: #a88646;
}

/* Google Map */
.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;
    padding: 1em 1.5em;
}
.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;
}