:root {
  --primary-color: #ff9800;
  --secondary-color: #00bcd4;
  --background-color: #f9f9f9;
  --text-color: #333333;
  --heading-color: #222222;
  --muted-color: #707070;
  --border-color: #e7e7e7;
  --section-padding: 4rem;
  --font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner,
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary-color);
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
}

.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--primary-color);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text-color);
  font-size: 1.4rem;
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
  overflow: hidden;
}

.image-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.16;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.cta-btn,
.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-family: var(--font-family);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s, transform 0.2s, border-color 0.2s;
}

.cta-btn {
  background-color: white;
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
}

.cta-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.cta-btn.ghost {
  background-color: rgba(255, 255, 255, 0.22);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.cta-btn.ghost:hover {
  background-color: white;
  color: var(--primary-color);
}

.mini-btn {
  min-height: 38px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  line-height: 1;
  white-space: nowrap;
}

.mini-btn:hover {
  transform: translateY(-1px);
}

.accent-orange {
  background-color: var(--primary-color);
  color: white;
}

.accent-blue {
  background-color: var(--secondary-color);
  color: white;
}

.outline {
  background-color: white;
  border: 1px solid #d8d8d8;
  color: var(--text-color);
}

.outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.section {
  padding: var(--section-padding) 0;
}

.section h2,
.page-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--heading-color);
  position: relative;
}

.section h2::after,
.page-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.concept p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

.floor-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.floor-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  flex: 1;
}

.floor-card.has-image {
  padding-top: 1.3rem;
}

.floor-image-wrap {
  margin-bottom: 1.4rem;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f3f3;
}

.section-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.floor-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
}

.floor-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.floor-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-link {
  margin-top: 1.2rem;
  display: inline-block;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  padding: 1.7rem 2rem 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.service-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  background: #f3f3f3;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.text-link:hover {
  text-decoration: underline;
}

.contact p {
  max-width: 700px;
  margin: 0 auto 1rem;
  text-align: center;
  font-size: 1rem;
}

.contact-email,
.contact-form-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.4rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.contact-email {
  color: white;
  background-color: var(--secondary-color);
  padding: 0.75rem 1.5rem;
}

.contact-email:hover {
  background-color: var(--primary-color);
}

.contact-form-link {
  color: var(--text-color);
  background-color: white;
  border: 1px solid #d8d8d8;
  padding: 0.72rem 1.35rem;
}

.contact-form-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.contact .container {
  text-align: center;
}

.site-footer {
  background-color: white;
  border-top: 1px solid #e0e0e0;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.modal-panel {
  position: relative;
  width: min(92vw, 720px);
  max-height: 88vh;
  overflow: auto;
  margin: 6vh auto;
  background: white;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.modal-panel.large {
  width: min(94vw, 980px);
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 0.8rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: #f3f3f3;
  color: #222;
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-label {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 0.4rem;
}

.modal-panel h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.modal-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.4rem;
  color: var(--muted-color);
}

.modal-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.menu-item,
.product-card {
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}

.menu-item span,
.product-card span {
  display: block;
  color: var(--secondary-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.menu-item strong,
.product-card strong {
  display: block;
  font-size: 1rem;
  color: var(--heading-color);
}

.menu-item small,
.product-card small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted-color);
  line-height: 1.5;
}

.product-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  background: #f4f4f4;
}

.info-list {
  display: grid;
  gap: 1rem;
}

.info-list div {
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}

.info-list strong {
  color: var(--heading-color);
}

.info-list p {
  color: var(--muted-color);
  margin-top: 0.35rem;
  line-height: 1.6;
}

.modal-actions {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.order-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.2rem;
  align-items: start;
}

.order-sidebar {
  display: grid;
  gap: 0.55rem;
  position: sticky;
  top: 0;
}

.category-btn {
  width: 100%;
  border: 1px solid var(--border-color);
  background: white;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  text-align: left;
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--text-color);
  cursor: pointer;
}

.category-btn.is-active {
  border-color: var(--primary-color);
  color: white;
  background: var(--primary-color);
}

.order-promo {
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.12), rgba(0, 188, 212, 0.12));
  padding: 1rem;
  margin-bottom: 1rem;
}

.order-promo strong,
.order-promo span {
  display: block;
}

.order-promo span {
  margin-top: 0.25rem;
  color: var(--muted-color);
}

.order-items {
  display: grid;
  gap: 0.85rem;
}

.order-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 0.8rem;
  background: white;
}

.order-thumb {
  width: 76px;
  height: 64px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.25), rgba(0, 188, 212, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.75rem;
  text-align: center;
}


.order-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.order-thumb span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
}

.order-thumb.no-image {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.25), rgba(0, 188, 212, 0.18));
}

.order-item h3 {
  font-size: 1rem;
  color: var(--heading-color);
  margin-bottom: 0.15rem;
}

.order-item p {
  color: var(--muted-color);
  font-size: 0.86rem;
  line-height: 1.5;
}

.order-price {
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

.page-hero {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.92), rgba(0, 188, 212, 0.92));
  color: white;
  text-align: center;
  padding: 4.7rem 1rem;
}

.page-hero p {
  margin-top: 0.8rem;
  font-size: 1.05rem;
}

.page-content {
  padding: 4rem 0;
}

.content-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.content-card h2,
.content-card h3 {
  color: var(--heading-color);
  margin-bottom: 0.8rem;
}

.content-card h3 {
  color: var(--primary-color);
}

.content-card p,
.content-card li {
  line-height: 1.8;
}

.content-card ul {
  padding-left: 1.2rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.page-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  background: #f3f3f3;
}

.form-card {
  max-width: 780px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.form-row {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-row label {
  font-weight: 700;
  color: var(--heading-color);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-family: var(--font-family);
  font-size: 1rem;
  background: #fff;
}

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

.form-note {
  color: var(--muted-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .floor-grid,
  .service-grid {
    flex-direction: row;
  }
}

@media (max-width: 780px) {
  .header-inner,
  .site-header .container {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 58px;
    background: white;
    padding: 0.8rem 5%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    margin-left: 0;
  }

  .hero {
    padding: 5rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .tagline {
    font-size: 1.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .modal-grid,
  .product-grid,
  .two-column,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-sidebar {
    position: static;
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.3rem;
  }

  .category-btn {
    white-space: nowrap;
    width: auto;
  }

  .order-item {
    grid-template-columns: 64px 1fr;
  }

  .order-price {
    grid-column: 2;
  }
}

/* Access / Google Map section */
.access {
  padding-top: 2rem;
  background: var(--background-color);
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 1.6rem;
  align-items: stretch;
}

.map-card,
.shop-info-card {
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 360px;
}

.shop-info-card {
  padding: 2rem;
}

.section-kicker {
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}

.shop-info-card h3 {
  font-size: 1.45rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.shop-info-list {
  display: grid;
  gap: 0.8rem;
}

.shop-info-list div {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.shop-info-list dt {
  color: var(--muted-color);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.shop-info-list dd {
  color: var(--text-color);
  font-size: 0.96rem;
}

.access-actions {
  margin-top: 1.2rem;
}

.center-card {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.center-row {
  justify-content: center;
}

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

  .shop-info-card {
    padding: 1.5rem;
  }
}


/* =========================================
   メニュー画像クリック時の拡大表示
========================================= */
.order-thumb img.menu-thumb-img {
  cursor: zoom-in;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.order-thumb img.menu-thumb-img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.image-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.image-preview-modal.is-open {
  display: block;
}

.image-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.image-preview-panel {
  position: relative;
  width: min(92vw, 760px);
  max-height: 90vh;
  margin: 5vh auto;
  background: #fff;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.image-preview-close {
  position: absolute;
  right: -0.6rem;
  top: -0.6rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #111827;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.image-preview-img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  background: #f5f5f5;
}

.image-preview-caption {
  margin-top: 0.8rem;
  text-align: center;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .image-preview-panel {
    width: 92vw;
    margin: 6vh auto;
    padding: 0.75rem;
  }

  .image-preview-img {
    max-height: 68vh;
  }
}

/* =========================================
   EAT IN detail page - visual layout
========================================= */
.eatin-visual-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
  background-image: url('images/eatin-hero.jpg');
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.eatin-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 152, 0, 0.84) 0%, rgba(60, 166, 128, 0.60) 38%, rgba(0, 0, 0, 0.12) 100%);
}

.eatin-hero-inner {
  position: relative;
  z-index: 1;
}

.eatin-visual-hero .section-kicker {
  color: #fff;
  letter-spacing: 0.18em;
  font-weight: 800;
  margin-bottom: 1rem;
}

.eatin-visual-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.05;
  max-width: 620px;
  margin-bottom: 1.2rem;
  letter-spacing: -0.04em;
}

.eatin-visual-hero p {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 700;
  max-width: 620px;
  margin-bottom: 1.6rem;
}

.eatin-hero-actions {
  justify-content: flex-start;
}

.mini-btn.outline.white {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--heading-color);
}

.mini-btn.outline.white:hover {
  background: #fff;
  color: var(--primary-color);
}

.eatin-page {
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.eatin-lead-card {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  padding: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

.eatin-lead-text h2,
.eatin-recommend-card h2 {
  color: var(--heading-color);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.eatin-lead-text p {
  font-size: 1.05rem;
  line-height: 2;
}

.eatin-lead-photo-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: #f4f4f4;
}

.eatin-lead-photo {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center center;
}

.eatin-point-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.eatin-point-row div {
  text-align: center;
  border-right: 1px solid var(--border-color);
}

.eatin-point-row div:last-child {
  border-right: 0;
}

.eatin-point-row span {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.55rem;
}

.eatin-point-row strong {
  color: var(--text-color);
  font-size: 0.92rem;
  line-height: 1.55;
}

.eatin-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin: 2rem 0;
}

.eatin-feature-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.075);
  padding: 1.35rem;
  overflow: hidden;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  background: #fff3df;
}

.feature-icon.orange { background: #fff3df; }
.feature-icon.blue { background: #e9f5ff; }
.feature-icon.green { background: #eef8e8; }

.eatin-feature-card h3 {
  color: var(--heading-color);
  font-size: 1.22rem;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.feature-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  background: #f3f3f3;
  margin-bottom: 1rem;
}

.eatin-feature-card p {
  font-size: 0.96rem;
  line-height: 1.8;
}

.feature-note {
  display: block;
  margin-top: 1rem;
  border-radius: 9px;
  padding: 0.55rem 0.7rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.orange-note { background: #fff4dc; color: #f08a00; }
.blue-note { background: #e9f5ff; color: #2f78b7; }
.green-note { background: #eef8e8; color: #5a9c46; }

.eatin-recommend-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  background: linear-gradient(135deg, #fff7ec, #ffffff);
  border: 1px solid rgba(255, 152, 0, 0.22);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  padding: 1.6rem 2rem;
  margin-top: 2rem;
}

.sun-icon {
  font-size: 2.4rem;
}

.eatin-recommend-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.3rem;
}

.eatin-recommend-card p {
  line-height: 1.8;
}

@media (max-width: 900px) {
  .eatin-visual-hero {
    min-height: 470px;
    background-position: 62% center;
  }

  .eatin-hero-overlay {
    background: linear-gradient(90deg, rgba(255, 152, 0, 0.88), rgba(0, 0, 0, 0.18));
  }

  .eatin-lead-card,
  .eatin-feature-grid,
  .eatin-recommend-card {
    grid-template-columns: 1fr;
  }

  .eatin-lead-photo {
    height: 260px;
  }

  .feature-photo {
    height: 240px;
  }

  .eatin-recommend-card {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .eatin-visual-hero {
    min-height: 430px;
  }

  .eatin-visual-hero h1 {
    font-size: 2.5rem;
  }

  .eatin-point-row {
    grid-template-columns: 1fr;
  }

  .eatin-point-row div {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.9rem;
  }

  .eatin-point-row div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .eatin-hero-actions,
  .button-row {
    justify-content: center;
  }
}
/* =========================================
   店舗案内・サービス画像の縦幅 40% 拡大
   v13イートインページ追加後の上書き調整
========================================= */

/* 店舗案内：190px → 266px */
.floor-image-wrap .section-image,
.floor-card .section-image,
.floor-card.has-image .section-image {
  width: 100%;
  height: 266px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
  display: block;
}

/* サービス：120px → 168px */
.service-card .service-image,
.service-image {
  width: 100%;
  height: 168px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  display: block;
  margin-bottom: 1.2rem;
  background: #f3f3f3;
}

/* スマホでは大きくなりすぎないよう調整 */
@media (max-width: 768px) {
  .floor-image-wrap .section-image,
  .floor-card .section-image,
  .floor-card.has-image .section-image {
    height: 220px !important;
  }

  .service-card .service-image,
  .service-image {
    height: 150px !important;
  }
}
/* =========================================
   SELECT SHOP detail page - Shopify linked cards
========================================= */
.select-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: white;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.96), rgba(0, 188, 212, 0.88)), url('../images/select-shop-main.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.select-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.28), rgba(0,0,0,0.05));
}

.select-hero-inner {
  position: relative;
  z-index: 1;
}

.page-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.select-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.select-hero p:not(.page-kicker) {
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.9;
  font-weight: 600;
}

.select-hero-actions {
  justify-content: flex-start;
}

.select-page-main {
  padding-top: 3.2rem;
}

.select-intro-card,
.select-shopify-card,
.select-partner-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
  padding: 2.2rem;
  margin-bottom: 2rem;
}

.select-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.select-intro-card h2,
.select-shopify-card h2,
.select-partner-card h2 {
  font-size: 1.7rem;
  line-height: 1.45;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.select-intro-card p,
.select-shopify-card p,
.select-partner-card p {
  line-height: 1.9;
}

.select-intro-points {
  display: grid;
  gap: 0.8rem;
}

.select-intro-points div {
  border: 1px solid rgba(0, 188, 212, 0.16);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,188,212,0.08), rgba(255,152,0,0.08));
  padding: 1rem;
}

.select-intro-points strong {
  display: block;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.select-intro-points span {
  color: var(--muted-color);
  font-size: 0.92rem;
  line-height: 1.7;
}

.select-products-section {
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
  padding: 2.2rem;
  margin-bottom: 2rem;
}

.section-title-left {
  margin-bottom: 1.6rem;
}

.section-title-left h2 {
  font-size: 1.75rem;
  color: var(--heading-color);
  margin-bottom: 0.4rem;
}

.section-title-left p {
  color: var(--muted-color);
}

.select-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.select-product-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  min-height: 210px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.select-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,152,0,0.42);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.highlight-card {
  border-color: rgba(255, 152, 0, 0.32);
  background: linear-gradient(135deg, #fff, #fff8ee);
}

.select-product-visual {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.select-product-visual::before,
.select-product-visual::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
}

.select-product-visual::before {
  width: 140px;
  height: 140px;
  left: -54px;
  bottom: -44px;
}

.select-product-visual::after {
  width: 100px;
  height: 100px;
  right: -36px;
  top: -30px;
}

.select-product-visual span {
  position: relative;
  z-index: 1;
  color: #111827;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  background: rgba(255,255,255,0.74);
  border-radius: 9px;
  padding: 0.45rem 0.7rem;
}

.tone-yellow { background: linear-gradient(135deg, #fff2cb, #e2fbff); }
.tone-blue { background: linear-gradient(135deg, #e3f4ff, #fff5db); }
.tone-cream { background: linear-gradient(135deg, #fff4df, #e9fff5); }
.tone-sea { background: linear-gradient(135deg, #dff8ff, #f3f0ff); }
.tone-miso { background: linear-gradient(135deg, #fff1d6, #f1ffe1); }
.tone-cheese { background: linear-gradient(135deg, #fff3bf, #ffe9e9); }
.tone-rice { background: linear-gradient(135deg, #fff, #e7fff6); }
.tone-curry { background: linear-gradient(135deg, #ffead1, #fff7c7); }
.tone-purple { background: linear-gradient(135deg, #f1e9ff, #e5fff8); }
.tone-ohagi { background: linear-gradient(135deg, #f4e5ff, #fff3e7); }

.select-product-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-label {
  color: var(--secondary-color);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.select-product-card h3 {
  color: var(--heading-color);
  font-size: 1.18rem;
  line-height: 1.45;
  margin-bottom: 0.55rem;
}

.select-product-card p:not(.product-label) {
  font-size: 0.92rem;
  color: var(--text-color);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.select-product-card .mini-btn {
  margin-top: auto;
}

.select-shopify-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #eefcff);
}

.select-shopify-card > div {
  max-width: 780px;
}

.select-partner-card {
  text-align: center;
  background: linear-gradient(135deg, #fff8ef, #ffffff);
}

.select-flow-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.select-flow-row div {
  background: white;
  border: 1px solid rgba(255, 152, 0, 0.22);
  border-radius: 12px;
  padding: 1rem;
}

.select-flow-row strong {
  display: block;
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.select-flow-row span {
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 900px) {
  .select-intro-card,
  .select-shopify-card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .select-product-grid {
    grid-template-columns: 1fr;
  }

  .select-product-card {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .select-shopify-card {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .select-hero {
    min-height: 390px;
  }

  .select-product-card {
    grid-template-columns: 1fr;
  }

  .select-product-visual {
    height: 150px;
  }

  .select-flow-row {
    grid-template-columns: 1fr;
  }

  .select-intro-card,
  .select-products-section,
  .select-shopify-card,
  .select-partner-card {
    padding: 1.35rem;
  }
}
/* =========================================
   SELECT SHOP page - visual card gallery v16
   今月のセレクトショップ風の商品カード
========================================= */
.select-gallery-hero {
  padding: 5.5rem 0 3.4rem;
  background: linear-gradient(135deg, rgba(255, 248, 236, 0.96), rgba(240, 253, 255, 0.96));
  text-align: center;
}

.select-gallery-hero-inner {
  max-width: 880px;
}

.select-gallery-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--heading-color);
  line-height: 1.18;
  margin: 0.4rem 0 1rem;
  letter-spacing: 0.02em;
}

.select-gallery-hero p:not(.page-kicker) {
  color: var(--muted-color);
  font-size: 1.08rem;
  line-height: 1.9;
  max-width: 760px;
  margin: 0 auto 1.4rem;
}

.select-gallery-main {
  padding-top: 3rem;
}

.select-gallery-intro,
.monthly-selection-panel,
.select-bottom-cta {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.055);
  padding: 2.2rem;
  margin-bottom: 2rem;
}

.select-gallery-intro {
  text-align: center;
}

.select-gallery-intro h2,
.select-bottom-cta h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 0.7rem;
}

.select-gallery-intro p:not(.section-kicker),
.select-bottom-cta p {
  color: var(--text-color);
  line-height: 1.9;
  max-width: 850px;
  margin: 0 auto;
}

.selection-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.selection-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: var(--heading-color);
  margin: 0.3rem 0 0.7rem;
}

.selection-heading p {
  color: var(--muted-color);
  font-size: 1.05rem;
  line-height: 1.8;
}

.selection-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.selection-card {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  min-height: 250px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.selection-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 152, 0, 0.45);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.09);
}

.selection-card-feature {
  border-color: rgba(255, 152, 0, 0.35);
  background: linear-gradient(135deg, #fff, #fff8ef);
}

.selection-card-media {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff2d8, #e6fbff);
}

.selection-card-media::before,
.selection-card-media::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  z-index: 0;
}

.selection-card-media::before {
  width: 150px;
  height: 150px;
  left: -55px;
  bottom: -45px;
}

.selection-card-media::after {
  content: attr(data-fallback);
  width: auto;
  height: auto;
  min-width: 96px;
  right: auto;
  top: auto;
  padding: 0.55rem 0.8rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--heading-color);
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 1rem;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}

.selection-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.3s ease;
}

.selection-card:hover .selection-card-media img {
  transform: scale(1.04);
}

.selection-card-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.selection-card-body .product-label {
  color: var(--secondary-color);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.selection-card-body h3 {
  color: var(--heading-color);
  font-size: 1.2rem;
  line-height: 1.45;
  margin-bottom: 0.55rem;
}

.selection-card-body p:not(.product-label) {
  color: var(--text-color);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.selection-link-text {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 800;
  font-size: 0.92rem;
}

.select-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #eefcff);
}

.select-bottom-cta > div {
  max-width: 760px;
}

@media (max-width: 980px) {
  .selection-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .select-gallery-hero {
    padding: 4.4rem 0 2.7rem;
  }

  .monthly-selection-panel,
  .select-gallery-intro,
  .select-bottom-cta {
    padding: 1.35rem;
  }

  .selection-card {
    grid-template-columns: 1fr;
  }

  .selection-card-media {
    min-height: 210px;
  }

  .select-bottom-cta {
    display: grid;
  }
}
/* =========================================
   トップヒーロー画像を見やすく調整
   リニューアル文言削除後の新ヒーロー
========================================= */

.hero.image-hero.hero-clean {
  min-height: 520px;
  padding: 7rem 1rem;
  display: flex;
  align-items: center;
  text-align: left;
  color: #fff;
  background-image:
    linear-gradient(
      90deg,
      rgba(10, 18, 30, 0.62) 0%,
      rgba(10, 18, 30, 0.36) 42%,
      rgba(10, 18, 30, 0.08) 100%
    ),
    url("images/hero-store.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* 以前のオレンジ〜ターコイズの上乗せ画像を消す */
.hero.image-hero.hero-clean::before {
  display: none !important;
}

.hero-clean .hero-content {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-clean .hero-kicker {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
  color: #ff9800;
}

.hero-clean h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 1.4rem;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.hero-clean .subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.22);
}

.hero-clean .hero-actions {
  justify-content: flex-start;
}

.hero-clean .cta-btn {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.hero-clean .cta-btn.ghost {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
}

.hero-clean .cta-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.28);
}

.pc-only {
  display: inline;
}

/* スマホ調整 */
@media (max-width: 768px) {
  .hero.image-hero.hero-clean {
    min-height: 520px;
    padding: 5rem 1.2rem;
    text-align: center;
    background-position: center center;
    background-image:
      linear-gradient(
        180deg,
        rgba(10, 18, 30, 0.40) 0%,
        rgba(10, 18, 30, 0.50) 55%,
        rgba(10, 18, 30, 0.62) 100%
      ),
      url("images/hero-store.jpg");
  }

  .hero-clean .hero-content {
    width: 100%;
  }

  .hero-clean .hero-actions {
    justify-content: center;
  }

  .hero-clean h1 {
    font-size: 2.6rem;
  }

  .hero-clean .subtitle {
    font-size: 1rem;
  }

  .pc-only {
    display: none;
  }
}
