body{
    margin:0;
    background:#000;
    color:#fff;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
}

.hero{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    min-height:100vh;

    background-image:url('/assets/images/the_egg.png');
    background-repeat:no-repeat;
    background-position:center center;
    background-size:cover;

    display:flex;
    justify-content:center;
    align-items:center;
}

.hero h1{
    font-size:5rem;
    letter-spacing:5px;
}

.catch{
    font-size:2rem;
    margin-top:30px;
}

footer{
    background:#050505;
    border-top:1px solid #222;
    margin-top:80px;
}

.footer-inner{
    max-width:1000px;
    margin:0 auto;
    padding:40px 20px;
    text-align:center;
}

.footer-logo{
    font-size:1.8rem;
    letter-spacing:3px;
    margin-bottom:15px;
}

.footer-copy{
    color:#aaa;
    margin-bottom:20px;
}

.footer-links{
    margin-bottom:20px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    margin:0 10px;
}

.footer-links a:hover{
    opacity:.7;
}

.copyright{
    color:#666;
    font-size:.9rem;
}

.member img{width: 200px;height: auto;}

.member{margin: 60px 0;}


main{width: 1200px;margin: 0 auto;}

h1, h2{font-weight: 300;font-style: italic;}

section{margin: 50px 0;}

/* ==================
HEADER
================== */

header{
    background:#000;
    border-bottom:1px solid #222;
    position:sticky;
    top:0;
    z-index:999;
    font-size: 15px;
}

.header-inner{
    max-width:1200px;
    height: 40px;
    margin:0 auto;
    padding:15px 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.site-logo img{
    width:260px;
    max-width:100%;
    display: block;
}

/* ==================
PC MENU
================== */

nav ul{
    display:flex;
    gap:30px;

    list-style:none;
    margin:0;
    padding:0;
}

nav a{
    color:#fff;
    text-decoration:none;
    letter-spacing:2px;
}

/* ==================
HAMBURGER
================== */

.hamburger{

    display:none;

    width:40px;
    height:40px;

    background:none;
    border:none;
    cursor:pointer;

    position:relative;
}

.hamburger span{

    position:absolute;

    left:5px;

    width:30px;
    height:2px;

    background:#fff;

    transition:.3s;
}

.hamburger span:nth-child(1){
    top:10px;
}

.hamburger span:nth-child(2){
    top:19px;
}

.hamburger span:nth-child(3){
    top:28px;
}

/* OPEN */

.hamburger.active span:nth-child(1){
    transform:rotate(45deg);
    top:19px;
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg);
    top:19px;
}

/* ==================
MOBILE
================== */

@media(max-width:768px){

    .hamburger{
        display:block;
    }

    nav{

        position:fixed;

        top:71px;
        right:-100%;

        width:100%;
        height:calc(100vh - 71px);

        background:#000;

        transition:.3s;
    }

    nav.active{
        right:0;
    }

    nav ul{

        flex-direction:column;

        align-items:center;

        padding-top:50px;
    }

    nav li{
        margin-bottom:30px;
    }

    nav a{
        font-size:1.2rem;
    }

}