@charset "UTF-8";

/*共通部分*/
html {
    font-size: 16px;
    scroll-behavior: smooth; /*リンクによるジャンプの際スクロールで動く*/
}

body {
    font-family: "Helvetica", "ヒラギノ丸ゴ ProN";
    line-height: 1.7;
    color: white;
    background-color: black;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/*HEADER*/
.logo {
    width: 20%;
    margin-top: 22px;
}

.main-nav {
    display: flex;
    text-transform: uppercase;
    margin-top: 34px;
    list-style: none;
}

.main-nav li {
    margin-right: 36px;
}

.main-nav a {
    font-size: 1.5vw;
    color: white;
}

.main-nav a:hover {
    color:#0bd;
}

.page-header {
    background: black;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 3;
    width: 100%;
}

/* HOME */
.page-title {
    text-align: center;
    margin-top: 5%;
    padding: 23%;
    font-size: 4.0vw;
    font-family: serif;
    position: relative;
    z-index: 2;
}


.big{
    text-align: center;
    margin-top: 20%;
}
/*背景画像*/
.big-bg {
    background-image: url("image/backimg.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.big-bg::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
}


.article{
    text-align: center;
}
.title {
    text-align: center;
    margin-top: 20%;
    font-size: 20px;
}


.about {
    text-align: center;
    
}

.about-image{
    background-image: url("image/about2.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
}

#about-anchor{
    margin-top: 15%;
    padding-top: 15%;
}

.content {
    margin-right: auto;
    margin-left: auto;
    width: 80%;
    padding-bottom: 15%;
    text-align: center;
}

.subtitle{
    margin: 10%;
    font-size: 4.0vw;
    font-family: Georgia, 'Times New Roman', Times, serif;
    position: relative;
    z-index: 2;
}

.block{
    margin-bottom: 3%;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}
/*photo*/
/* .photo {
    text-align: center;
    margin-top: 30%;
}

.grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3,minmax(110px,1fr));
    margin-top: 6%;
    margin-bottom: 50px;
} */

/*モバイル版*/
@media screen and (max-width:520px) {
    .main-nav a {
        font-size: 10px;
        color: white;
    }

    .logo {
        width: 150px;
    }

    .main-nav li {
        margin-right: 20px;
    }

    .page-title {
        margin-top: 25%;
    }

    .contest-rocket-img {
        width: 45%;
    }

    .rocket-text {
        width: 45%;
        text-align: center;
        margin-left: 5%;
        font-size: 14px;
    }

    .rockets-img{
        width: 45%;
    }

    .rocket-description{
        font-size: 14px;
    }
}