@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;
}

.kv__img img.pn{
    display:none;
}
.kv__img img.sn{
    display:block;
    width:95%;
    margin:0 auto;
}

.kv__img {
    width: 100%;

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

.kv__obj01 {
    position: absolute;
    max-width: 315px;
    width: calc((315/1920)*100%);
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: -1;
    animation: fuwafuwa02 3s infinite ease-in-out;
}

.kv__obj02 {
    position: absolute;
    max-width: 492px;
    width: calc((492/1920)*100%);
    right: 0;
    top: -60px;
    z-index: -1;
}

.kv__dot {
    position: absolute;
    max-width: 177px;
    width: calc((177/1920)*150%);
    left: 45%;
    top: 15%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: fuwafuwa 3s infinite ease-in-out;
}

@keyframes fuwafuwa {
    0% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, -40%);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}
@keyframes fuwafuwa02 {
    0% {
        transform: translate(0, -50%);
    }

    50% {
        transform: translate(0, -60%);
    }

    100% {
        transform: translate(0, -50%);
    }
}
.kv__ill {
    display:none;
    position: absolute;
    max-width: 450px;
    width: calc((450/1920)*150%);
    left: 70%;
    top: 110%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

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


.kv__scroll {
    position: absolute;
    max-width: 12px;
    min-width: 8px;
    width: calc((12/1920)*100%);
    left: 5%;
    top: 90%;
    transform: translate(-50%, -50%);
    z-index: 9;

}

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

@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 6s linear 0s 1 normal both;
} */

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

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


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


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

}

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


.k-swiper-button-prev {
    position: absolute;
    margin: 0;
    width: 40px;
    height: 40px;
    left: 0;
    top: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);

}

.k-swiper-button-next {
    position: absolute;
    margin: 0;
    width: 40px;
    height: 40px;
    left: 100%;
    top: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);

}

.k-swiper-button-prev::before {
    content: "";
    position: absolute;
    background: url(../images/sw_arw_prv.png) no-repeat center center/contain;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.k-swiper-button-next::before {
    content: "";
    position: absolute;
    background: url(../images/sw_arw_next.png) no-repeat center center/contain;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.swiper-button-disabled {
    opacity: .5;
    pointer-events: none;

}


@media screen and (min-width:768px) {
.kv__ill {
    display:block;
  }
  .kv__img img.pn{
    display:block;
}
.kv__img img.sn{
    display:none;
}

    .kv {
        margin-top: 80px;
    }

    .kv__swiper {
        width: calc((1850/1920)*100%);
        margin: 0 auto;
    }

    .kv__obj01 {
        width: calc((315/1920)*100%);
        left: 0;
        top: 50%;
    }

    .kv__obj02 {
        width: calc((492/1920)*100%);
        right: 0;
        top: -60px;
    }

    .kv__dot {
        width: calc((177/1920)*100%);
        left: 45%;
        top: 15%;
    }

    .kv__ill {
        width: calc((629/1920)*100%);
        left: 77%;
        top: 70%;
    }

    .kv__copy {
        width: calc((670/1920)*100%);
        top: 70%;
        left: 47%;

    }


}



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

    .kv {
        margin-top: 120px;
        height:auto;
    }

    .kv__swiper {
        width: calc((1850/1920)*100%);
        margin: 0 auto;
    }

    .kv__obj01 {
        width: calc((315/1920)*100%);
        left: 0;
        top: 50%;
    }

    .kv__obj02 {
        width: calc((492/1920)*100%);
        right: 0;
        top: -120px;
    }

    .kv__dot {
        width: calc((177/1920)*100%);
        left: 45%;
        top: 15%;
    }

    .kv__ill {
        width: calc((629/1920)*100%);
        left: 77%;
        top: 70%;
    }

    .kv__copy {
        width: calc((670/1920)*100%);
        top: 70%;
        left: 47%;

    }

}


/*============================
   commitment
============================*/
.commitment {
    padding: 40px 0 60px;
}

.comm__obj01 {
    position: absolute;
    max-width: 182px;
    width: calc((182/1920)*150%);
    left: 0;
    top: 75%;
    transform: translate(0, -50%);
    z-index: -1;
    animation: fuwafuwa02 3s infinite ease-in-out;
}

.comm__obj02 {
    position: absolute;
    max-width: 293px;
    width: calc((293/1920)*150%);
    right: 0;
    top: 100%;
    transform: translate(0, -50%);
    z-index: -1;
    animation: fuwafuwa02 3s infinite ease-in-out;
}

.comm__txtwrap {
    margin-bottom: 30px;
}

.comm__ttl {
    .txt {
        margin-top: .75em;
    }
}

.comm__items {
    & img {
        max-width: 366px;
        max-width: 280px;
        width: 80%;
        margin: 0 auto 20px;
        display: block;

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

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

    .comm__obj01 {
        width: calc((182/1920)*100%);
        left: 0;
        top: 75%;
    }

    .comm__obj02 {
        width: calc((293/1920)*1-0%);
        right: 0;
        top: 95%;
    }

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

    .comm__img {
        width: 45%;
    }

    .comm__items {
        & img {
            max-width: 366px;
            width: 32%;
            margin: 0;
        }
    }

}

@media screen and (min-width:1025px) {
    .commitment {
        padding: 80px 0;

        .inner__large {
            max-width: 1720px;
        }
    }

    .comm__obj01 {
        width: calc((182/1920)*100%);
        left: 0;
        top: 75%;
    }

    .comm__obj02 {
        width: calc((293/1920)*1-0%);
        right: 0;
        top: 95%;
    }

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

    .comm__txtwwrap--inner {
        max-width: 600px;
        margin: 0 0 0 auto;
    }

    .comm__img {
        width: 45%;
    }

    .comm__items {
        max-width: 1200px;
        margin: 0 auto 60px;

        & img {
            width: 32%;
        }
    }
}


/*============================
   menu
============================*/
.menu {
    padding: 80px 0 0;

    .inner__mid {
        max-width: 1400px;
    }

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: calc(100% - 100px);
        background: url(../images/menu_bg.jpg) no-repeat center center/cover;
        top: 0;
        left: 0;
        z-index: 1;
    }
}

.menu__box {
    padding: 30px 5%;
    background: #fff;
    border-radius: 10px;
    z-index: 1;
}

.menu__obj01 {
    position: absolute;
    max-width: 152px;
    width: calc((152/1400)*100%);
    top: 60px;
    left: 3%;
    transform: translate(0, -50%);
    animation: fuwafuwa02 3s infinite ease-in-out;
}


.menu__obj02 {
    position: absolute;
    max-width: 100px;
    width: calc((100/1400)*100%);
    top: 60px;
    right: 3%;
    transform: translate(0, -50%);
    animation: fuwafuwa02 5s infinite ease-in-out;
}

.menu__ttl {
    .font-en {
        justify-content: center;
    }
}

.menu__link {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    padding: 20px 5% 20px 35%;
    border-top: solid 1px #ff9c1c;
    border-bottom: solid 1px #ff9c1c;
    margin: 0 auto 20px;
    position: relative;

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

.menu__ico {
    display: block;
    transform: translate(-50%, -50%) scale(.5);
    position: absolute;
    left: 15%;
    top: 50%;

}

.menu__arw {
    max-width: 23px;
    width: 16px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

.menu__h3 {
    width: 100%;

    .txt {
        margin-top: .5em;
    }
}

@media screen and (min-width:768px) {
    .menu {
        padding: 150px 0 0;

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

    .menu__box {
        padding: 50px 5%;
        border-radius: 10px;
    }

    .menu__obj01 {
        width: calc((152/1400)*100%);
        top: 80px;
        left: 10%;
    }


    .menu__obj02 {
        width: calc((100/1400)*100%);
        top: 80px;
        right: 10%;
    }

    .menu__lead {
        text-align: center;
    }

    .menu__link {
        width: 48%;
        height: 100%;
        padding: 30px 5% 30px 18%;
        margin: 0 auto 20px;

        &:nth-child(3),
        &:last-child {
            margin-bottom: 0;
        }
    }

    .menu__ico {
        transform: translate(-50%, -50%) scale(.6);
        left: 15%;
        top: 50%;

    }

    .menu__arw {
        max-width: 23px;
        width: 16px;

    }

}

@media screen and (min-width:1025px) {
    .menu {
        padding: 250px 0 0;

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

    .menu__box {
        padding: 80px 5%;
        border-radius: 20px;
    }

    .menu__obj01 {
        width: calc((152/1400)*100%);
        top: 100px;
        left: 10%;
    }


    .menu__obj02 {
        width: calc((100/1400)*100%);
        top: 120px;
        right: 10%;
    }

    .menu__link {
        width: 48%;
        padding: 30px 5% 30px 18%;
        margin: 0 auto 20px;

        &:nth-child(3),
        &:last-child {
            margin-bottom: 0;
        }

        &:hover {
            .menu__arw {
                right: -10px;
            }
        }
    }

    .menu__ico {
        transform: translate(-50%, -50%) scale(.7);
        left: 15%;
        top: 50%;

    }

    .menu__arw {
        max-width: 23px;
        width: 23px;
        transition: .3s;

    }

}


/*============================
   recommend
============================*/
.recommend {
    padding: 60px 0 0;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: calc(100% + 100px);
        left: 0;
        bottom: 0;
        background: #f7f0d3;
    }

}

.recom__obj01 {
    position: absolute;
    max-width: 924px;
    width: calc((924/1920)*200%);
    top: 30%;
    left: 0;
    transform: translate(0, -50%);
    animation: fuwafuwa02 8s infinite ease-in-out;
}

.recom__obj02 {
    position: absolute;
    max-width: 692px;
    width: calc((692/1920)*150%);
    top: -100px;
    right: 0;
    mix-blend-mode: multiply;
}

.recom__left {
    padding: 0 5%;
    margin-bottom: 30px;
}

.recom__ttl {
    .txt {
        margin-top: .75em;
    }
}

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

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

        &::before {
            height: calc(100% + 150px);
        }

    }

    .recom__obj01 {
        width: calc((924/1920)*100%);
        top: 50%;
        left: 0;
    }

    .recom__obj02 {
        width: calc((692/1920)*100%);
        top: -150px;
    }

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

    .recom__container {
        max-width: 600px;
        margin: 0 0 0 auto;
        padding: 0 5% 0 0;
    }


    .recom__img {
        width: 50%;
        margin: 0;
    }
}

@media screen and (min-width:1025px) {
    .recommend {
        padding: 180px 0 0;

        &::before {
            height: calc(100% + 300px);
        }

    }

    .recom__obj01 {
        width: calc((924/1920)*100%);
        top: 60%;
        left: 0;
    }

    .recom__obj02 {
        width: calc((692/1920)*100%);
        top: -400px;
    }

    .recom__flex {
        max-width: 1920px;
        margin: 0 auto;
    }

    .recom__left {
        padding: 0 0 0 1%;
        width: 50%;
    }

    .recom__container {
        margin: 0 0 0 auto;
        padding: 0 5% 0 0;
    }


    .recom__img {
        width: 50%;
    }
}



/*============================
   guide
============================*/
.guide {
    padding: 60px 0 0;
}

.guide__flex {
    display: flex;
    flex-direction: column-reverse;
}

.guide__obj01 {
    position: absolute;
    max-width: 137px;
    width: calc((137/1920)*150%);
    top: 80px;
    left: 80%;
    transform: translate(-50%, -50%);
    animation: fuwafuwa 5s infinite ease-in-out;
}

.guide__obj02 {
    position: absolute;
    max-width: 137px;
    width: calc((137/1920)*150%);
    top: 30%;
    right: 0;
    transform: translate(0, -50%);
    animation: fuwafuwa02 5s infinite ease-in-out;
}

.guide__right {
    margin-bottom: 30px;
}

.guide__ttl {
    .txt {
        margin-top: .75em;
    }
}

.guide__btn {
    margin: 0 0 0 auto;
}

.guide__img {
    max-width: 750px;
    margin: 0 auto;
}

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

    .guide__flex {
        flex-direction: row;
    }

    .guide__obj01 {
        width: calc((137/1920)*100%);
        top: 80px;
        left: 90%;
    }

    .guide__obj02 {
        width: calc((137/1920)*100%);
        top: 75%;
        right: 0;
    }

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

    .guide__container {
        max-width: 600px;
        padding: 0 0 0 5%;
    }


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

}

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

    .guide__obj01 {
        width: calc((137/1920)*100%);
        top: 250px;
        left: 85%;
    }

    .guide__obj02 {
        width: calc((137/1920)*100%);
        top: 75%;
        right: 0;
    }

    .guide__right {
        width: 50%;
    }

    .guide__container {
        padding: 0 0 0 5%;
    }


    .guide__img {
        width: 45%;
    }
}



/*============================
   contents
============================*/
.contents {
    padding: 60px 0 0;
}

.cont__obj01 {
    position: absolute;
    max-width: 660px;
    width: calc((660/1920)*150%);
    top: 95%;
    left: 25%;
    transform: translate(-50%, -50%);
    animation: fuwafuwa 5s infinite ease-in-out;
}

.cont__item {
    display: block;
    width: 100%;
    margin: 0 auto 30px;
    position: relative;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border: solid 1px #ff9c1c;
        border-radius: 10px;
        left: -10px;
        top: 10px;
    }

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

.cont__ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;

    .font-en {
        justify-content: center;
        margin-top: .75em;
    }
}

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

    .cont__obj01 {
        width: calc((660/1920)*100%);
        top: 75%;
        left: 25%;
    }

    .cont__item {
        width: 48%;
        margin: 0;

        &::before {
            border-radius: 10px;
            left: -10px;
            top: 10px;
        }

    }

}

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

    .cont__obj01 {
        width: calc((660/1920)*100%);
        top: 80%;
        left: 20%;
    }

    .cont__item {
        width: 48%;
        margin: 0;

        &::before {
            border-radius: 10px;
            left: -15px;
            top: 15px;
        }

    }
}



/*============================
   info
============================*/
.info {
    padding: 60px 0 0;
}

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

    &::before {
        content: "";
        position: absolute;
        width: 120%;
        height: calc(100% + 50px);
        background: #fef6cc;
        border-radius: 10px;
        z-index: -1;
        top: 0;
        left: 0;
    }
}

.info__ttl {
    margin-bottom: 20px;

    .txt.dot {
        margin-top: 1em;
        padding-left: 1em;

        &::before {
            opacity: .5;
        }

        &::after {
            content: "●";
            position: absolute;
            color: #ff9c1c;
            font-size: 1rem;
            left: 0;
            top: 50%;
            transform: translate(0, -50%);
        }
    }
}



.info__li {
    padding: 1em;
    background: #fef9dd;
    display: flex;
    align-items: flex-start;

    &:nth-child(even) {
        background: none;
    }
}

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

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

.info__img {
    max-width: 780px;

    .circle {
        max-width: 325px;
        width: calc((325/780)*100%);
        position: absolute;
        top: 0;
        left: 90%;
        transform: translate(-50%, -50%);
        animation: circleAnime 10s infinite linear;
        pointer-events: none;
    }
}

@keyframes circleAnime {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }

}

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

    .info__flex {
        align-items: center;
    }

    .info__left {
        margin-bottom: 0px;
        padding: 30px 5% 30px 5%;
        width: 50%;

        &::before {
            width: 300%;
            height: 100%;
            border-radius: 20px;
        }
    }

    .info__ttl {
        margin-bottom: 20px;

        .txt.dot {
            margin-top: 1em;
            padding-left: 1em;

            &::before {
                opacity: .5;
            }

            &::after {
                content: "●";
                position: absolute;
                color: #ff9c1c;
                font-size: 1rem;
                left: 0;
                top: 50%;
                transform: translate(0, -50%);
            }
        }
    }



    .info__li {
        padding: 1em;
        background: #fef9dd;
        display: flex;
        align-items: flex-start;

        &:nth-child(even) {
            background: none;
        }
    }

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

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

    .info__right {
        width: 50%;
    }

    .info__img {
        max-width: 780px;
        position: relative;


        .circle {
            left: 100%;
        }
    }

}

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

    .info__flex {
        align-items: flex-start;
    }

    .info__left {
        padding: 60px 3% 120px 3%;
        width: 50%;
        display: flex;
        align-items: center;

        &::before {
            width: 300%;
            height: 100%;
            border-radius: 20px;
        }
    }

    .info__ttl {
        margin-bottom: 0;
        display: flex;
        margin-right: 5%;

        .font-en {
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
            font-feature-settings: initial;
        }

        .txt {
            -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
            font-feature-settings: initial;
        }

        .txt.dot {
            margin: 0 0 0 .5em;
            padding: 1em 0 0;

            &::before {
                margin: 0 auto 1em;
            }

            &::after {
                font-size: 1rem;
                left: 50%;
                top: 0;
                transform: translate(-50%);
            }
        }
    }



    .info__li {
        padding: 1em;
    }

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

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

    .info__right {
        width: 50%;
    }

    .info__img {
        max-width: 780px;
        position: relative;
        top: -80px;

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


/*============================
   news
============================*/
.news {
    padding: 60px 0;

}

.news__obj {
    max-width: 700px;
    width: calc((700/1920)*150%);
    top: 85%;
    right: 0;
    transform: translate(0, -50%);
    animation: fuwafuwa02 10s infinite ease-in-out;
}

.news__ttl {
    margin-bottom: 30px;

    .font-en {
        margin-bottom: .5em;
    }
}

.news__atc {
    margin-bottom: 2em;

    & a {
        display: block;
        align-items: center;
        width: 100%;
        height: 100%;
    }

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


.news__date {
    white-space: nowrap;
}

.news__atc--ttl {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: .25em;

}

.news__btn {
    margin: 2em 0 0 auto;

}


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

    }

    .news__obj {
        width: calc((700/1920)*100%);
        top: 85%;
        right: 0;
    }

    .news__ttl {
        margin-bottom: 0;

    }

    .news__atcwrap {
        width: 75%;
    }

    .news__atc {
        margin-bottom: 2em;

        & a {
            display: flex;
        }

    }


    .news__date {
        margin-right: 1.5em;
    }

    .news__atc--ttl {
        margin-top: 0;

    }

    .news__btn {
        margin: 2em 0 0 auto;

    }


}

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

    }

    .news__obj {
        width: calc((700/1920)*100%);
        top: 85%;
        right: 0;
    }

    .news__atcwrap {
        width: 75%;
    }

    .news__atc {
        margin-bottom: 2em;


    }

    .news__date {
        margin-right: 1.5em;
    }

    .news__btn {
        margin: 2em 0 0 auto;

    }



}