@charset "utf-8";

/*=====================
common
===================  */

:root {
    --primary-white: #FDFDFD;
    --primary-black: #3e3e3e;
    --primary-orange: #EDD4BD;
    --primary-yellow: #eee8b5;
    --primary-blue: #3399cc;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "Noto Sans JP",
        Arial,
        sans-serif;
    font-style: normal;
    color: var(--primary-black, #3e3e3e);
    background-color: var(--primary-white, #FDFDFD);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

* {
    box-sizing: border-box;
}

/* .scroll */
.scroll_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.scroll {
    display: inline-block;
    padding-top: 100px;
    position: relative;
    width: 360px;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
}

.scroll::before {
    animation: scroll 3.5s infinite;
    border: solid #000;
    border-width: 0 0 1px 1px;
    content: "";
    display: inline-block;
    margin: auto;
    position: absolute;
    top: 40px;
    right: 0;
    left: 0;
    transform: rotate(-45deg);
    width: 15px;
    height: 15px;
}

@keyframes scroll {
    0% {
        transform: rotate(-45deg) translate(0, 0);
    }

    80% {
        transform: rotate(-45deg) translate(-30px, 30px);
    }

    0%,
    80%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

/* .scroll pc */
@media screen and (min-width:900px) {
    .scroll {
        margin: 0;
        left: 0;
    }
}
/* pc 900px */

/* loop_wrap */
.loop_wrap-pc {
    display: none;
}
.loop_wrap-sp {
    display: flex;
    width: 100vw;
    height: 20px;
    overflow: hidden;
    margin-top: 5px;
}

.loop_wrap-sp img {
    width: auto;
    height: 100%;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

.loop_wrap-sp img:first-child {
    animation: loop 50s -25s linear infinite;
}

.loop_wrap-sp img:last-child {
    animation: loop2 50s linear infinite;
}

/* loop_wrap-pc */
@media screen and (min-width:769px) {
    .loop_wrap-sp {
        display: none;
    }
    .loop_wrap-pc {
        display: flex;
        width: 100vw;
        height: 20px;
        overflow: hidden;
        margin-top: 5px;
    }
    
    .loop_wrap-pc img {
        width: auto;
        height: 100%;
    }
    
    @keyframes loop {
        0% {
            transform: translateX(100%);
        }
    
        to {
            transform: translateX(-100%);
        }
    }
    
    @keyframes loop2 {
        0% {
            transform: translateX(0);
        }
    
        to {
            transform: translateX(-200%);
        }
    }
    
    .loop_wrap-pc img:first-child {
        animation: loop 50s -25s linear infinite;
    }
    
    .loop_wrap-pc img:last-child {
        animation: loop2 50s linear infinite;
    }
}
/* pc 769px */

/*=====================
header
===================  */

.header {
    padding: 18px 10%;
    height: 60px;
    background-color: var(--primary-black, #3e3e3e);
}

/* .nav初期表示 */
.nav {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100vh;
    padding: 0 6% 0 4.8%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo img {
    padding-bottom: 6px;
    margin-left: 15%;
}

.nav__btn {
    padding: 20px 0;
    cursor: pointer;
}

.nav__list {
    margin-top: 40px;
    color: #FFF;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    margin-left: 12.5%;
}

.nav__footer {
    display: flex;
    margin-top: 310px;
    align-items: center;
    margin-bottom: 50px;
}

.sns__txt {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.4rem;
    padding-left: 15%;
}

.nav__sns {
    width: 100%;
    display: inline-flex;
    text-align: center;
    gap: 10px;
    padding-right: 20.5%;
}

.copy {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.header__btn {
    display: block;
    width: 22px;
    height: 33px;
    cursor: pointer;
    position: absolute;
    top: 18px;
    right: 8%;
}

/* .header pc */
@media screen and (min-width:769px) {
    .header {
        margin: 0 auto;
        padding: 20px 8%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo img {
        margin-top: 10px;
    }

    .nav__logo {
        display: none;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
    }

    .nav__header {
        display: none;
    }

    .nav__item {
        margin-top: 0;
        display: flex;
        align-items: center;
    }
    .nav__header .nav__item {
        max-width: 1800px;
    }

    .nav__list {
        color: #FFF;
        text-align: center;
        margin: 0;
        font-size: 1.3rem;
        font-weight: 700;
        line-height: 1.3;
    }

    /* .nav__list:first-child {
        display: none;
    } */

    .nav .nav__footer {
        display: none;
    }

    .nav .copy {
        display: none;
    }

    .nav__item {
        display: inline-flex;
        align-items: center;
        gap: 31px;
    }

    .header__btn {
        display: none;
    }
}
/* pc 769px */

/* .scroll */
.scroll_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.scroll {
    display: inline-block;
    padding-top: 100px;
    position: relative;
    width: 360px;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
}

.scroll::before {
    animation: scroll 3.5s infinite;
    border: solid #000;
    border-width: 0 0 1px 1px;
    content: "";
    display: inline-block;
    margin: auto;
    position: absolute;
    top: 40px;
    right: 0;
    left: 0;
    transform: rotate(-45deg);
    width: 15px;
    height: 15px;
}

@keyframes scroll {
    0% {
        transform: rotate(-45deg) translate(0, 0);
    }

    80% {
        transform: rotate(-45deg) translate(-30px, 30px);
    }

    0%,
    80%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}



/*=====================
footer
===================  */
.article__footer {
    padding: 50px 12%;
    background-color: var(--primary-black, #3e3e3e);
    height: 400px;
}

.footer-logo img {
    width: 70%;
    margin: -5%;
    margin-bottom: 10px;
}

.footerNav {
    display: flex;
    flex-wrap: wrap;
    gap: 17px 10%;
}

.footerNav__item a {
    color: var(--primary-white, #FDFDFD);
    font-size: 1.1rem;
    line-height: 2;
}

.sns__txt {
    width: 100%;
    font-size: 1rem;
    text-align: center;
}

.sns__txt,
.footerNav__sns  img {
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: flex-end;
    margin-right: 2%;
}

.nav__footer2 {
    display: flex;
    padding-top: 90px;
    align-items: center;
    padding-left: 8%;
}

.footerNav__sns {
    display: inline-flex;
    text-align: center;
    gap: 8px;
}

.copy {
    margin: 30px auto;
}

@media screen and (min-width:769px) {
    .article__footer {
        padding: 30px 8%;
        margin: 0 auto;
    }

    .footerNav__item a {
        font-size: 1.3rem;
        
    }
    .footerNav {
        gap: 17px 8%;
    }

    .footer-logo img {
        width: 30%;
        margin-top: 0;
        margin-left: -1.5%;
    }

    .nav__footer2 {
        padding: 0;
    }

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

    .sns__txt {
        font-size: 1.3rem;
        padding: 0;
    }

    .copy {
        margin: 80px auto 0;
    } 

}

/* pc 769px */
