
@charset "utf-8";

/* =========================================
　　　　　　　　　　共通
============================================*/

:root {
    --color-blk: #190d09;
}

body {
    margin: 0;
}

.page * {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-feature-settings: "palt" 1;
    text-align: center;
    color: var(--color-blk);
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.page ul {
    list-style-type: none;
}

.page h1,
.page h2,
.page h3 {
    font-weight: normal;
}

.page img {
    max-width: 100%;
    height: auto;
}

.page a {
    text-decoration: none;
}

.page picture {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page article {
    box-shadow: 0.6em 0.6em 0.6em rgba(0, 0, 0, .5);
    padding: 5%;
    background-color: rgba(255, 255, 255, .9);
}

.page article:not(:last-of-type) {
    margin-bottom: 10%;
}

.page article .frame {
    padding: 8% 5%;
    border: solid 2px var(--color-blk);
    outline: solid 4px var(--color-blk);
    outline-offset: 0.4em;
}

.page h2 {
    margin-bottom: 5%;
    letter-spacing: .1em;
}

.page h2 span {
    margin: 0 -.15em;
}

.page h2,
.page h2 span,
.page h2 .ib {
    font-family: "M PLUS 2", sans-serif;
    font-size: clamp(28px, 7vw, 48px);
    font-weight: 900;
    color: #960d27;
}

.wrapper {
    padding: 10% 5%;
}

.sp {
    display: block;
}

.pc {
    display: none;
}

.ib {
    font-style: normal;
    display: inline-block;
}

.under_yellow {
    display: inline;
    background:
    linear-gradient(0deg, rgba(255, 232, 78, 1) 0%,
    rgba(255, 232, 78, 1) 40%, rgba(255, 232, 78, 0) 40%,
    rgba(255, 232, 78, 0) 100%);
}

.fade-up {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section_hd {
    color: #000;
    border: solid 1px var(--color-blk);
    outline: solid 3px var(--color-blk);
    outline-offset: 0.3em;
    width: 80%;
    max-width: 400px;
    padding: 2% 5%;
    margin: 5% auto 13% auto;
    font-size: clamp(24px, 6vw, 40px);
    font-weight: 800;
}

.section_hd span {
    font-family: "Squada One", sans-serif;
    color: #000;
    font-size: clamp(14px, 3vw, 18px);
    letter-spacing: .05em;
}

.section_hd div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3em;
    margin-top: 1%;
}
  
.section_hd div::before,
.section_hd div::after {
    content: "";
    width: .5em;
    height: 1px;
    border-top: solid 1px #000;
}

@media screen and (min-width: 768px) {

    .page article {
        padding: 3%;
    }

    .page article:not(:last-of-type) {
        margin-bottom: clamp(80px, 6vw, 100px);
    }

    .page article .frame {
        outline: solid 5px var(--color-blk);
        outline-offset: 0.7em;
        padding: 7% 5%;
    }

    .page h2 {
        margin-bottom: 5%;
    }

    .page h2,
    .page h2 span,
    .page h2 .ib {
        font-size: clamp(30px, 5.5vw, 70px);
    }

    .wrapper {
        padding: clamp(80px, 6vw, 100px) 5%;
        margin: 0 auto;
    }

    .inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    .under_yellow {
        background:
        linear-gradient(0deg, rgba(255, 232, 78, 1) 0%,
        rgba(255, 232, 78, 1) 30%, rgba(255, 232, 78, 0) 30%,
        rgba(255, 232, 78, 0) 100%);
    }

    .section_hd {
        font-size: clamp(24px, 5vw, 50px);
        max-width: 450px;
        padding: 1% 5%;
        margin: 3% auto 10% auto;
    }

    .section_hd span {
        font-size: clamp(14px, 3vw, 26px);
    }

}

/* =========================================
    　　　　　　　　KV
============================================*/

.kv {
    padding: 15% 0 20% 0;

}

@media screen and (min-width: 768px) {
 
    .kv {
        padding: 0 0 10% 0;
        margin: 0 auto;
    }

}




/* =========================================
    　　　　　　　　背景
============================================*/

.page::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/event/vintagefes/lib/2026/images/bk_sp2.jpg);
    background-size: 100%;
    background-repeat: repeat-y;
    z-index: -1;
}

@media screen and (min-width: 768px) {

    .page::before {
        background-image: url(/event/vintagefes/lib/2026/images/bk_pc2.jpg);
    }

}

/* =========================================
　　　　　出展募集中【class="recruit"】
============================================*/

.recruit h3 {
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 5%;
}

.recruit ul {
    width: 90%;
    margin: 0 auto;
}

.recruit ul li:not(:last-of-type) {
    margin-bottom: 5%;
}

.recruit p {
    font-size: clamp(16px, 3vw, 24px);
    text-decoration: underline solid var(--color-blk);
    -webkit-text-decoration: underline solid var(--color-blk);
    text-underline-offset: .3em;
    margin-top: 6%;
}

@media screen and (min-width: 768px) {

    .recruit h3 {
        font-size: clamp(18px, 3vw, 30px);
        line-height: 1.8em;
        margin-bottom: 5%;
    }

    .recruit ul {
        display: flex;
        column-gap: 3%;
    }

    .recruit ul li:not(:last-of-type) {
        margin-bottom: 0;
    }

    .recruit p {
        font-size: clamp(18px, 3vw, 30px);
        margin-top: 5%;
    }

    .recruit ul li {
        transition-duration: .2s;
    }

    .recruit ul li:hover {
        transform: translateY(-10%);
    }

}

/* =========================================
　　　　　　開催概要【class="outline"】
============================================*/

.outline dl {
    border-bottom: 1px solid var(--color-blk);
    padding-bottom: 5%;
}

.outline dl dt {
    font-size: clamp(16px, 3vw, 24px);
    margin: 3% 0;
}

.outline dl dd {
    font-size: clamp(14px, 2.5vw, 22px);
    line-height: 1.5em;
    letter-spacing: .05em;
}

.outline dl dd span {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 900;
    margin-bottom: 3%;
}

.outline dl dd em,
.outline dl dd i {
    font-style: normal;
}

@media screen and (min-width: 768px) {

    .outline dl {
        display: flex;
        align-items: center;
        padding-bottom: 3%;
        margin-top: 3%;
    }

    .outline dl dt {
        width: 30%;
        font-size: clamp(18px, 3vw, 30px);
    }

    .outline dl dd {
        width: 70%;
        font-size: clamp(18px, 3vw, 28px);
        text-align: left;
        letter-spacing: .07em;
    }
    .outline dl dd span {
        font-size: clamp(22px, 3vw, 40px);
    }

}

/* =========================================
    　　　イントロ【class="intro"】
============================================*/

.intro h2,
.intro h2 span {
    letter-spacing: 0;
}

.intro h3 {
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 500;
    line-height: 1.7em;
}

.intro h3 span {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 900;
}

.intro h3 span i,
.intro h3 span small {
    font-weight: 900;
}

.intro ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2%;
    row-gap: 2vw;
    justify-content: center;
    margin: 10% auto 12% auto;
}

.intro ul li {
    width: 49%;
}

.intro dl dt {
    width: 70%;
    margin: 0 auto;
}

.intro dl dd {
    display: flex;
    justify-content: center;
    column-gap: 7%;
    margin-top: 5%;
}

.intro dl dd p {
    width: 17%;
    filter: drop-shadow(3px 3px 3px rgba(25, 13, 9, 0.35));
}

/* アニメーション */
.items {
    list-style: none;
    padding: 0;
    margin: 0;
}
  
.item {
    opacity: 0;
    transform: translateY(100px);
    transition: 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
  
.items.is-visible .item {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--i) * 0.3s);
}

@media screen and (min-width: 768px) {

    .intro h3 {
        font-size: clamp(18px, 3vw, 30px);
        line-height: 2em;
    }

    .intro h3 span {
        font-size: clamp(22px, 3vw, 40px);
    }

    .intro ul {
        margin: 5% auto 7% auto;
    }

    .intro ul li {
        width: 23%;
    }

    .intro dl dt {
        width: 50%;
        max-width: 400px;
    }

    .intro dl dd {
        column-gap: 3%;
        margin-top: 3%;
    }

    .intro dl dd p {
        width: 13%;
        max-width: 100px;
        transition-duration: .2s;
    }

    .intro dl dd p:hover {
        transform: translateY(-10%);
    }

}

/* =========================================
    　　　アーカイブ【class="archive"】
============================================*/

.archive {
    margin-top: 10%;
}

.archive ul {
    width: 90%;
    margin: 0 auto;
}

.archive ul li {
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
}

@media screen and (min-width: 768px) {

    .archive {
        margin-top: clamp(80px, 6vw, 100px);
    }

    .archive ul li a {
        transition-duration: .2s;
        display: inline-block;
    }

    .archive ul li a:hover {
        transform: translateY(-10%);
    }

}

/* =========================================
    　　　ページトップ【id="page-top"】
============================================*/

#page-top {
    position: fixed;
    bottom: 1%;
    right: 1%;
    width: 15%;
    aspect-ratio: 1 / 1;
    background: url(/event/vintagefes/lib/2026/images/page_top2.png) no-repeat center / 100%;
    z-index: 100;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.25));
}

@media screen and (min-width: 768px) {

    #page-top {
        max-width: 130px;
        transition-duration: .2s;
    }

    #page-top:hover {
        opacity: .8;
    }

}

/* =========================================
    　　　チケット【class="ticket"】
============================================*/

#ticket {
    scroll-margin-top: 200px;
}

.ticket_box {
    margin-bottom: 13%;
}

.ticket_box h4 {
    color: #fff;
    background-color: #000;
    padding: .5em 1em;
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 800;
    margin-bottom: 8%;
}


/* --金額・販売期間-- */
.ticket_box dl {
    margin-bottom: 8%;
}

.ticket_box dl dt {
    width: 90%;
    margin: 0 auto 5% auto;
}

.ticket_box dl dd {
    font-size: clamp(12px, 3vw, 20px);
}

.ticket_box dl dd b {
    display: inline-block;
    font-size: clamp(14px, 3vw, 24px);
    color: #fff;
    background-color: #000;
    border-radius: 5px;
    padding: .4em .5em;
    margin-bottom: 2%;
} 

.ticket_box dl dd span {
    font-size: clamp(18px, 4vw, 28px);
}

.ticket_box dl dd:not(:last-of-type) {
    margin-bottom: 5%;
}

/* --各日●枚-- */
.ticket_box b {
    display: inline-block;
    margin-bottom: 2%;
    font-size: clamp(16px, 3vw, 28px);
}

.ticket_box a img {
    filter: drop-shadow(2px 2px 2px rgba(25, 13, 9, 0.25));
    border-radius: 2px;
    border: 1px solid var(--color-blk);
}

/* --アソビュー・tabiwa-- */
.ticket_featured p {
    width: 80% !important;
    margin: 0 auto;
}

.ticket_featured dl dt {
    width: 50%;
    margin: 0 auto 5% auto !important;
}

.ticket_featured li {
    width: 80%;
    margin: 0 auto 10% auto;
}

.ticket_featured li:last-of-type img {
    filter: drop-shadow(2px 2px 2px rgba(25, 13, 9, 0.25));
    border-radius: 2px;
    border: none !important;
}

/* --その他プレイガイド-- */
.ticket_other {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 5vw;
    column-gap: 3%;
    margin-bottom: 7%;
}

.ticket_other li {
    width: 48%;
}

.ticket_other li span {
    display: block;
    font-size: clamp(14px, 3vw, 26px);
    margin-top: 5%;
}




/* ---注意書き--- */
.ticket ol li {
    font-size: clamp(12px, 2vw, 20px);
    text-align: left;
    line-height: 1.5em;
}




@media screen and (min-width: 768px) {



    /* .ticket_price {
        column-gap: 3%;
        margin-bottom: 5%;
    }

    .ticket_price i {
        font-size: clamp(26px, 3vw, 36px);
    } */


    
    /* --販売期間-- */  
    /* .ticket_box dl {
        align-items: center;
        margin-bottom: 5%;
        column-gap: 2%;
    }

    .ticket_box dl dd {
        width: fit-content;
    }

    .ticket_box dl dt {
        font-size: clamp(16px, 3vw, 32px);
        padding: .2em .5em;
        margin-bottom: 0;
    }

    .ticket_box dl dd span {
        font-size: clamp(18px, 4vw, 34px);
    }

    .ticket_box dl dd {
        font-size: clamp(12px, 3vw, 24px);
    } */







    .ticket_box {
        margin-bottom: 10%;
    }

    .ticket_box h4 {
        font-size: clamp(34px, 3vw, 42px);
        line-height: 1em;
        padding: .7em 1em;
    }

    /* --金額・販売期間-- */
    .ticket_box dl {
        margin-bottom: 5%;
    }

    .ticket_box dl dt {
        width: 65%;
    }

    .ticket_box dl dd {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 2%;
        font-size: clamp(12px, 3vw, 26px);
    }

    .ticket_box dl dd b {
        font-size: clamp(16px, 3vw, 30px);
        margin-bottom: 0;
    }

    .ticket_box dl dd span {
        font-size: clamp(18px, 4vw, 38px);
    }



    /* --各日●枚-- */
    .ticket_box b {
        margin-bottom: 1%;
    }

    /* --アソビュー-- */
    .ticket_featured li {
        margin: 0 auto 3.5vw auto;
    }

    .ticket_featured dl dt {
        margin: 0 auto 4% auto !important;
    }

    /* ---その他プレイガイド--- */
    .ticket_other {
        justify-content: flex-start;
        row-gap: 3vw;
        column-gap: 3.333%;
    }

    .ticket_other li {
        width: 31%;
    }

    .ticket ul li a {
        transition-duration: .2s;
    }

    .ticket ul li a:hover {
        opacity: .7;
    }

    .ticket_other li span {
        font-size: clamp(14px, 2vw, 24px);
    }
    


    .ticket_maeuri {
        margin-bottom: 6% !important;
    }

}


/* ==========================================
    　　　　　ヘッダー（.g_navi）
============================================*/

.page {
    position: relative;
}

#p_header {
	position: sticky;
	top: -1px;
	z-index: 900;
}

/* -----ハンバーガーメニュー----- */
.trigger_wrap {
    position: relative;
    justify-content: flex-end;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    height: 50px;
    text-align: right;
    background-color: var(--color-blk);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    padding: 0 45px;
    z-index: 1010;
}

.btn_trigger {
    position: relative;
    color: #fff;
    background-color: transparent;
    border: 0;
}

.btn_trigger i {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%,-50%);
    font-size: 22px;
    color: #fff;
}

.btn_trigger .menu_close,
.btn_trigger.is-opend .menu_bar {
    display: none;
}

.btn_trigger.is-opend .menu_close {
    display: block;
}

/* -----メニュー中身----- */
.g_navi * {
    font-family: "Oswald", sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.g_navi {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    background: rgba(25, 13, 9, .9);
    margin-top: 50px;
    display: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 1000;
}

.g_navi::-webkit-scrollbar {	
    display:none;
}

.g_navi_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.g_navi_wrap li {
    position: relative;
    display: block;
    width: 100%;
    font-size: clamp(16px, 3vw, 18px);
    margin: 0 auto !important;
}

.g_navi_wrap a {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
	width: 100%;
    text-align: center;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
    padding: 3% 5%;
    transition: unset !important;
}

.g_navi_wrap span {
    width: 100%;
    display: inline-block;
    color: #fff;
    font-size: clamp(16px, 5vw, 22px);
	font-weight: bold;
    letter-spacing: 0.1em;

}

.g_navi_wrap small {
    width: 100%;
    color: #fff;
    font-size: clamp(10px, 2vw, 13px);
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-top: .1em;
}


/* -----ドロップダウン----- */
.g_navi .drop_down {
    position: relative;
}

.g_navi .label {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid #fff;
    padding: 4% 5%;
    cursor: pointer;
    transition: all .2s;
}

.g_navi .label span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.g_navi .label::before,
.g_navi .label::after {
    position: absolute;
    content: "";
    display: block;
    width: 5%;
    height: 2px;
    top: calc(50% - 1px);
    right: 5%;
    background-color: #fff;
    transition: all .5s;
}

.g_navi .label::after { 
    transform: rotate(90deg);
}

.g_navi .label.open::before {
    transform: rotate(-45deg);
}

.g_navi .label.open::after { 
    transform: rotate(45deg);
}

.g_navi .sub_menu {
    width: 100%;
    display: none;
    left: calc(50% - 50%);
    top: 100%;
}

.g_navi .sub_menu li {
    width: 100% !important;
    text-align: center;
    border-left: none !important;
    border-right: none;
}

.g_navi .sub_menu li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: clamp(16px, 4vw, 22px);
    color: #fff;
    background-color: #311d16;
    border-bottom: dotted 1px #fff;
    padding: 4% 5% !important;
}

.g_navi .sub_menu li:last-of-type a {
    border-bottom: solid 1px #fff;
}

/* -----Instagramアイコン----- */
.navi_instagram p {
    width: 45%;
    max-width: 30px;
}

@media screen and (min-width: 768px) {

    /* -----ハンバーガーメニュー----- */
	.trigger_wrap {
		display: none;
	}

    /* -----メニュー中身----- */
    .g_navi * {
        text-shadow: 0.1em 0.1em 0 #000;
    }

    .g_navi {
        position: unset;
        height: fit-content;
        max-height: unset;
        display: -webkit-flex !important;
		display: flex !important;
		justify-content: center;
        background-image: conic-gradient(#2c0000 0deg 90deg, #170000 90deg 180deg, #2c0000 180deg 270deg, #170000 270deg 360deg);
        background-size: 60px 60px;
        box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
        margin-top: 0;
	}

    .g_navi_wrap {
        flex-wrap: unset;
        border-left: 2px solid #4d2a2a;
        border-right: 2px solid #4d2a2a;
        max-width: 1200px;
        margin: 0;
    }

    .g_navi_wrap li {
        width: calc( (100% - 8%) / 5 );
        font-size: clamp(14px, 2vw, 20px);
        box-sizing: border-box;
        margin: 0 !important;
    }

    .g_navi_wrap li:not(:last-of-type) {
        border-right: 2px solid #4d2a2a !important;
    }

    .g_navi_wrap a {
        height: 100%;
        border-bottom: none;
        padding: clamp(5px, 1.5vw, 13px) 3%;
    }

    .g_navi_wrap a:hover,
    .g_navi .label:hover {
        background-color: rgba(105, 18, 18, .6);
    }

    .g_navi_wrap span {
        font-size: clamp(18px, 2vw, 24px);
    }

    .g_navi_wrap small {
        font-size: clamp(10px, 1vw, 12px);
    }

    /* -----ドロップダウン----- */
    .g_navi .label {
        border-bottom: none;
        padding: clamp(5px, 1.5vw, 13px) 3%;
    }

    .g_navi .label::before,
    .g_navi .label::after {
        width: 7%;
    }

    .g_navi .label span {
        font-size: clamp(18px, 2vw, 24px);
    }

    .g_navi .sub_menu {
        position: absolute;
    }

    .g_navi .sub_menu li {
        border-right: none !important;
    }

    .g_navi .sub_menu li:last-of-type a {
        border-bottom: solid 1px #4d2a2a;
    }

    .g_navi .sub_menu li a {
        background-color: #634343;
        border-bottom: solid 1px #4d2a2a;
        padding: clamp(5px, 1.5vw, 13px) 3% !important;
    }

    .g_navi .sub_menu li a:hover {
        background-color: #4d3333;
    }

    /* -----会場マップ----- */
    .navi_map {
        width: 14% !important;
    }

    /* -----Instagramアイコン----- */
    .navi_instagram {
        width: 8% !important;
    }

    .navi_instagram p {
        width: 50%;
        max-width: 35px;
    }
}


/* ==========================================
　　　　　出展者一覧（.shoplist）
============================================*/

.shoplist_wrapper {
    padding: 10% 3% !important;
}

.shoplist .frame {
    padding: 10% 4% !important;
}

.shoplist section:not(:last-of-type) {
    margin-bottom: 13%;
}

.shoplist h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    margin-bottom: 8%;
    scroll-margin-top: 80px;
}

.shoplist h3 span {
    font-family: "Squada One", sans-serif;
    font-size: clamp(18px, 7vw, 50px);
    font-style: normal;
    font-optical-sizing: auto;
    text-transform: uppercase;
    line-height: 1;
}

.shoplist h3::before,
.shoplist h3::after {
    content: "";
    flex: 1;
    height: 10px;
    border-top: solid 2px #000;
    border-bottom: solid 2px #000;
}

.shoplist_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 5vw;
    column-gap: 3%;
}

.shoplist_box {
    width: 48.5%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    letter-spacing: .05em;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 0 3% 3% 0;
}

.shoplist_box h4 {
    font-size: clamp(14px, 3vw, 20px);
    font-weight: 900;
    line-height: 1.2em;
    overflow-wrap: break-word;
    margin: 1em 0 .7em 0;
}

.shoplist_box p {
    font-size: clamp(12px, 3vw, 18px);
    text-align: justify;
    word-break: break-all;
    line-height: 1.5;
    margin-bottom: 5%;
}

.shoplist_box ul {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15%;
}

.shoplist_box ul li {
    width: 16%;
    max-width: 35px;
}

.shoplist_box ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
}


@media screen and (min-width: 768px) {

    .shoplist_wrapper {
        padding: clamp(80px, 6vw, 100px) 5% !important;
    }

    .shoplist .frame {
        padding: 7% 4% !important;
    }

    .shoplist section:not(:last-of-type) {
        margin-bottom: 8%;
    }

    .shoplist h3 {
        gap: 1.5em;
        margin-bottom: 5%;
        scroll-margin-top: 120px;
    }

    .shoplist h3::before,
    .shoplist h3::after {
        border-top: solid 3px #000;
        border-bottom: solid 3px #000;
        height: 16px;
    }

    .shoplist_wrap {
        row-gap: 3vw;
        column-gap: 3.5%;
    }

    .shoplist_box {
        width: 31%;
        padding: 0 3% 3% 0;
    }

    .shoplist_box h4 {
        font-size: clamp(18px, 2vw, 24px);
    }

    .shoplist_box p {
        font-size: clamp(14px, 1.5vw, 18px);
    }

    .shoplist_box ul li a {
        transition-duration: .2s;
    }

    .shoplist_box ul li a:hover {
        opacity: .6;
    }

}

/* ==========================================
　　　　　ピックアップアイテム（.pickup）
============================================*/

.pickup h3 {
    margin: 0 auto 5% auto;
    font-size: clamp(14px, 2.5vw, 32px);
    line-height: 1.5em;
}

.pickup h3 small {
    font-size: clamp(10px, 2vw, 18px);
    display: inline-block;
    margin-top: 1%;
    line-height: normal;
}

.pickup_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: .5%;
}

.pickup_box {
    transition-duration: .1s;
    width: 49.5%;
    margin-bottom: 1%;
}

.pickup_box img {
    filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.15));
}

.pickup_box p {
    font-size: clamp(10px, 1vw, 14px);
    margin-top: 1%;
}

.pickup_box a:hover {
    transition-duration: .1s;
}

/* -----popup----- */
.popup_style {
    width: fit-content;
    width: 90%;
    max-width: 900px;
    background-color: #FFFFFF;
    margin: 50px auto;
    padding: 35px;
}

.pickup_inner {
    font-family: "Noto Sans JP", sans-serif;
    margin: 0 auto;
    text-align: center;
}

.pickup_inner img {
    max-width: 100%;
}

.pickup_inner p {
    font-size: clamp(12px, 3.5vw, 16px);
    margin: 5% 0;
    text-align: left;
}

.pickup_inner span {
    font-size: clamp(12px, 3.5vw, 16px);
    border: 1px solid #000;
    padding: 2%;
    display: inline-block;
}


@media screen and (min-width: 768px) {

    .pickup_box {
        width: 33%;
    }

    .pickup_inner {
        width: 70%;
    }

}

