*{
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;
}

#projects{
margin-top:80px;
background:
    url(image/net1.png);
    background-color:#00978f;
}

#news{
background:
    url(image/net2.png);
    background-color:#a50000;
margin-top:80px;
}

#about{
background:
    url(image/net3.png);
    background-color:#006da0;
margin-top:80px;
}

#vision{
background:
    url(image/net4.png);
    background-color:#009999;
    margin-top:80px;
}

.text{
    font-size:20px;
    color:#fff;
}

#official-sns{
    color:#000000;
    text-align:center;
}

.hero{
    height:105vh;
}

.hero2{
    margin-top:80px;
    margin-bottom:30px;
}


.sns{
    text-align:center;
}

.hero picture,
.hero img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.container{
width:min(90%,1200px);
margin:auto;
padding:120px 0;
}

h2{
font-size:clamp(2rem,4vw,4rem);
margin-bottom:40px;
color:#fff;
}

h1{
    font-size:clamp(2rem,4vw,4rem);
color:#00a8a0;

}

.project-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.project-card{
    position:relative;
    border-radius:20px;
    overflow:hidden;
}

.project-card img{
    width:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
    display:block;
}

.project-card:hover img{
transform:scale(1.08);
}

.overlay{
position:absolute;
inset:0;
background:linear-gradient(
transparent,
rgba(0,0,0,.8)
);
display:flex;
align-items:flex-end;
padding:30px;
}

.overlay h3{
color:white;
font-size:1.8rem;
}

.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;
    }
}
