@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@700&display=swap");

:root {
  --primary: #1f7f3d;
  --primary-dark: #1b6634;
  --primary-soft: #f7fbf8;
  --primary-pale: #dceee2;
  --accent: #f26a4f;
  --accent-dark: #d94a32;
  --accent-soft: #fff2ed;
  --accent-pale: #ffd8cc;
  --cta-accent: #e7644f;
  --cta-accent-hover: #c94f3a;
  --orange: var(--accent);
  --orange-dark: var(--accent-dark);
  --orange-soft: var(--accent-soft);
  --orange-pale: var(--accent-pale);
  --amber: var(--accent-soft);
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow-orange: none;
  --shadow-accent: none;
  --shadow-soft: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-800);
  background: var(--primary-soft);
  font-family: "Inter", "Noto Sans JP", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.wide-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow-container {
  width: min(680px, calc(100% - 48px));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 96px;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(216, 243, 240, 0.72);
  backdrop-filter: blur(10px);
  transition: height 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled,
.site-header:has(.mobile-nav.is-open) {
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1280px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 156px;
  height: 88px;
  object-fit: contain;
  object-position: center;
  transition: width 0.3s ease, height 0.3s ease;
  will-change: width, height;
}

.site-header.is-scrolled .brand-logo,
.site-header:has(.mobile-nav.is-open) .brand-logo {
  width: 100px;
  height: 56px;
}

.brand span {
  color: var(--primary-dark);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--slate-600);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.desktop-nav a:not(.nav-cta) {
  transition: color 0.2s ease;
}

.desktop-nav a:not(.nav-cta):hover {
  color: var(--primary-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 30px;
  color: var(--white);
  background: var(--cta-accent);
  border: 2px solid var(--cta-accent);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-cta::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
}

.nav-cta:hover {
  color: var(--cta-accent-hover);
  background: var(--white);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--slate-800);
}

.mobile-menu-button span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-button.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: grid;
  gap: 18px;
  max-height: 0;
  padding: 0 32px;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--primary-pale);
  transition: max-height 0.28s ease, padding 0.28s ease;
}

.mobile-nav.is-open {
  max-height: 420px;
  padding: 28px 32px 32px;
}

.mobile-nav a {
  color: var(--slate-800);
  font-size: 20px;
  font-weight: 900;
}

.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  color: var(--white) !important;
  text-align: center;
  background: var(--cta-accent);
  border: 2px solid var(--cta-accent);
  border-radius: 12px;
}

.mobile-nav-cta::after {
  content: "›";
  font-size: 20px;
  line-height: 1;
}

.page-main {
  padding-top: 80px;
}

.hero {
  position: relative;
  min-height: clamp(660px, calc(100svh - 80px), 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgba(247, 252, 250, 0.82);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(216, 243, 240, 0.7), rgba(255, 242, 237, 0.5), #ffffff);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 96px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  margin: 0 0 24px;
  padding: 8px 24px;
  color: var(--white);
  background: var(--primary-dark);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-copy-wrap {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  margin: 0;
  color: var(--slate-950);
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.045em;
  white-space: pre-line;
  overflow-wrap: anywhere;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(16px);
  transition: opacity 0.52s ease, filter 0.52s ease, transform 0.52s ease;
}

.hero-title.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.hero-subtitle {
  margin: 20px 0 0;
  color: var(--slate-700);
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: -0.035em;
  white-space: pre-line;
  overflow-wrap: anywhere;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(16px);
  transition: opacity 0.52s ease, filter 0.52s ease, transform 0.52s ease;
}

.hero-subtitle.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.mobile-copy {
  display: none;
}

.hero-sub {
  margin: 18px 0 0;
  color: var(--primary-dark);
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--slate-600);
  font-size: 21px;
  line-height: 1.65;
  font-weight: 500;
}

.hero-status {
  width: min(660px, 100%);
  margin: 28px auto 0;
  padding: 17px 22px;
  color: var(--slate-700);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--primary-pale);
  border-radius: 14px;
}

.hero-status p {
  margin: 0;
  color: var(--slate-800);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.hero-status .hero-status-title {
  color: var(--accent-dark);
  font-size: 17px;
  font-weight: 900;
}

.hero-status p + p {
  margin-top: 3px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  width: min(920px, 100%);
  margin-top: 36px;
  margin-right: auto;
  margin-left: auto;
  flex-wrap: wrap;
}

.hero-actions .button {
  flex: 1 1 0;
  min-width: 220px;
  padding-right: 22px;
  padding-left: 22px;
  font-size: 17px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  overflow-wrap: anywhere;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.08s ease;
}

.button::after {
  content: "›";
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.button:hover::after {
  transform: translateX(4px);
}

.button:active {
  transform: translateY(1px);
}

.button.primary {
  color: var(--white);
  background: var(--cta-accent);
  border-color: var(--cta-accent);
}

.button.primary:hover {
  color: var(--cta-accent-hover);
  background: var(--white);
}

.button.secondary {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 2px solid var(--primary-pale);
}

.button.secondary:hover {
  background: var(--white);
  border-color: var(--primary-dark);
}

.button.tertiary {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--primary-pale);
}

.button.tertiary:hover {
  background: var(--white);
  border-color: var(--primary-dark);
}

.wide-button {
  width: 100%;
  margin-top: auto;
}

.news-panel {
  position: relative;
  z-index: 2;
  margin-top: -56px;
  margin-bottom: 56px;
}

.news-card {
  padding: 38px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 243, 240, 0.9);
  border-radius: 24px;
  backdrop-filter: blur(16px);
}

.section-row-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.section-row-title h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.icon-square,
.feature-icon,
.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--primary-dark);
  background: var(--primary-pale);
}

.icon-square {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.icon-square::before,
.feature-icon::before,
.cta-icon::before {
  font-weight: 900;
  line-height: 1;
}

.calendar-icon::before { content: "□"; font-size: 22px; }
.smile-icon::before { content: "☺"; font-size: 26px; }
.utensils-icon::before { content: "Y"; font-size: 26px; }
.users-icon::before { content: "人"; font-size: 24px; }
.sparkle-icon::before { content: "＊"; font-size: 26px; }
.ticket-icon::before { content: "券"; font-size: 22px; }
.store-icon::before { content: "店"; font-size: 28px; }
.building-icon::before { content: "社"; font-size: 28px; }

.news-list {
  display: grid;
  gap: 3px;
}

.news-list:has(.news-item:nth-child(5)) {
  max-height: 220px;
  padding-right: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(15, 118, 110, 0.45) transparent;
  scrollbar-width: thin;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 24px), rgba(0, 0, 0, 0.56) 100%);
  mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 24px), rgba(0, 0, 0, 0.56) 100%);
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 32px;
  padding: 9px 22px;
  border-radius: 18px;
  background: rgba(247, 252, 250, 0.56);
}

.news-item + .news-item {
  margin-top: 2px;
}

.news-item time {
  color: var(--primary-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.news-item span,
.news-item a {
  min-width: 0;
  color: var(--slate-700);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.news-item a {
  text-decoration: underline;
  text-decoration-color: rgba(15, 118, 110, 0.35);
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.news-item a:hover {
  color: var(--primary-dark);
  text-decoration-color: currentColor;
}

.section {
  padding: 104px 0;
}

.section-white {
  background: var(--white);
}

.section-orange-soft {
  background: var(--accent-soft);
}

.section-amber {
  position: relative;
  overflow: hidden;
  background: #fff7f3;
  border-top: 1px solid var(--accent-pale);
  border-bottom: 1px solid var(--accent-pale);
}

.section-heading {
  margin-bottom: 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section-heading h2,
.stats-title,
.partners-copy h2,
.iq-title {
  margin: 16px 0 0;
  color: var(--slate-900);
  font-size: clamp(34px, 3.8vw, 46px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.section-description {
  max-width: 860px;
  margin: 22px auto 0;
  color: var(--slate-700);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
}

.heading-line {
  width: 96px;
  height: 8px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: var(--primary);
}

.organization-heading {
  margin-bottom: 44px;
}

.organization-heading h2 {
  color: var(--slate-900);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.organization-heading .heading-line {
  width: 52px;
  height: 3px;
  margin-top: 16px;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.map-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.map-wrap img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.zero-fee {
  position: absolute;
  top: -24px;
  right: -24px;
  z-index: 2;
  padding: 14px 30px;
  color: var(--white);
  background: #16a34a;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 22px;
}

.feature-card {
  display: flex;
  gap: 24px;
  padding: 26px;
  background: rgba(247, 252, 250, 0.9);
  border: 1px solid transparent;
  border-radius: 16px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.feature-card > div {
  min-width: 0;
}

.feature-card:hover {
  background: var(--white);
  border-color: var(--primary-pale);
}

.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: var(--white);
}

.feature-card h3 {
  margin: 0 0 12px;
  color: var(--slate-900);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.feature-card p {
  margin: 0;
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.stats-content {
  position: relative;
  z-index: 1;
}

.stats-title {
  margin: 0 0 30px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(1040px, 100%);
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--accent-pale);
  border-radius: 18px;
  overflow: hidden;
}

.stats-note {
  margin: 0 0 42px;
  color: var(--slate-500);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.stat-card {
  padding: 28px 24px;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.stat-card + .stat-card {
  border-left: 1px solid var(--accent-pale);
}

.stat-card p {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 0 0 8px;
  color: var(--accent-dark);
}

.stat-card strong {
  font-size: clamp(42px, 4.4vw, 54px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.stat-card span {
  font-size: 18px;
  font-weight: 800;
}

.stat-card h3 {
  margin: 0;
  color: var(--slate-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.partners-copy {
  text-align: center;
}

.partners-copy h2 {
  margin: 0 0 26px;
  color: var(--primary-dark);
}

.partners-copy p {
  margin: 0;
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 700;
}

.partners-copy strong {
  display: block;
  margin-top: 32px;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.bridge-section {
  background: var(--primary-soft);
}

.bridge-section h2 {
  margin: 0;
  color: var(--primary-dark);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.45;
}

.bridge-section p {
  margin: 24px 0 0;
  color: var(--slate-600);
  font-size: 18px;
  font-weight: 500;
}

.bridge-section .bridge-emphasis {
  color: var(--slate-900);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.bridge-section .bridge-emphasis span {
  display: inline-block;
  margin: 0 0.12em;
  color: var(--accent-dark);
  font-size: 1.18em;
}

.bridge-section strong {
  display: block;
  margin-top: 32px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.cta-section {
  padding-bottom: 104px;
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: auto;
  padding: 42px;
  text-align: center;
  border-radius: 20px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.cta-card:hover {
  border-color: var(--primary-dark);
}

.restaurant-card {
  background: var(--white);
  border: 1px solid var(--primary-pale);
}

.corporate-card {
  background: var(--accent-soft);
  border: 1px solid var(--accent-pale);
}

.cta-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 26px;
  border-radius: 16px;
  background: var(--primary-soft);
  transition: color 0.25s ease, background 0.25s ease;
}

.corporate-card .cta-icon {
  background: var(--white);
}

.cta-card:hover .cta-icon {
  color: var(--white);
  background: var(--primary-dark);
}

.cta-card h2 {
  margin: 0 0 24px;
  color: var(--slate-900);
  font-size: 28px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.cta-card p {
  margin: 0 0 34px;
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: min(1024px, 100%);
  margin: 0 auto;
}

.usage-card {
  position: relative;
  padding: 38px;
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.usage-card:hover {
  background: var(--primary-soft);
}

.usage-card.priority {
  border-color: var(--accent-pale);
}

.ribbon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 24px;
  color: var(--white);
  background: var(--accent-dark);
  border-radius: 0 20px 0 12px;
  font-size: 14px;
  font-weight: 900;
}

.usage-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.usage-title .icon-square {
  width: 64px;
  height: 64px;
  border-radius: 14px;
}

.usage-title h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.meta-label {
  margin: 0 0 4px;
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 800;
}

.condition {
  margin: 0 0 26px;
  color: var(--slate-800);
  font-size: 18px;
  font-weight: 900;
}

.ticket-box {
  padding: 24px;
  text-align: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-pale);
  border-radius: 14px;
}

.ticket-box.muted {
  background: #f8fafc;
  border-color: #f1f5f9;
}

.ticket-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-weight: 800;
}

.ticket-box.muted span {
  color: var(--slate-500);
}

.ticket-box strong {
  display: block;
  color: var(--slate-800);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.usage-lead {
  margin: 48px auto 0;
  color: var(--slate-600);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.usage-note {
  width: min(960px, 100%);
  overflow: hidden;
  margin: 50px auto 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--primary-pale);
  border-radius: 18px;
  font-size: 16px;
}

.usage-note div {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 92px;
  background: var(--white);
}

.usage-note div + div {
  border-top: 1px solid var(--primary-pale);
}

.usage-note dt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 24px;
  color: var(--primary-dark);
  background: var(--primary-pale);
  border-right: 1px solid var(--primary-pale);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.usage-note dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 22px 28px;
  color: var(--slate-900);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.usage-note dd span {
  display: block;
  margin-top: 10px;
  color: var(--slate-700);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0;
}

.usage-note dd span:last-child {
  color: var(--accent-dark);
}

.attention-section {
  background: var(--primary-soft);
}

.attention-card {
  padding: 40px 48px;
  background: var(--white);
  border-radius: 18px;
}

.attention-card ul {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.attention-card li {
  position: relative;
  padding-left: 28px;
  color: var(--slate-700);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 800;
}

.attention-card li::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--primary-dark);
  border-radius: 50%;
}

.preparation-section {
  background: var(--white);
}

.preparation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  width: min(1280px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.preparation-card,
.preparation-complete {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 26px 22px 22px;
  background: var(--white);
  border: 1px solid var(--primary-pale);
  border-radius: 16px;
}

.prep-step {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.preparation-card h3,
.preparation-complete h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.preparation-card p:not(.prep-step),
.preparation-complete p:not(.prep-step) {
  margin: 18px 0 0;
  color: var(--slate-600);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.preparation-card p.preparation-note {
  display: flex;
  align-items: center;
  height: 34px;
  min-height: 34px;
  margin-top: auto;
  margin-bottom: 4px;
  color: var(--accent-dark);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 900;
}

.preparation-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
}

.preparation-card a::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
}

.preparation-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
}

.complete-icon {
  display: none;
}

.preparation-complete {
  justify-content: flex-start;
  align-items: stretch;
  text-align: left;
}

.howto-section {
  background: var(--primary-soft);
}

.howto-notice {
  width: fit-content;
  max-width: 100%;
  margin: -18px auto 32px;
  padding: 0;
  color: var(--accent-dark);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 900;
  text-align: center;
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.howto-card {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 26px 22px 22px;
  background: var(--white);
  border: 1px solid var(--primary-pale);
  border-radius: 16px;
}

.howto-card-offset {
  grid-column: auto;
}

.howto-number {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.howto-card h3 {
  margin: 0 0 10px;
  color: var(--slate-900);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.howto-card p:not(.howto-number) {
  margin: 18px 0 0;
  color: var(--slate-600);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.howto-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 26px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
}

.howto-card a::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
}

.step-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding: 20px 0 4px;
}

.preparation-card a.step-cta,
.howto-card a.step-cta {
  align-self: center;
  justify-content: center;
  gap: 2px;
  width: 66.666%;
  min-height: 34px;
  margin-top: 0;
  padding: 3px 4px;
  color: var(--white);
  background: var(--cta-accent);
  border: 2px solid var(--cta-accent);
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.preparation-card a.step-cta::after,
.howto-card a.step-cta::after {
  display: inline-block;
  font-size: 13px;
}

.preparation-card a.step-cta:hover,
.howto-card a.step-cta:hover {
  color: var(--cta-accent-hover);
  background: var(--white);
  border-color: var(--cta-accent);
}

.preparation-card a.step-cta:focus-visible,
.howto-card a.step-cta:focus-visible {
  outline: 3px solid var(--accent-pale);
  outline-offset: 3px;
}

.preparation-action,
.howto-action {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.manual-button {
  width: auto;
  min-width: 220px;
  min-height: 56px;
  font-size: 16px;
}

.stores-section {
  background: var(--white);
}

.store-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.store-location-card {
  overflow: hidden;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--primary-pale);
  border-radius: 18px;
}

.store-location-card-centered {
  grid-column: 1 / -1;
  width: 100%;
  max-width: min(calc((100% - 28px) / 2), 446px);
  justify-self: center;
  margin-inline: auto;
}

.store-location-image {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  background:
    linear-gradient(135deg, rgba(216, 243, 240, 0.72), rgba(255, 242, 237, 0.32)),
    var(--primary-soft);
  border-bottom: 1px solid var(--primary-pale);
  font-size: 15px;
  font-weight: 900;
}

.store-location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-location-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px;
}

.stores-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #fca5a5;
  border: 3px solid #fca5a5;
  border-radius: 8px 8px 6px 6px;
}

.stores-icon::before {
  content: "店";
  font-size: 24px;
  font-weight: 900;
}

.store-location-copy h3 {
  margin: 0;
  color: var(--slate-700);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 900;
}

.store-location-list {
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 600;
  text-align: left;
}

.store-location-note {
  width: min(760px, 100%);
  margin: 24px auto 0;
  color: var(--slate-600);
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 800;
}

.additional-stores {
  width: min(920px, 100%);
  margin: 44px auto 0;
}

.additional-stores h3 {
  margin: 0;
  color: var(--slate-700);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 900;
  text-align: center;
}

.additional-store-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.additional-store-list li {
  padding: 16px 20px;
  color: var(--slate-700);
  background: var(--white);
  border: 1px solid var(--primary-pale);
  border-radius: 14px;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 800;
  text-align: center;
}

.additional-store-list li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 446px;
  justify-self: center;
}

.contact-section {
  background: var(--primary-soft);
}

.contact-card {
  padding: 46px 48px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--primary-pale);
  border-radius: 18px;
}

.contact-card h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: 25px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.contact-form-button {
  width: min(360px, 100%);
  margin-top: 28px;
}

.contact-note {
  width: min(520px, 100%);
  margin: 18px auto 0;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
}

.contact-note strong {
  display: inline-block;
  margin: 0 3px;
  padding: 1px 6px;
  color: var(--primary-dark);
  background: var(--primary-pale);
  border-radius: 4px;
  font-weight: 900;
}

.stores-recruitment {
  display: grid;
  gap: 36px;
  width: min(760px, 100%);
  margin: 44px auto 0;
}

.participation-section .stores-recruitment {
  margin-top: 0;
}

.stores-recruit-card {
  padding: 50px 48px;
  text-align: center;
  border-radius: 18px;
}

.stores-support-card {
  background: rgba(247, 252, 250, 0.9);
  border: 1px solid var(--primary-pale);
}

.stores-restaurant-card {
  background: var(--white);
  border: 1px solid var(--accent-pale);
  scroll-margin-top: 112px;
}

.stores-recruit-icon {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--primary-dark);
  background: var(--white);
  border-radius: 16px;
  font-size: 30px;
  font-weight: 900;
}

.stores-restaurant-card .stores-recruit-icon {
  color: var(--white);
  background: var(--accent-dark);
}

.building-recruit-icon::before {
  content: "社";
}

.shop-recruit-icon::before {
  content: "店";
}

.stores-recruit-card h3 {
  margin: 0 0 18px;
  color: var(--slate-900);
  font-size: 25px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.stores-recruit-card p {
  width: min(520px, 100%);
  margin: 0 auto 24px;
  color: var(--slate-600);
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.stores-button {
  width: min(520px, 100%);
  margin: 0 auto;
}

.stores-contact-link {
  display: block;
  width: fit-content;
  margin: 14px auto 0;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.stores-contact-link:hover {
  color: var(--primary-dark);
}

.stores-contact-link:focus-visible {
  outline: 3px solid rgba(15, 125, 88, 0.3);
  outline-offset: 4px;
  border-radius: 2px;
}

.stores-recruit-card small {
  display: block;
  margin-top: 18px;
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 800;
}

.iq-title {
  margin-bottom: 48px;
}

.iq-logo {
  width: min(660px, 100%);
  max-height: 150px;
  margin: 0 auto 56px;
  object-fit: contain;
}

.iq-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px 24px;
  flex-wrap: wrap;
}

.iq-partners div {
  width: min(23%, 260px);
  min-width: 200px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
}

.iq-partners img {
  width: 100%;
  height: 100%;
  max-height: 68px;
  object-fit: contain;
}

.iq-partner-intec img {
  width: 100%;
  height: 100%;
}

.cooperation-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px 20px;
  flex-wrap: wrap;
}

.cooperation-logo {
  flex: 0 1 205px;
  width: 205px;
  min-width: 200px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cooperation-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cooperation-row-break {
  flex-basis: 100%;
  width: 0;
  height: 0;
}

.cooperation-wide-logo {
  flex-basis: 260px;
  width: 260px;
}

.cooperation-toyama-logo {
  flex-basis: 153px;
  width: 153px;
  min-width: 153px;
}

.cooperation-city-logo {
  flex-basis: 150px;
  width: 150px;
  min-width: 150px;
}

.cooperation-chamber-logo {
  flex-basis: 220px;
  width: 220px;
  min-width: 220px;
}

.cooperation-chamber-logo img {
  width: 92%;
  height: 92%;
}

.cooperation-urban-logo img {
  width: 88%;
  height: 88%;
}

#innovation-quest {
  padding-top: 80px;
  padding-bottom: 52px;
}

.cooperation-section {
  padding-top: 52px;
  padding-bottom: 80px;
}

.operation-provider {
  margin-top: 120px;
  padding-top: 0;
}

.operation-provider-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
}

.operation-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.operation-logo img {
  display: block;
  object-fit: contain;
}

.operation-gigi-logo img {
  width: auto;
  height: 53px;
}

.operation-gigi-logo {
  width: auto;
  height: 86px;
}

.operation-kodomogochimeshi-logo {
  width: 86px;
  height: 86px;
}

.operation-kodomogochimeshi-logo img {
  width: 86px;
  height: 86px;
}

.interview-section {
  background: rgba(247, 252, 250, 0.92);
}

.interview-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: center;
}

.interview-photo-wrap {
  position: relative;
}

.interview-photo-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border: 12px solid var(--white);
  border-radius: 50%;
}

.interview-photo-wrap span {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 160px;
  height: 160px;
  background: rgba(216, 243, 240, 0.82);
  border-radius: 50%;
  filter: blur(32px);
}

.quote-card {
  position: relative;
  padding: 56px 64px;
  background: var(--white);
  border: 1px solid var(--primary-pale);
  border-radius: 24px;
}

.quote-mark {
  position: absolute;
  top: -40px;
  left: -24px;
  color: var(--primary-pale);
  font-family: "Noto Serif JP", serif;
  font-size: 124px;
  line-height: 1;
  user-select: none;
}

.quote-card p {
  position: relative;
  margin: 0 0 40px;
  color: var(--slate-800);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.6;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 24px;
}

.quote-author > span {
  width: 48px;
  height: 4px;
  background: var(--primary);
  border-radius: 999px;
}

.quote-author strong {
  display: block;
  color: var(--slate-900);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.quote-author small {
  display: block;
  margin-top: 4px;
  color: var(--slate-400);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.site-footer {
  padding: 104px 0 42px;
  background: var(--white);
  border-top: 1px solid var(--primary-pale);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 84px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.footer-logo-row img {
  width: 220px;
  height: 124px;
  object-fit: contain;
  object-position: center;
}

.footer-logo-row strong {
  display: block;
  color: var(--primary-dark);
  font-size: 32px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.footer-logo-row span {
  display: block;
  color: var(--slate-400);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.footer-brand p {
  max-width: 480px;
  margin: 0;
  color: var(--slate-500);
  font-weight: 500;
}

.footer-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.footer-actions a {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.08s ease;
}

.footer-actions a::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
}

.footer-actions a:active {
  transform: translateY(1px);
}

.footer-primary-link {
  color: var(--white);
  background: var(--cta-accent);
  border-color: var(--cta-accent) !important;
}

.footer-primary-link:hover {
  color: var(--cta-accent-hover);
  background: var(--white);
}

.footer-secondary-link {
  color: var(--primary-dark);
  background: var(--primary-soft);
  border: 1px solid var(--primary-pale);
}

.footer-secondary-link:hover {
  border-color: var(--primary-dark);
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.footer-nav h3 {
  margin: 0 0 22px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.footer-nav a {
  display: block;
  margin-bottom: 16px;
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--primary-dark);
}

.copyright {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 48px;
  color: var(--slate-400);
  border-top: 1px solid #f8fafc;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
  }

  .brand-logo {
    width: 118px;
    height: 66px;
  }

  .brand span {
    font-size: 18px;
  }

  .page-main {
    padding-top: 72px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 56px 0 96px;
  }

  .hero-copy-wrap {
    min-height: 150px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .mechanism-grid,
  .usage-grid,
  .interview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-card + .stat-card {
    border-left: 0;
    border-top: 1px solid var(--accent-pale);
  }

  .usage-note {
    width: min(560px, 100%);
  }

  .usage-note div {
    min-height: auto;
  }

  .preparation-grid {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .preparation-arrow {
    min-height: 44px;
    transform: rotate(90deg);
  }

  .howto-grid {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
  }

  .howto-card-offset {
    grid-column: auto;
  }

  .iq-partners div {
    width: 45%;
  }

}

@media (max-width: 640px) {
  .wide-container,
  .narrow-container,
  .header-inner {
    width: min(100% - 32px, 1280px);
  }

  .brand span {
    font-size: 16px;
  }

  .hero-badge {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .hero-content {
    width: min(100% - 32px, 980px);
    padding: 42px 0 72px;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.28;
    letter-spacing: -0.025em;
    word-break: break-all;
  }

  .hero-subtitle {
    margin-top: 14px;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.02em;
    word-break: keep-all;
  }

  .hero-sub {
    font-size: 13px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-status {
    margin-top: 22px;
    padding: 14px 16px;
    border-radius: 12px;
  }

  .hero-status p {
    font-size: 13px;
  }

  .hero-status .hero-status-title {
    font-size: 15px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 52px;
    padding: 0 24px;
    font-size: 16px;
  }

  .news-panel {
    margin-top: -42px;
    margin-bottom: 48px;
  }

  .news-card {
    padding: 24px;
    border-radius: 18px;
  }

  .section-row-title {
    gap: 14px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px 12px;
    padding: 16px 18px;
  }

  .news-list {
    gap: 6px;
  }

  .news-item + .news-item {
    margin-top: 4px;
  }

  .news-list:has(.news-item:nth-child(5)) {
    max-height: 540px;
    padding-right: 6px;
  }

  .news-item time {
    grid-column: 1 / -1;
  }

  .news-item span,
  .news-item a {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .section {
    padding: 68px 0;
  }

  .cta-section {
    padding-bottom: 68px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .stats-title,
  .partners-copy h2,
  .iq-title {
    font-size: 28px;
    line-height: 1.28;
    letter-spacing: -0.025em;
  }

  .section-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .map-wrap {
    border-radius: 18px;
  }

  .map-wrap img {
    border-radius: 18px;
  }

  .zero-fee {
    top: -18px;
    right: 12px;
    padding: 10px 18px;
    font-size: 14px;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
    border-radius: 14px;
  }

  .feature-card .feature-icon {
    justify-self: start;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  .feature-card p {
    font-size: 15px;
    word-break: break-word;
  }

  .stats-title {
    font-size: 26px;
  }

  .stat-card,
  .usage-card,
  .cta-card,
  .quote-card {
    padding: 28px 24px;
    border-radius: 16px;
  }

  .cta-card {
    min-height: auto;
  }

  .cta-card h2,
  .usage-title h3 {
    font-size: 24px;
  }

  .ticket-box strong {
    font-size: 21px;
  }

  .hero-lead br,
  .partners-copy p br,
  .usage-lead br,
  .bridge-section p br {
    display: none;
  }

  .usage-note {
    margin-top: 36px;
    font-size: 15px;
  }

  .usage-note div {
    grid-template-columns: 1fr;
  }

  .usage-note dt {
    justify-content: flex-start;
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--primary-pale);
    font-size: 14px;
  }

  .usage-note dd {
    padding: 18px;
    font-size: 16px;
  }

  .attention-card {
    padding: 30px 22px;
    border-radius: 16px;
  }

  .attention-card li {
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.85;
  }

  .preparation-grid {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
    margin: 0 auto;
    gap: 18px;
  }

  .preparation-card,
  .preparation-complete {
    min-height: auto;
    padding: 26px 22px;
    border-radius: 14px;
  }

  .preparation-card {
    min-height: auto;
  }

  .preparation-card p:not(.prep-step),
  .preparation-complete p:not(.prep-step) {
    font-size: 15px;
  }

  .howto-card {
    min-height: auto;
    padding: 26px 22px;
    border-radius: 14px;
  }

  .howto-card h3 {
    font-size: 20px;
  }

  .manual-button {
    width: 100%;
  }

  .store-location-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .store-location-card {
    border-radius: 16px;
  }

  .store-location-card-centered {
    width: 100%;
    max-width: none;
  }

  .store-location-copy {
    padding: 22px 20px;
  }

  .store-location-copy h3 {
    font-size: 19px;
  }

  .additional-stores {
    margin-top: 34px;
  }

  .additional-stores h3 {
    font-size: 19px;
  }

  .additional-store-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .additional-store-list li,
  .additional-store-list li:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
    max-width: none;
    padding: 15px 16px;
  }

  .contact-card {
    padding: 34px 20px;
    border-radius: 16px;
  }

  .contact-card h3 {
    font-size: 22px;
  }

  .contact-form-button {
    width: 100%;
    margin-top: 24px;
  }

  .contact-note {
    margin-top: 16px;
    font-size: 13px;
  }

  .stores-recruitment {
    gap: 24px;
    margin-top: 32px;
  }

  .stores-recruit-card {
    padding: 34px 20px;
    border-radius: 16px;
  }

  .stores-recruit-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
    border-radius: 14px;
    font-size: 28px;
  }

  .stores-recruit-card h3 {
    font-size: 22px;
  }

  .stores-recruit-card p {
    font-size: 15px;
  }

  .iq-logo {
    max-height: 96px;
  }

  .iq-partners div {
    width: 100%;
    min-width: 0;
  }

  .cooperation-logo {
    width: min(100%, 320px);
    min-width: 0;
  }

  .cooperation-wide-logo {
    flex-basis: 320px;
  }

  .cooperation-toyama-logo {
    flex-basis: 173px;
    width: min(100%, 173px);
    min-width: 0;
  }

  .cooperation-city-logo {
    flex-basis: 170px;
    width: min(100%, 170px);
    min-width: 0;
  }

  .cooperation-chamber-logo {
    flex-basis: 230px;
    width: min(100%, 230px);
    min-width: 0;
  }

  .operation-provider {
    margin-top: 88px;
    padding-top: 0;
  }

  #innovation-quest {
    padding-top: 56px;
    padding-bottom: 36px;
  }

  .cooperation-section {
    padding-top: 36px;
    padding-bottom: 56px;
  }

  .operation-provider-logos {
    flex-direction: column;
    gap: 20px;
  }

  .operation-gigi-logo img {
    width: auto;
    height: 53px;
  }

  .operation-gigi-logo {
    width: auto;
    height: 86px;
  }

  .operation-kodomogochimeshi-logo {
    width: 86px;
    height: 86px;
  }

  .operation-kodomogochimeshi-logo img {
    width: 86px;
    height: 86px;
  }

  .interview-photo-wrap {
    width: min(320px, 100%);
    margin: 0 auto;
  }

  .quote-card p {
    font-size: 22px;
  }

  .quote-mark {
    top: -30px;
    left: 12px;
    font-size: 96px;
  }

  .footer-logo-row {
    align-items: flex-start;
  }

  .footer-logo-row strong {
    font-size: 24px;
  }

  .footer-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-actions a {
    width: 100%;
  }

  .footer-nav {
    display: block;
    text-align: left;
  }

}
