/* ============================================================
   わお！WAO♪ 企業向けLP スタイルシート（イベントブランド版）
   ------------------------------------------------------------
   セクションごとに背景色を変え、スクロールで世界観が変わる構成。
   クリーム → 黄 → クリーム → ソフト黄 → ピーチ → ピンク → 水色 → オレンジ
   ------------------------------------------------------------
   1. カラートークン / ベース
   2. 共通部品（ボタン・見出し・吹き出し・装飾・波・アニメーション）
   3. ヘッダー / モバイル固定CTA
   4. ヒーロー
   5. パートナー帯（黄色）
   6. わお！WAO♪とは
   7. できるイベント（ソフト黄）
   8. 企業にとっての価値（ピーチ）
   9. 大切にしていること（ピンク）/ ご依頼の流れ（水色）
   10. お問い合わせ（ビビッドオレンジ）/ フッター
   11. アクセシビリティ
   ============================================================ */

/* ---------- 1. カラートークン / ベース ---------- */
:root {
  --color-primary:    #FF7A1A;
  --color-yellow:     #FFD83D;
  --color-pink:       #F23B83;
  --color-blue:       #35BFD4;
  --color-green:      #A8CE36;
  --color-purple:     #A66DD4;
  --color-text:       #3B2B22;
  --color-background: #FFF9F2;
  --color-white:      #FFFFFF;
  --color-beige:      #F8E9D2;

  /* セクション背景の旅 */
  --bg-soft-yellow: #FFF1C9;
  --bg-peach:       #FFE9D6;
  --bg-soft-pink:   #FCEAF1;
  --bg-soft-aqua:   #E8F6F8;

  --color-primary-dark: #E0640A;
  --color-text-soft:    #5C4837;

  --shadow-card: 0 8px 24px rgba(59, 43, 34, 0.13);
  --shadow-cta:  0 10px 24px rgba(255, 122, 26, 0.42);

  --font-rounded: "Zen Maru Gothic", "M PLUS Rounded 1c",
                  "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN",
                  "メイリオ", sans-serif;

  --header-h: 64px;
  --mobile-cta-h: 78px;
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* タイポグラフィ（全セクション共通で使用） */
  --font-hero:          clamp(29px, 8vw, 40px);   /* ブレークポイントごとに上書き */
  --font-section-title: clamp(32px, 5vw, 56px);
  --font-card-title:    clamp(20px, 2vw, 26px);
  --font-body:          clamp(16px, 1.4vw, 19px);
  --font-card-body:     clamp(16px, 1.3vw, 18px);
  --font-btn:           clamp(17px, 1.6vw, 20px);
  --font-small:         clamp(13px, 1.1vw, 15px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-rounded);
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.8;
  font-size: var(--font-body);
  overflow-x: hidden;
  padding-bottom: var(--mobile-cta-h);
}

h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
  position: relative;
  z-index: 2;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: -48px; left: 12px; z-index: 200;
  background: var(--color-text); color: var(--color-white);
  padding: 8px 16px; border-radius: 0 0 10px 10px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* 前のセクションに丸く重なる */
.section-curve {
  position: relative;
  border-radius: 52px 52px 0 0;
  margin-top: -52px;
  overflow: hidden;
  z-index: 2;
}
/* 波で前のセクションに重なる */
.section-wave {
  position: relative;
  z-index: 2;
  /* 横方向のはみ出しだけ切り、上の波は見せる */
  overflow-x: clip;
  overflow-y: visible;
}
.section-wave .wave {
  position: absolute;
  left: 0; right: 0;
  top: -54px;
  height: 56px;
  pointer-events: none;
}
.section-wave .wave svg { width: 100%; height: 100%; display: block; }
/* 装飾を閉じ込めるレイヤー（波型セクション用） */
.section-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* ---------- 2. 共通部品 ---------- */

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 900;
  text-decoration: none;
  border-radius: 999px;
  border: 3px solid transparent;
  cursor: pointer;
  line-height: 1.4;
  transition: transform 0.25s var(--bounce), box-shadow 0.25s ease,
              background-color 0.2s ease, color 0.2s ease;
}
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 3px;
}
.btn-cta {
  background: linear-gradient(120deg, var(--color-primary), #FF9A46);
  color: var(--color-white);
  box-shadow: var(--shadow-cta);
}
.btn-cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 16px 30px rgba(255, 122, 26, 0.5);
}
.btn-ghost {
  background: var(--color-white);
  color: var(--color-text);
  border-color: var(--color-text);
  box-shadow: 0 6px 16px rgba(59, 43, 34, 0.14);
}
.btn-ghost:hover { background: #FFF1E3; transform: translateY(-5px) scale(1.02); }
.btn-lg {
  width: 100%;
  padding: 18px 30px;
  font-size: var(--font-btn);
}
.btn .btn-arrow { flex-shrink: 0; }

/* セクション見出し */
.section-title {
  font-size: var(--font-section-title);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.section-title--center { text-align: center; }
/* 見出しの改行はHTMLで管理する（.line = 1行） */
.line { display: block; }
.nowrap { white-space: nowrap; }
.line.nowrap { white-space: nowrap; }
.section-lead {
  margin-top: 22px;
  text-align: center;
  color: var(--color-text-soft);
  font-weight: 700;
  font-size: var(--font-body);
}
.em-orange { font-style: normal; color: var(--color-primary); }
.em-pink   { font-style: normal; color: var(--color-pink); }
.em-marker {
  font-style: normal;
  background: linear-gradient(transparent 62%, var(--color-yellow) 62%);
  padding-inline: 2px;
}
.u-wavy-yellow, .u-wavy-orange, .u-wavy-pink {
  font-style: normal;
  padding-bottom: 10px;
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 40px 8px;
}
.u-wavy-yellow { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="8" viewBox="0 0 40 8"><path d="M0 5 Q 5 1 10 5 T 20 5 T 30 5 T 40 5" fill="none" stroke="%23FFD83D" stroke-width="4" stroke-linecap="round"/></svg>'); }
.u-wavy-orange { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="8" viewBox="0 0 40 8"><path d="M0 5 Q 5 1 10 5 T 20 5 T 30 5 T 40 5" fill="none" stroke="%23FF7A1A" stroke-width="4" stroke-linecap="round"/></svg>'); }
.u-wavy-pink { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="8" viewBox="0 0 40 8"><path d="M0 5 Q 5 1 10 5 T 20 5 T 30 5 T 40 5" fill="none" stroke="%23F23B83" stroke-width="4" stroke-linecap="round"/></svg>'); }

/* 吹き出し（雲形） */
.bubble {
  position: absolute;
  z-index: 4;
  display: inline-block;
  padding: 14px 24px;
  border-radius: 58% 42% 55% 45% / 55% 60% 40% 48%;
  font-weight: 900;
  font-size: clamp(17px, 2.8vw, 24px);
  color: var(--color-white);
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(59, 43, 34, 0.2);
}
.bubble::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 26px;
  border: 10px solid transparent;
  border-top-color: inherit;
  border-bottom: 0;
  transform: rotate(-12deg);
}
.bubble--orange { background: var(--color-primary); border-top-color: var(--color-primary); }
.bubble--pink   { background: var(--color-pink);    border-top-color: var(--color-pink); }
.bubble--blue   { background: var(--color-blue);    border-top-color: var(--color-blue); }
.bubble--white  {
  background: var(--color-white);
  color: var(--color-text);
  border: 3px solid var(--color-primary);
  border-top-color: var(--color-white);
  white-space: normal;
  line-height: 1.5;
  font-size: 15px;
  text-align: center;
  border-radius: 30px;
}

.dotted-sep {
  border: none;
  border-top: 3px dotted rgba(255, 122, 26, 0.5);
  width: 100%;
  margin: 14px 0;
}

/* 手描き風装飾 */
.doodle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.dots-patch {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(currentColor 2.6px, transparent 2.9px);
  background-size: 19px 19px;
  opacity: 0.4;
  transform: rotate(-8deg);
}
.diag {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 70px;
  transform: rotate(-16deg);
}
/* 紙吹雪 */
.confetti { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.confetti i {
  position: absolute;
  width: 9px; height: 15px;
  border-radius: 3px;
  opacity: 0.9;
}

/* 傾きカード共通 */
.tilted {
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.3s var(--bounce), box-shadow 0.3s ease;
}
.tilted:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 18px 36px rgba(59, 43, 34, 0.18);
}

/* スクロール時のふわっ＋弾み表示 */
.reveal, .reveal-pop { opacity: 0; }
.reveal.is-visible {
  opacity: 1;
  animation: rise-in 0.85s var(--bounce) var(--delay, 0s) backwards;
}
.reveal-pop.is-visible {
  opacity: 1;
  animation: pop-in 0.7s var(--bounce) var(--delay, 0s) backwards;
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(40px) rotate(var(--tilt, 0deg)) scale(0.96); }
}
@keyframes pop-in {
  from { opacity: 0; transform: scale(0.4) rotate(-8deg); }
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}
.hero .bubble { animation: float 3.6s ease-in-out infinite; }
.hero .bubble--pink { animation-delay: 0.8s; }
.hero .bubble--blue { animation-delay: 1.6s; }
.hero .bubble.reveal-pop:not(.is-visible) { animation: none; }
.hero .bubble.reveal-pop.is-visible {
  animation: pop-in 0.7s var(--bounce) var(--delay, 0s) backwards,
             float 3.6s ease-in-out calc(var(--delay, 0s) + 0.9s) infinite;
}

/* ---------- 3. ヘッダー ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid rgba(59, 43, 34, 0.08);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 16px rgba(59, 43, 34, 0.12); }
.header-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
  gap: 3px;
}
.brand-logo { width: auto; height: 30px; }
.brand-sub { font-size: 9px; font-weight: 700; letter-spacing: 0.06em; color: var(--color-text-soft); }

.global-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--color-white);
  padding: 20px 20px 28px;
  border-bottom: 1px solid rgba(59, 43, 34, 0.08);
  box-shadow: 0 16px 24px rgba(59, 43, 34, 0.12);
  display: none;
}
.global-nav.is-open { display: block; }
.global-nav ul { display: grid; gap: 4px; }
.global-nav a:not(.header-cta) {
  display: block;
  padding: 10px 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.global-nav a:not(.header-cta):hover { background: var(--color-background); color: var(--color-primary); }
.header-cta { margin-top: 14px; padding: 14px 20px; font-size: 15px; width: 100%; }

.nav-toggle {
  width: 44px; height: 44px;
  border: none; background: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  border-radius: 10px;
}
.nav-toggle span:not(.visually-hidden) {
  width: 24px; height: 3px;
  background: var(--color-text);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(59, 43, 34, 0.08);
}
.mobile-cta .btn { width: 100%; padding: 15px 20px; font-size: 17px; }

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .mobile-cta { display: none; }
}
@media (min-width: 1024px) {
  :root { --header-h: 76px; }
  .brand-logo { height: 36px; }
  .brand-sub { font-size: 10px; }
  .nav-toggle { display: none; }
  .global-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: none;
    box-shadow: none;
    background: none;
  }
  .global-nav ul { display: flex; gap: 2px; }
  .global-nav a:not(.header-cta) { padding: 8px 8px; font-size: 14px; }
  .header-cta { margin: 0 0 0 8px; width: auto; padding: 12px 20px; font-size: 14px; }
}
/* 1024〜1239pxはスペースが足りないためサブタイトルを省略 */
@media (min-width: 1024px) and (max-width: 1239px) {
  .brand-sub { display: none; }
}
@media (min-width: 1240px) {
  .global-nav a:not(.header-cta) { padding: 8px 12px; font-size: 16px; }
  .header-cta { font-size: 16px; }
}

/* ---------- 4. ヒーロー ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-background);
  padding-top: calc(var(--header-h) + 36px);
  padding-bottom: 170px;
  z-index: 0;
}
.hero .diag--yellow {
  right: -22%; bottom: -22%;
  width: 110%; height: 74%;
  background: var(--color-yellow);
}
.hero .diag--orange {
  right: -12%; top: -22%;
  width: 52%; height: 46%;
  background: linear-gradient(135deg, var(--color-primary), #FFA95C);
  opacity: 0.92;
}
.hero .diag--beige {
  left: -16%; top: 26%;
  width: 44%; height: 34%;
  background: var(--color-beige);
  opacity: 0.8;
}
.hero .diag--pink {
  left: -14%; bottom: -16%;
  width: 44%; height: 34%;
  background: var(--color-pink);
  opacity: 0.16;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 48px;
}
.hero-title {
  font-size: var(--font-hero);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
/* 意味単位の行。行内では自動改行させない */
.hero-title-line {
  display: block;
  white-space: nowrap;
}
.hero-title .em-honki {
  font-style: normal;
  color: var(--color-primary);
  font-size: 1.05em;
}
.hero-title .em-wao {
  font-style: normal;
  color: var(--color-pink);
  background: linear-gradient(transparent 66%, var(--color-yellow) 66%);
  white-space: nowrap;
}
/* スマートフォンだけ「大人が本気で／遊ぶと、」の2行に */
@media (min-width: 768px) {
  .br-sp { display: none; }
}
.hero-lead {
  color: var(--color-text-soft);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 20px);
}
.hero-copy .dotted-sep { max-width: 320px; }
.hero-actions {
  margin-top: 30px;
  display: grid;
  gap: 16px;
  max-width: 440px;
  position: relative;
  z-index: 3;
}

.hero-visual {
  position: relative;
  padding: 28px 0 110px;
  max-width: 640px;
  margin-inline: auto;
  width: 100%;
}
.hero-photo-main {
  width: 100%;
  aspect-ratio: 405 / 355;
  object-fit: cover;
  border-radius: 49% 51% 48% 52% / 42% 46% 54% 58%;
  box-shadow: 0 14px 36px rgba(59, 43, 34, 0.2);
}
.hero-photo-sub1,
.hero-photo-sub2 {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(59, 43, 34, 0.22);
}
.hero-photo-sub1 {
  left: -4%; bottom: -2%;
  width: 47%;
  aspect-ratio: 1;
  border: 6px solid var(--color-white);
  z-index: 2;
}
.hero-photo-sub2 {
  right: -3%; bottom: -10%;
  width: 40%;
  aspect-ratio: 1;
  border: 6px solid var(--color-blue);
  z-index: 3;
}
.hero .bubble--orange { top: -6px; left: 2%; transform: rotate(-7deg); }
.hero .bubble--pink   { top: 42%; left: -5%; transform: rotate(-5deg); }
.hero .bubble--blue   { top: 56%; right: -3%; transform: rotate(5deg); }

@media (min-width: 768px) {
  /* タブレット（縦積み）は3行・やや大きめ */
  :root { --font-hero: clamp(46px, 6vw, 56px); }
}
@media (min-width: 1024px) {
  /* PCは3行固定。左カラムを広げてゆとりを持たせる */
  :root { --font-hero: clamp(46px, 4.7vw, 60px); }
  .hero { padding-top: calc(var(--header-h) + 60px); padding-bottom: 210px; }
  .hero-inner {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 40px;
  }
  .hero-actions { grid-template-columns: auto; }
  .btn-lg { width: auto; min-width: 360px; padding: 19px 34px; }
  .hero-visual { padding-bottom: 110px; max-width: none; }
}

/* ---------- 5. パートナー帯（黄色） ---------- */
.partner-band {
  position: relative;
  z-index: 1;
  margin-top: -140px;
  background: var(--color-yellow);
  clip-path: polygon(0 90px, 100% 0, 100% 100%, 0 100%);
  padding: 170px 0 130px;
  text-align: center;
  overflow: hidden;
}
.partner-band .dots-patch { color: var(--color-white); opacity: 0.55; }
.partner-card {
  position: relative;
  z-index: 2;
  background: var(--color-background);
  border-radius: 40px;
  box-shadow: 0 14px 36px rgba(59, 43, 34, 0.14);
  padding: 0 24px 44px;
  max-width: 880px;
  margin-inline: auto;
  transform: rotate(-0.6deg);
}
.partner-label {
  display: inline-block;
  background: linear-gradient(120deg, var(--color-primary), #FF9A46);
  color: var(--color-white);
  font-weight: 900;
  font-size: clamp(13px, 2.4vw, 17px);
  padding: 11px 30px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  transform: translateY(-50%) rotate(1deg);
  box-shadow: 0 8px 18px rgba(255, 122, 26, 0.35);
}
.partner-title {
  font-size: clamp(23px, 4.2vw, 36px);
  font-weight: 900;
  line-height: 1.7;
}
.partner-title .em-partner {
  font-style: normal;
  color: var(--color-primary);
  font-size: 1.14em;
}

/* ---------- 6. わお！WAO♪とは（クリーム） ---------- */
.about {
  background: var(--color-background);
  padding: 92px 0 150px;
}
.about::before {
  content: "";
  position: absolute;
  right: -16%; top: -6%;
  width: 58%; aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-white);
  z-index: 0;
}
.about::after {
  content: "";
  position: absolute;
  left: -14%; bottom: -10%;
  width: 44%; height: 30%;
  border-radius: 70px;
  transform: rotate(-14deg);
  background: var(--color-beige);
  z-index: 0;
}
.about-top {
  display: grid;
  gap: 56px;
  align-items: center;
}
.about-copy p { margin-top: 20px; font-weight: 700; color: var(--color-text-soft); }
.about-visual {
  position: relative;
  transform: rotate(1.2deg);
}
.about-photo {
  width: 100%;
  aspect-ratio: 740 / 500;
  object-fit: cover;
  border-radius: 200px 200px 60px 60px;
  border: 8px solid var(--color-white);
  box-shadow: 0 14px 36px rgba(59, 43, 34, 0.2);
}
/* チーム写真＋重なる円写真 */
.about-photo-wrap { position: relative; display: block; }
.about-sub-photo {
  position: absolute;
  left: -5%; bottom: -12%;
  width: 34%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--color-yellow);
  box-shadow: 0 12px 28px rgba(59, 43, 34, 0.22);
  z-index: 3;
  transform: rotate(-3deg);
}
.about-ribbon {
  position: relative;
  z-index: 2;
  margin: -26px 4% 0 auto;
  width: fit-content;
  max-width: 72%;
  background: linear-gradient(100deg, var(--color-primary), #FF9A46);
  color: var(--color-white);
  font-weight: 900;
  font-size: clamp(15px, 2.8vw, 20px);
  padding: 14px 30px;
  border-radius: 999px;
  transform: rotate(-2.5deg);
  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.35);
  text-align: center;
}
.about-ribbon .em-ribbon { font-style: normal; color: var(--color-yellow); font-size: 1.12em; }

/* W・A・Oカード：カプセル型・傾き・高さ違い */
.wao-cards {
  margin-top: 84px;
  display: grid;
  gap: 34px;
  max-width: 420px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.wao-card {
  position: relative;
  background: var(--color-white);
  border: 3px solid;
  border-radius: 170px;
  padding: 48px 30px 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-card);
}
.wao-card--orange { border-color: var(--color-primary); }
.wao-card--pink   { border-color: var(--color-pink); }
.wao-card--blue   { border-color: var(--color-blue); }
.wao-card__letter {
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  position: relative;
}
.wao-card__letter::before,
.wao-card__letter::after {
  content: "✦";
  position: absolute;
  font-size: 22px;
  opacity: 0.85;
}
.wao-card__letter::before { left: -34px; top: 2px; transform: rotate(-14deg); }
.wao-card__letter::after  { right: -32px; bottom: 6px; transform: rotate(12deg); }
.wao-card--orange .wao-card__letter, .wao-card--orange .wao-card__title { color: var(--color-primary); }
.wao-card--pink   .wao-card__letter, .wao-card--pink   .wao-card__title { color: var(--color-pink); }
.wao-card--blue   .wao-card__letter, .wao-card--blue   .wao-card__title { color: var(--color-blue); }
.wao-card__title {
  margin-top: 12px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 900;
  padding-bottom: 12px;
  border-bottom: 3px dotted currentColor;
  width: 80%;
}
.wao-card__text { margin-top: 16px; font-weight: 700; color: var(--color-text-soft); }
.wao-card__img {
  margin-top: 22px;
  width: 76%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid;
}
.wao-card--orange .wao-card__img { border-color: var(--color-primary); }
.wao-card--pink   .wao-card__img { border-color: var(--color-pink); }
.wao-card--blue   .wao-card__img { border-color: var(--color-blue); }

@media (min-width: 768px) {
  .wao-cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    gap: 26px;
    align-items: start;
  }
  /* 真ん中のカードだけ下げて動きを出す */
  .wao-card:nth-child(2) { margin-top: 48px; }
}
@media (min-width: 1024px) {
  /* 見出し「わお！WAO♪って、」が1行で収まる幅を確保 */
  .about-top { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
  .about { padding: 110px 0 170px; }
  .wao-cards { gap: 40px; margin-top: 100px; }
}

/* ---------- 7. できるイベント（ソフト黄） ---------- */
.events {
  background: var(--bg-soft-yellow);
  padding: 100px 0 140px;
}
.events .wave svg path { fill: var(--bg-soft-yellow); }
.events .dots-patch--tl { color: var(--color-pink); left: 3%; top: 4%; }
.events .dots-patch--br { color: var(--color-green); right: 4%; bottom: 3%; }
.events .diag--orange {
  right: -18%; top: -10%;
  width: 48%; height: 30%;
  background: linear-gradient(135deg, #FFA95C, var(--color-primary));
  opacity: 0.55;
}
.events .diag--white {
  left: -18%; bottom: -12%;
  width: 50%; height: 30%;
  background: var(--color-white);
  opacity: 0.55;
}
.event-grid {
  margin-top: 60px;
  display: grid;
  gap: 48px 26px;
}
.event-card {
  background: var(--color-white);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
}
.event-card::before {
  content: "";
  position: absolute;
  top: -16px; left: -14px;
  width: 30px; height: 30px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g stroke="%23FF7A1A" stroke-width="2.8" stroke-linecap="round" fill="none"><path d="M12 8V2M6.5 10 3 5.5M17.5 10 21 5.5"/></g></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-24deg);
}
.event-card:nth-child(2)::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g stroke="%23F23B83" stroke-width="2.8" stroke-linecap="round" fill="none"><path d="M12 8V2M6.5 10 3 5.5M17.5 10 21 5.5"/></g></svg>'); }
.event-card:nth-child(3)::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g stroke="%2335BFD4" stroke-width="2.8" stroke-linecap="round" fill="none"><path d="M12 8V2M6.5 10 3 5.5M17.5 10 21 5.5"/></g></svg>'); }
.event-card:nth-child(5)::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g stroke="%23A66DD4" stroke-width="2.8" stroke-linecap="round" fill="none"><path d="M12 8V2M6.5 10 3 5.5M17.5 10 21 5.5"/></g></svg>'); }
.event-card__band {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--color-white);
  font-size: clamp(19px, 1.75vw, 22px);
  font-weight: 900;
  letter-spacing: 0.03em;
  border-radius: 26px 26px 0 0;
}
.event-card__band--orange { background: var(--color-primary); }
.event-card__band--yellow { background: var(--color-yellow); color: var(--color-text); }
.event-card__band--green  { background: var(--color-green);  color: var(--color-text); }
.event-card__band--blue   { background: var(--color-blue); }
.event-card__band--purple { background: var(--color-purple); }
.event-card__band--pink   { background: var(--color-pink); }
.event-card__num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
}
.event-card__text {
  padding: 18px 22px 0;
  font-weight: 700;
  color: var(--color-text-soft);
  font-size: var(--font-card-body);
  line-height: 1.8;
}
/* 写真はカードから飛び出す。切り抜き形状は3種を交互に */
.event-card__photo { margin: 18px 14px -22px; }
.event-card__photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
  border: 6px solid var(--color-white);
  box-shadow: 0 10px 24px rgba(59, 43, 34, 0.18);
  transform: rotate(-1.5deg);
}
.event-card:nth-child(even) .event-card__photo img { transform: rotate(1.5deg); }
.event-card:nth-child(3n+2) .event-card__photo img { border-radius: 110px 110px 20px 20px; }
.event-card:nth-child(3n) .event-card__photo img { border-radius: 20px 20px 110px 110px; }
.events-note {
  margin-top: 72px;
  text-align: center;
  font-weight: 900;
  font-size: clamp(16px, 2.8vw, 21px);
  position: relative;
  z-index: 2;
}
.events-note .em-note { font-style: normal; color: var(--color-primary); }
.events-note .flag { color: var(--color-primary); margin-right: 6px; }
.events-note .note-arrow {
  display: block;
  margin: 0 auto 6px;
  width: 56px;
  color: var(--color-pink);
  transform: rotate(12deg);
}

@media (min-width: 768px) {
  .event-grid { grid-template-columns: repeat(2, 1fr); align-items: start; }
  .event-card:nth-child(even) { margin-top: 44px; }
}
@media (min-width: 1024px) {
  .events { padding: 110px 0 160px; }
  .event-grid { grid-template-columns: repeat(3, 1fr); gap: 56px 30px; align-items: start; }
  .event-card:nth-child(even) { margin-top: 0; }
  /* 真ん中の列を下げて、漫画のコマのようなリズムに */
  .event-card:nth-child(3n+2) { margin-top: 52px; }
}

/* ---------- 8. 企業にとっての価値（ピーチ） ---------- */
.benefits {
  background: var(--bg-peach);
  padding: 100px 0 150px;
}
/* 4カードを意味単位で1行に収めるため、この節だけ横幅を広げる */
.benefits > .container { max-width: 1320px; }
.benefits .diag--tr {
  right: -14%; top: -12%;
  width: 46%; height: 34%;
  background: linear-gradient(135deg, #FFA95C, var(--color-primary));
  opacity: 0.85;
}
.benefits .diag--bl {
  left: -16%; bottom: -12%;
  width: 44%; height: 30%;
  background: linear-gradient(135deg, var(--color-primary), #FFA95C);
  opacity: 0.8;
}
.benefits .dots-patch--tr { color: var(--color-pink); right: 4%; top: 3%; z-index: 1; }
.benefits .dots-patch--bl { color: var(--color-primary); left: 3%; bottom: 4%; }

.benefits-head {
  display: grid;
  gap: 48px;
  align-items: center;
}
.benefits-lead { margin-top: 24px; font-weight: 700; color: var(--color-text-soft); }
.benefits-lead + .benefits-lead { margin-top: 14px; }
.benefits-photos {
  position: relative;
  min-height: 380px;
}
.benefits-photo-live {
  position: absolute;
  top: 34px; left: 0;
  width: 64%;
  aspect-ratio: 340 / 410;
  object-fit: cover;
  border-radius: 999px 999px 46% 46% / 999px 999px 30% 30%;
  border: 7px solid var(--color-white);
  box-shadow: 0 14px 32px rgba(59, 43, 34, 0.22);
}
.benefits-photo-highfive {
  position: absolute;
  right: 0; bottom: -6px;
  width: 54%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 7px solid var(--color-white);
  box-shadow: 0 14px 32px rgba(59, 43, 34, 0.22);
  z-index: 2;
}
.benefits-photos .bubble--white { top: -8px; right: 2%; transform: rotate(4deg); z-index: 3; }

.benefit-grid {
  position: relative;
  z-index: 2;
  margin-top: 68px;
  display: grid;
  gap: 30px;
}
.benefit-card {
  background: var(--color-white);
  border: 3px solid;
  border-radius: 26px;
  padding: 24px 22px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.benefit-card--orange { border-color: var(--color-primary); }
.benefit-card--yellow { border-color: var(--color-yellow); }
.benefit-card--green  { border-color: var(--color-green); }
.benefit-card--blue   { border-color: var(--color-blue); }
.benefit-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.benefit-card__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
}
.benefit-card--orange .benefit-card__num { background: var(--color-primary); }
.benefit-card--yellow .benefit-card__num { background: var(--color-yellow); color: var(--color-text); }
.benefit-card--green  .benefit-card__num { background: var(--color-green); color: var(--color-text); }
.benefit-card--blue   .benefit-card__num { background: var(--color-blue); }
.benefit-card__icon svg { width: 42px; height: 42px; }
.benefit-card--orange .benefit-card__icon { color: var(--color-primary); }
.benefit-card--yellow .benefit-card__icon { color: #D9A800; }
.benefit-card--green  .benefit-card__icon { color: #7FA31B; }
.benefit-card--blue   .benefit-card__icon { color: var(--color-blue); }
.benefit-card__title {
  margin-top: 14px;
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 900;
  line-height: 1.55;
  padding-bottom: 10px;
  border-bottom: 3px dotted rgba(59, 43, 34, 0.25);
}
.benefit-card__text {
  margin-top: 14px;
  font-weight: 700;
  color: var(--color-text-soft);
  font-size: var(--font-card-body);
  line-height: 1.8;
}
/* 本文の各行は意味単位（.line）。行内は折り返さない */
.benefit-card__text .line { margin-bottom: 2px; }
.benefit-card__img {
  margin-top: 18px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px 18px 80px 80px;
}
.benefit-card:nth-child(even) .benefit-card__img { border-radius: 80px 80px 18px 18px; }

@media (min-width: 768px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); align-items: start; }
}
@media (min-width: 1024px) {
  .benefits { padding: 110px 0 170px; }
  /* 見出しを1行で読ませるため、テキスト側カラムを広めに */
  .benefits-head { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
  .benefits-photos { min-height: 500px; }
}
/* 4カードは、意味単位の行がゆとりを持って収まる幅からのみ4列に */
@media (min-width: 1240px) {
  .benefit-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 80px; align-items: start; }
  .benefit-card:nth-child(even) { margin-top: 44px; }
}

/* ---------- 9. 大切にしていること（ピンク）/ ご依頼の流れ（水色） ---------- */
.values {
  background: var(--bg-soft-pink);
  padding: 100px 0 140px;
}
.values .wave svg path { fill: var(--bg-soft-pink); }
.values .diag--pink {
  left: -18%; bottom: -14%;
  width: 48%; height: 32%;
  background: var(--color-pink);
  opacity: 0.18;
}
.values .diag--yellow {
  right: -16%; top: -12%;
  width: 44%; height: 28%;
  background: var(--color-yellow);
  opacity: 0.5;
}
.value-grid {
  margin-top: 56px;
  display: grid;
  gap: 26px;
}
.value-card {
  background: var(--color-white);
  border-radius: 26px;
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
  border-top: 7px solid;
}
.value-card--orange { border-top-color: var(--color-primary); }
.value-card--green  { border-top-color: var(--color-green); }
.value-card--pink   { border-top-color: var(--color-pink); }
.value-card__title {
  font-size: var(--font-card-title);
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}
.value-card__title svg { width: 32px; height: 32px; flex-shrink: 0; }
.value-card--orange .value-card__title { color: var(--color-primary); }
.value-card--green  .value-card__title { color: #7FA31B; }
.value-card--pink   .value-card__title { color: var(--color-pink); }
.value-card__text { margin-top: 12px; font-weight: 700; color: var(--color-text-soft); font-size: var(--font-card-body); line-height: 1.8; }

@media (min-width: 768px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .value-card:nth-child(2) { margin-top: 36px; }
}

.flow {
  background: var(--bg-soft-aqua);
  padding: 100px 0 150px;
}
.flow .diag--blue {
  right: -18%; bottom: -14%;
  width: 46%; height: 30%;
  background: var(--color-blue);
  opacity: 0.16;
}
.flow-steps {
  margin-top: 60px;
  display: grid;
  gap: 44px;
  position: relative;
}
.flow-step {
  position: relative;
  background: var(--color-white);
  border-radius: 26px;
  padding: 54px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.flow-step__num {
  position: absolute;
  top: -24px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #FF9A46);
  color: var(--color-white);
  font-size: 19px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--color-white);
  box-shadow: 0 8px 18px rgba(255, 122, 26, 0.35);
}
.flow-step__title { font-size: var(--font-card-title); font-weight: 900; }
.flow-step__text { margin-top: 10px; font-weight: 700; color: var(--color-text-soft); font-size: var(--font-card-body); line-height: 1.75; }

@media (min-width: 768px) {
  .flow-steps { grid-template-columns: repeat(2, 1fr); align-items: start; }
}
@media (min-width: 1024px) {
  .flow-steps { grid-template-columns: repeat(4, 1fr); gap: 26px; align-items: start; }
  /* ジグザグに配置して流れを楽しく */
  .flow-step:nth-child(even) { margin-top: 48px; }
  .flow-steps::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 10%;
    right: 10%;
    border-top: 4px dotted rgba(255, 122, 26, 0.5);
  }
}

/* ---------- 10. お問い合わせ（ビビッドオレンジ・最大の見せ場） ---------- */
.contact {
  background: linear-gradient(180deg, var(--color-primary) 0%, #FF9042 55%, #FFA95C 100%);
  padding: 140px 0 150px;
  text-align: center;
  color: var(--color-white);
}
.contact .wave svg path { fill: var(--color-primary); }
.contact .diag--w1,
.contact .diag--w2 { background: rgba(255, 255, 255, 0.14); }
.contact .diag--w1 { left: -10%; top: -20%; width: 44%; height: 54%; }
.contact .diag--w2 { right: -12%; bottom: -26%; width: 50%; height: 58%; }
.contact .diag--yellow {
  right: -14%; top: -8%;
  width: 42%; height: 26%;
  background: var(--color-yellow);
  opacity: 0.9;
}
.contact .dots-patch { color: var(--color-white); opacity: 0.4; }

/* 左右に浮かぶ円形写真 */
.contact-photo {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  border: 7px solid var(--color-white);
  box-shadow: 0 16px 36px rgba(59, 43, 34, 0.3);
  z-index: 2;
}
.contact-photo--1 {
  left: max(-40px, calc(50% - 660px));
  top: 56px;
  width: clamp(110px, 17vw, 230px);
  aspect-ratio: 1;
  transform: rotate(-5deg);
}
.contact-photo--2 {
  right: max(-40px, calc(50% - 660px));
  bottom: 70px;
  width: clamp(120px, 19vw, 260px);
  aspect-ratio: 1;
  transform: rotate(4deg);
}
.contact-inner { position: relative; z-index: 3; }
.contact-catch {
  font-size: clamp(16px, 3vw, 21px);
  font-weight: 900;
  letter-spacing: 0.12em;
}
.contact-title {
  margin-top: 14px;
  font-size: clamp(30px, 6.4vw, 52px);
  font-weight: 900;
  line-height: 1.55;
  text-shadow: 0 3px 12px rgba(180, 80, 0, 0.25);
}
.contact-title .em-wao-white {
  font-style: normal;
  color: var(--color-yellow);
}
.contact-text { margin-top: 24px; font-weight: 700; font-size: clamp(16px, 2.6vw, 19px); }
.btn-contact {
  margin-top: 40px;
  background: var(--color-white);
  color: var(--color-primary);
  padding: 24px 64px;
  font-size: clamp(18px, 3.2vw, 23px);
  box-shadow: 0 16px 36px rgba(59, 43, 34, 0.32);
}
.btn-contact:hover {
  transform: translateY(-6px) scale(1.05);
  background: #FFF3E6;
  box-shadow: 0 24px 48px rgba(59, 43, 34, 0.38);
}
.contact-note { margin-top: 22px; font-size: var(--font-small); opacity: 0.92; }

.site-footer {
  position: relative;
  background: var(--color-text);
  color: var(--color-white);
  padding: 56px 24px 40px;
  z-index: 2;
}
/* ロゴ・説明文・ナビ・コピーライトを1つのブランドブロックとして中央にまとめる */
.site-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand { display: block; margin: 0 0 24px; }
/* ロゴは変形しない：widthのみ指定、heightはauto */
.footer-brand img { width: clamp(170px, 14vw, 220px); height: auto; }
.footer-sub { margin: 0 0 28px; font-size: 15px; opacity: 0.9; }
.footer-nav {
  margin: 0 0 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-size: 14px;
}
.footer-nav a { text-decoration: none; opacity: 0.9; }
.footer-nav a:hover { opacity: 1; text-decoration: underline; }
.footer-copy { margin: 0; font-size: 13px; opacity: 0.7; }

/* ============================================================
   11. スマートフォン専用レイアウト（≤767px｜ゼロから再構築）
   ------------------------------------------------------------
   ・PC用の固定height / transform / absolute重ね配置を解除
   ・幅390px基準、左右16px、横スクロールを出さない
   ・写真を主役に、カードは横長・低め、装飾は最小限
   ============================================================ */
@media (max-width: 767px) {

  /* ---------- 0. PC用指定のリセット ---------- */
  .hero, .partner-band, .about, .events, .benefits, .values, .flow, .contact,
  .hero-visual, .about-visual, .benefits-photos,
  .wao-card, .event-card, .benefit-card, .value-card, .flow-step, .partner-card {
    height: auto;
    min-height: 0;
  }
  /* カードの傾き・PC用transformを解除 */
  .tilted, .wao-card, .event-card, .benefit-card, .value-card,
  .partner-card, .about-visual, .about-ribbon {
    transform: none !important;
  }
  /* PC用のgrid列指定を1列へ */
  .hero-inner, .about-top, .benefits-head,
  .wao-cards, .event-grid, .benefit-grid, .value-grid {
    grid-template-columns: 1fr !important;
  }
  /* PC用の段差（margin-topオフセット）を解除 */
  .wao-card:nth-child(2), .event-card:nth-child(even), .event-card:nth-child(3n+2),
  .benefit-card:nth-child(even), .value-card:nth-child(2), .flow-step:nth-child(even) {
    margin-top: 0;
  }
  /* 小さな手描き装飾は非表示（本文・顔に重ねない） */
  .doodle { display: none; }
  .dots-patch { width: 84px; height: 84px; opacity: 0.25; }
  .benefits .diag--tr, .benefits .diag--bl { display: none; }

  /* ---------- 1. 基本タイポ・余白 ---------- */
  body { font-size: 17px; line-height: 1.85; padding-bottom: 92px; }
  .container { padding-inline: 20px; }
  .section-title { font-size: clamp(29px, 7.8vw, 36px); line-height: 1.3; }
  .section-lead { margin-top: 14px; font-size: 15px; }
  .section-curve { border-radius: 28px 28px 0 0; margin-top: -28px; }
  .about    { padding: 64px 0 68px; }
  .events   { padding: 68px 0 68px; }
  .benefits { padding: 68px 0 72px; }
  .values   { padding: 68px 0 68px; }
  .flow     { padding: 68px 0 76px; }
  .contact  { padding: 72px 0 76px; }

  /* ---------- 2. ヘッダー / 下部固定CTA ---------- */
  .brand-logo { height: 28px; }
  .brand-sub { font-size: 10.5px; }
  .mobile-cta { left: 12px; right: 12px; bottom: 12px; padding: 0; background: none; border: none; backdrop-filter: none; }
  .mobile-cta .btn { width: 100%; height: 60px; border-radius: 30px; font-size: 18px; box-shadow: 0 10px 22px rgba(255, 122, 26, 0.42); }

  /* ---------- 3. ファーストビュー（完全1カラム） ---------- */
  .hero { padding-top: calc(var(--header-h) + 20px); padding-bottom: 64px; }
  .hero-inner { gap: 16px; }
  .hero-title { font-size: clamp(33px, 8.9vw, 44px); line-height: 1.28; letter-spacing: 0; }
  .hero-lead { font-size: 16px; }
  .hero-copy .dotted-sep { max-width: 240px; margin: 12px 0; }
  .hero-actions { margin-top: 20px; gap: 12px; max-width: none; }
  .btn-lg { width: 100%; padding: 16px 18px; font-size: 17px; }
  .hero-visual { max-width: none; margin: 8px 0 0; padding: 24px 0 0; }
  .hero-photo-main {
    width: 100%; height: 320px; aspect-ratio: auto;
    object-fit: cover; border-radius: 28px;
    box-shadow: 0 10px 24px rgba(59, 43, 34, 0.18);
  }
  /* 補助写真は1枚だけ（110px） */
  .hero-photo-sub1 { width: 110px; height: 110px; aspect-ratio: 1; left: 12px; bottom: -26px; border-width: 5px; }
  .hero-photo-sub2 { display: none; }
  /* 吹き出しは2個まで */
  .hero .bubble { font-size: 15px; padding: 8px 15px; }
  .hero .bubble--orange { top: 6px; left: 10px; }
  .hero .bubble--pink { display: none; }
  .hero .bubble--blue { top: 34px; right: 12px; bottom: auto; }

  /* ---------- 4. 導入メッセージ（黄色背景に白カード1枚） ---------- */
  .partner-band {
    margin-top: 0;
    clip-path: polygon(0 36px, 100% 0, 100% 100%, 0 100%);
    padding: 84px 0 64px;
  }
  .partner-card {
    width: calc(100% - 32px);
    margin-inline: auto;
    padding: 34px 20px 30px;
    border-radius: 24px;
  }
  .partner-label { font-size: 14px; padding: 10px 18px; }
  .partner-title { font-size: clamp(22px, 5.4vw, 28px); line-height: 1.6; }

  /* ---------- 5. WAO♪とは（見出し→本文→集合写真→帯→カード） ---------- */
  .about-top { gap: 22px; }
  .about-copy p { font-size: 16px; margin-top: 14px; }
  .about-photo {
    width: 100%; height: 260px; aspect-ratio: auto;
    object-fit: cover; border-radius: 24px; border-width: 5px;
  }
  .about-sub-photo { display: none; }
  /* オレンジ帯は重ねず通常配置・高さ自動 */
  .about-ribbon {
    position: static; width: auto; max-width: none;
    margin: 16px 0 0; padding: 12px 18px;
    font-size: 15px; line-height: 1.6; border-radius: 18px;
  }

  /* W・A・Oカード：横長（左=円形写真／右=文字+タイトル+本文） */
  .wao-cards { margin-top: 32px; gap: 20px; max-width: none; }
  .wao-card {
    display: grid;
    grid-template-columns: 96px 1fr !important;
    column-gap: 16px;
    align-items: center;
    text-align: left;
    padding: 22px 18px;
    border-radius: 22px;
    border-width: 3px;
  }
  .wao-card__img {
    grid-column: 1; grid-row: 1 / span 3;
    width: 96px; height: 96px; aspect-ratio: 1;
    border-radius: 50%; margin: 0; border-width: 4px;
  }
  .wao-card__letter { grid-column: 2; grid-row: 1; font-size: 30px; line-height: 1; }
  .wao-card__letter::before, .wao-card__letter::after { display: none; }
  .wao-card__title {
    grid-column: 2; grid-row: 2; width: auto;
    margin: 4px 0 0; padding: 0 0 8px;
    font-size: 19px; border-bottom: 2px dotted currentColor;
  }
  .wao-card__text { grid-column: 2; grid-row: 3; margin-top: 8px; font-size: 15.5px; line-height: 1.75; }

  /* ---------- 6. できるイベント（写真→番号+タイトル→本文） ---------- */
  .event-grid { margin-top: 32px; gap: 22px; }
  .event-card { padding: 0 0 20px; overflow: hidden; border-radius: 22px; }
  .event-card::before { display: none; }
  .event-card__photo { order: 1; margin: 0; padding: 0; }
  .event-card__photo img {
    width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
    border: 0; border-radius: 0; box-shadow: none; transform: none !important;
  }
  .event-card__band { order: 2; min-height: 56px; border-radius: 0; font-size: 19px; padding: 12px 18px; }
  .event-card__text { order: 3; padding: 16px 18px 0; font-size: 16px; }
  .events-note { margin-top: 32px; font-size: 15.5px; }

  /* ---------- 7. 企業にとっての価値（番号→タイトル→本文→写真） ---------- */
  .benefits-head { gap: 22px; }
  .benefits-lead { font-size: 16px; margin-top: 18px; }
  /* 上部写真は大きな1枚のみ・重ね配置を解除 */
  .benefits-photos { position: static; min-height: 0; height: auto; }
  .benefits-photo-live {
    position: static; width: 100%; height: 230px; aspect-ratio: auto;
    object-fit: cover; border-radius: 24px; border-width: 5px;
  }
  .benefits-photo-highfive { display: none; }
  .benefits-photos .bubble--white {
    position: static; display: block; width: fit-content;
    margin: 0 auto 14px; font-size: 14px; transform: none;
  }
  .benefits-photos .bubble--white::after { display: none; }
  .benefit-grid { margin-top: 32px; gap: 22px; }
  .benefit-card { padding: 22px 20px; border-radius: 22px; }
  .benefit-card__title { font-size: 20px; }
  .benefit-card__text { font-size: 16px; }
  .benefit-card__img {
    margin-top: 16px; padding-top: 0;
    aspect-ratio: 16 / 10; border-radius: 16px !important;
  }

  /* ---------- 8. 大切にしていること ---------- */
  .value-grid { margin-top: 32px; gap: 20px; }
  .value-card { padding: 22px 20px; border-radius: 20px; }
  .value-card__title { font-size: 20px; }
  .value-card__text { font-size: 16px; }

  /* ---------- 9. ご依頼の流れ（縦タイムライン） ---------- */
  .flow-steps { display: block; margin-top: 28px; position: relative; padding-left: 44px; }
  .flow-steps::before {
    content: ""; position: absolute; left: 18px; top: 10px; bottom: 10px;
    width: 4px; background: var(--color-primary); opacity: 0.28; border-radius: 2px;
  }
  .flow-step { width: 100%; margin: 0 0 20px; padding: 20px 18px; text-align: left; border-radius: 18px; }
  .flow-step__num { position: absolute; top: 20px; left: -44px; transform: none; width: 40px; height: 40px; font-size: 15px; }
  .flow-step__title { font-size: 19px; }
  .flow-step__text { font-size: 15.5px; text-align: left; }

  /* ---------- 10. 最終CTA ---------- */
  .contact-photo { display: none; }
  .contact .confetti i:nth-child(n+6) { display: none; }
  .contact-inner { max-width: none; }
  .contact-catch { font-size: 14.5px; }
  .contact-title { font-size: clamp(23px, 6.4vw, 31px); line-height: 1.55; }
  .contact-text { font-size: 15px; }
  .btn-contact { width: 100%; height: 60px; padding: 0 18px; border-radius: 30px; font-size: 18px; margin-top: 26px; }
  .contact-note { font-size: 14px; }

  /* ---------- 11. フッター ---------- */
  .site-footer { padding: 44px 20px 32px; }
  .footer-brand { margin-bottom: 18px; }
  .footer-brand img { width: 160px; }
  .footer-sub { margin: 0 0 18px; font-size: 14px; }
  .footer-nav { margin: 0 0 20px; gap: 12px 18px; max-width: 320px; font-size: 14px; }
  .footer-copy { margin: 0; font-size: 13.5px; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-pop { opacity: 1; }
  .reveal.is-visible, .reveal-pop.is-visible,
  .hero .bubble, .hero .bubble.reveal-pop.is-visible { animation: none; }
  .tilted, .btn, .event-card { transition: none; }
  .tilted:hover { transform: rotate(var(--tilt, 0deg)); }
}
