:root {
    /* --- Colors --- */
    --c-charcoal: #1a1a1a;
    --c-charcoal-dark: #111111;
    --c-gold: #c5a059;
    --c-white: #f2f2f2;
    --c-gray: #888888;
    --c-paper: #f4f1ea;

    /* --- Fonts --- */
    --f-jp: 'Noto Serif JP', serif;
    --f-en: 'Cormorant Garamond', serif;

    /* --- Easing --- */
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; background-color: var(--c-charcoal-dark); color: var(--c-white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: var(--f-jp); overflow-x: hidden; line-height: 1.6; }

/* Language Switcher Helper */
body.is-jp .lang-en { display: none !important; }
body.is-en .lang-jp { display: none !important; }
/* 英語モード時のレイアウト調整 */
body.is-en .philosophy__text-jp-wrapper { display: none; }
body.is-en .philosophy__inner { grid-template-columns: 1fr; }

a { color: inherit; text-decoration: none; cursor: pointer; }
button { background: none; border: none; cursor: pointer; color: inherit; font-family: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ==========================================================================
   Components: Loader & Background
   ========================================================================== */
.loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--c-charcoal-dark); z-index: 9999;
    display: flex; justify-content: center; align-items: center; flex-direction: column;
}
.loader__logo img { width: 300px; opacity: 0; }

#canvas-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -1; pointer-events: none; opacity: 0.4;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.ui-header {
    position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100; mix-blend-mode: difference; color: var(--c-white);
}
.ui-header__logo img { width: 100px; }

.ui-header__actions { display: flex; align-items: center; gap: 1.5rem; }

.ui-header__lang { font-family: var(--f-en); font-size: 0.9rem; display: none; }
.ui-header__lang button { opacity: 0.5; transition: opacity 0.3s; }
.ui-header__lang button.is-active { opacity: 1; text-decoration: underline; color: var(--c-gold); }

.ui-header__tel {
    display: flex; align-items: center; gap: 0.5rem;
    border: 1px solid var(--c-white); padding: 0.5rem 1rem; border-radius: 50px;
    font-size: 0.8rem; transition: all 0.3s; background-color: rgba(0,0,0,0.2);
}
.ui-header__tel:hover { background-color: var(--c-white); color: var(--c-charcoal-dark); }

.ui-header__menu-btn { display: flex; align-items: center; gap: 0.8rem; }
.menu-btn__lines { width: 30px; height: 14px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.menu-btn__lines span { display: block; width: 100%; height: 1px; background-color: var(--c-white); transition: transform 0.3s; }
.menu-btn__text { font-family: var(--f-en); font-size: 0.9rem; letter-spacing: 0.1em; }

/* Global Nav */
.global-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 99; pointer-events: none; visibility: hidden; }
.global-nav.is-open { pointer-events: auto; visibility: visible; }
.global-nav__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(17, 17, 17, 0.98); backdrop-filter: blur(10px); opacity: 0; transition: opacity 0.5s; }
.global-nav.is-open .global-nav__bg { opacity: 1; }
.global-nav__container { position: relative; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 1; padding: 2rem; }
.global-nav__list { text-align: center; margin-bottom: 3rem; }
.global-nav__item { margin-bottom: 1.5rem; overflow: hidden; }
.global-nav__link { display: block; transform: translateY(100%); transition: color 0.3s; }
.global-nav__link .en { display: block; font-family: var(--f-en); font-size: clamp(2rem, 5vw, 3.5rem); color: var(--c-gold); line-height: 1; }
.global-nav__link .jp { display: block; font-size: 0.8rem; margin-top: 0.5rem; color: var(--c-gray); letter-spacing: 0.1em; }
.global-nav__link:hover .en { color: var(--c-white); }
.global-nav__info { text-align: center; color: var(--c-gray); opacity: 0; }
.global-nav__tel { font-family: var(--f-en); font-size: 1.5rem; color: var(--c-white); margin-bottom: 0.5rem; }

/* ==========================================================================
   Top Page Sections
   ========================================================================== */

/* 1. Hero */
.hero { position: relative; width: 100%; height: 100svh; display: flex; justify-content: center; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.hero__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(26,26,26,0.3), rgba(26,26,26,0.8)); }
.hero__content { position: relative; z-index: 2; text-align: center; }
.hero__title-jp { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 500; letter-spacing: 0.2em; text-shadow: 0 4px 10px rgba(0,0,0,0.5); display: block; }
.hero__title-en { font-family: var(--f-en); font-size: clamp(1.2rem, 3vw, 2rem); font-style: italic; color: var(--c-gold); letter-spacing: 0.05em; display: block; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2; }
.hero__scroll-line { width: 1px; height: 60px; background-color: var(--c-white); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* 2. Philosophy */
.philosophy { position: relative; padding: 6rem 1.5rem; min-height: 100vh; background-color: var(--c-charcoal); overflow: hidden; }
.philosophy__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 4rem; }
.philosophy__text-jp-wrapper { writing-mode: vertical-rl; margin: 0 auto; height: 60vh; max-height: 500px; }
.philosophy__heading-jp { font-size: 1.8rem; line-height: 2; letter-spacing: 0.2em; margin-left: 2rem; color: var(--c-gold); }
.philosophy__desc-jp { font-size: 0.9rem; line-height: 2.2; letter-spacing: 0.1em; text-align: justify; }
.philosophy__text-en-wrapper { font-family: var(--f-en); font-size: 1.2rem; line-height: 1.6; color: var(--c-gray); margin-top: 2rem; }
.drop-cap { font-size: 3rem; color: var(--c-gold); float: left; line-height: 0.8; margin-right: 0.5rem; }
.btn-cta { display: inline-flex; align-items: center; gap: 1rem; margin-top: 3rem; font-family: var(--f-en); font-size: 1.1rem; color: var(--c-white); }
.btn-cta__line { width: 40px; height: 1px; background-color: var(--c-gold); transition: width 0.3s; }
.btn-cta:hover .btn-cta__line { width: 60px; }
.philosophy__texture { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('assets/img/washi_texture.jpg'); background-size: cover; opacity: 0.05; pointer-events: none; z-index: 1; }

/* 3. Origin */
.origin { position: relative; padding: 6rem 1.5rem; background-color: #151515; overflow: hidden; }
.origin__container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.origin__visual-layer { position: relative; height: 400px; margin-bottom: 3rem; }
.origin__img-wrapper { position: absolute; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.origin__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease-out); }
.origin__img-wrapper--baseball { top: 0; left: 0; width: 70%; height: 70%; z-index: 1; filter: sepia(0.7) contrast(1.2) brightness(0.9); }
.origin__img-wrapper--store { bottom: 0; right: 0; width: 60%; height: 60%; z-index: 2; border: 1px solid rgba(197, 160, 89, 0.3); }
.origin__heading { font-size: 2.5rem; margin-bottom: 3rem; line-height: 1.2; }
.origin__big-typo { 
    position: absolute; top: 20%; left: -5%; font-family: var(--f-en); font-size: 25vw; font-weight: 700;
    color: rgba(255, 255, 255, 0.08); -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3); z-index: 0; pointer-events: none; white-space: nowrap; 
}

/* 4. Story (Horizontal) */
.story { background-color: var(--c-paper); color: var(--c-charcoal-dark); overflow: hidden; }
.story__sticky-container { width: 100%; height: 100vh; display: flex; position: relative; }
.story__horizontal-wrapper { display: flex; flex-wrap: nowrap; height: 100%; }
.story__intro, .story__panel { flex: 0 0 100vw; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 2rem; border-right: 1px solid rgba(0,0,0,0.05); }
.story__panel { flex: 0 0 85vw; }
.story__label { font-family: var(--f-en); color: var(--c-gold); letter-spacing: 0.2em; margin-bottom: 1rem; }
.story__title { font-family: var(--f-jp); font-size: 3rem; margin-bottom: 2rem; font-weight: 700; }
.story__scroll-hint { margin-top: 3rem; font-family: var(--f-en); font-size: 0.9rem; animation: bounceRight 2s infinite; }
@keyframes bounceRight { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(10px); } }
.story__img-box { width: 100%; max-width: 400px; aspect-ratio: 4/3; margin-bottom: 2rem; box-shadow: 5px 5px 15px rgba(0,0,0,0.1); background: #fff; padding: 10px; }
.story__panel--end { flex: 0 0 100vw; background-color: var(--c-gold); color: var(--c-white); }
.story__link { display: inline-block; border: 1px solid var(--c-white); padding: 1rem 3rem; transition: background 0.3s, color 0.3s; }
.story__link:hover { background: var(--c-white); color: var(--c-gold); }

/* 5. Specialty */
.specialty { position: relative; padding: 6rem 1.5rem; background-color: var(--c-charcoal); overflow: hidden; }
.specialty__inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 4rem; }
.specialty__image-area { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.specialty__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease-out); }
.specialty__image-area:hover .specialty__img { transform: scale(1.05); }
.specialty__content-area { text-align: center; color: var(--c-white); }
.specialty__label { font-family: var(--f-en); color: var(--c-gold); letter-spacing: 0.1em; display: block; margin-bottom: 1rem; }
.specialty__heading { font-size: 2.5rem; margin-bottom: 2rem; line-height: 1.3; }
.specialty__desc { font-size: 0.95rem; line-height: 2; color: #ccc; }

/* 6. Menu */
.menu { padding-bottom: 6rem; background-color: var(--c-charcoal-dark); }
.menu__header { text-align: center; padding: 6rem 1.5rem 3rem; }
.menu__heading-simple { font-size: 2.5rem; color: var(--c-white); margin-bottom: 0.5rem; }
.menu__sub-heading { font-family: var(--f-en); color: var(--c-gold); font-size: 0.9rem; }
.menu__list-container { padding: 2rem 0 0 1.5rem; overflow: hidden; }
.menu__scroll-wrapper { overflow-x: auto; padding-bottom: 2rem; -ms-overflow-style: none; scrollbar-width: none; }
.menu__scroll-wrapper::-webkit-scrollbar { display: none; }
.menu__items { display: flex; gap: 1.5rem; width: max-content; }
.menu__item { width: 240px; position: relative; }
.menu__thumb { width: 100%; height: 320px; background-size: cover; margin-top: 1rem; filter: grayscale(100%); transition: filter 0.5s; }
.menu__item:hover .menu__thumb { filter: grayscale(0%); }
.menu__swipe-indicator { display: block; text-align: right; padding-right: 1.5rem; font-family: var(--f-en); font-size: 0.85rem; color: var(--c-gold); margin-top: 1rem; opacity: 1; animation: swipeHint 1.5s infinite ease-in-out; }
@keyframes swipeHint { 0%, 100% { transform: translateX(0); opacity: 0.6; } 50% { transform: translateX(5px); opacity: 1; } }

/* 7. Journal */
.journal { padding: 5rem 1.5rem; background-color: var(--c-charcoal); color: var(--c-white); text-align: center; position: relative; z-index: 2; }
.journal__header { margin-bottom: 3rem; }
.journal__subtitle { font-family: var(--f-en); color: var(--c-gold); letter-spacing: 0.2em; font-size: 0.75rem; display: block; margin-bottom: 1rem; opacity: 0.8; }
.journal__title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.4; font-weight: 500; }
.journal__widget-wrapper { max-width: 800px; margin: 0 auto; filter: grayscale(100%) contrast(1.1); transition: filter 0.6s var(--ease-out); }
.journal__widget-wrapper:hover { filter: grayscale(0%) contrast(1); }
.snapwidget-placeholder { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-bottom: 3rem; }
.snap-item { aspect-ratio: 1 / 1; background-color: #222; }
.journal__instagram-link a { font-family: var(--f-en); font-size: 1rem; letter-spacing: 0.05em; border: 1px solid rgba(255,255,255,0.2); padding: 0.8rem 2.5rem; border-radius: 50px; transition: all 0.3s; display: inline-block; }
.journal__instagram-link a:hover { background-color: var(--c-white); color: var(--c-charcoal-dark); border-color: var(--c-white); }

/* 8. Access */
.access { padding: 5rem 1.5rem; background-color: var(--c-white); color: var(--c-charcoal-dark); }
.access__container { max-width: 1200px; margin: 0 auto; }
.access__map-visual { position: relative; width: 100%; aspect-ratio: 16 / 9; background-color: #f4f4f4; margin-bottom: 4rem; overflow: hidden; }
.access__map-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; transition: transform 0.8s var(--ease-out); }
.access__map-link:hover .access__map-img { transform: scale(1.03); }
.access__map-overlay { position: absolute; bottom: 1.5rem; left: 1.5rem; font-family: var(--f-en); font-size: 0.8rem; color: var(--c-charcoal-dark); z-index: 2; pointer-events: none; }
.access__map-hover { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--c-charcoal-dark); color: var(--c-gold); padding: 1rem 2rem; font-family: var(--f-en); opacity: 0; transition: opacity 0.3s; }
.access__map-link:hover .access__map-hover { opacity: 1; }
.access__info { display: grid; grid-template-columns: 1fr; gap: 3rem; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 3rem; }
.access__heading { font-family: var(--f-en); color: var(--c-gold); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.8rem; }
.access__text { font-size: 1rem; line-height: 1.8; font-weight: 500; }
.access__note { font-size: 0.85rem; color: #666; display: block; margin-top: 0.5rem; font-weight: 400; }
.access__tel { font-family: var(--f-en); font-size: 2rem; line-height: 1; margin-bottom: 1.2rem; color: var(--c-charcoal-dark); letter-spacing: -0.02em; }
.access__btn { display: inline-block; background-color: var(--c-charcoal-dark); color: var(--c-white); padding: 1rem 3rem; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.1em; transition: background-color 0.3s, transform 0.3s; }
.access__btn:hover { background-color: var(--c-gold); color: var(--c-white); transform: translateY(-2px); }

/* 9. Footer */
.footer { background-color: #111; padding: 6rem 1.5rem 2rem; color: #888; font-family: var(--f-en); border-top: 1px solid #222; }
.footer__inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 4rem; }
.footer__logo { text-align: center; opacity: 0.8; transition: opacity 0.3s; }
.footer__logo:hover { opacity: 1; }
.footer__logo img { width: 140px; opacity: 0.8; }

.footer__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 3rem; }
.footer__list a { font-size: 0.95rem; color: #aaa; position: relative; transition: color 0.3s; letter-spacing: 0.05em; }
.footer__list a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background-color: var(--c-gold); transition: width 0.3s var(--ease-out); }
.footer__list a:hover { color: var(--c-white); }
.footer__list a:hover::after { width: 100%; }
.footer__bottom { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 2rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #222; }
.footer__social { display: flex; gap: 2rem; }
.footer__social a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; transition: color 0.3s; }
.footer__social a:hover { color: var(--c-gold); }
.footer__copyright { font-size: 0.75rem; opacity: 0.4; letter-spacing: 0.05em; }

/* ==========================================================================
   Sub Page Styles
   ========================================================================== */
.sub-page { background-color: var(--c-charcoal-dark); background-image: url('assets/img/washi_texture.jpg'); background-size: 500px; background-blend-mode: overlay; background-attachment: fixed; }
.page-hero { position: relative; width: 100%; height: 50vh; min-height: 400px; display: flex; justify-content: center; align-items: center; text-align: center; margin-bottom: 6rem; overflow: hidden; }
.page-hero__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--c-charcoal); z-index: -1; }
.page-hero__bg::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('assets/img/history_store.jpg'); background-size: cover; background-position: center; opacity: 0.2; filter: grayscale(100%); }
.page-hero__title .en { display: block; font-family: var(--f-en); font-size: 1.2rem; color: var(--c-gold); letter-spacing: 0.2em; margin-bottom: 1rem; text-transform: uppercase; }
.page-hero__title .jp { display: block; font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: 0.2em; }
.content-wrapper { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem 8rem; }

/* History & Legend */
.history-block { margin-bottom: 8rem; }
.history-block__inner { display: flex; flex-direction: column; gap: 3rem; align-items: center; }
.artifact-frame { position: relative; padding: 10px; background-color: #fff; box-shadow: 0 10px 40px rgba(0,0,0,0.5); transform: rotate(-1deg); transition: transform 0.5s ease; }
.artifact-frame:hover { transform: rotate(0deg) scale(1.02); }
.artifact-frame img { display: block; width: 100%; max-width: 400px; height: auto; filter: sepia(0.2); }
.artifact-frame--gold { background-color: #111; border: 1px solid var(--c-gold); padding: 15px; transform: rotate(1deg); }
.artifact-frame--gold img { filter: grayscale(100%) contrast(1.1); }
.history-block__text { max-width: 600px; }
.history-heading { font-size: 1.8rem; margin-bottom: 2rem; border-bottom: 1px solid var(--c-gold); padding-bottom: 1rem; display: inline-block; }
.history-desc { font-size: 1rem; line-height: 2; color: #ddd; text-align: justify; }
.link-banner-wrapper { margin: 6rem 0; text-align: center; }
.link-banner { display: block; position: relative; width: 100%; max-width: 800px; margin: 0 auto; height: 200px; overflow: hidden; border: 1px solid var(--c-gold); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--c-white); }
.link-banner__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.8s ease; z-index: 0; opacity: 0.4; }
.link-banner:hover .link-banner__bg { transform: scale(1.1); opacity: 0.6; }
.link-banner__content { position: relative; z-index: 1; text-align: center; padding: 2rem; }
.link-banner__sub { display: block; font-family: var(--f-en); font-size: 0.9rem; color: var(--c-gold); letter-spacing: 0.2em; margin-bottom: 0.5rem; }
.link-banner__title { font-size: 1.8rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.link-banner__arrow { font-family: var(--f-en); font-size: 0.9rem; border-bottom: 1px solid var(--c-white); padding-bottom: 3px; }

.legend-hero-img { width: 100%; max-width: 800px; margin: 0 auto 8rem; text-align: center; }
.legend-hero-img .caption { font-size: 0.9rem; color: #999; margin-top: 1rem; font-family: var(--f-jp); }
.legend-comparison { display: flex; flex-direction: column; gap: 4rem; margin-bottom: 10rem; position: relative; }
.legend-profile { flex: 1; display: flex; flex-direction: column; gap: 1.5rem; }
.legend-profile__img { width: 100%; max-width: 400px; margin: 0 auto; }
.legend-profile__img img { filter: sepia(0.3) contrast(1.1); }
.legend-profile__text { text-align: left; }
.team-label { display: inline-block; font-family: var(--f-en); font-size: 0.9rem; padding: 0.2rem 0.8rem; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em; }
.team-label.giants { border: 1px solid #f97709; color: #f97709; }
.team-label.tigers { border: 1px solid #ffe100; color: #ffe100; }
.profile-name { font-size: 1.8rem; margin-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 0.5rem; }
.profile-name .lang-en { display: block; font-family: var(--f-en); font-size: 1.1rem; opacity: 0.7; }
.legend-vs { font-family: var(--f-en); font-size: 4rem; font-weight: 700; color: var(--c-gold); text-align: center; line-height: 1; opacity: 0.5; }
.legend-section { margin-bottom: 10rem; text-align: center; }
.legend-heading { font-size: 1.8rem; margin-bottom: 3rem; color: var(--c-gold); }
.legend-img-wide { width: 100%; max-width: 800px; margin: 0 auto 3rem; }
.legend-img-wide img { filter: grayscale(100%); }
.legend-text { text-align: justify; max-width: 700px; margin: 0 auto; font-size: 1.05rem; line-height: 2; color: #ddd; }
.legend-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 900px; margin: 0 auto 3rem; }
.legend-grid img { filter: none; }

/* Philosophy */
.intro-text { text-align: center; margin-bottom: 8rem; padding: 0 1.5rem; }
.intro-heading { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 2rem; line-height: 1.6; color: var(--c-gold); }
.intro-desc { font-size: 1rem; line-height: 2; color: #ccc; max-width: 700px; margin: 0 auto; }
.philo-card { position: relative; margin-bottom: 10rem; }
.philo-card__inner { display: flex; flex-direction: column; gap: 3rem; align-items: center; }
.philo-card__num { position: absolute; top: -3rem; left: 0; font-family: var(--f-en); font-size: 10rem; font-weight: 700; color: rgba(255, 255, 255, 0.03); z-index: 0; line-height: 1; pointer-events: none; }
.philo-card__img-box { position: relative; z-index: 1; width: 100%; max-width: 500px; }
.philo-card__img-box img { width: 100%; height: auto; filter: sepia(0.1) contrast(1.1); }
.philo-card__text { position: relative; z-index: 1; max-width: 500px; }
.philo-heading { font-size: 1.8rem; margin-bottom: 1.5rem; border-left: 3px solid var(--c-gold); padding-left: 1rem; line-height: 1.2; }
.philo-heading .lang-en { display: block; font-size: 1rem; font-family: var(--f-en); color: var(--c-gold); margin-top: 0.5rem; font-weight: 400; }
.philo-desc { font-size: 1rem; line-height: 1.9; color: #ddd; text-align: justify; }
.media-info { margin-top: 8rem; padding: 4rem 2rem; background-color: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); text-align: center; }
.media-info__label { display: block; font-family: var(--f-en); color: var(--c-gold); letter-spacing: 0.2em; margin-bottom: 1rem; font-size: 0.9rem; }
.media-info__title { font-size: 1.5rem; margin-bottom: 2rem; }
.media-info__text { font-size: 1rem; line-height: 1.8; color: #ccc; }

/* Story */
.story-page { background-color: var(--c-paper); background-image: url('assets/img/washi_texture.jpg'); background-blend-mode: multiply; color: var(--c-charcoal-dark); }
.story-chapter { display: flex; flex-direction: column; align-items: center; gap: 3rem; margin-bottom: 12rem; opacity: 0; transform: translateY(30px); }
.story-chapter__img { width: 100%; max-width: 500px; }
.story-page .artifact-frame { background-color: #fff; padding: 15px; box-shadow: 5px 5px 20px rgba(0,0,0,0.1); transform: rotate(1deg); border: none; outline: none; }
.story-chapter--reverse .story-chapter__img { transform: rotate(-1.5deg); }
.story-chapter__text { max-width: 600px; text-align: center; }
.story-heading { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--c-gold); font-weight: 700; }
.story-heading.lang-en { font-family: var(--f-en); font-size: 1.5rem; }
.story-chapter__text p { font-size: 1.05rem; line-height: 2.2; text-align: justify; }
.story-chapter--end .artifact-frame { padding: 20px; background-color: #fff; border: 2px solid var(--c-gold); box-shadow: 0 10px 40px rgba(197, 160, 89, 0.3); }

/* Menu & Souvenir */
.menu-nav { display: flex; justify-content: center; gap: 2rem; margin-bottom: 6rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; }
.menu-nav__link { font-family: var(--f-en); font-size: 1.1rem; color: var(--c-gray); letter-spacing: 0.1em; position: relative; transition: color 0.3s; }
.menu-nav__link:hover, .menu-nav__link.active { color: var(--c-gold); }
.menu-section { margin-bottom: 10rem; }
.menu-section__title { text-align: center; margin-bottom: 4rem; }
.menu-section__title .jp { display: block; font-size: 2rem; margin-bottom: 0.5rem; }
.menu-section__title .en { display: block; font-family: var(--f-en); color: var(--c-gold); font-size: 1.2rem; letter-spacing: 0.1em; }
.menu-item { display: flex; flex-direction: column; gap: 3rem; margin-bottom: 6rem; align-items: center; }
.menu-item__img { width: 100%; max-width: 500px; }
.menu-item__img img { filter: sepia(0.1) contrast(1.1); }
.menu-item__content { width: 100%; max-width: 600px; }
.menu-item__name { font-size: 1.8rem; border-bottom: 1px solid var(--c-gold); padding-bottom: 0.5rem; margin-bottom: 1rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: 1rem; }
.menu-item__name .lang-en { font-family: var(--f-en); font-size: 1.2rem; color: var(--c-gold); }
.menu-item__desc { font-size: 0.95rem; color: #ccc; margin-bottom: 2rem; line-height: 1.8; }
.price-list { display: flex; flex-direction: column; gap: 0.8rem; }
.price-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed rgba(255,255,255,0.1); padding-bottom: 0.3rem; }
.price-row.highlight { color: var(--c-gold); font-weight: 700; border-bottom: 1px solid var(--c-gold); }
.price-row .price { font-family: var(--f-en); font-size: 1.1rem; }
.menu-note { font-size: 0.8rem; color: #888; margin-top: 1rem; text-align: right; }
.menu-item--special { background-color: rgba(255,255,255,0.03); padding: 3rem 1.5rem; border: 1px solid rgba(197, 160, 89, 0.3); }
.menu-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
.grid-item { text-align: center; }
.grid-item__img { margin: 0 auto 1.5rem; max-width: 300px; }
.grid-item__name { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--c-gold); }
.grid-item__name .lang-en { font-size: 0.9rem; margin-left: 0.5rem; font-family: var(--f-en); color: #ccc; }
.grid-item__desc { font-size: 0.9rem; color: #aaa; margin-bottom: 0.5rem; line-height: 1.6; }
.grid-item__price { font-family: var(--f-en); font-size: 1.1rem; }
.price-list-small { font-size: 0.9rem; font-family: var(--f-en); }
.menu-list-simple, .menu-list-table { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.simple-item { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.5rem; }
.table-row { display: flex; justify-content: space-between; padding: 1rem; background-color: rgba(255,255,255,0.03); }
.menu-note-box { text-align: center; margin-top: 3rem; font-size: 0.9rem; color: var(--c-gold); border: 1px solid var(--c-gold); padding: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.souvenir-featured { display: flex; flex-direction: column; gap: 4rem; align-items: center; margin-bottom: 8rem; }
.souvenir-featured__img { width: 100%; max-width: 600px; }
.souvenir-featured__img img { filter: sepia(0.2) contrast(1.1); }
.souvenir-featured__content { width: 100%; max-width: 600px; }
.souvenir-title { font-size: 1.8rem; border-bottom: 1px solid var(--c-gold); padding-bottom: 0.5rem; margin-bottom: 1.5rem; }
.souvenir-title .lang-en { display: block; font-family: var(--f-en); font-size: 1.1rem; color: var(--c-gold); margin-top: 0.2rem; }
.souvenir-desc { font-size: 1rem; color: #ccc; margin-bottom: 2rem; line-height: 1.8; }
.section-title-small { text-align: center; font-size: 1.5rem; margin-bottom: 4rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 4rem; }
.section-title-small .lang-en { display: block; font-family: var(--f-en); color: var(--c-gold); font-size: 1rem; margin-top: 0.5rem; }

/* Access */
.access-layout { display: flex; flex-direction: column; gap: 6rem; }
.access-heading { font-size: 1.8rem; margin-bottom: 3rem; border-left: 3px solid var(--c-gold); padding-left: 1rem; line-height: 1.2; }
.access-heading .lang-en { display: block; font-size: 1rem; font-family: var(--f-en); color: var(--c-gold); margin-top: 0.5rem; font-weight: 400; }
.access-list { width: 100%; margin-bottom: 4rem; }
.access-row { display: flex; flex-direction: column; padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.access-row dt { font-family: var(--f-en); color: var(--c-gold); font-size: 1.1rem; margin-bottom: 0.5rem; letter-spacing: 0.1em; }
.access-row dt .lang-jp { font-family: var(--f-jp); font-size: 1rem; margin-right: 1rem; }
.access-row dd { font-size: 1rem; line-height: 1.8; color: #eee; }
.access-row dd small { display: block; color: #999; margin-top: 0.3rem; }
.tel-link { font-family: var(--f-en); font-size: 1.5rem; letter-spacing: 0.05em; border-bottom: 1px solid var(--c-white); }
.access-map { width: 100%; }
.iframe-wrap { position: relative; width: 100%; padding-bottom: 75%; height: 0; overflow: hidden; filter: grayscale(100%) invert(90%) contrast(0.9); transition: filter 0.5s ease; }
.iframe-wrap:hover { filter: grayscale(0%) invert(0%); }
.iframe-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ==========================================================================
   Desktop Responsiveness (PC Optimization)
   ========================================================================== */
@media (min-width: 900px) {
    .ui-header__lang { display: block; }
    
    /* PC ロゴサイズ調整 */
    .ui-header__logo img { width: 320px !important; height: auto; }
    .footer__logo img { width: 400px !important; height: auto; opacity: 1 !important; }

    .philosophy__inner { grid-template-columns: 1fr 1fr; align-items: center; gap: 8rem; }
    .philosophy__text-jp-wrapper { margin: 0; height: auto; max-height: none; }
    
    .origin__container { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .origin__visual-layer { height: 600px; margin-bottom: 0; }
    .origin__heading { font-size: 4rem; }
    .origin__big-typo { font-size: 12rem; left: 50%; transform: translate(-50%, -50%); top: 50%; color: rgba(255, 255, 255, 0.05); -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2); }
    .origin__img-wrapper--baseball { width: auto; height: auto; max-width: 400px; aspect-ratio: 720 / 855; top: auto; bottom: 10%; left: 5%; z-index: 2; border: 10px solid #222; outline: 1px solid var(--c-gold); box-shadow: 20px 30px 60px rgba(0,0,0,0.8); }
    .origin__img-wrapper--store { top: 10%; right: 5%; bottom: auto; width: 60%; height: auto; aspect-ratio: 3/2; z-index: 1; opacity: 0.5; filter: grayscale(100%) brightness(0.8); border: none; }

    .story__panel { flex: 0 0 40vw; }
    .specialty__inner { flex-direction: row; align-items: center; gap: 6rem; }
    .specialty__image-area { flex: 1; aspect-ratio: 4/3; }
    .specialty__content-area { flex: 1; text-align: left; }
    .specialty__heading { font-size: 3.5rem; }
    .menu__items { gap: 3rem; }
    .menu__item { width: 300px; }
    .menu__swipe-indicator { display: none; }
    .snapwidget-placeholder { grid-template-columns: repeat(4, 1fr); gap: 4px; }
    .access__container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 6rem; align-items: start; }
    .access__map-visual { margin-bottom: 0; height: 100%; aspect-ratio: auto; min-height: 400px; }
    .access__info { border-top: none; padding-top: 0; grid-template-columns: 1fr; gap: 3.5rem; }
    .footer__inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
    .footer__logo { text-align: left; }
    .footer__nav { width: auto; margin-left: auto; margin-right: 0; }
    .footer__list { flex-direction: column; align-items: flex-end; gap: 1rem; }
    .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; width: 100%; margin-top: 4rem; }
    .footer__social { order: 2; }
    .footer__copyright { order: 1; }

    /* Sub Pages PC */
    .page-hero { height: 60vh; }
    .history-block__inner { flex-direction: row; gap: 6rem; align-items: flex-start; }
    .history-block--reverse .history-block__inner { flex-direction: row-reverse; }
    .history-block__img { flex: 0 0 400px; }
    .history-desc { font-size: 1.05rem; }
    
    .link-banner { height: 250px; }
    .link-banner__title { font-size: 2.2rem; }

    .legend-comparison { flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 6rem; }
    .legend-vs { position: absolute; top: 20%; left: 50%; transform: translateX(-50%); font-size: 6rem; }
    .legend-grid { grid-template-columns: 1.5fr 1fr; align-items: center; }

    .philo-card__inner { flex-direction: row; gap: 6rem; align-items: center; justify-content: center; }
    .philo-card--reverse .philo-card__inner { flex-direction: row-reverse; }
    .philo-card__num { top: -6rem; left: 10%; font-size: 15rem; }
    .philo-card--reverse .philo-card__num { left: auto; right: 10%; }
    .philo-card__img-box { flex: 1; }
    .philo-card__text { flex: 1; }

    .story-chapter { flex-direction: row; gap: 6rem; justify-content: center; }
    .story-chapter--reverse { flex-direction: row-reverse; }
    .story-chapter__img { flex: 1; max-width: 450px; }
    .story-chapter__text { flex: 1; text-align: left; }
    .story-chapter__text p { text-align: left; }

    .menu-item { flex-direction: row; gap: 5rem; align-items: flex-start; justify-content: center; }
    .menu-item--reverse { flex-direction: row-reverse; }
    .menu-item__img { flex: 1; }
    .menu-item__content { flex: 1; }
    .menu-grid { grid-template-columns: 1fr 1fr; gap: 6rem 4rem; }

    .souvenir-featured { flex-direction: row; gap: 6rem; justify-content: center; align-items: flex-start; }
    .souvenir-featured__img { flex: 1; }
    .souvenir-featured__content { flex: 1; }

    .access-layout { flex-direction: row; align-items: flex-start; gap: 4rem; }
    .access-info { flex: 1; }
    .access-map { flex: 1; position: sticky; top: 100px; }
    .access-row { flex-direction: row; align-items: baseline; }
    .access-row dt { width: 30%; margin-bottom: 0; }
    .access-row dd { width: 70%; }
}