@charset "UTF-8";

body {
    opacity: .1;
    animation: bodyAppear .3s .3s forwards;
}

@keyframes bodyAppear {
    0% {
        opacity: .1;
    }

    100% {
        opacity: 1;
    }
}

.visually-hidden {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

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

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

/*============================
	kv 
============================*/

.kv {
    margin-top: 60px;
    padding: 20px 5% 0 0;

    &::before {
        content: "";
        position: absolute;
        width: 90%;
        height: 90%;
        background: url(../images/kv_bg.png) no-repeat center center/cover;
        top: 0;
        right: 0;
    }
}

.kv__swiper {
    background: #fff;
}

.kv__img {

    & img {
        width: 100%;
        object-fit: cover;
        min-height: 400px;
    }
}


.slide-in,
.slide-in_inner {
    animation-duration: 1s;
    animation-delay: .3s;
}

.kv__copy {
    position: absolute;
    max-width: 342px;
    width: calc((342/1920)*200%);
    z-index: 99;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 75%;
}

.kv__circle {
    max-width: 497px;
    width: calc((497/1920)*150%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 85%;
    z-index: 1;
    mix-blend-mode: soft-light;
}

.kv__scroll {
    max-width: 98px;
    width: 50px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translate(-50%);
    z-index: 9;
    display: block;
}

.kv.onetime {

    .kv__copy .slide-in,
    .kv__copy .slide-in_inner {
        animation-duration: 1s;
        animation-delay: 5s;
    }
}


@keyframes copyAnime {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* swiper */
.kv__swiper-area {
    position: relative;
}

.swiper__imgwrap {
    overflow: hidden;
    display: block;
}

.kv .swiper-slide-active .swiper__imgwrap img,
.kv .swiper-slide-duplicate-active .swiper__imgwrap img,
.kv .swiper-slide-prev .swiper__imgwrap img {
    animation: zoom-out 10s linear 0s 1 normal both;
}

@keyframes zoom-out {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.kv .swiper-pagination {
    left: 5%;
    left: auto;
    bottom: 5%;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}


.kv .swiper-pagination-bullet {
    display: block;
    width: 15px;
    height: 2px;
    z-index: 9;
    background: #fff;
    border-radius: 0% !important;
    margin: 0 10px !important;
    opacity: 1;

}

.kv .swiper-pagination-bullet-active {
    opacity: 1;
    background: #bf3600;
}




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

    .kv {
        margin-top: 60px;
        padding: 50px 5% 0 0;

        &::before {
            width: 90%;
            height: 90%;
        }
    }

    .kv__copy {
        width: calc((342/1920)*100%);
        top: 50%;
        left: 80%;
    }

    .kv__circle {
        width: calc((497/1920)*100%);
        top: 50%;
        left: 85%;
    }

    .kv .swiper-pagination {
        left: 5%;
        bottom: 5%;
    }


    .kv .swiper-pagination-bullet {
        width: 20px;
        height: 2px;
        margin: 0 10px !important;
    }

}



@media screen and (min-width:1025px) {
    .kv {
        margin-top: 0;
        padding: 50px 4% 0 21.8%;

        &::before {
            width: 70%;
            height: 90%;
        }
    }

    .kv__copy {
        width: calc((342/1920)*100%);
        top: 45%;
        left: 85%;
    }

    .kv__circle {
        width: calc((497/1920)*100%);
        top: 50%;
        left: 85%;
    }

    .kv .swiper-pagination {
        left: 5%;
        bottom: 5%;
    }


    .kv .swiper-pagination-bullet {
        width: 20px;
        height: 2px;
        margin: 0 10px !important;
    }

}





/*============================
   about
============================*/
.about {
    padding: 60px 0 100px;
    background: url(../images/about_bg.png) no-repeat center center/cover, #272727;
}

.about__left {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.about__ttl {
    text-align: right;
    line-height: 1.5;
    margin-right: 1em;
}

.about__img {
    max-width: 720px;

    .yuge {
        position: absolute;
        max-width: 577px;
        width: calc((577/720)*100%);
        left: 45%;
        top: 0;
        transform: translate(-50%, -50%);
        mix-blend-mode: screen;
    }

    & a {
        position: absolute;
        display: block;
        max-width: 228px;
        width: 120px;
        right: -2%;
        top: 95%;
        transform: translate(0, -50%);
    }
}

@media screen and (min-width:768px) {
    .about {
        padding: 80px 0 150px
    }

    .about__left {
        width: 45%;
        margin-bottom: 0;
    }

    .about__ttl {
        text-align: right;
        line-height: 1.5;
        margin-right: .5em;
    }

    .about__img {
        width: 50%;

        & a {
            max-width: 228px;
            width: 150px;
            right: -2%;
            top: 95%;
        }
    }

}

@media screen and (min-width:1025px) {
    .about {
        padding: 120px 0 200px;
    }

    .about__left {
        width: 45%;
        margin-bottom: 0;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .about__ttl {
        text-align: right;
        line-height: 1.5;
        margin-right: 1em;
    }

    .about__txt {
        line-height: 2;
        text-shadow: 1px 1px #111;
    }

    .about__img {
        width: 50%;

        & a {
            max-width: 228px;
            width: 220px;
            right: -3%;
            top: 95%;
        }
    }

}

/*============================
   commitment
============================*/
.comm__mv {
    .img {
        width: 100%;
        object-fit: cover;
        min-height: 200px;
    }
}

.comm__copy {
    top: 0;
    right: 0;
    font-size: min(18rem, 11vw);
    color: #b49674;
    opacity: .5;
    white-space: nowrap;
    line-height: 1;
    transform: translate(0, -50%);
}

.comm__obj {
    max-width: 348px;
    width: calc((348/1920)*150%);
    top: 95%;
    left: 5%;
    transform: translate(0, -50%);
}

.comm__main {
    padding: 80px 0 60px;
    background: url(../images/commit_bg.png) no-repeat center center/cover;

}

.comm__left {
    padding: 0 5% 0;
    margin-bottom: 30px;
    position: relative;
}

.comm__circle {
    max-width: 244px;
    width: 100px;
    position: absolute;
    top: 50px;
    right: 0;
    transform: translate(0, -50%);
}

.comm__img {
    width: 95%;
    margin: 0 0 0 auto;
}

.comm__btn {
    max-width: 184px;
    width: 100px;
    top: 90%;
    left: 15%;
    transform: translate(-50%, -50%);
}

@media screen and (min-width:768px) {
    .comm__mv {
        .img {
            min-height: 200px;
        }
    }

    .comm__copy {
        top: 0;
        right: 0;
        font-size: min(18rem, 11vw);
    }

    .comm__obj {
        max-width: 348px;
        width: calc((348/1920)*100%);
        top: 95%;
        left: 5%;
    }

    .comm__main {
        padding: 100px 0 80px;
    }

    .comm__left {
        width: 50%;
        padding: 0 0 0 3%;
        margin-bottom: 0;
    }

    .comm__circle {
        max-width: 244px;
        width: 140px;
        top: 50px;
        right: -15%;
    }

    .comm__img {
        width: 45%;
        margin: 0;
    }

    .comm__btn {
        max-width: 184px;
        width: 120px;
        top: 100%;
        left: 10%;
    }
}

@media screen and (min-width:1025px) {
    .comm__mv {
        .img {
            min-height: 200px;
        }
    }

    .comm__copy {
        top: 0;
        right: 0;
        font-size: min(18rem, 9vw);
    }

    .comm__obj {
        width: calc((348/1920)*100%);
        top: 95%;
        left: 3%;
    }

    .comm__main {
        padding: 120px 0 150px;
    }

    .comm__left {
        width: 50%;
        padding: 0 0 0 1%;
        margin-bottom: 0;
    }

    .comm__left--inner {
        max-width: 550px;
        margin: 0 0 0 auto;
    }

    .comm__circle {
        max-width: 244px;
        width: 244px;
        top: 80px;
        right: -5%;
    }

    .comm__img {
        width: 45%;
        margin: 0;
    }

    .comm__btn {
        max-width: 184px;
        width: 184px;
        top: 100%;
        left: 0%;
    }
}

/*============================
   menu
============================*/

.menu {
    padding: 60px 0 0;
    background: #272727;

    &::before {
        content: "";
        position: absolute;
        width: 80%;
        height: 50%;
        background: url(../images/menu_bg.png) no-repeat center top/cover;
        top: 0;
        right: 0;
    }
}

.menu__item {
    position: relative;
    max-width: 680px;
    margin: 0 auto 30px;
    padding-bottom: 60px;

    &:last-child {
        margin-bottom: 0;
    }
}

.menu__ttl {
    .txt {
        width: fit-content;
        background: #111111;
        padding: .25em .5em;
        margin: 0 auto .5em;
    }

    .font-en {
        opacity: .3;
    }
}

.menu__txt {
    margin-top: 1em;
}

.menu__btn {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
}

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


    .menu {
        padding: 80px 0 0;

        &::before {
            width: 80%;
            height: 50%;
        }
    }

    .menu__item {
        width: 48%;
        margin: 0;
        padding-bottom: 80px;
    }

    .menu__ttl {
        .txt {
            padding: .25em .5em;
            margin: 0 auto .5em;
        }

    }

    .menu__txt {
        margin-top: 1em;
    }

}

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

    .menu {
        padding: 120px 0 0;

        &::before {
            width: 80%;
            height: 50%;
        }
    }

    .menu__item {
        width: 48%;
        margin: 0;
        padding-bottom: 80px;
    }

    .menu__ttl {
        .txt {
            padding: .25em .5em;
            margin: 0 auto .5em;
        }

    }

    .menu__txt {
        margin-top: 1em;
    }
}


/*============================
   scean
============================*/
.scean {
    padding: 60px 0 0;
    background: #272727;
}

.scene__ttl {
    .font-en {
        font-size: 8rem;
        opacity: .2;
        letter-spacing: .05em;
    }

    .txt {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.scene__lead {
    padding: 0 5%;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.scean__item {
    padding: 40px 5% 100px;
    position: relative;
    background: url(../images/scene_bg01.jpg) no-repeat center center/cover;
    min-height: 350px;

    &:nth-child(2) {
        background: url(../images/scene_bg02.jpg) no-repeat center center/cover;
    }

    &:nth-child(3) {
        background: url(../images/scene_bg03.jpg) no-repeat center center/cover;
    }
}

.scene__h3 {
    margin-bottom: 2em;

    .font-en {
        text-align: center;
        margin-bottom: 1em;
    }

    .txt {
        line-height: 1.5;
        width: fit-content;
        margin: 0 auto;
    }
}

.scene__btn {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translate(-50%);
}

@media screen and (min-width:768px) {
    .scean {
        padding: 80px 0 0;
    }

    .scene__ttl {
        .font-en {
            font-size: 12rem;
        }
    }

    .scene__lead {
        padding: 0 5%;
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .scean__item {
        width: 33.33%;
        max-width: 640px;
        padding: 60px 2% 100px;
        min-height: 450px;

    }

    .scene__h3 {
        margin-bottom: 1.5em;

        .font-en {
            text-align: center;
            margin-bottom: 1em;
        }

        .txt {
            width: fit-content;
            margin: 0 auto;
            min-height: 11em;
        }
    }

    .scene__btn {

        left: 50%;
        bottom: 40px;
        transform: translate(-50%);
    }
}

@media screen and (min-width:1025px) {
    .scean {
        padding: 150px 0 0;
    }

    .scene__ttl {
        .font-en {
            font-size: 22rem;
        }
    }

    .scene__lead {
        padding: 0 5%;
        font-size: 2rem;
        margin-bottom: 60px;
    }

    .scean__item {
        width: 33.33%;
        max-width: 640px;
        padding: 120px 2% 220px;
        min-height: 750px;

    }

    .scene__h3 {
        margin-bottom: 1.5em;

        .font-en {
            text-align: center;
            margin-bottom: 1em;
        }

        .txt {
            width: fit-content;
            margin: 0 auto;
            min-height: 11em;
        }
    }

    .scene__txt {
        max-width: 430px;
        margin: 0 auto;
    }

    .scene__btn {

        left: 50%;
        bottom: 120px;
    }
}


/*============================
   contents
============================*/
.contents {
    padding: 60px 0 60px;
    background: url(../images/contents_bg.png);
}

.cont__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    position: relative;
    background:
        url(../images/contents_obj01.png) no-repeat left center/5px,
        url(../images/contents_obj02.png) no-repeat right center/5px,
        url(../images/contents_bg01.jpg) no-repeat center center/cover;
    margin: 0 auto 20px;

    &:last-child {
        margin-bottom: 0;
        background:
            url(../images/contents_obj01.png) no-repeat left center/5px,
            url(../images/contents_obj02.png) no-repeat right center/5px,
            url(../images/contents_bg02.jpg) no-repeat center center/cover;

    }

    &::before {
        content: "";
        position: absolute;
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        top: 50%;
        left: 50%;
        border: solid 1px #fff;
        transform: translate(-50%, -50%);
    }
}

.cont__ttl {
    .font-en {
        margin-top: .5em;
    }
}

@media screen and (min-width:768px) {
    .contents {
        padding: 80px 0 80px;
    }

    .cont__item {
        width: 48%;
        max-width: 610px;
        height: 220px;
        background:
            url(../images/contents_obj01.png) no-repeat left center/6px,
            url(../images/contents_obj02.png) no-repeat right center/6px,
            url(../images/contents_bg01.jpg) no-repeat center center/cover;
        margin: 0;

        &:last-child {
            background:
                url(../images/contents_obj01.png) no-repeat left center/6px,
                url(../images/contents_obj02.png) no-repeat right center/6px,
                url(../images/contents_bg02.jpg) no-repeat center center/cover;
        }

        &::before {
            width: calc(100% - 12px);
            height: calc(100% - 12px);
        }
    }

    .cont__ttl {
        .font-en {
            margin-top: .5em;
        }
    }
}

@media screen and (min-width:1025px) {
    .contents {
        padding: 150px 0 150px;
    }

    .cont__item {
        width: 48%;
        height: 350px;
        background:
            url(../images/contents_obj01.png) no-repeat left center/10px,
            url(../images/contents_obj02.png) no-repeat right center/10px,
            url(../images/contents_bg01.jpg) no-repeat center center/cover;
        margin: 0;

        &:last-child {
            background:
                url(../images/contents_obj01.png) no-repeat left center/10px,
                url(../images/contents_obj02.png) no-repeat right center/10px,
                url(../images/contents_bg02.jpg) no-repeat center center/cover;
        }

        &::before {
            width: calc(100% - 20px);
            height: calc(100% - 20px);
        }
    }

}


/*============================
   info
============================*/
.info {
    padding: 60px 0;
    background: url(../images/info_bg.png) no-repeat center top/200%;
}

.info__left {

    margin-bottom: 30px;
}

.info__left--inner {
    max-width: 640px;
}

.info__ttl {
    width: fit-content;
    padding: .5em .5em;
    background: #8b7000;
    color: #fff;
}

.info__item {
    position: relative;
    margin-bottom: 40px;

    &:last-child {
        margin-bottom: 0;
    }
}

.info__circle {
    position: absolute;
    max-width: 244px;
    width: calc((244/640)*100%);
    top: 0;
    left: -5%;
    transform: translate(0, -50%);
}

.info__li {
    margin-bottom: 1.5em;
    display: flex;
    align-items: flex-start;
}

.info__th {
    width: 6em;
    white-space: nowrap;
    position: relative;

}

.info__td {
    width: calc(100% - 6em);
}

.info__img {
    max-width: 692px;
    width: 95%;
    margin: 0 0 0 auto;
}

.info__btn {
    position: absolute;
    max-width: 198px;
    width: 120px;
    top: 80%;
    left: 10%;
    transform: translate(-50%, -50%);
    z-index: 9;
    display: block;
}

@media screen and (min-width:768px) {
    .info {
        padding: 80px 0;
        background: url(../images/info_bg.png) no-repeat center 10%/100%;
    }

    .info__left {
        width: 50%;
        margin-bottom: 0;
    }

    .info__left--inner {
        max-width: 640px;
        margin: 0 0 0 auto;
        padding: 0 10% 0 0;
    }

    .info__ttl {
        padding: .5em .5em;
    }

    .info__item {
        margin-bottom: 40px;
    }

    .info__circle {
        width: calc((244/640)*100%);
        top: 0;
        left: -5%;
    }

    .info__li {
        margin-bottom: 1.5em;
    }

    .info__th {
        width: 6em;
    }

    .info__td {
        width: calc(100% - 6em);
    }

    .info__img {
        width: 45%;
        margin: 0;
    }

    .info__btn {
        max-width: 198px;
        width: 120px;
        top: 80%;
        left: 10%;
    }

}

@media screen and (min-width:1025px) {
    .info {
        padding: 240px 0 120px;
        background: url(../images/info_bg.png) no-repeat center 15%/100%;
    }

    .info__left {
        width: 50%;
    }

    .info__left--inner {
        max-width: 640px;
        margin: 0 0 0 auto;
        padding: 0 10% 0 0;
    }

    .info__ttl {
        padding: .5em .5em;
    }

    .info__item {
        margin-bottom: 60px;
    }

    .info__circle {
        width: calc((244/640)*100%);
        top: 0;
        left: -5%;
    }

    .info__li {
        margin-bottom: 1.5em;
    }

    .info__th {
        width: 7em;
    }

    .info__td {
        width: calc(100% - 7em);
    }

    .info__img {
        width: 48%;
        margin: 0;
    }

    .info__btn {
        max-width: 198px;
        width: 198px;
        top: 80%;
        left: 5%;
    }

}

/* hd__pd */

@media screen and (min-width:1025px) {
    .hd__pd {
        padding-left: 200px;
    }
}