@charset "utf-8";

@media screen and (max-width: 768px) {/* スマホとかは大体768pxにしとけばなんとかなる */

}

/* Base style */

body{
    font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    /* 代替案をめっちゃ書いたやり方 */
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

/* 
section 
 */
.section{
    padding: 30px 15px;
    color: #fff;
    background: #000;
}
.section.section-secondary{
    background: #000;
}
.section-headline{
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin: 0 0 40px; /* top right bottom left の順番で指定 */
}
/*
header 
 */

.header{
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 15px;
position: fixed;
z-index: 10;
top: 0;
left: 0;
}
.header-logo{
    margin: 0;
    height: 150px;

}
.header-logo > a{
    display: block;
}
.header-nav{
    margin: 0;
}
.header-navlist{
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-navitem > a{
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s;
}
.header-navitem > a:hover {
    border-bottom: 2px solid #fff;
}
@media screen and (max-width: 768px) {
    .header-navitem{
        font-size: 8px;
        padding: 5px;
    }
}


/*
Hero
 */
.hero{
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.hero > strong{
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 120px;
    color: #fff;
    font-weight: bold;
    display: block;
    width: 100%;
    text-align: center;
}

.hero > video{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
@media screen and (max-width: 768px) {
    .hero > strong{
        font-size: 50px;
    }
    .hero > video{
        display: none;
    }
}
@media screen and (min-width: 769px) {
    .hero > img{
        display: none;
    }
    
}

/* 
NEWS
 */

.news{
    display: block;
    margin: 20px auto 50px;
    padding: 20 20;
    border: 2px solid #fff ;

}
.link{
    margin: 20px;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}
.news-look{
    margin: 10px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .news{
        align: center;
        margin: auto;
    }
}


/*
About us
 */
.About{
    margin: 0;
    display: flex;
}

/* .about-image{} */
.about-caption{
    padding-left: 15px;
}
.about-headline{
    margin: 0 0 20px;
    font-size: 30px;
}
/* .about-description{} */
@media screen and (max-width: 768px) {
    .About{
        display: block;
    }
    .about-image{
        max-width: 100%;
        margin-bottom: 30px;
    }
    .about-headline{
        font-size: 20px;
        text-align: center;
    }
}

/* 
Biography
 */

 .bio{
    font-size: 18px;
    text-align: center;
    font-weight: normal;
 }

/* 
Member
 */

.grid{
    /* 使い回す用のクラス */
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
}
.grid-movies{
    /* 使い回す用のクラス */
    margin: 15px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    justify-content: center;
}
.grid-item{
    list-style: none;
}
.grid-col-2 > .grid-item{
    width: 50%;
}
.grid-col-3 > .grid-item{
    width: 33%;
}
.grid-col-4 > .grid-item{
    width: 25%;
}
@media screen and (max-width: 768px) { /* スマホとかは大体768pxにしとけばなんとかなる */
    .grid{
        display: block;
    }
    .grid-col-2 > .grid-item,
    .grid-col-3 > .grid-item,
    .grid-col-4 > .grid-item{
        width: 100%;
        margin: 15px;
    }
}


.member{
    text-align: center;
    padding: 10px 15px;
}
.member-name{
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 20px;
}
.member-pic{
    margin: 0 0 20px;
    border-radius: 30%;
}
.member-description{
    text-align: left;
}
.member-link{
    text-align: start;
    text-decoration: none;
    color: #fff;
}

.footer{
    background-color: #fff;
    color: #000;
}
.footer-logo{
    margin: 0;
    padding: 40px 15px;
    display: block;
    place-items: center;
    justify-content: center;
}
.footer-copy{
    display: block;
    text-align: center;
    padding: 10px;
}
@media screen and (max-width: 768px) { 
    .footer-logo{
        width: auto;
    }
}


/* 
Member Page
 */

.personality{
    display: block;
    justify-content: center;
}

.personality-description{
    font-size: 15px;
    font-weight: normal;
    color: #fff;
    text-align: start;
    justify-content: start;
}