@charset "utf-8";
:root {
    --colo-yellow: #f2f855;
    --colo-T_blue: #01a2bf;
    --colo-S_blue: #51d2e9;
    --color_BLK: #252525;
    --gap_96px: clamp(32px, 12vw, 96px);
    --gap_80px: clamp(27px, 10vw, 80px);
    --gap_64px: clamp(21px, 8vw, 64px);
    --gap_48px: clamp(16px, 6vw, 48px);
    --gap_32px: clamp(11px, 4vw, 32px);
    --gap_24px: clamp(8px, 3vw, 24px);
    --gap_16px: clamp(5px, 2vw, 16px);
    --gap_8px: clamp(3px, 1vw, 8px);
}


.shoplist_wrapper {
    max-width: 1344px;
    padding-inline: var(--gap_24px);
    padding-top: 5%;
    margin: 0 auto;
}

.bk_line { 
    width: 100%;
    height: 3px;
    background-color: var(--colo-T_blue);
    border: none;
    margin-bottom: 3%;
}

.shoplist_wrapper h1 {
    font-weight: 800;
    font-size: 5vw;
    width: 100%;
    text-align: center;
    margin-bottom: 1.5%;
}

.shoplist_wrapper h2 {
    font-size: 2.5vw;
    font-weight: 800;
    margin-bottom: var(--gap_16px);
    width: 100%;
}

.shoplist_wrapper h3 {
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 3%;
    width: 100%;
}

#navigation {
    width: 100%;
    position: sticky;
    background-color: var(--colo-T_blue);
    color: #fff;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
}

#navigation.fixed {
    position: fixed;
    z-index: 10;
    top: 0;
    left: calc(50% - 50%);
}

.navi_item {
    max-width: 1344px;
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: left; */
    justify-content: center;
}

.navi_item li {
    width: 25%;
    border-right: solid 1px #fff;
    transition: all .5s;
}

.navi_item li:first-child {border-left: solid 1px #fff;}

.navi_item li:hover {
    background-color: #fff;
    color: #000;
}

.navi_item li a {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 8%;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.1vw;
}

.navi_item li a span, .navi_item .label span { 
    display: block;
    font-size: 64%;
    margin-top: 1%;
}

.navi_item .drop_down { position: relative;}

.navi_item .label {
    font-size: .85em;
    font-weight: 700;
    width: 100%;
    height: 100%;
    padding: 8% 20% 8% 10%;
    text-align: center;
    position: relative;
}

.navi_item .label::before,
.navi_item .label::after {
    content: "";
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 46%;
    right: 11%;
    transform: translateY(-50%);
    transition: .5s;
}

.navi_item .label::after {
    transform: translateY(-50%) rotate(90deg);
    
}

.navi_item .label:hover::before,
.navi_item .label:hover::after { background-color: var(--colo-T_blue);}

.navi_item .label.open::before { 
    transform: rotate(-45deg);
    background-color: var(--colo-T_blue);
}

.navi_item .label.open::after { 
    transform: rotate(45deg);
    background-color: var(--colo-T_blue);
}

.navi_item .sub_menu {
    width: 100.8%;
    display: none;
    position: absolute;
    left: calc(50% - 50.4%);
    top: 102%;
}

.navi_item .sub_menu li {
    width: 100%;
    height: 72px;
    text-align: center;
    border-bottom: solid 1px #000;
    border-right: solid 1px #000;
    border-left: solid 1px #000;
    color: #000;
}

.navi_item .sub_menu li a {
    padding: 0 !important;
    display: flex;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.navi_item .sub_menu li a:hover { 
    background-color: var(--colo-T_blue);
    color: #fff;
}

.caution {
    width: 100%;
    text-align: center;
    font-size: .7em;
    margin-bottom: 1.5%;
}

.shoplist_wrapper section { margin-bottom: 5%;}

.shoplist_wrapper section > p { 
    width: 100%;
    text-align: center;
    font-size: 1em;
    font-weight: 700;
    padding-bottom: 3%;
    margin-bottom: 5%;
    border-bottom: solid 1px #000;
    line-height: 1.8;
}

#pickup_artist .shop {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10%;
    border-bottom: dotted 1px #000;
    padding-bottom: 11%;
}

#work_shop .shop {
    margin-bottom: var(--gap_64px);
    border-bottom: dotted 1px #000;
    padding-bottom: var(--gap_64px);
}

#work_shop .work_shop_intro {
    width: 90%;
    margin: 0 auto 5%;
    font-size: 1.1vw;
    line-height: 1.5;
    text-align: center;
}

#pickup_artist .shop:last-of-type,
#work_shop .shop:last-of-type { border-bottom: none;}

#work_shop .shop:last-of-type { padding-bottom: 0;}

#pickup_artist .goods_img, 
#work_shop .goods_img { width: 40%;}

#pickup_artist .shop_detail, 
#work_shop .shop_detail { width: 55%;}

#pickup_artist .special_event { 
    width: 100%;
    margin-top: 2%;
}

#work_shop .work_shop_event {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#work_shop .work_shop_event:first-of-type { margin-bottom: var(--gap_48px);}

#work_shop h2 { 
    font-size: 1.5em;
    text-align: center;
    margin-bottom: var(--gap_64px);
}

.special_event picture {
    display: block;
    width: 100%;
    margin-bottom: 1%;
}

.special_event picture img { width: 100%;}

.special_event .metas {
    text-align: right;
    font-size: .85em;
}

.special_event .metas a {
    color: blue;
    text-decoration: underline;
}

.goods_img .main_img { 
    width: 100%;
    margin-bottom: 1%;
}

.goods_img ul {
    display: flex;
    justify-content: left;
    flex-wrap: nowrap;
}

.goods_img ul li { width: 50%;}

.goods_img ul li img { width: 100%;}

.goods_img ul li:first-child { margin-right: 1%;}

.shop_detail > p {
    font-size: .8em;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 5%;
}

.shop_detail table,
#popup_shop table {
    width: 100%;
    border: dotted 1px #828282;
}

.shop_detail a {
    text-decoration: underline;
    color: blue;
}

#pickup_artist tr,
#work_shop tr, #popup_shop table tr
{ border-bottom: dotted 1px #828282;}

#pickup_artist tr:last-of-type,
#work_shop tr:last-of-type,
#popup_shop table tr:last-of-type { border-bottom: none;}

#pickup_artist th, #pickup_artist td,
#work_shop th, #work_shop td {
    padding: 3%;
    vertical-align: middle;
    font-size: .75em;
    text-align: justify;
}

#pickup_artist th,
#work_shop th {
    width: 27%;
    text-align: center;
    border-right: dotted 1px #828282;
}

#popup_shop table tr,
#popup_shop table .main_img,
#popup_shop table td ul li img { width: 100%;}

#popup_shop table td {
    width: 50%;
    padding: 4%;
}

#popup_shop table td ul {
    width: 100%;
    display: flex;
    justify-content: left;
    margin-top: 1%;
    margin-bottom: 7%;
}

#popup_shop table td:nth-of-type(odd) { border-right: dotted 1px #828282;}

#popup_shop table td ul li { width: 50%;}

#popup_shop table td ul li:first-child { margin-right: 1%;}

.shop_info {
    font-size: .8em !important;
    margin-bottom: 2% !important;
}

.shop_info:last-of-type { margin-bottom: 0 !important;}

#regular_shop .regular_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--gap_16px);
    margin-bottom: 10%;
    overflow-wrap: break-word;
}

#regular_shop .day,
#regular_shop .goods_foods {
    font-weight: 700;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

#regular_shop .day {
    font-size: 1.7vw;
    color: #fff;
    background-color: var(--colo-T_blue);
    width: 40%;
    border-radius: 50px;
    margin: 0 auto 3% auto;
}

#regular_shop .goods_foods {
    font-size: 2vw;
    width: 100%;
    margin-bottom: 3%;
    position: relative;
}

#regular_shop .goods_foods::before,
#regular_shop .goods_foods::after {
    content: "";
    display: block;
    width: 40%;
    height: 2px;
    position: absolute;
    background-color: var(--colo-T_blue);
    top: calc(50% - 2px);
}

#regular_shop .goods_foods::before { left: 0;}

#regular_shop .goods_foods::after { right: 0;}

.regular_list li {
    border: dotted 1px #828282;
    padding: 1em .5em;
    width: 23%;
}

.regular_list li .main_img { 
    width: 100%;
    margin-bottom: 5%;
}

.regular_list h2 { 
    font-size: .9em;
    width: 100%;
}

.regular_list li ul {
    display: flex;
    justify-content: center;
    margin-top: 10%;
}

.regular_list li ul li { 
    width: 15%;
    border: none !important;
    padding: 0 !important;
}

.regular_list li ul li a,
.regular_list li ul li img { width: 100%;}

.regular_list li ul li:hover { opacity: .6;}

.not_border { border-bottom: none;}

.back_to_top {
    display: block;
    width: 35%;
    margin: 0 auto 5% auto;
    padding-top: 14.88%;
    background: url(../images/bnr_back.jpg) no-repeat center / 100%;
}

.back_to_top:hover { background: url(../images/bnr_back_hover.jpg) no-repeat center / 100%;}


/*================================
250613～ listup
================================*/
[v-cloak] {
    display: none;
}

html {
    scroll-padding-top: 100px;
}

#search {
    margin: 2% auto 4% auto;
}

#search table {
    width: 100%;
}

#search th {
    width: 11em;
    background: var(--colo-T_blue);
    color: #fff;
    padding: 1% 2%;
    border: 1px solid var(--colo-T_blue);
    border-bottom: 1px solid #fff;
}

#search tr:last-child th {
    border-bottom: 1px solid var(--colo-T_blue);
}

#search td {
    padding: 1% 2%;
    border: 1px solid var(--colo-T_blue);
}

.search_btn {
    width: 30%;
    margin: 3% auto;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    background: var(--colo-T_blue);
    padding: 1%;
    border-radius: 50px;
    cursor: pointer;
}

.search_btn input {
    cursor: pointer;
}

#free_word {
    border: 1px solid;
    width: 30%;
}

#list {
    margin-bottom: 5% !important;
}

.pagination {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 1%;
}

li.page {
    padding: 1%;
    background: var(--colo-T_blue);
    color: #fff;
    cursor: pointer;
    margin: 1% 0;
}

li.page.navi-active {
    padding: 1%;
    background: #fff;
    color: var(--colo-T_blue);
    border: 1px solid var(--colo-T_blue);
    font-weight: 600;
}

.search_none {
    text-align: center;
    font-size: larger;
    font-weight: 600;
}


/* ----------------------- responsive ----------------------- */

@media not (min-width:767px) {
    .shoplist_wrapper { width: 100%;}

    .shoplist_wrapper nav { margin-bottom: 10%;}
    
    .navi_item { width: 100%;}

    .navi_item li { 
        width: 100%;
        border-bottom: solid 1px #fff;
        border-right: none;
    }

    .navi_item li:first-child { border-left: none;}

    .navi_item li:last-child { border-bottom: none;}

    .navi_item li a, .navi_item .label { 
        font-size: 4vw;
        padding: 4%;
    }

    .navi_item li a span, .navi_item .label span { display: none;}

    .navi_item .label::before, 
    .navi_item .label::after {
        top: 50%;
        right: 23%;
    }

    .navi_item .sub_menu li:last-child { border-bottom: solid 1px #000;}

    .caution {
        width: 90%;
        line-height: 1.5;
        margin: 0 auto 10% auto;
    }

    .bk_line { margin-bottom: 10%;}

    .shoplist_wrapper section > p {
        margin-bottom: 10%;
    }

    #pickup_artist .shop, #work_shop .shop { flex-direction: column;}

    #pickup_artist .goods_img, #work_shop .goods_img,
    #pickup_artist .shop_detail, #work_shop .shop_detail { 
        width: 100%;
        padding: 0 2%;
        margin-bottom: 5%;
    }

    #pickup_artist .special_event {
        width: 85%;
        margin: 1% auto 0 auto;
    }

    .special_event picture { margin-bottom: 2%;}

    .special_event .metas {
        text-align: center;
        font-size: 3.3vw;
        line-height: 1.5;
    }

    .shop_detail > p {
        margin-bottom: 5%;
    }

    #pickup_artist th, #pickup_artist td, #work_shop th, #work_shop td {
        line-height: 1.5;
    }

    #pickup_artist th, #work_shop th { width: 35%;}

    #popup_shop table { border: none;}

    #popup_shop table td:nth-of-type(odd) { border-right: none;}
    
    #popup_shop table td { 
        display: block;
        width: 100%;
        padding: 0 7%;
        margin-bottom: 15%;
    }

    .shop_info { font-size: .8em !important;}

    #regular_shop .regular_list { 
        margin: 0 auto 20%;
    }

    #regular_shop .day {
        width: 100%;
        border-radius: 0;
        line-height: 2.5;
    }

    /* #regular_shop .goods_foods { font-size: 5.5vw;} */

    #regular_shop .goods_foods::before, #regular_shop .goods_foods::after { width: 35%;}

    .regular_list li {
        width: 48%;
    }

    .regular_list li ul li { width: 20%;}

    .back_to_top {
        width: 85%;
        margin: 10% auto;
    }

    #work_shop .work_shop_intro {
        /* font-size: 3.5vw; */
        text-align: justify;
    }

/*================================
250613～ listup
================================*/

    [v-cloak] {
        display: none;
    }
    
    html {
        scroll-padding-top: 100px;
    }
    
    #search {
        margin: 2% auto 4% auto;
    }
    
    #search table {
        width: 100%;
    }
    
    #search th {
        width: 11em;
        background: var(--colo-T_blue);
        color: #fff;
        padding: 1% 2%;
        border: 1px solid #fff;
    }
    
    /* #search td {
        padding: 1% 2%;
        border: 1px solid #000;
    } */
    
    .search_btn {
        width: 30%;
        margin: 3% auto;
        text-align: center;
        font-size: 1.5rem;
        font-weight: 600;
        color: #fff;
        background: var(--colo-T_blue);
        padding: 1%;
        border-radius: 50px;
        cursor: pointer;
    }
    
    .search_btn input {
        cursor: pointer;
    }
    
    #free_word {
        border: 1px solid;
        width: 30%;
    }
    
    #list {
        margin-bottom: 5% !important;
    }
    
    .pagination {
        display: flex;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        gap: 1%;
    }
    
    /* li.page {
        padding: 1%;
        background: var(--colo-T_blue);
        cursor: pointer;
        margin: 1% 0;
    }
    
    li.page.navi-active {
        padding: 1%;
        background: #fff;
        font-weight: 600;
    } */
    
    .search_none {
        text-align: center;
        font-size: larger;
        font-weight: 600;
    }
    
    @media (max-width:767px) {
    
        #search table {
            width: 90%;
            margin: 0 auto;
        }
    
        #search th {
            display: block;
            width: 100%;
            background: var(--colo-T_blue);
            color: #fff;
            padding: 1% 2%;
            border: none;
        }
    
        #search td {
            display: block;
            padding: 1% 2%;
            /* border: 1px solid #000; */
            line-height: 1.8;
        }
    
        .search_btn {
            width: 90%;
            padding: 2% 1%;
        }
    
        #free_word {
            width: 100%;
        }
    
        html {
            scroll-padding-top: 200px;
        }
    
        .pagination {
            gap: 2%;
        }
    }
}