﻿@charset "UTF-8";

/*ウィンドウ幅が481px-900pxの場合に適用するCSS*/
@media screen and (min-width:481px) and (max-width:901px)
{
    * {
        margin: 0;
        padding: 0;
    }
    body {
        width: 100%;
        background-color: black;
    }
    header {
        background-color: black;
        width: 100%;
        text-align: center;
    }
    .title-nav-box {
        width: 100%;
        background-color: black;
        text-align: center;
    }
    header h1 {
        width: 80%;
        height: 600px;
        margin: 0 auto;
    }
    header h1 img {
        width: 80%;
    }
    .head-shot {
        display: none;
    }
    div .sns {
        width: 100%;
        margin: 0 auto;
        background-color: gray;
    }

    .sns_icons {
        display: flex;
        justify-content: space-evenly;
        width: 80%;
        margin: 0 auto;
    }
    .sns_icons img {
        padding-top: 10px;
        width: 15vw;
    }
    nav {
        width: 95%;
        margin: 0 auto;
    }
    .menu-box {
        width: 100%;
        display: flex;
        list-style-type: none;
        justify-content: space-around;
    }

    header .title-nav-box nav li a {
        font-size: 7vw;
        display: block;
        text-align: center;
        text-decoration: none;
        color: white;
    }

    .disk{
        width: 100%;
        text-align: center;
    }
    .parent {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(12, 1fr);
        gap: 10px;
        color: white;
        padding-top: 60px;
    }
    .parent div{
        margin: 80px 0;
        text-align: center;
    }
    .parent a {
        line-height: 2;
        color:white;
        text-decoration:underline;
    }
    .parent img {
        width: 350px;
    }
    h3 {
        font-size: 30px;
    }
    .parent div p {
        font-size: 20px;
    }
    /*footer*/
    footer {
        width: 100%;
    }

    footer p {
        text-align: center;
        color: white;
        font-size: 8px;
        display: block;
        margin-top: 10vw;
        margin-bottom: 6vw;
    }
}