/*
Theme Name: PRISM
Theme URI: https://example.com/
Author: PRISM
Description: 「気分は、色で選ぶ。」ノンアルコールのクラフトソーダ専門店 PRISM のブランドサイト用テーマ。デザインカンプ（design_handoff_prism_site）のトップページを再現しています。
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: prism
*/

/* ==========================================================================
   Reset / Base
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #EDEEF0;
  color: #1A1A1A;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: #2D8FE0;
  color: #fff;
}

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --accent: #2D8FE0;
  --accent-text: color-mix(in srgb, var(--accent) 62%, #1a1a1a);
  --accent-strong: color-mix(in srgb, var(--accent) 70%, #000000);
  --tint: #F6F7F9;

  --color-text: #1A1A1A;
  --color-text-sub: #6A6A6A;
  --color-text-mute: #9A9A9A;
  --color-border: #EAECEF;
  --color-footer-bg: #1A1A1A;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;

  --container-max: 1200px;
  --outer-max: 1440px;
}

/* ==========================================================================
   Layout shell
   ========================================================================== */
.prism-site {
  position: relative;
  max-width: var(--outer-max);
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 80px rgba(0, 0, 0, .06);
  overflow: hidden;
}

.prism-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.prism-section {
  padding: 100px 0;
}

.prism-section--tint {
  background: var(--tint);
}

.prism-eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .24em;
  color: var(--accent-text);
  margin: 0 0 16px;
}

.prism-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.prism-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 15px 32px;
  border-radius: 3px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: filter .2s, background .2s, color .2s;
}

.prism-btn--primary ,
.wp-block-button__link.add_to_cart_button.ajax_add_to_cart{
  background: var(--accent-strong);
  color: #fff;
  box-shadow: 0 12px 28px -12px var(--accent);
}
.prism-btn--primary:hover,
.wp-block-button__link.add_to_cart_button.ajax_add_to_cart:hover{
  filter: brightness(.93);
}

.prism-btn--outline ,
.wp-block-button__link.add_to_cart_button.ajax_add_to_cart{
  background: #fff;
  color: var(--accent-text);
  border-color: var(--accent-text);
}
.prism-btn--outline:hover,
.wp-block-button__link.add_to_cart_button.ajax_add_to_cart:hover{
  background: var(--accent-strong);
  color: #fff;
}

/*
 * お買い物カゴ（WooCommerce Cartブロック）の「購入手続きに進む」ボタン。
 * .prism-btn--outline と同じ見た目・挙動（白背景＋気分カラーの枠線と文字、
 * ホバーで気分カラーが塗りつぶされる）にそろえる。
 */
.wc-block-cart__submit-button.wc-block-components-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 15px 32px;
  border-radius: 3px;
  text-decoration: none !important;
  border: 1.5px solid var(--accent-text);
  background: #fff !important;
  color: var(--accent-text) !important;
  transition: filter .2s, background .2s, color .2s;
}
.wc-block-cart__submit-button.wc-block-components-button:hover {
  background: var(--accent-strong) !important;
  color: #fff !important;
}
.wc-block-cart__submit-button .wc-block-components-button__text {
  color: inherit;
}
/*お買い物カゴフォント色*/
.prism-page-title.prism-reveal.is-visible{
  color: var(--accent-text);
}
/*お買い物カゴ商品無しの時の関連商品リストスタイル*/
.prism-entry-content ul li.wc-block-grid__product {
    list-style: none !important;
}
/*
 * 支払いページ（WooCommerce Checkoutブロック）の「注文を確定する」ボタン。
 * カートの「購入手続きに進む」と同じく .prism-btn--outline と同じ見た目・挙動にそろえる。
 */
.wc-block-components-checkout-place-order-button.wc-block-components-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 15px 32px;
  border-radius: 3px;
  text-decoration: none !important;
  border: 1.5px solid var(--accent-text);
  background: #fff !important;
  color: var(--accent-text) !important;
  transition: filter .2s, background .2s, color .2s;
}
.wc-block-components-checkout-place-order-button.wc-block-components-button:hover {
  background: var(--accent-strong) !important;
  color: #fff !important;
}
.wc-block-components-checkout-place-order-button .wc-block-components-button__text {
  color: inherit;
}

/* ==========================================================================
   Image placeholder (実写真差し替え前のプレースホルダー)
   ========================================================================== */
.prism-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: repeating-linear-gradient(45deg, #F0F1F3, #F0F1F3 10px, #E7E9EC 10px, #E7E9EC 20px);
  border: 1px dashed #D6D9DD;
  color: #9A9A9A;
  font-size: 12px;
  line-height: 1.6;
  padding: 12px;
  overflow: hidden;
}

.prism-placeholder--rounded { border-radius: 6px; }
.prism-placeholder--rounded-sm { border-radius: 4px; }
.prism-placeholder--circle { border-radius: 50%; }
.prism-placeholder--photo {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: none;
}

/* ==========================================================================
   スクロール登場演出（炭酸の泡がふわっと上がってくるイメージ）
   ========================================================================== */
.prism-reveal {
  opacity: 0;
  transform: translateY(28px) scale(.97);
  transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.prism-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .prism-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Loading screen
   ========================================================================== */
@keyframes prismBeamGrow {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
@keyframes prismRayGrow {
  0% { transform: scaleX(0); opacity: 0; }
  45% { opacity: 1; }
  100% { transform: scaleX(1); opacity: 1; }
}
@keyframes prismShapeIn {
  0% { opacity: 0; }
  100% { opacity: .92; }
}
@keyframes prismSwipeHint {
  0%, 100% { transform: translateX(0); opacity: .5; }
  50% { transform: translateX(4px); opacity: 1; }
}

.prism-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .6s ease;
}
.prism-loader.is-fading {
  opacity: 0;
  pointer-events: none;
}
.prism-loader.is-done {
  display: none;
}

.prism-loader__prism {
  position: relative;
  width: 210px;
  height: 90px;
  margin-bottom: 34px;
}
.prism-loader__beam {
  position: absolute;
  left: 0;
  top: 44px;
  width: 92px;
  height: 2px;
  background: #1A1A1A;
  transform-origin: left center;
  animation: prismBeamGrow .5s ease forwards;
}
.prism-loader__triangle {
  position: absolute;
  left: 92px;
  top: 29px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 20px solid #1A1A1A;
  opacity: 0;
  animation: prismShapeIn .35s ease forwards;
  animation-delay: .42s;
}
.prism-loader__ray {
  position: absolute;
  left: 112px;
  top: 44px;
  width: 86px;
  height: 2px;
  transform-origin: left center;
  animation: prismRayGrow .55s ease forwards;
}
.prism-loader__ray:nth-child(1) { background: #E63E2D; transform: rotate(-24deg); animation-delay: .58s; }
.prism-loader__ray:nth-child(2) { background: #F5B700; transform: rotate(-14deg); animation-delay: .65s; }
.prism-loader__ray:nth-child(3) { background: #3FB950; transform: rotate(-4deg); animation-delay: .72s; }
.prism-loader__ray:nth-child(4) { background: #2D8FE0; transform: rotate(6deg); animation-delay: .79s; }
.prism-loader__ray:nth-child(5) { background: #9B5DE5; transform: rotate(16deg); animation-delay: .86s; }
.prism-loader__ray:nth-child(6) { background: #FF6FA5; transform: rotate(26deg); animation-delay: .93s; }

.prism-loader__logo {
  margin-bottom: 20px;
}
.prism-loader__logo img {
  display: block;
  height: 110px;
  width: auto;
  object-fit: contain;
}
.prism-loader__progress {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--color-text-mute);
  margin: 0;
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   Header
   ========================================================================== */
.prism-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--outer-max);
  z-index: 50;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #EEEEEE;
}
body.admin-bar .prism-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .prism-header {
    top: 46px;
  }
}
.prism-nav a,
.prism-icon-link,
.prism-hamburger {
  color: var(--color-text);
  transition: color .5s ease;
}

#main {
  padding-top: 76px;
}
.home #main {
  padding-top: 0;
}
.prism-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.prism-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 8px;
}
.prism-logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.prism-logo__word {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: .16em;
  color: var(--color-text);
}
.prism-logo__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.prism-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.prism-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: .02em;
}
.prism-nav .current-menu-item > a,
.prism-nav a[aria-current="page"] {
  font-weight: 700;
}

.prism-header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.prism-mood-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.prism-mood-dots button {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: .85;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.prism-mood-dots button.is-active {
  transform: scale(1.05);
  opacity: 1;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--dot-color, var(--accent));
}
.prism-header__divider {
  width: 1px;
  height: 20px;
  background: #E4E4E4;
}
.prism-icon-link {
  color: var(--color-text);
  display: flex;
  position: relative;
}
.prism-cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  min-width: 15px;
  height: 15px;
  padding: 0 3px;
  border-radius: 50%;
  background: var(--accent-strong);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
}

.prism-hamburger {
  display: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  color: var(--color-text);
  cursor: pointer;
}
.prism-hamburger svg { display: block; }
.prism-hamburger .is-open-icon { display: none; }
.prism-hamburger.is-open .is-closed-icon { display: none; }
.prism-hamburger.is-open .is-open-icon { display: block; }

/* Mobile slide-down menu panel */
.prism-mobile-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: max-height .38s ease, opacity .28s ease;
}
.prism-mobile-panel.is-open {
  max-height: 560px;
  opacity: 1;
  border-bottom-color: #EEEEEE;
}
.prism-mobile-panel__inner {
  padding: 8px 22px 26px;
}
.prism-mobile-nav {
  display: flex;
  flex-direction: column;
}
.prism-mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid #F0F0F0;
  display: flex;
  align-items: center;
  gap: 9px;
}
.prism-mobile-nav a:last-child {
  border-bottom: none;
}
.prism-mobile-nav .current-menu-item > a {
  font-weight: 700;
}
.prism-mobile-panel__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: #8A8A8A;
  margin: 22px 0 14px;
}
.prism-mobile-panel__dots {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.prism-mobile-panel__dots button {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: .9;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.prism-mobile-panel__dots button.is-active {
  transform: scale(1.06);
  opacity: 1;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--dot-color, var(--accent));
}

/* ==========================================================================
   Hero
   ========================================================================== */
.prism-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.prism-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.prism-hero__bg video,
.prism-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prism-hero__bg .prism-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.prism-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.1) 0%, rgba(10, 10, 12, .4) 0%, rgba(10, 10, 12, .1) 9%), linear-gradient(to top, rgba(10, 10, 12, .55) 10%, rgba(10, 10, 12, 0) 25%);
}
.prism-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 560px;
  padding-top: 140px;
  padding-bottom: 88px;
}
.prism-hero .prism-eyebrow {
  display: inline-block;
  color: var(--accent-text);
  font-size: 16px;
  background: rgba(255, 255, 255, .8);
  padding: 6px 14px;
  border-radius: 999px;
}
.prism-hero h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.4;
  letter-spacing: .01em;
  color: #fff;
  margin: 0 0 22px;
}
.prism-hero__lead {
  font-size: 15.5px;
  line-height: 2;
  color: rgba(255, 255, 255, .82);
  margin: 0 0 44px;
  max-width: 400px;
}
.prism-hero__mood-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.prism-hero__mood-label {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: .04em;
}
.prism-swipe-hint {
  display: none;
}
.prism-mood-selector {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}
.prism-mood-selector button {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.prism-mood-selector__circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 12px -5px rgba(0, 0, 0, .22);
}
.prism-mood-selector button.is-active .prism-mood-selector__circle {
  transform: scale(1.08);
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--mood-color), 0 12px 26px -6px var(--mood-color);
}
.prism-mood-selector__phrase {
  font-size: 11.5px;
  margin-top: 13px;
  line-height: 1.4;
  text-align: center;
  color: rgba(255, 255, 255, .75);
  font-weight: 400;
}
.prism-mood-selector button.is-active .prism-mood-selector__phrase {
  color: #fff;
  font-weight: 600;
}

.prism-scroll-hint {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.prism-scroll-hint__text {
  writing-mode: vertical-rl;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  opacity: .85;
}
.prism-scroll-hint__line {
  position: relative;
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, .3);
  overflow: hidden;
}
.prism-scroll-hint__line::before {
  content: '';
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: prismScrollHint 1.8s ease-in-out infinite;
}
@keyframes prismScrollHint {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}
@media (max-width: 680px) {
  .prism-scroll-hint {
    display: none;
  }
}

/* ==========================================================================
   Concept
   ========================================================================== */
.prism-concept__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.prism-concept h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.55;
  color: var(--color-text);
  margin: 0 0 26px;
}
.prism-concept p {
  font-size: 15.5px;
  line-height: 2.05;
  color: #3E3E3E;
  margin: 0 0 16px;
}
.prism-concept p:last-of-type {
  margin-bottom: 0;
}
.prism-concept .prism-eyebrow {
  color: var(--accent-text);
}
.prism-concept__owner {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #E4E6E9;
}
.prism-concept__owner .prism-placeholder {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
}
.prism-concept__owner p {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--color-text-sub);
  margin: 0;
}
.prism-concept__photo {
  width: 100%;
  height: 420px;
}

/* ==========================================================================
   Section header (menu / shop 共通)
   ========================================================================== */
.prism-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 52px;
}

/* ==========================================================================
   Menu excerpt
   ========================================================================== */
.prism-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.prism-menu-card {
  position: relative;
}
.prism-menu-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: #1A1A1A;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 999px;
}
.prism-menu-card__photo {
  width: 100%;
  height: 300px;
  margin-bottom: 22px;
}
.prism-menu-card__mood {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}
.prism-menu-card__mood-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.prism-menu-card__mood-label {
  font-size: 12.5px;
  color: #8A8A8A;
  letter-spacing: .02em;
}
.prism-menu-card h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text);
  margin: 0 0 8px;
  line-height: 1.5;
}
.prism-menu-card__price {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
  margin: 0;
}
.prism-section__cta {
  text-align: center;
  margin-top: 56px;
}

/* ==========================================================================
   Shop excerpt
   ========================================================================== */
.prism-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.prism-shop-card {
  background: #fff;
  border-radius: 6px;
  padding: 22px;
  border: 1px solid var(--color-border);
}
.prism-shop-card__photo {
  width: 100%;
  height: 260px;
  margin-bottom: 20px;
}
.prism-shop-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}
.prism-shop-card__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.prism-shop-card__dot--outline {
  border: 1.5px solid #D2D2D2;
}
.prism-shop-card__label {
  font-size: 12px;
  color: #8A8A8A;
}
.prism-shop-card h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--color-text);
  margin: 0 0 8px;
  line-height: 1.55;
}
.prism-shop-card__price {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
  margin: 0;
}

/* ==========================================================================
   Instagram
   ========================================================================== */
.prism-instagram__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}
.prism-instagram__head h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  color: var(--color-text);
  margin: 0;
}
.prism-instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.prism-instagram-grid__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
}
.prism-instagram-grid__item .prism-placeholder {
  width: 100%;
  height: 100%;
  transition: transform .5s ease;
}
.prism-instagram-grid__item:hover .prism-placeholder {
  transform: scale(1.08);
}
.prism-instagram__cta-mobile {
  display: none;
}

/* ==========================================================================
   Visit
   ========================================================================== */
.prism-visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.prism-visit h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.45;
  color: var(--color-text);
  margin: 0 0 28px;
}
.prism-visit__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 36px;
}
.prism-visit__meta p {
  margin: 0;
}
.prism-visit__meta p:first-child {
  font-size: 16px;
  color: #2E2E2E;
}
.prism-visit__meta p:last-child {
  font-size: 15px;
  color: #5A5A5A;
}
.prism-visit__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.prism-visit__photo {
  width: 100%;
  height: 340px;
  display: block;
  border: 0;
  border-radius: 6px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.prism-footer {
  background: var(--color-footer-bg);
  color: #fff;
}
.prism-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 72px 40px 40px;
}
.prism-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.prism-footer__brand {
  max-width: 260px;
}
.prism-footer__logo-chip {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 18px;
}
.prism-footer__logo-chip img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}
.prism-footer__brand p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text-mute);
  margin: 0;
}
.prism-footer__nav,
.prism-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prism-footer__nav a {
  font-size: 13.5px;
  color: #E4E4E4;
  text-decoration: none;
}
.prism-footer__legal a {
  font-size: 13px;
  color: var(--color-text-mute);
  text-decoration: none;
}
.prism-footer__social {
  color: #fff;
  display: flex;
  align-items: flex-start;
}
.prism-footer__bottom {
  border-top: 1px solid #2E2E2E;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.prism-footer__copyright {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: .08em;
  color: #7A7A7A;
  margin: 0;
}
.prism-footer__dots {
  display: flex;
  gap: 6px;
}
.prism-footer__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}

/* ==========================================================================
   下層ページ共通（パンくず・見出し・CTAバンド）
   ========================================================================== */
.prism-breadcrumb {
  font-size: 13px;
  color: #9A9A9A;
  margin: 0 0 26px;
  padding-top: 64px;
}
.prism-breadcrumb a {
  color: #9A9A9A;
  text-decoration: none;
}
.prism-page-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0 0 16px;
}
.prism-page-lead {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--color-text-sub);
  margin: 0 0 28px;
  max-width: 520px;
}
.prism-section-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 26px;
  color: var(--color-text);
  margin: 0 0 16px;
}
.prism-section-lead {
  font-size: 14px;
  color: var(--color-text-sub);
  margin: 0 0 40px;
}

.prism-cta-band {
  background: var(--tint);
  padding: 72px 0;
  text-align: center;
}
.prism-cta-band h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text);
  margin: 0 0 12px;
}
.prism-cta-band p {
  font-size: 14px;
  color: var(--color-text-sub);
  margin: 0 0 24px;
}
.prism-cta-band .prism-eyebrow {
  color: var(--accent-text);
}
.prism-cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   ショップ一覧・色フィルタ
   ========================================================================== */
.prism-color-filter {
  margin-top: 20px;
  margin-bottom: 24px;
}
.prism-color-filter__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 16px;
  letter-spacing: .02em;
}
.prism-color-filter__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.prism-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 13px;
  font-family: var(--font-body);
  background: #F6F7F9;
  color: var(--color-text);
  transition: background .2s, color .2s;
}
.prism-chip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--chip-color, #1A1A1A);
  display: inline-block;
}
.prism-chip.is-active {
  background: var(--chip-color, #1A1A1A);
  color: #fff;
}
.prism-chip.is-active .prism-chip__dot {
  background: #fff;
}
.prism-chip__mood {
  font-size: 11px;
  color: #9A9A9A;
}
.prism-chip.is-active .prism-chip__mood {
  color: rgba(255, 255, 255, .75);
}
.prism-color-filter__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0 4px;
}
.prism-color-filter__count {
  font-size: 13px;
  color: #8A8A8A;
}
.prism-color-filter__sort-form {
  margin: 0;
}
.prism-color-filter__sort {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F6F7F9;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--color-text);
  border-radius: 3px;
}
.prism-color-filter__sort select {
  appearance: none;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text);
  cursor: pointer;
  padding-right: 4px;
}

.prism-shop-grid {
  padding: 24px 0 88px;
}
.prism-shop-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.prism-shop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.prism-shop-card {
  transition: opacity .25s, filter .25s;
}
.prism-shop-card.is-dimmed {
  opacity: .28;
  filter: grayscale(60%);
  pointer-events: none;
}

/* ==========================================================================
   商品詳細
   ========================================================================== */
.prism-product {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 16px 0 88px;
}
.prism-product__main-photo {
  position: relative;
  width: 100%;
  height: 460px;
  margin-bottom: 14px;
  border-radius: 4px;
  overflow: hidden;
  background: #F0F1F3;
}
.prism-product__slide {
  display: none;
  width: 100%;
  height: 100%;
}
.prism-product__slide.is-active {
  display: block;
}
.prism-product__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prism-product__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.prism-product__thumb {
  width: 100%;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  display: block;
  transition: border-color .2s;
}
.prism-product__thumb.is-active {
  border-color: var(--accent);
}
.prism-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prism-product__dots {
  display: none;
}
.prism-product__mood {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.prism-product__mood-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.prism-product__mood-dot--outline {
  border: 1.5px solid #D2D2D2;
}
.prism-product__mood-label {
  font-size: 13px;
  color: #8A8A8A;
}
.prism-product__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0 0 10px;
}
.prism-product__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text);
  margin: 0 0 26px;
}
.prism-product__tax-note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--color-text-mute);
}
.prism-product__desc {
  font-size: 14.5px;
  line-height: 1.9;
  color: #3E3E3E;
  margin-bottom: 26px;
}
.prism-product__desc p {
  margin: 0 0 8px;
}
.prism-product__desc p:last-child {
  margin-bottom: 0;
}
.prism-product-spec {
  margin-bottom: 26px;
  border-top: 1px solid #EFEFEF;
}
.prism-product-spec__row {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #EFEFEF;
}
.prism-product-spec__label {
  width: 96px;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--color-text-mute);
}
.prism-product-spec__value {
  font-size: 13px;
  color: var(--color-text);
}
.prism-product__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}
.prism-qty-stepper {
  display: flex;
  align-items: center;
  background: #F6F7F9;
  border-radius: 3px;
}
.prism-qty-stepper__btn {
  border: none;
  background: none;
  padding: 12px 18px;
  font-size: 16px;
  color: #8A8A8A;
  cursor: pointer;
}
.prism-qty-stepper .quantity {
  display: flex;
}
.prism-qty-stepper input.qty {
  width: 44px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 0;
  font-family: var(--font-body);
  -moz-appearance: textfield;
}
.prism-qty-stepper input.qty::-webkit-outer-spin-button,
.prism-qty-stepper input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.prism-product__add-btn {
  flex: 1;
  border: none;
}
.prism-product__shipping {
  background: #F6F7F9;
  border-radius: 3px;
  padding: 16px 20px;
  font-size: 13px;
  color: #4A4A4A;
  display: flex;
  align-items: center;
  gap: 10px;
}
.prism-product__shipping svg {
  flex-shrink: 0;
}

.prism-howto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 40px;
}
.prism-howto-step__photo {
  width: 100%;
  height: 180px;
  margin-bottom: 18px;
}
.prism-howto-step__title {
  font-weight: 700;
  color: var(--color-text);
  font-size: 14.5px;
  margin: 0 0 6px;
}
.prism-howto-step__desc {
  font-size: 13.5px;
  line-height: 1.85;
  color: #5A5A5A;
  margin: 0;
}
.prism-related {
  padding-top: 80px;
}

/* ==========================================================================
   メニューページ
   ========================================================================== */
.prism-menu-jump {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.prism-menu-jump a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F6F7F9;
  color: var(--color-text);
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 3px;
  text-decoration: none;
}
.prism-menu-jump__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.prism-drinks {
  padding: 32px 0 24px;
}
.prism-drink-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
}
.prism-drink-row__photo {
  width: 100%;
  height: 300px;
}
.prism-drink-row.is-reversed .prism-drink-row__photo {
  order: 2;
}
.prism-drink-row.is-reversed .prism-drink-row__text {
  order: 1;
}
.prism-drink-row__mood {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.prism-drink-row__dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.prism-drink-row__mood span:last-child {
  font-size: 13px;
  color: #8A8A8A;
}
.prism-drink-row__text h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  color: var(--color-text);
  margin: 0 0 12px;
}
.prism-drink-row__desc {
  font-size: 14px;
  line-height: 1.9;
  color: #5A5A5A;
  margin: 0;
}
.prism-drink-row__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
  margin-top: 14px;
}
.prism-season.prism-section {
  padding: 72px 0;
}
.prism-season__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.prism-season__photo {
  width: 100%;
  height: 300px;
}
.prism-season__badge {
  display: inline-block;
  background: #1A1A1A;
  color: #fff;
  font-size: 11px;
  padding: 5px 13px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.prism-food {
  padding: 80px 0;
}
.prism-food-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 32px;
  margin-top: 40px;
}
.prism-food-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.prism-food-card__photo {
  width: 140px;
  height: 110px;
  flex-shrink: 0;
}
.prism-food-card__mood {
  margin-bottom: 4px;
}
.prism-food-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text);
  margin: 4px 0 6px;
}
.prism-food-card__desc {
  font-size: 13px;
  color: #8A8A8A;
  margin: 0 0 6px;
}
.prism-food-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text);
  margin: 0;
}

/* ==========================================================================
   席予約ページ
   ========================================================================== */
.prism-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0 48px;
}
.prism-flow-step {
  background: #F6F7F9;
  padding: 22px 24px;
  border-radius: 4px;
}
.prism-flow-step__title {
  font-weight: 700;
  color: var(--color-text);
  font-size: 14px;
  margin: 0 0 6px;
}
.prism-flow-step__desc {
  font-size: 13px;
  color: var(--color-text-sub);
  margin: 0;
}
.prism-reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 96px;
}
.prism-reservation-info__photo {
  width: 100%;
  height: 200px;
  margin-bottom: 28px;
}
.prism-info-block {
  margin-bottom: 28px;
}
.prism-info-block h3 {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text);
  margin: 0 0 12px;
}
.prism-dot-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.prism-dot-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  color: #4A4A4A;
  margin-bottom: 8px;
  line-height: 1.7;
}
.prism-dot-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #C9C9C9;
}
.prism-phone-box {
  background: #F6F7F9;
  padding: 20px 22px;
  border-radius: 4px;
}
.prism-phone-box__label {
  font-size: 12.5px;
  color: var(--color-text-mute);
  margin: 0 0 6px;
}
.prism-phone-box__number {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  margin: 0;
}
.prism-phone-box__note {
  font-size: 11px;
  color: #B0B0B0;
  margin: 6px 0 0;
}
.prism-reservation-form h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-text);
  margin: 0 0 28px;
}

/* ==========================================================================
   フォーム共通（席予約・お問い合わせ）
   ========================================================================== */
.prism-field-group {
  margin-bottom: 22px;
}
.prism-field-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
}
.prism-required {
  display: inline-block;
  background: #1A1A1A;
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  margin-left: 8px;
  border-radius: 2px;
  vertical-align: middle;
}
.prism-optional {
  display: inline-block;
  background: #EDEDED;
  color: var(--color-text-mute);
  font-size: 10px;
  padding: 2px 8px;
  margin-left: 8px;
  border-radius: 2px;
  vertical-align: middle;
}
.prism-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.prism-field-note {
  font-size: 11px;
  color: #B0B0B0;
  margin: 6px 0 0;
}
.prism-form input[type="text"],
.prism-form input[type="email"],
.prism-form input[type="tel"],
.prism-form input[type="date"],
.prism-form select,
.prism-form textarea {
  width: 100%;
  background: #F6F7F9;
  border: none;
  border-radius: 3px;
  height: 46px;
  padding: 0 16px;
  font-size: 13.5px;
  color: var(--color-text);
  font-family: var(--font-body);
  appearance: none;
}
.prism-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A9A9A' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 11px;
  padding-right: 40px;
  cursor: pointer;
}
.prism-form textarea {
  height: 120px;
  padding: 12px 16px;
  resize: none;
}
.prism-form input::placeholder,
.prism-form textarea::placeholder {
  color: #B0B0B0;
}
.prism-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: 13px;
  color: var(--color-text);
  cursor: pointer;
}
.prism-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.prism-checkbox-row a {
  color: var(--color-text);
}
.prism-checkbox-row--center {
  justify-content: center;
}
.prism-form__submit {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* Contact Form 7 との連携（見た目をprism-formに合わせる） */
.prism-form--cf7 form p {
  margin: 0 0 22px;
}
.prism-form--cf7 label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
}
.prism-form--cf7 input[type="text"],
.prism-form--cf7 input[type="email"],
.prism-form--cf7 input[type="tel"],
.prism-form--cf7 input[type="url"],
.prism-form--cf7 input[type="number"],
.prism-form--cf7 input[type="date"],
.prism-form--cf7 select,
.prism-form--cf7 textarea {
  width: 100%;
  background: #F6F7F9;
  border: none;
  border-radius: 3px;
  height: 46px;
  padding: 0 16px;
  font-size: 13.5px;
  color: var(--color-text);
  font-family: var(--font-body);
}
.prism-form--cf7 textarea {
  height: 120px;
  padding: 12px 16px;
  resize: none;
}
.prism-form--cf7 input[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--accent-strong);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  padding: 16px 32px;
  border: none;
  border-radius: 3px;
  box-shadow: 0 12px 28px -12px var(--accent);
  cursor: pointer;
  transition: filter .2s;
}
.prism-form--cf7 input[type="submit"]:hover {
  filter: brightness(.93);
}
.prism-form--cf7 .wpcf7-acceptance {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text);
}
.prism-form--cf7 .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.prism-form--cf7 .wpcf7-not-valid-tip {
  display: block;
  font-size: 12px;
  color: #E63E2D;
  margin-top: 6px;
}
.prism-form--cf7 .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: 3px;
  font-size: 13px;
}
.prism-form--cf7-center p:has(.wpcf7-acceptance) {
  text-align: center;
}

/* ==========================================================================
   店舗情報・アクセスページ
   ========================================================================== */
.prism-access-photos {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
}
.prism-access-photos .prism-placeholder {
  height: 300px;
}
.prism-access-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 96px;
}
.prism-access-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
  margin: 0 0 22px;
}
.prism-info-table {
  width: 100%;
  border-collapse: collapse;
}
.prism-info-table tr {
  border-top: 1px solid #F0F0F0;
}
.prism-info-table tr:first-child {
  border-top: none;
}
.prism-info-table th {
  text-align: left;
  padding: 14px 0;
  width: 110px;
  color: var(--color-text-mute);
  font-size: 13px;
  font-weight: 400;
  vertical-align: top;
}
.prism-info-table td {
  text-align: left;
  padding: 14px 0;
  font-size: 14px;
  vertical-align: top;
}
.prism-info-table__note {
  color: var(--color-text-mute);
  font-size: 13px;
}
.prism-info-table__sns {
  display: flex;
  align-items: center;
  gap: 8px;
}
.prism-access-map {
  width: 100%;
  height: 380px;
  display: block;
  border: 0;
  border-radius: 6px;
}
.prism-directions {
  background: #F6F7F9;
  padding: 18px 20px;
  margin-top: 20px;
  border-radius: 4px;
}
.prism-directions__title {
  font-weight: 700;
  color: var(--color-text);
  font-size: 13px;
  margin: 0 0 6px;
}
.prism-directions__desc {
  font-size: 13px;
  color: #5A5A5A;
  margin: 0;
  line-height: 1.8;
}
.prism-access-map__cta-mobile {
  display: none;
  margin-top: 16px;
  width: 100%;
}

/* ==========================================================================
   お問い合わせページ
   ========================================================================== */
.prism-contact {
  max-width: 680px;
}
.prism-contact__head {
  text-align: center;
}
.prism-contact__head .prism-breadcrumb--left {
  text-align: left;
  margin-bottom: 26px;
}
.prism-route-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 8px;
}
.prism-route-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F6F7F9;
  padding: 20px 22px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--color-text);
}
.prism-route-card__title {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text);
  margin: 0 0 3px;
}
.prism-route-card__desc {
  font-size: 12.5px;
  color: #8A8A8A;
  margin: 0;
}
.prism-route-card__arrow {
  margin-left: auto;
  color: var(--color-text-mute);
  flex-shrink: 0;
}
.prism-contact__form-wrap {
  padding: 40px 0 96px;
}

/* ==========================================================================
   固定ページ本文（プライバシーポリシー等）
   ========================================================================== */
.prism-legal-page {
  padding-bottom: 96px;
  max-width: 840px;
}
.prism-entry-content {
  font-size: 14.5px;
  line-height: 2;
  color: #3E3E3E;
}
.prism-entry-content h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
  margin: 48px 0 18px;
}
.prism-entry-content h2:first-child {
  margin-top: 0;
}
.prism-entry-content h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
  margin: 32px 0 14px;
}
.prism-entry-content p {
  margin: 0 0 20px;
}
.prism-entry-content ul,
.prism-entry-content ol {
  margin: 0 0 20px;
  padding-left: 1.4em;
}
.prism-entry-content ul li {
  list-style: disc;
}
.prism-entry-content ol li {
  list-style: decimal;
}
.prism-entry-content li {
  margin-bottom: 8px;
  margin-left: 0;
  line-height: 1.9;
}
.prism-entry-content a {
  color: var(--accent-text);
  text-decoration: underline;
}
.prism-entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 13.5px;
}
.prism-entry-content th,
.prism-entry-content td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  vertical-align: top;
}
.prism-entry-content th {
  background: var(--tint);
  width: 160px;
  font-weight: 500;
  color: var(--color-text-sub);
}
.prism-entry-content strong {
  font-weight: 700;
  color: var(--color-text);
}

/* ==========================================================================
   マイアカウントページ（WooCommerce classic templates）
   お問い合わせページと同じ見た目・挙動（グレー背景の入力欄、気分カラーの
   ボタン、カード状のブロック）にそろえる。
   ========================================================================== */
body.woocommerce-account .prism-legal-page {
  max-width: 680px;
}
body.woocommerce-account .prism-page-title {
  text-align: center;
}

/* フォーム全般（ログイン・新規登録・アカウント詳細・お届け先編集） */
.woocommerce-account form:after {
  content: '';
  display: table;
  clear: both;
}
.woocommerce-account .form-row {
  margin-bottom: 22px;
}
.woocommerce-account .form-row-first,
.woocommerce-account .form-row-last {
  width: 48%;
}
.woocommerce-account .form-row-first {
  float: left;
}
.woocommerce-account .form-row-last {
  float: right;
}
.woocommerce-account .form-row-wide {
  clear: both;
  width: 100%;
}
.woocommerce-account form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
}
.woocommerce-account form label.woocommerce-form-login__rememberme,
.woocommerce-account form label.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}
.woocommerce-account form .input-text,
.woocommerce-account form input[type="text"],
.woocommerce-account form input[type="email"],
.woocommerce-account form input[type="password"],
.woocommerce-account form input[type="tel"],
.woocommerce-account form select,
.woocommerce-account form textarea {
  width: 100%;
  background: #F6F7F9;
  border: none;
  border-radius: 3px;
  height: 46px;
  padding: 0 16px;
  font-size: 13.5px;
  color: var(--color-text);
  font-family: var(--font-body);
  appearance: none;
}
.woocommerce-account form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A9A9A' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 11px;
  padding-right: 40px;
  cursor: pointer;
}
.woocommerce-account form textarea {
  height: 120px;
  padding: 12px 16px;
  resize: none;
}
.woocommerce-account form .password-input {
  position: relative;
  display: block;
}
.woocommerce-account form .show-password-input {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce-account form .woocommerce-form__input-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.woocommerce-account .woocommerce-LostPassword {
  font-size: 13px;
  margin: 10px 0 0;
}
.woocommerce-account .woocommerce-LostPassword a {
  color: var(--accent-text);
  text-decoration: underline;
}

/* ボタン（ログイン・登録・更新・注文アクション 共通） */
.woocommerce-account .woocommerce-Button,
.woocommerce-account button.button,
.woocommerce-account input.button,
.woocommerce-account a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--accent-strong);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  padding: 16px 32px;
  border: none;
  border-radius: 3px;
  box-shadow: 0 12px 28px -12px var(--accent);
  cursor: pointer;
  transition: filter .2s;
  text-decoration: none;
}
.woocommerce-account .woocommerce-Button:hover,
.woocommerce-account button.button:hover,
.woocommerce-account input.button:hover,
.woocommerce-account a.button:hover {
  filter: brightness(.93);
}

/* ログイン／新規登録の2カラムを縦積みに */
.woocommerce-account .u-columns {
  display: block;
}
.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
  width: 100%;
  float: none;
}
.woocommerce-account .u-column2 {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

/* アカウントナビゲーション（ダッシュボード・注文・お届け先 など） */
.woocommerce-MyAccount-navigation {
  margin-bottom: 32px;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
  background: #F6F7F9;
  border-radius: 6px;
  overflow: hidden;
}
.woocommerce-MyAccount-navigation-link {
  list-style: none !important;
  margin: 0;
  border-bottom: 1px solid #fff;
}
.woocommerce-MyAccount-navigation-link:last-child {
  border-bottom: none;
}
.woocommerce-MyAccount-navigation-link a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: background-color .18s, color .18s;
}
.woocommerce-MyAccount-navigation-link a::after {
  content: '→';
  color: var(--color-text-mute);
  font-size: 13px;
  transition: transform .18s;
}
.woocommerce-MyAccount-navigation-link a:hover {
  background: #EDEEF0;
}
.woocommerce-MyAccount-navigation-link a:hover::after {
  transform: translateX(3px);
}
.woocommerce-MyAccount-navigation-link.is-active a {
  color: var(--accent-text);
  font-weight: 700;
}
.woocommerce-MyAccount-navigation-link.is-active a::after {
  color: var(--accent-text);
}
.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #E63E2D;
}
.woocommerce-MyAccount-navigation-link--customer-logout a::after {
  color: #E63E2D;
}

/* 注文履歴テーブル */
.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin: 0 0 24px;
}
.woocommerce-orders-table th {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 2px solid var(--color-border);
  color: var(--color-text-sub);
  font-weight: 500;
}
.woocommerce-orders-table td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.woocommerce-orders-table .button {
  width: auto;
  display: inline-flex;
  padding: 8px 16px;
  font-size: 12.5px;
  box-shadow: none;
  margin: 2px 4px 2px 0;
}

/* お届け先（請求先・配送先） */
.woocommerce-Addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.woocommerce-Address {
  background: #F6F7F9;
  padding: 20px 22px;
  border-radius: 4px;
}
.woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px;
}
.woocommerce-Address-title h2,
.woocommerce-Address-title h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
}
.woocommerce-Address-title a {
  font-size: 12.5px;
  color: var(--accent-text);
  text-decoration: underline;
}
.woocommerce-Address address {
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--color-text-sub);
}

@media (max-width: 680px) {
  .woocommerce-Addresses {
    grid-template-columns: 1fr;
  }
  .woocommerce-account .form-row-first,
  .woocommerce-account .form-row-last {
    width: 100%;
    float: none;
  }
}

/* ==========================================================================
   Responsive (SP: 680px以下)
   ========================================================================== */
@media (max-width: 680px) {
  .prism-container {
    padding: 0 22px;
  }
  .prism-section {
    padding: 52px 0;
  }
  .prism-header__inner {
    padding: 12px 22px;
    height: auto;
  }
  #main {
    padding-top: 66px;
  }
  .home #main {
    padding-top: 0;
  }
  .prism-nav,
  .prism-header__divider,
  .prism-mood-dots {
    display: none;
  }
  .prism-hamburger {
    display: flex;
  }
  .prism-logo img {
    height: 40px;
  }
  .prism-logo__word {
    font-size: 20px;
  }

  .prism-hero {
    min-height: 100vh;
    align-items: flex-end;
  }
  .prism-hero__content {
    max-width: none;
    padding-top: 90px;
    padding-bottom: 40px;
  }
  .prism-eyebrow {
    font-size: 11px;
    letter-spacing: .22em;
    margin-bottom: 14px;
  }
  .prism-hero h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }
  .prism-hero__lead {
    font-size: 14px;
    line-height: 1.95;
    margin-bottom: 32px;
    max-width: none;
  }
  .prism-hero__mood-head {
    justify-content: space-between;
    margin-bottom: 4px;
  }
  .prism-hero__mood-label {
    margin-bottom: 0;
  }
  .prism-swipe-hint {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, .75);
    animation: prismSwipeHint 1.6s ease-in-out infinite;
  }
  .prism-mood-selector {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0 -22px;
    padding: 10px 22px 6px;
    scrollbar-width: none;
  }
  .prism-mood-selector::-webkit-scrollbar {
    display: none;
  }
  .prism-mood-selector button {
    flex: 0 0 62px;
    width: 62px;
  }
  .prism-mood-selector__circle {
    width: 48px;
    height: 48px;
  }
  .prism-mood-selector__phrase {
    font-size: 10.5px;
    margin-top: 11px;
  }

  .prism-heading {
    font-size: 22px;
  }
  .prism-concept__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .prism-concept__photo {
    height: 220px;
    margin-bottom: 26px;
    order: -1;
  }
  .prism-concept h2 {
    font-size: 22px;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .prism-concept p {
    font-size: 14px;
    line-height: 2;
  }
  .prism-concept__owner {
    margin-top: 28px;
    padding-top: 24px;
  }
  .prism-concept__owner .prism-placeholder {
    width: 64px;
    height: 64px;
  }
  .prism-concept__owner p {
    font-size: 12.5px;
    line-height: 1.8;
  }

  .prism-section__head {
    margin-bottom: 26px;
  }
  .prism-menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .prism-menu-card {
    padding: 24px 22px;
  }
  .prism-menu-card:nth-child(odd) {
    background: #fff;
  }
  .prism-menu-card:nth-child(even) {
    background: var(--tint);
  }
  .prism-menu-card__photo {
    height: 220px;
    margin-bottom: 16px;
  }
  .prism-menu-card h3 {
    font-size: 16px;
  }
  .prism-section__cta {
    margin-top: 32px;
  }
  .prism-section__cta .prism-btn {
    display: flex;
    width: 100%;
  }

  .prism-shop-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .prism-shop-card__photo {
    height: 200px;
  }

  .prism-instagram__head {
    display: block;
    margin-bottom: 22px;
  }
  .prism-instagram__head h2 {
    font-size: 22px;
    margin-bottom: 0;
  }
  .prism-instagram__cta-desktop {
    display: none;
  }
  .prism-instagram__cta-mobile {
    display: flex;
    width: 100%;
    margin-top: 20px;
  }
  .prism-instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .prism-instagram-grid__extra {
    display: none;
  }

  .prism-visit__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .prism-visit__photo {
    height: 200px;
    order: -1;
  }
  .prism-visit h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .prism-visit__actions {
    flex-direction: column;
  }
  .prism-visit__actions .prism-btn {
    width: 100%;
  }

  .prism-footer__inner {
    padding: 48px 22px 32px;
  }
  .prism-footer__top {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 28px;
  }
  .prism-footer__brand {
    max-width: none;
  }
  .prism-footer__brand p {
    margin-bottom: 0;
  }

  /* ===== 下層ページ共通 ===== */
  .prism-breadcrumb {
    padding-top: 28px;
    margin-bottom: 16px;
    font-size: 12px;
  }
  .prism-page-title {
    font-size: 23px;
    margin-bottom: 12px;
  }
  .prism-page-lead {
    font-size: 13px;
  }
  .prism-section-title {
    font-size: 19px;
  }
  .prism-cta-band {
    padding: 44px 0;
  }
  .prism-cta-band h2 {
    font-size: 18px;
  }
  .prism-cta-band__actions {
    flex-direction: column;
  }
  .prism-cta-band__actions .prism-btn {
    width: 100%;
  }

  /* ===== ショップ一覧 ===== */
  .prism-color-filter__chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0 -22px;
    padding: 0 22px 6px;
  }
  .prism-chip {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 12.5px;
    padding: 8px 16px;
  }
  .prism-shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 14px;
    padding: 18px 0 52px;
  }
  .prism-shop-card {
    padding: 0;
    border: none;
  }
  .prism-shop-card__photo {
    height: 160px;
  }

  /* ===== 商品詳細 ===== */
  .prism-product {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 0 0;
  }
  .prism-product__main-photo {
    display: flex;
    height: 300px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .prism-product__main-photo::-webkit-scrollbar {
    display: none;
  }
  .prism-product__slide {
    display: block;
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: start;
  }
  .prism-product__slide img {
    -webkit-user-drag: none;
    user-select: none;
  }
  .prism-product__thumbs {
    display: none;
  }
  .prism-product__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 12px 0 0;
  }
  .prism-product__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #D8D8D8;
  }
  .prism-product__dot.is-active {
    background: #1A1A1A;
  }
  .prism-product__title {
    font-size: 21px;
  }
  .prism-product__price {
    font-size: 20px;
  }
  .prism-product__form {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: #fff;
    padding: 12px 22px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .06);
  }
  .prism-product__actions {
    margin-bottom: 0;
  }
  .prism-product__shipping {
    margin-bottom: 78px;
  }
  .prism-howto-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .prism-howto-step__photo {
    height: 150px;
  }
  .prism-related {
    padding-top: 44px;
  }

  /* ===== メニューページ ===== */
  .prism-drink-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }
  .prism-drink-row.is-reversed .prism-drink-row__photo,
  .prism-drink-row.is-reversed .prism-drink-row__text {
    order: 0;
  }
  .prism-drink-row__photo {
    height: 220px;
  }
  .prism-season.prism-section {
    padding: 40px 0;
  }
  .prism-season__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .prism-season__photo {
    height: 220px;
  }
  .prism-food {
    padding: 44px 0;
  }
  .prism-food-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 18px;
  }
  .prism-food-card__photo {
    width: 96px;
    height: 80px;
  }

  /* ===== 席予約ページ ===== */
  .prism-flow-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0 24px;
  }
  .prism-reservation-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 44px;
  }
  .prism-reservation-info__photo {
    height: 170px;
  }
  .prism-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* ===== 店舗情報・アクセス ===== */
  .prism-access-photos {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 260px;
    overflow-x: auto;
    margin: 0 -22px 36px;
    padding: 0 22px 6px;
  }
  .prism-access-photos .prism-placeholder {
    height: 180px;
  }
  .prism-access-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 44px;
  }
  .prism-access-map {
    height: 260px;
  }
  .prism-access-map__cta-mobile {
    display: flex;
  }

  /* ===== お問い合わせ ===== */
  .prism-route-cards {
    grid-template-columns: 1fr;
  }

  /* ===== 固定ページ本文 ===== */
  .prism-legal-page {
    padding-bottom: 44px;
  }
  .prism-entry-content {
    font-size: 13.5px;
  }
  .prism-entry-content h2 {
    font-size: 17px;
    margin: 36px 0 14px;
  }
  .prism-entry-content h3 {
    font-size: 14.5px;
    margin: 26px 0 10px;
  }
  .prism-entry-content th {
    width: 110px;
  }
}
