@charset "UTF-8";

/* ==========================================================================
   Variables (古民家カフェに合わせたダークトーン)
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-color: #1a1816; 
    --text-color: #f5f0eb; 
    --sub-text-color: #a09890;
    --accent-color: #ffffff;
    --link-hover: #cccccc;

    /* Typography */
    --font-main: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
    --font-eng: 'Oswald', sans-serif;

    /* Layout */
    --container-width: 1100px;
    --section-spacing: 160px;
    --header-height: 80px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    /* Lenis用にHTMLのデフォルトスクロールの挙動を調整 */
    overflow-y: scroll;
    width: 100%;
}

/* Lenisが動いている間はスクロールバーの振る舞いをライブラリに任せるための基本設定 */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 2;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip; 
    width: 100%;
}

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

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

h1, h2, h3, p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container--wide {
    max-width: 1300px;
}

.section { 
    padding-bottom: var(--section-spacing); 
}

/* アニメーション用クラス */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Parallax & Smooth Scroll (浮遊感演出)
   ========================================================================== */
.js-parallax-wrapper {
    /* 基本的にパララックスの対象はこのラッパー内で少し動く */
    position: relative;
}

.js-parallax-target {
    /* ブラウザにこれからアニメーションすることを伝え、カクつきを防ぐ */
    will-change: transform;
}

/* マップエリアなどの背景的なものは少し大きめにしておくことで、動いても隙間が見えないようにする */
.map-placeholder.js-parallax-wrapper {
    overflow: hidden; /* はみ出しを隠す */
}
.map-placeholder .js-parallax-target {
    height: 120%; /* 余分な高さを持たせる */
    width: 100%;
    position: absolute;
    top: -10%; /* 120%にした分、上にずらして中央を合わせる */
    left: 0;
    object-fit: cover;
}

/* ==========================================================================
   Typography & Common Parts
   ========================================================================== */
.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.c-section-title {
    font-family: var(--font-eng);
    font-size: 2.8rem;
    letter-spacing: 0.15em;
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
}

.c-section-subtitle {
    font-family: var(--font-main);
    font-size: 1rem;
    letter-spacing: 0.1em;
    display: block;
    margin-top: 10px;
    color: var(--sub-text-color);
}

.c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 60px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: var(--text-color);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}
.c-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}
.c-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 1);
    opacity: 1; 
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: absolute; /* fixed から absolute に変更して追従を解除 */
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
    background: transparent;
    border-bottom: none;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 40px;
}

.header__logo {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.header__logo-img {
    height: 60px;
    width: auto;
    background-color: transparent;
}

.header__sns {
    display: flex;
    gap: 20px;
}
.header__sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

/* ==========================================================================
   Side Navigation (Scrollspy)
   ========================================================================== */
.side-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
}

.side-nav__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.side-nav__btn {
    width: 6px;
    height: 6px;
    background-color: transparent;
    border: 1px solid var(--sub-text-color);
    transform: rotate(45deg);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.side-nav__btn.is-active,
.side-nav__btn:hover {
    background-color: var(--text-color);
    border-color: var(--text-color);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; 
}
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,24,22,1) 0%, rgba(26,24,22,0) 30%);
}

.hero__content {
    text-align: center;
    z-index: 1;
}

.hero__copy-en {
    font-family: var(--font-eng);
    font-size: 4vw;
    font-weight: 300;
    letter-spacing: 0.2em;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero__copy-ja {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
}

.hero__bottom {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero__info {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    gap: 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}
.hero__info-label {
    font-family: var(--font-eng);
    letter-spacing: 0.1em;
}

.hero__scroll-down {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80px;
}
.hero__scroll-down::after {
    content: '';
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 0;
}
.hero__scroll-down span {
    display: block;
    width: 5px;
    height: 5px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    bottom: 0;
    z-index: 2;
}

/* ==========================================================================
   Concept Section
   ========================================================================== */
.concept {
    margin-top: var(--section-spacing);
}

.concept__inner {
    position: relative;
    padding: 140px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.concept__frame-outer {
    position: absolute;
    top: 80px;
    bottom: 80px; 
    left: 10%;
    right: 10%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
}

.concept__frame-inner {
    position: absolute;
    top: 60px;
    bottom: 100px;
    left: calc(10% - 20px);
    right: calc(10% + 20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
}

.concept__images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.concept__img-main {
    width: 55%;
    position: absolute;
    top: 15%;
    left: 0;
}

.concept__img-sub {
    width: 45%;
    position: absolute;
    right: 5%;
    bottom: 15%;
    z-index: 2;
    box-shadow: -10px -10px 30px rgba(0,0,0,0.5);
}

.concept__content-wrap {
    width: 80%;
    position: relative;
    z-index: 4;
    background: transparent;
    padding: 100px 60px;
    opacity: 0;
}

.concept__text-area {
    position: relative;
    width: 100%;
    padding-right: 180px;
}

.concept__title-wrap {
    position: absolute;
    top: 0;
    right: 60px;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.concept__title-en {
    font-family: var(--font-eng);
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.concept__title-ja {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    margin-top: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.concept__text, 
.concept__text-en {
    width: 100%; 
    padding-right: 0;
}

.concept__text {
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 2.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.concept__text-en {
    font-family: var(--font-eng);
    font-size: 0.8rem;
    color: var(--sub-text-color);
    line-height: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   Feature Section
   ========================================================================== */
.feature .container {
    max-width: 1500px;
}

.feature-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin-bottom: 120px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.feature-card:last-of-type {
    margin-bottom: 0; /* FEATUREから次のセクションまでの余白が広くなりすぎるのを防ぐ */
}

.feature-card--reverse {
    flex-direction: row-reverse;
}

.feature-card__img-wrap {
    width: 700px;
    max-width: 60%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.feature-card__content {
    width: 700px;
    max-width: 60%;
    position: relative;
    z-index: 2;
    margin-left: -80px;
}
.feature-card--reverse .feature-card__content {
    margin-left: 0;
    margin-right: -80px;
}

.feature-card__frame {
    padding: 60px 80px;
    position: relative;
    background: transparent;
}

.feature-card__frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
    background-repeat: no-repeat;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-size: 0 1px, 1px 0, 0 1px, 1px 0; 
}

.feature-card.is-visible .feature-card__frame::before {
    animation: drawFrameOuter 2.0s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes drawFrameOuter {
    0%   { background-size: 0 1px, 1px 0, 0 1px, 1px 0; }
    25%  { background-size: 100% 1px, 1px 0, 0 1px, 1px 0; }
    50%  { background-size: 100% 1px, 1px 100%, 0 1px, 1px 0; }
    75%  { background-size: 100% 1px, 1px 100%, 100% 1px, 1px 0; }
    100% { background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%; }
}

.feature-card__frame::after {
    content: '';
    position: absolute;
    top: -15px;
    bottom: -15px;
    left: 15px;
    right: 15px;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
        linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4));
    background-repeat: no-repeat;
    background-position: 0 0, 100% 100%; 
    background-size: 1px 0, 1px 0;
}

.feature-card.is-visible .feature-card__frame::after {
    animation: drawFrameInner 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 1.0s;
}

@keyframes drawFrameInner {
    0%   { background-size: 1px 0, 1px 0; }
    50%  { background-size: 1px 100%, 1px 0; }
    100% { background-size: 1px 100%, 1px 100%; }
}

.feature-card__num {
    display: block;
    font-family: var(--font-eng);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    opacity: 0; /* 初期状態を透明に設定 */
}
.feature-card__label {
    font-family: var(--font-main);
    font-size: 0.8rem;
    margin-left: 10px;
}

.feature-card__title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
    color: #ffffff;
    opacity: 0; /* 初期状態を透明に設定 */
}

.feature-card__text {
    font-size: 0.85rem;
    line-height: 2.2;
    color: #ffffff;
    opacity: 0; /* 初期状態を透明に設定 */
}

/* テキストを枠線アニメーションと完全に同期させる */
.feature-card.is-visible .feature-card__num,
.feature-card.is-visible .feature-card__title,
.feature-card.is-visible .feature-card__text {
    animation: featureTextFade 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes featureTextFade {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Menu Section (背景画像なし、新レイアウト)
   ========================================================================== */
.menu {
    position: relative;
    padding: 0 0 var(--section-spacing) 0; /* 上下の余白を共通変数で統一 */
}

.menu__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.menu__title-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}

.menu__title-text {
    display: flex;
    gap: 20px;
}

.menu__title-en {
    font-family: var(--font-eng);
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #ffffff;
}
.menu__title-ja {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    margin-top: 10px;
    color: var(--sub-text-color);
}

.menu__content-area {
    flex-grow: 1;
    max-width: 700px;
}

.menu__block {
    margin-bottom: 60px;
}
.menu__category {
    font-family: var(--font-eng);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.menu__desc {
    font-size: 0.8rem;
    color: var(--sub-text-color);
    margin-bottom: 20px;
}

.menu__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.menu__item {
    display: flex;
    align-items: baseline;
    font-size: 1rem;
    letter-spacing: 0.05em;
}
.menu__name {
    color: #ffffff;
}
.menu__leader {
    flex-grow: 1;
    margin: 0 15px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
    position: relative;
    top: -5px;
}
.menu__price {
    font-family: var(--font-eng);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: #ffffff;
}

.menu__btn-wrap {
    margin-top: 60px;
    text-align: right;
}
.c-btn--menu {
    border-color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Coffee Animation (MENU内)
   ========================================================================== */
.menu__coffee-anim {
    width: 220px; 
    height: auto;
    --steam-color: rgba(255, 255, 255, 0.4);
    --dash-duration: 520s;
    --fade-duration: 4s;
    margin-top: 30px;
}

.menu__coffee-anim svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.menu__coffee-anim svg path[stroke="#008A7A"],
.menu__coffee-anim svg path[stroke="#069285"] {
    stroke: rgba(255, 255, 255, 0.15) !important;
}

.menu__coffee-anim .steam {
    stroke: var(--steam-color) !important;
    animation:
      steam-dash var(--dash-duration) linear infinite,
      steam-fade var(--fade-duration) linear infinite;
}
.menu__coffee-anim .steam--a { animation: steam-dash 480s linear infinite, steam-fade 3s linear infinite; }
.menu__coffee-anim .steam--b { animation: steam-dash 400s linear infinite; }
.menu__coffee-anim .steam--d { animation: steam-dash 350s linear infinite; }

@keyframes steam-dash { from { stroke-dashoffset: 1px; } to { stroke-dashoffset: -10000px; } }
@keyframes steam-fade { 0% { opacity: 1; } 50%{ opacity: .5; } 100%{ opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
    .menu__coffee-anim .steam { animation: none !important; opacity: 1; }
}

/* ==========================================================================
   Interior Section (スクロール連動スライダー)
   ========================================================================== */
.interior {
    /* 4枚の画像をスクロールで切り替えるため、十分なスクロール量を確保 */
    /* 切り替わりを遅く（重く）するため、500vh から 800vh に変更 */
    height: 800vh; 
    position: relative;
    background: var(--bg-color);
    margin-bottom: var(--section-spacing); /* 下部余白を統一 */
}

.interior__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.interior__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}

.interior__title-wrap {
    margin-bottom: 40px;
    z-index: 5;
}

.interior__slider {
    position: relative;
    width: 100%;
    max-width: 1200px; /* 横幅を大きくするため、1000px から 1200px に変更 */
    height: 75vh; /* 縦幅を大きくするため、60vh から 75vh に変更 */
}

/* 統一感のある二重枠線 */
.interior__frame-outer {
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 3;
    pointer-events: none;
}
.interior__frame-inner {
    position: absolute;
    top: -10px;
    bottom: -30px;
    left: -30px;
    right: -10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 3;
    pointer-events: none;
}

/* 画像コンテナ */
.interior__images {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    background: #222;
}

.interior__img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transform: translateY(100%); /* 初期位置を画面外下部に設定 */
    will-change: transform;
}

/* 1枚目は最初から表示 */
.interior__img-wrap:first-child {
    transform: translateY(0);
}

/* 重なり順の設定 */
.interior__img-wrap:nth-child(1) { z-index: 1; }
.interior__img-wrap:nth-child(2) { z-index: 2; }
.interior__img-wrap:nth-child(3) { z-index: 3; }
.interior__img-wrap:nth-child(4) { z-index: 4; }

/* ズームアウト効果を削除し、カバー表示のみに設定 */
.interior__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 画像上のテキスト（洗練されたデザインに修正） */
.interior__img-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-family: var(--font-main);
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: #ffffff;
    background: rgba(26, 24, 22, 0.6);
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    z-index: 2;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}
.interior__img-wrap.is-active .interior__img-text {
    opacity: 1;
    transform: translateX(0);
}

/* SKIPボタンのスタイル追加・変更 */
.interior__skip-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-eng);
    font-size: 1.4rem; /* サイズをさらに大きく */
    letter-spacing: 0.2em;
    color: #ffffff; /* 白に変更してはっきりと目立たせる */
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 10px 20px;
    transition: opacity 0.3s;
    white-space: nowrap; /* テキストが変わった際の折り返しを防ぐ */
    
    /* 縦並びにして線の位置を制御しやすくする */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.interior__skip-btn:hover {
    opacity: 0.7;
}

/* 線のベーススタイル */
.interior__skip-btn::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px; /* 線を長くする */
    background: #ffffff; /* 線の色も白に変更 */
}

/* 下スクロール時の配置（デフォルト位置） */
.interior__skip-btn[data-direction="down"] {
    bottom: -40px; /* 位置を下に配置 */
    top: auto;
}
.interior__skip-btn[data-direction="down"]::after {
    margin-top: 15px;
    order: 1; /* テキストの下に線を配置 */
}

/* 上スクロール時の配置 */
.interior__skip-btn[data-direction="up"] {
    top: -40px; /* 位置を上に配置 */
    bottom: auto;
}
.interior__skip-btn[data-direction="up"]::after {
    margin-bottom: 15px;
    order: -1; /* テキストの上に線を配置 */
}


/* スクロールインジケーター */
.interior__scroll-indicator {
    position: absolute;
    right: -70px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 5;
}

.interior__progress-bar {
    width: 1px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.interior__progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transform-origin: top;
    transform: scaleY(0); /* JSで動的に変更 */
    transition: transform 0.1s linear;
}

.interior__scroll-text {
    font-family: var(--font-eng);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   Info Section (店舗情報)
   ========================================================================== */
.info {
    position: relative;
}

.info__columns {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 80px;
}

.info__col {
    width: calc(50% - 40px);
}

.info__list {
    display: flex;
    flex-direction: column;
}

.info__row {
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.info__row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info__list dt {
    width: 140px;
    flex-shrink: 0;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #ffffff;
}

.info__list--en dt {
    font-family: var(--font-eng);
    font-size: 1.1rem;
    font-weight: 300;
}

.info__list dd {
    margin: 0;
    flex-grow: 1;
    letter-spacing: 0.1em;
    line-height: 2;
    color: var(--text-color);
}

.info__list--en dd {
    font-family: var(--font-eng);
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
}

.info__map {
    width: 100%;
}

/* ==========================================================================
   Contact / Access / Gallery
   ========================================================================== */
.map-placeholder {
    position: relative;
    width: 100%;
    max-width: 1000px; /* 横幅を狭くする */
    margin: 0 auto;    /* 中央寄せ */
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.map-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}
.c-btn--map {
    z-index: 2;
    background: rgba(26, 24, 22, 0.8);
    backdrop-filter: blur(4px);
}

.contact-inner {
    padding: 0; /* 下部余白を削除してフッターに近づける */
    text-align: center;
}

.gallery-sec {
    margin-bottom: 100px;
}
.gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-eng);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   Inquiry Section (お問い合わせエリアの枠線アニメーション追加)
   -------------------------------------------------------------------------- */
.inquiry-sec {
    position: relative;
    padding: 60px;
    margin: 0 auto; /* 下の60pxを削除してフッターに近づける */
    max-width: 800px;
    background: transparent;
}

/* 枠線アニメーション設定 */
.inquiry-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
    background-repeat: no-repeat;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-size: 0 1px, 1px 0, 0 1px, 1px 0; 
}

.inquiry-sec.is-visible::before {
    animation: drawFrameOuter 1.0s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.1s;
}

.inquiry-sec::after {
    content: '';
    position: absolute;
    top: -15px;
    bottom: -15px;
    left: 15px;
    right: 15px;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
        linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4));
    background-repeat: no-repeat;
    background-position: 0 0, 100% 100%; 
    background-size: 1px 0, 1px 0;
}

.inquiry-sec.is-visible::after {
    animation: drawFrameInner 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.5s;
}

/* 枠線の生成とテキストを同期 */
.inquiry-sec .c-section-title,
.inquiry-sec .inquiry-btns {
    opacity: 0;
}

.inquiry-sec.is-visible .c-section-title,
.inquiry-sec.is-visible .inquiry-btns {
    animation: featureTextFade 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.1s;
}

.inquiry-btns {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 60px 0;
    text-align: center;
    background: transparent;
}

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

.footer__sns {
    display: flex;
    gap: 20px;
}
.footer__sns a {
    color: var(--text-color);
}

.footer__company-link {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.footer__copyright {
    font-family: var(--font-eng);
    font-size: 0.7rem;
    color: var(--sub-text-color);
    letter-spacing: 0.1em;
}

/* ==========================================================================
   Page Top Button (新規追加)
   ========================================================================== */
.page-top-btn {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 50px;
    height: 50px;
    background-color: rgba(26, 24, 22, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    padding: 0;
}

.page-top-btn::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: translateY(2px) rotate(45deg);
    transition: all 0.3s ease;
}

.page-top-btn.is-active {
    opacity: 1;
    visibility: visible;
}

.page-top-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 1);
}

/* ==========================================================================
   Responsive (スマホ・タブレット対応)
   ========================================================================== */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 80px; /* タブレット時の全体間隔を定義 (120pxから80pxに変更) */
    }
    
    .container { padding: 0 40px; }
    .hero__copy-en { font-size: 6vw; }

    /* Conceptタブレット調整 */
    .concept__inner { padding: 100px 0; }
    .concept__frame-outer { left: 5%; right: 5%; }
    .concept__frame-inner { left: calc(5% - 10px); right: calc(5% + 10px); }
    .concept__img-main { width: 75%; top: 10%; }
    .concept__img-sub { width: 50%; bottom: 10%; }
    .concept__content-wrap { width: 90%; padding: 60px 40px; }
    .concept__text-area { padding-right: 120px; }
    .concept__title-wrap { top: 25px; right: 30px; }
    
    /* Featureタブレット調整 */
    .feature-card__img-wrap { width: 60%; max-width: none; }
    .feature-card__content { width: 60%; max-width: none; margin-left: -10%; }
    .feature-card--reverse .feature-card__content { margin-left: 0; margin-right: -10%; }
    .feature-card__frame { padding: 50px 40px; }
    
    /* Menuタブレット調整 */
    .menu__inner { flex-direction: column; gap: 50px; }
    .menu__title-area { 
        flex-direction: column; 
        align-items: center; 
    }
    .menu__title-text {
        flex-direction: column; 
        align-items: center; 
        writing-mode: horizontal-tb;
    }
    .menu__title-en, .menu__title-ja {
        writing-mode: horizontal-tb !important;
        text-align: center;
        margin: 0;
    }
    
    /* MENUメニューを横並び（2カラム）に設定 */
    .menu__content-area { 
        max-width: 100%; 
        margin: 0 auto; 
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .menu__block {
        width: calc(50% - 20px);
        margin-bottom: 0;
    }
    .menu__btn-wrap {
        width: 100%;
        margin-top: 40px;
    }

    /* Interiorタブレット調整 */
    .interior__slider { height: 60vh; } /* 50vh から 60vh に変更 */
    .interior__scroll-indicator { display: none; } /* タブレット以下はインジケーターを非表示 */
    
    .interior__skip-btn { font-size: 1.2rem; }
    .interior__skip-btn[data-direction="down"] { bottom: -30px; }
    .interior__skip-btn[data-direction="up"] { top: -30px; }

    /* Infoタブレット調整 */
    .info__columns { gap: 40px; }
    .info__col { width: calc(50% - 20px); }
    .info__list dt { width: 100px; }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 100px;
    }
    .header__inner { padding: 0 20px; }
    .side-nav { display: none; }
    
    .hero__copy-en { font-size: 10vw; }
    .hero__bottom { left: 20px; right: 20px; bottom: 20px; flex-direction: column; align-items: flex-start; gap: 20px;}
    .hero__scroll-down { display: none; }

    /* Conceptスマホ調整 */
    .concept .container { padding: 0 16px; }
    .concept__inner { padding: 80px 0; flex-direction: column; justify-content: center; }
    .concept__images { display: none; }
    .concept__frame-outer { display: block; top: 40px; bottom: 40px; left: 0; right: 0; }
    .concept__frame-inner { display: block; top: 20px; bottom: 60px; left: -10px; right: 10px; }
    .concept__content-wrap {
        width: 100%; padding: 80px 15px; margin-top: 0; background: transparent;
        border: none; display: flex; flex-direction: column;
    }
    .concept__title-wrap {
        order: -1; position: relative; top: 0; right: 0; display: flex;
        flex-direction: column; align-items: center; margin-bottom: 40px; gap: 10px;
    }
    .concept__text-area { display: block; padding-right: 0; text-align: left; }
    .concept__title-en, .concept__title-ja { writing-mode: horizontal-tb !important; text-align: center; margin-top: 0; }
    .concept__title-en { font-size: 1.5rem; letter-spacing: 0.2em; }
    .concept__title-ja { font-size: 1.1rem; }
    .concept__text, .concept__text-en { width: 100%; text-shadow: none; }

    /* Featureスマホ調整 */
    .feature-card, .feature-card--reverse { flex-direction: column; margin-bottom: 80px; }
    .feature-card__img-wrap { width: 100%; max-width: none; }
    .feature-card__content { width: calc(100% + 40px); max-width: none; margin: -20px -20px 0 !important; }
    .feature-card__frame { padding: 35px 25px; background: rgba(26,24,22,0.95); }
    .feature-card__frame::after { top: 12px; bottom: 12px; left: -12px; right: -12px; }

    /* Menuスマホ調整 */
    .menu { padding: 80px 0; }
    .menu__inner { padding: 0 20px; gap: 40px; }
    
    /* MENUメニューを縦並びにリセット */
    .menu__content-area { display: block; }
    .menu__block { width: 100%; margin-bottom: 60px; }
    .menu__btn-wrap { text-align: center; margin-top: 0; }

    .menu__item { flex-direction: column; align-items: flex-start; gap: 5px; }
    .menu__leader { display: none; }
    .menu__price { align-self: flex-end; }

    /* Interiorスマホ調整 */
    .interior__inner { padding: 0 20px; }
    .interior__slider { height: 50vh; } /* 40vh から 50vh に変更 */
    .interior__frame-outer { inset: -10px; }
    .interior__frame-inner { top: -5px; bottom: -15px; left: -15px; right: -5px; }
    .interior__img-text { 
        font-size: 0.95rem; 
        left: 20px; 
        bottom: 20px; 
        right: auto; 
        padding: 10px 20px;
        transform: translateX(-10px);
    }
    
    .interior__skip-btn { font-size: 1.1rem; }
    .interior__skip-btn::after { height: 30px; }
    .interior__skip-btn[data-direction="down"] { bottom: -20px; }
    .interior__skip-btn[data-direction="down"]::after { margin-top: 10px; }
    .interior__skip-btn[data-direction="up"] { top: -20px; }
    .interior__skip-btn[data-direction="up"]::after { margin-bottom: 10px; }

    /* Infoスマホ調整 */
    .info__columns { flex-direction: column; gap: 0; margin-bottom: 40px; }
    .info__col { width: 100%; }
    .info__col:nth-child(2) { display: none; /* スマホ時は英語表記列を非表示にしてスッキリさせる */ }
    .info__row { flex-direction: column; gap: 10px; padding: 20px 0; }
    .info__list dt { width: 100%; color: var(--sub-text-color); }

    .inquiry-sec { width: 90%; padding: 40px 20px; margin: 0 auto 0; } /* スマホ用に横幅を少し縮め、margin-bottom: 0を明示 */
    .inquiry-btns { flex-direction: column; align-items: center; }
    .c-btn { width: 100%; max-width: 300px; }

    /* Page Top Button スマホ調整 */
    .page-top-btn {
        right: 20px;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }
    .page-top-btn::before {
        width: 8px;
        height: 8px;
    }
}