@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@500;600;700;900&display=swap');

:root {
  --ink: #f4ecdf;
  --muted: #b9aa98;
  --night: #0d0b09;
  --night-soft: #17120f;
  --panel: #211914;
  --cream: #f3ecdf;
  --cream-2: #e7dac8;
  --coal: #241b16;
  --red: #8d2525;
  --red-bright: #b33a31;
  --gold: #c8a45a;
  --gold-soft: #e4cc91;
  --line: rgba(200, 164, 90, .24);
  --radius: 18px;
  --serif: 'Noto Serif JP', YuMincho, 'Yu Mincho', serif;
  --sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow: 0 22px 60px rgba(0, 0, 0, .26);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; background: var(--night); color: var(--ink); font-family: var(--sans); line-height: 1.8; -webkit-font-smoothing: antialiased; }
body.light-page { background: var(--cream); color: var(--coal); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 4px; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 999; background: #fff; color: #111; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-sm { padding: 76px 0; }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.section-title { margin: 0; font-family: var(--serif); font-size: clamp(30px, 4vw, 52px); line-height: 1.35; letter-spacing: .05em; }
.section-lead { max-width: 720px; margin: 20px 0 0; color: var(--muted); font-size: 15px; }
.light-page .section-lead { color: #6e6156; }
.section-heading { margin-bottom: 48px; }
.center { text-align: center; }
.center .section-lead { margin-inline: auto; }
.sample-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.18); background: rgba(13,11,9,.78); color: #fff; border-radius: 999px; padding: 7px 13px; font-size: 11px; font-weight: 700; letter-spacing: .08em; backdrop-filter: blur(10px); }
.sample-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,164,90,.15); }
.notice { border: 1px solid #d6bd85; background: #fff8e8; color: #59451e; border-radius: 12px; padding: 14px 18px; font-size: 13px; }
.notice strong { font-weight: 800; }
.demo-ribbon { background: #fff6de; color: #4c391a; border-bottom: 1px solid #e4cc91; padding: 9px 18px; text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .04em; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(200,164,90,.18); background: rgba(13,11,9,.9); backdrop-filter: blur(14px); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: min(330px, 32vw); height: auto; }
.brand-text { display: none; font-family: var(--serif); font-weight: 800; letter-spacing: .08em; }
.nav { display: flex; align-items: center; gap: 24px; font-size: 13px; font-weight: 600; }
.nav a { color: #dacfc0; transition: color .2s ease; }
.nav a:hover, .nav a[aria-current='page'] { color: var(--gold-soft); }
.nav-cta { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 9px 18px; background: var(--red); color: #fff !important; border-radius: 999px; }

/* Buttons */
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 999px; padding: 12px 24px; cursor: pointer; font-weight: 700; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red-bright); color: #fff; box-shadow: 0 12px 30px rgba(141,37,37,.32); }
.btn-gold { background: var(--gold); color: #20160f; }
.btn-outline { border-color: rgba(255,255,255,.36); color: #fff; background: rgba(13,11,9,.28); }
.light-page .btn-outline { border-color: #725d4d; color: #3c2e25; background: transparent; }
.btn-small { min-height: 44px; padding: 9px 18px; font-size: 13px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

/* Hero */
.hero { min-height: min(820px, calc(100svh - 112px)); position: relative; display: grid; place-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,7,6,.92) 0%, rgba(9,7,6,.62) 48%, rgba(9,7,6,.36) 100%), linear-gradient(0deg, var(--night) 0%, transparent 32%); z-index: 1; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 96px 0 118px; }
.hero-copy { max-width: 780px; }
.hero h1 { margin: 20px 0 24px; font-family: var(--serif); font-size: clamp(40px, 6.8vw, 78px); font-weight: 800; line-height: 1.35; letter-spacing: .04em; text-shadow: 0 8px 36px #000; }
.hero h1 span { color: var(--gold-soft); }
.hero p { max-width: 660px; margin: 0 0 32px; color: #e1d6c7; font-size: clamp(15px, 1.7vw, 18px); }
.hero-stats { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; border-top: 1px solid rgba(255,255,255,.15); background: rgba(13,11,9,.66); backdrop-filter: blur(8px); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: 20px 26px; border-right: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: var(--serif); font-size: 20px; color: #fff; }
.stat span { color: var(--muted); font-size: 12px; }

/* Benefits */
.benefits { background: var(--cream); color: var(--coal); }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-card { position: relative; min-height: 235px; padding: 28px; border: 1px solid #d9caba; border-radius: var(--radius); background: #fffaf2; overflow: hidden; }
.benefit-card::after { content: attr(data-number); position: absolute; right: 18px; top: 6px; color: rgba(141,37,37,.07); font-family: var(--serif); font-size: 76px; font-weight: 900; }
.benefit-icon { width: 44px; height: 44px; display: grid; place-items: center; background: #f0dfc7; color: var(--red); border-radius: 50%; font-family: var(--serif); font-weight: 900; }
.benefit-card h3 { margin: 24px 0 10px; font-family: var(--serif); font-size: 20px; }
.benefit-card p { margin: 0; color: #6f6258; font-size: 13px; }

/* Recruitment selector */
.jobs { background: var(--night-soft); }
.selector-shell { border: 1px solid rgba(213, 167, 82, .42); border-radius: 24px; background: linear-gradient(180deg, #261c17 0%, #191310 100%); box-shadow: 0 26px 70px rgba(0,0,0,.34), 0 0 0 6px rgba(213,167,82,.035); overflow: hidden; }
.store-tabs, .employment-tabs { display: grid; gap: 1px; background: var(--line); }
.store-tabs { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 10px; border-bottom: 1px solid rgba(213,167,82,.24); background: #30221c; }
.employment-tabs { grid-template-columns: repeat(2, 1fr); width: min(500px, 100%); border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: var(--line); }
.selector-top { padding: 28px; border-bottom: 1px solid rgba(213,167,82,.16); background: rgba(255,255,255,.025); }
.store-tab, .employment-tab { min-height: 54px; border: 0; background: #17120f; color: #c9bcad; cursor: pointer; font-weight: 700; }
.store-tab { border: 1px solid rgba(255,255,255,.055); border-radius: 12px; }
.store-tab[aria-selected='true'], .employment-tab[aria-selected='true'] { background: var(--red); color: #fff; }
.store-tab[aria-selected='true'] { border-color: rgba(240,207,144,.58); box-shadow: 0 8px 24px rgba(141,37,37,.24); }
.selector-body { padding: 38px; background: rgba(0,0,0,.12); }
.job-summary { display: grid; grid-template-columns: 1.2fr .8fr; gap: 42px; align-items: start; }
.job-main h3 { margin: 0 0 8px; font-family: var(--serif); font-size: clamp(27px, 3vw, 38px); }
.job-location { color: var(--gold-soft); font-size: 13px; }
.salary-box { margin: 28px 0; border-left: 4px solid var(--gold); padding: 8px 0 8px 22px; }
.salary-label { display: block; color: var(--muted); font-size: 12px; }
.salary { font-family: var(--serif); font-size: clamp(27px, 4vw, 42px); color: #fff; font-weight: 800; }
.salary-note { color: var(--muted); font-size: 12px; }
.job-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.job-fact { padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); }
.job-fact small { display: block; color: var(--gold); font-size: 11px; font-weight: 700; }
.job-fact span { display: block; margin-top: 4px; color: #ede4d8; font-size: 13px; }
.job-side { padding: 24px; border-radius: 16px; background: #f4eadb; color: #2b2019; }
.job-side h4 { margin: 0 0 16px; font-family: var(--serif); font-size: 19px; }
.check-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 25px; font-size: 13px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 900; }

/* Story strip */
.work-scene { background: var(--night); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px 34px 4px 4px; box-shadow: var(--shadow); }
.split-media::before { content: ''; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid var(--line); z-index: -1; }
.steps { display: grid; gap: 16px; margin-top: 28px; }
.step { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.step-num { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-size: 12px; }
.step h3 { margin: 0 0 4px; font-family: var(--serif); font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 13px; }

/* FAQ */
.faq { background: var(--cream); color: var(--coal); }
.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid #cdbda9; }
.faq-item { border-bottom: 1px solid #cdbda9; }
.faq-item summary { position: relative; cursor: pointer; list-style: none; padding: 24px 52px 24px 0; font-family: var(--serif); font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 8px; top: 18px; color: var(--red); font-size: 28px; }
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 0 44px 24px 0; color: #685b51; font-size: 14px; }

/* Forms */
.form-section { background: var(--red); }
.form-section .section-lead { color: #ead8d0; }
.form-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 50px; align-items: start; }
.form-aside { position: sticky; top: 110px; }
.mail-option { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.25); }
.mail-option p { margin: 0 0 12px; color: #ead8d0; font-size: 13px; }
.form-card { padding: 36px; background: #fffaf2; color: var(--coal); border-radius: 20px; box-shadow: var(--shadow); }
.demo-form-step[hidden] { display: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label, .field-label { font-size: 13px; font-weight: 700; }
.required { margin-left: 7px; color: var(--red); font-size: 10px; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cdbda9; border-radius: 10px; background: #fff; color: #251b15; padding: 12px 13px; min-height: 48px; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); outline: 3px solid rgba(141,37,37,.13); }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; margin: 22px 0; font-size: 12px; }
.checkbox-row input { width: 20px; height: 20px; flex: 0 0 auto; accent-color: var(--red); }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.form-error { min-height: 22px; margin: 8px 0 0; color: #9f1f1f; font-size: 12px; font-weight: 600; }
.confirm-list { margin: 0; }
.confirm-row { display: grid; grid-template-columns: 140px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid #dfd3c5; }
.confirm-row dt { font-size: 12px; font-weight: 700; color: #77675b; }
.confirm-row dd { margin: 0; white-space: pre-wrap; font-size: 14px; }
.complete-panel { text-align: center; padding: 36px 10px; }
.complete-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 50%; background: #f0dfc7; color: var(--red); font-size: 30px; font-weight: 900; }
.complete-panel h3 { font-family: var(--serif); font-size: 27px; }

/* Proposal explanation */
.proposal { background: #17120f; }
.proposal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.proposal-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: rgba(255,255,255,.025); }
.proposal-card h3 { margin: 0 0 20px; font-family: var(--serif); font-size: 22px; color: var(--gold-soft); }
.flow-list { counter-reset: flow; display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.flow-list li { counter-increment: flow; display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; color: #d7ccbf; font-size: 13px; }
.flow-list li::before { content: counter(flow); width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); }

/* Shop page */
.shop-hero { min-height: 720px; }
.shop-hero::before { background: linear-gradient(90deg, rgba(9,7,6,.86), rgba(9,7,6,.28)), linear-gradient(0deg, var(--night), transparent 40%); }
.shop-hero .hero-media { object-position: center; }
.shop-intro { background: var(--cream); color: var(--coal); }
.shop-intro .split img { aspect-ratio: 5/4; }
.menu-showcase { background: var(--night-soft); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.menu-card { border: 1px solid var(--line); background: #17120f; border-radius: var(--radius); overflow: hidden; }
.menu-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; image-rendering: auto; }
.menu-card-body { padding: 24px; }
.menu-card h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 23px; }
.menu-card p { margin: 0; color: var(--muted); font-size: 13px; }
.gallery { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 8px; margin-top: 56px; }
.gallery img { width: 100%; height: 310px; object-fit: cover; }
.instagram { background: var(--cream); color: var(--coal); }
.instagram-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: start; }
.instagram-api-note { width: fit-content; max-width: 760px; margin: -22px auto 28px; padding: 10px 16px; border: 1px solid #d9caba; border-radius: 999px; color: #6d5f54; background: rgba(255,255,255,.6); font-size: 12px; text-align: center; }
.instagram-post-card { min-width: 0; border: 1px solid #d9caba; border-radius: 16px; background: #fff; overflow: hidden; box-shadow: 0 14px 36px rgba(59,40,27,.08); }
.instagram-post-image { display: block; overflow: hidden; background: #ede7e0; }
.instagram-post-image img { display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .35s ease; }
.instagram-post-image:hover img { transform: scale(1.025); }
.instagram-post-body { padding: 18px 20px 20px; }
.instagram-post-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #8a786a; font-size: 11px; }
.instagram-post-meta strong { color: var(--red); font-size: 12px; }
.instagram-post-body p { min-height: 3em; margin: 15px 0 18px; color: #342b25; font-size: 14px; line-height: 1.8; }
.instagram-post-body > a { color: var(--red); font-size: 12px; font-weight: 800; text-decoration: none; }
.access { background: var(--night); }
.access-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 32px; }
.access-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.access-card h3 { margin: 0 0 18px; font-family: var(--serif); font-size: 24px; }
.info-list { margin: 0; }
.info-row { display: grid; grid-template-columns: 100px 1fr; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.info-row dt { color: var(--gold); font-size: 12px; font-weight: 700; }
.info-row dd { margin: 0; color: #e9dfd3; font-size: 13px; }
.map-wrap { border-radius: var(--radius); min-height: 460px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 460px; border: 0; }

/* Footer / mobile bar */
.footer { border-top: 1px solid var(--line); background: #090806; padding: 46px 0 90px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer img { width: min(320px, 60vw); }
.footer small { color: #756b61; }
.mobile-cta { display: none; position: fixed; z-index: 90; left: 12px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); gap: 8px; padding: 8px; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: rgba(13,11,9,.92); box-shadow: 0 12px 40px rgba(0,0,0,.4); backdrop-filter: blur(14px); }
.mobile-cta .btn { flex: 1; min-height: 48px; padding: 9px 12px; font-size: 12px; }

@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .job-summary, .form-layout, .access-grid { grid-template-columns: 1fr; }
  .form-aside { position: static; }
  .instagram-grid { grid-template-columns: repeat(3, minmax(260px, 1fr)); overflow-x: auto; padding: 2px 2px 16px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .instagram-post-card { scroll-snap-align: start; }
  .proposal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }
  .container { width: min(100% - 32px, 1180px); }
  .demo-ribbon { font-size: 10px; }
  .header-inner { min-height: 66px; }
  .brand img { display: none; }
  .brand-text { display: block; font-size: 17px; }
  .nav a:not(.nav-cta) { display: none; }
  .nav-cta { min-height: 42px; padding-inline: 15px; }
  .hero { min-height: 720px; }
  .hero::before { background: linear-gradient(0deg, rgba(9,7,6,.96) 4%, rgba(9,7,6,.42) 70%, rgba(9,7,6,.66) 100%); }
  .hero-content { align-self: end; padding: 110px 0 160px; }
  .hero h1 { font-size: clamp(36px, 11.6vw, 56px); line-height: 1.42; }
  .stats-grid { grid-template-columns: 1fr; padding: 12px 0; }
  .stat { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 7px 4px; border-right: 0; }
  .stat strong { font-size: 15px; }
  .stat span { text-align: right; }
  .split { grid-template-columns: 1fr; gap: 46px; }
  .split-media::before { inset: -10px 10px 10px -10px; }
  .store-tabs { grid-template-columns: 1fr; }
  .store-tab { min-height: 48px; }
  .selector-top, .selector-body { padding: 20px; }
  .job-facts { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .confirm-row { grid-template-columns: 1fr; gap: 2px; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img { height: 210px; }
  .gallery img:first-child { grid-column: 1 / -1; height: 290px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .mobile-cta { display: flex; }
}

@media (max-width: 430px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 72px 0; }
  .section-sm { padding: 58px 0; }
  .section-title { font-size: 29px; }
  .hero-content { padding-bottom: 168px; }
  .hero h1 { font-size: 34px; }
  .button-row .btn { width: 100%; }
  .card-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 195px; }
  .salary { font-size: 29px; }
  .proposal-card { padding: 22px; }
  .gallery img, .gallery img:first-child { height: 220px; }
  .info-row { grid-template-columns: 1fr; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
