@charset "UTF-8";
/*==================================
common
==================================== */
:root {
    --primary-white: #f4f4f4;
    --primary-black: #000A02;
    --primary-yellow: #F0CC2D;
    --primary-lightOrange: #F4D3A4;
    --primary-darkGreen: #474B41;
    --font--title:  "Permanent Marker";
    --font--text: "Nanum Brush Script";
    --font--subText: Inter;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
} 

img {
    /* pointer-events: none; */
    max-width: 100%;
}

.body {
    font-family: var(--font--subText);
    color: var(--primary-black);
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    text-align: center;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section {
    width: 100%;
    max-width: 1280px;
    padding: 0 30px;
    margin: -150px auto 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.section__title {
    color: var(--primary-yellow);
    text-shadow: 2px 2px 0px rgba(0, 10, 2, 0.60);
    font-family: "Permanent Marker";
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.5; /* 60px */
    letter-spacing: 2.8px;
    transform: rotate(-4.5deg);
    margin-top: 100px;
}

@media screen and (min-width: 769px) {
    .body {
        font-size: 1.6rem;
    }

    .section {
        padding: 0 45px;
        margin: -150px auto 0;
    }

    .section__title {
        text-shadow: 4px 4px 0px rgba(0, 10, 2, 0.60);
        font-size: 7rem;
        letter-spacing: 3.5px;
        margin-top: 120px;
        transform: rotate(-4.5deg) translateX(-140px);
    }
}

/* =================================
loading
====================================*/

#loading {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-white);
    text-align: center;
    transition: opacity 1s ease, z-index 0s linear 1s; /* アニメーションの調整 */
}

@keyframes load {
    from {opacity: 0;}
    to {opacity: 100;}
}

#loading img {
    display: block;
    margin: 0 auto;
    width: 270px;
    object-fit: contain;
    animation: load 1s ease;
    transition: opacity 1s ease;
    pointer-events: none;
}

#loading p {
    font-family: var(--font--subText);
    font-size: 12px;
    color: var(--primary-black);
    letter-spacing: 1.8px;
    margin-top: 15px;
    transform: translateX(5px);
    animation: load 1s ease;
    transition: opacity 1s ease;
}

#loading.loaded {
    opacity: 0;
    z-index: -100;
}

#loading img.loaded,
#loading p.loaded {
    opacity: 0;
}

@media screen and (min-width: 769px) {
    #loading img {
        width: 420px;
    }

    #loading p {
        font-size: 18px;
        margin-top: 20px;
        transform: translateX(8px);
    }
}

/*==================================
header
==================================== */
.header {
    color: var(--primary-white);
    position: fixed;
    width: 100%;
    z-index: 90;
}

.headerContainer,
.nav__header {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: var(--primary-black);
}

.header__topic img,
.nav__topic img {
    display: inline-block;
    width: auto;
    height: 40px;
    object-fit: contain;
}

/* .nav初期表示 */
.nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: 0.7s ease;
    background-color: rgba(0, 10, 2, .8);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* ---------------- */
.nav__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav__item a {
    font-size: 2rem;
    line-height: 1.75;
    letter-spacing: 2px;
}

.nav__sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.header__btn {
    display: block;
    width: 30px;
    height: 20px;
    pointer-events: all;
    cursor: pointer;
}

.nav__btn {
    display: block;
    width: 28px;
    height: 28px; 
    pointer-events: all;
    cursor: pointer;
}

.nav.active {
    transform: translateX(0);
    transition: 0.7s ease;
}

.header--pcScrole {
    display: none;
}

@media screen and (min-width: 769px) {
    .header {
        position: absolute;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }

    .headerContainer,
    .nav__header {
        display: none;
    }

    .nav__topic img {
        display: none;
    }

    .nav {
        width: 100%;
        height: auto;
        position: relative;
        left: auto;
        top: auto;
        z-index: 0;
        transform: translateX(0);
        background-color: var(--primary-black);
        backdrop-filter: blur(0);
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .nav__btn {
        display: none;
    }

    .nav__list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .nav__item a {
        display: inline-block;
        padding: 0 10px;
        font-size: 1.2rem;
        line-height: 4;
        letter-spacing: 1px;
        transition: 0.8s ease;
    }

    .nav__item a:hover {
        color: var(--primary-yellow);
        transition: 0.8s ease;
    }

    .nav__sns {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-top: 0;
        margin-left: 3.2%;
    }

    .sns__item {
        width: 25px;
        object-fit: contain;
    }
    /* pcScroleHeadear */
    .header--pcScrole {
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        top: 0;
        z-index: 100;
        backdrop-filter: blur(3px);
        background: linear-gradient(180deg, rgba(0, 10, 2, .5) 0%, rgba(0, 10, 2, 0) 100%);
        transform: translateY(-100%);
        transition: .7s ease;
    }

    .header--pcScrole.active {
        transform: translateY(0);
        transition: .7s ease;
    }

    .logo--pcSc {
        display: inline-block;
        height: 30px;
        object-fit: contain;
        margin-right: 20px;
    }

    .nav__list--pcSc {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav__item--pcSc a {
        display: inline-block;
        padding: 0 8px;
        font-size: 1.2rem;
        line-height: 4;
        letter-spacing: 1px;
        transition: 0.8s ease;
    }

    .nav__item--pcSc a:hover {
        color: var(--primary-yellow);
        transition: 0.8s ease;
    }

    .nav__sns--pcSc {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-top: 0;
        margin-left: 3.2%;
    }

    .sns__item--pcSc {
        width: 25px;
        object-fit: contain;
    }
}

@media screen and (min-width: 1280px) {
    .nav__item--pcSc a,
    .nav__item a {
        padding: 0 15px;
        font-size: 1.6rem;
        line-height: 4;
        letter-spacing: 1.8px;
    }

    .logo--pcSc {
        height: 40px;
        margin-right: 35px;
    }
}

/*==================================
contactBtn
==================================== */
.contactBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 95px;
    z-index: 110;
}

.contactBtn p {
    color: var(--primary-yellow);
    text-shadow: 2px 1px 0px rgba(0, 10, 2, 0.60);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.btn--contact {
    position: relative;
}

.btnShadow {
    width: 70px;
    height: 70px;
    object-fit: contain;
    pointer-events: none;
}

.reel-a {
    display: block;
    width: 60px;
    object-fit: contain;
    position: absolute;
    bottom: 2px;
    z-index: 5;
    left: 50%;
    pointer-events: none;
    transform: translateX(-50%) rotate(0);
    transition: 10s ease;
}

.reel-a.active {
    transform: translateX(-50%) rotate(720deg);
    transition: 1.5s ease;
}

.reel-b {
    display: block;
    width: 36px;
    object-fit: contain;
    position: absolute;
    bottom: 62.5px;
    z-index: 5;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

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

    .contactBtn {
        bottom: 70px;
        right: 45px;
        width: 100px;
        height: 125px;
    }
    
    .contactBtn p {
        font-size: 24px;
        letter-spacing: 1.2px;
    }
    
    .btnShadow {
        width: 100px;
        height: 100px;
    }
    
    .reel-a {
        width: 85px;
        bottom: 4px;
        
    }
    
    .reel-b {
        width: 54px;
        bottom: 89px;
    }
    
   

}
/*==================================
topView
==================================== */
.topView {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding: 0 5.5%;
}

.topView::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(0,10,2,.5), rgba(0,10,2,0));
    width: 100vw;
    height: 50vh;
    top: 0;
    z-index: -15;
}

.pageBg {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    z-index: -50;
    top: 0;
    pointer-events: none;
}

.kv {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 75%;
    transform: scale(115%);
    z-index: -20;
    top: 50px;
    pointer-events: none;
}

.logo {
    position: absolute;
    display: block;
    width: 265px;
    height: 195px;
    object-fit: contain;
    top: 50%;
    transform: translateY(-140%);
    pointer-events: none;
}

.catchCopy {
    width: 100%;
    transform: translateY(-30%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease-in;
  }
  
.catchCopy.visible {
    opacity: 1;
}

.cc--sp {
    width: 100%;
    max-width: 420px;
}

.cc--pc {
    display: none;
}

@media screen and (min-width: 769px) {
    .kv {
        transform: scale(120%);
        z-index: -20;
        top: 50px;
    }

    .logo {
        width: 35%;
        max-width: 450px;
        transform: translateY(-140%);
    }

    .catchCopy {
        width: 100%;
        transform: translateY(-15%);
    }
    
    .cc--sp {
        display: none;
    }
    
    .cc--pc {
        display: block;
        max-width: 1028px;
        width: 80%;
        margin: 0 auto;
    }
}
/*==================================
about
==================================== */
.section--about {
    padding: 0;
    padding-top: 150px;
    
}

.photoBlock__A {
    padding: 0 30px;
    margin: 0 auto;
    display: block;
    margin-top: 30px;
    pointer-events: none;
}

.about__txt {
    width: 300px;
    margin: 70px auto 0;
    text-align: justify;
    font-family: "Nanum Brush Script";
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.96px;
}

.about__profile {
    width: 100%;
    height: 850px;
    position: relative;
    overflow: hidden;
}

.photo__hase {
    position: absolute;
    width: 280px;
    transform: translateX(-80%) rotate(-7deg);
    left: 50%;
    top: 200px;
    pointer-events: none;
}

.fukidashi {
    position: absolute;
    z-index: 5;
    width: 370px;
    left: 50%;
    transform: rotate(-20deg) translateX(-45%);
    top: -70px;
    pointer-events: none;
}

.fusen--profile {
    position: absolute;
    z-index: 5;
    width: 300px;
    left: 50%;
    transform: rotate(7deg) translateX(-50%);
    top: 500px;
    pointer-events: none;
}

.paint--about {
    width: 780px;
    object-fit: contain;
    position: absolute;
    z-index: -30;
    left: 50%;
    bottom: 0;
    transform: translateX(-45%) scaleX(-100%);
    opacity: .7;
    pointer-events: none;
}

@media screen and (min-width: 769px) {
    .about__txt {
        width: 700px;
        margin: 100px auto 0;
        font-size: 4rem;
        letter-spacing: auto;
    }

    .about__profile {
        height: 1150px;
    }

    .photo__hase {
        width: 435px;
        object-fit: contain;
        transform: translateX(-80%) rotate(-3deg);
        left: 50%;
        top: 200px;
    }

    .fukidashi {
        width: 520px;
        left: 50%;
        transform: rotate(-3deg) translateX(-8%);
        top: -20px;
    }

    .fusen--profile {
        width: 450px;
        left: 50%;
        transform: rotate(3deg) translateX(-10%);
        top: 600px;
    }
}
/*==================================
rental
==================================== */
.rental__txt {
    width: 330px;
    font-family: "Nanum Brush Script";
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 1.92px;
    margin: 30px auto 0;
}

.photoBlock__B--sp {
    margin: 30px auto 0;
    padding-bottom: 200px;
    pointer-events: none;
}

.photoBlock__B--pc {
    display: none;
    pointer-events: none;
}

.paint--rental {
    display: block;
    width: 800px;
    object-fit: contain;
    position: absolute;
    z-index: -30;
    left: 50%;
    bottom: 0;
    transform: translateX(-55%) scaleX(-100%);
    opacity: .7;
    pointer-events: none;
}

@media screen and (min-width: 769px) {
    .section--rental {
        padding-bottom: 350px;
    }

    .rental__txt {
        width: 600px;
        font-size: 4rem;
        letter-spacing: 3.2px;
        margin: 100px auto 0;
    }

    .photoBlock__B--sp {
        display: none;
    }
    
    .photoBlock__B--pc {
        display: block;
        width: 80%;
        max-width: 1440px;
        margin: 80px auto 0;
    }

    .paint--rental {
        left: 50%;
        bottom: 0;
        transform: translateX(-75%) scaleX(-100%);
    }
    
}
/*==================================
photo&video
==================================== */
.section--photo {
    padding: 30px 0 0;
    position: relative;
    justify-content: flex-start;
    overflow: hidden;
}

.photoBlock__C--pc,
.photoBlock__D--pc,
.photoBlock__E--pc {
    display: none;
    pointer-events: none;
}

.photoBlock__C--sp,
.photoBlock__D--sp,
.photoBlock__E--sp {
    margin: 30px auto 0;
    pointer-events: none;
}

.photoBlock__D--sp {
    transform: translateY(5%);
}

.photoBlock__E--sp {
    transform: translateY(-20%);
    padding-bottom: 200px;
}

.paint--photo {
    min-width: 600px;
    max-width: 600px;
    object-fit: contain;
    position: absolute;
    z-index: -30;
    left: 50%;
    bottom: -150px;
    transform: translate(-70%, -50%) scaleX(-100%);
    opacity: .7;
    pointer-events: none;
}

.plate--photo {
    display: block;
    width: 80%;
    max-width: 500px;
    position: absolute;
    z-index: 15;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -70%) rotate(-5deg);
    pointer-events: none;
}

@media screen and (min-width: 769px) {
    .section--photo {
        padding-bottom: 350px;
    }

    .photoBlock__C--sp,
    .photoBlock__D--sp,
    .photoBlock__E--sp {
        display: none;
    }

    .photoBlock__C--pc,
    .photoBlock__D--pc,
    .photoBlock__E--pc {
        display: block;
        width: 80%;
        max-width: 1440px;
        margin: 0 auto;
    }

    .photoBlock__C--pc {
        margin-top: 70px;
    }

    .photoBlock__E--pc {
        margin-top: -100px;
    }

    .plate--photo {
        top: 40%;
        left: 50%;
        transform: translate(-50%, -70%) rotate(-5deg);
    }

    .paint--photo {
        max-width: none;
        width: 1000px;
        bottom: -350px;
        transform: translate(-35%, -50%) scaleX(-100%);
    }
}
/*==================================
hospitality
==================================== */
.section--hospitality {
    padding-bottom: 50px;
}

.plate--hospitality {
    width: 80%;
    max-width: 380px;
    position: absolute;
    z-index: 15;
    left: 50%;
    transform: translateX(-30%) rotate(10deg);
    top: 200px;
}

.photoBlock__F--sp {
    margin: 130px auto 0;
    pointer-events: none;
}

.photoBlock__F--pc {
    display: none;
    pointer-events: none;
}

.arrow--pc {
    display: none;
    pointer-events: none;
}

@media screen and (min-width: 769px) {
    .photoBlock__F--sp {
        display: none;
    }
    
    .photoBlock__F--pc {
        display: block;
        width: 80%;
        max-width: 1440px;
        margin: 300px auto 0;
    }

    .plate--hospitality {
        left: 50%;
        transform: translateX(-10%) rotate(3deg);
        top: 300px;
    }

    .arrow--pc {
        display: block;
        position: absolute;
        z-index: 30;
        width: 190px;
        object-fit: contain;
        left: 50%;
        transform: scaleX(-100%) translate(90%, -20%);
    }
}
/*==================================
guideFee
==================================== */
.subContainer {
    position: relative;
    overflow: hidden;
}

.section--fee {
    margin-top: 0;
}

.subBg {
    width: 100%;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 110%;
    object-fit: cover;
    pointer-events: none;
}

.subContainer::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 150px;
    top: 0;
    left: 50%;
    z-index: 5;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #EBE1D7 0%, rgba(235, 227, 216, 0.00) 100%);
}

.fee__container {
    width: 100%;
    max-width: 560px;
    margin: 50px auto 0;
    padding: 35px 20px;
    border-radius: 10px;
    background-color: rgba(244, 244, 244, .5);
    backdrop-filter: blur(2px);
    text-align: left;
    position: relative;
}

.fee__txtA {
    text-align: justify;
    line-height: 1.8;
}

.fee__txtB {
    margin-top: 20px;
}

.fee__price {
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.6;
    width: 100%;
    padding-right: 120px;
}

.paypal {
    position: absolute;
    display: block;
    width: 100px;
    object-fit: contain;
    bottom: 35px;
    right: 20px;
    pointer-events: none;
}

@media screen and (min-width: 769px) {
    .fee__container {
        max-width: none;
        width: 650px;
        margin: 70px auto 0;
        padding: 70px 50px;
    }

    .fee__price {
        margin-top: 13px;
        font-size: 1.8rem;
        line-height: 1.7;
        padding-right: 130px;
    }

    .paypal {
        width: 130px;
        bottom: 70px;
        right: 50px;
    }
}

/*==================================
attention
==================================== */
.section--attention {
    margin-top: 0;
    padding-bottom: 150px;
}

.attention__container {
    width: 100%;
    max-width: 560px;
    margin: 50px auto 0;
    padding: 35px;
    border-radius: 10px;
    background-color: rgba(244, 244, 244, .5);
    backdrop-filter: blur(2px);
    text-align: left;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media screen and (min-width: 769px) {
    .section--attention {
        padding-bottom: 200px;
    }

    .attention__container {
        max-width: none;
        width: 650px;
        margin: 70px auto 0;
        padding: 50px;
        gap: 15px;
        font-size: 1.8rem;
    }
}

/*==================================
contact
==================================== */
.section--contact {
    margin-top: 0;
    background-color: var(--primary-darkGreen);
    padding: 0 0 100px;
}

.section__title--contact {
    color: var(--primary-white);
    font-family: var(--font--subText);
    font-size: 4rem;
    letter-spacing: 2.6px;
    transform: rotate(0);
}

.address {
    width: 300px;
    margin: 20px auto 0;
    pointer-events: none;
}

.formAria {
    width: 70%;
    max-width: 450px;
    text-align: left;
    display: block;
    margin: 40px auto 0;
    color: var(--primary-white);
}

.form__topic {
    margin-top: 15px;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1.8px;
}

.form-control {
    width: 100%;
    height: 45px;
    background-color: var(--primary-white);
    color: var(--primary-black);
    margin-top: 5px;
    border-radius: 5px;
    font-size: 1.8rem;
    padding: 10px 10px;
}

.form-control.message {
    height: auto;
    min-height: 200px;
}

.btn--submit {
    display: block;
    margin: 30px auto;
    padding: 10px 15px;
    background-color: var(--primary-white);
    color: var(--primary-black);
    font-size: 1.6rem;
    letter-spacing: 1.6px;
    border-radius: 5px;
    transition: 1s ease;
}

.btn--submit:hover {
    background-color: var(--primary-yellow);
    border-radius: 50%;
    transition: 1s ease;
}

@media screen and (min-width: 769px) {
    .section--contact {
        max-width: none;
        padding-bottom: 150px;
    }

}
/*==================================
footer
==================================== */
.footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding-bottom: 30px;
}

.footer__logo {
    padding-top: 70px;
}

.footer__logo--sp img {
    display: block;
    width: 190px;
    object-fit: contain;
    margin: 0 auto;
}

.footer__logo--pc {
    display: none;
}

.footer__nav__list {
    margin-top: 25px;
}
.footer__nav__item a {
    font-size: 1.8rem;
    line-height: 1.75;
    letter-spacing: 2px;
}

.footer__nav__sns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.footer__sns__item a {
    display: inline-block;
    width: 25px;
    object-fit: contain;
    color: var(--primary-white);
}

.copy {
    font-size: 1rem;
    margin-top: 50px;
    font-weight: 300;
    letter-spacing: 1px;
}

@media screen and (min-width: 769px) {
    .footer {
        padding: 0 20px 30px;
    }
    .footer__container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding-top: 50px;
    }

    .footer__logo {
        padding-top: 0;
    }
    
    .footer__logo--sp {
        display: none;
    }
    
    .footer__logo--pc {
        display: block;
        max-width: 250px;
        object-fit: contain;
    }

    .footer__nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .footer__nav__list {
        width: 512px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

    .footer__nav__item a {
        font-size: 1.2rem;
        line-height: 1.5;
        letter-spacing: 1.4px;
        transition: 0.8s ease;
    }

    .footer__nav__item a:hover {
        color: var(--primary-yellow);
        transition: 0.8s ease;
    }
    
    .footer__nav__sns {
        gap: 15px;
        margin-top: 0;
    }
}

@media screen and (min-width: 1280px) {
    .footer__nav__list {
        width: 670px;
        gap: 15px;
    }

    .footer__nav__item {
        font-size: 1.6rem;
        letter-spacing: 1.8px;
    }

    .copy {
        font-size: 1.4rem;
    }
}