html {
    font-size: 16px;
    line-height: 2.5;
    letter-spacing: 0.05em;
}


body {
    background-color: #19191a;
    font-family: 'Noto Sans JP',
    sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}


header {
    height: 100vh;
    /* overflow: hidden; */
    position: relative;
    
}

/* ------------------ロゴ------------------------- */
.top-logo {
    position: absolute;
    bottom: 2rem;
    left: 7%;
    z-index: 10;
    width: 300px;
}

.logo-pic {
    width: 90%;
}

.logo-pic img {
    width: 100%;
}

.top-logo h2 {
    font-size: 1.3rem;
    margin-top: 1.5em;
    color: white;
    line-height: 1.6;
    width: 390px;
}

@media screen and (max-width:600px) {
    .top-logo {
        bottom: 3rem;
    }

    .logo-pic {
        width: 70%;
    }

    .top-logo h2 {
        font-size: 1rem;
        margin-top: 1em;
        color: white;
    }
}

/* -------------------ボタン------------------------ */
.vert-text {
    position: absolute;
    bottom: 5rem;
    right: 0rem;
    width: 10rem;
    display: flex;
    align-items: center;
    z-index: 99;
    padding-bottom: env(safe-area-inset-bottom);
}

.btn-circle {
    display: inline-block;
    text-decoration: none;
    background-image: -moz-linear-gradient(90deg, rgb(203, 186, 204) 0%, rgb(37, 128, 179) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(203, 186, 204) 0%, rgb(37, 128, 179) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(203, 186, 204) 0%, rgb(37, 128, 179) 100%);
    box-shadow: 0px 10px 18.69px 0.31px rgba(99, 122, 163, 0.89);
    color: #FFF;
    width: 120px;
    height: 120px;
    line-height: 22px;
    padding-top: 2.5em;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    overflow: hidden;
    transition: .4s;
    position: fixed;
}

.btn-circle:active {
    transform: translateY(2px);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
    border-bottom: none;
}

@media screen and (max-width:600px) {
    .vert-text {
        width: 7rem;
    }

    .btn-circle {
        width: 100px;
        height: 100px;
        padding-top: 2.4em;
        border-radius: 50%;
        font-size: .8rem;
    }
}

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

.scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-family: "font-2";
    font-size: calc(0.5rem + 0.35vw);
    z-index: 10;
}

/* ------------------ヘッダー・ナビゲーション--------------------- */
.title {
    color: rgb(255, 255, 255);
    font-size: 1rem;
    font-weight: bold;
    width: 80%;
    padding-top: 12px;
    line-height: 1.5;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 5px 0px 15px 30px;
    position: fixed;
    z-index: 100;
    width: 100%;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #19191a;
}

#g-nav {
    width: 100%;

}

.gnavi {
    display: flex;
    justify-content: center;
    list-style: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
}

.gnavi a {
    display: block;
    padding-top: 10px;
    padding-left: 50px;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.navLi01, .navLi02, .navLi03, .navLi04 {
    position: relative;
}

.navLi01::after,
.navLi02::after,
.navLi03::after,
.navLi04::after {
    content: "コンセプト";
    position: absolute;
    bottom: -35%;
    left: 43%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: .7rem;
    color: white;
}

.navLi02::after {
    content: "留村とは";
    position: absolute;
    bottom: -35%;
    left: 47%;
}

.navLi03::after {
    content: "募集内容";
    position: absolute;
    bottom: -35%;
    left: 48%;
}

.navLi04::after {
    content: "ご案内";
    position: absolute;
    bottom: -35%;
    left: 53%;
}

.nav01d li a {
    /*線の基点とするためrelativeを指定*/
    position: relative;
    z-index: 1000;
}

.nav01d li a:hover,
.navLi01:hover::after,
.navLi02:hover::after,
.navLi03:hover::after,
.navLi04:hover::after {
    color: rgb(199, 199, 199);
}

.nav01d li a::before {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    top: 0;
    left: 22%;
    /*線の形状*/
    width: 90%;
    height: 2px;
    background: rgb(179, 179, 179);
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);
    /*X方向0、Y方向1*/
    transform-origin: left top;
    /*左上基点*/
}

/*現在地の形状の設定*/
.nav01d li.current a::before {
    transform: scale(0.2, 1);
    /*X方向に0.2スケール拡大*/
}

/*現在地を含むhoverの設定*/
.nav01d li.current a:hover::before,
.nav01d li a:hover::before {
    transform: scale(1, 1);
    /*X方向にスケール拡大*/
}

@media screen and (max-width:600px) {
    .title {
        font-size: 1rem;
        width: 80%;
    }
}

/*===========================================================*/
/* クリックしたら円形背景が拡大（右上から） */
/*===========================================================*/

/*========= ナビゲーションのためのCSS ===============*/
@media screen and (max-width:990px) {
    /*アクティブになったエリア*/
    #g-nav.panelactive {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        top: 0;
        right: inherit;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: rgb(0, 0, 0);
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        right: -15px;
        top: -15px;
        transition: all .6s;
        /*0.6秒かけてアニメーション*/
    }

    .circle-bg.circleactive {
        transform: scale(50);
        /*クラスが付与されたらscaleを拡大*/
    }


    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
        /*クラスが付与されたら出現*/
    }

    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 45%;
        left: 47%;
        transform: translate(-50%, -50%);
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
        flex-wrap: wrap;
    }

    /*リストのレイアウト設定*/
    #g-nav.panelactive li {
        text-align: center;
        width: 100%;
    }

    #g-nav.panelactive li a {
        padding: 15px 0;
        display: block;
    }
    .navLi01::after,
    .navLi02::after,
    .navLi03::after,
    .navLi04::after {
        bottom: -5%;
        left: 40%;
        
    }

    .navLi02::after {
        left: 42%;
    }

    .navLi03::after {
        left: 42%;
    }

    .navLi04::after {
        left: 44%;
    }

    /* nav上の線 */
    .nav01d li a::before {
        top: 17%;
        left: 25%;
        /*線の形状*/
        width: 50%;
    }

}

/*==================================================
3本線が回転して×に
===================================*/

.openbtn {
    display: none;
}

@media screen and (max-width:990px) {

    /*ボタン外側*/
    .openbtn {
        position: fixed;
        display: block;
        top: 25px;
        right: 20px;
        z-index: 9999;
        /*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height: 50px;
        /* background: #000000; */
        border-radius: 5px;
    }

    /*ボタン内側*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 2px;
        background: #fff;
    }


    .openbtn span:nth-of-type(1) {
        top: 15px;
        width: 45%;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
        width: 35%;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
        width: 20%;
    }

    /*activeクラスが付与されると線が回転して×になる*/

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-135deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(135deg);
        width: 30%;
    }

}



/* スライダー */
.slider {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.slider__text img {
    width: 100%;
}

.slider__text-line {
    overflow: hidden;
}

.slider__inner {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

.slider__nav {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-bullet {
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

.slider-bullet__text {
    color: #fff;
    font-size: 0.65rem;
    margin-right: 1rem;
}

.slider-bullet__line {
    background-color: #fff;
    height: 1px;
    width: 1rem;
}

.slider canvas {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.slide {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.slide__content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.slide__img {
    position: relative;
    width: 40vw;
    height: 50vh;
    padding: 0;
    margin: 0;
    min-width: 12.5rem;
    transform-origin: top;
    transform: rotate(-10deg);
}

.slide-img-right {
     transform: rotate(10deg);
}

.slide__img:first-child {
    top: -2rem;
}

.slide__img:last-child {
    bottom: -1.5rem;
}

.slide__img img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width:600px) {
    .slider-bullet__text {
        margin-right: .5rem;
    }

    .slide__img {
        position: relative;
        width: 40vw;
        height: 40vh;
        padding: 0;
        margin: 0;
        min-width: 10rem;
    }

}