/* 沖縄そばがんじゅー - ベース */
:root {
  --color-bg: #FDF8F0;
  --color-text: #4F3F3A;
  --color-border: #C4B5A8;
  --color-accent: #4F3F3A;
  --color-textbox: #258A66;
  --font-mincho: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "游明朝", "MS PMincho", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
}

a {
  color: var(--color-text);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ヘッダー（PC版） */
.header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

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

.hamburger-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--color-text);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.nav-mobile,
.nav-mobile-overlay {
  display: none;
}

.logo-area {
  margin: 0;
  padding: 0;
  text-align: left;
}

.logo {
  margin: 0;
  line-height: 0;
}

.logo img {
  display: block;
  max-width: 140px;
  width: auto;
  height: auto;
  margin: 0;
}

.nav {
  border-top: none;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.nav-list li {
  flex: none;
  min-width: 0;
  border-right: none;
}

.nav-list a {
  display: block;
  padding: 10px 0;
  text-align: left;
  font-size: 15px;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav-list a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.header-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-cta .header-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-text);
  opacity: 0.82;
  transition: opacity 0.2s;
}

.header-cta .header-instagram:hover {
  opacity: 1;
  text-decoration: none;
}

.header-cta .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(37, 138, 102, 0.55);
  border-radius: 999px;
  color: var(--color-text);
  font-size: 13px;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.7);
  transition: background-color 0.2s, opacity 0.2s;
}

.header-cta .nav-cta:hover {
  text-decoration: none;
  opacity: 0.9;
  background: rgba(37, 138, 102, 0.08);
}

.nav-mobile-instagram {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(79, 63, 58, 0.18);
  display: flex;
  justify-content: center;
}

.nav-mobile-instagram a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text);
  opacity: 0.85;
}

.nav-mobile-instagram a:hover {
  opacity: 1;
  text-decoration: none;
}

.nav-list .nav-item-static,
.nav-mobile-list .nav-item-static {
  display: block;
  padding: 16px 12px;
  text-align: center;
  font-size: 15px;
  color: var(--color-text);
  cursor: default;
}

.nav-mobile-list .nav-item-static {
  padding: 16px 0;
}

/* ヒーローセクション */
.hero {
  position: relative;
  width: 100%;
  line-height: 0;
  background: var(--color-bg);
}

.hero-img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  vertical-align: bottom;
  object-fit: contain;
  object-position: center top;
}

.hero-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 8% 5% 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none;
  z-index: 1;
}

.hero-text-overlay img {
  max-width: 55%;
  width: auto;
  height: auto;
  max-height: 22vh;
  object-fit: contain;
  display: block;
}

/* セクション共通 */
.section {
  padding: 56px 20px 64px;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 32px 0;
  letter-spacing: 0.06em;
}

.section-lead {
  text-align: center;
  margin: -16px 0 32px 0;
  font-size: 15px;
}

/* こだわり */
.section-kodawari {
  background: linear-gradient(180deg, rgba(232, 221, 212, 0.4) 0%, transparent 100%);
  position: relative;
}

.section-kodawari .section-inner {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.section-kodawari::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath fill='%23C4B5A8' fill-opacity='0.08' d='M30 0L30 60M0 30L60 30' stroke='%23C4B5A8' stroke-width='0.3'/%3E%3C/svg%3E");
  pointer-events: none;
}

.kodawari-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.kodawari-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 64px 8%;
  border-radius: 0;
  overflow: hidden;
  min-height: 480px;
}

.kodawari-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 0;
}

.kodawari-block--soba {
  background-image: url("images/soba-noodles-bg.png");
  background-size: 100%;
  background-position: center;
}

.kodawari-block--soba::before {
  background: rgba(0, 0, 0, 0.4);
}

.kodawari-block--aji {
  background-image: url("images/aji-fresh-bg.png");
  background-size: 100%;
  background-position: center;
}

.kodawari-block--aji::before {
  background: rgba(0, 0, 0, 0.4);
}

.kodawari-block .kodawari-block-body {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.kodawari-block .kodawari-block-title,
.kodawari-block .kodawari-text {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.kodawari-block-title {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 24px 0;
  letter-spacing: 0.25em;
  line-height: 1.6;
  color: #fff;
}

.kodawari-text {
  margin: 0;
  text-align: center;
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 2.4;
  color: #fff;
}

/* 商品紹介 */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
  margin-bottom: 40px;
}

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

.menu-item {
  margin: 0;
}

.menu-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 16px;
  background: #E8DDD4;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-name {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  text-align: center;
}

.menu-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  color: var(--color-text);
}

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

/* 商品紹介（カテゴリ別） */
.product-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 28px;
  max-width: 900px;
}

.product-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.product-nav-link:hover {
  text-decoration: none;
  opacity: 0.85;
}

.product-section {
  padding-top: 10px;
  margin-top: 24px;
}

.product-section-title {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 18px 0;
  letter-spacing: 0.08em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.product-grid--single {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(79, 63, 58, 0.06);
}

.product-card--noimage {
  overflow: visible;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #E8DDD4;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-body {
  padding: 16px 14px 18px;
}

.product-grid--cards {
  grid-template-columns: repeat(3, 1fr);
}

.product-item .product-card-body {
  text-align: center;
}

.product-item-name {
  font-family: var(--font-mincho);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.product-item-price {
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.9;
}

.product-note {
  margin: 0;
  font-size: 13px;
  text-align: center;
  opacity: 0.85;
}

.product-subtitle {
  font-family: var(--font-mincho);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
  letter-spacing: 0.06em;
}

.product-subtitle:not(:first-child) {
  margin-top: 18px;
}

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

.product-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px dotted rgba(196, 181, 168, 0.6);
  font-size: 14px;
  line-height: 1.55;
}

.product-list li:last-child {
  border-bottom: none;
}

.product-list .name {
  flex: 1;
  min-width: 0;
}

.product-list .price {
  flex-shrink: 0;
  font-weight: 500;
  white-space: nowrap;
}

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

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

  .product-card-body {
    padding: 14px 12px 16px;
  }

  .product-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 12px;
  }

  .product-list .name {
    overflow-wrap: anywhere;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 56px;
  background: var(--color-textbox);
  color: #fff;
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  line-height: 1;
}

.btn:hover {
  opacity: 0.9;
  text-decoration: none;
  color: #fff;
}

@media (max-width: 768px) {
  .btn {
    padding: 16px 44px;
    font-size: 16px;
  }
}

/* ONLINE SHOP */
.online-shop-hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}

.online-shop-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}

.online-shop-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100% - 40px));
  height: 110px;
  background: rgba(0, 0, 0, 0.28);
}

.online-shop-coming {
  position: relative;
  z-index: 1;
}

.online-shop-coming-text {
  display: inline-block;
  font-family: "Zen Antique", var(--font-mincho);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .online-shop-hero {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .online-shop-overlay {
    height: 92px;
  }

  .online-shop-coming-text {
    font-size: clamp(24px, 7vw, 34px);
  }
}

/* 店舗情報（2段・左に写真） */
.store-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.store-block {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 32px;
  width: 100%;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 48px;
}

.page-shopinfo .store-block {
  flex-direction: column;
  gap: 18px;
}

.page-shopinfo .store-block-main {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 32px;
}

.store-block-map {
  margin-bottom: 18px;
}

.store-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.store-block-map {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #fff;
  aspect-ratio: 21 / 9;
}

.store-block-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.store-block-photo {
  flex: 0 0 320px;
  width: 320px;
  min-height: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #E8DDD4;
}

.store-block-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.store-block-inner {
  flex: 1;
  min-width: 0;
}

.store-block-title {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
  letter-spacing: 0.05em;
}

.store-info {
  margin: 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px 24px;
  align-items: baseline;
}

.store-info dt {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.store-info dd {
  margin: 0;
  font-size: 15px;
}

/* お問い合わせ */
.contact-content {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.contact-text {
  margin: 0 0 16px 0;
  font-size: 15px;
}

.contact-tel {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 600;
}

.contact-tel a:hover {
  text-decoration: none;
}

.contact-note {
  margin: 0;
  font-size: 13px;
  color: var(--color-text);
}

.contact-form-link {
  margin: 20px 0 0 0;
  text-align: center;
}

/* フッター */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 38px 20px 34px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-nav {
  width: 100%;
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  font-family: var(--font-mincho);
  letter-spacing: 0.12em;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-nav-list a {
  color: var(--color-text);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.footer-nav-list a:hover {
  opacity: 0.65;
  text-decoration: none;
}

.footer-nav-list li {
  display: inline-flex;
  align-items: center;
}

.footer-nav-list li:not(:last-child)::after {
  content: "|";
  display: inline-block;
  margin-left: 14px;
  opacity: 0.65;
}

.copyright {
  margin: 0;
  font-size: 13px;
  color: var(--color-text);
  opacity: 0.8;
}

/* ========== トップページ（メイン） ========== */
.main-top {
  padding-bottom: 0;
}

/* ヒーロー：大きく表示＋画像テキストを上から重ね */
.top-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.top-hero--bg .top-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-uchitate.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.top-hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.top-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.03);
  animation: topHeroSlideFade 28s infinite;
  will-change: opacity, transform;
}

.top-hero-slide--1 {
  background-image: url("images/hero-slide-01.png");
  animation-delay: 0s;
}

.top-hero-slide--2 {
  background-image: url("images/hero-slide-02.png");
  animation-delay: 7s;
}

.top-hero-slide--3 {
  background-image: url("images/hero-slide-03.png");
  animation-delay: 14s;
}

.top-hero-slide--4 {
  background-image: url("images/hero-slide-04.png");
  animation-delay: 21s;
}

@keyframes topHeroSlideFade {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }
  8% {
    opacity: 1;
  }
  25% {
    opacity: 1;
    transform: scale(1);
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-hero-slide {
    /* 切り替えは維持しつつ、動き（ズーム）だけ抑える */
    animation-name: topHeroSlideFadeReduced;
    transform: none;
  }

  @keyframes topHeroSlideFadeReduced {
    0% { opacity: 0; }
    8% { opacity: 1; }
    25% { opacity: 1; }
    33% { opacity: 0; }
    100% { opacity: 0; }
  }
}

.top-hero--bg .top-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.top-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
}

/* ヒーロー縦書きテキスト（筆風フォント・背景透過・小さめ） */
.top-hero-text {
  position: relative;
  z-index: 2;
  margin: 0;
  writing-mode: vertical-rl;
  font-family: "Zen Antique", var(--font-mincho);
  font-size: clamp(1rem, 2.8vw, 1.5rem);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.15em;
  color: #fff;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(0, 0, 0, 0.3);
  user-select: none;
}

.top-hero-text-accent {
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .top-hero-text {
    font-size: clamp(0.78rem, 3vw, 1.06rem);
    line-height: 1.7;
    letter-spacing: 0.12em;
  }
}

.section-top {
  padding: 56px 20px 64px;
}

.section-seimen {
  background: linear-gradient(180deg, transparent 0%, rgba(232, 221, 212, 0.3) 50%, transparent 100%);
}

.seimen-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 32px;
}

.seimen-photo {
  border-radius: 8px;
  overflow: hidden;
  background: #E8DDD4;
  aspect-ratio: 4 / 3;
}

.seimen-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.seimen-text {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.section-tennai {
  background: var(--color-bg);
}

.tennai-content {
  max-width: 800px;
  margin: 0 auto;
}

.tennai-photo {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #E8DDD4;
}

.tennai-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

.tennai-text {
  text-align: center;
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.tennai-content .btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: fit-content;
}

/* TOP: 店内「店舗情報を見る」だけアウトライン */
.section-tennai .tennai-content .btn {
  background: transparent;
  color: var(--color-textbox);
  border: 2px solid var(--color-textbox);
  margin-top: 18px;
}

.section-tennai .tennai-content .btn:hover {
  opacity: 0.85;
  text-decoration: none;
  color: var(--color-textbox);
}

.section-pickup-pages {
  padding-top: 24px;
}

.pickup-pages-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pickup-page-card {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.pickup-page-media {
  border-radius: 8px;
  overflow: hidden;
  background: #E8DDD4;
  width: 100%;
  max-width: 720px;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.pickup-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pickup-page-title {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.08em;
  text-align: center;
}

.pickup-page-lead {
  margin: -6px 0 0;
  font-size: 15px;
  opacity: 0.9;
}

.pickup-page-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  text-align: center;
  min-height: 0;
  max-width: 640px;
}

.pickup-page-card .btn {
  margin: 4px 0 0;
  width: fit-content;
}

.pickup-page-card--news {
  display: block;
}

.pickup-page-card--news .pickup-page-media {
  max-width: none;
  aspect-ratio: 4 / 3;
}

.pickup-page-news-body {
  width: 100%;
  text-align: left;
}

.pickup-page-card--news .pickup-page-title,
.pickup-page-card--news .pickup-page-lead {
  text-align: left;
}

.pickup-page-card--news .pickup-page-lead {
  margin: 2px 0 14px;
}

.pickup-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(79, 63, 58, 0.18);
}

.pickup-news-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(79, 63, 58, 0.18);
}

.pickup-news-meta,
.pickup-news-title {
  margin: 0;
}

.pickup-news-meta {
  font-size: 13px;
  opacity: 0.82;
}

.pickup-news-title {
  margin-top: 6px;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 600;
}

.pickup-page-card--news .btn {
  background: transparent;
  color: var(--color-text);
  padding: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 18px 0 0 auto;
}

.pickup-page-card--news .btn:hover {
  opacity: 0.75;
  color: var(--color-text);
  text-decoration: underline;
}

.pickup-page-card--event {
  padding-top: 10px;
  margin-top: 18px;
}

.pickup-page-card--event .pickup-page-title {
  font-size: 32px;
}

.pickup-page-card--event .pickup-page-lead {
  font-size: 16px;
}

.event-triptych {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 18px auto 0;
}

.event-triptych-item {
  text-align: center;
}

.event-triptych-media {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #E8DDD4;
  aspect-ratio: 16 / 10;
}

.event-triptych-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.event-triptych-text {
  margin: 14px 0 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.event-triptych-cta {
  margin-top: 22px;
  text-align: center;
}

.event-triptych-cta .btn {
  background: transparent;
  color: var(--color-textbox);
  padding: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.event-triptych-cta .btn:hover {
  opacity: 0.75;
  color: var(--color-textbox);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .event-triptych {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pickup-page-card--event {
    margin-top: 10px;
  }
}

.pickup-page-card--recruit {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1fr;
  align-items: center;
  gap: 26px;
  margin-top: 18px;
  max-width: 100%;
  min-width: 0;
}

.pickup-page-card--recruit .pickup-page-media {
  max-width: none;
  aspect-ratio: 16 / 10;
  min-width: 0;
}

.pickup-page-recruit-body {
  width: 100%;
  text-align: left;
  min-width: 0;
}

.pickup-page-card--recruit .pickup-page-title,
.pickup-page-card--recruit .pickup-page-lead,
.pickup-page-card--recruit .pickup-page-text {
  text-align: left;
}

.pickup-page-card--recruit .pickup-page-lead {
  margin: 2px 0 10px;
}

.pickup-page-card--recruit .pickup-page-text {
  max-width: 100%;
}

.pickup-page-card--recruit .btn {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .pickup-pages-grid {
    gap: 12px;
  }

  .pickup-page-card {
    padding: 8px 0 0;
    gap: 12px;
  }

  .pickup-page-media {
    aspect-ratio: 4 / 3;
  }

  .pickup-page-title,
  .pickup-page-text {
    text-align: center;
  }

  .pickup-page-title {
    font-size: 22px;
  }

  .pickup-page-card .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .pickup-page-card--news {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pickup-page-card--news .pickup-page-title,
  .pickup-page-card--news .pickup-page-lead,
  .pickup-page-news-body {
    text-align: center;
  }

  .pickup-page-card--news .pickup-page-lead {
    margin-bottom: 10px;
  }

  .pickup-news-title {
    font-size: 19px;
  }

  .pickup-page-card--recruit {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 10px;
  }

  .pickup-page-card--recruit .pickup-page-title,
  .pickup-page-card--recruit .pickup-page-lead,
  .pickup-page-card--recruit .pickup-page-text,
  .pickup-page-recruit-body {
    text-align: center;
  }
}

.section-taiken {
  background: linear-gradient(180deg, rgba(232, 221, 212, 0.25) 0%, transparent 100%);
}

.taiken-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.taiken-photo {
  border-radius: 8px;
  overflow: hidden;
  background: #E8DDD4;
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.taiken-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
}

.taiken-body {
  text-align: center;
}

.taiken-text {
  margin: 0 0 24px 0;
  font-size: 15px;
  line-height: 1.9;
}

.taiken-cta {
  margin-bottom: 16px;
}

.btn-taiken {
  background: var(--color-textbox);
  color: #fff;
}

.taiken-note {
  margin: 0;
  font-size: 12px;
  color: var(--color-text);
  opacity: 0.8;
}

.section-cta {
  padding: 48px 20px 64px;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.cta-text {
  margin: 0 0 20px 0;
  font-size: 15px;
}

/* 製麺の卸ページ：ヘッダー画像 */
.oroshi-hero {
  width: 100%;
  overflow: hidden;
  background: #E8DDD4;
}

.oroshi-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  max-height: 42vh;
}

.section-oroshi {
  background: var(--color-bg);
}

.oroshi-content {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
  align-items: center;
}

.oroshi-media {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.oroshi-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.oroshi-body {
  text-align: center;
}

.oroshi-text {
  margin: 0 0 16px 0;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.oroshi-cta {
  margin-top: 10px;
}

/* ========== ラーメンスクール（イベント内） ========== */
.section-ramen-school {
  background: var(--color-bg);
}

.ramen-school-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.ramen-school-text {
  margin: 0 0 18px 0;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.ramen-school-points {
  list-style: none;
  padding: 0;
  margin: 0 auto 22px;
  display: grid;
  gap: 10px;
  max-width: 560px;
}

.ramen-school-points li {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.7;
}

.ramen-school-cta {
  margin-top: 10px;
}

/* ========== 製麺教室（イベント内） ========== */
.section-seimen-class {
  background: var(--color-bg);
}

.seimen-class-content {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
  align-items: center;
}

.seimen-class-media {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.seimen-class-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.seimen-class-body {
  text-align: center;
}

.seimen-class-text {
  margin: 0 0 14px 0;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.seimen-class-points {
  list-style: none;
  padding: 0;
  margin: 0 auto 16px;
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.seimen-class-points li {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.7;
}

.seimen-class-cta {
  margin-top: 10px;
}

/* ========== ラーメンスクール（詳細ページ） ========== */
.main-ramen-school {
  padding-bottom: 24px;
}

.ramen-school-hero {
  padding: 56px 0 8px;
}

.ramen-school-title {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.ramen-school-lead {
  margin: 10px 0 0 0;
  font-size: 14px;
  opacity: 0.85;
}

.ramen-school-note {
  margin: 14px 0 0 0;
  font-size: 12px;
  line-height: 1.8;
  opacity: 0.85;
}

.ramen-school-link {
  text-decoration: underline;
}

.ramen-school-gallery {
  margin: 18px 0 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ramen-school-photo {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #fff;
  aspect-ratio: 4 / 3;
}

.ramen-school-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.ramen-school-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ramen-school-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.ramen-school-table th,
.ramen-school-table td {
  border: 1px solid var(--color-border);
  padding: 12px 12px;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.75;
}

.ramen-school-table th {
  width: 220px;
  font-weight: 600;
  background: rgba(232, 221, 212, 0.35);
}

.ramen-school-box--note {
  background: rgba(255, 255, 255, 0.7);
}

.ramen-school-h3 {
  margin: 0 0 12px 0;
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.ramen-school-box {
  margin: 14px 0 26px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 16px 14px;
}

.ramen-school-h4 {
  margin: 0 0 10px 0;
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.ramen-school-list {
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.8;
  font-size: 14px;
}

.ramen-school-subnote {
  margin: 10px 0 0 0;
  font-size: 12px;
  opacity: 0.8;
}

.ramen-school-cta-bottom {
  margin-top: 18px;
  text-align: center;
}

@media (max-width: 768px) {
  .ramen-school-hero {
    padding: 44px 0 6px;
  }

  .ramen-school-points li {
    font-size: 13px;
  }

  .seimen-class-content {
    grid-template-columns: 1fr;
  }

  .seimen-class-points li {
    font-size: 13px;
  }

  .oroshi-content {
    grid-template-columns: 1fr;
  }

  .page-shopinfo .store-block-main {
    flex-direction: column;
  }

  .ramen-school-gallery {
    grid-template-columns: 1fr;
  }

  .ramen-school-table {
    min-width: 420px;
  }

  .ramen-school-table th {
    width: 160px;
  }
}

/* お問い合わせフォームページ */
.section-contact-form {
  background: var(--color-bg);
}

.contact-form {
  max-width: 520px;
  margin: 0 auto 32px;
}

.form-row {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.form-required {
  color: #c33;
  font-size: 12px;
  font-weight: 400;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-mincho);
  font-size: 15px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-sizing: border-box;
}

.form-input::placeholder {
  color: #999;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234F3F3A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

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

.form-submit {
  margin-top: 28px;
  text-align: center;
}

.btn-contact-submit {
  min-width: 200px;
}

.contact-form-note {
  text-align: center;
  font-size: 14px;
  color: var(--color-text);
  opacity: 0.9;
}

.contact-form-note a {
  text-decoration: underline;
}

/* トップページのスマホ */
@media (max-width: 768px) {
  .top-hero-content {
    padding: 16px;
  }

  .seimen-photo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .taiken-content {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
    justify-items: center;
  }

  .taiken-photo {
    order: 0;
    max-height: 280px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .taiken-photo img {
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
  }

  .taiken-body {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .taiken-text,
  .taiken-note,
  .taiken-cta {
    text-align: center;
  }

  .taiken-cta .btn {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }

  .section-taiken .section-inner {
    overflow-x: hidden;
  }

  .top-hero {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    max-width: 100vw;
  }
}

/* スマホ版（768px以下） */
@media (max-width: 768px) {
  body {
    padding-left: 16px;
    padding-right: 16px;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-break: strict;
  }

  p, dd, li, .menu-desc, .kodawari-text, .contact-text, .contact-note {
    word-break: keep-all;
    overflow-wrap: break-word;
    line-break: strict;
  }

  /* トップページ：スマホ時のみテキストとボタンを中央揃え */
  .main-top .section-title,
  .main-top .section-lead,
  .main-top .seimen-text,
  .main-top .tennai-text,
  .main-top .taiken-text,
  .main-top .taiken-note {
    text-align: center;
  }

  .main-top .taiken-cta,
  .main-top .tennai-content,
  .main-top .section-cta {
    text-align: center;
  }

  .main-top .taiken-cta .btn,
  .main-top .tennai-content .btn,
  .main-top .section-cta .btn {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }

  .header {
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .nav {
    border-top: none !important;
  }

  .hero {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -3px !important;
    padding-top: 0 !important;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    border: none !important;
    border-top: none !important;
    outline: none !important;
    aspect-ratio: 16 / 9;
    position: relative;
  }

  .hero::before,
  .hero::after {
    display: none !important;
  }

  .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    object-fit: cover;
    object-position: center center;
  }

  .hero-text-overlay {
    border: none !important;
    outline: none !important;
  }

  .header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    max-width: none;
    border: none !important;
  }

  .logo-area {
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: none;
  }

  .logo img {
    max-width: 120px;
    margin: 0;
  }

  .hamburger-btn {
    display: flex;
  }

  .nav {
    display: none;
  }

  .nav-mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
  }

  .nav-mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-mobile {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: var(--color-bg);
    z-index: 99;
    padding: 60px 24px 24px;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.25s;
  }

  .nav-mobile.is-open {
    transform: translateX(0);
  }

  .nav-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-mobile-list li {
    border-bottom: 1px solid var(--color-border);
  }

  .nav-mobile-list a {
    display: block;
    padding: 16px 0;
    font-size: 15px;
  }

  .page-detail .nav-mobile-list .nav-item-static {
    text-align: left;
    padding: 16px 0;
    padding-left: 0;
  }

  .page-detail .nav-mobile-list li {
    text-align: left;
  }

  /* 追加ページ（製麺の卸・お問い合わせ）スマホ */
  .oroshi-hero {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    max-width: 100vw;
  }

  .oroshi-hero-img {
    max-height: 38vh;
  }

  .section-oroshi .section-inner,
  .section-contact-form .section-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-form {
    margin-bottom: 24px;
  }

  .form-input {
    font-size: 16px;
  }

  .form-row {
    margin-bottom: 16px;
  }

  .btn-contact-submit {
    min-width: 100%;
  }

  .hamburger-btn.is-open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger-btn.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hamburger-line {
    transition: transform 0.2s, opacity 0.2s;
  }

  .section-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .section {
    padding-left: 0;
    padding-right: 0;
  }

  /* こだわり：スマホはテキスト小さく・改行・余白を見直し */
  .kodawari-content {
    padding-left: 0;
    padding-right: 0;
  }

  .kodawari-block {
    min-height: 200px;
    padding: 20px 16px;
  }

  .kodawari-block-body {
    max-width: 100%;
  }

  .kodawari-block-title {
    font-size: 14px;
    margin: 0 0 10px 0;
    letter-spacing: 0.2em;
    line-height: 1.4;
  }

  .kodawari-block .kodawari-text {
    font-size: 11px;
    line-height: 1.85;
    letter-spacing: 0.02em;
    margin: 0;
  }

  .kodawari-block--soba,
  .kodawari-block--aji {
    background-size: cover;
    background-position: center center;
  }

  .store-block {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
  }

  .store-block-photo {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}

/* ========== お品書きページ ========== */
.main-oshinagaki {
  padding-bottom: 0;
}

.oshinagaki-hero {
  background: linear-gradient(180deg, rgba(232, 221, 212, 0.5) 0%, var(--color-bg) 100%);
  padding: 48px 20px 40px;
  position: relative;
  overflow: hidden;
}

.oshinagaki-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 24' preserveAspectRatio='none'%3E%3Cpath fill='%23C4B5A8' fill-opacity='0.2' d='M0 24 Q30 12 60 24 Q90 12 120 24 L120 28 L0 28 Z'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.oshinagaki-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.oshinagaki-title {
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 8px 0;
  letter-spacing: 0.15em;
  color: var(--color-text);
}

.oshinagaki-lead {
  margin: 0;
  font-size: 15px;
  color: var(--color-text);
  opacity: 0.9;
}

.oshinagaki-stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}

.oshinagaki-store {
  padding: 40px 24px 48px;
  border-right: 1px solid var(--color-border);
  background: var(--color-bg);
}

.oshinagaki-store:last-child {
  border-right: none;
}

.oshinagaki-store-inner {
  max-width: 480px;
  margin: 0 auto;
}

.oshinagaki-store-name {
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 32px 0;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-border);
  letter-spacing: 0.1em;
}

.oshinagaki-menus {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.oshinagaki-category {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 20px 18px;
  box-shadow: 0 1px 4px rgba(79, 63, 58, 0.06);
}

.oshinagaki-category-title {
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 14px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.oshinagaki-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.oshinagaki-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px dotted rgba(196, 181, 168, 0.6);
}

.oshinagaki-list li:last-child {
  border-bottom: none;
}

.oshinagaki-list .name {
  flex: 1;
  min-width: 0;
  word-break: keep-all;
}

.oshinagaki-list .price {
  flex-shrink: 0;
  font-weight: 500;
  color: var(--color-text);
}

.main-oshinagaki .section-cta {
  border-top: 1px solid var(--color-border);
  padding: 40px 20px 56px;
  text-align: center;
}

@media (max-width: 900px) {
  .oshinagaki-stores {
    grid-template-columns: 1fr;
  }

  .oshinagaki-store {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 32px 20px 40px;
  }

  .oshinagaki-store:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .page-oshinagaki {
    padding-left: 0;
    padding-right: 0;
  }

  .page-oshinagaki .main-oshinagaki {
    overflow-x: hidden;
  }

  .oshinagaki-hero {
    padding: 32px 16px 28px;
  }

  .oshinagaki-title {
    font-size: 22px;
    letter-spacing: 0.12em;
  }

  .oshinagaki-store {
    padding: 28px 16px 36px;
  }

  .page-oshinagaki .oshinagaki-store-inner {
    max-width: 100%;
  }

  .oshinagaki-store-name {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .oshinagaki-category {
    padding: 16px 14px;
  }

  .oshinagaki-category-title {
    font-size: 14px;
  }

  .page-oshinagaki .oshinagaki-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 6px 12px;
    font-size: 13px;
  }

  .page-oshinagaki .oshinagaki-list .name {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
  }

  .page-oshinagaki .oshinagaki-list .price {
    white-space: nowrap;
    margin-left: 0;
    text-align: right;
    align-self: end;
  }
}

/* ========== SHOP INFOページ ========== */
.main-shopinfo {
  padding-bottom: 0;
}

.shopinfo-hero {
  background: linear-gradient(180deg, rgba(232, 221, 212, 0.4) 0%, var(--color-bg) 100%);
}

/* ========== MENUページ ========== */
.main-menu {
  padding-bottom: 0;
}

.menu-hero {
  background: linear-gradient(180deg, rgba(232, 221, 212, 0.4) 0%, var(--color-bg) 100%);
  padding: 48px 20px 20px;
}

.storemenu-hero {
  background: linear-gradient(180deg, rgba(232, 221, 212, 0.4) 0%, var(--color-bg) 100%);
  padding: 48px 20px 20px;
}

.menu-store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 8px;
}

.menu-store-card {
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
  padding: 10px 0;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: opacity 0.2s;
}

.menu-store-card:hover {
  text-decoration: none;
  opacity: 0.8;
}

.menu-store-logo {
  display: grid;
  place-items: center;
}

.menu-store-logo img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  display: block;
}

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

.menu-store-name {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.menu-store-sub {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.18em;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .menu-hero {
    padding: 32px 16px 8px;
  }

  .menu-store-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-store-card {
    padding: 8px 0;
  }

  .menu-store-logo img {
    width: 92px;
    height: 92px;
  }
}

.shopinfo-store-nav {
  padding: 28px 20px 8px;
}

.shopinfo-store-nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
}

.shopinfo-store-btn {
  width: 100%;
  text-align: center;
  padding: 14px 16px;
}

.shopinfo-store-section {
  padding: 40px 20px 0;
}

.shopinfo-store-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px 18px 28px;
}

.shopinfo-store-logo {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  border-radius: 999px;
  border: 1px solid rgba(196, 181, 168, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 221, 212, 0.35);
  color: rgba(79, 63, 58, 0.7);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.shopinfo-store-name {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 18px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .shopinfo-store-nav-inner {
    grid-template-columns: 1fr;
  }

  .shopinfo-store-section {
    padding: 28px 16px 0;
  }

  .shopinfo-store-inner {
    padding: 18px 14px 24px;
  }

  .shopinfo-store-logo {
    width: 74px;
    height: 74px;
    margin-bottom: 14px;
  }
}

/* ========== RECRUITページ ========== */
.main-recruit {
  padding-bottom: 0;
}

.recruit-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 52vh;
  background: var(--color-bg);
}

.recruit-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.recruit-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.recruit-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.recruit-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 64px 20px 40px;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.recruit-hero-title {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.recruit-hero-sub {
  margin: 18px 0 0 0;
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  line-height: 1.8;
}

.recruit-title {
  margin-bottom: 8px;
}

.recruit-lead {
  margin-top: -8px;
}

.section-recruit {
  padding-top: 24px;
  padding-bottom: 24px;
}

.recruit-h3 {
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 16px 0;
}

.recruit-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.02em;
}

.recruit-text--en {
  margin-top: 14px;
}

.recruit-philosophy {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.recruit-philosophy-block {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 18px 16px;
}

.recruit-philosophy-title {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.recruit-philosophy-label {
  font-family: var(--font-mincho);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.recruit-philosophy-mission {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 18px 16px;
}

.recruit-philosophy-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.recruit-mission-item-title {
  font-family: var(--font-mincho);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.recruit-attitude {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 18px 16px;
}

.recruit-job {
  margin-top: 18px;
}

.recruit-job-title {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px 0;
  letter-spacing: 0.06em;
}

.recruit-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.recruit-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.recruit-table th,
.recruit-table td {
  border: 1px solid var(--color-border);
  padding: 12px 12px;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.75;
}

.recruit-table th {
  width: 180px;
  font-weight: 600;
  background: rgba(232, 221, 212, 0.35);
}

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

.recruit-contact-btn {
  margin-top: 18px;
  text-align: center;
}

@media (max-width: 768px) {
  .recruit-hero {
    min-height: 46vh;
  }

  .recruit-hero-inner {
    min-height: 46vh;
    padding: 44px 16px 26px;
  }

  .recruit-hero-title {
    font-size: 22px;
    letter-spacing: 0.12em;
  }

  .recruit-hero-sub {
    font-size: 15px;
    margin-top: 14px;
  }

  .recruit-h3 {
    font-size: 18px;
  }

  .recruit-text {
    font-size: 14px;
  }

  .recruit-table {
    min-width: 420px;
  }

  .recruit-table th {
    width: 140px;
  }
}

/* ========== NEWSページ（仮） ========== */
.main-news {
  padding-bottom: 24px;
}

.news-hero {
  padding: 56px 0 10px;
}

.news-title {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.section-news {
  padding-top: 16px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.news-card-link {
  display: block;
  text-decoration: none;
}

.news-card-link:hover {
  text-decoration: none;
}

.news-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.news-card-media img {
  width: 60%;
  height: auto;
  display: block;
  opacity: 0.95;
}

.news-card-body {
  padding-top: 12px;
}

.news-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  background: #2C88C7;
  padding: 2px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.news-card-title {
  margin: 0 0 8px 0;
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.news-card-text {
  margin: 0 0 10px 0;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(79, 63, 58, 0.9);
}

.news-card-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(79, 63, 58, 0.75);
}

.news-card-date::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid rgba(79, 63, 58, 0.35);
  border-radius: 3px;
  display: inline-block;
}

@media (max-width: 768px) {
  .news-hero {
    padding: 44px 0 6px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .news-card-media img {
    width: 52%;
  }
}
