@charset "UTF-8";
/*
 * SCSS source for osakana-shunsenbin theme
 * - このファイルを編集し、コンパイル結果を main.css に出力して使ってください
 */
:root {
  /* === Color palette（海=Blue / アクセント=Orange / ベース=White） === */
  --primary: #125488; /* メインカラー（ブルー） */
  --primary-ink: #ffffff;
  --accent: #d2aa03; /* アクセント（オレンジ） */
  --accent-ink: #21160a;
  --ink: #1b2b34; /* 文字色（基本） */
  --muted: rgba(27, 43, 52, .72);
  --bg: #ffffff;
  --bg-elevated: #ffffff;
  --bg-soft: #f4f7f9;
  --border-soft: rgba(27, 43, 52, .14);
  --accent-soft: rgba(18, 84, 136, .22);
  --header-footer: #ffffff;
  --overlay: rgba(0,0,0,.35); /* 写真上の可読性用 */
  /* 固定ヘッダー高さ（レイアウト計算用） */
  --header-h: 64px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html, body {
  height: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Shippori Mincho", -apple-system, Segoe UI, Roboto, Noto Sans JP, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background-color: var(--bg);
}

/* 中央ボックス（カウントダウン用） */
.wrap {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  padding: clamp(24px, 6vw, 48px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.25);
}

.logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
  border-radius: 14px;
  /* background: rgba(255,255,255,.85); */
}

.logo img {
  width: 100%;
}

h1 {
  margin: 8px 0 10px;
  font-size: clamp(20px, 4.5vw, 36px);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.sub {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: clamp(13px, 2.2vw, 16px);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 2.5vw, 16px);
}

.unit {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  padding: clamp(12px, 2.8vw, 18px);
  background: rgba(0, 0, 0, 0.28);
}

.num {
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  font-size: clamp(32px, 8vw, 64px);
}

.label {
  color: var(--muted);
  margin-top: 6px;
  font-size: clamp(12px, 2vw, 14px);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 20px 0;
  opacity: 0.5;
}

.date-note {
  color: var(--muted);
  font-size: 1.3rem;
}

@media (max-width: 520px) {
  /* スマホ：1行目=「日」をフル幅、2行目=「時間」「分」「秒」を3分割 */
  .countdown {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }
  .countdown .unit:nth-child(1) {
    grid-column: 1/-1; /* 1行目で3カラムぶち抜き */
  }
  /* スマホでは中央の黒いボックスと各ユニットの背景を外す */
  .wrap {
    background: transparent;
    border: 0;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    padding: clamp(12px, 4vw, 18px);
  }
  .unit {
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  /* 文字サイズ調整：1行目（日）はやや大きめ、2行目は少し小さめ */
  .countdown .unit:nth-child(1) .num {
    font-size: clamp(26px, 9.5vw, 44px);
  }
  .countdown .unit:nth-child(n+2) .num {
    font-size: clamp(22px, 7.8vw, 36px);
  }
  .label {
    font-size: clamp(10px, 3vw, 12px);
  }
}
/* スマホでは中央の黒いボックスと各ユニットの背景を外す */
.wrap {
  background: transparent;
  border: 0;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  padding: clamp(12px, 4vw, 18px);
}

.unit {
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* 文字サイズを横並び前提で最適化 */
.num {
  font-size: clamp(22px, 8.2vw, 36px);
}

.label {
  font-size: clamp(10px, 3vw, 12px);
}

/* ボックスの内側を少しコンパクトに */
.unit {
  padding: clamp(8px, 3.5vw, 12px);
  border-radius: 12px;
}

/* 数字はやや小さめに最適化（横並びでつぶれないように） */
.num {
  font-size: clamp(24px, 8.5vw, 40px);
}

.label {
  font-size: clamp(11px, 3.2vw, 12px);
}

.message-area {
  height: 85px;
  font-size: 2.8rem;
}

.message-area br {
  display: none;
}

/* ===== Responsive: smartphone-first enhancements ===== */
.num {
  font-variant-numeric: tabular-nums;
}

/* ② 100svh/100dvh 対応（追加。既存デザインは不変） */
@supports (min-height: 100svh) {
  body {
    min-height: 100svh;
  }
}
@supports not (min-height: 100svh) {
  body {
    min-height: 100vh;
  }
}
@supports (height: 100dvh) {
  body {
    min-height: 100dvh;
  }
}
/* Use safe viewport units + safe-area insets（元のまま＋追記） */
@supports (min-height: 100svh) {
  body {
    min-height: 100svh;
  }
}
@supports not (min-height: 100svh) {
  body {
    min-height: 100vh;
  }
}
/* Avoid iOS jank from fixed background on touch devices（元のまま） */
@media (hover: none) and (pointer: coarse) {
  body {
    background-attachment: scroll;
  }
}
/* Tablet & phone（元のまま） */
@media (max-width: 767px) {
  :root {
    --overlay: rgba(0,0,0,.50);
  }
  .wrap {
    padding: clamp(18px, 6vw, 36px);
    border-radius: 16px;
  }
  .countdown {
    gap: clamp(8px, 3vw, 12px);
  }
  .unit {
    padding: clamp(10px, 3vw, 14px);
    border-radius: 14px;
  }
  .num {
    font-size: clamp(28px, 10vw, 56px);
  }
  .logo {
    width: 100px;
    height: 100px;
  }
  .message-area {
    font-size: 2rem;
  }
  .message-area br {
    display: block;
  }
}
/* Small phones（元のまま） */
@media (max-width: 420px) {
  :root {
    --overlay: rgba(0,0,0,.58);
  }
  .wrap {
    width: min(96vw, 520px);
  }
  .sub {
    font-size: clamp(12px, 3.5vw, 14px);
  }
  .date-note {
    font-size: 1.2rem;
  }
}
/* Short landscape screens（元のまま） */
@media (max-height: 480px) and (orientation: landscape) {
  .wrap {
    padding: 14px;
  }
  .countdown {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* === ここから追記：背景フェード用（枠や影は一切追加しません） === */
#bg-stack {
  position: fixed;
  inset: 0;
  z-index: -2; /* 画像レイヤーは最背面 */
  pointer-events: none;
}

#bg-stack::before {
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}

.bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
  border: 0;
  box-shadow: none;
  outline: 0; /* 念のため明示 */
}

.bg-layer.show {
  opacity: 1;
}

/* === 追記ここまで === */
/* svh/dvh非対応時のみ意味が出るフォールバック指定（元はbody内styleだったもの） */
body {
  min-height: calc(var(--vh, 1vh) * 100);
}

/* =====================
   サイト全体レイアウト
   ===================== */
.site-main-wrapper {
  min-height: 100vh;
  padding-top: var(--header-h); /* 固定ヘッダーの高さ分 */
}

/* WordPress管理バー表示時の調整 */
.admin-bar .site-main-wrapper {
  padding-top: calc(var(--header-h) + var(--wp-admin--admin-bar--height, 0px));
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.container--narrow {
  width: min(840px, 92vw);
}

.u-sm-only {
  display: none;
}

@media (max-width: 640px) {
  .u-sm-only {
    display: inline;
  }
}
/* =====================
   ヘッダー・ナビゲーション
   ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  background: rgba(18, 84, 136, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* WordPress管理バー表示時の調整 */
.admin-bar .site-header {
  top: var(--wp-admin--admin-bar--height, 0px);
}

.site-header__inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.site-branding__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.site-branding__logo {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.site-branding__name {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.8rem;
  white-space: nowrap;
}

.breadcrumb {
  background: #fff;
  padding: 8px 0;
  font-size: 1.2rem;
  color: var(--ink);
  position: relative;
  z-index: 1;
  transform: translateY(-6px);
}

.breadcrumb .container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
}

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

.breadcrumb__item a:hover {
  text-decoration: underline;
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: var(--muted);
}

.site-nav {
  display: flex;
}

.site-nav__list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
}

.site-nav__list a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-block: 4px;
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  transition: width 0.2s ease;
}

.site-nav__list a:hover::after,
.site-nav__list .current-menu-item > a::after {
  width: 100%;
}

.site-nav__list .menu-item-has-children {
  position: relative;
}

.site-nav__list .sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 180px;
  background: rgba(18, 84, 136, 0.98);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 10;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: max-height 0.24s ease, opacity 0.2s ease, transform 0.2s ease;
}

.site-nav__list .sub-menu a {
  display: block;
  padding: 8px 16px;
  white-space: nowrap;
}

.site-nav__list .menu-item-has-children:hover > .sub-menu {
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 768px) {
  .site-nav__list .sub-menu {
    padding: 8px 16px;
  }
  .site-nav__list .sub-menu a {
    display: inline-flex;
    padding: 8px 0;
  }
}
.site-nav-toggle {
  display: none;
  width: 28px;
  height: 20px;
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
  flex-direction: column;
  justify-content: center;
}

.site-nav-toggle__bar {
  height: 2px;
  background: #fff;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav-toggle__bar:nth-child(1) {
  top: 0;
}

.site-nav-toggle__bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.site-nav-toggle__bar:nth-child(3) {
  bottom: 0;
}

@media (max-width: 767px) {
  :root {
    --header-h: 56px;
  }
  .site-header__inner {
    padding-inline: 4vw;
  }
  .site-branding__logo {
    width: 32px;
    height: 32px;
  }
  .site-branding__name {
    font-size: 1.6rem;
  }
  .site-main-wrapper {
    padding-top: var(--header-h); /* スマホ時の固定ヘッダーの高さ分 */
  }
  .fv {
    margin-top: calc(-1 * var(--header-h)); /* スマホ時のヘッダーの高さ分 */
  }
  .admin-bar .fv {
    margin-top: calc(-1 * var(--header-h));
  }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(18, 84, 136, 0.98);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.18s ease-out;
  }
  /* WordPress管理バー表示時のナビ位置調整（スマホ） */
  .admin-bar .site-nav {
    inset: var(--header-h) 0 auto 0;
  }
  .site-nav__list {
    flex-direction: column;
    gap: 0;
    padding: 12px 0 16px;
    width: 100%;
  }
  .site-nav__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
  }
  .site-nav__list a {
    display: block;
    padding: 10px 4vw;
  }
  .site-nav__list .is-company-parent > a {
    position: relative;
    padding-right: 22px;
  }
  .site-nav__list .is-company-parent > a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-40%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    opacity: 0.9;
  }
  .site-nav__list .is-company-parent.is-open > a::before {
    border-top: 0;
    border-bottom: 6px solid #fff;
    transform: translateY(-60%);
  }
  .site-nav__list .sub-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0 0 8px 12px;
    max-height: 0;
    opacity: 0;
    transform: none;
    pointer-events: none;
    transition: max-height 0.24s ease, opacity 0.2s ease;
  }
  .site-nav__list .menu-item-has-children.is-open > .sub-menu {
    max-height: 240px;
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav-toggle {
    display: inline-flex;
  }
  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-open .site-nav-toggle__bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .nav-open .site-nav-toggle__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-open .site-nav-toggle__bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}
@media (max-width: 782px) {
  /* スマホでは管理バー表示時もヘッダーを詰めて隙間を出さない */
  .admin-bar .site-header {
    top: 0;
  }
}
/* =====================
   フロントページ
   ===================== */
.front-page {
  padding-bottom: 72px;
  position: relative;
}

/* FVスライダー */
.fv {
  --fv-h: clamp(440px, 60vw, 720px); /* PCもテスト用に少し縦長 */
  position: relative;
  padding-top: 0;
  margin-top: -64px; /* ヘッダーの高さ分を負のマージンでくっつける */
  background: #fff;
}

.fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 4s ease;
}

.fv.is-loaded::after {
  opacity: 1;
}

.fv-slider {
  opacity: 0;
  transition: opacity 3s ease;
}

.fv.is-loaded .fv-slider {
  opacity: 1;
}

.fv-scroll {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: 110px;
  writing-mode: vertical-rl;
  letter-spacing: 0.16em;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.fv-scroll::before {
  animation: fv-scroll 2s infinite;
  background-color: rgba(255, 255, 255, 0.9);
  bottom: -110px;
  content: "";
  height: 96px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

@keyframes fv-scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* WordPress管理バー表示時の調整 */
.admin-bar .fv {
  margin-top: -96px; /* 固定ヘッダー(64px) + 管理バー(32px) */
}

.fv__inner {
  width: 100%;
  margin-inline: 0;
  padding: 0;
  position: relative;
  z-index: 0;
}

.fv-slider {
  position: relative;
  min-height: var(--fv-h);
}

/* slick初期化前の高さ確保 */
.fv-slide {
  position: relative;
  height: var(--fv-h);
  min-height: var(--fv-h);
  border-radius: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* slick初期化後の高さ確保 */
.fv-slider.slick-initialized .slick-list,
.fv-slider.slick-initialized .slick-track {
  height: var(--fv-h);
}

.fv-slider.slick-initialized .slick-slide {
  height: var(--fv-h);
}

.fv-slider.slick-initialized .fv-slide {
  height: 100%;
}

/* 画像は後で差し替え予定：一旦はグラデ背景 */
.fv-slide--1 {
  background-image: url("../img/fv_pc1.webp");
}

.fv-slide--2 {
  background-image: url("../img/fv_pc2.webp");
}

.fv-slide--3 {
  background-image: url("../img/fv_pc3.webp");
}

.fv-slide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(18px, 5vw, 28px);
}

.fv-slide__label {
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* slickのドットスタイル調整 */
.slick-dots {
  bottom: 16px;
}

.slick-dots li button:before {
  color: #fff;
  font-size: 1rem;
  opacity: 0.5;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
}

/* slickドット非表示 */
.slick-dots {
  display: none !important;
}

/* slick初期化後のスライド表示を確実にする */
.fv-slider.slick-initialized .slick-slide {
  display: block;
}

.fv-slider.slick-initialized .slick-slide.slick-active {
  display: block;
}

@media (max-width: 640px) {
  .fv-slider {
    --fv-h: 80vh; /* スマホは固定で80vh */
    min-height: var(--fv-h);
  }
  @supports (height: 100svh) {
    .fv-slider {
      --fv-h: 80svh; /* iOS等のアドレスバー影響を受けにくい */
    }
  }
  .fv-slide {
    height: var(--fv-h);
    min-height: var(--fv-h);
    border-radius: 0;
  }
  .fv-scroll {
    right: 50%;
    bottom: 55px;
    transform: translateX(50%);
  }
  .fv-scroll::before {
    bottom: -55px;
    height: 40px;
  }
  .fv-slider.slick-initialized .slick-list,
  .fv-slider.slick-initialized .slick-track {
    height: var(--fv-h);
  }
  .fv-slider.slick-initialized .slick-slide {
    height: var(--fv-h);
  }
}
.fv-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--header-h) + var(--fv-h) * 0.5);
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 0 64px;
  color: #000;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.fv:not(.is-loaded) .hero__title,
.fv:not(.is-loaded) .hero__eyebrow,
.fv:not(.is-loaded) .hero__lead {
  color: #000;
  text-shadow: none;
}

.fv.is-loaded .fv-overlay {
  color: #fff;
}

.fv.is-loaded .hero__eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.fv.is-loaded .hero__lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  position: absolute;
  left: 50%;
  bottom: 140px;
  width: min(1120px, 92vw);
  opacity: 1;
  transform: translateX(-50%);
  transition: none;
}

.hero__inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.hero__eyebrow {
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.82;
  color: rgba(255, 255, 255, 0.8);
}

.hero__title {
  margin: 12px 0 10px;
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: 0.12em;
  line-height: 1.25;
  min-height: 2.5em;
}

@media (min-width: 769px) {
  .hero__title--indent .hero__title-line {
    display: inline-block;
    margin-left: 2em;
  }
}
@media (min-width: 769px) {
  .fv-typing-gallery {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 540px;
    pointer-events: none;
    opacity: 1;
  }
  .fv-typing-gallery__item {
    position: absolute;
    width: 420px;
    height: 260px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.8);
    opacity: 0;
    z-index: 1;
  }
  .fv-typing-gallery__item--1 {
    background-image: url("../img/fv_ty_1.webp");
    animation-delay: 0.4s;
    top: 10px;
    left: -20%;
  }
  .fv-typing-gallery__item--2 {
    background-image: url("../img/fv_ty_2.webp");
    animation-delay: 1s;
    top: 370px;
    left: -700px;
  }
  .fv-typing-gallery__item--3 {
    background-image: url("../img/fv_ty_3.webp");
    animation-delay: 2s;
    top: 300px;
    left: 120px;
  }
  .fv-typing-gallery__item--4 {
    background-image: url("../img/fv_ty_4.webp");
    animation-delay: 3s;
    top: 80px;
    left: -200%;
  }
}
@keyframes typing-fade {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  25% {
    opacity: 0.35;
    transform: translateY(0);
  }
  55% {
    opacity: 0.35;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}
@media (max-width: 767px) {
  .fv-typing-gallery {
    display: none;
  }
  .fv-typing-gallery-mobile {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 0;
  }
  .fv-typing-gallery-mobile.is-visible {
    opacity: 1;
  }
  .fv-typing-gallery-mobile__item {
    position: absolute;
    width: 260px;
    height: 190px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    opacity: 0;
  }
}
@keyframes typing-fade-mobile {
  0% {
    opacity: 0;
    transform: translateY(6px) scale(0.95);
  }
  20% {
    opacity: 0.35;
    transform: translateY(0) scale(1);
  }
  70% {
    opacity: 0.35;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px) scale(0.95);
  }
}
.fv-overlay {
  z-index: 3;
}

.hero__title--typing::after {
  content: "|";
  display: inline-block;
  margin-left: 0.1em;
  animation: hero-typing-caret 0.9s steps(1) infinite;
}

.hero__title--typing.hero__title--typed::after {
  opacity: 0;
  animation: none;
}

.hero__title--typing {
  display: block;
  line-height: 2;
  min-height: 2.5em;
}

@keyframes hero-typing-caret {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.hero__lead {
  margin: 0 0 24px;
  font-size: 1.6rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
  .fv-typing-gallery-mobile {
    opacity: 0;
  }
  .fv-typing-gallery-mobile.is-visible {
    opacity: 1;
  }
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fv .hero__actions .btn {
  position: relative;
  padding: 0 22px 6px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 2rem;
}

.fv .hero__actions .btn::before {
  content: "";
  position: absolute;
  left: 0;
  right: 10px;
  bottom: -1px;
  height: 1px;
  background: #fff;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.28s ease;
}

.fv .hero__actions .btn::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 10px;
  height: 1px;
  background: #fff;
  transform-origin: right center;
  transform: rotate(45deg);
}

.fv .hero__actions .btn:hover::before {
  transform: scaleX(1);
}

.fv .hero__actions .btn:hover::after {
  transform: rotate(45deg) translateX(2px);
}

.fv .hero__actions .btn:hover {
  background: transparent;
  transform: none;
}

.fv .hero__actions .btn:focus-visible {
  outline-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
  .hero__actions {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
  }
  .fv .hero__actions .btn {
    font-size: 1.2rem;
    padding-right: 10px;
    white-space: nowrap;
  }
  .fv .hero__actions .btn::after {
    width: 8px;
  }
}
.fv-overlay .btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.fv-overlay .btn--ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn {
  padding: 10px 20px;
  border: 1px solid var(--border-soft);
  color: var(--ink);
  text-decoration: none;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: transparent;
}

.btn--ghost {
  background: rgba(18, 84, 136, 0.08);
  border-color: rgba(18, 84, 136, 0.22);
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(18, 84, 136, 0.1);
}

.btn--primary:hover {
  background: #195a70;
}

.btn:focus-visible {
  outline: 3px solid rgba(242, 140, 40, 0.45);
  outline-offset: 2px;
}

.section {
  padding: 56px 0;
}

.section__inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section__inner--wide {
  width: min(1200px, 94vw);
}

.section__head {
  margin-bottom: 24px;
}

.section__head--center {
  text-align: center;
}

.section__eyebrow {
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.82;
  margin: 0 0 6px;
}

.section__title {
  margin: 0 0 6px;
  font-size: clamp(24px, 3.4vw, 30px);
}

.section__lead {
  margin: 0;
  font-size: 1.5rem;
  color: var(--muted);
}

.section__body--two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.section__body--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.section__text p {
  margin: 0 0 1.1em;
  line-height: 1.9;
  font-size: 1.5rem;
}

.section__media {
  display: flex;
  overflow: hidden;
  position: relative;
}

.shop-slider {
  display: none;
  position: relative;
  width: 100%;
  height: 220px;
  margin: 12px 0 6px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.shop-slider__item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: translateX(12%);
  animation: shop-slide 12s ease-in-out infinite;
}

.shop-slider__item--2 {
  animation-delay: 3s;
}

.shop-slider__item--3 {
  animation-delay: 6s;
}

.shop-slider__item--4 {
  animation-delay: 9s;
}

@keyframes shop-slide {
  0% {
    opacity: 0;
    transform: translateX(12%);
  }
  10% {
    opacity: 1;
    transform: translateX(0);
  }
  25% {
    opacity: 1;
    transform: translateX(0);
  }
  35% {
    opacity: 0;
    transform: translateX(-12%);
  }
  100% {
    opacity: 0;
    transform: translateX(-12%);
  }
}
.media-scatter {
  position: relative;
  width: 100%;
  height: 320px;
}

.media-scatter__img {
  position: absolute;
  width: 150px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.media-scatter.is-visible .media-scatter__img {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.media-scatter__img--1 {
  top: 30px;
  left: 0;
  transition-delay: 0.05s;
}

.media-scatter__img--2 {
  top: 20px;
  left: 250px;
  transition-delay: 0.18s;
}

.media-scatter__img--3 {
  top: 190px;
  left: 35px;
  transition-delay: 0.3s;
}

.media-scatter__img--4 {
  top: 180px;
  left: 270px;
  transition-delay: 0.42s;
}

@media (min-width: 641px) {
  .section--restaurant .media-scatter {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding: 0 20px;
  }
  .section--restaurant .media-scatter__img {
    position: static;
    width: 100%;
    max-width: none;
    display: block;
  }
}
@media (max-width: 640px) {
  .section--restaurant .section__media {
    display: none;
  }
  .section--restaurant .shop-slider {
    display: block;
  }
  .media-scatter {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .media-scatter__img {
    position: static;
    width: 100%;
    transform: translateY(8px) scale(0.98);
    display: block;
  }
  .media-scatter__img--1 {
    left: auto;
  }
  .media-scatter__img--2 {
    right: auto;
    top: auto;
  }
  .media-scatter__img--3 {
    left: auto;
    bottom: auto;
  }
  .media-scatter__img--4 {
    left: auto;
    top: auto;
  }
  .section--restaurant .section__media {
    overflow: visible;
  }
  .section--restaurant .section__text .section__actions {
    display: flex;
    justify-content: center;
  }
  .section--restaurant .section__actions--restaurant-mobile {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .shop-slider__item {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
/* 横スクロール無限ループ用コンテナ */
.philosophy-scroll {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.philosophy-scroll__track {
  display: flex;
  gap: 10px;
  animation: philosophy-scroll 20s linear infinite;
  will-change: transform;
  width: -moz-max-content;
  width: max-content;
}

.philosophy-scroll__set {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.philosophy-scroll__item {
  flex-shrink: 0;
  width: clamp(220px, 24vw, 320px);
  aspect-ratio: 4/3;
}

.philosophy-scroll__item .philosophy-photo {
  width: 100%;
  height: 100%;
}

@keyframes philosophy-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
.section__actions {
  margin-top: 24px;
}

.section__actions--center {
  text-align: center;
}

.section__actions--restaurant-mobile {
  display: none;
}

.section__notice {
  margin-top: 24px;
  font-size: 1.4rem;
  color: var(--muted);
  text-align: center;
}

.news-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: min(720px, 92vw);
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.section--blog.is-compact .news-list {
  min-height: auto;
}

.section--blog.is-compact .section__actions {
  margin-top: 12px;
}

.news-list__item {
  margin: 0;
  text-align: left;
  border-bottom: 1px dotted var(--accent);
}

.news-list__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.news-list__date {
  font-size: 1.2rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.news-list__title {
  font-size: 1.6rem;
}

.recipe-pagination {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.recipe-pagination__link {
  border: 1px solid var(--border-soft);
  background: #fff;
  color: var(--ink);
  padding: 6px 12px;
  font-size: 1.4rem;
  border-radius: 999px;
  cursor: pointer;
}

.recipe-pagination__link.is-active {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: transparent;
}

.recipe-pagination.is-loading {
  pointer-events: none;
  opacity: 0.6;
}

@media (max-width: 880px) {
  .section__body--two-col,
  .section__body--reverse {
    grid-template-columns: minmax(0, 1fr);
  }
  /* スマホ版でも横スクロール */
  .philosophy-scroll__item {
    width: 200px;
    height: 140px;
  }
  /* スマホ版：無限スクロール部分の横の余白をなしに */
  .section__media {
    margin-left: calc(-1 * (100vw - 100%) / 2);
    margin-right: calc(-1 * (100vw - 100%) / 2);
    width: 100vw;
    max-width: 100vw;
  }
}
@media (max-width: 640px) {
  .fv {
    --fv-h: 80vh; /* スマホは固定で80vh */
  }
  @supports (height: 100svh) {
    .fv {
      --fv-h: 80svh; /* iOS等のアドレスバー影響を受けにくい */
    }
  }
  .fv-overlay {
    top: calc(var(--header-h) + var(--fv-h) * 0.52);
    padding: 0 0 40px;
  }
}
/* フロントのイメージ枠（実画像は背景で差し替え想定） */
.philosophy-photo,
.restaurant-photo {
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background-size: cover;
  background-position: center center;
  flex-shrink: 0;
}

.restaurant-photo {
  width: calc(50% - 5px);
  min-height: 160px;
}

.philosophy-photo--1 {
  background-image: linear-gradient(var(--overlay), var(--overlay)), url("../img/loop_1.webp");
}

.philosophy-photo--2 {
  background-image: linear-gradient(var(--overlay), var(--overlay)), url("../img/loop_2.webp");
}

.philosophy-photo--3 {
  background-image: linear-gradient(var(--overlay), var(--overlay)), url("../img/loop_3.webp");
}

.philosophy-photo--4 {
  background-image: linear-gradient(var(--overlay), var(--overlay)), url("../img/loop_4.webp");
}

.restaurant-photo--counter {
  background-image: linear-gradient(var(--overlay), var(--overlay)), url("");
}

.restaurant-photo--dish {
  background-image: linear-gradient(var(--overlay), var(--overlay)), url("");
}

/* =====================
   カード（缶詰一覧など）
   ===================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.card-grid--cans {
  margin-top: 32px;
}

.card {
  border: 1px solid var(--border-soft);
  background: var(--bg-elevated);
  overflow: hidden;
}

.card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  margin: 0;
}

.card--can .card__thumb,
.card--recipe .card__thumb {
  aspect-ratio: 4/3;
}

.card__thumb img:not(.card__thumb-fallback) {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.card__thumb-fallback {
  width: 60%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.card__body {
  padding: 12px 14px 14px;
  border-top: 1px solid var(--border-soft);
}

.card__title {
  margin: 0 0 4px;
  font-size: 1.5rem;
}

.card__excerpt {
  margin: 0;
  font-size: 1.2rem;
  color: var(--muted);
}

@media (max-width: 880px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* =====================
   汎用ページ／記事
   ===================== */
/* =====================
   追加：ページ共通UI
   ===================== */
.notice-box {
  border: 1px solid var(--border-soft);
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 16px;
  margin-top: 18px;
}

.notice-box__title {
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.notice-box__body {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.4rem;
}

.notice-box code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

.pagination {
  margin-top: 28px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  text-decoration: none;
  color: var(--ink);
  background: var(--bg);
}

.pagination .current {
  background: var(--primary);
  border-color: transparent;
  color: var(--primary-ink);
}

.map-embed {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}

.map-embed__title {
  margin: 0 0 10px;
  font-size: 2.4rem;
}

.map-embed__address {
  font-size: 1.8rem;
}

.map-embed__frame iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

@media (max-width: 640px) {
  .map-embed__frame iframe {
    min-height: 0;
    height: auto;
    aspect-ratio: 16/9; /* スマホは横長に */
  }
}
/* =====================
   追加：会社概要テーブル
   ===================== */
.company-info {
  margin-top: 24px;
}

.company-info__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  background: var(--bg);
}

.company-info__table th,
.company-info__table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
  font-size: 1.5rem;
  line-height: 1.8;
}

.company-info__table th {
  width: 160px;
  text-align: left;
  background: var(--bg-soft);
  color: var(--ink);
  font-weight: 700;
}

.company-info__table tr:last-child th,
.company-info__table tr:last-child td {
  border-bottom: 0;
}

.company-info__tel-link {
  display: none;
}

.company-info__tel-text {
  display: inline;
}

.company-info__table a[href^="mailto:"] {
  color: var(--primary);
  text-decoration: underline;
}

.company-info__table a[href^="mailto:"]:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  .company-info__contact-label {
    display: block;
    margin-top: 10px;
  }
  .company-info__contact-label:first-child {
    margin-top: 0;
  }
  .company-info__tel-link {
    display: inline;
  }
  .company-info__tel-text {
    display: none;
  }
  .company-info__table a[href^="tel:"] {
    color: var(--primary);
    text-decoration: underline;
  }
  .company-info__table a[href^="tel:"]:hover {
    text-decoration: none;
  }
}
@media (max-width: 640px) {
  .company-info__table,
  .company-info__table tbody,
  .company-info__table tr,
  .company-info__table th,
  .company-info__table td {
    display: block;
    width: 100%;
  }
  .company-info__table tr {
    border-bottom: 1px solid var(--border-soft);
  }
  .company-info__table th {
    background: transparent;
    font-weight: 800;
    background-color: var(--bg-soft);
  }
}
/* =====================
   追加：フッターSNS
   ===================== */
.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--border-soft);
  background: rgba(18, 84, 136, 0.95);
}

.site-footer__inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.sns-links__list {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.sns-links__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.4rem;
}

.sns-links__item img {
  display: block;
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.sns-links__item a:hover {
  background: rgba(18, 84, 136, 0.1);
}

.entry__title {
  margin: 0 0 14px;
  font-size: clamp(24px, 3.5vw, 30px);
}

.entry__content {
  font-size: 1.5rem;
  line-height: 1.9;
}

.entry--contact .wpcf7 {
  max-width: 720px;
  margin: 24px auto 0;
}

.entry--contact .wpcf7 form {
  display: grid;
  gap: 16px;
}

.entry--contact .wpcf7 label {
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.entry--contact .wpcf7 input[type=text],
.entry--contact .wpcf7 input[type=email],
.entry--contact .wpcf7 input[type=tel],
.entry--contact .wpcf7 textarea,
.entry--contact .wpcf7 select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1.6rem;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: #fff;
}

.entry--contact .wpcf7 textarea {
  min-height: 200px;
  resize: vertical;
}

.entry--contact .wpcf7 form p:last-of-type {
  display: block !important;
  text-align: center;
  margin-top: 8px;
  visibility: visible !important;
  opacity: 1 !important;
}

.entry--contact .wpcf7 input[type=submit],
.entry--contact .wpcf7 .wpcf7-submit {
  width: min(320px, 100%);
  margin: 0 auto;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  font-size: 1.6rem;
  border-radius: 999px;
  border: 2px solid var(--primary);
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  min-height: 48px;
  visibility: visible !important;
  opacity: 1 !important;
}

.entry--contact .wpcf7 form p {
  margin: 0;
}

.entry__content p {
  margin: 0 0 1.4em;
}

.entry__date {
  font-size: 1.2rem;
  color: var(--muted);
}

.archive-head {
  margin-bottom: 24px;
}

.archive-head__eyebrow {
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.82;
}

.archive-head__title {
  margin: 8px 0 6px;
  font-size: clamp(24px, 3.2vw, 30px);
}

.archive-head__lead {
  margin: 0;
  font-size: 1.4rem;
  color: var(--muted);
}

.entry__header {
  margin-bottom: 0;
}

.entry__header--can {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .entry__header--can {
    grid-template-columns: minmax(0, 1fr);
  }
}
.entry__thumb {
  margin: 16px 0 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.entry__thumb img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

.entry__thumb .card__thumb-fallback {
  width: 60%;
  max-width: 300px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  display: block;
  position: static;
  left: auto;
  top: auto;
  transform: none;
}

@media (max-width: 767px) {
  .entry__thumb {
    max-width: 100%;
    margin: 16px 0;
  }
  .entry__thumb .card__thumb-fallback {
    max-width: 200px;
  }
}
.entry__excerpt {
  margin: 8px 0 16px;
  font-size: 1.4rem;
  color: var(--muted);
}

.entry__ec-link {
  margin: 0;
}

.entry__footer--can {
  margin-top: 28px;
}

/* =====================
   レストランページ
   ===================== */
.restaurant-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  margin-top: 24px;
}

.restaurant-info__title {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.restaurant-info__body {
  font-size: 1.4rem;
  color: var(--muted);
}

.restaurant-info__summary {
  margin: 0;
}

@media (max-width: 880px) {
  .restaurant-page__layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* =====================
   フッター
   ===================== */
.site-footer-wave {
  position: relative;
  height: 70px;
  overflow: hidden;
}

.site-footer-wave__inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='70' viewBox='0 0 1200 70'%3E%3Cpath d='M0 40 C150 10 350 70 600 40 C850 10 1050 70 1200 40 V70 H0 Z' fill='rgba(18,84,136,0.95)'/%3E%3C/svg%3E");
  background-size: 1200px 70px;
  background-repeat: repeat-x;
  animation: footer-wave 10s linear infinite;
  opacity: 1;
}

.site-footer-wave__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='70' viewBox='0 0 900 70'%3E%3Cpath d='M0 45 C120 20 280 70 450 45 C620 20 780 70 900 45 V70 H0 Z' fill='%23125488'/%3E%3C/svg%3E");
  background-size: 900px 70px;
  background-repeat: repeat-x;
  animation: footer-wave-alt 14s linear infinite;
  opacity: 0.15;
}

.site-footer-wave + .site-footer {
  margin-top: 0;
}

@keyframes footer-wave {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -1200px;
  }
}
@keyframes footer-wave-alt {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 900px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-footer-wave__inner,
  .site-footer-wave__inner::after {
    animation: none;
  }
}
.site-footer {
  border-top: 0;
  margin-top: 40px;
  padding: 18px 0 22px;
  background: rgba(18, 84, 136, 0.95);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
}

.site-footer__inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.site-footer-nav__list {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  justify-content: center;
}

.site-footer-nav__list + .site-footer-nav__list {
  margin-top: 12px;
}

.site-footer-nav__list a {
  color: var(--header-footer);
  text-decoration: none;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.site-footer-nav__list a:hover {
  opacity: 0.85;
}

.site-footer__copy {
  font-size: 1.1rem;
  color: var(--header-footer);
}

@media (max-width: 767px) {
  .site-footer-nav__list {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}
/* 右下固定：オンラインショップ */
.floating-shop {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  text-decoration: none;
  background-image: url("../img/online-link.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.floating-shop:focus-visible {
  outline: 3px solid rgba(242, 140, 40, 0.45);
  outline-offset: 3px;
}

@media (min-width: 769px) {
  .floating-shop {
    position: fixed;
  }
  .floating-shop::after {
    content: "オンラインショップはこちら";
    position: absolute;
    right: calc(100% + 12px);
    bottom: 50%;
    transform: translateY(50%);
    background: #fff;
    color: #000;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    padding: 8px 12px;
    border-radius: 999px;
    border: 2px solid #000;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
  }
  .floating-shop::before {
    content: "";
    position: absolute;
    right: calc(100% + 6px);
    bottom: 50%;
    transform: translateY(50%);
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
  }
  .floating-shop:hover::after,
  .floating-shop:hover::before {
    opacity: 1;
  }
  .floating-shop:hover {
    animation: floating-shop-wiggle 0.4s ease-in-out;
  }
}
@keyframes floating-shop-wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-6deg);
  }
  50% {
    transform: rotate(6deg);
  }
  75% {
    transform: rotate(-4deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media (max-width: 767px) {
  .floating-shop {
    width: 80px;
    height: 80px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}
@media (hover: none) and (pointer: coarse) {
  .floating-shop:active {
    animation: floating-shop-wiggle 0.4s ease-in-out;
  }
}/*# sourceMappingURL=main.css.map */