@charset "UTF-8";

/*
Theme Name: HOTEL-KANSEI
Theme URl: https://wordpress.org/themes/kansei/
Author: Ayaka Yoshida
Description: HOTEL KANSEI
Version: 1.0
*/

html, body {
    height: auto;
    min-height: 100%;
	margin: 0;
	padding: 0;
}

body{
    width: 100%;
    align-items: center;
    position: relative;
    background-color: #001403;
    font-family: "Urbanist","Noto Sans JP", serif;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 3.0;
    font-size: 14px;
    color: #fff;
	margin: 0;
    padding: 0;
	overflow-x: hidden;
}

a{
    color: #001401;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

h3{
    font-size: 1.4em;
    font-weight: 500    ;
}

img{
    display: block;
}

@media (hover: hover) {
    a:any-link:hover{
        opacity: 0.5;
    }

    .button a:hover{
        opacity: 1;
    }

    .button:hover img {
        transition: transform 1s;
        transform: rotate(360deg);
    }
}

.loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 30, 3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.5s linear;
    z-index: 9999;
}

.loading.loaded {
    opacity: 0;
    visibility: hidden;
}

.col-sm-2 {
    padding: 10px;
    border-radius: 4px;
    height: 125px;
    margin-bottom: 10px;
}

.sp {
    width: 32px;
    height: 32px;
    clear: both;
    margin: 20px auto;
}

.sp-wave {
    border-radius: 50%;
    position: relative;
    opacity: 1;
}

.sp-wave:before, .sp-wave:after{
    content:'';
    border: 1px #fff solid;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    left:0px;
}

.sp-wave:before {
    transform: scale(1,1);
    opacity: 1;
    -webkit-animation: spWaveBe 0.6s infinite linear;
    animation: spWaveBe 0.6s infinite linear;
}
.sp-wave:after {
    transform: scale(0,0);
    opacity: 0;
    -webkit-animation: spWaveAf 0.6s infinite linear;
    animation: spWaveAf 0.6s infinite linear;
}
@-webkit-keyframes spWaveAf {
    from { -webkit-transform: scale(0.5,0.5); opacity: 0; }
    to { -webkit-transform: scale(1,1); opacity: 1; }
}
@keyframes spWaveAf {
    from { transform: scale(0.5,0.5); opacity: 0; }
    to { transform: scale(1,1); opacity: 1; }
}
@-webkit-keyframes spWaveBe {
    from { -webkit-transform: scale(1,1); opacity: 1; }
    to { -webkit-transform: scale(1.5,1.5); opacity: 0; }
}
@keyframes spWaveBe {
    from { -webkit-transform: scale(1,1); opacity: 1; }
    to { -webkit-transform: scale(1.5,1.5); opacity: 0; }
}

.header {
    position: absolute;
    box-sizing: border-box;
    text-align: center;
    padding: 24px 40px;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.sp-header{
    display: none;
}

.logo {
    display: inline-block;
}

.logo img{
    max-width: 140px;
    padding-bottom: 16px;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #001401;
    font-size: 0.8em;
    gap: 80px;
    padding-top: 24px;
    border-top: 1px solid #001401;
}

.kv{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kv-inner{
    width: 100%;
    height: 100%;
    display: inline-grid;
    justify-content: center;
    align-items: center;
    position: relative;
}

.kv-movie{
    width: 100%;
    height: 100%;
    margin-inline: auto;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.slick-img img{
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: right;
}

@keyframes zoomUp {
    0% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.add-animation {
    animation: zoomUp 10s linear 0s normal both;
}

.kv-text{
    width: 100%;
    position: absolute;
    bottom: 24px;
}

.kv-text-inner{
    border-top: 1px solid #fff;
    margin: 0 40px;
}

.kv-text p{
    max-width: 1080px;
    margin: auto;
    padding: 16px 0 0;
    font-size: 0.8em;
}

.language {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    gap: 12px;
    position: absolute;
    right: 40px;
}

.language a{
    color: #fff;
}

.ellipse {
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
}

.scroll-header{
    position: fixed;
    top: 0; 
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    padding: 24px 40px;
    transition: all 0.5s ease-in-out;
    opacity: 0;
}

.scroll-header.active{
    opacity: 1;
}

.scroll-logo img{
    padding: 0;
    padding-top: 6px;
}

.scroll-navbar{
    border: none;
    padding: 0;
    gap: 40px;
}

.scroll-language{
    display: flex;
    flex-direction: row;
    position: static;
}

.scroll-language a{
    color: #001403;
}

.scroll-language .ellipse{
    background-color: #001403;
}

.img-area {
    margin-top: 15vw;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    width: 100%;
    gap: 48px;
}

.img-area-pic02 {
    max-width: 600px;
    object-fit: cover;
}

.img-area-pic01 {
    max-width: 400px;
    object-fit: cover;
    margin-top: 20vw;
}

.img-area-pic04 {
    max-width: 247px;
    margin-top: 20vw;
    object-fit: cover;
}

.img-area-pic03 {
    max-width: 500px;
    object-fit: cover;
}

.img-area-pic05{
    max-width: 320px;
}

.img-area-pic01 img, .img-area-pic02 img, .img-area-pic03 img, .img-area-pic04 img, .img-area-pic05 img, .hotel-card-img img{
    width: 100%;
}

.concept {
    margin-top: 20vw;
    position: relative;
}

.concept::after{
    content: '';
    background: url('assets/img/CONCEPT.svg') center center / cover no-repeat;
    display: inline-block;
    width: 40vw;
    height: 4vw;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -3;
}

.concept-inner {
    display: flex;
    align-items: center;
    max-height: 800px;
    gap: 24px;
}

.concept-img {
    width: 50%;
    height: 100%;
    clip-path: inset(0);

}

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

.concept-text {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    width: 50%;
	padding: 0 80px;
}

.story {
    padding-top: 160px;
    background-color: #001E03;
    position: relative;
}

.story-inner{
    margin: 0 auto;
    width: 80%;
    max-width: 1080px;
}

.story::after{
    content: '';
    background: url('assets/img/STORY.svg') center center / cover no-repeat;
    display: inline-block;
    width: 30vw;
    height: 4vw;
    background-size: contain;
    position: absolute;
    top: 160px;
    left: 0;
    z-index: 0;
}

.story-text {
    padding: 10vw 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.story-text p{
    min-width: 320px;
}

.kansei-brandillust, .kansei-movie{
    max-width: 400px;
}

.kansei-brandillust img, .kansei-movie img{
    width: 100%;
}

.hotel {
    margin-top: 20vw;
    position: relative;
}

.hotel::after{
    content: '';
    background: url('assets/img/HOTEL.svg') center center / cover no-repeat;
    display: inline-block;
    width: 30vw;
    height: 4vw;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -3;
}

.hotel-text {
    padding-top: 20vw;
    margin: 0 auto;
    width: 80%;
    max-width: 1080px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.hotel-text p{
    width: 50%;
    margin-top: 180px;
}

.hotel-img {
    max-width: 400px;
    width: 50%;
    object-fit: cover;
}

.hotel-img img{
    width: 100%;
}

.hotel-list {
    margin-top: 160px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px 80px;
}

.hotel-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hotel-card-img {
    max-width: 500px;
}

.iframe-wrapper{
	width: 100%;
    position: relative;
    padding-top: 56.25%;
}

.iframe-wrapper iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.list-text {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    align-items: center;
    gap: 16px;
}

.button{
    margin: auto;
}

.button a{
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.img-area-center{
    margin-top: 20vw;
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: flex-end;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    position: relative;
    background-color: #001e03;
    margin-top: 240px;
}

.contact::after{
    content: '';
    background: url('assets/img/CONTACT.svg') center center / cover no-repeat;
    display: inline-block;
    width: 48vw;
    height: 4vw;
    background-size: contain;
    position: absolute;
    top: -4vw;
    right: 0;
    left: 0;
    margin: auto;
}

.contact-inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.footer {
    margin-top: 160px;
    text-align: center;
}

.footer-logo{
    padding-bottom: 48px;
    display: inline-block;
}

.footer-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 40px;
    padding: 48px;
    border-top: 1px solid #fff;
}

.footer-menu-li a, .footer-menu p{
    color: #fff;
    font-size: 0.8em;
}

.footer-menu-li{
    display: flex;
    gap: 40px;
}

.scrollAnim{
    opacity: 0;
    visibility: hidden;
    transition: all 2.0s;
    transform: translateY(50px);
}

.scrollAnim.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    p{
        font-size: 12px;
    }
	
	.sp-br{
		display: none;
	}
    
    .header{
        display: none;
    }

    .sp-header{
        display: block;
        position: fixed;
        z-index: 1000;
        border-bottom: 1px solid #001401;
        transition: all 0.5s ease-in-out;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .sp-header__content{
        display: flex;
        width: 100vw;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
    }

    .sp-header.active{
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(12px);
        border-bottom: none;
    }

    .header-button{
        width: 40px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        cursor: pointer;
        background-color: rgba(255, 255, 255, 0);
        border: none;
        z-index: 9999;
    }
    
    .header-button span{
        display: block;
        width: 100%;
        height: 1px;
        background: #001403;
        transition: all 0.5s ease-in-out;
    }

    .header-button.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: #fff;
    }
    
    .header-button.active span:nth-child(2) {
        opacity: 0;
    }
    
    .header-button.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background: #fff;
    }

    .h-navigation{
        opacity: 0;
        background: #001403;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        z-index: 50;
        transition: 0.5s ease-in-out;
    }

    .navigation__list-item a{
        color: #fff;
    }

    .navigation__content{
        text-align: center;
        margin: 31.8vw auto 0;;
    }

    .navigation__content ul{
        margin: 24px;
    }

    .sp-language{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }

    .sp-language a{
        color: #fff;
    }

    .sp-language .ellipse{
        background-color: #fff;
    }

    .h-navigation.active{
        opacity: 1;
        right: 0;
        overflow: hidden;
    }

    .kv-text-inner{
        padding: 0 24px;
        margin: 0;
    }

    .kv-text p{
        font-size: 0.7em;
        letter-spacing: 3px;
        line-height: 2.0;
    }

    .language{
        right: 16px;
    }

    .img-area, .concept-inner, .story-text, .hotel-text{
        flex-wrap: wrap-reverse;
    }

    .sp-story-text, .img-area-center{
        flex-wrap: wrap;
        padding: 15vw 0 0;
    }

    .img-area{
        margin-top: 30vw;
    }

    .img-area-pic01{
        max-width: 300px;
        margin: 0;
    }

    .concept-inner{
        max-height: 100%;
        gap: 64px;
        padding-top: 48px;
    }

    .concept-img{
        width: 100%;
        height: 500px;
    }
	
	.concept-text {
		padding: 0;
	}

    .concept-text p{
        width: 80%;
    }

    .concept::after {
        width: 50vw;
        top: -4vw;
    }

    .story-text{
        gap: 24px;
    }

    .img-area-pic04, .sp-kansei-movie{
        max-width: 100%;
        margin: 0;
        width: 100vw;
    }

    .img-area-pic03{
        max-width: 360px;
    }
	
	.hotel-list{
		margin-top: 64px;
	}

    .img-area-pic04 img{
        width: 40%;
    }

    .hotel-text{
        width: 100%;
        justify-content: flex-end;
    }

    .hotel-text p{
        width: 80%;
        min-width: 320px;
        margin: auto;
    }

    .hotel-img{
        max-width: 320px;
        width: 100vw;
    }

    .hotel-card-img{
        min-width: 400px;
    }

    .list-text{
        width: 80%;
        margin: auto;
    }

    .img-area-center{
        justify-content: flex-end;
    }

    .sp-kansei-movie img{
        max-width: 400px;
        width: 60%;
    }

    .img-area-pic05{
        max-width: 240px;
    }

    .contact{
        padding: 64px 24px;
        margin-top: 200px;
    }

    .contact-inner {
        gap: 24px;
    }

    .footer{
        margin-top: 15vw;
    }

    .footer-menu{
        flex-wrap: wrap;
        justify-content: center;
        gap: 48px;
        padding: 48px 0;
    }
    
    .footer-menu-li{
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
        font-size: 1.2em;
        max-width: 200px;
    }

    .footer-menu p{
        width: 100%;
        letter-spacing: 3px;
        line-height: 2.0;
    }

    .footer-logo{
        width: 140px;
    }
}
