/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== SAMPLE BANNER ===== */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: #d4a017;
  color: #1a1a1a;
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sample-banner strong {
  font-weight: 700;
}

.sample-banner a {
  display: inline-block;
  margin-left: 8px;
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: 500;
}

.sample-banner a:hover {
  opacity: 0.7;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #fff;
}

.logo-kana {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  letter-spacing: 0.15em;
  font-weight: 300;
  opacity: 0.7;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
}

.nav a {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
  white-space: nowrap;
}

.nav a:hover {
  color: #fff;
}

@media (max-width: 1200px) and (min-width: 1001px) {
  .nav {
    gap: 14px;
  }
  .nav a {
    font-size: 10.5px;
    letter-spacing: 1.2px;
  }
}

@media (max-width: 1000px) and (min-width: 769px) {
  .nav {
    gap: 11px;
  }
  .nav a {
    font-size: 10px;
    letter-spacing: 1px;
  }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}

/* Drawer close (×) button — hidden on desktop by default */
.nav-close {
  display: none;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; }
.hamburger span:nth-child(3) { top: 100%; }

.hamburger.active span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 50%; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.5) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: 6px;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 300;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 13px;
  letter-spacing: 3px;
  color: #fff;
  transition: all 0.3s;
}

.hero-btn:hover {
  background: #fff;
  color: #0a0a0a;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 24px;
  background: #111;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-title-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: 6px;
  margin-bottom: 4px;
}

.section-title-ja {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 4px;
  margin-bottom: 32px;
}

.about-desc {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.about-body {
  font-size: 13px;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.6);
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-img {
  height: 280px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}

.about-img-1 {
  background-image: url('../images/about-1.jpg');
}

.about-img-2 {
  background-image: url('../images/about-2.jpg');
}

/* ===== GALLERY STRIP ===== */
.gallery-strip {
  padding: 100px 0 0;
  background: #0a0a0a;
}

.gallery-heading {
  text-align: center;
  padding: 0 24px 60px;
}

.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: 8px;
  margin-bottom: 12px;
}

.gallery-subtitle {
  font-size: 13px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.gallery-lead {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.gallery-item {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}

.gallery-item:hover {
  transform: scale(1.03);
}

/* gallery images loaded via data-bg lazy loading */

/* ===== MENU ===== */
.menu {
  padding: 100px 24px;
  background: #0a0a0a;
  text-align: center;
}

.menu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: 8px;
  margin-bottom: 60px;
}

.menu-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.menu-item {
  text-align: center;
}

.menu-img {
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 16px;
  transition: opacity 0.3s;
}

.menu-item:hover .menu-img {
  opacity: 0.8;
}

/* menu images loaded via data-bg lazy loading */

.menu-name {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.menu-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== PHOTO GRID ===== */
.photo-grid-section {
  background: #0a0a0a;
  padding: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: 4px;
}

.photo-item {
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}

.photo-item:hover {
  transform: scale(1.02);
}

/* photo grid images loaded via data-bg lazy loading */

/* ===== ACCESS ===== */
.access {
  padding: 80px 24px;
  background: #111;
}

.access-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* MAP横にカレンダーを並べる2カラム（index ACCESS） */
.access-inner--with-calendar {
  max-width: 1120px;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.access-inner--with-calendar .access-info-under {
  margin-top: 20px;
}

.access-inner--with-calendar .access-name {
  margin-top: 0;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: #1a1a1a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin {
  opacity: 0.3;
}

.access-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.access-address {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.access-table {
  border-collapse: collapse;
}

.access-table td {
  padding: 6px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.access-table td:first-child {
  padding-right: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 24px;
  background: #0a0a0a;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form button {
  padding: 14px 40px;
  background: #fff;
  color: #0a0a0a;
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact-form button:hover {
  opacity: 0.8;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 24px;
  text-align: center;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.footer-sns {
  margin-bottom: 16px;
}

.footer-sns a {
  display: inline-block;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.footer-sns a:hover {
  opacity: 1;
}

.footer-sample {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.footer-sample a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

.footer-sample a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== LEGAL PAGES ===== */
.legal-table-wrap {
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
}

.legal-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-table th,
.legal-table td {
  padding: 20px 16px;
  font-size: 13px;
  line-height: 1.9;
  vertical-align: top;
  text-align: left;
}

.legal-table th {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  width: 200px;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.02);
}

.legal-table td {
  color: rgba(255, 255, 255, 0.65);
}

.legal-table td strong {
  color: #fff;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
}

.legal-intro {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

.legal-block {
  margin-bottom: 40px;
}

.legal-heading {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-block p {
  font-size: 13px;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}

.legal-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0 4px 20px;
  position: relative;
}

.legal-list li::before {
  content: '・';
  position: absolute;
  left: 0;
}

.legal-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 48px;
  text-align: right;
}

/* ===== GUIDE PAGE ===== */
.guide-section {
  margin-bottom: 80px;
}

.guide-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
}

.guide-step {
  flex: 1;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 28px 20px;
}

.guide-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: #d4a017;
  margin-bottom: 12px;
}

.guide-step-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.guide-step-text {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.5);
}

.guide-step-arrow {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 24px;
  padding-top: 40px;
}

.guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.guide-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 28px;
}

.guide-card-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.guide-card-text {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.55);
}

.guide-card-text strong {
  color: #fff;
}

/* FAQ */
.faq-list {
  margin-top: 32px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.faq-q {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.faq-a {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 24px;
}

/* ===== NAV ACTIVE ===== */
.nav-active {
  color: #fff !important;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}

/* ===== PAGE HERO (sub pages) ===== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  padding-top: 140px; /* 告知バー36px + ヘッダー約85px + 余白分。中身がヘッダーに被らないよう確保 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-short {
  height: 40vh;
  min-height: 280px;
  padding-top: 140px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.page-hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: 10px;
  margin-bottom: 8px;
}

.page-hero-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 4px;
}

/* ===== PAGE SECTION (sub pages) ===== */
.page-section {
  padding: 80px 24px;
  background: #0a0a0a;
}

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

.page-text {
  font-size: 14px;
  line-height: 2.4;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
}

/* ===== ABOUT PAGE ===== */
.about-story {
  margin-bottom: 60px;
}

.about-gallery-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 80px;
}

.about-gallery-full .about-img {
  height: 350px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.value-card {
  padding: 32px;
  background: #1a1a1a;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}

.value-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.value-text {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== MENU PAGE ===== */
.menu-list {
  max-width: 900px;
  margin: 0 auto;
}

.menu-list-category {
  margin-bottom: 60px;
}

.menu-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.menu-list-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-list-img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.menu-list-info {
  flex: 1;
}

.menu-list-name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.menu-list-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.menu-list-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
  letter-spacing: 2px;
}

/* ===== ACCESS PAGE ===== */
.access-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.access-page-map {
  min-width: 0;
}

.access-page-calendar {
  min-width: 0;
}

/* カレンダーがgrid内で横幅いっぱい使えるよう、max-width制限は外す */
.access-page-calendar .calendar-inline {
  max-width: none;
  margin: 0;
}

.access-page-calendar .calendar-inline--page {
  margin-top: 0;
}

/* 住所テーブル全幅ブロック（2カラムの下） */
.access-page-info-below {
  max-width: 1100px;
  margin: 60px auto 0;
}

.map-large {
  height: 400px;
  flex-direction: column;
}

.access-detail-table {
  width: 100%;
  border-collapse: collapse;
}

.access-detail-table th,
.access-detail-table td {
  padding: 14px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.access-detail-table th {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  width: 100px;
  letter-spacing: 2px;
  text-align: left;
}

.access-detail-table td {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== SHOP CTA (index page) ===== */
.shop-cta {
  padding: 100px 24px;
  background: #111;
  text-align: center;
}

.shop-cta-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 2;
  margin-bottom: 32px;
}

/* ===== SHOP PAGE ===== */
.shop-section {
  padding-bottom: 120px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.shop-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.shop-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.shop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d4a017;
  color: #1a1a1a;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 2px;
}

.shop-badge-new {
  background: #fff;
}

.shop-card-body {
  padding: 20px;
}

.shop-card-name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.shop-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 8px;
}

.shop-card-weight {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.shop-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 2px;
}

.shop-add-btn,
.shop-card-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}

.shop-add-btn:hover,
.shop-card-btn:hover {
  background: #fff;
  color: #0a0a0a;
}

.shop-add-btn.added {
  background: #d4a017;
  border-color: #d4a017;
  color: #1a1a1a;
}

/* ===== CART BAR ===== */
.cart-bar {
  position: fixed;
  bottom: -80px;
  left: 0;
  width: 100%;
  z-index: 150;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: bottom 0.4s ease;
}

.cart-bar.visible {
  bottom: 0;
}

.cart-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-bar-icon {
  display: flex;
  align-items: center;
}

.cart-bar-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.cart-bar-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 2px;
  flex: 1;
}

.cart-bar-btn {
  padding: 10px 28px;
  background: #fff;
  color: #0a0a0a;
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.cart-bar-btn:hover {
  opacity: 0.8;
}

/* ===== CART MODAL ===== */
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.cart-modal.open {
  pointer-events: auto;
  opacity: 1;
}

.cart-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.cart-modal-content {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 420px;
  max-width: 90vw;
  background: #141414;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-modal.open .cart-modal-content {
  transform: translateX(0);
}

.cart-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-modal-header h3 {
  font-size: 16px;
  letter-spacing: 2px;
}

.cart-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.cart-close:hover {
  opacity: 1;
}

.cart-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  padding: 40px 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-item-name {
  font-size: 14px;
  margin-bottom: 4px;
}

.cart-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  background: #222;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.cart-qty {
  font-size: 14px;
  min-width: 20px;
  text-align: center;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  cursor: pointer;
  margin-left: 8px;
}

.cart-remove-btn:hover {
  color: #e74c3c;
}

.cart-modal-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.cart-summary-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: 2px;
}

.cart-shipping {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.cart-checkout-btn {
  width: 100%;
  padding: 14px;
  background: #d4a017;
  color: #1a1a1a;
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.cart-checkout-btn:hover {
  opacity: 0.85;
}

/* ===== LAZY BG LOADING ===== */
[data-bg] {
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease;
}

[data-bg]:not(.bg-loaded) {
  opacity: 0.6;
}

[data-bg].bg-loaded {
  opacity: 1;
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE — TABLET (768px) ===== */
@media (max-width: 768px) {

  /* --- Banner & Header --- */
  .sample-banner {
    font-size: 10px;
    padding: 6px 12px;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sample-banner a {
    display: inline;
    margin-left: 4px;
  }

  .header {
    top: 28px;
  }

  .header-inner {
    padding: 12px 16px;
  }

  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 96px 32px 40px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.2s ease-in;
    z-index: 999;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  }

  .nav.open {
    transform: translateX(0);
    transition: transform 0.3s ease-out;
  }

  .nav a {
    font-size: 14px;
    letter-spacing: 3px;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  /* Drawer overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 998;
    pointer-events: none;
    transition: background 0.3s ease;
  }

  .nav-overlay.active {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
  }

  .hamburger {
    display: block;
  }

  /* Drawer close (×) button */
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    padding: 0;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.85);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }

  .nav-close span {
    display: block;
    margin-top: -2px;
  }

  .nav-close:hover,
  .nav-close:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
  }

  /* --- Hero --- */
  .hero {
    height: 90vh;
    min-height: 500px;
  }

  .hero-title {
    letter-spacing: 4px;
  }

  .hero-sub {
    letter-spacing: 2px;
    margin-bottom: 32px;
  }

  .hero-btn {
    padding: 14px 36px;
    font-size: 12px;
  }

  /* --- About (TOP) --- */
  .about {
    padding: 60px 16px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-images {
    order: -1;
  }

  .about-img {
    height: 200px;
  }

  .section-title-en {
    font-size: 28px;
  }

  /* --- Gallery --- */
  .gallery-strip {
    padding: 60px 0 0;
  }

  .gallery-heading {
    padding: 0 16px 36px;
  }

  .gallery-title {
    font-size: 28px;
    letter-spacing: 6px;
    margin-bottom: 10px;
  }

  .gallery-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }

  .gallery-lead {
    font-size: 12px;
    line-height: 1.9;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .gallery-item {
    height: 140px;
  }

  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    display: none;
  }

  /* --- Menu (TOP) --- */
  .menu {
    padding: 60px 16px;
  }

  .menu-title {
    margin-bottom: 40px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .menu-img {
    border-radius: 6px;
  }

  /* --- Photo Grid --- */
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 160px 160px;
    gap: 2px;
  }

  .photo-item:nth-child(5),
  .photo-item:nth-child(6) {
    display: none;
  }

  /* --- Access (TOP) --- */
  .access {
    padding: 60px 16px;
  }

  .access-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .access-inner--with-calendar {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .access-inner iframe {
    height: 220px;
  }

  .access-inner--with-calendar iframe {
    height: 240px;
  }

  /* --- Shop CTA --- */
  .shop-cta {
    padding: 60px 16px;
  }

  .shop-cta-text br {
    display: none;
  }

  /* --- Page Hero (sub pages) --- */
  .page-hero {
    height: 35vh;
    min-height: 240px;
    padding-top: 110px; /* SP: 告知バー28px + ヘッダー約65px + 余白分 */
  }

  .page-hero-short {
    height: 28vh;
    min-height: 180px;
    padding-top: 110px;
  }

  .page-hero-title {
    letter-spacing: 6px;
  }

  /* --- Page Section --- */
  .page-section {
    padding: 48px 16px;
  }

  /* --- About Page --- */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-card {
    padding: 24px;
  }

  .about-gallery-full {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 48px;
  }

  .about-gallery-full .about-img {
    height: 220px;
  }

  /* --- Menu Page --- */
  .menu-list-item {
    gap: 16px;
    padding: 16px 0;
  }

  .menu-list-img {
    width: 64px;
    height: 64px;
  }

  .menu-list-price {
    font-size: 16px;
  }

  /* --- Access Page --- */
  .access-page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .access-page-grid iframe {
    height: 250px;
  }

  /* SP時は住所テーブルブロックの上余白を詰める */
  .access-page-info-below {
    margin-top: 32px;
  }

  /* SP時はカレンダーのmax-width（360px中央寄せ）を復活させる */
  .access-page-calendar .calendar-inline {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  /* --- Guide Page --- */
  .guide-section {
    margin-bottom: 48px;
  }

  .guide-steps {
    flex-direction: column;
    gap: 12px;
  }

  .guide-step-arrow {
    display: none;
  }

  .guide-step {
    padding: 20px 16px;
  }

  .guide-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guide-card {
    padding: 20px;
  }

  .faq-a {
    padding-left: 0;
  }

  /* --- Legal Pages --- */
  .legal-table th {
    width: 100px;
    font-size: 12px;
  }

  .legal-table td {
    font-size: 12px;
  }

  .legal-table th,
  .legal-table td {
    padding: 14px 10px;
  }

  /* --- Shop Page --- */
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .shop-card-img {
    height: 160px;
  }

  .shop-card-body {
    padding: 14px;
  }

  .shop-card-name {
    font-size: 13px;
  }

  .shop-card-desc {
    font-size: 11px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .shop-card-price {
    font-size: 18px;
  }

  .shop-add-btn {
    padding: 8px 12px;
    font-size: 11px;
  }

  /* --- Cart Bar --- */
  .cart-bar-inner {
    padding: 10px 16px;
    gap: 8px;
  }

  .cart-bar-total {
    flex: 1;
    font-size: 18px;
  }

  .cart-bar-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  /* --- Cart Modal --- */
  .cart-modal-content {
    width: 100%;
    max-width: 100vw;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cart-item-controls {
    width: 100%;
    justify-content: flex-start;
  }

  /* --- Footer --- */
  .footer {
    padding: 40px 16px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-links a {
    font-size: 10px;
  }
}

/* ===== RESPONSIVE — MOBILE (480px) ===== */
@media (max-width: 480px) {

  /* --- Banner --- */
  .sample-banner {
    font-size: 9px;
    padding: 5px 10px;
  }

  .header {
    top: 25px;
  }

  .nav {
    padding-top: 88px;
  }

  /* --- Page Hero (sub pages) --- */
  .page-hero {
    padding-top: 100px; /* SP小: 告知バー25px + ヘッダー約60px + 余白分 */
  }

  .page-hero-short {
    padding-top: 100px;
  }

  /* --- Hero --- */
  .hero {
    height: 85vh;
    min-height: 450px;
  }

  .hero-title {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .hero-sub {
    font-size: 12px;
    letter-spacing: 2px;
  }

  /* --- Sections --- */
  .about, .menu, .access, .shop-cta {
    padding: 48px 14px;
  }

  .page-section {
    padding: 36px 14px;
  }

  /* --- About (TOP) --- */
  .about-images {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-img {
    height: 180px;
  }

  .about-desc, .about-body {
    font-size: 12px;
  }

  /* --- Menu (TOP) — keep 2 col --- */
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .menu-name {
    font-size: 11px;
  }

  .menu-price {
    font-size: 13px;
  }

  /* --- Gallery --- */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item {
    height: 100px;
  }

  /* --- Photo Grid --- */
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 130px 130px;
  }

  /* --- Access (TOP) --- */
  .access-inner iframe {
    height: 180px;
  }

  .access-name {
    font-size: 20px;
  }

  /* --- Menu Page items --- */
  .menu-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .menu-list-img {
    width: 100%;
    height: 160px;
    border-radius: 6px;
  }

  .menu-list-price {
    align-self: flex-end;
  }

  .menu-cat-title {
    font-size: 16px;
  }

  /* --- About Page --- */
  .about-gallery-full .about-img {
    height: 180px;
  }

  .value-card {
    padding: 20px 16px;
  }

  .value-title {
    font-size: 14px;
  }

  .value-text {
    font-size: 12px;
  }

  .page-text {
    font-size: 13px;
    line-height: 2.2;
  }

  /* --- Access Page --- */
  .access-page-grid iframe {
    height: 200px;
  }

  .access-detail-table th {
    width: 80px;
    font-size: 11px;
  }

  .access-detail-table td {
    font-size: 12px;
  }

  /* --- Shop --- */
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .shop-card-img {
    height: 130px;
  }

  .shop-card-body {
    padding: 12px;
  }

  .shop-card-name {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .shop-card-desc {
    display: none;
  }

  .shop-card-weight {
    margin-bottom: 10px;
  }

  .shop-card-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .shop-card-price {
    font-size: 18px;
  }

  .shop-add-btn {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 11px;
  }

  /* --- Cart Bar mobile --- */
  .cart-bar-inner {
    flex-wrap: nowrap;
    gap: 6px;
    padding: 8px 12px;
  }

  .cart-bar-icon {
    display: none;
  }

  .cart-bar-text {
    font-size: 11px;
  }

  .cart-bar-total {
    font-size: 16px;
    flex: 1;
  }

  .cart-bar-btn {
    padding: 8px 16px;
    font-size: 11px;
    white-space: nowrap;
  }

  /* --- Legal --- */
  .legal-table {
    display: block;
  }

  .legal-table tbody {
    display: block;
  }

  .legal-table tr {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
  }

  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
    padding: 4px 0;
  }

  .legal-table th {
    font-size: 13px;
    color: #d4a017;
    margin-bottom: 4px;
    background: none;
  }

  .legal-heading {
    font-size: 14px;
  }

  /* --- Guide --- */
  .guide-step {
    padding: 16px;
  }

  .guide-step-num {
    font-size: 24px;
  }

  .guide-step-title {
    font-size: 13px;
  }

  .faq-q {
    font-size: 13px;
  }

  .faq-a {
    font-size: 12px;
  }

  /* --- Footer --- */
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) {
  .shop-card:hover {
    transform: none;
  }

  .gallery-item:hover {
    transform: none;
  }

  .photo-item:hover {
    transform: none;
  }

  .shop-add-btn {
    -webkit-tap-highlight-color: transparent;
  }

  .shop-add-btn:active {
    background: #fff;
    color: #0a0a0a;
  }

  .cart-qty-btn:active {
    background: rgba(255, 255, 255, 0.2);
  }

  .hero-btn:active {
    background: #fff;
    color: #0a0a0a;
  }
}

/* ===== STICKY BOTTOM BAR (MOBILE ONLY) ===== */
.sticky-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.4);
  animation: stickyBarFadeIn 300ms ease-out both;
}

@keyframes stickyBarFadeIn {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sticky-bottom-bar-inner {
  display: flex;
  width: 100%;
  height: 56px;
}

.sticky-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 200ms ease;
  border: none;
  cursor: pointer;
}

.sticky-bar-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Button 1: Phone - deep brown */
.sticky-bar-btn--phone {
  background: #6B3A2A;
  color: #fff;
}

.sticky-bar-btn--phone:active {
  background: #5a2e20;
}

/* Button 2: Shop - gold accent (main CTA) */
.sticky-bar-btn--shop {
  background: #C4A265;
  color: #1a1a1a;
}

.sticky-bar-btn--shop:active {
  background: #b3924f;
}

/* Button 3: Contact - medium gray */
.sticky-bar-btn--contact {
  background: #4a4a4a;
  color: #fff;
}

.sticky-bar-btn--contact:active {
  background: #3a3a3a;
}

@media (max-width: 768px) {
  .sticky-bottom-bar {
    display: block;
  }

  body {
    padding-bottom: 56px;
  }
}

@media (max-width: 480px) {
  .sticky-bar-btn {
    font-size: 9px;
  }
}

/* ==========================================================================
   EXTENSIONS (added 2026-04-18): NEWS / Instagram / STAFF / CONTACT / FAQ
   ========================================================================== */

/* ===== NEWS (TOP preview) ===== */
.news-preview {
  padding: 100px 24px;
  background: #111;
}

/* 連続セクション分離（NEWS→BLOG）: BLOGはトーンを変える */
.blog-preview {
  padding-top: 80px;
  background: #0e0e0e;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.news-preview-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.news-preview-head {
  text-align: center;
  margin-bottom: 56px;
}

.news-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* 1件だけ中央寄せ（NEWS プレビュー） */
.news-preview-grid--single {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

/* 2件並列（BLOG プレビュー） */
.news-preview-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 680px) {
  .news-preview-grid--two {
    grid-template-columns: 1fr;
  }
}

.news-card {
  display: block;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.news-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.news-card-body {
  padding: 20px;
}

.news-card-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.news-card-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 2px;
}

.news-card-cat {
  padding: 1px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  font-size: 10px;
}

.news-card-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 8px;
}

.news-card-excerpt {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
}

.news-preview-more {
  text-align: center;
}

/* ===== NEWS LIST PAGE ===== */
.news-list {
  max-width: 900px;
  margin: 0 auto;
}

.news-list-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: opacity 0.3s;
}

.news-list-item:hover {
  opacity: 0.85;
}

.news-list-img {
  height: 140px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.news-list-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.news-list-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

.news-list-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.news-list-excerpt {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== ARTICLE PAGE ===== */
.breadcrumb {
  max-width: 900px;
  margin: 0 auto 24px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb-sep {
  margin: 0 8px;
  opacity: 0.4;
}

.article {
  max-width: 780px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

.article-cat {
  padding: 2px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  font-size: 10px;
}

.article-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 2px;
}

.article-title {
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.article-hero {
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 40px;
}

.article-body {
  font-size: 15px;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.8);
}

.article-body h2 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 48px 0 20px;
  padding-left: 12px;
  border-left: 2px solid #d4a017;
}

.article-body h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 32px 0 12px;
  color: rgba(255, 255, 255, 0.95);
}

.article-body p {
  margin-bottom: 20px;
}

.article-body ul, .article-body ol {
  margin: 0 0 24px 24px;
  padding: 0;
}

.article-body li {
  margin-bottom: 8px;
  line-height: 2;
}

.article-body strong {
  color: #fff;
  font-weight: 500;
}

.article-body blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  background: #141414;
  border-left: 3px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.article-nav {
  max-width: 780px;
  margin: 64px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.article-nav a {
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.article-nav a:hover {
  background: #fff;
  color: #0a0a0a;
}

/* ===== INSTAGRAM SECTION ===== */
.insta-section {
  padding: 100px 24px;
  background: #0a0a0a;
}

.insta-head {
  text-align: center;
  margin-bottom: 48px;
}

.insta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: 6px;
  margin-bottom: 8px;
}

.insta-sub {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
}

.insta-handle {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.insta-handle:hover {
  color: #fff;
}

.insta-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  opacity: 0;
  transition: opacity 0.3s;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.insta-stat svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* ===== STAFF PAGE ===== */
.staff-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.staff-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

.staff-card:nth-child(even) {
  grid-template-columns: 1fr 320px;
}

.staff-card:nth-child(even) .staff-photo-wrap {
  order: 2;
}

.staff-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  border-radius: 4px;
}

.staff-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: #d4a017;
  margin-bottom: 10px;
}

.staff-name {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.staff-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.staff-credit {
  display: inline-block;
  margin-bottom: 20px;
  padding: 4px 12px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: #d4a017;
  font-size: 11px;
  letter-spacing: 1.5px;
  border-radius: 2px;
}

.staff-bio {
  font-size: 14px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.staff-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.staff-detail-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
}

.staff-detail-list li strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 12px;
}

/* ===== ABOUT PAGE → STAFF CTA ===== */
.about-staff-cta {
  margin-top: 48px;
  text-align: center;
}

.about-staff-cta a {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 3px;
  transition: all 0.3s;
}

.about-staff-cta a:hover {
  background: #fff;
  color: #0a0a0a;
}

/* ===== CONTACT FORM ===== */
.contact-page {
  max-width: 720px;
  margin: 0 auto;
}

.contact-lead {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  text-align: center;
}

.contact-form-v2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.form-required {
  font-size: 10px;
  padding: 2px 8px;
  background: #d4a017;
  color: #1a1a1a;
  border-radius: 2px;
  letter-spacing: 1px;
  font-weight: 700;
}

.form-optional {
  font-size: 10px;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  letter-spacing: 1px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(212, 160, 23, 0.8);
}

.form-textarea {
  min-height: 180px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 44px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #d4a017;
  flex-shrink: 0;
}

.form-checkbox-label {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.form-checkbox-label a {
  color: #d4a017;
  text-decoration: underline;
}

.form-submit {
  padding: 16px 48px;
  background: #fff;
  color: #0a0a0a;
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  cursor: pointer;
  transition: opacity 0.3s;
  align-self: center;
  min-width: 240px;
}

.form-submit:hover {
  opacity: 0.85;
}

.form-error-list {
  background: rgba(231, 76, 60, 0.12);
  border: 1px solid rgba(231, 76, 60, 0.4);
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 24px;
  list-style: none;
}

.form-error-list li {
  color: #e74c3c;
  font-size: 13px;
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}

.form-error-list li::before {
  content: '!';
  position: absolute;
  left: 0;
  font-weight: 700;
}

.contact-info-box {
  margin-top: 64px;
  padding: 32px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  text-align: center;
}

.contact-info-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.contact-info-box p {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info-tel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: #fff;
  margin-top: 8px;
  display: inline-block;
}

/* thanks page */
.thanks-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 0;
}

.thanks-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: #d4a017;
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.thanks-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.thanks-text {
  font-size: 14px;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

.thanks-back {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 13px;
  letter-spacing: 3px;
  transition: all 0.3s;
}

.thanks-back:hover {
  background: #fff;
  color: #0a0a0a;
}

/* ===== FAQ PAGE ===== */
.faq-page {
  max-width: 860px;
  margin: 0 auto;
}

.faq-lead {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  text-align: center;
}

.faq-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}

.faq-cat-nav a {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.faq-cat-nav a:hover {
  border-color: #d4a017;
  color: #d4a017;
}

.faq-category {
  margin-bottom: 56px;
}

.faq-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 4px;
  color: #d4a017;
  margin-bottom: 6px;
}

.faq-cat-sub {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-acc-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-acc-q {
  width: 100%;
  padding: 20px 8px;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.5px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  transition: color 0.3s;
}

.faq-acc-q:hover {
  color: #d4a017;
}

.faq-acc-q::before {
  content: 'Q.';
  font-family: 'Cormorant Garamond', serif;
  color: #d4a017;
  font-size: 18px;
  margin-right: 12px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.faq-acc-q-text {
  flex: 1;
}

.faq-acc-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  margin-top: 4px;
  transition: transform 0.3s;
}

.faq-acc-icon::before,
.faq-acc-icon::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-acc-icon::before {
  width: 14px;
  height: 1px;
}

.faq-acc-icon::after {
  width: 1px;
  height: 14px;
  transition: transform 0.3s;
}

.faq-acc-item.open .faq-acc-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-acc-item.open .faq-acc-a {
  max-height: 800px;
}

.faq-acc-a-inner {
  padding: 0 8px 24px 44px;
  font-size: 13px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

.faq-acc-a-inner::before {
  content: 'A.';
  position: absolute;
  left: 8px;
  top: 0;
  font-family: 'Cormorant Garamond', serif;
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  letter-spacing: 1px;
}

.faq-acc-a-inner a {
  color: #d4a017;
  text-decoration: underline;
}

/* ===== RESPONSIVE EXTENSIONS ===== */
@media (max-width: 768px) {
  /* News */
  .news-preview {
    padding: 60px 16px;
  }
  .news-preview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news-card-img {
    height: 200px;
  }
  .news-list-item {
    grid-template-columns: 100px 1fr;
    gap: 14px;
    padding: 20px 0;
  }
  .news-list-img {
    height: 90px;
  }
  .news-list-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .news-list-excerpt {
    font-size: 12px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Article */
  .article-hero {
    height: 220px;
    margin-bottom: 28px;
  }
  .article-body {
    font-size: 14px;
    line-height: 2.1;
  }
  .article-body h2 {
    font-size: 17px;
    margin: 36px 0 16px;
  }
  .article-body h3 {
    font-size: 15px;
  }
  .article-nav {
    flex-direction: column;
    gap: 10px;
  }
  .article-nav a {
    text-align: center;
  }
  .breadcrumb {
    font-size: 10px;
  }

  /* Instagram */
  .insta-section {
    padding: 60px 16px;
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  /* show only 6 on mobile (2 rows of 3) */

  /* Staff */
  .staff-grid {
    gap: 48px;
  }
  .staff-card,
  .staff-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .staff-card:nth-child(even) .staff-photo-wrap {
    order: 0;
  }
  .staff-photo {
    max-width: 280px;
    margin: 0 auto;
  }
  .staff-name {
    font-size: 20px;
  }
  .staff-bio {
    font-size: 13px;
  }
  .staff-detail-list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }

  /* Contact */
  .contact-lead {
    font-size: 13px;
    margin-bottom: 28px;
  }
  .contact-info-box {
    margin-top: 40px;
    padding: 24px 16px;
  }
  .contact-info-tel {
    font-size: 22px;
  }

  /* FAQ */
  .faq-acc-q {
    font-size: 13px;
    padding: 16px 4px;
  }
  .faq-acc-q::before {
    font-size: 16px;
    margin-right: 8px;
  }
  .faq-acc-a-inner {
    padding: 0 4px 20px 32px;
    font-size: 12px;
  }
  .faq-cat-nav a {
    font-size: 11px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .news-list-item {
    grid-template-columns: 1fr;
  }
  .news-list-img {
    height: 160px;
  }
  .article-hero {
    height: 180px;
  }
  .article-title {
    font-size: 20px;
  }
  .staff-photo {
    max-width: 220px;
  }
  .form-input,
  .form-textarea,
  .form-select {
    padding: 12px 14px;
  }
  .form-submit {
    width: 100%;
    min-width: auto;
  }
  .insta-grid {
    gap: 2px;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================================= */
/* ===== 追加機能スタイル (2026-04-18 EXPANSION) ==========  */
/* ========================================================= */

/* === ブログカテゴリフィルタ === */
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  padding: 0 16px;
}

.blog-filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}

.blog-filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.blog-filter-btn.active {
  background: rgba(212, 160, 23, 0.1);
  border-color: #d4a017;
  color: #d4a017;
}

/* === 商品詳細ページ === */
.product-detail {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.product-detail-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: #111;
  border: 1px solid rgba(255,255,255,0.06);
}

.product-detail-body h1.product-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.product-origin-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(212, 160, 23, 0.85);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 20px 0;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
}

.product-weight {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}

.product-spec-table th,
.product-spec-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  line-height: 1.7;
}

.product-spec-table th {
  width: 90px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.product-flavor {
  margin-bottom: 28px;
}

.product-flavor-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 3px;
  color: #d4a017;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.product-flavor-list {
  list-style: none;
  padding: 0;
}

.product-flavor-list li {
  padding: 8px 0 8px 24px;
  font-size: 14px;
  line-height: 1.7;
  border-bottom: 1px dotted rgba(255,255,255,0.08);
  position: relative;
}

.product-flavor-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.5);
}

.product-brew {
  background: rgba(255,255,255,0.03);
  padding: 20px 22px;
  margin-bottom: 28px;
  border-left: 2px solid rgba(212,160,23,0.6);
}

.product-brew-title {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(212, 160, 23, 0.9);
  margin-bottom: 10px;
}

.product-brew-text {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
}

.product-add-btn {
  display: block;
  width: 100%;
  background: #d4a017;
  color: #0a0a0a;
  border: none;
  padding: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-add-btn:hover {
  background: #e6b02b;
}

.product-back {
  display: inline-block;
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
}

.product-back:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* === 営業カレンダー === */
.calendar-section {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* index.html トップ用: 当月1ヶ月カレンダー */
.calendar-top-section {
  background: #0a0a0a;
  padding: 96px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.calendar-top-inner {
  max-width: 560px;
  margin: 0 auto;
}

.calendar-wrap--single {
  grid-template-columns: 1fr !important;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .calendar-top-section {
    padding: 64px 16px;
  }
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin: 24px 0 36px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

.calendar-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.calendar-legend-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
}

.calendar-legend-dot.closed {
  background: rgba(180, 90, 90, 0.35);
  border-color: rgba(180, 90, 90, 0.5);
}

.calendar-legend-dot.holiday {
  background: rgba(212, 160, 23, 0.3);
  border-color: rgba(212, 160, 23, 0.5);
}

.calendar-legend-dot.today {
  background: #d4a017;
  border-color: #d4a017;
}

.calendar-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 100%;
}

@media (max-width: 768px) {
  .calendar-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.calendar-month {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 20px;
}

.calendar-month-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.9);
}

.calendar-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  table-layout: fixed;
}

.calendar-table colgroup col {
  width: calc(100% / 7);
}

.calendar-table th {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  padding: 4px 0 10px;
  text-align: center;
}

.calendar-table th.sun { color: rgba(200, 120, 120, 0.7); }
.calendar-table th.sat { color: rgba(120, 160, 200, 0.7); }

.calendar-day {
  text-align: center;
  font-size: 13px;
  padding: 8px 0;
  background: rgba(255,255,255,0.025);
  color: rgba(255,255,255,0.85);
  position: relative;
  min-height: 36px;
  line-height: 1.3;
}

.calendar-day.empty {
  background: transparent;
}

.calendar-day.closed {
  background: rgba(180, 90, 90, 0.18);
  color: rgba(255,255,255,0.5);
}

.calendar-day.holiday {
  background: rgba(212, 160, 23, 0.15);
  color: rgba(255,255,255,0.7);
}

.calendar-day.today {
  background: rgba(212, 160, 23, 0.8);
  color: #0a0a0a;
  font-weight: 600;
}

.calendar-day-badge {
  display: block;
  font-size: 8px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.calendar-day.today .calendar-day-badge {
  color: rgba(10,10,10,0.65);
}

.calendar-hours {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  letter-spacing: 1px;
}

.calendar-hours strong {
  color: #fff;
  font-weight: 500;
  letter-spacing: 2px;
}

/* === 焙煎士紹介 === */
.roaster-profile {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.roaster-profile-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
  margin: 32px auto 0;
}

@media (max-width: 768px) {
  .roaster-profile-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.roaster-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  filter: brightness(0.88) contrast(1.05) saturate(0.85);
}

.roaster-name-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 4px;
}

.roaster-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(212, 160, 23, 0.85);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.roaster-bio {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
}

.roaster-philosophy {
  background: rgba(255,255,255,0.03);
  border-left: 2px solid rgba(212,160,23,0.6);
  padding: 18px 22px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.85);
  font-style: normal;
}

.roaster-awards {
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.roaster-awards li {
  padding: 12px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
}

.roaster-awards li .year {
  font-family: 'Cormorant Garamond', serif;
  color: rgba(212, 160, 23, 0.8);
  letter-spacing: 2px;
}

/* === バーチャルツアー === */
.tour-hero {
  position: relative;
  height: 52vh;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 100%),
    url('../assets/tour/scene1_entrance.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 48px;
}

.tour-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 7vw, 64px);
  letter-spacing: 10px;
  font-weight: 500;
  margin-bottom: 10px;
}

.tour-hero-sub {
  font-size: clamp(12px, 1.5vw, 14px);
  letter-spacing: 4px;
  color: rgba(255,255,255,0.8);
}

.tour-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  text-align: center;
}

.tour-intro p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.78);
}

.tour-viewer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 32px;
}

#tour-viewer {
  width: 100%;
  height: 70vh;
  min-height: 420px;
  max-height: 720px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  filter: brightness(0.88) contrast(1.08);
}

.tour-scene-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 24px 0 0;
}

.tour-scene-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.3s;
}

.tour-scene-btn:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.tour-scene-btn.active {
  background: rgba(212,160,23,0.12);
  border-color: #d4a017;
  color: #d4a017;
}

.tour-note {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 0 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.9;
}

/* TOPページ用TOUR誘導セクション */
.tour-cta {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
  background: #0a0a0a;
}

.tour-cta-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/tour/scene2_counter.jpg') center/cover no-repeat;
  filter: brightness(0.45) contrast(1.1) saturate(0.85);
  transform: scale(1.05);
}

.tour-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.tour-cta-badge {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 6px;
  color: rgba(212,160,23,0.9);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.tour-cta-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.tour-cta-text {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

/* === shop-card をリンク化したときのホバー === */
a.shop-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s;
}

a.shop-card:hover {
  transform: translateY(-3px);
}

/* === スマホ対応 追記 === */
@media (max-width: 768px) {
  #tour-viewer {
    height: 55vh;
    min-height: 320px;
  }
  .calendar-day {
    font-size: 11px;
    padding: 6px 0;
    min-height: 30px;
  }
  .calendar-day-badge {
    font-size: 7px;
  }
  .calendar-month {
    padding: 10px 0;
    background: rgba(255,255,255,0.02);
    border: none;
  }
  .calendar-table {
    border-spacing: 1px;
  }
  .calendar-table th {
    font-size: 9px;
    letter-spacing: 0;
    padding: 4px 0 8px;
  }
  .calendar-month-title {
    font-size: 15px;
  }
  .calendar-section {
    margin-left: -12px;
    margin-right: -12px;
  }
  .calendar-legend {
    padding: 0 12px;
    gap: 10px;
    font-size: 11px;
  }
  .calendar-hours {
    padding: 0 12px;
  }
  .tour-hero {
    height: 40vh;
    min-height: 260px;
  }
  .blog-filter {
    gap: 6px;
  }
  .blog-filter-btn {
    font-size: 11px;
    padding: 8px 14px;
    letter-spacing: 1px;
  }
  .product-spec-table th {
    width: 72px;
    font-size: 12px;
  }
  .product-spec-table td {
    font-size: 12.5px;
  }
}

/* === ミニカレンダー（フッター直前・控えめ配置） === */
.calendar-mini-section {
  background: #0a0a0a;
  padding: 48px 24px 24px;
}

.calendar-mini {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

.calendar-mini-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(212, 160, 23, 0.75);
  margin: 0 0 4px;
  text-transform: uppercase;
}

.calendar-mini-title {
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 16px;
  font-weight: 400;
}

.calendar-mini-wrap {
  width: 100%;
}

.calendar-mini-month-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 8px;
}

.calendar-mini-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  table-layout: fixed;
}

.calendar-mini-table colgroup col {
  width: calc(100% / 7);
}

.calendar-mini-table th {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  padding: 2px 0 6px;
  text-align: center;
}

.calendar-mini-table th.sun { color: rgba(200, 120, 120, 0.6); }
.calendar-mini-table th.sat { color: rgba(120, 160, 200, 0.6); }

.calendar-mini-day {
  text-align: center;
  font-size: 11px;
  padding: 5px 0;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.8);
  min-height: 26px;
  line-height: 1.2;
}

.calendar-mini-day.empty {
  background: transparent;
}

.calendar-mini-day.closed {
  background: rgba(180, 90, 90, 0.2);
  color: rgba(255,255,255,0.4);
}

.calendar-mini-day.holiday {
  background: rgba(212, 160, 23, 0.18);
  color: rgba(255,255,255,0.6);
}

.calendar-mini-day.today {
  background: #d4a017;
  color: #0a0a0a;
  font-weight: 600;
}

.calendar-mini-legend {
  margin: 14px 0 0;
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
}

.calendar-mini-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.calendar-mini-legend .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 1px;
}

.calendar-mini-legend .dot.closed {
  background: rgba(180, 90, 90, 0.5);
}

.calendar-mini-legend .dot.holiday {
  background: rgba(212, 160, 23, 0.5);
}

@media (max-width: 768px) {
  .calendar-mini-section {
    padding: 40px 16px 20px;
  }
  .calendar-mini {
    max-width: 280px;
  }
  .calendar-mini-day {
    font-size: 10.5px;
    padding: 4px 0;
    min-height: 24px;
  }
  .calendar-mini-table th {
    font-size: 9px;
  }
}

/* =========================================================
   CALENDAR INLINE (MAP横に埋め込む共通スタイル / index + access)
   ========================================================= */
.calendar-inline {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 160, 23, 0.18);
  border-radius: 4px;
  padding: 18px 18px 16px;
  width: 100%;
  box-sizing: border-box;
}

.calendar-inline-title {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(212, 160, 23, 0.85);
  margin: 0 0 12px;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
}

.calendar-inline-wrap {
  width: 100%;
}

.calendar-inline-month-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 8px;
  text-align: center;
}

.calendar-inline-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  table-layout: fixed;
}

.calendar-inline-table colgroup col {
  width: calc(100% / 7);
}

.calendar-inline-table th {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.45);
  padding: 2px 0 6px;
  text-align: center;
}

.calendar-inline-table th.sun { color: rgba(200, 120, 120, 0.65); }
.calendar-inline-table th.sat { color: rgba(120, 160, 200, 0.65); }

.calendar-inline-day {
  text-align: center;
  font-size: 12px;
  padding: 6px 0;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.8);
  min-height: 30px;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.calendar-inline-day.empty {
  background: transparent;
}

.calendar-inline-day.closed {
  background: rgba(180, 90, 90, 0.22);
  color: rgba(255, 255, 255, 0.4);
}

.calendar-inline-day.holiday {
  background: rgba(212, 160, 23, 0.2);
  color: rgba(255, 255, 255, 0.65);
}

.calendar-inline-day.today {
  background: #d4a017;
  color: #0a0a0a;
  font-weight: 600;
}

/* access.html（サブページ）ではINFOテーブル下の余白を確保 */
.calendar-inline--page {
  margin-top: 32px;
}

@media (max-width: 768px) {
  .calendar-inline {
    padding: 16px 14px 14px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .calendar-inline-day {
    font-size: 11px;
    padding: 5px 0;
    min-height: 28px;
  }
  .calendar-inline-table th {
    font-size: 10px;
  }
  .calendar-inline--page {
    margin-top: 24px;
  }
}
