@charset "UTF-8";

/* --- 1. Variables & Reset --- */
:root {
    --bg-color: #F8F8F8;   /* 限りなく白に近いグレー */
    --text-main: #111111;  /* ほぼ黒 */
    --text-sub: #777777;   /* グレー */
    --line-color: #E0E0E0; /* 薄い線 */
    --font-display: "Chelsea Market", system-ui;
    --font-body: "Sawarabi Gothic", sans-serif;
	--font-normal: "Noto Sans JP", sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 2;
    overflow-x: hidden;
	min-width: 1100px;
	margin: 0 auto;
    opacity: 0; /* JSで表示制御 */
}

.pc_appear {
	display: block;
}

.sp_appear {
	display: none;
}

ul,li {
	list-style: none;
}

a { text-decoration: none; color: inherit; transition: opacity 0.3s; }

img { display: block; width: 100%; height: auto; object-fit: cover; }

/* --- 2. Typography --- */
.display-text {font-family: var(--font-display);text-transform: uppercase;letter-spacing: 0;}
.h1-hero {font-size: 1.4rem;line-height: 1.3;font-weight: bold;letter-spacing: 2px;color: #e74926;margin-top: 50px;}
.h2-title { font-size: clamp(2rem, 5vw, 4rem); font-weight: 400; margin-bottom: 2rem; }
.p-lead { font-size: 1.1rem; color: var(--text-sub); max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- 3. Opening Animation Layer --- */
.opener {
    position: fixed; inset: 0; z-index: 9999;
    background-color: var(--text-main); /* 黒背景 */
    display: flex; justify-content: center; align-items: center;
    color: #fff;
}
.opener-logo span {
    display: block;
    font-size: 1rem;
    margin-top: 10%;
    font-family: var(--font-body);
    font-weight: bold;
    letter-spacing: 2px;
}
.opener-logo {
    opacity: 0;
    font-family: var(--font-display);
	text-align: center;
	display: block;
	font-size: 2.5rem;
	letter-spacing: 5px;
	line-height: 1.3;
}
.opener-curtain {
    position: absolute; inset: 0; background-color: var(--bg-color);
    z-index: 1; transform: scaleY(0); transform-origin: bottom;
}

.target {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}

.target_hero {
  animation: floating-y-hero 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y-hero {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}

/* --- 4. Layout & Components --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    color: #fff;
}
.header_logo {
    mix-blend-mode: difference;
    width: 120px;
}
.reserve-btn {
    font-size: 0.8rem; letter-spacing: 0.2em; border: 1px solid #fff;
    padding: 0.8rem 2rem; border-radius: 50px; text-transform: uppercase;
}

/* Hero */
.hero {
    height: 150vh;
    width: 100%;
    position: relative;
    text-align: center;
    z-index: 9;
}
.hero-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 5;
    /* パララックス用に少し大きく */
    height: 100vh;
    top: 34%;
}
.hero-img {width: 100%;height: 100%;}
.hero-content {color: #000;z-index: 10;position: absolute;text-align: center;width: 100%;top: 15%;}
.hero-content h2 {
    width: 800px;
    margin: 0 auto;
}

.hero-content h2 span {
    display: block;
    font-size: 2.4rem;
    margin-top: 25px;
}

/* Sections */
.container { max-width: 1200px; margin: 0 auto; }

/* Concept */
.concept { text-align: center; padding: 15rem 2rem; }

/* Rooms (Horizontal Layout) */
.rooms-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center; margin-top: 4rem;
}
.room-img-box { overflow: hidden; }
.room-img-box img { 
    transition: transform 1.5s var(--ease-out); 
    filter: grayscale(100%);
}
.rooms-grid:hover img { transform: scale(1.05); filter: grayscale(0%); }

.room-info { padding: 2rem; border-top: 1px solid var(--line-color); }
.room-name { font-size: 1.5rem; margin-bottom: 1rem; }

/* Amenities (Parallax) */
.parallax-section {
    height: 80vh; overflow: hidden; position: relative;
    display: flex; align-items: center; justify-content: center;
    margin: 5rem 0;
}
.parallax-bg {
    position: absolute; top: -20%; left: 0; width: 100%; height: 140%;
    object-fit: cover; filter: grayscale(100%) brightness(0.6);
    z-index: -1;
}
.parallax-text {
    font-size: 1rem;
    text-align: left;
    line-height: 2;
    letter-spacing: 0;
    font-family: var(--font-body);
}

.intro_cap p {
    font-size: 0.95rem;
    line-height: 2.6;
    font-family: var(--font-body);
    letter-spacing: 1.25px;
}

.intro_title {
    width: 18%;
}

/* --- Color Reveal Section (修正版CSS) --- */
.color-reveal-section {
    height: 250vh; /* スクロール距離を少し長めにとって余韻を持たせる */
    z-index: -1;
    position: relative;
}
.color-reveal-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.color-reveal-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

/* ベース画像（常にモノクロ） */
.reveal-base {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%); 
}

/* オーバーレイ画像（カラー・絶対配置） */
.reveal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* 最初は透明にしておく */
    /* 重要：CSSトランジションがGSAPと競合しないようにnoneにする */
    transition: none;
}

.color-reveal-content {
    color: #fff;
    display: flex;
    width: 85%;
    margin: 0 auto;
    z-index: 10;
    max-width: 850px;
    justify-content: space-between;
    align-items: flex-start;
}
.color-reveal-text {font-size: 3rem;font-weight: 300;line-height: 1.25;}

.intro_cap {
    width: 68%;
}

.reveal-wave {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.people {
    width: 100%;
    position: absolute;
    top: -5%;
    height: 10rem;
}

.people_1 {
    width: 210px;
    left: -3%;
    position: absolute;
}

.people_2 {
    position: absolute;
    width: 180px;
    left: 33%;
    top: -60%;
}

.people_3 {
    position: absolute;
    width: 180px;
    right: -1.5%;
    top: -3%;
}

.people_4 {
    position: absolute;
    width: 160px;
    top: 0%;
    left: 50%;
}

.people_5 {
    width: 180px;
    left: 15%;
    position: absolute;
    top: -15%;
}

.people_6 {
    width: 180px;
    position: absolute;
    right: 17%;
    top: -40%;
}

@media (max-width: 768px) {
    .color-reveal-text { font-size: 2rem; }
}


section.cards-section {
    padding: 10rem 0 20rem;
    position: relative;
}

.cards-inner h2 {
    text-align: center;
    font-size: 2rem;
    max-width: 520px;
    margin: 0 auto 5%;
}

.cards-inner h2 span {
    display: block;
    font-size: 1.2rem;
    margin-top: 10px;
    font-family: var(--font-display);
}

ul.cards-items {
    display: flex;
    max-width: 1500px;
    justify-content: space-between;
    width: 92%;
    margin: 0 auto;
}

ul.cards-items li {
    width: 32%;
    border: 2px solid;
    border-radius: 10px;
    position: relative;
    background: #fff;
}

ul.cards-items li a {
	overflow: hidden;
	position: relative;
	display: block;
	height: 100%;
	padding: 10% 10% 90px;
}

.cards-nolink {
	overflow: hidden;
	position: relative;
	display: block;
	height: 100%;
	padding: 10% 10% 90px;
}

.card-mask {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	border-radius: 8px;
	background: #000;
	left: -100%;
	top: 0;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

ul.cards-items li a:hover .card-mask {
	left: 0;
	top: 0;
}

ul.cards-items li a:hover .cards-items-thumb img {
	transform: scale(1.2);
}

ul.cards-items li a:hover .cards-items-cap {
	color: #fff;
}

ul.cards-items li a:hover .cards-items-title {
	color: #fff;
}

.cards-num {
    position: absolute;
    width: 35%;
    left: 35px;
    top: -25px;
    z-index: 99;
}

ul.cards-items li:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #000;
    position: absolute;
    border-radius: 100%;
    top: 15px;
    left: 15px;
	z-index: 9999;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

ul.cards-items li:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #000;
    position: absolute;
    border-radius: 100%;
    top: 15px;
    right: 15px;
	z-index: 9999;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

ul.cards-items li a:hover:before,
ul.cards-items li a:hover:after {
	background: #fff;
}

.cards-items-thumb {
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.cards-items-thumb img {
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.cards-items-cap {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.8;
    font-family: var(--font-normal);
    position: relative;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.cards-items-title {
    margin-bottom: 15px;
    font-size: 1.35rem;
    font-weight: bold;
    line-height: 1.6;
    position: relative;
    font-family: var(--font-normal);
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.cards-items-status {
    text-align: center;
    background: #e74926;
    padding: 10px 0;
    margin-top: 25px;
    font-family: var(--font-body);
    color: #fff;
    position: absolute;
    font-weight: bold;
    font-size: 1.15rem;
    bottom: -2px;
    width: 80%;
    border: 2px solid #000;
    letter-spacing: 1px;
    border-radius: 30px 30px 0 0;
}

.status_soon {
    background: #111;
}

p.andmore {
    text-align: right;
    font-size: 2.4rem;
    font-family: var(--font-display);
    margin-top: 1.5rem;
    padding-right: 5%;
}

.infograph {
	background-image: url("../img/index/map_bg.png");
	background-size: 110%;
	background-position: center top;
	background-repeat: no-repeat;
}

section.infograph h2 {
    text-align: center;
    letter-spacing: 1px;
    font-size: 1.5rem;
    max-width: 640px;
    margin: 0 auto 5rem;
}

section.infograph h2 span {
    display: block;
    font-weight: normal;
    letter-spacing: 0;
    margin-top: 10px;
    font-size: 1.2rem;
    font-family: var(--font-display);
}

.infograph_contents {
    display: flex;
    margin: 5rem 0 10rem;
    justify-content: space-between;
}

.infograph_contents.infograph_even {
    flex-direction: row-reverse;
}

.infograph_image {
    width: 60%;
    background: #eee;
}

.infograph_cap {
    width: 40%;
    padding: 10rem 5%;
}

.infograph_cap h3 {
    font-size: 2rem;
    font-weight: normal;
    line-height: 45px;
    text-align: center;
    margin-bottom: 20px;
}

.infograph_cap p {
    font-family: var(--font-normal);
    font-weight: 600;
    font-size: 1rem;
    writing-mode: tb-rl;
    line-height: 2.5;
    margin: 5rem 0 0;
    letter-spacing: 2px;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

ul.infograph_total_list {
    display: flex;
    align-items: center;
    min-width: 1100px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10rem;
}

ul.infograph_total_list li {
    border: 2px solid;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    width: 30%;
    margin: 1%;
    background: #fff;
}

.infograph_total_list_title {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 5%;
}

.number_small {
    font-size: 3rem!important;
}

.infograph_total {
    max-width: 1100px;
    margin: 0 auto;
}

.infograph_total_cap {
    padding: 8% 0 10%;
}

.infograph_total_image {
    height: 150px;
    overflow: hidden;
    border-bottom: 2px solid #000;
}

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

.illust_line {
    width: 190px;
    position: absolute;
    top: -5%;
    right: -5%;
}

.ii_line {
    position: relative;
}

.illust_sumaho {
    position: absolute;
    width: 200px;
    left: 13%;
    bottom: -6%;
}

.ii_morning {
	background-image: url("../img/index/border_top.png"), url("../img/index/border_bottom.png"), url("../img/index/border_right.png"), url("../img/index/info_morning.jpg");
	background-size: 40px, 40px, 16px, cover;
	background-position: top, bottom, right, center;
	position: relative;
	background-repeat: repeat-x, repeat-x, repeat-y, no-repeat;
}

.ii_sento {
	background-image: url("../img/index/border_top.png"), url("../img/index/border_bottom.png"), url("../img/index/border_left.png"), url("../img/index/info_sento.jpg");
	background-size: 40px, 40px, 16px, cover;
	background-position: top, bottom, left, center;
	position: relative;
	background-repeat: repeat-x, repeat-x, repeat-y, no-repeat;
}

.ii_omake {
	background-image: url("../img/index/border_top.png"), url("../img/index/border_bottom.png"), url("../img/index/border_right.png"),  url("../img/index/info_omake.jpg");
	background-size: 40px, 40px, 16px, cover;
	background-position: top, bottom, right, center;
	background-repeat: repeat-x, repeat-x, repeat-y, no-repeat;
	position: relative;
}

.ii_review {
	background-image: url("../img/index/border_top.png"), url("../img/index/border_bottom.png"), url("../img/index/border_left.png"),  url("../img/index/info_review.jpg");
	background-size: 40px, 40px, 16px, cover;
	background-position: top, bottom, left, center;
	background-repeat: repeat-x, repeat-x, repeat-y, no-repeat;
}

.review_loop {
    width: 100%;
    height: 100%;
    background-image: url("../img/index/reviews.png");
    background-repeat: repeat-x;
    background-size: 1600px;
    background-position-y: 5%!important;
    background-position: 0 0;
    -webkit-animation: bgloop 20s linear infinite;
    animation: bgloop 20s linear infinite;
}
@-webkit-keyframes bgloop {
    from {
        background-position: 0  center;
    }
    to {
        background-position: -1956px center;
    }
}
@keyframes bgloop {
    from {
        background-position: 0 center;
    }
    to {
        background-position: -1956px center;
    }
}

.ii_line {
	background-image: url("../img/index/border_top.png"), url("../img/index/border_bottom.png"), url("../img/index/border_right.png"),  url("../img/index/info_line.jpg");
	background-size: 40px, 40px, 16px, cover;
	background-position: top, bottom, right, center;
	background-repeat: repeat-x, repeat-x, repeat-y, no-repeat;
}

.ii_oversea {
	background-image: url("../img/index/border_top.png"), url("../img/index/border_bottom.png"), url("../img/index/border_left.png"),  url("../img/index/info_oversea.jpg");
	background-size: 40px, 40px, 16px, cover;
	background-position: top, bottom, left, center;
	background-repeat: repeat-x, repeat-x, repeat-y, no-repeat;
	position: relative;
}

.illust_coffee {
    position: absolute;
    width: 200px;
    right: -8%;
    bottom: 4%;
    transform: rotate(-15deg);
}

.illust_sandwich {
    position: absolute;
    width: 180px;
    left: 14%;
    top: -6%;
    transform: rotate(25deg);
}

.illust_kerorin {
    position: absolute;
    width: 200px;
    right: 10%;
    top: -4%;
    transform: rotate(11deg);
}

.illust_bottle {
    transform: rotate(-8deg);
    position: absolute;
    width: 180px;
    bottom: -4%;
    left: 10%;
}

.illust_takoyaki {
    position: absolute;
    width: 230px;
    left: 12%;
    top: -4%;
}

.illust_drink {
    position: absolute;
    width: 130px;
    bottom: -5%;
    right: -5%;
    transform: rotate(18deg);
}

.illust_world {
    position: absolute;
    width: 350px;
    left: -10%;
    bottom: -5%;
}

.illust_plane {
    position: absolute;
    width: 220px;
    top: -5%;
    right: 15%;
}

/* --- NEW: Stats Section --- */
        .stats-section {
            padding: 10rem 2rem;
            text-align: center;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .stat-item {
            text-align: center;
            display: flex;
            align-items: baseline;
            justify-content: center;
        }
        .stat-number {
            font-family: var(--font-body);
            font-size: 6rem;
            font-weight: bold;
            color: var(--text-main);
            line-height: 1;
        }
		.num_unit {
			font-size: 2rem;
			font-weight: bold;
			line-height: 10px;
		}
        .stat-label {
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

.interview_inner {
    max-width: 1100px;
    margin: 0 auto 10rem;
}

.interview_inner h2 {
    text-align: center;
    font-size: 4rem;
    font-family: var(--font-display);
    letter-spacing: 2px;
    margin-bottom: 5rem;
    line-height: 60px;
}

ul.interview_list {
    display: flex;
    justify-content: space-between;
}

ul.interview_list li {
    border: 2px solid #000;
    width: 48%;
    border-radius: 10px;
    background: #fff;
	position: relative;
}

ul.interview_list li a {
    display: block;
    height: 100%;
    padding: 10%;
    position: relative;
    overflow: hidden;
}

ul.interview_list li a:hover .card-mask {
	left: 0;
	top: 0;
}

ul.interview_list li a:hover .interview_list_thumb img {
	transform: scale(1.2);
}

.interview_num {
    top: -5%;
    position: absolute;
    width: 40%;
    right: 10%;
    z-index: 999;
}

.interview_list_thumb img {
    object-fit: cover;
    height: 100%;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

ul.interview_list li:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #000;
    position: absolute;
    border-radius: 100%;
    top: 15px;
    left: 15px;
	z-index: 999;
}

ul.interview_list li:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #000;
    position: absolute;
    border-radius: 100%;
    top: 15px;
    right: 15px;
	z-index: 99;
}

.interview_list_thumb {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #eee;
    margin-bottom: 8%;
    z-index: 99;
    position: relative;
}

.interview_list_title {
    font-size: 1.4rem;
    line-height: 1.8;
    z-index: 99;
    position: relative;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

ul.interview_list li a:hover .interview_list_title {
	color: #fff;
}

ul.interview_list li a:hover .interview_list_title span {
	background: #fff;
	color: #000;
}

.interview_list_title span {
    display: block;
    color: #fff;
    background: #111;
    padding: 3px 20px;
    border-radius: 100px;
    width: max-content;
    margin-bottom: 4%;
    font-size: 1rem;
	z-index: 99;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

section.interview {
    padding: 10rem 0 30rem;
    background-image: url("../img/index/footer_illust.png");
    background-size: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: relative;
}

.guide_inner {
    max-width: 1100px;
    margin: 0 auto;
}

.guide_inner h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 5rem;
    line-height: 30px;
}

ul.guide_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

ul.guide_list li a {padding: 0;background: #fff;display: flex;justify-content: space-between;}

ul.guide_list li {
    width: 31%;
    border: 2px solid;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 3px 0 #111;
    margin: 0 1% 2% 1%;
	position: relative;
	overflow: hidden;
}

ul.guide_list li a:hover .card-mask {
	left: 0;
	top: 0;	
}

ul.guide_list li a:hover .guide_title {
	color: #fff;
}

ul.guide_list li a:hover .guide_title span {
	background: #fff;
	color: #000;
}

ul.guide_list li a:hover .guide_thumb img {
	transform: scale(1.2);
}

.guide_thumb {
    width: 40%;
    border-right: 2px solid;
    background: #eee;
	position: relative;
	z-index: 99;
}

.guide_title {
    padding: 8%;
    font-size: 1.3rem;
    width: 60%;
	position: relative;
	z-index: 99;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.guide_thumb img {
    object-fit: cover;
    height: 100%;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.guide_title span {
    display: block;
    background: #111;
    color: #fff;
    padding: 1px 12px;
    font-size: 0.75rem;
    width: max-content;
    border-radius: 100px;
    margin-bottom: 3%;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.bottom-wave {
    position: absolute;
    width: 100%;
    bottom: 0;
}

/* Footer */
footer {
    color: #fff;
    padding: 5rem 0;
    background: var(--text-main);
    text-align: center;
    font-family: var(--font-normal);
    margin: 0 auto;
}
.footer-logo { font-size: 3rem; margin-bottom: 4rem; display: inline-block; }
.footer-links {
    display: flex; justify-content: center; gap: 3rem; 
    font-size: 0.9rem; letter-spacing: 0.1em; color: #999;
    margin-bottom: 4rem;
}
.copyright { font-size: 0.7rem; color: #555; }

/* Animations */
.fade-up { opacity: 0; transform: translateY(40px); }

.footer_logo {
    width: 120px;
    margin: 30px auto;
}

small {
    font-size: 0.7rem;
    letter-spacing: 1px;
    opacity: 0.4;
    text-align: center;
    display: block;
}

ul.footer_menu {
    display: flex;
    margin: 0 0 20px 0;
    justify-content: center;
    padding: 20px 0;
}

ul.footer_menu li a {
    font-size: 0.8rem;
    display: block;
    letter-spacing: 1px;
}

ul.footer_menu li {
    border-right: 1px solid rgba(255,255,255,0.25);
    padding: 0 2%;
}

ul.footer_menu li:first-child {
    border-left: 1px solid rgba(255,255,255,0.25);
}

a.sns_link {
    display: block;
    width: 40px;
    margin: 40px auto 30px;
}

a.sns_link:hover {
    opacity: 0.5;
}

@media (max-width: 768px) {
    header { padding: 1.5rem; }
    .h1-hero { font-size: 3.5rem; }
    .rooms-grid { grid-template-columns: 1fr; gap: 2rem; }
    .parallax-text { font-size: 2rem; }
}

@media screen and (max-width: 480px) {
	
.opener-logo {
    font-size: 1.8rem;
    line-height: 1.3;
    letter-spacing: 2px;
}

body {
    min-width: inherit;
    overflow-x: hidden;
}

.pc_appear {
	display: none!important;
}

.sp_appear {
	display: block!important;
}

.hero-img {
	position: absolute;
	top: 0;
	transform: translate3d(0px, 0px, 0px)!important;	
}

.hero-content h2 {
    width: 85%;
}

.h1-hero {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 15px;
}

.hero-img-wrap {
    height: 58vh;
    top: 60%;
}
	
.hero-img_wrap_whitebg {
    width: 100%;
    background: #f8f8f8;
    height: 52vh;
    position: absolute;
    top: -50vh;
}

.hero {
    height: 68vh;
}

.hero-content {
    top: 25%;
}

.header_logo {
    margin: 0 auto;
    width: 90px;
}

.color-reveal-section {
    height: auto;
}

.color-reveal-sticky {
    height: 100vh;
}

.color-reveal-content {
    width: 87%;
    padding-bottom: 40%;
    display: block;
    margin-top: -60vh;
}

.intro_cap p {
    font-size: 0.9rem;
    line-height: 2.4;
    letter-spacing: 1px;
    text-align: center;
}

.intro_cap {
    width: 100%;
}

.intro_title {
    width: 26%;
    margin: 0 auto 20%;
}
	
.people_1 {
    width: 24%;
}

.people_2 {
    width: 22%;
    top: 38%;
    left: 23%;
}

.people_3 {
    width: 24%;
    top: -3%;
}

.people_4 {
    width: 22%;
    top: 30%;
    left: 63%;
}

.people_5 {
    width: 22%;
    left: 15%;
}

.people_6 {
    width: 24%;
    top: -4%;
    right: 35%;
}

.people {
    top: -3%;
    width: 100%;
    left: 0;
}

section.cards-section {
    padding: 8rem 0 6rem;
    width: 88%;
    margin: 0 auto;
}

.cards-inner h2 {
    width: 90%;
    margin: 0 auto 15%;
}

.cards-inner h2 span {
    font-size: 1rem;
}

ul.cards-items {
    display: block;
    width: 100%;
}

ul.cards-items li {
    width: 100%;
    margin-top: 15%;
}

.cards-items-status {
    left: 50%;
    margin-left: -40%;
    padding: 5px 0;
    font-size: 1rem;
}

.cards-items-status {
    font-size: 1.1rem;
    border-radius: 15px 15px 0 0;
}

.cards-items-title {
    font-size: 1.1rem;
}

.cards-items-cap {
    font-size: 0.8rem;
}

.cards-num {
    width: 28%;
}
	
p.andmore {
    font-size: 1.6rem;
    margin-top: 1rem;
}

.infograph {
	background-size: 225%;
	overflow: hidden;
}
	
section.infograph h2 {
    width: 85%;
    margin: 0 auto 10%;
}

section.infograph h2 span {
    font-size: 1rem;
}

ul.infograph_total_list {
    display: block;
    min-width: inherit;
    width: 90%;
    margin: 0 auto;
}

ul.infograph_total_list li {
    width: 100%;
    margin-bottom: 6%;
}

.infograph_contents {
    display: block;
    margin: 0 0 4rem;
}

.infograph_image {
    width: 90%;
    height: 40vh;
}

.illust_coffee {
    width: 100px;
}

.illust_sandwich {
    width: 86px;
}

.infograph_cap {
    width: 100%;
    padding: 2rem 5% 0;
}

.infograph_cap h3 {
    font-size: 1.5rem;
    line-height: 38px;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 3.5rem;
}

.infograph_cap p {
    line-height: 2.4;
    margin: 2.5rem 0 0;
    font-size: 0.9rem;
}

.number_small {font-size: 2.5rem!important;}

.illust_kerorin {
    width: 100px;
}

.illust_bottle {
    width: 90px;
}

.illust_takoyaki {
    width: 120px;
}

.illust_drink {
    width: 70px;
}

.illust_world {
    width: 200px;
    left: -6%;
}

.illust_plane {
    width: 110px;
    right: 6%;
    top: -10%;
}
	
.illust_line {
    width: 100px;
}

.illust_sumaho {
    width: 90px;
    bottom: -8%;
    left: 10%;
}

.infograph_total {
    margin-bottom: 6rem;
}

section.interview {
    padding: 3rem 5% 12rem;
    background-size: 150%;
}

.interview_inner h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

ul.interview_list {
    display: block;
}

ul.interview_list li {
    width: 100%;
    margin-bottom: 10%;
}

.interview_list_thumb {
    width: 100%;
    height: 200px;
}

ul.interview_list li a {
    padding: 7%;
}

.interview_list_title span {
    font-size: 0.8rem;
    padding: 3px 15px;
}

.interview_list_title {
    font-size: 1rem;
    line-height: 1.65;
}

ul.interview_list li:before {
    left: 10px;
    top: 10px;
    width: 8px;
    height: 8px;
}

ul.interview_list li:after {
    width: 8px;
    height: 8px;
    top: 10px;
    right: 10px;
}

ul.interview_list li:after {
}

.guide_inner h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.interview_inner {
    margin: 0 auto 5rem;
}

ul.guide_list {
    display: block;
}

ul.guide_list li {
    width: 100%;
    margin: 0 auto 5% 0;
}

.guide_title {
    padding: 5%;
    font-size: 1.1rem;
}

.infograph_total_list_title {
    font-size: 1.2rem;
    margin-bottom: 2%;
    line-height: 26px;
}

.infograph_total_cap {
    padding: 5% 0 6%;
}

.infograph_total_image {
    height: 120px;
}

.infograph_total_list_title br {
    display: none;
}
	
.ii_review {
    height: 55vh;
}

.review_loop {
    background-size: 1080px;
}

.footer_logo {
    width: 100px;
    margin: 0 auto 30px;
}

ul.footer_menu li a {
    font-size: 0.7rem;
}

.bottom-wave {
    left: 0;
}
	
.reveal-wave {
    bottom: -1px;
}

.infograph_even .infograph_image {
    margin-left: 10%;
}
}