@charset "UTF-8";
/* ==========================================================
   mitoki LP — base: tokens / reset / shared components
   ========================================================== */

:root {
  --asagi: #00A5BF;
  --asagi-deep: #008DA3;
  --asagi-light: #4CBFD6;
  --asagi-pale: #7FCCE3;
  --hiiro: #DB4F2E;
  --hiiro-deep: #C4441F; /* 緋のホバー */
  --grad-hiiro: linear-gradient(90deg, #E5653F 0%, #DB4F2E 100%); /* CTA帯の背景（2026-09-16 FB） */
  --ink: #222222;
  --ink-strong: #00000F;
  --gray: #666666;
  --line: #e8ecee;
  --bg-tint: #EAF6F9;
  --bg-tint2: #F2F5F6;
  --grad: linear-gradient(90deg, #4CBFD6 0%, #00A5BF 100%);
  --white: #ffffff;
  --radius: 8px;
  --shadow-card: 0 0 20px rgba(0, 0, 0, .06);
  --shadow-btn: 0 3px 12px rgba(0, 0, 0, .16);
  --shadow-header: 0 0 20px rgba(34, 34, 34, .12);
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Avenir Next", "Montserrat", "Noto Sans JP", sans-serif;
  --header-h: 90px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  font-weight: 500; /* Noto Sans JP 400は細く読みづらいためミディアムを基準に */
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}
img, svg { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.5; }

/* ---------- layout ---------- */
.l-container { max-width: 1280px; margin-inline: auto; padding-inline: 24px; }
.l-container--wide { max-width: 1480px; }
.l-container--narrow { max-width: 1160px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 60px;
  border: 2px solid var(--asagi);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  padding: 10px 32px;
  transition: background-color .25s, color .25s, box-shadow .25s, transform .25s;
  white-space: nowrap;
}
.btn .i { flex: none; }
/* 2026-09-16 原FB: CTAが浅葱すぎて埋もれる → 無料相談のボタンはブランドの差し色・緋 */
.btn--fill { background: var(--hiiro); border-color: var(--hiiro); color: var(--white); box-shadow: var(--shadow-btn); }
.btn--fill:hover { background: var(--hiiro-deep); border-color: var(--hiiro-deep); }
.btn--line { background: var(--white); color: var(--asagi); }
.btn--line:hover { background: var(--asagi); color: var(--white); }
.btn--lg { font-size: 24px; padding: 17px 44px; }
.btn--sm { font-size: 15px; padding: 6px 20px; border-width: 1px; }
.btn--ghost {
  background: var(--white); color: var(--ink); border-color: transparent;
  box-shadow: var(--shadow-btn); font-size: 18px; padding: 14px 36px;
}
.btn--ghost:hover { transform: translateY(-2px); }
.btn--ghost .btn__arrow { margin-left: 4px; }
.btn__arrow {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--asagi); color: var(--white); flex: none;
}
.btn__arrow svg { width: 12px; height: 12px; }

/* ---------- section head ---------- */
.sec-head { text-align: center; }
.sec-head--left { text-align: left; }
.sec-head__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 18px;
  color: var(--asagi);
  letter-spacing: .04em;
}
.sec-head__title { font-size: 38px; font-weight: 700; color: var(--ink); margin-top: 4px; }
.sec-head__title .em { color: var(--asagi); }
@media (max-width: 768px) {
  .sec-head__title { font-size: 29px; }
}

/* ---------- placeholder ---------- */
.ph {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  background:
    repeating-linear-gradient(45deg, #e0eff4 0, #e0eff4 10px, #ecf6f9 10px, #ecf6f9 20px);
  border: 1px dashed #b8d9e2;
  border-radius: var(--radius);
  overflow: hidden;
  color: #5b8794;
}
.ph > span {
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, .8);
  padding: 4px 12px;
  border-radius: 20px;
}
.ph--photo { aspect-ratio: 3 / 2; }
.ph--wide { aspect-ratio: 16 / 9; }
.ph--square { aspect-ratio: 1 / 1; }
.ph--banner { aspect-ratio: 4 / 3; }
.ph--circle { border-radius: 50%; }

/* ---------- cta band (shared: 無料相談1本のCTA) ---------- */
.cta-band { background: var(--grad-hiiro); padding: 72px 0; } /* 2026-09-16 FB: 背景も朱色に */
.cta-band--large { padding: 96px 0; }
.cta-band__solo {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 980px;
  margin-inline: auto;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 40px;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .10);
}
.cta-band__thumb img { border-radius: 4px; }
.cta-band__en { color: var(--asagi); font-family: var(--font-en); font-weight: 700; font-size: 17px; letter-spacing: .06em; }
.cta-band__title { font-size: 38px; font-weight: 700; margin: 2px 0 10px; font-feature-settings: "palt" 1; }
.cta-band__text { font-size: 16px; line-height: 1.9; color: var(--ink); }
.cta-band__btn { margin-top: 24px; width: 100%; }
@media (max-width: 1024px) {
  .cta-band__solo { grid-template-columns: 240px 1fr; padding: 36px 32px; column-gap: 28px; }
  .cta-band__title { font-size: 32px; }
}
@media (max-width: 768px) {
  .cta-band { padding: 48px 0; }
  .cta-band__solo { grid-template-columns: 1fr; row-gap: 20px; padding: 28px 24px; text-align: center; } /* 2026-09-17 村上FB: 縦積み時はラベル・見出し・本文も中央揃え */
  .sec-head--left { text-align: center; } /* お知らせなど、SPで縦積みになる左寄せ見出しも中央に */
  .cta-band__thumb { max-width: 280px; margin-inline: auto; }
  .cta-band__title { font-size: 27px; }
  .cta-band__text { font-size: 15px; text-wrap: pretty; } /* 「行いません。」が「ん。」だけ次行に落ちるのを防ぐ */
  .cta-band__btn { font-size: 19px; padding: 12px 24px; }
}

/* ---------- utility ---------- */
.u-nowrap { white-space: nowrap; display: inline-block; }

/* ---------- reveal ---------- */
.js-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
