
*{margin:0;
padding:0;
box-sizing:border-box;
}
html{
scroll-behavior:smooth;
}
body{
font-family:'Noto Sans JP',sans-serif;
background:#ffffff;
color:#111;
overflow-x:hidden;
line-height:1.8;
}
header{
position:fixed;
top:0;
left:0;
width:100%;
padding:18px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,.8);
backdrop-filter:blur(20px);
border-bottom:1px solid #ededed;
z-index:999;
transition:.4s;
}
.logo{
font-size:24px;
font-weight:700;
letter-spacing:4px;
}
nav{
display:flex;
gap:30px;
}
nav a{
text-decoration:none;
color:#111;
font-size:14px;
transition:.3s;
}
nav a:hover{
opacity:.5;
}
.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
position:relative;
overflow:hidden;
}
.slide{
position:absolute;
inset:0;
background-size:cover;
background-position:center;
opacity:0;
transition:2s;
transform:scale(1.05);
}
.slide.active{
opacity:.18;
transform:scale(1);
}
.hero-content{
position:relative;
z-index:5;
}
.hero h1{
font-size:clamp(4rem,12vw,9rem);
font-weight:700;
letter-spacing:6px;
}
.hero p{
font-size:1.2rem;
color:#666;
margin-top:10px;
}
.scroll{
position:absolute;
bottom:40px;
left:50%;
transform:translateX(-50%);
font-size:13px;
color:#777;
}
section{
padding:120px 10%;
}
.section-title{
font-size:3rem;
margin-bottom:70px;
text-align:center;
font-weight:700;
}
.about{
max-width:900px;
margin:auto;
text-align:center;
font-size:1.1rem;
color:#555;
}
.members{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}
.card{
border:1px solid #e8e8e8;
padding:40px;
transition:.4s;
background:#fff;
}
.card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.05);
}
.card h3{
font-size:1.6rem;
margin-bottom:15px;
}
.card p{
color:#666;
}
.btn{
display:inline-block;
margin-top:20px;
padding:12px 24px;
border:1px solid #111;
text-decoration:none;
color:#111;
transition:.3s;
}
.btn:hover{
background:#111;
color:white;
}
.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}
.gallery img{
width:100%;
height:350px;
object-fit:cover;
transition:.5s;
}
.gallery img:hover{
transform:scale(1.03);
}
.discord{
text-align:center;
padding:140px 10%;
border-top:1px solid #eee;
border-bottom:1px solid #eee;
}
.discord h2{
font-size:3rem;
margin-bottom:20px;
}
.discord p{
color:#666;
margin-bottom:30px;
}
.shop{
text-align:center;
}
.shop iframe{
width:100%;
height:700px;
border:1px solid #eee;
margin-top:40px;
}
.links{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:40px;
}
.fade{
opacity:0;
transform:translateY(60px);
transition:1s;
}
.fade.show{
opacity:1;
transform:none;
}
footer{
padding:60px;
text-align:center;
border-top:1px solid #eee;
color:#777;
}
@media(max-width:768px){
nav{
display:none;
}
.hero h1{
font-size:4rem;
}
.section-title{
font-size:2.2rem;
}
}