:root {
  --yellow: #FFD93D;
  --yellow-dark: #e6c200;
  --red: #FF6B6B;
  --red-dark: #e04040;
  --blue: #4ECDC4;
  --blue-dark: #2ea89f;
  --navy: #1A237E;
  --navy-dark: #0e1550;
  --green: #6BCB77;
  --green-dark: #3fa84e;
  --orange: #FF9A3C;
  --white: #FFFDF7;
  --dark: #1C1C2E;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #f5f5f5;
  color: var(--dark);
  overflow-x: hidden;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

img {
  pointer-events: none;
  -webkit-user-drag: none;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  color: var(--yellow);
  font-size: 1.4rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--yellow);
}

.nav-cta {
  background: var(--yellow) !important;
  color: var(--navy) !important;
}

.nav-cta:hover {
  background: var(--orange) !important;
  color: white !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 8px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -8px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 80px;
}

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

.mobile-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 80%;
  max-width: 320px;
  justify-content: center;
  border: 1px solid var(--navy);
}

.mobile-nav a:hover {
  background: var(--yellow);
  color: var(--navy);
}

.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
}

/* ===== 3D BUTTON SYSTEM ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  transition: transform 0.1s, top 0.1s;
  top: 0;
  outline: none;
  letter-spacing: 0.02em;
}

.btn:active {
  top: 5px;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 6px 0 var(--yellow-dark), 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-yellow:hover {
  background: #ffe066;
  box-shadow: 0 8px 0 var(--yellow-dark), 0 10px 20px rgba(0, 0, 0, 0.22);
  top: -2px;
}

.btn-yellow:active {
  box-shadow: 0 1px 0 var(--yellow-dark);
  top: 5px;
}

.btn-green {
  background: var(--green);
  color: white;
  box-shadow: 0 6px 0 var(--green-dark), 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-green:hover {
  background: #7ed989;
  box-shadow: 0 8px 0 var(--green-dark), 0 10px 20px rgba(0, 0, 0, 0.22);
  top: -2px;
}

.btn-green:active {
  box-shadow: 0 1px 0 var(--green-dark);
  top: 5px;
}

.btn-line {
  background: #06C755;
  color: white;
  box-shadow: 0 6px 0 #038a3c, 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-line:hover {
  background: #07e060;
  box-shadow: 0 8px 0 #038a3c;
  top: -2px;
}

.btn-line:active {
  box-shadow: 0 1px 0 #038a3c;
  top: 5px;
}

.btn-blue {
  background: var(--blue);
  color: var(--navy);
  box-shadow: 0 6px 0 var(--blue-dark), 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-blue:hover {
  box-shadow: 0 8px 0 var(--blue-dark);
  top: -2px;
}

.btn-blue:active {
  box-shadow: 0 1px 0 var(--blue-dark);
  top: 5px;
}

.btn-white {
  background: white;
  color: var(--navy);
  box-shadow: 0 6px 0 #ccc, 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  box-shadow: 0 8px 0 #ccc;
  top: -2px;
}

.btn-white:active {
  box-shadow: 0 1px 0 #ccc;
  top: 5px;
}

.btn-navy {
  background: var(--navy);
  color: white;
  box-shadow: 0 6px 0 var(--navy-dark), 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-navy:hover {
  box-shadow: 0 8px 0 var(--navy-dark);
  top: -2px;
}

.btn-navy:active {
  box-shadow: 0 1px 0 var(--navy-dark);
  top: 5px;
}

.btn-red {
  background: var(--red);
  color: white;
  box-shadow: 0 6px 0 var(--red-dark), 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-red:hover {
  box-shadow: 0 8px 0 var(--red-dark);
  top: -2px;
}

.btn-red:active {
  box-shadow: 0 1px 0 var(--red-dark);
  top: 5px;
}

.btn-x {
  background: #000;
  color: white;
  box-shadow: 0 6px 0 #333, 0 8px 16px rgba(0, 0, 0, 0.3);
}

.btn-x:hover {
  box-shadow: 0 8px 0 #333;
  top: -2px;
}

.btn-x:active {
  box-shadow: 0 1px 0 #333;
  top: 5px;
}

/* ===== HERO / FV ===== */
.hero {
  width: 100%;
  margin-top: 64px;
  padding: 0 !important;
  position: relative;
  background: transparent;
}

.hero-slider {
  position: relative;
  width: 100%;
}

.hero-image {
  display: block;
  width: 100%;
}

.hero-image.slide-1 {
  position: relative;
  animation: fvFade1 15s infinite;
}

.hero-image.slide-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: fvFade2 15s infinite;
}

.hero-image.slide-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: fvFade3 15s infinite;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fvFade1 {
  0% {
    opacity: 1;
  }

  23.33% {
    opacity: 1;
  }

  33.33% {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fvFade2 {
  0% {
    opacity: 0;
  }

  23.33% {
    opacity: 0;
  }

  33.33% {
    opacity: 1;
  }

  56.66% {
    opacity: 1;
  }

  66.66% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fvFade3 {
  0% {
    opacity: 0;
  }

  56.66% {
    opacity: 0;
  }

  66.66% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.hero-fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #f5f5f5;
}

.hero-fixed-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/bg.jpg') center/cover;
  opacity: 0.15;
}

/* 共通設定 */
.corner {
  position: fixed;
  width: clamp(220px, 30vw, 400px);
  height: clamp(220px, 30vw, 400px);
  z-index: -1;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
}

/* 左上 */
.decoration-top-left {
  top: 64px;
  /* ヘッダーの高さ分下げる */
  left: 0;
  background-image: url('../img/bg1.svg');
  background-position: top left;
}

/* 右下 */
.decoration-bottom-right {
  bottom: 0;
  right: 0;
  background-image: url('../img/bg2.svg');
  background-position: bottom right;
}


.hero-cta-section {
  padding: 60px 24px;
  background: transparent;
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-cta-text {
  font-size: 1.1rem;
  font-weight: 900;
  color: #06C755;
  margin-bottom: 20px;
  background: white;
  display: inline-block;
  padding: 8px 24px;
  border-radius: 50px;
  border: 2px solid #06C755;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ===== INFINITE SLIDER ===== */
.infinite-slider-section {
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 40px 0;
  position: relative;
}

.infinite-slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: infiniteScroll 40s linear infinite;
}

.infinite-slider-track img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid white;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-340px * 3));
  }

  /* (width 320px + gap 20px) * 3 images */
}



/* ===== SECTIONS BASE ===== */
section {
  padding: 90px 24px;
  position: relative;
  z-index: 1;
}

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

.section-label {
  font-size: 4rem;
  color: var(--navy);
  background: transparent;
  padding: 0;
  margin-bottom: 40px;
  font-family: 'Fredoka One', cursive;
  display: inline-block;
  line-height: 1;
}

.label-heading-br {
  display: inline-block;
}

.sp-br {
  display: none;
}

.section-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 32px;
  color: var(--navy);
}

/* ===== 2ND FV ===== */
.second-fv {
  padding: 90px 24px;
}

.section-title-lg {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 52px;
  line-height: 1.2;
}

.section-title-lg .sub {
  display: block;
  font-size: 0.42em;
  color: #555;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 20px 28px;
  text-align: center;
  border: 3px solid var(--navy);
  box-shadow: 0 8px 0 var(--navy), 0 10px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s, box-shadow 0.15s, top 0.15s;
  position: relative;
  top: 0;
}

.feature-card:hover {
  top: -4px;
  box-shadow: 0 12px 0 var(--navy), 0 14px 24px rgba(0, 0, 0, 0.15);
}

.feature-card .fa-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  color: var(--navy);
}

.feature-card h3 {
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.5;
}

/* ===== ABOUT ===== */
.about-section {
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 52px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--navy);
  box-shadow: 0 10px 0 var(--navy);
  display: block;
}

/* ぐるぐる回る円形テキスト */
.rotating-badge {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 160px;
  height: 160px;
  z-index: 10;
}

.rotating-badge svg {
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
}

.rotating-badge text {
  font-family: 'Fredoka One', cursive;
  font-size: 13px;
  fill: #ff4b4b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.about-img-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--yellow);
  border: 4px solid var(--navy);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 0 var(--navy);
  text-align: center;
  line-height: 1.2;
}

.about-img-badge .num {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--navy);
}

.about-img-badge .label {
  font-size: 0.6rem;
  color: var(--navy);
  font-weight: 900;
}

.about-text p {
  line-height: 2;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--navy);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
}

/* ===== SERVICE ===== */
.service-section {
  background: transparent !important;
  position: relative;
}

.service-section .container {
  position: relative;
  z-index: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--navy);
  box-shadow: 0 8px 0 var(--navy);
  transition: transform 0.2s;
  position: relative;
  top: 0;
  display: flex;
  flex-direction: column;
}

.service-card:nth-child(even) {
  direction: ltr;
  /* Reset to normal vertical stack */
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 0 var(--navy);
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  min-height: auto;
}

.service-card:hover {
  top: -5px;
  box-shadow: 0 13px 0 rgba(0, 0, 0, 0.25), 0 16px 28px rgba(0, 0, 0, 0.22);
}

.service-card-head {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.6rem;
  flex-shrink: 0;
  color: white;
}

.service-card h3 {
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--navy);
}

.service-card .service-sub {
  font-size: 0.78rem;
  color: #888;
  font-weight: 700;
  margin-top: 2px;
}

.service-card-body {
  padding: 0 24px 24px;
}

.service-card-body p {
  line-height: 1.8;
  font-size: 0.95rem;
  color: #444;
  font-weight: 700;
  margin: 0;
}

/* ===== PRICE/MENU ===== */
.price-section {
  background: #c5f8af !important;
  position: relative;
}

.price-section::before {
  display: none;
}

.price-section .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.price-section .section-label {
  color: var(--navy);
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
  text-align: center;
}

/* MENU Slider (Outside Container for Full Width) */
.price-section .menu-slider-wrapper {
  margin-left: calc(-1 * 24px);
  /* Negate section padding */
  margin-right: calc(-1 * 24px);
  width: calc(100% + 48px);
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.price-card {
  background: white;
  border-radius: var(--radius);
  border: 3px solid var(--navy);
  box-shadow: 0 8px 0 var(--navy);
  overflow: hidden;
}

.price-card-head {
  background: var(--navy);
  color: white;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-card-head i {
  font-size: 1.3rem;
  color: var(--yellow);
}

.price-card-head h3 {
  font-weight: 900;
  font-size: 1rem;
}

.price-items {
  padding: 20px 24px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 2px dashed #eee;
  gap: 12px;
  text-align: left;
}

.price-item .amount {
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem;
  color: var(--navy);
  white-space: nowrap;
}

/* MENU Slider (Match Hero Slider Style) */
.menu-slider-wrapper {
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 40px 0;
  position: relative;
  margin-top: 20px;
}

.menu-slider-wrapper .infinite-slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: infiniteScroll 40s linear infinite;
}

.menu-slider-wrapper .infinite-slider-track img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Price APP Promo */
.price-app-promo {
  max-width: 800px;
  margin: 40px auto 32px;
  background: #fff;
  border: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 0 var(--red);
}

.promo-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.6;
}

.promo-text span {
  display: inline;
}

.promo-badge {
  background: var(--red);
  color: white;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-right: 8px;
  vertical-align: middle;
}

.promo-text .highlight {
  color: var(--red);
  font-size: 1.4rem;
  text-decoration: underline;
}

.btn-bodogego-price {
  max-width: 400px;
  margin: 0 auto;
  font-size: 1.1rem;
  padding: 18px;
}

.price-item .note {
  font-size: 0.73rem;
  color: #888;
}

/* ハイライト用追加 */
.price-item.highlight-red .name {
  color: var(--red);
  font-size: 1.1rem;
}

.price-item.highlight-red .amount {
  color: var(--red);
  font-size: 1.5rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
}

.price-item.highlight-green .name {
  color: var(--green-dark);
  font-size: 1.1rem;
}

.price-item.highlight-green .amount {
  color: var(--green-dark);
  font-size: 1.5rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
}

.price-note {
  background: #FFF9E0;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin-top: 28px;
}

.price-note ul {
  list-style: none;
}

.price-note ul li {
  padding: 5px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.price-note ul li i {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== MESSAGE ===== */
.message-section {
  position: relative;
}

.message-section::before {
  display: none;
}

.message-section .container {
  position: relative;
  z-index: 1;
}

.message-section .section-label {
  background: var(--yellow);
  color: var(--navy);
}

.message-section .section-title {
  color: var(--navy);
}

.message-box {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  padding: 44px;
  border: 3px solid var(--yellow);
  box-shadow: 0 10px 0 var(--yellow-dark), 0 12px 32px rgba(0, 0, 0, 0.2);
}

.owner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.message-box .section-label {
  font-size: 3rem;
  margin-bottom: 24px;
}

.label-heading-br {
  display: inline;
}

@media (max-width: 768px) {
  .label-heading-br {
    display: block;
  }
}

.message-box p {
  line-height: 2;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.highlight-text {
  background: var(--yellow);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.recommend {
  margin-top: 20px;
  padding: 18px 20px;
  background: #f8f9ff;
  border-left: 5px solid var(--navy);
  border-radius: 0 12px 12px 0;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.recommend i {
  color: var(--yellow);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 1rem;
}

/* ===== VOICE ===== */
.voice-section {
  background: transparent;
}

.voice-section .section-label {
  color: var(--navy);
}

.voice-wrapper {
  position: relative;
  margin: 0 -12px;
  padding: 0 40px;
}

.voice-list {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  /* IE, Edge */
  scrollbar-width: none;
  /* Firefox */
}

.voice-list::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, etc */
}

.voice-item {
  background: white;
  border-radius: var(--radius);
  border: 3px solid var(--navy);
  padding: 32px;
  box-shadow: 0 8px 0 var(--navy);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: calc((100% - 48px) / 3);
  /* 3 items visible */
  scroll-snap-align: start;
  height: auto;
  min-height: 280px;
}

.voice-nav-prev,
.voice-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: white;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.voice-nav-prev:hover,
.voice-nav-next:hover {
  background: var(--navy);
  color: white;
}

.voice-nav-prev {
  left: -10px;
}

.voice-nav-next {
  right: -10px;
}

@media (max-width: 992px) {
  .voice-item {
    width: calc((100% - 24px) / 2);
    /* 2 items visible */
  }
}

@media (max-width: 768px) {
  .voice-wrapper {
    padding: 0 10px;
  }

  .voice-item {
    width: 85%;
    /* 1.x items visible */
  }

  .voice-nav-prev,
  .voice-nav-next {
    display: none;
  }

  /* Mobile uses touch scroll */
}

.voice-stars {
  color: #FBBC04;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.voice-text-container {
  position: relative;
}

.voice-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
  font-weight: 700;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
  text-align: left;
}

.voice-item.expanded .voice-text {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.btn-more-toggle {
  background: #f0f0f0;
  border: none;
  color: #555;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 50px;
  cursor: pointer;
  display: none;
  /* Only show via JS if overflow exists */
  align-self: flex-start;
  margin-top: auto;
}

.voice-item.has-overflow .btn-more-toggle {
  display: inline-block;
}

.view-more-google {
  text-align: center;
  margin-top: 32px;
}

/* ===== CONTACT ===== */
.contact-section {
  position: relative;
}

.contact-section::before {
  display: none;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-section .section-label {
  color: var(--navy);
}

.contact-section .section-title {
  color: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-info {
  color: var(--navy);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.icon-box {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
  box-shadow: 0 4px 0 var(--yellow-dark);
}

.contact-info-item h4 {
  font-size: 0.75rem;
  opacity: 0.65;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--yellow);
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--yellow);
  box-shadow: 0 8px 0 var(--yellow-dark);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 330px;
}

.cta-buttons-contact-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.contact-map-side {
  width: 100%;
}

.contact-map-side .map-container iframe {
  height: 330px;
}

/* ===== FOOTER ===== */
footer {
  background: transparent;
  color: var(--navy);
  padding: 36px 24px;
  text-align: center;
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.social-links a {
  color: var(--navy);
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid var(--navy);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(255, 255, 255, 0.95);
  border-top: 3px solid var(--yellow);
  padding: 10px 12px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  transform: translateY(0);
  /* Always visible when active */
  transition: transform 0.3s ease;
}

.mobile-cta.visible {
  transform: translateY(0);
}

.mobile-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.mobile-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 9px 4px;
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.1s;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

.mobile-cta-btn i {
  font-size: 1.2rem;
}

.mobile-cta-btn:active {
  transform: scale(0.95);
}

.mobile-cta-btn.call {
  background: var(--green);
  color: white;
  box-shadow: 0 4px 0 var(--green-dark);
}

.mobile-cta-btn.line-btn {
  background: #06C755;
  color: white;
  box-shadow: 0 4px 0 #038a3c;
}

.mobile-cta-btn.bodoge {
  background: var(--yellow);
  box-shadow: 0 4px 0 var(--yellow-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  /* 固定CTAを避けるため右下デコレーションを少し上げる */
  .decoration-bottom-right {
    bottom: calc(85px + env(safe-area-inset-bottom));
  }

  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-cta {
    display: block;
    transform: translateY(0);
    /* Always visible on SP */
  }

  .section-label {
    font-size: 3rem;
    margin-bottom: 24px;
  }

  .label-heading-br {
    display: block;
  }

  section {
    padding: 64px 20px;
  }

  .contact-section {
    padding-bottom: 110px;
  }

  footer {
    padding-bottom: calc(90px + env(safe-area-inset-bottom));
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img img {
    height: 260px;
  }

  .about-img-badge {
    right: 8px;
    bottom: -24px;
    width: 90px;
    height: 90px;
  }

  .about-img-badge .num {
    font-size: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 320px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .message-box {
    padding: 28px 20px;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .voice-wrapper {
    padding: 0 45px;
    /* Space for arrows */
  }

  .voice-nav-prev,
  .voice-nav-next {
    display: flex;
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .voice-nav-prev {
    left: 0;
  }

  .voice-nav-next {
    right: 0;
  }

  .voice-item {
    width: 100%;
    min-height: auto;
  }

  .service-section,
  .price-section,
  .message-section,
  .contact-section {
    background-attachment: scroll;
  }

  /* Price Promo Mobile Line Breaks */
  .promo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .promo-text span {
    display: block;
  }

  .promo-badge {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .sp-br::before {
    content: "\A";
    white-space: pre;
  }
}

@media (max-width: 480px) {
  .logo span {
    display: none;
  }
}

/* ===== SCROLL TOP BUTTON ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2000;
  text-decoration: none;
  border: 3px solid var(--navy);
  box-shadow: 0 6px 0 var(--navy-dark), 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(20px);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-5px);
  box-shadow: 0 8px 0 var(--yellow-dark), 0 10px 20px rgba(0, 0, 0, 0.22);
}

.scroll-top:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--yellow-dark);
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: calc(105px + env(safe-area-inset-bottom));
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    box-shadow: 0 4px 0 var(--navy-dark), 0 6px 12px rgba(0, 0, 0, 0.2);
  }

  .scroll-top:hover {
    transform: none;
    /* Disable hover lift on mobile */
    box-shadow: 0 4px 0 var(--navy-dark);
  }

  .scroll-top:active {
    box-shadow: 0 1px 0 var(--navy-dark);
  }
}

/* ===== GAME INTRO ===== */
.game-intro-section {
  background: var(--orange);
  position: relative;
  margin-top: 40px;
}

.game-intro-section .section-label {
  margin-bottom: 30px;
  display: block;
  text-align: center;
  color: white !important;
}

.game-intro-preview {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  border: 4px solid var(--yellow);
  box-shadow: 0 10px 0 var(--yellow-dark), 0 12px 32px rgba(0, 0, 0, 0.2);
}

.game-intro-preview img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

.game-preview-name {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  font-family: 'Zen Maru Gothic', sans-serif;
}

.game-intro-thumbnails {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.game-intro-thumbnails img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.game-intro-thumbnails img.active {
  border-color: white;
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .game-intro-preview {
    padding: 16px;
  }
  .game-intro-preview img {
    height: 250px;
  }
  .game-intro-thumbnails img {
    width: calc((100% - 24px) / 3);
    height: 60px;
  }
}

/* ===== MESSAGE 2 & STAFF ===== */
.store-message-section {
  position: relative;
  background: transparent;
}

.store-message-box {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  padding: 44px;
  border: 3px solid var(--yellow);
  box-shadow: 0 10px 0 var(--yellow-dark), 0 12px 32px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}

.message-center-part {
  text-align: center;
  margin-bottom: 48px;
}

.inner-box-title {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 24px;
  font-family: 'Fredoka One', 'Zen Maru Gothic', sans-serif;
}

.message-center-part p {
  line-height: 2;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #333;
  font-weight: 700;
}

.message-center-part p:last-child {
  margin-bottom: 0;
}

.staff-left-part {
  text-align: left;
}

.staff-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.staff-item-simple {
  background: white;
  border-radius: var(--radius);
  border: 3px solid var(--navy);
  padding: 24px;
  box-shadow: 0 6px 0 var(--navy);
}

.staff-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.staff-desc {
  line-height: 1.8;
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
}

@media (max-width: 768px) {
  .store-message-box {
    padding: 28px 20px;
  }
  .staff-grid-2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .staff-item-simple {
    padding: 20px;
  }
}