@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #202020;
}

/* ヘッダーはじめ */

header {
    display: flex;
    padding-top: 3%;
}

.mark-flex {
    width: 100%;
}
h1 {
    width: 100%;
    line-height: 3;
    text-align:center;
    font-size: 5vw;
}
.facemark {
    display: block;
    margin: 0 auto;
    width: 25%;
}

.facemark img {
    display: block;
    width: 100%;
    margin-right: auto;
    animation: scaleanime 10s infinite;
}
@keyframes scaleanime {
    12% {
        transform: rotate(5deg);
    }
    25% {
        transform: rotate(10deg);
    }
    37% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(0deg);
    }
    62% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(-10deg);
    }
    87% {
        transform: rotate(-5deg);
    }
    99% {
        transform: rotate(0deg);
    }
}

nav {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 1000;
}
header nav ul {
    display: flex;
    justify-content: space-around;
}
header nav ul li{
    width: 25%;
    text-align: center;
    line-height: 5;
    background-color: #fff;
}
header nav ul li:hover{
    background: linear-gradient(to right, blue, pink);
}
header nav ul li a {
    display: block;
    font-size: 3.5vw;
}
header nav ul li a:hover {
    color: antiquewhite;
}

/* ヘッダー終わり */

/* メインはじめ */

main {
    width: 100%;
    padding: 1% 0 0;
    margin-left: auto;
    margin-right: auto;
    background-color: #8fbc8f;
}

main section {
    display: flex;
    margin-top: 10%;
    margin-bottom: 10%;
    width: 100%;
}
main section:hover {
    filter: sepia(80%);
    transition: 0.5s;
}


main section:nth-of-type(1) {
    background-image: url(../images/section1.jpg);
    background-position: center left;
    background-size: 20%;
    background-repeat: no-repeat;
}
main section:nth-of-type(2) {
    background-image: url(../images/section2.jpg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 20%;
}
main section:nth-of-type(3) {
    background-image: url(../images/section3.jpg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 20%;
}
main section:nth-of-type(4) {
    background-image: url(../images/section4.jpg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 20%;
}
main section:nth-of-type(5) {
    background-image: url(../images/section5.jpg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 20%;
}

main section div {
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}
.isAnimate {
    opacity: 1;
    transform: translateY(0px);
}

main section div h2 {
    width: 70%;
    margin: 0% auto;
    font-family: "hagrid-text", sans-serif;
    font-size: 3.5vw;
    font-weight: 700;
    font-style: normal;
}

main section div p {
    width: 70%;
    margin-left: auto;
    font-size: 3vw;
    margin: 2% 3% 2% auto;
}

.work-page {
    width: 100%;
    text-align: center;
    line-height: 8;
}
.work-page a {
    display: block;
    width: 100%;
}

/* メイン終わり */



