@charset "UTF-8";
/*===================
fade
=====================*/
.fade .animation-bg {
    background: #030303;
    content: "";
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    animation-name: PageAnime-fade;
    animation-duration: 0.5s;
    animation-delay: 0.6s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    pointer-events: none;
}

@keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

/*===================
common
=====================*/
html {
    font-size: 62.5%;
}

body {
    font-family: 
        "Noto Sans JP",
        Arial,
        sans-serif;
    font-style: normal;
    color: #030303;
    background-color: #fff;
    line-height: normal;
}

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

/*===================
header
=====================*/
.header__logo {
    width: 123.13px;
    height: 67px;
    position: absolute;
    z-index: 99;
    top: 15px;
    left: 15px;
}

.header__btn {
    display: block;
    width: 34px;
    height: 23px;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    top: 37px;
    right: 5%; 
}

.header {
    position: relative;
}

.nav__logo {
    width: 78px;
    height: 42.443px;
}

/* .nav初期表示 */
.nav {
    background: #030303;
    width: 100%;
    height: 100vh;
    padding: 30px 7.5%;
    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__btn {
    width: 30px;
    height: 30px;
}

.nav__list{
    margin-top: 71.65px;
}

.nav__item {
    margin-top: 52px;
    color: #FFF;
    text-align: center;
    font-family: Oswald;
    font-size: 2rem;
    font-weight: 700;
}

.nav.active {
    transform: translateX(0);
}

/* header　pc */
@media screen and (min-width: 769px) {
    .header {
        padding: 0 1.9%;
        height: 85px;
        background-color: #030303;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    
    .header__logo {
        width: 120px;
        margin-left: 0.9%;
        top: 10px;
    }
    
    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: none;
    }

    .nav__header {
        display: none;
    }
    
    .nav__btn {
        display: none;
    }
    
    .nav__list{
        margin-top: 0;
        display: flex;
        align-items: center;
    }
    
    .nav__item {
        margin-top: 0;
        font-size: 1.6rem;
        font-weight: 400;
        margin-left: 70px;
    }
    
    .header__btn {
        display: none;
    } 
}/* pc 769px */

/*===================
main
=====================*/
.main {
    height: 100vh;
}

.main__header, .slick-track, .slick-list {
    height: 100%;
}

.mainImg__pc {
    display: none !important;
}

.mainImg__sp {
    display: block;
    height: 100%;
}

.mainImg__sp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.images {
    height: 100%;
    position: relative;
}

/* main　pc */
@media screen and (min-width: 769px) {
    .main {
        height: calc(100vh - 85px);
    }

    .main__header, .slick-track, .slick-list {
        height: 100%;
    }

    .mainImg__sp {
        display: none !important;
    }

    .mainImg__pc {
        display: block !important;
        height: 100%;
    }

    .mainImg__pc img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .images {
        height: 100%;
        position: relative;
    }
}/* pc 769px */

/*====================
footer
====================*/
.copy {
    text-align: center;
    position: relative;
    margin-top: -30px;
}

.copy small {
    color: #FFF;
    font-size: 0.6rem;
}

/* footer　pc */
@media screen and (min-width: 769px) {
    .copy small {
        font-size: 0.8rem;
    }
}/* pc 769px */
