@charset "UTF-8";

/* ▼▼▼ ショップガイド一覧
=====================================*/
/* エキマルシェ・クロスト区分 */
#shop_division_tab {
    margin: 0 auto;
    max-width: 500px;
    display: flex;
    justify-content: center;
    column-gap: 3px;
}

#shop_division_tab li {
    text-align: center;
    background-color: #F6F0F3;
    width: calc(100% / 2);
    border-radius: 10px 10px 0 0;
    line-height: 1.3;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#shop_division_tab li.active {
    color: #fff;
    background-color: #932F27;
}

.division_page:not(.active) {
    display: none;
}

.search_inner_wrap {
    background-color: #F6F0F3;
    padding: 50px 0;
}


/* 検索 */
#search_tub {
    margin: 0 auto 40px;
    max-width: 800px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#search_tub li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% /3);
    height: 70px;
    font-weight: 700;
    text-align: center;
    position: relative;
    cursor: pointer;
}

#search_tub li.active {
    color: #FFF;
    background-color: #932F27;
}

#search_tub li:not(.active) {
    color: #932F27;
    background-color: #FFF;
}

#search_area .seach_inner,
#search_area .seach_inner .search_page {
    display: none;
}

#search_area .seach_inner.active {
    display: block;
}

#search_area .seach_inner .search_page.active {
    display: block;
}

/* チェックリスト */
.check_title {
    margin-bottom: 20px;
    padding-left: 8px;
    border-left: #932F27 2px solid;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
}

.check_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.check_list li {
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
}

/* チェックボックス */
input[type=checkbox] {
    display: none;
}

.checkbox01-parts {
    padding-left: 30px;
    position: relative;
    margin-right: 5px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    padding: 5px 0;
    margin-bottom: 10px;
}

.checkbox01-parts::before {
    content: "";
    display: inline-block;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    border: 1px solid #999;
    border-radius: 4px;
    background: #FFF;
    vertical-align: middle;
}

input[type=checkbox]:checked+.checkbox01-parts {}

input[type=checkbox]:checked+.checkbox01-parts::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 14px;
    left: 7px;
    width: 4px;
    height: 9px;
    transform: rotate(40deg);
    border-bottom: 2px solid #E5012D;
    border-right: 2px solid #E5012D;
}

.checkbox01-parts span {
    vertical-align: middle;
}

/* フリーワード検索 */
.search_box_wrap {
    padding: 50px 0;
}

.search_box {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    padding-right: 58px;
    background: #FFF;
    border: #CCC 1px solid;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.search_box input {
    width: 100%;
    border: none;
    outline: none !important;
    padding: 20px 10px 20px 30px;
    font-size: 16px;
}

.search_box button.search_btn {
    width: 58px;
    height: 58px;
    background-color: #fff;
    background-image: url(https://fr.osaka.ekimaru.com/common/img/icon_search_r.svg);
    -webkit-background-size: 18px;
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center center;
    border: none;
    border-radius: 0;
    outline: none !important;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

/* 頭文字検索　ポップアップ */
.overlay_wrap {
    display: none;
    background: rgba(0, 0, 0, .8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 99999;
}

.overlay_wrap.active {
    display: block;
}

.popup_box {
    background: #fff;
    padding: 30px 25px;
    max-width: 350px;
    width: 100%;
    max-height: 90%;
    position: absolute;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    text-align: right;
    overflow-x: scroll;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
}

.popup_box::-webkit-scrollbar {
    /* Chrome, Safari 対応 */
    display: none;
}

.popup_box .close_btn {
    display: inline-block;
    font-weight: bold;
    margin: 0 0 20px;
    cursor: pointer;
    font-size: 14px;
}

.initial {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px 30px;
    font-size: 18px;
}

.initial:not(:last-of-type) {
    margin-bottom: 10px;
}

.initial li {
    margin: 0 5px 0;
    width: 50px;
    position: relative;
}

.initial li::before {
    content: "";
    width: 100%;
    padding-top: 100%;
    display: block;
}

.initial li a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    background-color: #FAFAFA;
    color: #000000;
    font-weight: 500;
    position: absolute;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

.initial li.select a,
.initial li a:hover {
    border: 1px solid #A73021;
    background: #A73021;
    color: #fff;
    opacity: 1;
}

/* 検索結果 */
#result_area {
    padding: 30px 0 70px;
}

.result_title {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
}

.result_title .result_num {
    display: inline-block;
    margin: 0 0.25em;
    font-size: 50px;
}

/* ショップリスト */
.shop_list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.shop_list li {
    -webkit-flex: 0 0 23.5%;
    -ms-flex: 0 0 23.5%;
    flex: 0 0 23.5%;
    width: 23.5%;
    max-width: 23.5%;
    margin-bottom: 40px;
}

.shop_list li:not(:nth-child(4n)) {
    margin-right: 2%;
}

.shop_list a.list_inner {
    display: block;
    height: 100%;
}

.shop_list .img_wrap {
    display: block;
    margin-bottom: 10px;
    padding-top: 100%;
    border: #EEEEEE 1px solid;
    border-radius: 10px;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.shop_list .shop_name_wrap {
    margin-bottom: 10px;
    padding-left: 35px;
    position: relative;
}

.shop_name_wrap .shop_num,
.shop_table .shop_num {
    display: inline-block;
    margin-right: 5px;
    border-radius: 50%;
    background: #000;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    vertical-align: top;
}

.shop_name_wrap .shop_name {
    color: #932F27;
    font-weight: bold;
    vertical-align: top;
}

.shop_list .shop_name_wrap .shop_num {
    min-width: 26px;
    font-size: 12px;
    line-height: 26px;
    position: absolute;
    top: 0;
    left: 0;
}

.shop_list .shop_name_wrap .shop_name {
    font-size: 16px;
}

.shop_list .shop_txt {
    font-size: 12px;
}

#map_area {
    padding: 0;
}

/* 店舗詳細ページ */
.shop_logo_wrap {
    padding: 20px;
}

.shop_logo_wrap .shop_logo {
    width: 170px;
    height: 72px;
    margin: 0 auto;
    text-align: center;
}

.shop_wrap {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto 90px;
}

.shop_wrap .img_wrap {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
}

.shop_wrap .txt_wrap {
    -webkit-flex: 0 0 45%;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    width: 45%;
    max-width: 45%;
}

/* 店舗画像 */
.shop_img_main:not(:last-child) {
    margin-bottom: 20px;
}

.shop_img_main .slide-item .slide-item_img {
    padding-top: 100%;
}

.shop_img_sub {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

.shop_img_sub .slideThumb {
    -webkit-flex: 0 0 21.1%;
    -ms-flex: 0 0 21.1%;
    flex: 0 0 21.1%;
}

.shop_img_sub .slideThumb:not(:nth-child(4n)) {
    margin-right: 5.2%;
}

.shop_img_sub .slideThumb .slideThumb_img {
    padding-top: 100%;
    cursor: pointer;
}

/* 店舗情報 */
.shop_wrap .shop_name_wrap {
    margin-bottom: 30px;
    position: relative;
    padding-left: 50px;
}

.shop_table .shop_num {
    min-width: 26px;
    font-size: 14px;
    line-height: 26px;
}

.shop_wrap .shop_name_wrap .shop_num {
    min-width: 40px;
    font-size: 20px;
    line-height: 40px;
    position: absolute;
    top: 0;
    left: 0;
}

.shop_wrap .shop_name_wrap .shop_name {
    font-size: 32px;
    line-height: 40px;
}

.shop_info {
    margin-bottom: 25px;
}

.shop_tag_list {
    margin-bottom: 25px;
}

.shop_tag_list li {
    display: inline-block;
    min-width: 125px;
    margin: 0 6px 8px 0;
    padding: 0 5px;
    border: #BE2626 1px solid;
    border-radius: 12px;
    color: #BE2626;
    font-size: 12px;
    text-align: center;
    line-height: 22px;
}

.shop_table {
    width: 100%;
    margin-bottom: 30px;
}

.shop_table th,
.shop_table td {
    padding: 24px 0 13px;
    border-bottom: #CCCCCC 1px solid;
    vertical-align: top;
}

.shop_table th {
    width: 100px;
    color: #932F27;
}

.shop_table td {
    width: calc(100% - 100px);
    word-wrap: break-word;
    word-break: break-all;
}

.shop_table .shop_floor {
    display: inline-block;
    vertical-align: middle;
}

.shop_table .shop_num {
    margin: 0 20px 0 7px;
    vertical-align: middle;
}

.shop_table a.map_btn {
    display: inline-block;
    padding: 0 20px;
    border: #000 1px solid;
    border-radius: 14px;
    font-weight: bold;
    vertical-align: middle;
    line-height: 26px;
}

.shop_table .shop_table_floor td,
.shop_table .shop_table_sns td {
    padding-top: 20px;
}

.shop_sns_list li {
    display: inline-block;
    vertical-align: middle;
}

.shop_sns_list li:not(:last-child) {
    margin-right: 20px;
}

.icon_sns_link {
    display: block;
    width: 30px;
    height: 30px;
}

.icon_sns_link.icon_sns_link_ig {
    background: url(https://fr.osaka.ekimaru.com/common/img/shopguide/icon_sns_ig.svg) no-repeat center center/23px;
}

.icon_sns_link.icon_sns_link_tw {
    background: url(https://fr.osaka.ekimaru.com/common/img/shopguide/icon_sns_tw.svg) no-repeat center center/27px;
}

.icon_sns_link.icon_sns_link_fb {
    background: url(https://fr.osaka.ekimaru.com/common/img/shopguide/icon_sns_fb.svg) no-repeat center center/24px;
}

.shop_order {
    margin-bottom: 40px;
}

/* フロアマップ */
.map_wrap {
    position: relative;
}

.map_wrap img {
    vertical-align: middle;
}

.map_wrap .map_pin {
    width: 50px;
    height: 64px;
    background: url(https://fr.osaka.ekimaru.com/common/img/shopguide/icon_pin.png) no-repeat center bottom/contain;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.map_wrap .map_pin.map_pin_R01 {
    left: 14.7%;
    bottom: 32.0%;
}

.map_wrap .map_pin.map_pin_R02 {
    left: 14.4%;
    bottom: 42.0%;
}

.map_wrap .map_pin.map_pin_R03 {
    left: 14.4%;
    bottom: 48.0%;
}

.map_wrap .map_pin.map_pin_R04 {
    left: 14.4%;
    bottom: 52.5%;
}

.map_wrap .map_pin.map_pin_R05 {
    left: 14.4%;
    bottom: 62.5%;
}

.map_wrap .map_pin.map_pin_R06 {
    left: 22.3%;
    bottom: 62.5%;
}

.map_wrap .map_pin.map_pin_R07 {
    left: 22.3%;
    bottom: 51.0%;
}

.map_wrap .map_pin.map_pin_R08 {
    left: 22.3%;
    bottom: 43.0%;
}

.map_wrap .map_pin.map_pin_R09 {
    left: 62.2%;
    bottom: 30.0%;
}

.map_wrap .map_pin.map_pin_R10 {
    left: 53.0%;
    bottom: 31.0%;
}

.map_wrap .map_pin.map_pin_R11 {
    left: 51.1%;
    bottom: 37.0%;
}

.map_wrap .map_pin.map_pin_R12 {
    left: 45.0%;
    bottom: 54.0%;
}

.map_wrap .map_pin.map_pin_R13 {
    left: 39.3%;
    bottom: 52.5%;
}

.map_wrap .map_pin.map_pin_R14 {
    left: 35.5%;
    bottom: 45.5%;
}

.map_wrap .map_pin.map_pin_R15 {
    left: 33.2%;
    bottom: 52.5%;
}

.map_wrap .map_pin.map_pin_R16 {
    left: 30.1%;
    bottom: 58.0%;
}

.map_wrap .map_pin.map_pin_R17 {
    left: 34.3%;
    bottom: 58.0%;
}

.map_wrap .map_pin.map_pin_R18 {
    left: 39.3%;
    bottom: 58.0%;
}

.map_wrap .map_pin.map_pin_R19 {
    left: 32.5%;
    bottom: 68.0%;
}

.map_wrap .map_pin.map_pin_R20 {
    left: 38.7%;
    bottom: 69.0%;
}

.map_wrap .map_pin.map_pin_R21 {
    left: 38.7%;
    bottom: 74.0%;
}

.map_wrap .map_pin.map_pin_R22 {
    left: 45.0%;
    bottom: 70.0%;
}

.map_wrap .map_pin.map_pin_R23 {
    left: 48.7%;
    bottom: 70.0%;
}

.map_wrap .map_pin.map_pin_R24 {
    left: 43.6%;
    bottom: 79.5%;
}

.map_wrap .map_pin.map_pin_R25 {
    left: 48.2%;
    bottom: 79.5%;
}

.map_wrap .map_pin.map_pin_F01 {
    left: 55.5%;
    bottom: 72.5%;
}

.map_wrap .map_pin.map_pin_F02 {
    left: 60.5%;
    bottom: 72.5%;
}

.map_wrap .map_pin.map_pin_F03 {
    left: 60.5%;
    bottom: 69.5%;
}

.map_wrap .map_pin.map_pin_F04 {
    left: 60.5%;
    bottom: 67.0%;
}

.map_wrap .map_pin.map_pin_F05 {
    left: 57.5%;
    bottom: 67.0%;
}

.map_wrap .map_pin.map_pin_F06 {
    left: 54.0%;
    bottom: 67.0%;
}

.map_wrap .map_pin.map_pin_F07 {
    left: 58.3%;
    bottom: 59.0%;
}

.map_wrap .map_pin.map_pin_F08 {
    left: 63.0%;
    bottom: 52.5%;
}

.map_wrap .map_pin.map_pin_F09 {
    left: 59.9%;
    bottom: 52.5%;
}

.map_wrap .map_pin.map_pin_F10 {
    left: 56.7%;
    bottom: 52.5%;
}

.map_wrap .map_pin.map_pin_F11 {
    left: 53.7%;
    bottom: 52.5%;
}

.map_wrap .map_pin.map_pin_F12 {
    left: 41.4%;
    bottom: 45.5%;
}

.map_wrap .map_pin.map_pin_F13 {
    left: 47.7%;
    bottom: 44.0%;
}

.map_wrap .map_pin.map_pin_F14 {
    left: 53.3%;
    bottom: 45.5%;
}

.map_wrap .map_pin.map_pin_F15 {
    left: 56.2%;
    bottom: 45.5%;
}

.map_wrap .map_pin.map_pin_F16 {
    left: 62.2%;
    bottom: 40.0%;
}

.map_wrap .map_pin.map_pin_F17 {
    left: 68.1%;
    bottom: 41.5%;
}

.map_wrap .map_pin.map_pin_F18 {
    left: 53.0%;
    bottom: 22.5%;
}

.map_wrap .map_pin.map_pin_F19 {
    left: 61.7%;
    bottom: 79.5%;
}

.map_wrap .map_pin.map_pin_G01 {
    left: 33.6%;
    bottom: 39.0%;
}

.map_wrap .map_pin.map_pin_G02 {
    left: 71.0%;
    bottom: 65.0%;
}

.map_wrap .map_pin.map_pin_G03 {
    left: 70.8%;
    bottom: 75.0%;
}

.map_wrap .map_pin.map_pin_G04 {
    left: 89.6%;
    bottom: 89.0%;
}

.map_wrap .map_pin.map_pin_G05 {
    left: 82.0%;
    bottom: 20.8%;
}

.map_wrap .map_pin.map_pin_S01 {
    left: 12.0%;
    bottom: 71.5%;
}

.map_wrap .map_pin.map_pin_S02 {
    left: 54.8%;
    bottom: 79.5%;
}

.map_wrap .map_pin.map_pin_S03 {
    left: 70.0%;
    bottom: 85.3%;
}

.map_wrap .map_pin.map_pin_S04 {
    left: 72.8%;
    bottom: 20.8%;
}

.map_wrap .map_pin.map_pin_S05 {
    left: 22.0%;
    bottom: 81.7%;
}

/* クロストマップピン */
.map_wrap .map_pin.map_clost_pin_1 {
    top: 30.5%;
    right: 5.2%;
}

.map_wrap .map_pin.map_clost_pin_2 {
    top: 35%;
    right: 9.4%;
}

.map_wrap .map_pin.map_clost_pin_3 {
    top: 30.5%;
    right: 9.4%;
}

.map_wrap .map_pin.map_clost_pin_4 {
    top: 30.5%;
    right: 17.3%;
}

.map_wrap .map_pin.map_clost_pin_5 {
    top: 30.5%;
    right: 23.3%;
}

.map_wrap .map_pin.map_clost_pin_6 {
    top: 30.5%;
    right: 27.5%;
}

.map_wrap .map_pin.map_clost_pin_7 {
    top: 30.5%;
    right: 32.2%;
}

.map_wrap .map_pin.map_clost_pin_8 {
    top: 30.5%;
    right: 39%;
}

.map_wrap .map_pin.map_clost_pin_9 {
    top: 30.5%;
    left: 53.5%;
}

.map_wrap .map_pin.map_clost_pin_10 {
    top: 30.5%;
    left: 49%;
}

.map_wrap .map_pin.map_clost_pin_11 {
    top: 30.5%;
    left: 34.8%;
}

.map_wrap .map_pin.map_clost_pin_12 {
    top: 30.5%;
    left: 29.5%;
}

.map_wrap .map_pin.map_clost_pin_13 {
    top: 30.5%;
    left: 22.4%;
}

.map_wrap .map_pin.map_clost_pin_14 {
    top: 30.5%;
    left: 18.5%;
}

.map_wrap .map_pin.map_clost_pin_15 {
    top: 30.5%;
    left: 10%;
}

/* 定番商品 */
#popular_area {
    padding: 70px 0 50px;
}

.shop_list .product_name {
    text-align: center;
    font-weight: bold;
}

/* ショップニュース */
#news_list_area {
    padding: 20px 0 70px;
}

#shopnews #news_list_area {
    padding: 0 0 50px;
}

/* おすすめのお店 */
#recommend_area {
    padding: 50px 0 20px;
    background: #F7F2F5;
}

/* ショップニュース詳細 */
.shop_news_title {
    padding: 30px;
    color: #932F27;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

#shop_area {
    padding: 50px 0;
}

.shop_news_date {
    font-size: 14px;
    margin-bottom: 20px;
}

.shop_news_info {
    font-size: 18px;
}

.btn_wrap {
    padding: 0 0 100px;
}


/* ▼▼▼ 480px〜768px
=====================================*/
@media screen and (max-width: 768px) {
    #shop_division_tab li {
        font-size: 12px;
    }

    .search_inner_wrap {
        padding-top: 30px;
    }

    /* 検索 */
    #search_tub {
        gap: 5px;
    }

    #search_tub li {
        height: 50px;
        font-weight: 500;
    }

    #search_tub li:not(.active)::after {
        width: 6px;
        height: 6px;
        bottom: 10px;
        left: calc(50% - 3px);
    }

    /* チェックリスト */
    .check_title {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .check_list {
        margin-bottom: 20px;
    }

    .check_list li {
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;
    }

    /* チェックボックス */
    .checkbox01-parts {
        margin-bottom: 5px;
    }

    .checkbox01-parts::before {
        margin-right: 5px;
    }

    input[type=checkbox]:checked+.checkbox01-parts::after {
        top: 12px;
    }

    .checkbox01-parts span {
        font-size: 12px;
    }

    /* フリーワード検索 */
    .search_box_wrap {
        padding: 20px 0 0;
    }

    .search_box {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 30px;
        padding-right: 58px;
        background: #FFF;
        border: #CCC 1px solid;
        border-radius: 30px;
        position: relative;
        overflow: hidden;
    }

    .search_box input {
        width: 100%;
        border: none;
        outline: none !important;
        padding: 20px 10px 20px 30px;
        font-size: 16px;
    }

    .search_box button.search_btn {
        width: 58px;
        height: 58px;
        background-color: #fff;
        background-image: url(https://fr.osaka.ekimaru.com/common/img/icon_search_r.svg);
        -webkit-background-size: 18px;
        background-size: 18px;
        background-repeat: no-repeat;
        background-position: center center;
        border: none;
        border-radius: 0;
        outline: none !important;
        position: absolute;
        top: 0;
        right: 0;
    }

    /* 頭文字検索　ポップアップ */
    .popup_box {
        max-width: 350px;
        width: 90%;
    }

    .initial {}

    .initial li {
        width: calc((100%/5) - 10px);
    }

    /* 検索結果 */
    #result_area {
        padding: 20px 0 50px;
    }

    .result_title {
        font-size: 14px;
    }

    .result_title .result_num {
        font-size: 32px;
    }

    /* ショップリスト */
    .shop_list li {
        -webkit-flex: 0 0 47%;
        -ms-flex: 0 0 47%;
        flex: 0 0 47%;
        width: 47%;
        max-width: 47%;
        margin-bottom: 40px;
    }

    .shop_list li:not(:nth-child(4n)) {
        margin-right: 0;
    }

    .shop_list li:not(:nth-child(2n)) {
        margin-right: 6%;
    }

    .shop_list .shop_name_wrap {
        padding-left: 25px;
    }

    .shop_list .shop_name_wrap .shop_num {
        min-width: 20px;
        font-size: 10px;
        line-height: 20px;
    }

    .shop_list .shop_name_wrap .shop_name {
        font-size: 14px;
        line-height: 16px;
    }

    .shop_list .shop_txt {
        font-size: 10px;
    }

    #map_area {
        padding-bottom: 60px;
    }

    /* 店舗詳細ページ */
    .shop_wrap {
        display: block;
        padding: 0;
        margin: 0 auto 50px;
    }

    .shop_wrap .img_wrap,
    .shop_wrap .txt_wrap {
        width: 100%;
        max-width: 100%;
    }

    /* 店舗画像 */
    .shop_img_sub {
        padding: 0 20px;
    }

    .shop_wrap .img_wrap {
        margin-bottom: 50px;
    }

    /* 店舗情報 */
    .shop_wrap .shop_name_wrap {
        padding-left: 35px;
    }

    .shop_wrap .shop_name_wrap .shop_num {
        min-width: 26px;
        font-size: 14px;
        line-height: 26px;
    }

    .shop_wrap .shop_name_wrap .shop_name {
        font-size: 20px;
        line-height: 26px;
    }

    .shop_wrap .txt_wrap {
        padding: 0 20px;
    }

    .shop_order {
        margin-bottom: 40px;
    }

    /* フロアマップ */
    .map_wrap .map_pin {
        width: 25px;
        height: 32px;
    }

    /* ショップニュース */
    #news_list_area {
        padding: 50px 0;
    }

    #shopnews #news_list_area {
        padding: 0 0 30px;
    }

    /* おすすめのお店 */
    #recommend_area {
        padding: 40px 0 20px;
    }

    /* ショップニュース詳細 */
    .shop_news_title {
        padding: 25px 20px;
        font-size: 16px;
    }

    #shop_area {
        padding: 30px 0;
    }

    .shop_news_date {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .shop_news_info {
        font-size: 14px;
    }

    .btn_wrap {
        padding: 0 0 50px;
    }


    .map_wrap .map_pin.map_clost_pin_1 {
        top: 28%;
        right: 3%;
    }

    .map_wrap .map_pin.map_clost_pin_2 {
        top: 31%;
        right: 7.7%;
    }

    .map_wrap .map_pin.map_clost_pin_3 {
        top: 26%;
        right: 7.2%;
    }

    .map_wrap .map_pin.map_clost_pin_4 {
        top: 27.5%;
        right: 15.3%;
    }

    .map_wrap .map_pin.map_clost_pin_5 {
        top: 27.5%;
        right: 21.3%;
    }

    .map_wrap .map_pin.map_clost_pin_6 {
        top: 27.5%;
        right: 25.5%;
    }

    .map_wrap .map_pin.map_clost_pin_7 {
        top: 28.5%;
        right: 30.2%;
    }

    .map_wrap .map_pin.map_clost_pin_8 {
        top: 28.5%;
        right: 37.2%;
    }

    .map_wrap .map_pin.map_clost_pin_9 {
        top: 28.5%;
    }

    .map_wrap .map_pin.map_clost_pin_10 {
        top: 28.5%;
    }

    .map_wrap .map_pin.map_clost_pin_11 {
        top: 28.5%;
    }

    .map_wrap .map_pin.map_clost_pin_12 {
        top: 28.5%;
    }

    .map_wrap .map_pin.map_clost_pin_13 {
        top: 28.5%;
    }

    .map_wrap .map_pin.map_clost_pin_14 {
        top: 28.5%;
    }

    .map_wrap .map_pin.map_clost_pin_15 {
        top: 28.5%;
        left: 8%;
    }
}