/*ページトップ*/
#shoplist.sub-page_top {
    height: 25vw;
    max-height: 350px;
    background-image: url(../images/info/shop_header_bg.jpg);
}

/*ページ内リンク*/
.top_link {
    padding: 70px 0 30px;
    text-align: center;
}
.top_link a {
    display: inline-block;
    padding: 10px 60px;
    background: rgba(255,255,255,.7);
    border: solid 2px #095133;
    border-radius: 3px;
    margin: 0 16px;
    position: relative;
}
.top_link a::before {
    content: "";
    width: 8px;
    height: 8px;
    border: 0px;
    border-bottom: solid 3px #095133;
    border-right: solid 3px #095133;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 15%;
    margin-top: -8px;
    transition: .3s;
}
.top_link a h3 {
    margin: 0;
}
.top_link a:hover {
    background: #f6f6f6;
}
.top_link a:hover::before {
    margin-top: -5px;
}
/*日本地図*/
#map_container {
    position: relative;
    width: 100%;
    padding: 8vw 0;
    /* padding: 100px 0; */
    text-align: center;
}
#map_container img {
    width: 60%;
    /* margin: 0 auto; */
}
#map_container .textbox {
    position: absolute;
    top: 8vw;
    left: 13%;
    text-align: left;
}
#map_container .textbox h2 {
    color: #095133;
}
/*青果専門店ページのマップ*/
.gray_bg {
    background: #EFEFEF;
}
/*マップ内ボタン*/
a.map_area_btn {
    position: absolute;
    font-size: 17px;
    padding: 6px 13px;
    padding-right: 23px;
    color: white;
    background-color: #095133;
}
a.map_area_btn::before{
    content: "";
    width: 4px;
    height: 4px;
    border: 0px;
    border-top: solid 2px white;
    border-right: solid 2px white;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 45%;
    right: 11px;
    margin-top: -2px;
}
#hoku.map_area_btn {
    top: 38%;
    right: 19%;
}
#kanto.map_area_btn {
    top: 59%;
    right: 29%;
}
#chubu.map_area_btn {
    top: 48%;
    left: 40%;
}
#kansai.map_area_btn {
    top: 75%;
    left: 41%;
}
#koku.map_area_btn {
    top: 58%;
    left: 20%;
}
#kyusyu.map_area_btn {
    top: 79%;
    left: 13%;
}
.map_area_btn:hover {
    background-color: #249163;
}
@media screen and (max-width: 1024px) {
    .top_link a h3 {
        font-size: 16px;
    }
    a.map_area_btn {
        font-size: 16px;
    }
    #hoku.map_area_btn {
        right: 14%;
    }
    #kanto.map_area_btn {
        right: 26%;
    }
    #chubu.map_area_btn {
        left: 37%;
    }
    #koku.map_area_btn {
        left: 16%;
    }
    #kyusyu.map_area_btn {
        left: 11%;
    }
}
@media screen and (max-width: 980px) {
    .top_link a {
        padding: 10px 50px;
        padding-right: 60px;
        margin: 0 10px;
    }
    #map_container .textbox p {
        font-size: 14px;
    }
}
@media screen and (max-width: 780px) {
    #map_container .textbox {
        left: 7%;
    }
    a.map_area_btn {
        font-size: 15px;
    }
}

/*店舗一覧アコーディオンメニュー*/
#shoplist_title {
    padding: 30px 0 5vw;
    text-align: center;
}
#shoplist_title h1 {
    display: inline-block;
    margin: 0;
    font-size: 2.3vw;
    position: relative;
}
#shoplist_title h1::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 2px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: black;
}
.shoplist {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.shoplist .sub-wrap {
    width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    box-sizing: border-box;
}
.first-row {
    width: 100%;
    margin-bottom: 20px;
}
.content-wrap {
    width: 50%;
    box-sizing: border-box;
    margin: 0;
    margin-bottom: 20px;
}
.content-wrap.left {
    padding-right: 10px;
}
.content-wrap.right {
    padding-left: 10px;
}
#shop_drink.content-wrap {
    width: 40%;
    min-width: 290px;
    margin-bottom: 9.5vw;
}
.area_check{
    display: none;
}
.area_label {
    display: block;
    margin: 0;
    padding: 20px;
    font-size: 2vw;
    font-weight: bold;
    background: #e7d29e;
    border-bottom: solid 4px #927838;
    text-align: center;
    cursor: pointer;
    position: relative;
}
#shop_drink.content-wrap .area_label {
    padding: 15px;
    font-size: 15px;
    text-align: left;
}
.area_label::before,
.area_label::after {
    content: '';
    display: block;
    width: 15px;
    height: 2px;
    border-radius: 5px;
    background: black;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: 45px;
}
.area_label::after {
    transform: rotate(90deg);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.area_content {
    /* margin: 5px 10px; */
    margin: 0;
    padding: 0;
    list-style: none;
    background: #EFEFEF;
}
.area_content li {
    height: 0;
    margin: 0 10px;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.area_label:hover {
    transform: translateY(4px);
    border-bottom: solid 4px white;
}
.area_check:checked + .area_label {
    border: 0;
}
.area_check:checked + .area_label:hover {
    transform: translateY(0);
}
.area_check:checked + .area_label + .area_content li {
    /* height: 50px; */
    height: auto;
    padding: 20px 20px 0;
    opacity: 1;
}
.area_check:checked + .area_label + .area_content li.last_row {
    padding-bottom: 20px;
}
.area_check:checked + .area_label::after {
    transform: rotate(0);
}
.area_content li dt {
    padding-left: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #095133;
    background: white;
}
.area_content li dd {
    margin-top: 10px;
    margin-left: 20px;
    font-size: 14px;
}
.area_content li dd span {
    font-weight: bold;
}
.inMap_btn_wrap {
    text-align: right;
}
.inMap_btn {
    display: inline-block;
    position: relative;
    padding: 5px 50px;
    margin: 0 auto;
    margin-top: 15px;
    color: white;
    background: #095133;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
}
.inMap_btn::before {
    content: "";
    width: 4px;
    height: 4px;
    border: 0px;
    border-bottom: solid 2px white;
    border-right: solid 2px white;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 10%;
    margin-top: -4px;
    transition: .3s;
}
.inMap_btn:hover {
    filter:alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7; 
}
#office_honbu .area_content li {
    position: relative;
}
#office_honbu .inMap_btn_wrap {
    display: inline-block;
    position: absolute;
    top: 50px;
    right: 40px;
}
/*リスト内地図*/
.inMap_content_wrap {
    width: 70%;
    max-width: 630px;
    min-width: 270px;
    margin: 50px auto 15px;
    text-align: center;
    display: none;
    /* opacity: 0;
    visibility: hidden; */
}
.inMap_content_wrap.show {
    display: block;
    /* opacity: 1;
    visibility: visible; */
}
.inMap_content_wrap iframe {
    width: 100%;
    height: 15vw;
    max-height: 350px;
    border: 0;
}
#office_honbu .inMap_content_wrap {
    min-width: 450px;
}
#office_honbu .inMap_content_wrap iframe {
    height: 35vw;
    min-height: 300px;
}

@media screen and (min-width: 1300px) {
    #shoplist_title h1 {
        font-size: 29px;
    }
}
@media screen and (min-width: 1000px) {
    .area_label {
        font-size: 20px;
    }
    #shop_drink.content-wrap .area_label {
        font-size: 18px;
    }
}
@media screen  and (max-width: 980px) {
    #shoplist_title h1 {
        font-size: 23px;
    }
}
@media screen and (max-width: 780px) {
    .content-wrap {
        width: 100%;
        margin-bottom: 10px;
    }
    #shop_drink.content-wrap {
        width: 100%;
        max-width: 460px;
    }
    .first-row {
        margin-bottom: 10px;
    }
    .content-wrap.left, .content-wrap.right {
        padding: 0;
    }
    #office_honbu .inMap_btn_wrap {
        display: block;
        position: initial;
    }
    .area_label {
        font-size: 16px;
    }
    
    .area_content li dt {
        font-size: 16px;
    }
    .inMap_content_wrap {
        width: 100%;
        min-width: 450px;
    }
    .inMap_content_wrap iframe {
        height: 35vw;
        min-height: 300px;
    }
}
@media screen and (max-width: 700px) {
    .top_link {
        display: none;
    }
    #map_container.shop {
        display: none;
    }
    #shoplist_title h1 {
        font-size: 20px;
    }
}
@media screen and (max-width: 600px) {
    .inMap_content_wrap, #office_honbu .inMap_content_wrap {
        min-width: initial;
        min-width: auto;
    }
    .inMap_content_wrap iframe, #office_honbu .inMap_content_wrap iframe {
        height: 45vw;
        min-height: initial;
        min-height: auto;
    }
}
@media screen and (max-width: 500px) {
    #shoplist_title {
        padding: 60px 0 40px;
    }
    .area_label {
        padding: 3.4vw;
    }
    .area_content li {
        padding: 0 10px;
    }
    .area_check:checked + .area_label + .area_content li {
        padding: 20px 10px 0;
    }
    .area_content li dd {
        margin-left: 15px;
        font-size: 13px;
    }
}
@media screen and (max-width: 400px) {
    .area_label {
        font-size: 14px;
    }
    .area_label::before, .area_label::after {
        width: 12px;
        right: 30px;
    }
    .area_content li dt {
        font-size: 14px;
    }
    .area_content li dd {
        margin-left: 10px;
        font-size: 12.5px;
    }
    .inMap_btn_wrap {
        text-align: cente;
    }
}