*{
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 */
.profile{
     max-width:auto;
    margin:0 auto;
    background:#009980;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;

    padding:100px 5%;
}

.profile-character{
    flex:0 0 45%;
}

.profile-character img{
    width:100%;
    max-width:500px;
    margin-left:0;
    height:auto;
    margin-left:300px;
}

.profile-info{
    flex:0 0 55%;
max-width:550px;
    margin-right:200px;
}

.dream{
    font-size:1.3rem;
    margin-bottom:10px;
}

.profile-info h1{
    font-size:4rem;
    line-height:1;
    margin-bottom:10px;
}

.name h2{
    font-size:2.5rem;
}

.intro{
    font-size:1.2rem;
    line-height:1.8;
    margin:30px 0;
}

.data{
    font-size:1.1rem;
    line-height:2;
}

.sns{
    margin-top:50px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.sns a{
    text-decoration:none;
    padding-bottom:15px;
    border-radius:999px;
    font-weight:bold;
}


@media(max-width:768px){

    .profile{
        position:relative;
        min-height:900px;
        padding:100px 15px 50px;
        overflow:hidden;
        margin-top:-20px;
    }

    .profile-character{
        position:absolute;
        left:-100px;
        bottom:0;
        width:75%;
        z-index:1;
    }

.profile-character img{
        width:100%;
        max-width:none;
        margin-left:0;
        margin-left:50px;
        margin-bottom:260px;
    }

    .profile-info{
        width:58%;
        margin-left:auto;
        margin-right:0;
        position:relative;
        z-index:2;
    }

    .dream{
        font-size:1rem;
    }

    .profile-info h1{
        font-size:2.8rem;
    }

    .name h2{
        font-size:1.8rem;
    }

    .intro{
        font-size:0.95rem;
        line-height:1.7;
    }

    .data{
        font-size:0.9rem;
        line-height:1.8;
    }

    .sns{
        flex-direction:column;
        gap:10px;
    }

    .sns img{
        width:200px;    }

    .sns a{
        width:100%;
        text-align:center;
        padding:12px;
    }
}

.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;
}
