:root {
  --yellow: #fedc04;
  --yellow-soft: #fff3a6;
  --yellow-pale: #fffbe6;
  --navy: #1b2c4f;
  --navy-deep: #131f3a;
  --blue: #2c56a0;
  --red: #e04f2f;
  --ink: #22293a;
  --muted: #5f6778;
  --line: #e8e4d2;
  --white: #ffffff;
  --radius: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: .03em;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.en {
  font-family: "Quicksand", sans-serif;
  letter-spacing: .14em;
}

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ===== スクロールアニメーション ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}

.reveal.in { opacity: 1; transform: none; }

.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .22s; }
.reveal.d3 { transition-delay: .34s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 220, 4, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 44, 79, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand img { height: 40px; width: auto; border-radius: 6px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.25; }

.brand-name { font-size: 14.5px; font-weight: 700; color: var(--navy); }

.brand-sub { font-size: 9.5px; color: var(--muted); letter-spacing: .16em; }

.gnav { display: flex; align-items: center; gap: 4px; }

.gnav a {
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  border-radius: 999px;
  transition: background .25s;
}

.gnav a:hover { background: rgba(255, 255, 255, .55); }

.gnav a.nav-contact {
  background: var(--navy);
  color: #fff;
  padding: 10px 22px;
}

.gnav a.nav-contact:hover { background: var(--blue); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--yellow);
  padding: 88px 0 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  top: -260px; right: -180px;
  animation: float-slow 9s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--red);
  opacity: .12;
  bottom: 60px; left: -80px;
  animation: float-slow 7s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(24px); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 44px;
  align-items: center;
  padding-bottom: 84px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }

.hero h1 {
  font-size: clamp(30px, 5.2vw, 52px);
  font-weight: 900;
  line-height: 1.42;
  color: var(--navy);
  letter-spacing: .02em;
  margin-bottom: 22px;
}

.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--navy);
}

.hero p { color: var(--navy); font-weight: 500; max-width: 520px; font-size: 15.5px; opacity: .85; }

.hero-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s;
}

.btn .arr { transition: transform .2s; }

.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(19, 31, 58, .18); }

.btn:hover .arr { transform: translateX(4px); }

.btn-navy { background: var(--navy); color: #fff; }

.btn-white { background: #fff; color: var(--navy); }

.hero-visual { position: relative; }

.hero-visual .photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(19, 31, 58, .28);
  transform: rotate(2deg);
}

.hero-visual .photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-visual .float-card {
  position: absolute;
  left: -26px; bottom: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 22px;
  box-shadow: 0 14px 34px rgba(19, 31, 58, .18);
  transform: rotate(-3deg);
  animation: float-slow 5.5s ease-in-out infinite;
}

.float-card .num { font-size: 26px; font-weight: 900; color: var(--navy); line-height: 1.2; }

.float-card .label { font-size: 11.5px; color: var(--muted); font-weight: 700; }

/* ===== マーキー ===== */
.marquee {
  background: var(--navy);
  color: rgba(255, 255, 255, .9);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 26s linear infinite;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .22em;
}

.marquee-track .y { color: var(--yellow); margin: 0 26px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Section 基本 ===== */
.section { padding: 96px 0; position: relative; }

.section.pale { background: var(--yellow-pale); }

.sec-head { margin-bottom: 52px; }

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Quicksand", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .24em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sec-label::before {
  content: "";
  width: 26px; height: 3px;
  border-radius: 2px;
  background: var(--yellow);
}

.sec-title {
  font-size: clamp(25px, 3.8vw, 38px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.45;
}

.sec-lead { color: var(--muted); max-width: 680px; margin-top: 14px; font-size: 15px; }

/* ===== カード ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px 32px;
  box-shadow: 0 4px 20px rgba(19, 31, 58, .06);
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--yellow), #ffe990);
}

.card:hover { transform: translateY(-8px); box-shadow: 0 20px 44px rgba(19, 31, 58, .14); }

.card-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform .3s;
}

.card:hover .card-icon { transform: rotate(-8deg) scale(1.08); }

.card-icon svg { width: 28px; height: 28px; }

.card h3 { font-size: 18.5px; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.5; }

.card p { font-size: 14px; color: var(--muted); }

/* ===== 数字ハイライト ===== */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.stat {
  text-align: center;
  padding: 40px 16px 34px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(19, 31, 58, .06);
  transition: transform .3s;
}

.stat:hover { transform: translateY(-6px); }

.stat .num {
  font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}

.stat .num small { font-size: 20px; font-weight: 900; }

.stat .num .accent { color: var(--red); }

.stat .label { font-size: 13.5px; color: var(--muted); font-weight: 700; margin-top: 6px; }

/* ===== 店舗セクション ===== */
.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.store-media { display: flex; gap: 22px; align-items: center; justify-content: center; }

.store-media .device { text-align: center; }

.store-media video {
  width: 220px;
  border-radius: 26px;
  box-shadow: 0 20px 48px rgba(19, 31, 58, .25);
  border: 6px solid var(--navy);
}

.store-media .device-label {
  display: inline-block;
  margin-top: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 999px;
}

.store-text h3 { font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 14px; }

.store-text p { color: var(--muted); font-size: 15px; margin-bottom: 12px; }

/* ===== フォトギャラリー ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.photo-grid figure {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 8px 26px rgba(19, 31, 58, .12);
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}

.photo-grid figure:hover img { transform: scale(1.07); }

.photo-grid figcaption {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(19, 31, 58, .15);
}

.photo-grid figure:nth-child(2) { transform: translateY(22px); }
.photo-grid figure:nth-child(4) { transform: translateY(22px); }

.photo-grid.three { grid-template-columns: repeat(3, 1fr); margin-bottom: 52px; }
.photo-grid.three figure { aspect-ratio: 16 / 10; }
.photo-grid.three figure:nth-child(2) { transform: translateY(16px); }
.photo-grid.three figure:nth-child(4) { transform: none; }

/* ===== 関連企業 ===== */
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.partner-card {
  display: block;
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: 0 4px 20px rgba(19, 31, 58, .06);
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
}

.partner-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(19, 31, 58, .14); }

.partner-card .tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

.partner-card h3 { font-size: 19px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }

.partner-card p { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }

.partner-card .link {
  font-family: "Quicksand", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .06em;
}

.partner-card .link::after { content: " ↗"; }

/* ===== SNSチップ ===== */
.sns-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

.sns-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: transform .2s, background .2s;
}

.sns-chip:hover { transform: translateY(-3px); background: var(--blue); }

/* ===== 地域活動 ===== */
.org-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  background: #fff;
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: 0 4px 20px rgba(19, 31, 58, .06);
  margin-bottom: 22px;
  transition: transform .3s, box-shadow .3s;
}

.org-card:hover { transform: translateY(-5px); box-shadow: 0 16px 38px rgba(19, 31, 58, .12); }

.org-card .org-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 12px;
}

.org-card h3 { font-size: 21px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }

.org-card .motto { color: var(--blue); font-weight: 800; font-size: 14px; margin-bottom: 8px; }

.org-card p { color: var(--muted); font-size: 14.5px; }

.org-card .btn { padding: 11px 24px; font-size: 13.5px; white-space: nowrap; }

.mission-band {
  position: relative;
  background: var(--yellow);
  border-radius: 24px;
  padding: 54px 40px;
  text-align: center;
  overflow: hidden;
}

.mission-band::before {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  top: -110px; right: -70px;
}

.mission-band h3 {
  position: relative;
  font-size: clamp(21px, 3.4vw, 30px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.6;
}

.mission-band p { position: relative; color: var(--navy); opacity: .85; margin-top: 12px; font-weight: 500; }

@media (max-width: 860px) {
  .org-card { grid-template-columns: 1fr; text-align: center; }
  .org-card .btn { justify-self: center; }
  .sns-row { justify-content: center; }
}

/* ===== 表 ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(19, 31, 58, .06);
}

.info-table th, .info-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--yellow-pale);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
}

.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }

.info-table th {
  width: 200px;
  color: var(--navy);
  font-weight: 800;
  background: var(--yellow-soft);
  white-space: nowrap;
}

/* ===== ページヒーロー（下層） ===== */
.page-hero {
  position: relative;
  background: var(--yellow);
  padding: 72px 0 64px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  top: -160px; right: -100px;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero .sec-label { color: var(--navy); }

.page-hero .sec-label::before { background: var(--navy); }

.page-hero h1 {
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 900;
  color: var(--navy);
}

/* ===== 事業内容リスト ===== */
.service-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  padding: 40px 34px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(19, 31, 58, .06);
  margin-bottom: 20px;
  transition: transform .3s, box-shadow .3s;
}

.service-item:hover { transform: translateX(8px); box-shadow: 0 14px 36px rgba(19, 31, 58, .12); }

.service-num {
  font-family: "Quicksand", sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--yellow);
  padding-top: 4px;
}

.service-item:hover .service-num { color: var(--yellow); }

.service-item h3 { font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }

.service-item p { color: var(--muted); font-size: 14.5px; }

/* ===== お問い合わせ ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 44px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(19, 31, 58, .06);
  transition: transform .3s;
}

.contact-card:hover { transform: translateY(-6px); }

.contact-card .icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.contact-card h3 { color: var(--navy); font-size: 16.5px; font-weight: 800; margin-bottom: 10px; }

.contact-card .big {
  font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
}

.contact-card .note { font-size: 13px; color: var(--muted); margin-top: 10px; }

/* ===== CTA帯 ===== */
.cta-band {
  position: relative;
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 84px 20px;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(242, 221, 78, .12);
  top: -120px; left: -80px;
  animation: float-slow 8s ease-in-out infinite;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 30px solid rgba(242, 221, 78, .1);
  bottom: -90px; right: -40px;
}

.cta-band .inner { position: relative; z-index: 2; }

.cta-band h2 { font-size: clamp(22px, 3.4vw, 30px); font-weight: 900; margin-bottom: 12px; }

.cta-band h2 .y { color: var(--yellow); }

.cta-band p { color: rgba(255, 255, 255, .78); margin-bottom: 30px; font-size: 15px; }

.cta-band .btn-yellow { background: var(--yellow); color: var(--navy); }

/* ===== Footer ===== */
.footer { background: var(--navy-deep); color: rgba(255, 255, 255, .82); padding: 56px 0 32px; }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; margin-bottom: 36px; }

.footer .brand img { height: 38px; border-radius: 6px; }

.footer h4 { color: var(--yellow); font-size: 14px; font-weight: 800; letter-spacing: .1em; margin-bottom: 12px; }

.footer p, .footer li { font-size: 13.5px; line-height: 2.1; }

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

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
}

/* ===== レスポンシブ ===== */
@media (max-width: 860px) {
  .section { padding: 64px 0; }

  /* スマホは全体を中央揃えに */
  .hero-grid > div:first-child,
  .sec-head, .sec-lead,
  .store-text, .cta-band .inner,
  .card, .partner-card,
  .page-hero .container,
  .footer-grid > div { text-align: center; }

  .sec-label { justify-content: center; }
  .sec-lead { margin-left: auto; margin-right: auto; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .card-icon { margin-left: auto; margin-right: auto; }
  .footer .brand { justify-content: center; }

  .hero-grid { grid-template-columns: 1fr; padding-bottom: 64px; gap: 34px; }
  .hero-visual { max-width: 400px; margin: 0 auto; }
  .hero-visual .float-card { left: 0; }

  .cards, .stats { grid-template-columns: 1fr; }
  .contact-grid, .partner-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .photo-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .photo-grid figure:nth-child(2), .photo-grid figure:nth-child(4) { transform: translateY(14px); }
  .photo-grid.three { grid-template-columns: 1fr; }
  .photo-grid.three figure:nth-child(2) { transform: none; }

  .store-grid { grid-template-columns: 1fr; gap: 36px; }
  .store-media { flex-wrap: wrap; }

  .header-inner { flex-direction: column; height: auto; padding: 12px 0 10px; gap: 8px; }
  .gnav { flex-wrap: wrap; justify-content: center; }
  .gnav a { padding: 7px 12px; font-size: 13px; }

  .service-item { grid-template-columns: 1fr; gap: 8px; padding: 28px 24px; }
  .service-item:hover { transform: none; }

  .info-table th { width: 120px; font-size: 13px; }
  .info-table th, .info-table td { padding: 15px 14px; text-align: left; }
}
