@charset "utf-8";

@font-face {
    font-family: 'FuturaPT';
    src: url('./font/FuturaCyrillicMedium.ttf') format('truetype');
    font-weight: 500;
    /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('./font/FuturaCyrillicDemi.ttf') format('truetype');
    font-weight: 600;
    /* Demi */
    font-style: normal;
}

@font-face {
    font-family: 'ShinRetroMaruGothic';
    src: url('./font/ShinRetroMaruGothic-Regular.ttf') format('truetype');
    font-weight: 500;
    /* Demi */
    font-style: normal;
}

@font-face {
    font-family: 'ShinRetroMaruGothic';
    src: url('./font/ShinRetroMaruGothic-Medium.ttf') format('truetype');
    font-weight: 600;
    /* Demi */
    font-style: normal;
}



* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    color: #000000;
    font-family: "ShinRetroMaruGothic", "Yu Gothic", "游ゴシック", "YuGothic", sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0;
}

body.hidden {
    overflow: hidden;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
}

.menu-btn {
    width: 56px;
    height: 35px;
    position: relative;
    top: 30px;
    left: 30px;
    cursor: pointer;
    z-index: 9999;
}

@media screen and (max-width: 1024px) {
    .menu-btn {
        width: 30px;
        height: 21px;
    }
}

.menu-btn.active span.top {
    transform: rotateZ(45deg) translateY(-50%);
    top: 50%;
}

.menu-btn.active span.center {
    transform: translateX(30px);
    opacity: 0;
}

.menu-btn.active span.bottom {
    transform: rotateZ(-45deg) translateY(-50%);
    top: 50%;
}



.menu-btn span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    transition: .5s;
}

.menu-btn span.top {
    top: 0;
}

.menu-btn span.center {
    top: 50%;
}

.menu-btn span.bottom {
    top: 100%;
}

.nav {
    background-color: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    color: #fff;
    opacity: 0;
    transition: .5s;
    display: none;
    overflow-y: auto;
}

.nav.show {
    display: block;
    opacity: 1;
}


.nav-wrap {
    max-width: 800px;
    margin: 120px auto 0;
    padding-bottom: 40px;
}

.logo-img {
    width: 340px;
    margin-bottom: 20px;
}

.nav--inner {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 70px;
}

.nav--list {
    margin-right: 100px;
}

.nav--item {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.nav--item--end {
    margin-bottom: 0;
    margin-top: 45px;
}

.nav--item--end .nav--link {
    display: inline-block;
    border: solid 1px #fff;
    padding: 15px;
    text-align: center;
    transition: .5s;
}

.nav--item--end .nav--link:hover {
    background-color: #fff;
    color: #000;
}

.nav--item span {
    font-family: "FuturaPT";
    font-weight: 500;
}


.nav .contact--title {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.nav .address-text {
    font-size: 1.6rem;
    margin-bottom: 40px;
}

.nav .address-text span {
    display: block;
    font-size: 1.8rem;
}

.nav .open-text {
    font-family: "FuturaPT";
    font-size: 1.6rem;
    margin-bottom: 40px;
}

.nav .tel-text {
    font-family: "FuturaPT";
    font-size: 1.6rem;
}

@media screen and (max-width: 1024px) {
    .nav-wrap {
        width: 90%;
    }

    .logo-img {
        width: 200px;
        display: block;
        margin: 0 auto 40px;
    }

    .nav--inner {
        display: block;
        margin-bottom: 40px;
    }

    .nav--list {
        text-align: center;
        margin-right: 0;
    }

    .nav--item {
        margin-bottom: 20px;
    }

    .nav--item--end {
        margin-top: 30px;
    }

    .nav-info {
        margin-top: 60px;
    }

    .nav .contact--title {
        color: #fff;
        text-align: center;
        margin-bottom: 10px;
    }

    .nav .address-text {
        text-align: center;
    }

    .nav .open-text {
        text-align: center;
    }

    .nav .contact--tel {
        display: block;
    }

    .nav .tel-text {
        text-align: center;
    }

    .nav-insta {
        display: block;
        margin: 0 auto 100px;
    }
}


@media screen and (max-width: 500px) {
    .nav--item {
        font-size: 1.6rem;
    }

    .nav .contact--title {
        font-size: 1.6rem;
    }

    .nav .address-text {
        font-size: 1.4rem;
    }

    .nav .address-text span {
        font-size: 1.6rem;
    }

    .nav .open-text {
        font-size: 1.4rem;
    }

    .nav .tel-text {
        font-size: 1.4rem;
    }
}


.loading {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 9999;
    transition: 3s;
}

.loading--text {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.loading--text--first {
    margin-bottom: 60px;
}

.loading--inner {
    opacity: 0;
    transition: 4s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading--inner.active {
    opacity: 1;
}


@media screen and (max-width: 1024px) {
    .loading--text {
        font-size: 1.5rem;
        word-break: keep-all;
    }
}

.first-view {
    max-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* --------------swiper--------------- */

@keyframes zoomUp {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.top .swiper-slide-active .slide-img,
.top .swiper-slide-duplicate-active .slide-img,
.top .swiper-slide-prev .slide-img {
    animation: zoomUp 10s linear 0s 1 normal both;
}

.first-view--img-pc {
    display: block;
}

/* --------------swiper--------------- */

.main-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9998;
    opacity: 0;
    transition: .5s;
}

.main-logo.active {
    opacity: 1;
}

@media screen and (max-width: 1024px) {
    .main-logo img {
        width: 350px;
    }
}

@media screen and (max-width: 800px) {
    .main-logo img {
        width: 250px;
    }
}


.first-view--img {
    width: 100%;
}


.section--inner {
    width: 95%;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .section--inner {
        width: 90%;
    }

    .first-view--img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }
}

.section--head {
    font-family: "FuturaPT";
    font-size: 4.2rem;
    font-weight: 500;
    position: relative;
    text-align: center;
    margin-bottom: 80px;
}

@media screen and (max-width: 500px) {
    .section--head {
        font-size: 3rem;
    }
}

.section--head::before {
    content: "";
    width: 28px;
    height: 5px;
    background-color: #000000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.section--about {
    text-align: center;
    padding: 62px 0 85px;
}

.about--text {
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.about--text--2 {
    margin-bottom: 50px;
}

.about--text--last {
    margin-bottom: 0;
}

.about--wrap {
    opacity: 0;
    transition: 4s;
}

.about--wrap.active {
    opacity: 1;
}

@media screen and (max-width: 1024px) {
    .about--text {
        font-size: 1.5rem;
        word-break: keep-all;
    }
}

@media screen and (max-width: 500px) {
    .about--text {
        font-size: 1.4rem;
    }

    .about--text span {
        display: block;
        margin-top: 30px;
    }
}


.section--room {
    background-color: #E9E9E9;
    padding: 120px 0 110px;
}

.room--card {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 140px;
}

.room--card--center {
    flex-direction: row-reverse;
}

.room--card--last {
    margin-bottom: 0;
}

.room--img--wrap {
    width: 561px;
    height: 374px;
    margin-right: 110px;
    overflow-x: hidden;
}

.room--card--center .room--img--wrap {
    margin-right: 0;
    margin-left: 110px;
}

/* 
.card--body {
    width: 240px;
} */

.room--title {
    font-weight: bold;
    font-size: 3.4rem;
    padding-bottom: 8px;
    margin-bottom: 20px;
    position: relative;
}

.room--title::before {
    display: block;
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #000000;
    transition: 1s;
}

.active .room--title::before {
    width: 100%;
}

.room--title span {
    font-family: "FuturaPT";
    font-size: 4.2rem;
    margin-right: 20px;
}

.room--text {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.room--link {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 10px 20px;
    border: solid #000000 1px;
    transition: .5s;
    margin-top: 30px;
}

.room--link:hover {
    background-color: #000000;
    color: #fff;
}


.room .swiper {
    width: 100%;
    margin: 0 auto;
    height: 330px;
    overflow: hidden;
}

.room .swiper-slide {
    flex-shrink: 0;
}

.room .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media screen and (max-width: 1024px) {
    .room--card {
        max-width: 500px;
        display: block;
        margin: 0 auto;
        margin-bottom: 80px;
    }

    .room--card--last {
        margin-bottom: 0;
    }

    .room--img--wrap {
        width: 100%;
        height: 100%;
    }

    .room--card--center .room--img--wrap {
        margin-left: 0;
    }

    .room--title {
        text-align: center;
    }

    .active .room--title::before {
        width: 50%;
    }

    .room--texts {
        width: max-content;
        margin: 0 auto;
    }

    .room--text {
        width: max-content;
    }

    .room--link {
        display: block;
        width: max-content;
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (max-width: 500px) {

    .room--title {
        font-size: 2.4rem;
    }

    .room--title span {
        font-size: 3.2rem;
    }

    .room--text {
        font-size: 1.4rem;
    }

}

.section--howToUse {
    padding: 90px 0 120px;
}

.howToUse--cards {
    display: flex;
    align-items: center;
    justify-content: center;
}

.howToUse--card {
    width: 230px;
    height: 360px;
    border: #000000 solid 1px;
    padding: 36px 5px;
    text-align: center;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .75);
    overflow-y: hidden;
    opacity: 0;
    transition: 1s;
    transform: translateY(100px);
}

.howToUse--card-inner {
    transition: 1s;
    transform: translateY(400px);
}

.active .howToUse--card-inner {
    transform: translateY(0);
}

.howToUse--card.active {
    opacity: 1;
    transform: translateY(0);
}

.howToUse--num {
    display: block;
    font-family: "FuturaPT";
    font-size: 5.3rem;
    margin-bottom: 18px;
}

.howToUse--title {
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.howToUse--text {
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.howToUse--text-sub {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.howToUse--link {
    font-size: 1.4rem;
    padding: 8px 16px;
    border: solid #000000 1px;
}

.howToUse--arrow {
    margin: 0 10px 0;
}


@media screen and (max-width: 1024px) {
    .howToUse--cards {
        display: block;
    }

    .howToUse--card {
        margin: 0 auto;
        width: 100%;
        max-width: 500px;
        height: auto;
        padding: 26px 5px;
    }

    .howToUse--num {
        font-size: 4rem;
    }

    .howToUse--arrow {
        display: block;
        transform: rotateZ(90deg);
        margin: 10px auto;
    }
}



.section--otherService {
    background-color: #E9E9E9;
    padding: 60px 0 0;
}

.service {
    max-width: 920px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
}

.service--item {
    display: flex;
    align-items: center;
    width: 400px;
    margin: 0 auto 40px;
}

.service--img {
    margin-right: 30px;
}

.service--name {
    width: 325px;
    font-size: 2rem;
    font-weight: bold;
    border-bottom: 1px solid #000000;
    padding-bottom: 5px;
    letter-spacing: .1em;
}

.service--name span {
    font-size: 1.4rem;
}

.section--originalGoods {
    padding: 120px 0 90px;
}


.other .swiper {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    height: 330px;
    overflow: hidden;
}

.other .swiper-wrapper {
    display: flex;
    transition-timing-function: linear !important;
}

.other .swiper-slide {
    flex-shrink: 0;
}

.other .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



@media screen and (max-width: 1024px) {
    .service {
        margin-bottom: 24px;
    }
    .service--name {
        width: 60%;
    }

    .service--img {
        width: 60px;
        height: auto;
    }

    .service--item {
        margin-bottom: 22px;
    }

    .other .swiper {
        height: 250px;
    }

    
}

@media screen and (max-width: 500px) {

    .service--item {
        width: 100%;
        justify-content: center;
    }

    .service--name {
        font-size: 1.6rem;
    }


    .other .swiper {
        height: 250px;
    }
}

.originalGoods--text {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.originalGoods--images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.originalGoods--img1 {
    width: 60%;
    max-width: 600px;
    height: 100%;
    margin-right: 30px;
}

.originalGoods--img2 {
    width: 40%;
    max-width: 450px;
    height: 100%;
}



@media screen and (max-width: 1024px) {

    .originalGoods--text {
        font-size: 1.8rem;
        word-break: keep-all;
    }

    .originalGoods--images {
        display: block;
    }

    .originalGoods--img1 {
        margin-right: 0;
    }

    .originalGoods--img {
        width: 100%;
        display: block;
        margin: 0 auto;
    }
}

@media screen and (max-width: 500px) {
    .originalGoods--text {
        font-size: 1.4rem;
    }
}


.footer {
    background-color: #E9E9E9;
}

.footer--contact {
    padding: 50px 0 60px;
}


.contact--inner {
    display: flex;
    justify-content: center;
}

.contact--inner iframe {
    margin-right: 50px;
}

.footer .contact--title {
    font-family: "FuturaPT";
    font-size: 2.6rem;
    color: #a8a8a8;
    margin-bottom: 10px;
}

.address-text {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.open-text {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-family: "FuturaPT";
}

.tel-text {
    font-size: 2.4rem;
    font-weight: bold;
}

.tel-text span {
    font-family: "FuturaPT";
}

.footer-insta {
    margin-top: 20px;
    width: 40px;
    height: 40px;
}

@media screen and (max-width: 1024px) {
    .footer--contact {
        width: 90%;
        margin: 0 auto;
    }

    .contact--inner {
        display: block;
    }

    .contact--inner iframe {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .contact--tel {
        justify-content: space-between;
    }

    .contact--title {
        text-align: center;
    }

    .address-text {
        width: max-content;
        margin: 0 auto;
        margin-bottom: 15px;
    }

    .open-text {
        text-align: center;
    }

    .tel-text {
        text-align: center;
    }

    .foooter--link {
        display: block;
        text-align: center;
        margin-top: 40px;
    }

    .footer-insta {
        margin-top: 20px;
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 500px) {
    .contact--title {
        font-size: 1.8rem;
    }

    .address-text {
        font-size: 1.4rem;
    }

    .open-text {
        font-size: 1.4rem;
    }
}