﻿@charset "UTF-8";

/*ウィンドウ幅が480px以下の場合に適用するCSS*/
@media screen and (max-width:480px) {
    * {
        margin: 0;
        padding: 0;
    }
    body {
        width: 100%;
        background-color: black;
    }

    header {
        background-color: black;
        width: 100%;
    }
    .title-nav-box {
        width: 100%;
        background-color: black;
        text-align: center;
    }
    header h1 {
        width: 100%;
        margin: 11vw auto;
    }
    header h1 img {
        width: 80%;
    }
    .head-shot {
        display: none;
    }
    div .sns {
        width: 100%;
        margin: 0 auto;
        background-color: gray;
        position: sticky;
        top: 0px;
        z-index: 1;
    }
    .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%;
        margin:5vh 0;
        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;
    }
    .hand {
        width: 100%;
        height: 150px;
        text-align: center;
        animation-name: hand-transform-keyframes;
        animation-duration: 1000ms;
        animation-delay: 0ms;
        animation-fill-mode: forwards;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }
    @keyframes hand-transform-keyframes {
        0% {transform:translate(0px, 0px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg);animation-timing-function: cubic-bezier(.25,.25,.75,.75);}
        100% {transform:translate(0px, 50px) scale(1) rotateX(0deg) rotateY(0deg) rotateZ(0deg);}
    }
    .hand  p {
        font-size: 10vw;
        color: white;
    }

    .disk{
        width: 100%;
        text-align: center;
    }

    .parent {
        width: 100%;
        color: white;
        padding-bottom: 60px;
    }
    .parent div{
        margin: 80px 0;
        text-align: center;
    }
    .parent a {
        line-height: 2;
        color:white;
        text-decoration:underline;
    }

    .parent img {
        width: 350px;
    }

    /*footer*/
    footer {
        width: 100%;
    }

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