@charset "UTF-8";

#shop .main {
    background-color: #f1eeeb;
}
#shop .sub-sec .container::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: url(../img/shop_title_img.png) no-repeat;
    background-size: cover;
    background-position: center top 30%;
}
#shop .sub-sec .content .gmap {
    position: relative;
    width: 100%;
    height: 0;
}
#shop .sub-sec .content .gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
}
#shop .sub-sec .content .shop-info ul {
    display: flex;
    flex-wrap: wrap;
}
#shop .sub-sec .content .shop-info ul .box-left p .shop-ttl {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.6;
}
#shop .sub-sec .content .shop-nav .col_2 li img {
    margin-bottom: 0;
}
#shop .sub-sec .content .shop-nav .col_2 li a {
    filter: drop-shadow(3px 3px 3px rgb(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

/* media query : mobile
---------------------------------------------*/
@media screen and (max-width: 768px) {
    #shop .sub-kv {
        height: 400px;
        padding-top: 70px;
        background: url(../img/shop-kv_bg.jpg) no-repeat;
        background-size: cover;
        background-position: center;
    }
    #shop .sub-kv .content {
        position: relative;
        width: 100%;
        padding: 30px 20px 20px;
        box-sizing: border-box;
    }
    #shop .sub-sec .container::after {
        top: -50px;
        width: 210px;
        height: 108px;
    }
    #shop .sub-sec .content .gmap {
        padding-top: 70%;
        margin-bottom: 40px;
    }
    #shop .sub-sec .content .shop-info ul {
        gap: 40px;
        margin-bottom: 40px;
    }
    #shop .sub-sec .content .shop-info ul .box-left,
    #shop .sub-sec .content .shop-info ul .box-right {
        width: 100%;
    }
    #shop .sub-sec .content .shop-info ul .box-left p {
        margin-bottom: 20px;
    }
    #shop .sub-sec .content .shop-info ul .box-left img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }
    #shop .sub-sec .content .shop-nav .col_2 {
        gap: 20px;
    }
    #shop .sub-sec .content .shop-nav .col_2 li {
        width: 100%;
    }
}

/* media query : desktop
---------------------------------------------*/
@media screen and (min-width: 769px) {
    #shop .sub-kv {
        height: 580px;
        padding-top: 90px;
        background: url(../img/shop-kv_bg.jpg) no-repeat;
        background-size: cover;
        background-position: center;
    }
    #shop .sub-sec .container::after {
        top: -70px;
        width: 320px;
        height: 165px;
    }
    #shop .sub-sec .content .gmap {
        padding-top: 42.85%;
        margin-bottom: 60px;
    }
    #shop .sub-sec .content .shop-info ul {
        gap: 60px;
        margin-bottom: 60px;
    }
    #shop .sub-sec .content .shop-info ul .box-left {
        width: calc(40% - 30px);
    }
    #shop .sub-sec .content .shop-info ul .box-right {
        width: calc(60% - 30px);
    }
    #shop .sub-sec .content .shop-info ul .box-left p {
        margin-bottom: 20px;
    }
    #shop .sub-sec .content .shop-nav .col_2 {
        gap: 30px;
    }
    #shop .sub-sec .content .shop-nav .col_2 li {
        width: calc(50% - 15px);
    }
    #shop .sub-sec .content .shop-nav .col_2 li a:hover {
        filter: drop-shadow(6px 6px 6px rgb(0, 0, 0, 0.4));
    }
}