*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:sans-serif;
background:#fff;
color:#111;
overflow-x:hidden;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
height:80px;
padding-right:5%;
padding-left:0px;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,.95);
backdrop-filter:blur(10px);
z-index:999;
}

.logo img{
    height:clamp(80px, 8vw, 100px);
    width:auto;
    display:block;
}

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
color:#111;
font-weight:700;
}

/* main */
.goods{
    background:#f4f4f4;
    min-height:100vh;
    padding:120px 0;
}

.container{
    width:min(90%,1200px);
    margin:auto;
}

.goods h1{
    font-size:4rem;
    margin-bottom:50px;
}

.goods-card{
    background:#fff;
    border:1px solid #bfbfbf;
    border-radius:20px;
    padding:35px;
    margin-bottom:30px;

    transition:.3s;
}

.goods-card:hover{
    transform:translateY(-3px);
}

.booth{
    border-left:6px solid #ff7b00;
}

.line{
    border-left:6px solid #00a321;
}

.goods-card h2{
    font-size:2rem;
    margin-bottom:15px;
    text-decoration:underline;
}

.tag{
    margin-bottom:15px;
    font-size:1rem;
}

.goods-card p{
    font-size:1.1rem;
    margin-bottom:15px;
}

.goods-btn{
    display:inline-block;
    background:#2f3743;
    color:#fff;
    text-decoration:none;
    font-weight:bold;

    padding:14px 28px;
    border-radius:999px;

    transition:.3s;
}

.goods-btn:hover{
    transform:translateY(-2px);
}

@media(max-width:768px){

    .goods{
        padding:100px 0 50px;
    }

    .goods h1{
        font-size:2.5rem;
        margin-bottom:30px;
    }

    .goods-card{
        padding:25px;
    }

    .goods-card h2{
        font-size:1.6rem;
    }

    .goods-btn{
        width:100%;
        text-align:center;
    }

}


.footer{
background:#000000;
color:white;
text-align:center;
padding:5px 5px;
margin-top:30px;
}

.footer img{
    margin-bottom:-30px;
}

.footer p{
    margin-bottom:30px;
}
/* animation */

.fade{
opacity:0;
transform:translateY(50px);
transition:1s;
}

.fade.show{
opacity:1;
transform:none;
}

/* hamburger */

.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
}

.hamburger span{
width:28px;
height:3px;
background:#111;
}

@media(max-width:768px) {
    .hamburger{
        display:flex;
    }

    nav{
        display:none;
    }

    nav.active{
        display:flex;
    }
}

#hamburger{
display:flex;
}

nav{
position:fixed;
top:80px;
right:-100%;
width:280px;
height:calc(100vh - 80px);
background:white;
flex-direction:column;
padding:40px;
transition:.4s;
}

nav.active{
right:0;
}

.info-card{
    border:1px solid #707070;
    border-radius:20px;
    padding:30px;
    background:#fff;
    margin-top:30px;
    border-left:5px solid #ff7b00;
}

.info-card2{
    border:1px solid #707070;
    border-radius:20px;
    padding:30px;
    background:#fff;
    margin-top:30px;
    border-left:5px solid #00830b;
}


.info-card h3{
    margin-bottom:15px;
    font-size:1.5rem;
    text-decoration:underline;
}

.info-card2 h3{
    margin-bottom:15px;
    font-size:1.5rem;
    text-decoration:underline;
}


.tag{
    margin-bottom:8px;
    font-size:0.95rem;
}

.text{
    margin-bottom:25px;
}

.buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:8px;
}

.btn.dark{
    display:inline-block;
    background:#2f3743;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:999px;
    font-weight:700;
}

/* スマホ */

@media (max-width:768px){

    #zikoN{
        width:90%;
    }

    .s img{
        width:70%;
    }

    .playlist-grid{
        grid-template-columns:1fr;
    }

    .content-card{
        padding:20px;
    }

    .footer img{
        width:250px;
    }

    h1,h2{
        text-align:center;
    }
}
