@charset "UTF-8";
/* ==========================================================
   UUO株式会社 TOPページ
   greenpark-santo 移植版: イラスト主体のポップ&プレイフル
   ========================================================== */

/* フォントは Google Fonts から読み込み(functions.php で enqueue) */

/* ---------- デザイントークン ---------- */
:root {
  --c-bg: #ffffff;
  --c-bg2: #f5f6f8;
  --c-ink: #292929;
  --c-ink-soft: #6b6b6b;
  --c-blue: #0099ff;
  --c-blue-deep: #1a63c9;
  --c-sky: #64b6f9;
  --c-skysoft: #dcebfa;
  --c-yellow: #ffd84d;
  --c-coral: #f45562;
  --c-mint: #40ac79;
  --c-salmon: #fa9d7b;
  --ff-hand: "Caveat", cursive;
  --ff-en: "Jost", sans-serif;
  --ff-jp: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", Meiryo, sans-serif;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 40px;
  --radius-pill: 999px;
  --shadow: 0 4px 14px rgba(41, 41, 41, .08), 0 14px 36px rgba(41, 41, 41, .08);
  --header-h: 76px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-back: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--ff-jp);
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: normal; }
button { font-family: inherit; }

.inner { width: min(92%, 1120px); margin-inline: auto; }
.pc { display: inline; }
.sp { display: none; }
.hand { font-family: var(--ff-hand); font-weight: 700; }
.nw { display: inline-block; }

/* ---------- リビール(GSAPで表示。JS無効/reduced時は常時表示) ---------- */
html.js:not(.reduced) [data-reveal] { opacity: 0; transform: translateY(34px); }

/* ==========================================================
   ローディング
   ========================================================== */
.loading {
  position: fixed; inset: 0; z-index: 999;
  background: var(--c-bg);
  display: grid; place-items: center;
  transition: opacity .6s, visibility .6s;
}
.loading.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
html:not(.js) .loading { display: none; }
.loading__in { text-align: center; }
.loading__fish { animation: fishBob 1.6s ease-in-out infinite; }
@keyframes fishBob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}
.loading__txt {
  margin-top: 18px;
  font-family: var(--ff-en); font-weight: 600; font-size: 17px; letter-spacing: .12em;
  color: var(--c-ink);
}

/* ==========================================================
   ヘッダー
   ========================================================== */
.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(41, 41, 41, .06);
}
.header__in {
  height: 100%;
  width: min(96%, 1320px); margin-inline: auto;
  display: flex; align-items: center; gap: 30px;
}
.header__logo { flex-shrink: 0; }
.header__logo img { width: 104px; height: auto; }
.header__nav { display: flex; gap: 30px; margin-left: auto; }
.header__nav a {
  display: flex; flex-direction: column; align-items: center;
  font-size: 13.5px; font-weight: 700; line-height: 1.45;
  padding: 2px 4px;
  transition: color .25s;
}
.header__nav a .hand { font-size: 17px; color: var(--c-blue); line-height: 1; }
.header__nav a:hover { color: var(--c-blue); }
.header__contact {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px 12px;
  border-radius: var(--radius-pill);
  background: var(--c-yellow); color: var(--c-ink);
  border: 2.5px solid var(--c-ink);
  box-shadow: 3px 3px 0 var(--c-ink);
  font-size: 14px; font-weight: 700;
  transition: transform .25s var(--ease-back), box-shadow .25s;
}
.header__contact:hover { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--c-ink); }

.header__menu {
  display: none;
  width: 48px; height: 48px; flex-shrink: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5.5px;
  background: var(--c-blue); border: 2.5px solid var(--c-ink); border-radius: 50%;
  box-shadow: 3px 3px 0 var(--c-ink);
  cursor: pointer;
}
.header__menu span { width: 18px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.header__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(30deg); }
.header__menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-30deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(255, 255, 255, .97);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 14px; text-align: center; }
.mobile-menu a { font-size: 19px; font-weight: 700; display: flex; flex-direction: column; line-height: 1.4; }
.mobile-menu a .hand { font-size: 21px; color: var(--c-blue); line-height: 1.1; }
.mobile-menu a.is-contact .hand { color: var(--c-coral); }

/* ==========================================================
   ヒーロー(レイヤードイラスト)
   ========================================================== */
.hero {
  position: relative;
  height: max(100svh, 660px);
  overflow: clip;
}
.hero__sky {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #bfe0ff 0%, #dff0ff 46%, #fff6e3 100%);
}
.hero__layer { position: absolute; inset: 0; pointer-events: none; }

/* ロード時せり上がり(JS有効時) */
html.js:not(.reduced) .hero__layer,
html.js:not(.reduced) .hero__copy,
html.js:not(.reduced) .hero__scroll { transform: translateY(60px); opacity: 0; }
html.js:not(.reduced) .hero__layer { transform: translateY(12%); }
body.is-loaded .hero__layer,
body.is-loaded .hero__copy,
body.is-loaded .hero__scroll {
  transform: none !important; opacity: 1 !important;
  transition: transform 1s var(--ease-out), opacity .9s ease-out;
}
body.is-loaded .hero__layer--4 { transition-delay: .05s; }
body.is-loaded .hero__layer--3 { transition-delay: .25s; }
body.is-loaded .hero__layer--2 { transition-delay: .4s; }
body.is-loaded .hero__copy    { transition-delay: .65s; }
body.is-loaded .hero__layer--1 { transition-delay: .55s; }
body.is-loaded .hero__scroll  { transition-delay: 1.1s; }

.hero__sky-back, .hero__sky-mid, .hero__sky-front {
  position: absolute; left: 0; right: 0; width: 100%;
}
.hero__sky-back  { bottom: 24vh; height: 26vh; opacity: .9; }
.hero__sky-mid   { bottom: 10vh; height: 32vh; }
.hero__sky-front { bottom: -2px; height: 34vh; min-height: 220px; }

.hero__sun {
  position: absolute; top: calc(var(--header-h) + 4vh); left: 7vw;
  animation: sunSpin 28s linear infinite;
}
@keyframes sunSpin { to { transform: rotate(360deg); } }

.hero__cloud { position: absolute; }
.hero__cloud--1 { top: calc(var(--header-h) + 6vh); right: 12vw; animation: cloudDrift 9s ease-in-out infinite; }
.hero__cloud--2 { top: 38vh; left: 12vw; animation: cloudDrift 12s ease-in-out infinite reverse; }
@keyframes cloudDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(26px); }
}
.hero__bird { position: absolute; }
.hero__bird--1 { top: 24vh; right: 26vw; animation: birdBob 3.4s ease-in-out infinite; }
.hero__bird--2 { top: 20vh; right: 21vw; animation: birdBob 3.4s ease-in-out .6s infinite; }
@keyframes birdBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__float {
  position: absolute;
  display: grid; place-items: center;
  width: 76px; height: 76px;
  background: #fff; border: 3px solid var(--c-ink); border-radius: 50%;
  box-shadow: 4px 4px 0 rgba(41, 41, 41, .9);
}
.hero__float--ai  { left: 12vw; bottom: 44vh; rotate: -8deg; animation: floatBob 4s ease-in-out infinite; }
.hero__float--sns { right: 13vw; bottom: 48vh; rotate: 7deg; animation: floatBob 4.6s ease-in-out .5s infinite; }
.hero__float--web { right: 24vw; bottom: 34vh; rotate: -5deg; animation: floatBob 5.2s ease-in-out 1s infinite; }
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.hero__copy {
  position: absolute; left: 50%; top: 24%;
  transform: translateX(-50%);
  width: min(92%, 900px);
  text-align: center;
  z-index: 5;
}
html.js:not(.reduced) .hero__copy { transform: translateX(-50%) translateY(60px); }
body.is-loaded .hero__copy { transform: translateX(-50%) !important; }
.hero__hand {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--c-blue);
  rotate: -3deg;
  line-height: 1;
}
.hero__ttl {
  margin-top: 10px;
  font-size: clamp(38px, 6.4vw, 84px);
  font-weight: 900; line-height: 1.3; letter-spacing: .02em;
  text-shadow: 0 2px 0 #fff, 0 0 18px rgba(255, 255, 255, .9);
}
.hero__ttl span { display: block; }
.hero__ttl em {
  color: var(--c-blue);
  background: linear-gradient(transparent 68%, var(--c-yellow) 68%);
}
.hero__chips { margin-top: 22px; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }

.chip {
  display: inline-flex; align-items: center;
  padding: 6px 18px 7px;
  border-radius: var(--radius-pill);
  border: 2.5px solid var(--c-ink);
  background: #fff;
  font-size: 14px; font-weight: 700; line-height: 1.5;
  box-shadow: 3px 3px 0 var(--c-ink);
}
.chip--blue  { background: var(--c-sky); }
.chip--coral { background: var(--c-salmon); }
.chip--mint  { background: #7fd3a8; }

.hero__scroll {
  position: absolute; right: 30px; bottom: 26px; z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--c-ink);
}
.hero__scroll .hand { font-size: 22px; rotate: -6deg; }
.hero__scroll svg { animation: scrollNudge 1.8s ease-in-out infinite; }
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* ==========================================================
   重要なお知らせ
   ========================================================== */
.important { padding: 56px 0 0; }
.important .inner {
  display: flex; align-items: center; gap: 28px;
  background: #fff;
  border: 3px solid var(--c-coral);
  border-radius: var(--radius);
  padding: 20px 30px;
  box-shadow: var(--shadow);
}
.important__ttl {
  flex-shrink: 0;
  font-size: 15px; font-weight: 900; color: var(--c-coral);
  display: inline-flex; align-items: center; gap: 8px;
}
.important__ttl::before {
  content: "!";
  display: grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--c-coral); color: #fff;
  font-family: var(--ff-en); font-weight: 700; font-size: 15px;
}
.important__list a {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px;
  font-size: 14.5px; font-weight: 500;
}
.important__list time { font-family: var(--ff-en); font-weight: 600; color: var(--c-ink-soft); }
.important__list a:hover span { text-decoration: underline; text-underline-offset: 4px; }

/* ==========================================================
   アイコンナビ
   ========================================================== */
.quicknav { padding: 56px 0 30px; }
.quicknav__list {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.quicknav__list a {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 22px 8px 20px;
  background: #fff; border-radius: var(--radius);
  font-size: 13.5px; font-weight: 700; line-height: 1.4; text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease-back);
}
.quicknav__list a:hover { transform: translateY(-7px); }
.quicknav__img {
  display: grid; place-items: center;
  width: 86px; height: 86px; border-radius: 50%;
  transition: transform .3s var(--ease-back);
}
.quicknav__list a:hover .quicknav__img { transform: rotate(-7deg) scale(1.07); }
.quicknav__img--blue   { background: #d9efff; }
.quicknav__img--coral  { background: #ffe3e6; }
.quicknav__img--mint   { background: #ddf3e7; }
.quicknav__img--yellow { background: #fff3cd; }
.quicknav__img--sky    { background: #e2f0fd; }
.quicknav__img--salmon { background: #ffe9e0; }

/* ==========================================================
   共通: セクション見出し
   ========================================================== */
.sec-head { position: relative; }
.sec-head__hand {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--c-blue);
  rotate: -4deg;
  line-height: 1; width: fit-content;
}
.sec-head__en {
  font-family: var(--ff-en); font-weight: 700;
  font-size: clamp(40px, 5.4vw, 68px); line-height: 1.1;
  letter-spacing: .04em;
}
.sec-head__jp {
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 700; color: var(--c-ink-soft);
}
.sec-head__jp::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--c-yellow); }
.sec-head--center { text-align: center; }
.sec-head--center .sec-head__hand { margin-inline: auto; }
.sec-head--oncolor .sec-head__hand { color: var(--c-yellow); }
.sec-head--oncolor .sec-head__en { color: #fff; }
.sec-head--oncolor .sec-head__jp { color: rgba(255, 255, 255, .9); }
.sec-head--oncolor .sec-head__jp::before { background: var(--c-yellow); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 30px 14px;
  border-radius: var(--radius-pill);
  border: 2.5px solid var(--c-ink);
  background: #fff; color: var(--c-ink);
  font-size: 15px; font-weight: 700; line-height: 1.5;
  box-shadow: 4px 4px 0 var(--c-ink);
  transition: transform .25s var(--ease-back), box-shadow .25s;
}
.btn:hover { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--c-ink); }
.btn--white { background: #fff; }
.btn--yellow { background: var(--c-yellow); }
.btn--xl { padding: 18px 44px 19px; font-size: 17px; }

/* ==========================================================
   スライダー共通(scroll-snap)
   ========================================================== */
.slider {
  display: flex; gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 30px max(4%, calc((100% - 1120px) / 2)) 10px;
  scrollbar-width: none;
}
.slider::-webkit-scrollbar { display: none; }
.slider > li { scroll-snap-align: start; flex-shrink: 0; }
.slider__nav { display: flex; justify-content: flex-end; gap: 12px; margin-top: 6px; }
.slider__btn {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; color: var(--c-ink);
  border: 2.5px solid var(--c-ink);
  box-shadow: 3px 3px 0 var(--c-ink);
  cursor: pointer;
  transition: transform .25s var(--ease-back), box-shadow .25s, background-color .25s;
}
.slider__btn:hover { background: var(--c-yellow); transform: translate(2px, 2px); box-shadow: 0 0 0 var(--c-ink); }

/* ==========================================================
   NEWS
   ========================================================== */
.news { padding: 70px 0 60px; }
.news-card { width: 320px; }
.news-card > a {
  position: relative;
  display: block;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: visible;
  transition: transform .3s var(--ease-back);
}
.news-card > a:hover { transform: translateY(-7px) rotate(-1deg); }
.news-card__img {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9.5;
}
.news-card__img img { width: 100%; height: 100%; object-fit: cover; }
.news-card__body { padding: 18px 22px 22px; }
.news-card__txt { font-size: 14.5px; font-weight: 700; line-height: 1.75; }
.news-card__date { display: block; margin-top: 10px; font-family: var(--ff-en); font-weight: 600; font-size: 13.5px; color: var(--c-ink-soft); }
.news-card__cate {
  position: absolute; top: -12px; left: 16px;
  padding: 3px 14px 4px;
  border-radius: var(--radius-pill);
  border: 2.5px solid var(--c-ink);
  font-size: 12px; font-weight: 700; color: var(--c-ink);
}
.news-card__cate--notice { background: var(--c-sky); }
.news-card__cate--event  { background: var(--c-yellow); }
.news-card__cate--works  { background: #7fd3a8; }
.news-card__new {
  position: absolute; top: -22px; right: -14px;
  rotate: 10deg;
  animation: newPop 2.4s ease-in-out infinite;
}
@keyframes newPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ==========================================================
   SERVICE(ピン留めスクロール)
   ========================================================== */
.service { position: relative; }
html.js:not(.reduced):not(.no-pin) .service { height: 380vh; }
.service__pin {
  position: sticky; top: 0;
  height: 100svh; min-height: 640px;
  overflow: clip;
  background: var(--c-blue);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .5s;
}
.service__pin .sec-head {
  position: absolute; top: clamp(16px, 4vh, 44px); left: 50%; translate: -50% 0;
  z-index: 5; width: max-content;
}
.service-panel {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 4% 60px;
  opacity: 0; visibility: hidden;
  transform: translateY(36px);
  transition: opacity .45s, visibility .45s, transform .45s var(--ease-out);
}
.service-panel.is-active { opacity: 1; visibility: visible; transform: none; }
.service-panel__illust { flex-shrink: 0; rotate: -4deg; }
.service-panel > * { max-width: 540px; }
.service-panel { gap: clamp(30px, 6vw, 90px); }
.service-panel__body { color: #fff; }
.service-panel__hand { font-size: clamp(30px, 3.4vw, 44px); color: var(--c-yellow); line-height: 1.1; rotate: -3deg; width: fit-content; }
.service-panel__num { font-family: var(--ff-en); font-weight: 700; font-size: 17px; letter-spacing: .2em; opacity: .85; margin-top: 6px; }
.service-panel__ttl { font-size: clamp(26px, 3vw, 38px); font-weight: 900; margin-top: 2px; }
.service-panel__txt { margin-top: 14px; font-size: 15px; line-height: 2; }
.service-panel__tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.service-panel__tags li {
  font-size: 13px; font-weight: 700;
  background: rgba(255, 255, 255, .22);
  border-radius: var(--radius-pill);
  padding: 4px 14px 5px;
}
.service-panel .btn { margin-top: 26px; }
.service__dots {
  position: absolute; right: clamp(14px, 3vw, 40px); top: 50%; translate: 0 -50%;
  display: flex; flex-direction: column; gap: 10px; z-index: 5;
}
.service__dots span {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  border: 2px solid #fff;
  transition: background-color .3s, transform .3s;
}
.service__dots span.is-active { background: var(--c-yellow); transform: scale(1.25); }

/* ピン無効時(モバイル/タブレット/JS無効) */
html.no-pin .service__pin,
html:not(.js) .service__pin,
html.reduced .service__pin {
  position: static; height: auto; min-height: 0;
  flex-direction: column; align-items: stretch; gap: 0;
  padding: 70px 0 0;
  background: var(--c-blue);
}
html.no-pin .service__pin .sec-head,
html:not(.js) .service__pin .sec-head,
html.reduced .service__pin .sec-head { position: static; translate: none; margin: 0 auto 10px; }
html.no-pin .service-panel,
html:not(.js) .service-panel,
html.reduced .service-panel {
  position: static;
  opacity: 1; visibility: visible; transform: none;
  flex-direction: column; text-align: left;
  padding: 44px 6% 64px;
}
html.no-pin .service-panel[data-panel="0"], html:not(.js) .service-panel[data-panel="0"], html.reduced .service-panel[data-panel="0"] { background: var(--c-blue); }
html.no-pin .service-panel[data-panel="1"], html:not(.js) .service-panel[data-panel="1"], html.reduced .service-panel[data-panel="1"] { background: var(--c-coral); }
html.no-pin .service-panel[data-panel="2"], html:not(.js) .service-panel[data-panel="2"], html.reduced .service-panel[data-panel="2"] { background: var(--c-mint); }
html.no-pin .service__dots, html:not(.js) .service__dots, html.reduced .service__dots { display: none; }

/* ==========================================================
   FLOW
   ========================================================== */
.flow { background: var(--c-bg2); padding: 90px 0 100px; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.flow__list {
  margin-top: 46px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  counter-reset: flow;
}
.flow-card {
  position: relative;
  background: #fff; border-radius: var(--radius);
  padding: 64px 24px 28px;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease-back);
}
.flow-card:hover { transform: translateY(-6px) rotate(-.6deg); }
.flow-card__num {
  position: absolute; top: -20px; left: 22px;
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  border: 3px solid var(--c-ink);
  font-family: var(--ff-en); font-weight: 700; font-size: 26px;
  box-shadow: 3px 3px 0 var(--c-ink);
  rotate: -6deg;
}
.flow-card__num--blue   { background: var(--c-sky); }
.flow-card__num--coral  { background: var(--c-salmon); }
.flow-card__num--mint   { background: #7fd3a8; }
.flow-card__num--yellow { background: var(--c-yellow); }
.flow-card__ttl { font-size: 17.5px; font-weight: 900; }
.flow-card__txt { margin-top: 8px; font-size: 13.5px; line-height: 1.95; color: var(--c-ink-soft); }

/* ==========================================================
   GALLERY
   ========================================================== */
.gallery { padding: 90px 0 70px; }
.gallery-card {
  width: 280px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 12px 16px;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease-back);
}
.gallery-card:nth-child(odd)  { rotate: -2deg; }
.gallery-card:nth-child(even) { rotate: 2deg; margin-top: 22px; }
.gallery-card:hover { transform: translateY(-8px) scale(1.02); }
.gallery-card figure {
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 4 / 4.6;
}
.gallery-card figure img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card__hash { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.gallery-card__hash li {
  font-size: 12px; font-weight: 700; color: var(--c-blue-deep);
  background: #e8f4ff; border-radius: var(--radius-pill);
  padding: 3px 12px 4px;
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about { padding: 40px 0 70px; }
.about__box {
  background: var(--c-bg2);
  border-radius: 80px 0 80px 0;
  padding: clamp(40px, 6vw, 80px);
}
.about__statement {
  margin-top: 36px;
  font-size: clamp(24px, 3vw, 38px); font-weight: 900; line-height: 1.7; letter-spacing: .02em;
}
.about__statement em { background: linear-gradient(transparent 62%, var(--c-yellow) 62%); }
.about__txt { margin-top: 20px; max-width: 720px; font-size: 15px; color: var(--c-ink-soft); }
.about__info { margin-top: 34px; max-width: 720px; }
.about__info > div {
  display: grid; grid-template-columns: 110px 1fr; gap: 16px;
  padding: 14px 4px;
  border-bottom: 2px dashed #d8dadf;
  font-size: 14.5px;
}
.about__info dt { font-weight: 900; }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact { padding: 30px 0 110px; }
.contact__box {
  position: relative;
  background: var(--c-blue);
  border-radius: var(--radius-lg);
  padding: clamp(50px, 7vw, 90px) 6%;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.contact__box::before, .contact__box::after {
  content: "";
  position: absolute;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}
.contact__box::before { left: -70px; bottom: -90px; }
.contact__box::after { right: -60px; top: -80px; width: 180px; height: 180px; }
.contact__hand { font-size: clamp(38px, 5vw, 60px); color: var(--c-yellow); rotate: -4deg; line-height: 1; }
.contact__ttl { margin-top: 8px; font-size: clamp(25px, 3.6vw, 42px); font-weight: 900; line-height: 1.55; }
.contact__txt { margin-top: 14px; font-size: 15px; }
.contact .btn { margin-top: 30px; position: relative; z-index: 1; }
.contact__mail { margin-top: 18px; font-size: 13.5px; }
.contact__mail a { text-decoration: underline; text-underline-offset: 4px; font-weight: 700; }
.contact__mail a:hover { color: var(--c-yellow); }

/* ==========================================================
   フッター
   ========================================================== */
.footer__hill { line-height: 0; }
.footer__hill svg { width: 100%; height: clamp(50px, 8vw, 120px); }
.footer__main { background: var(--c-blue); color: #fff; padding: 20px 0 36px; margin-top: -1px; }
.footer__logo {
  display: inline-block;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
}
.footer__logo img { width: 110px; }
.footer__nav { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.footer__nav a { font-size: 13.5px; font-weight: 700; opacity: .95; }
.footer__nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer__sns { margin-top: 24px; display: flex; gap: 10px; }
.footer__sns a {
  display: grid; place-items: center;
  min-width: 46px; height: 46px; padding: 0 18px;
  background: #fff; color: var(--c-ink);
  border: 2.5px solid var(--c-ink); border-radius: var(--radius-pill);
  box-shadow: 3px 3px 0 rgba(41, 41, 41, .85);
  font-family: var(--ff-en); font-weight: 600; font-size: 13px;
  transition: transform .25s var(--ease-back), box-shadow .25s, background-color .25s;
}
.footer__sns a:hover { background: var(--c-yellow); transform: translate(2px, 2px); box-shadow: 0 0 0 rgba(41, 41, 41, .85); }
.footer__addr { margin-top: 26px; font-size: 13px; opacity: .92; }
.footer__copy { margin-top: 6px; font-family: var(--ff-en); font-weight: 500; font-size: 12.5px; opacity: .8; }

/* ==========================================================
   レスポンシブ
   ========================================================== */
@media (max-width: 1024px) {
  .header__nav, .header__contact { display: none; }
  .header__menu { display: flex; margin-left: auto; }
  .quicknav__list { grid-template-columns: repeat(3, 1fr); }
  .flow__list { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .hero__float--web { right: 6vw; bottom: 52vh; }
  .service-panel { flex-direction: column; text-align: left; gap: 24px; }
  .service-panel__illust svg { width: 170px; height: 170px; }
}

@media (max-width: 640px) {
  .pc { display: none; }
  .sp { display: inline; }
  :root { --header-h: 64px; }
  .header__logo img { width: 88px; }
  .hero { height: max(100svh, 600px); }
  .hero__copy { top: 21%; }
  .hero__sun { width: 70px; height: 70px; left: 4vw; top: calc(var(--header-h) + 10px); }
  .hero__cloud--1 { top: calc(var(--header-h) + 16px); right: 6vw; }
  .hero__cloud--2 { top: 56vh; left: 7vw; }
  .hero__bird--1 { top: 15vh; right: 24vw; }
  .hero__bird--2 { top: 13vh; right: 14vw; }
  .hero__float { width: 60px; height: 60px; }
  .hero__float svg { width: 32px; height: 32px; }
  .hero__float--ai { left: 6vw; bottom: 40vh; }
  .hero__float--sns { right: 6vw; bottom: 44vh; }
  .hero__float--web { right: 18vw; bottom: 28vh; }
  .hero__sky-back { bottom: 22vh; height: 20vh; }
  .hero__sky-mid { bottom: 9vh; height: 24vh; }
  .hero__sky-front { height: 26vh; min-height: 170px; }
  .hero__scroll { display: none; }
  .important .inner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px 22px; }
  .quicknav__list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .quicknav__img { width: 72px; height: 72px; }
  .quicknav__img svg { width: 46px; height: 46px; }
  .news-card { width: 270px; }
  .flow { border-radius: 0 0 var(--radius) var(--radius); }
  .flow__list { grid-template-columns: 1fr; row-gap: 38px; }
  .gallery-card { width: 240px; }
  .about__box { border-radius: 44px 0 44px 0; }
  .about__info > div { grid-template-columns: 1fr; gap: 2px; }
  .slider { gap: 16px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .loading { display: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ==========================================================
   下層ページ共通(v1.1.0)
   ========================================================== */
.page-main { background: #fff; }
.inner--narrow { width: min(92%, 860px); margin-inline: auto; }
.section { padding: 84px 0; }
.section--tint { background: var(--c-bg2); border-radius: var(--radius-lg); margin: 0 12px; }
.section-lead { max-width: 720px; margin: -26px auto 44px; text-align: center; color: var(--c-ink-soft); font-weight: 500; }
.sec-head { margin-bottom: 40px; }

/* ---------- ページヒーロー帯 ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 96px;
  text-align: center; color: #fff;
  overflow: clip;
}
.page-hero--blue   { background: var(--c-blue); }
.page-hero--coral  { background: var(--c-coral); }
.page-hero--mint   { background: var(--c-mint); }
.page-hero--sky    { background: var(--c-sky); }
.page-hero--yellow { background: var(--c-yellow); color: var(--c-ink); }
.page-hero__hand { font-family: var(--ff-hand); font-size: clamp(26px, 3vw, 36px); line-height: 1.1; rotate: -3deg; opacity: .95; }
.page-hero--yellow .page-hero__hand { color: var(--c-ink); }
.page-hero__en { font-family: var(--ff-en); font-weight: 700; font-size: clamp(46px, 7vw, 84px); letter-spacing: .04em; line-height: 1.1; }
.page-hero__jp { font-weight: 900; font-size: clamp(15px, 1.8vw, 18px); display: inline-flex; align-items: center; gap: 10px; }
.page-hero__jp::before, .page-hero__jp::after { content: ""; width: 22px; height: 3px; border-radius: 3px; background: currentColor; opacity: .7; }
.page-hero__lead { margin-top: 14px; font-size: 14px; font-weight: 700; opacity: .95; }
.page-hero__deco { position: absolute; inset: 0; pointer-events: none; }
.page-hero__dot { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .22); }
.page-hero--yellow .page-hero__dot { background: rgba(41, 41, 41, .1); }
.page-hero__dot--1 { width: 130px; height: 130px; left: 6%; top: 22%; }
.page-hero__dot--2 { width: 46px; height: 46px; right: 14%; top: 30%; }
.page-hero__dot--3 { width: 22px; height: 22px; right: 24%; bottom: 30%; }
.page-hero__bird { position: absolute; left: 18%; bottom: 34%; animation: birdBob 3.4s ease-in-out infinite; }
.page-hero__bird path { stroke: rgba(255, 255, 255, .85); }
.page-hero--yellow .page-hero__bird path { stroke: var(--c-ink); }
.page-hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.page-hero__wave svg { width: 100%; height: clamp(28px, 5vw, 70px); }

/* ---------- ボタン追加 ---------- */
.btn--ghost { background: #fff; }
.btn--primary-ink { background: var(--c-ink); color: #fff; }

/* ---------- 料金: 40%OFF帯 ---------- */
.price-off {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 18px;
  background: #fff; border: 2.5px dashed var(--c-coral); border-radius: var(--radius);
  padding: 20px 26px; margin-bottom: 44px; text-align: center;
}
.price-off__badge { background: var(--c-coral); color: #fff; font-weight: 900; font-size: 14px; padding: 6px 16px; border-radius: var(--radius-pill); }
.price-off__num { font-weight: 900; font-size: clamp(22px, 3vw, 30px); color: var(--c-coral); }
.price-off__num small { font-size: .6em; }
.price-off__note { width: 100%; font-size: 12.5px; color: var(--c-ink-soft); }

/* ---------- 料金: プランカード ---------- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 2.5px solid var(--c-ink); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: 6px 6px 0 rgba(41, 41, 41, .12);
}
.plan-card--hero { border-color: var(--c-blue); box-shadow: 8px 8px 0 rgba(0, 153, 255, .25); background: linear-gradient(180deg, #f3faff 0%, #fff 60%); }
.plan-card__pop {
  position: absolute; top: -16px; left: 50%; translate: -50% 0; white-space: nowrap;
  background: var(--c-yellow); border: 2.5px solid var(--c-ink); border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 900; padding: 4px 18px; rotate: -2deg;
}
.plan-card__name { font-size: 20px; font-weight: 900; }
.plan-card--hero .plan-card__name { color: var(--c-blue-deep); }
.plan-card__for { font-size: 13px; color: var(--c-ink-soft); margin: 6px 0 14px; min-height: 3em; }
.plan-card__price { margin-bottom: 16px; line-height: 1.3; }
.plan-card__price s { display: block; font-size: 14px; color: var(--c-ink-soft); font-weight: 700; }
.plan-card__price strong { font-family: var(--ff-en); font-size: clamp(30px, 3.4vw, 40px); font-weight: 700; }
.plan-card__price span { display: block; font-size: 11.5px; color: var(--c-ink-soft); }
.plan-card__list { flex: 1; display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.plan-card__list li { position: relative; padding-left: 24px; font-size: 14px; font-weight: 500; }
.plan-card__list li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 15px; height: 15px; border-radius: 50%;
  background: var(--c-mint) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 12.5 L10.5 16 L17 8.5" fill="none" stroke="white" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
}
.plan-card .btn { width: 100%; }
.price-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px; margin-top: 36px; }
.price-trust li {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 2px solid var(--c-mint); color: var(--c-ink);
  font-size: 13.5px; font-weight: 700; padding: 7px 16px; border-radius: var(--radius-pill);
}
.price-trust li::before { content: "✓"; color: var(--c-mint); font-weight: 900; }
.price-note { margin-top: 18px; font-size: 12.5px; color: var(--c-ink-soft); text-align: center; }

/* ---------- 料金: 月額サポート比較表 ---------- */
.support-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.support-table { width: 100%; min-width: 680px; border-collapse: separate; border-spacing: 0; background: #fff; border: 2.5px solid var(--c-ink); border-radius: var(--radius); overflow: hidden; }
.support-table th, .support-table td { padding: 13px 14px; text-align: center; font-size: 14px; border-top: 1.5px solid #e8e8e8; }
.support-table thead th { border-top: none; background: var(--c-skysoft); font-weight: 900; font-size: 15px; vertical-align: top; padding: 18px 14px 14px; }
.support-table thead th.is-hero { background: var(--c-blue); color: #fff; }
.support-table__price { display: block; font-family: var(--ff-en); font-weight: 700; font-size: 24px; margin-top: 4px; }
.support-table__price small { font-size: 12px; font-family: var(--ff-jp); }
.support-table__for { display: block; font-size: 11px; font-weight: 500; opacity: .85; }
.support-table tbody th { text-align: left; font-weight: 700; background: #fafafa; width: 32%; }
.support-table tbody td { color: var(--c-mint); font-weight: 900; }
.support-table tbody td.is-hero { background: #f3faff; }
.support-table tbody tr.is-diff td { color: var(--c-ink); font-weight: 900; background: #fff8e1; }
.support-table tbody tr.is-diff td.is-hero { background: #ffefb3; }

/* ---------- 料金: コンサル相談ボックス ---------- */
.consul-box {
  background: #fff; border: 2.5px solid var(--c-ink); border-radius: var(--radius);
  box-shadow: 6px 6px 0 rgba(41, 41, 41, .12);
  padding: clamp(26px, 4vw, 44px); text-align: center;
}
.consul-box__txt { max-width: 640px; margin: 0 auto 20px; text-align: left; }
.consul-box__points { display: flex; flex-direction: column; gap: 10px; max-width: 560px; margin: 0 auto 26px; }
.consul-box__points li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; text-align: left; }
.consul-box__points .chip { flex-shrink: 0; }
.consul-box__note { margin-top: 14px; font-size: 12.5px; color: var(--c-ink-soft); }

/* ---------- FAQ ---------- */
.faq-group { margin-bottom: 44px; }
.faq-group__title { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 900; margin-bottom: 16px; }
.faq-group__dot { width: 14px; height: 14px; border-radius: 50%; }
.faq-group__dot--blue { background: var(--c-blue); }
.faq-group__dot--coral { background: var(--c-coral); }
.faq-group__dot--mint { background: var(--c-mint); }
.faq-group__dot--yellow { background: var(--c-yellow); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 2.5px solid var(--c-ink); border-radius: var(--radius-sm);
  overflow: clip; transition: box-shadow .25s;
}
.faq-item[open] { box-shadow: 5px 5px 0 rgba(41, 41, 41, .12); }
.faq-item summary {
  position: relative; cursor: pointer; list-style: none;
  padding: 15px 52px 15px 48px; font-weight: 700; font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q"; position: absolute; left: 14px; top: 14px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--c-blue); color: #fff;
  font-family: var(--ff-en); font-weight: 700; font-size: 14px;
  display: grid; place-items: center;
}
.faq-item summary::after {
  content: ""; position: absolute; right: 18px; top: 50%; translate: 0 -50%;
  width: 12px; height: 12px;
  border-right: 3px solid var(--c-ink); border-bottom: 3px solid var(--c-ink);
  rotate: 45deg; transition: rotate .25s; margin-top: -3px;
}
.faq-item[open] summary::after { rotate: 225deg; margin-top: 3px; }
.faq-item__a { padding: 2px 20px 18px 48px; font-size: 14.5px; color: #3d3d3d; }
.faq-item__a strong { background: linear-gradient(transparent 62%, var(--c-yellow) 62%); font-weight: 700; }
.faq-item__a a { color: var(--c-blue-deep); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- FLOW タイムライン ---------- */
.timeline { position: relative; display: flex; flex-direction: column; gap: 30px; }
.timeline::before { content: ""; position: absolute; left: 31px; top: 10px; bottom: 10px; width: 3px; border-radius: 3px; background: repeating-linear-gradient(180deg, var(--c-ink) 0 8px, transparent 8px 16px); opacity: .25; }
.timeline__item { position: relative; display: flex; gap: 22px; }
.timeline__num {
  position: relative; z-index: 1; flex-shrink: 0;
  width: 62px; height: 62px; border-radius: 50%;
  border: 3px solid var(--c-ink); background: #fff;
  display: grid; place-items: center;
  font-family: var(--ff-en); font-weight: 700; font-size: 19px;
  box-shadow: 4px 4px 0 rgba(41, 41, 41, .14);
}
.timeline__item--blue .timeline__num   { background: var(--c-blue); color: #fff; }
.timeline__item--coral .timeline__num  { background: var(--c-coral); color: #fff; }
.timeline__item--mint .timeline__num   { background: var(--c-mint); color: #fff; }
.timeline__item--yellow .timeline__num { background: var(--c-yellow); }
.timeline__item--sky .timeline__num    { background: var(--c-sky); color: #fff; }
.timeline__body {
  flex: 1; background: #fff; border: 2.5px solid var(--c-ink); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: 6px 6px 0 rgba(41, 41, 41, .1);
}
.timeline__head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 8px; }
.timeline__title { font-size: 19px; font-weight: 900; }
.timeline__free { background: var(--c-coral); color: #fff; font-size: 12px; font-weight: 900; padding: 3px 12px; border-radius: var(--radius-pill); }
.timeline__days { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700; color: var(--c-ink-soft); }
.timeline__desc { font-size: 14.5px; margin-bottom: 14px; }
.timeline__roles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.timeline__role { border-radius: var(--radius-sm); padding: 12px 14px; font-size: 13px; }
.timeline__role p { line-height: 1.7; }
.timeline__role--you { background: #fff8e1; }
.timeline__role--uuo { background: var(--c-skysoft); }
.timeline__role-label { display: block; font-size: 11.5px; font-weight: 900; margin-bottom: 3px; }
.timeline__role--you .timeline__role-label { color: #b07b00; }
.timeline__role--uuo .timeline__role-label { color: var(--c-blue-deep); }

.flow-note { margin-top: 48px; text-align: center; background: var(--c-bg2); border-radius: var(--radius); padding: 30px 24px 34px; }
.flow-note__hand { font-family: var(--ff-hand); font-size: 30px; color: var(--c-blue); rotate: -2deg; line-height: 1.1; margin-bottom: 6px; }
.flow-note p:not(.flow-note__hand) { font-weight: 700; }

/* ---------- 会社概要 ---------- */
.ceo-card { display: flex; gap: 26px; align-items: flex-start; }
.ceo-card__icon { flex-shrink: 0; }
.ceo-card__body { background: #fff; border: 2.5px solid var(--c-ink); border-radius: var(--radius); padding: clamp(22px, 3.5vw, 36px); box-shadow: 6px 6px 0 rgba(41, 41, 41, .1); position: relative; }
.ceo-card__body::before {
  content: ""; position: absolute; left: -14px; top: 34px;
  width: 22px; height: 22px; background: #fff;
  border-left: 2.5px solid var(--c-ink); border-bottom: 2.5px solid var(--c-ink);
  rotate: 45deg;
}
.ceo-card__lead { font-size: clamp(17px, 2.2vw, 21px); font-weight: 900; line-height: 1.7; margin-bottom: 14px; }
.ceo-card__body p:not(.ceo-card__lead):not(.ceo-card__sign) { font-size: 14.5px; margin-bottom: 12px; color: #3d3d3d; }
.ceo-card__body strong { background: linear-gradient(transparent 62%, var(--c-yellow) 62%); }
.ceo-card__sign { text-align: right; font-size: 14px; margin-top: 18px; }
.ceo-card__sign strong { font-size: 17px; background: none; }

.info-table { background: #fff; border: 2.5px solid var(--c-ink); border-radius: var(--radius); overflow: hidden; }
.info-table > div { display: grid; grid-template-columns: 160px 1fr; }
.info-table > div + div { border-top: 1.5px dashed #d9d9d9; }
.info-table dt { background: var(--c-skysoft); font-weight: 900; font-size: 14px; padding: 14px 18px; }
.info-table dd { padding: 14px 18px; font-size: 14.5px; }
.info-table a { color: var(--c-blue-deep); text-decoration: underline; text-underline-offset: 2px; }

.access-map { border: 2.5px solid var(--c-ink); border-radius: var(--radius); overflow: hidden; box-shadow: 6px 6px 0 rgba(41, 41, 41, .1); }
.access-map iframe { display: block; width: 100%; height: 380px; border: 0; }
.access-note { margin-top: 16px; text-align: center; font-size: 14px; color: var(--c-ink-soft); font-weight: 500; }

/* ---------- お問い合わせフォーム ---------- */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-alert {
  background: #fdecee; border: 2px solid var(--c-coral); color: #c2233a;
  border-radius: var(--radius-sm); padding: 14px 18px; font-size: 14px; font-weight: 700; margin-bottom: 24px;
}
.form-alert a { text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: 24px; max-width: 680px; margin-inline: auto; }
.contact-form__row { border: 0; }
.contact-form__label { display: flex; align-items: center; gap: 8px; font-weight: 900; font-size: 14.5px; margin-bottom: 8px; }
.req, .opt { font-size: 11px; font-weight: 900; padding: 2px 10px; border-radius: var(--radius-pill); }
.req { background: var(--c-coral); color: #fff; }
.opt { background: #e8e8e8; color: var(--c-ink-soft); }
.contact-form__input {
  width: 100%; font: inherit; font-size: 15px; color: var(--c-ink);
  background: #fff; border: 2.5px solid var(--c-ink); border-radius: var(--radius-sm);
  padding: 13px 16px; transition: box-shadow .2s, border-color .2s;
}
.contact-form__input:focus { outline: none; border-color: var(--c-blue); box-shadow: 4px 4px 0 rgba(0, 153, 255, .25); }
.contact-form__input::placeholder { color: #b5b5b5; }
.contact-form__textarea { resize: vertical; min-height: 140px; }
.topic-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.topic-chips label { cursor: pointer; }
.topic-chips input { position: absolute; opacity: 0; pointer-events: none; }
.topic-chips span {
  display: inline-block; padding: 9px 18px; border-radius: var(--radius-pill);
  border: 2.5px solid var(--c-ink); background: #fff; font-size: 14px; font-weight: 700;
  transition: background .2s, color .2s, box-shadow .2s;
}
.topic-chips input:checked + span { background: var(--c-ink); color: #fff; box-shadow: 3px 3px 0 rgba(41, 41, 41, .25); }
.topic-chips input:focus-visible + span { outline: 3px solid var(--c-blue); outline-offset: 2px; }
.contact-form__submit { text-align: center; }
.contact-form__submit .btn { min-width: min(100%, 360px); }
.contact-form__note { margin-top: 14px; font-size: 12.5px; color: var(--c-ink-soft); }
.contact-form__note a { text-decoration: underline; text-underline-offset: 2px; }

.form-done { text-align: center; max-width: 560px; margin-inline: auto; }
.form-done svg { margin: 0 auto 18px; }
.form-done__ttl { font-size: clamp(24px, 3.4vw, 32px); font-weight: 900; margin-bottom: 10px; }
.form-done__txt { font-size: 14.5px; color: #3d3d3d; margin-bottom: 14px; }
.form-done__txt a { color: var(--c-blue-deep); text-decoration: underline; }
.form-done__steps { counter-reset: done; text-align: left; display: flex; flex-direction: column; gap: 10px; background: var(--c-bg2); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 22px; }
.form-done__steps li { counter-increment: done; position: relative; padding-left: 36px; font-size: 14px; font-weight: 500; }
.form-done__steps li::before {
  content: counter(done); position: absolute; left: 0; top: .1em;
  width: 25px; height: 25px; border-radius: 50%; background: var(--c-blue); color: #fff;
  font-family: var(--ff-en); font-weight: 700; font-size: 14px; display: grid; place-items: center;
}

/* ---------- プライバシーポリシー ---------- */
.policy-summary {
  background: #fff8e1; border: 2.5px dashed var(--c-yellow); border-radius: var(--radius);
  padding: 24px 28px; margin-bottom: 40px;
}
.policy-summary__hand { font-family: var(--ff-hand); font-size: 28px; color: #b07b00; rotate: -2deg; line-height: 1.1; margin-bottom: 8px; }
.policy-summary ul { display: flex; flex-direction: column; gap: 8px; }
.policy-summary li { position: relative; padding-left: 24px; font-size: 14.5px; font-weight: 500; }
.policy-summary li::before { content: "✓"; position: absolute; left: 2px; color: var(--c-mint); font-weight: 900; }
.policy-summary strong { background: linear-gradient(transparent 62%, var(--c-yellow) 62%); }
.policy-body h2 { font-size: 17px; font-weight: 900; margin: 32px 0 8px; padding-left: 14px; border-left: 5px solid var(--c-blue); border-radius: 2px; }
.policy-body p, .policy-body li { font-size: 14.5px; color: #3d3d3d; }
.policy-body ul { list-style: disc; padding-left: 22px; }
.policy-body a { color: var(--c-blue-deep); text-decoration: underline; }
.policy-body__date { margin-top: 36px; text-align: right; font-size: 13px; color: var(--c-ink-soft); }

/* ---------- 下層レスポンシブ ---------- */
@media (max-width: 1024px) {
  .plan-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; gap: 30px; }
  .plan-card__for { min-height: 0; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section--tint { margin: 0 8px; }
  .page-hero { padding: calc(var(--header-h) + 44px) 0 72px; }
  .timeline::before { left: 24px; }
  .timeline__item { gap: 14px; }
  .timeline__num { width: 48px; height: 48px; font-size: 16px; }
  .timeline__roles { grid-template-columns: 1fr; }
  .ceo-card { flex-direction: column; align-items: center; }
  .ceo-card__body::before { left: 50%; top: -14px; margin-left: -11px; rotate: 135deg; }
  .info-table > div { grid-template-columns: 1fr; }
  .info-table dt { padding: 10px 18px 4px; background: none; color: var(--c-blue-deep); font-size: 12.5px; }
  .info-table dd { padding: 0 18px 12px; }
  .access-map iframe { height: 280px; }
}
