*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-margin-top: 50px;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  background: #fff9f0;
  color: #fff;
  overflow-x: hidden;
}
:root {
  --red: #e8160c;
  --yellow: #ffd700;
  --black: #111;
  --white: #fff;
  --cream: #fff9f0;
  --green: #06c755;
  --border: 3px solid #111;
  --red-glow: 0 0 30px rgba(232, 22, 12, 0.4);
}
#top,
#sec-kodawari,
#sec-menu,
#sec-benefits,
#sec-info,
#sec-access {
  scroll-margin-top: 50px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }
  65% {
    transform: scale(1.08) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes stampIn {
  0% {
    opacity: 0;
    transform: rotate(-15deg) scale(1.4);
  }
  60% {
    transform: rotate(3deg) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: rotate(-4deg) scale(1);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}
@keyframes floatR {
  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}
@keyframes shine {
  0% {
    opacity: 0;
    left: -60%;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    left: 120%;
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 22, 12, 0.5);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(232, 22, 12, 0);
  }
}

/* ===== STICKY HEADER ===== */
.site-header {
  display: none;
  position: sticky;
  top: 0;
  z-index: 200;
  background: #111;
  border-bottom: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
}
.site-header .h-logo {
  font-family: "Black Han Sans", sans-serif;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.site-header .h-logo span {
  color: var(--red);
}
.site-header .h-nav {
  display: none;
}
.site-header .h-open {
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  padding: 5px 10px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  animation: pulse 2s ease-in-out infinite;
}

/* ===== TICKER ===== */
.ticker {
  position: sticky;
  top: 0;
  background: var(--red);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 100, 100, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  z-index: 10;
}
/* .ticker-inner{display:inline-flex;animation:marquee 14s linear infinite;} */
.ticker-inner {
  display: inline-flex;
  animation: marquee 40s linear infinite;
}
.ticker span {
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.12em;
  padding: 0 20px;
}
.ticker span.dot {
  color: var(--yellow);
  padding: 0 8px;
}

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.hero::after {
  display: none;
}

/* キャッチコピー */
.hero-catch {
  position: relative;
  z-index: 2;
  padding: 28px 18px 0;
  text-align: center;
  animation: fadeUp 0.45s ease-out both;
}
.hero-catch .main-copy {
  font-size: 52px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: #111;
  white-space: nowrap;
}
.hero-catch .main-copy .dot {
  color: #111;
}
.hero-catch .sub-copy {
  font-size: 14px;
  font-weight: 900;
  color: #555;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
.hero-logo-wrap {
  margin: 16px 18px 0;
  animation: popIn 0.6s 0.15s ease-out both;
  text-align: center;
}
.hero-logo-wrap img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ヒーロー写真エリア */

/* バッジ */
/* badge removed */

/* オープン帯 */
.hero-open {
  position: relative;
  z-index: 2;
  background: var(--red);
  padding: 20px 18px 22px;
  animation: fadeUp 0.45s 0.3s ease-out both;
  text-align: center;
  overflow: hidden;
}
.hero-open .shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  animation: shine 3s ease-in-out infinite;
}
.hero-open .open-label {
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.25em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-open .open-label::before,
.hero-open .open-label::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.hero-open .open-date-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-open .open-year {
  font-size: 16px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
}
.hero-open .open-date {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: "Black Han Sans", sans-serif;
}
.hero-open .open-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.hero-open .chip {
  background: var(--yellow);
  color: #000;
  font-size: 14px;
  font-weight: 900;
  padding: 5px 16px;
  border-radius: 100px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.hero-open .open-time {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
}

/* 3ポイント */
.hero-points {
  position: relative;
  z-index: 2;
  background: #fff;
  border-top: 1px solid #eee;
  border-top: var(--border);
  padding: 20px 18px 22px;
  animation: fadeUp 0.45s 0.4s ease-out both;
}
.point-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}
.point-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.point-num {
  background: var(--red);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.point-text b {
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  color: #111;
}
.point-text small {
  font-size: 11px;
  color: #666;
  font-weight: 700;
}

/* LINE */
.hero-line {
  position: relative;
  z-index: 2;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp 0.45s 0.5s ease-out both;
}
.line-stamp {
  background: var(--green);
  color: #fff;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  font-weight: 900;
  font-size: 12px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
  width: 120px;
  transform: rotate(-3deg);
  animation: stampIn 0.55s 0.7s ease-out both;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.line-stamp:active {
  transform: rotate(-3deg) translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}
.line-stamp .free {
  font-size: 16px;
  color: var(--yellow);
  display: block;
  margin-top: 3px;
}
.line-desc {
  flex: 1;
}
.line-desc p {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
}
.line-desc .arrow-btn {
  display: inline-block;
  margin-top: 8px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 16px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.line-desc .arrow-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
}

/* ===== セクションタイトル ===== */
.sec-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 24px 18px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
}
.sec-title::after {
  content: "";
  flex: 1;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
}
.sec-title-info {
  color: #111;
  font-size: 12px;
  text-align: right;
  padding: 10px 18px 0;
}

/* ===== DIVIDER ===== */
.manga-div {
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
}
.manga-div::before,
.manga-div::after {
  content: "★";
  margin: 0 8px;
  color: var(--yellow);
}
.manga-div .shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shine 3s ease-in-out infinite;
}

/* ===== こだわり ===== */
.features {
  padding-bottom: 32px;
  position: relative;
  background: #fff;
}
.feat-card {
  margin: 16px 18px 0;
  border: 3px solid #111;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  gap: 0;
  align-items: stretch;
  position: relative;
}
.feat-card::before {
  content: "";
  display: none;
}
.feat-num {
  font-family: "Black Han Sans", sans-serif;
  font-size: 40px;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 22, 12, 0.06);
  border-right: 2px solid #eee;
}
.feat-body {
  padding: 16px 14px;
  flex: 1;
}
.feat-body h3 {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 6px;
  line-height: 1.3;
  color: #111;
}
.feat-body p {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}

/* 写真入りカード */
.feat-card.has-img {
  flex-direction: column;
  padding: 0;
}
.feat-card.has-img .feat-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f9f9f9;
  border-bottom: 2px solid #eee;
}
.feat-card.has-img .feat-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  vertical-align: bottom;
  filter: drop-shadow(0 4px 20px rgba(232, 22, 12, 0.2));
  transition: transform 0.4s ease;
}
.feat-card.has-img:hover .feat-img-wrap img {
  transform: scale(1.03);
}
.feat-card.has-img .feat-bottom {
  display: flex;
  align-items: stretch;
}
.feat-card.has-img .feat-num {
  width: 56px;
  font-size: 36px;
  border-right: 2px solid #eee;
}
.feat-card.has-img .feat-body {
  padding: 14px;
}

/* ===== メニュー ===== */
.menu-sec {
  padding-bottom: 32px;
  background: #fafafa;
  position: relative;
  border-top: 1px solid #eee;
}
.menu-sec .sec-title {
  color: #111;
}
.menu-sec .sec-title::after {
  background: #111;
}

/* メニュービジュアルバナー */
.menu-visual-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 16px 18px 0;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 3px solid #111;
  box-shadow: 5px 5px 0 var(--red);
}
.menu-visual-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.menu-visual-banner .banner-text {
  /* position:absolute;left:16px;top:50%;transform:translateY(-50%); */
  width: 100%;
  padding: 16px;
  z-index: 2;
}
.menu-visual-banner .banner-text strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}
.menu-visual-banner .banner-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.mvb-img {
  /* position:absolute;right:-10px;bottom:0; */
  flex-shrink: 0;
  width: 200px;
  height: 100%;
}

.menu-cat-label {
  margin: 20px 18px 0;
  background: linear-gradient(135deg, var(--red), #b50f09);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 10px 14px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.menu-cat-label .shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  animation: shine 4s ease-in-out infinite;
}
.menu-cat-label .cnt-badge {
  background: var(--yellow);
  color: #000;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 100px;
}
.menu-desc {
  margin: 0 18px;
  background: #fff;
  border-left: 3px solid #111;
  border-right: 3px solid #111;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #666;
  line-height: 1.5;
}
.menu-card {
  margin: 0 18px 4px;
  border: 3px solid #111;
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: #fff;
  transition: background 0.2s;
}
.menu-item-row:hover {
  background: #fff8f0;
}
.menu-item-row:last-child {
  border-bottom: none;
}
.item-name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}
.item-sub {
  font-size: 11px;
  color: #888;
  display: block;
  margin-top: 2px;
}
.item-price {
  font-family: "Black Han Sans", sans-serif;
  font-size: 20px;
  color: var(--red);
}

/* 特別メニュー写真 */
.special-menu-visual {
  margin: 0 18px;
  position: relative;
  height: 140px;
  background: #111;
  border: 3px solid #111;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.special-menu-visual img {
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.rice-banner {
  margin: 16px 18px;
  background: var(--yellow);
  border: 3px solid #111;
  box-shadow: 4px 4px 0 #111;
  color: #111;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  letter-spacing: 0.05em;
}

/* --- 福利厚生 --- */
.bar_title_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 24px;
}
.bar_sub_title {
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  max-width: 100%;
  width: max-content;
  background: linear-gradient(135deg, var(--red), #b50f09);
  padding: 3px 20px;
  letter-spacing: 0.08em;
}
.bar_title {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  color: #111;
}
.benefits_box {
  position: relative;
  background: var(--yellow);
  padding: 20px 10px;
  margin: 0 18px 30px;
  border-radius: 7px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.benefits_box::before {
  content: "";
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  border-radius: 5px;
  border: 1px dashed #111;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.benefits_title {
  color: #111;
  font-weight: 900;
  font-size: 16px;
}
.benefits_text {
  display: inline-block;
  min-width: 108px;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #b50f09);
  position: absolute;
  text-align: center;
}
.benefits_text:first-child {
  top: 8px;
  right: 13px;
  transform: rotate(-4deg);
}
.benefits_text:nth-child(2) {
  top: 32px;
  right: 11px;
  transform: rotate(-4deg);
}
.benefits_text:last-child {
  top: 56px;
  right: 9px;
  transform: rotate(-4deg);
}
.benefits_btn {
  position: relative;
  display: block;
  width: 75%;
  margin: 0 auto;
  box-shadow: 6px 6px 0 var(--red);
  border: 2px solid #111;
  transition: all 0.3s;
}
.benefits_btn img {
  width: 100%;
}
.benefits_btn_arrow {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 0 auto;
  margin-top: 20px;
  list-style: none;
}
.benefits_btn_arrow li {
  line-height: 1;
}
.benefits_btn_arrow img {
  width: 12px;
  vertical-align: bottom;
}
.benefits_btn_text {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  text-align: center;
  margin-top: 5px;
}

/* ===== LINE CTA ===== */
.line-sec {
  background: var(--green);
  padding: 32px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.line-sec-visual {
  height: 160px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.line-sec-visual img {
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}
.line-sec-inner {
  padding: 0 18px;
}
.line-sec h2 {
  display: inline-block;
  position: relative;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  padding: 0 45px;
  margin-bottom: 20px;
}
.line-sec h2::before,
.line-sec h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 3px;
  background: #fff;
}
.line-sec h2::before {
  left: -8px;
  transform: translateY(-50%) rotate(60deg);
  box-shadow: 2px 1.8px 0 rgba(0, 0, 0, 0.15);
}
.line-sec h2::after {
  right: -8px;
  transform: translateY(-50%) rotate(-60deg);
  box-shadow: -2px 1.8px 0 rgba(0, 0, 0, 0.15);
}
.line-sec .free-pill {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  font-size: 20px;
  font-weight: 900;
  padding: 8px 28px;
  border-radius: 100px;
  border: 3px solid rgba(0, 0, 0, 0.2);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
}
.line-sec .sub-text {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  line-height: 1.6;
}
.line-sec .big-btn {
  display: block;
  background: var(--cream);
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
  padding: 16px;
  border-radius: 100px;
  border: 3px solid rgba(0, 0, 0, 0.15);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.line-sec .big-btn:hover,
.line-sec .big-btn:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

/* ===== 店舗情報 ===== */
.info-sec {
  background: #fff;
  padding: 0 0 28px;
  border-top: 1px solid #eee;
}
.info-table {
  width: calc(100% - 36px);
  margin: 14px 18px 0;
  border-collapse: collapse;
  font-size: 14px;
  border: 3px solid #111;
  border-radius: 0;
  overflow: hidden;
}
.info-table th {
  background: #111;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 11px 12px;
  text-align: left;
  width: 76px;
  white-space: nowrap;
  border-bottom: 2px solid #fff;
}
.info-table td {
  background: #fff;
  color: #111;
  font-weight: 700;
  padding: 11px 12px;
  line-height: 1.5;
  border-bottom: 2px solid #111;
}
.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

/* ===== マップ ===== */
.map-sec {
  background: #fafafa;
  padding: 0 0 28px;
  border-top: 1px solid #eee;
}
.map-sec .sec-title {
  color: #111;
}
.map-sec .sec-title::after {
  background: #111;
}
.map-wrap {
  margin: 14px 18px 0;
  border: 3px solid #111;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--red);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: none;
}

/* ===== フッター ===== */
footer {
  background: #111;
  color: rgba(255, 255, 255, 0.5);
  padding: 24px 18px;
  font-size: 11px;
  line-height: 1.8;
  text-align: center;
  border-top: 2px solid var(--red);
}
footer strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

/* ===== スクロールリビール ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}
.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 画像プレースホルダー ===== */
.img-ph {
  background: rgba(0, 0, 0, 0.06);
  border: 2px dashed rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 0.1em;
}
.logo-ph.img-ph {
  width: 100%;
  height: 90px;
}
.feat-img-wrap .img-ph {
  width: 100%;
  height: 100%;
}
.mvb-img.img-ph {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 160px;
  height: 155px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}
.special-menu-visual .img-ph {
  flex: 1;
  height: 130px;
  margin: 8px;
}
.line-sec-visual .img-ph {
  width: 200px;
  height: 140px;
  margin: 0 auto;
}

/* ===== SP キャッチコピー ===== */
.sp-hero-catch {
  background: #fff;
  padding: 8px 16px 24px;
  overflow: hidden;
}
.sp-main-copy {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: #111;
  white-space: nowrap;
  display: block;
  width: fit-content;
  transform-origin: left center;
  scale: var(--sp-copy-scale, 1);
}
.sp-tagline-wrap {
  margin-top: 10px;
  transform: rotate(-3deg);
}
.sp-tagline {
  font-size: 31px;
  font-weight: 900;
  color: #111;
  line-height: 1.2;
  letter-spacing: 0.02em;
  transform-origin: left top;
  white-space: nowrap;
}
.sp-main-copy-wrap {
  transform: rotate(-3deg);
  transform-origin: center center;
}
.sp-main-copy span {
  color: #111;
}
.sp-hero-img-wrap {
  position: relative;
  margin: 35px auto 20px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.sp-hero-logo {
  display: block;
  width: 50%;
  max-width: 150px;
  margin: 0 auto;
  margin-top: -2%;
  z-index: 2;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.1));
}
.sp-hero-img {
  display: block;
  width: 73%;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}
.sp-hero-img.img1 {
  margin-right: auto;
  margin-left: -6%;
  transform: rotate(-8deg);
}
.sp-hero-img.img2 {
  margin-top: 3%;
  margin-right: -6%;
  margin-left: auto;
  transform: rotate(4deg);
}
.sp-label-left,
.sp-label-right {
  position: absolute;
  z-index: 3;
}
.sp-label-left {
  bottom: 0;
  left: -1%;
  width: 30%;
  max-width: 125px;
}
.sp-label-right {
  top: -2%;
  right: 1%;
  width: 26%;
  max-width: 110px;
}
.sp-sub-copy {
  font-size: 13px;
  font-weight: 900;
  color: #555;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

/* ===== FRAME: SP時は非表示 ===== */
.frame-backface {
  display: none;
}
.frame-content {
  max-width: 480px;
  margin-inline: auto;
}
.frame-inner {
  /* SPではボーダーなし */
}
/* --- LAYER 2: sticky右サイドナビ --- */
.pc-side-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 20px;
  z-index: 5;
  max-width: 240px;
  white-space: nowrap;
  margin-left: calc(50% + 260px);
  margin-top: calc(-100dvh);
  height: 100dvh;
  padding-top: 32px;
  padding-left: 32px;
  padding-right: 15px;
  gap: 16px;
  pointer-events: auto;
}
.pc-side-nav a:not(.sns) {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  padding: 12px 22px 12px 28px;
  text-decoration: none;
  letter-spacing: 0.05em;
  border-radius: 0;
  position: relative;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.pc-side-nav a:not(.sns)::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(
    16px 0,
    calc(100% - 16px) 0,
    100% 50%,
    calc(100% - 16px) 100%,
    16px 100%,
    0 50%
  );
  background-color: var(--red);
  z-index: -1;
}
.pc-side-nav a:not(.sns)::after {
  content: "";
  display: block;
  position: absolute;
  right: -2px;
  bottom: -5px;
  width: calc(100% - 5px);
  height: 100%;
  clip-path: polygon(
    16px 0,
    calc(100% - 16px) 0,
    100% 50%,
    calc(100% - 16px) 100%,
    16px 100%,
    0 50%
  );
  background-color: #111;
  z-index: -2;
}
.pc-side-nav a:not(.sns):hover {
  transform: translateX(-4px);
}
.pc-side-nav a:not(.sns):hover::before {
  background: #c01208;
}
.sns_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
}
.pc-side-nav a.sns img {
  width: 45px;
  margin-top: 5px;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.4));
}
.menu-toggle {
  display: none;
}

/* ============================================================
   PC RESPONSIVE (769px+)
   ============================================================ */
@media (min-width: 769px) {
  /* --- HEADER PC --- */
  .site-header {
    padding: 10px 40px;
    z-index: 400;
  }
  .site-header .h-logo {
    font-size: 22px;
  }
  .site-header .h-nav {
    display: flex;
    gap: 2px;
  }
  .site-header .h-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 4px;
    transition: background 0.2s;
    letter-spacing: 0.03em;
  }
  .site-header .h-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
  }
  .site-header .h-open {
    font-size: 13px;
    padding: 6px 16px;
  }

  /* --- TICKER PC --- */
  .ticker span {
    font-size: 14px;
    letter-spacing: 0.15em;
  }

  /* --- .frame = 全体コンテナ --- */
  .frame {
    position: relative;
  }

  /* --- LAYER 1: sticky背景 (z-index:-1) --- */
  .frame-backface {
    display: block;
    position: sticky;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100dvh;
    margin-bottom: calc(-100dvh);
  }
  .frame-bg {
    display: grid;
    grid-template-columns: 1fr 480px 1fr;
    width: 100%;
    height: 100%;
    /* padding-top:20px; */
  }

  /* 左パネル: ロゴ + 唐揚げ */
  .frame-bg-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content:center; */
    gap: 0;
    position: relative;
    padding-bottom: 400px;
  }
  .frame-bg-left .frame-logo {
    width: 90%;
    max-width: 320px;
    filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.12));
    z-index: 1;
    margin-top: 3rem;
  }
  .frame-bg-left .pc-shop-name {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #111;
    letter-spacing: 0.15em;
    margin-top: 10px;
    z-index: 1;
  }
  .frame-karaage-left-1,
  .frame-karaage-left-2 {
    position: absolute;
    height: auto;
    opacity: 0.92;
    pointer-events: none;
    filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.4));
  }
  .frame-karaage-left-1 {
    bottom: -225px;
    right: -160px;
    width: min(120%, 640px);
    transform: rotate(-3deg);
  }
  .frame-karaage-left-2 {
    bottom: -295px;
    left: -65px;
    width: min(110%, 580px);
    transform: rotate(5deg);
  }

  /* 中央パネル: 弁当写真 + ラベル */
  .frame-bg-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .frame-bento-img {
    width: clamp(220px, 60%, 280px);
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.2));
    animation: float 4s ease-in-out infinite;
  }
  .frame-label-left,
  .frame-label-right {
    position: absolute;
    width: clamp(80px, 20%, 120px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
  }
  .frame-label-left {
    left: 5%;
  }
  .frame-label-right {
    right: 5%;
  }
  .frame-labels {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
  }
  .frame-labels .pc-label {
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 100px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
    letter-spacing: 0.08em;
  }

  /* 右パネル: 「う。旨い。安い。」+ 唐揚げ */
  .frame-bg-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .frame-copy-pc {
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 900;
    color: #111;
    line-height: 0.92;
    writing-mode: vertical-rl;
    letter-spacing: 0.08em;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.8);
  }
  .frame-copy-pc .dot-pc {
    color: var(--red);
  }
  .frame-karaage-right-1,
  .frame-karaage-right-2 {
    position: absolute;
    height: auto;
    opacity: 0.92;
    pointer-events: none;
    filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.4));
  }
  .frame-karaage-right-1 {
    bottom: -335px;
    right: -150px;
    width: min(120%, 670px);
    transform: rotate(3deg) scaleX(-1);
  }
  .frame-karaage-right-2 {
    bottom: -200px;
    left: -60px;
    width: min(110%, 580px);
    transform: rotate(-5deg) scaleX(-1);
  }

  /* --- LAYER 3: スクロールコンテンツ --- */
  .frame-content {
    position: relative;
    z-index: 1;
    margin-top: calc(-100dvh);
  }
  .frame-inner {
    border-left: 2px solid #111;
    border-right: 2px solid #111;
    background: #fff;
  }

  /* --- タイトル --- */
  .sec-title {
    padding: 28px 18px 0;
    font-size: 22px;
  }
  .sec-title-info {
    font-size: 14px;
  }

  /* --- 3ポイント PC --- */
  .hero-points {
    padding: 20px 20px;
    display: flex;
    gap: 16px;
  }
  .point-row {
    flex: 1;
    border-bottom: none;
    border-right: 1px dashed rgba(0, 0, 0, 0.12);
    padding: 8px 12px 8px 0;
  }
  .point-row:last-child {
    border-right: none;
    padding-right: 0;
  }
  .point-text b {
    font-size: 15px;
  }

  /* --- LINE (hero内) PC --- */
  .hero-line {
    padding: 18px 20px;
    gap: 16px;
  }
  .line-stamp {
    width: 130px;
    font-size: 12px;
  }
  .line-stamp .free {
    font-size: 16px;
  }

  /* --- DIVIDER PC --- */
  .manga-div {
    font-size: 14px;
    padding: 16px;
    letter-spacing: 0.1em;
  }

  /* --- こだわり PC --- */
  .features {
    padding: 0 0 32px;
  }
  .feat-cards-wrap {
    display: contents;
  }

  /* --- メニュー PC --- */
  .menu-sec {
    padding-bottom: 32px;
  }

  /* --- LINE CTA PC --- */
  .line-sec {
    padding: 40px 18px;
  }
  .line-sec h2 {
    font-size: 30px;
    padding: 0 60px;
  }
  .line-sec h2::before,
  .line-sec h2::after {
    width: 60px;
  }
  .line-sec .free-pill {
    font-size: 20px;
  }
  .line-sec .big-btn {
    font-size: 18px;
  }

  /* --- 店舗情報 PC --- */
  .info-sec {
    padding: 0 0 32px;
  }
  .info-table {
    width: calc(100% - 36px);
    margin: 14px 18px 0;
    font-size: 14px;
  }

  
  /* --- 福利厚生 --- */
  .bar_sub_title {
    font-size: 18px;
  }
  .bar_title {
    font-size: 34px;
  }
  .benefits_box {
    padding: 30px 15px;
    border-radius: 10px;
  }
  .benefits_box::before {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 8px;
    border-width: 2px;
  }
  .benefits_text {
    min-width: 133px;
    padding: 2px 10px;
    font-size: 14px;
  }
  .benefits_title {
    font-size: 21px;
  }
  .benefits_text:first-child {
    top: 18px;
    right: 18px;
  }
  .benefits_text:nth-child(2) {
    top: 46px;
    right: 16px;
  }
  .benefits_text:last-child {
    top: 75px;
    right: 14px;
  }
  .benefits_btn {
    box-shadow: 10px 10px 0 var(--red);
    border-width: 4px;
  }
  .benefits_btn_arrow {
    gap: 30px;
    margin-top: 25px;
  }
  .benefits_btn_arrow img {
    width: 14px;
  }
  .benefits_btn_text {
    font-size: 22px;
  }

  /* --- マップ PC --- */
  .map-sec {
    padding: 0 0 32px;
  }
  .map-wrap {
    margin: 14px 18px 0;
  }
  .map-wrap iframe {
    height: 280px;
  }

  /* --- フッター PC --- */
  footer {
    padding: 24px 18px;
    font-size: 12px;
  }
  footer strong {
    font-size: 14px;
  }
}

/* ============================================================
   アニメーション
   ============================================================ */
.anime-shake {
  animation: 2s step-end 1s infinite shake;
}
.anime-shake-reverse {
  animation: 2s step-end 1s infinite shake reverse;
}
@keyframes shake {
  0% {
    transform: rotate(-1deg);
  }
  50% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(-1deg);
  }
}
.anime-size {
  animation: 2.3s steps(3, end) infinite size;
}
@keyframes size {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}
/* ============================================================
   TAB ONLY (1024px以下)
   ============================================================ */
@media (max-width: 1024px) {
  .frame-bg-left .pc-shop-name {
    font-size: 22px;
  }
}

/* ============================================================
   SP ONLY (768px以下)
   ============================================================ */
/* @media (max-width: 768px) { */

@media (max-width: 768px) {
  /* body {
    max-width: 480px;
    margin: 0 auto;
  } */
  .frame-backface {
    display: none !important;
  }
  .feat-cards-wrap {
    display: contents;
  }

  .sp-main-copy {
    font-size: clamp(0px, 11.25vw, 56px);
  }
  .sp-tagline {
    font-size: clamp(0px, 6.3vw, 31px);
  }
  .sp-hero-img-wrap {
    width: 95%;
  }
  .manga-div {
    font-size: clamp(0px, 3vw, 13px);
    padding: 14px clamp(0px, 4vw, 16px);
  }
}

@media (max-width: 1024px) {
  .frame-bg-left,
  .frame-bg-right {
    display: none;
  }

  /* ハンバーガー */
  .menu-toggle {
    display: block;
    position: fixed;
    top: 55px;
    right: 15px;
    z-index: 1001;
    width: 35px;
    height: 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    transform-origin: center;
    transition: 0.3s;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
  }
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .pc-side-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: #fff9f0;
    padding: 105px 20px 20px;
    transform: translateX(100%);
    transition: 0.3s;
    z-index: 1000;
    margin: 0;
    max-width: none;
  }
  .pc-side-nav.active {
    transform: translateX(0);
  }
  .pc-side-nav a {
    width: 100%;
  }
}
