@charset 'UTF-8';

/*-----riset------------*/
/* ul, li, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
p {
    margin: 0;
    padding: 0;
} */
/*-----riset-end-----------*/
#header {
    height: 70px;
    z-index: 9999;
    transition: .6s;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    /* height: auto; */
    /* overflow: hidden; */
    /* background-color: #fff; */
}

#headertop {
    z-index: 55555;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: auto;
    transition: .6s;
}

#headertop.fixed {
    transform: translateY(0%);
    transition: .3s;
}

#headertop #header.view {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    transition: .3s;
    transform: translateY(-200%);
}

#headertop.fixed #header.view {
    /* background-color: #fff; */
    transform: translateY(0%);
    transition: .3s;
}

#header.view {
    /* background: rgb(255, 255, 255, 1); */
    /* height: 70px; */
    /* border-bottom: 1px solid #000; */
}

@media screen and (min-width: 992px) {
    #header {
        height: 100px;
    }

    #header.view {
        height: 100px;
        background: rgb(255, 255, 255, 1);
    }
}

@media screen and (min-width: 1200px) {
    #header {
        height: 150px;
    }
}

/* #header::before {
    content: '';
    display: block;
    position: relative;
    width: 40%;
    height: 90%;
    background-color: #eeeeee;
    position: absolute;
    right: 0;
    z-index: -101;
} */
.header-container {
    width: 100%;
    height: 100%;
}

.header_block {
    width: 100%;
    height: 100%;
    position: relative;
}

.header_logo {
    position: absolute;
    top: 20px;
    left: 8%;
    display: inline-block;
    width: 80px;
    z-index: 1000;
    filter: invert(100%);


}



#header.view .header_logo {
    filter: invert(0%);

}

.header_page .header_logo {
    filter: invert(0%);

}

.header_logo a {
    display: block;
}

.header_logo img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 768px) {
    .header_logo {

        top: 50%;
        left: 4%;
        transform: translate(0%, -50%);
    }
}


@media screen and (min-width: 1200px) {
    .header_logo {
        width: 110px;
        left: 3.5%;

    }
}


/*-----nav------------*/
.nav_block {
    display: none;
}

@media screen and (min-width:768px) {
    .nav_block {
        display: block;
        position: absolute;
        right: 4%;
        top: 50%;
        transform: translate(0%, -50%);
        z-index: 1000;
        filter: invert(100%);
    }

    #header.view .nav_block {
        filter: invert(0%);

    }

    .header_page .nav_block {
        filter: invert(0%);

    }

    .nav_block>nav {
        display: flex;
        align-items: center;
    }

    .nav_menu {
        display: flex;
        align-items: center;
        padding-bottom: 5px;
        margin-right: 2rem;
    }

    .nav_menu li {
        margin-right: 1.2rem;
    }

    .nav_menu li:last-child {
        margin-right: 0;
    }

    .nav_menu li:last-child {
        margin-right: 0;
    }

    .nav_menu_list {
        display: block;
        text-align: center;

        font-size: 0.8rem;
        line-height: 1.4;
        position: relative;
    }


    .nav_menu_list::after {
        background-color: rgba(0, 0, 0, 0.5);
        bottom: 0;
        content: '';
        display: block;
        height: 1px;
        left: 0;
        position: absolute;
        transition: .5s all;
        width: 0;
    }

    .nav_menu_list:hover::after {
        width: 100%;
    }





    .nav_icon_wrap {
        margin-right: 2rem;
    }

    .nav_icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
    }

    .nav_icon img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .nav_btn {
        height: 38px;
        width: 150px;
        color: #fff;
        background-color: #171717;
        border: solid 1px #171717;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 0;
        overflow: hidden;
        padding-left: 1rem;
        transition: all 0.5s;
    }

    .nav_btn:hover {
        background-color: #f5f5f5;
        color: #000;
        transition: all 0.5s;

    }

    .nav_btn::before {
        content: '';
        display: block;
        width: 25px;
        height: 20px;
        background-image: url(../images/line_black.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        position: absolute;
        top: 50%;
        left: 17px;
        transform: translate(0%, -50%);
        transition: all 0.5s;
        filter: invert(100%);


    }

    .nav_btn:hover::before {
        filter: invert(100%);
        transition: all 0.5s;

    }
}

@media screen and (min-width: 992px) {
    .nav_menu li {
        margin-right: 2rem;
    }

    .nav_menu_list {
        font-size: 0.9375rem;
    }
}

@media screen and (min-width: 1200px) {
    .nav_block {
        right: 3.5%;
    }

    .nav_btn {
        font-size: 1.0625rem;
        letter-spacing: 0.1em;
        height: 45px;
        width: 180px;
        border-radius: 65px;

    }


    .nav_btn::before {


        left: 19px;


    }
}


@media screen and (min-width: 1500px) {
    .nav_menu li {
        margin-right: 3rem;
    }


}

/*-----toggle-inner-----------*/
.toggle-container {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999999;
}

/*toggle_outer.active*/
.toggle_outer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1111;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: 0.4s ease-in-out;
    padding: 0;
    overflow: hidden;
}

/*body.fixed*/
body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

/*toggle_outer.active*/
.toggle_outer.active {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    overflow-y: scroll;
}

/*toggle_inner*/
.toggle_inner {
    width: 100%;
    height: auto;
    min-height: 100%;
    z-index: 0;
    overflow: hidden;
    padding: 4rem 0 12rem;
    background-color: #eeece9;
}

@media screen and (min-width: 1200px) {
    .toggle_inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 3% 5%;
    }
}

.toggle_block {
    width: 84%;
    margin: 0 auto;
}



/*------------toggle_line----------------------------*/
/*toggle*/
.toggle_box {
    position: absolute;
    right: 4%;
    top: 8px;
}

.toggle {
    display: block;
    position: relative;
    cursor: pointer;
    z-index: 6666;
    transition: 0.3s ease-in-out;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
}

.toggle span {
    display: block;
    position: absolute;
    border-bottom: solid 1px #fff;
    transition: .35s ease-in-out;
    width: 28px;
    right: 50%;
    transform: translate(50%, -50%);
}

#header.view .toggle span {
    border-bottom: solid 1px #000;

}

.toggle span:nth-child(1) {
    top: 26px;
}


.toggle span:nth-child(2) {
    top: 34px;
}

.toggle span:nth-child(3) {
    top: 38px;
}

/*toggle.tgl-active*/


.toggle.tgl-active span {
    transition: 0.3s ease-in-out;
    border-bottom: solid 1px #000;

}



/* .toggle.tgl-active span:nth-child(1)::before {
    content: "CLOSE";
    top: -32px;
    right: 21px;
    font-size: 0.7rem;
} */

.toggle.tgl-active span:nth-child(1) {
    top: 30px;
    -webkit-transform: translate(50%, -50%) rotate(-45deg);
    transform: translate(50%, -50%) rotate(-45deg);
}

.toggle.tgl-active span:nth-child(2) {
    top: 30px;
    -webkit-transform: translate(50%, -50%) rotate(45deg);
    transform: translate(50%, -50%) rotate(45deg);
}

@media screen and (min-width: 768px) {
    .toggle_box {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .toggle_box {
        top: 21px;
    }

    .toggle span {
        width: 35px;
    }
}

@media screen and (min-width: 1200px) {
    .toggle_box {
        top: 14px;
        right: 4%;
    }

    .toggle {
        width: 70px;
        height: 70px;
    }



    .toggle span:nth-child(1) {
        top: 26px;
    }

    .toggle span:nth-child(2) {
        top: 35px;
    }

    .toggle span:nth-child(3) {
        top: 45px;
    }

    .toggle.tgl-active {
        top: 25px;
    }
}

/*----------------------------------------*/
/*--top_img_menu--*/
.top_main_img {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.top_main_img::before {
    content: '';
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.slider {
    position: relative;
    z-index: -10;
    /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
    height: 100vh;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.slider-item {
    width: 100%;
    /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height: 100vh;
    /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;
    /*背景画像をリピートしない*/
    background-position: center;
    /*背景画像の位置を中央に*/
    background-size: cover;
    /*背景画像が.slider-item全体を覆い表示*/
}

@media screen and (min-width: 1200px) {
    .top_main_img::before {
        content: none;
    }
}

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

.top_img_block {
    width: 100%;
    height: 100%;
}

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

@media screen and (min-width: 1200px) {
    .top_img_block_inner {
        width: 75%;
        margin-left: auto;
        margin-right: 0;
    }
}

/*-----top_img_menu-end-----------*/
/*-----top_txt_block-end-----------*/
.top_txt_block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 84%;
    margin: 0 auto;
    z-index: 20;
}

.top_txt {
    display: inline-block;
    background-color: #000;
    color: #fff;
    font-size: 1.2rem;
    padding: 5px 20px;
    text-align: center;
    margin-bottom: 1rem;
}

.top_txt_title {
    color: #fff;
    font-size: 1rem;
    text-shadow: 2px 3px 3px rgba(145, 141, 141, 0.4);
}

.top_txt_title span {
    display: block;
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media screen and (min-width: 768px) {
    .top_txt_title {
        font-size: 1.2rem;
    }

    .top_txt_title span {
        font-size: 6rem;
    }
}

@media screen and (min-width: 1200px) {
    .top_txt {
        font-size: 1.4rem;
    }

    .top_txt_title {
        font-size: 2rem;
        letter-spacing: 0.1rem;
        color: #000;
    }

    .top_txt_title span {
        font-size: 9rem;
    }
}

/*-----top_txt_block-end-----------*/
/*--------top_txt_block-end---------*/
/*-------固定ページ----------*/
.page_head_outer {
    width: 84%;
    margin: 110px auto 4rem;
}

/* .page_head_outer::before {
    content: '';
    display: block;
    width: 100%;
    height: 90%;
    background-color: #eeeeee;
    position: absolute;
    top: 0%;
    right: 0;
    z-index: -1;
}
@media screen and (min-width: 1200px) {
    .page_head_outer::before {
        height: 80%;
    }
} */
.page_head {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(204, 204, 204, 0.5);
    margin-bottom: 2rem;

}




.page_head_inner {
    text-align: center;
}


.head_english_title {
    font-size: 2.4rem;
    width: 100%;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    font-family: "utile-display", sans-serif;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.1rem;
    color: #000;
}

.head_title {
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.2;
    width: 100%;
    color: #000;
}

@media screen and (min-width: 768px) {
    .page_head_outer {
        margin: 9rem auto 5rem;
    }
}

@media screen and (min-width: 992px) {

    .page_head_outer {
        margin: 11rem auto 5rem;
    }

    .page_head {
        padding-bottom: 4.5rem;
        margin-bottom: 3rem;
    }

    .head_english_title {
        font-size: 2.8rem;
    }
}

@media screen and (min-width: 1200px) {
    .page_head_outer {
        margin: 13rem auto 6rem;
    }

    .page_head {
        padding-bottom: 7rem;
        margin-bottom: 3rem;
    }




    .head_english_title {
        font-size: 3.75rem;
        margin-bottom: 1.2rem;
    }

    .head_title {
        font-size: 1.25rem;
    }
}




/*-----------------*/
/*-----------------*/
/*-----------------*/
/*-----------------*/
/*-----------------*/
/*-----------------*/
/*-----------------*/
/*-----------------*/
/*-----------------*/
/*-----------------*/
/*-----------------*/
