/* ============================================================
   ESSENCIA 表参道店 — スマホ専用 LP (画像主役 / 375px設計)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --bg: #f5efe5;
  --bg-soft: #faf6ef;
  --gold-1: #d4b78a;
  --gold-2: #b89968;
  --gold-3: #8a6f47;
  --gold-line: rgba(184, 153, 104, 0.28);
  --gold-bg-soft: rgba(184, 153, 104, 0.06);
  --ink: #2a241d;
  --ink-soft: #5a4f42;
  --line: #06c755;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
}
img {
  display: block;
  width: 100%;
  height: auto;
  /* 高解像度画像を縮小表示する際の文字つぶれを軽減 */
  image-rendering: -webkit-optimize-contrast;
}
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
h1, h2, p, dl, dd { margin: 0; }

/* ---------- visually-hidden ---------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- LP コンテナ(スマホ専用 375px設計) ---------- */
/* max-widthを520pxに拡張: 941px幅の画像内文字(card descriptions等)が
   約56%スケールで表示され、文字がぎりぎり読めるサイズになる。
   モバイル(375-430px)では100%表示なので影響なし、デスクトップ表示時のみ拡張。 */
.lp {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg);
  padding-bottom: 110px;
  position: relative;
}

/* PC環境では左右にゴールドのアンビエント背景 */
@media (min-width: 768px) {
  body {
    background:
      radial-gradient(ellipse 50% 60% at 20% 20%, rgba(212, 183, 138, 0.18), transparent 60%),
      radial-gradient(ellipse 50% 60% at 80% 80%, rgba(184, 153, 104, 0.15), transparent 60%),
      var(--bg);
    background-attachment: fixed;
  }
  .lp {
    box-shadow: 0 20px 60px rgba(60, 45, 25, 0.12);
  }
}

/* ---------- セクション ---------- */
.sec {
  position: relative;
  scroll-margin-top: 24px;
}
.sec + .sec { margin-top: 0; }

/* ---------- 画像 CTA 部分のクロップ ---------- */
/* 各画像下部に焼き込まれているCTA領域を、CSSでクロップして
   HTMLの実機能CTAに置き換える。比率は実画像を確認して微調整可。 */
.img-crop {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.img-crop img {
  display: block;
  width: 100%;
  height: auto;
}
.img-crop-fv    { aspect-ratio: 941 / 1085; }  /* FV: 下部約35%カット — 大人の女性美容師...見出し以下をHTML化 */
.img-crop-flow  { aspect-ratio: 941 / 1360; }  /* 応募の流れ: Step04直後で切り、「無理な勧誘」以下を除外 */
.img-crop-final { aspect-ratio: 941 / 1120; }  /* 職場イメージ: 下部約33%カット */

/* ---------- FV下: 特徴リスト(アイコン+縦並び) ---------- */
.features {
  padding: 30px 20px 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.7) 0%, var(--bg) 100%),
    var(--bg);
}
.features-heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.85;
  text-align: center;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 26px;
  padding: 0 4px;
}
.features-heading em {
  font-style: normal;
  position: relative;
  padding: 0 4px;
  color: var(--gold-3);
}
.features-heading em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-1), transparent);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(138, 111, 71, 0.06);
  position: relative;
  overflow: hidden;
}
.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
}
.feature-item__icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 0%, #fbf5e8 100%);
  border: 1px solid var(--gold-line);
  color: var(--gold-2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 2px 6px rgba(138, 111, 71, 0.08);
}
.feature-item__icon svg {
  display: block;
}
.feature-item__body {
  flex-grow: 1;
  min-width: 0;
}
.feature-item__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.4;
}
.feature-item__desc {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  margin: 0;
}

/* ---------- FV右上バッジ(残り2名) ---------- */
.fv-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #e6c590 0%, #b89968 60%, #8a6f47 100%);
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  box-shadow:
    0 8px 22px rgba(60, 45, 25, 0.35),
    inset 0 2px 2px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(-6deg);
  animation: fv-badge-pulse 2.4s ease-in-out infinite;
}
@keyframes fv-badge-pulse {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50%      { transform: rotate(-6deg) scale(1.05); }
}
.fv-badge__top,
.fv-badge__bottom {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.1;
  padding-left: 0.16em;
}
.fv-badge__num {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  margin: 1px 0;
  display: inline-flex;
  align-items: baseline;
}
.fv-badge__num small {
  font-family: "Noto Serif JP", serif;
  font-size: 0.62rem;
  font-weight: 700;
  margin-left: 2px;
  letter-spacing: 0;
}

/* ---------- 限定募集ライン(CTAブロック上部) ---------- */
.cta-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 22px 20px 6px;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-3);
  text-align: center;
  line-height: 1.4;
}
.cta-urgency::before,
.cta-urgency::after {
  content: "";
  flex-grow: 0;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2));
}
.cta-urgency::after {
  background: linear-gradient(90deg, var(--gold-2), transparent);
}
.cta-urgency strong {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #b8401a;
  margin: 0 2px;
  vertical-align: -3px;
  line-height: 1;
}
.cta-urgency__label {
  font-size: 0.84rem;
  letter-spacing: 0.1em;
}

/* ---------- マイクロコピー(CTA直前) ---------- */
.cta-urgency + .cta-micro {
  margin-top: 6px;
}
.cta-micro {
  margin: 22px 20px -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: var(--gold-3);
  text-align: center;
  line-height: 1.5;
}
.cta-micro::before,
.cta-micro::after {
  content: "";
  display: inline-block;
  width: 1.5px;
  height: 22px;
  background: var(--gold-2);
  flex-shrink: 0;
  border-radius: 2px;
}
.cta-micro::before { transform: rotate(-22deg); }
.cta-micro::after  { transform: rotate(22deg); }

/* ---------- CTA(画像直下) ---------- */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px 20px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 50%, #a08658 100%);
  color: #fff;
  font-family: "Noto Serif JP", "Noto Sans JP", serif;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.1em;
  border-radius: 999px;
  text-align: center;
  position: relative;
  box-shadow:
    0 14px 32px rgba(138, 111, 71, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.cta::after {
  content: "›";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-52%);
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold-3);
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(138, 111, 71, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.cta:hover::after { transform: translate(3px, -52%); }

/* ---------- セカンダリリンク(応募フォームへの小さい誘導) ---------- */
.cta-secondary {
  display: block;
  text-align: center;
  margin: 12px 20px 0;
  padding: 6px 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--gold-3);
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(138, 111, 71, 0.4);
  text-decoration-thickness: 1px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.cta-secondary:hover {
  color: var(--ink);
  text-decoration-color: var(--gold-2);
}

/* ---------- CTAスタック / 列 ---------- */
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 20px;
}
.cta-stack .cta { margin: 0; }

/* ---------- LINE CTA ---------- */
.cta-line {
  background: linear-gradient(135deg, #06c755 0%, #04a948 100%);
  box-shadow:
    0 14px 32px rgba(6, 170, 73, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.cta-line::before {
  border-color: rgba(255, 255, 255, 0.4);
}
.cta-line span {
  position: relative;
  padding-left: 28px;
}
.cta-line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 5px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.365 9.863c.349 0 .63.286.631.638 0 .351-.282.638-.63.638H17.61v1.125h1.755c.349 0 .63.287.63.638 0 .351-.281.638-.63.638h-2.386c-.346 0-.627-.287-.627-.638v-4.79c0-.351.281-.638.628-.638h2.386c.349 0 .63.287.63.638s-.281.638-.63.638H17.61v1.125h1.755zm-3.855 3.016c0 .274-.176.515-.439.601-.067.024-.135.034-.202.034-.211 0-.398-.103-.516-.275l-2.443-3.336v3.005c0 .351-.279.638-.631.638-.346 0-.626-.287-.626-.638v-4.79c0-.274.176-.514.439-.602.063-.018.131-.031.198-.031.214 0 .397.099.518.273l2.467 3.327V8.279c0-.351.281-.638.631-.638.346 0 .627.287.627.638v4.6zm-5.685 0c0 .351-.281.638-.631.638-.346 0-.627-.287-.627-.638v-4.79c0-.351.281-.638.63-.638.346 0 .628.287.628.638v4.79zm-2.466.638H4.969c-.346 0-.63-.287-.63-.638v-4.79c0-.351.284-.638.63-.638.349 0 .63.287.63.638v4.153h1.759c.348 0 .629.287.629.638 0 .351-.281.637-.629.637M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314' fill='currentColor'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.365 9.863c.349 0 .63.286.631.638 0 .351-.282.638-.63.638H17.61v1.125h1.755c.349 0 .63.287.63.638 0 .351-.281.638-.63.638h-2.386c-.346 0-.627-.287-.627-.638v-4.79c0-.351.281-.638.628-.638h2.386c.349 0 .63.287.63.638s-.281.638-.63.638H17.61v1.125h1.755zm-3.855 3.016c0 .274-.176.515-.439.601-.067.024-.135.034-.202.034-.211 0-.398-.103-.516-.275l-2.443-3.336v3.005c0 .351-.279.638-.631.638-.346 0-.626-.287-.626-.638v-4.79c0-.274.176-.514.439-.602.063-.018.131-.031.198-.031.214 0 .397.099.518.273l2.467 3.327V8.279c0-.351.281-.638.631-.638.346 0 .627.287.627.638v4.6zm-5.685 0c0 .351-.281.638-.631.638-.346 0-.627-.287-.627-.638v-4.79c0-.351.281-.638.63-.638.346 0 .628.287.628.638v4.79zm-2.466.638H4.969c-.346 0-.63-.287-.63-.638v-4.79c0-.351.284-.638.63-.638.349 0 .63.287.63.638v4.153h1.759c.348 0 .629.287.629.638 0 .351-.281.637-.629.637M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314' fill='currentColor'/%3E%3C/svg%3E") center / contain no-repeat;
}
.cta-line:hover {
  background: linear-gradient(135deg, #05b54c 0%, #03933e 100%);
}

/* ---------- 受付時間 ---------- */
.hours {
  text-align: center;
  margin: 14px 20px 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
  font-family: "Noto Serif JP", serif;
}

/* ---------- アクセス情報 ---------- */
.access {
  margin: 28px 20px 0;
  padding: 24px 20px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  text-align: center;
  position: relative;
}
.access::before,
.access::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold-2);
  opacity: 0.6;
}
.access::before {
  top: -1px; left: -1px;
  border-right: 0; border-bottom: 0;
  border-top-left-radius: 14px;
}
.access::after {
  bottom: -1px; right: -1px;
  border-left: 0; border-top: 0;
  border-bottom-right-radius: 14px;
}
.access-label {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  color: var(--gold-3);
  margin-bottom: 10px;
}
.access-label::before {
  content: "◆";
  margin-right: 6px;
  color: var(--gold-2);
  font-size: 0.7rem;
  vertical-align: middle;
}
.access-detail {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* ---------- 募集要項テキスト(details) ---------- */
.info-detail {
  margin: 20px 20px 0;
  background: #fff;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  overflow: hidden;
}
.info-detail summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.08em;
}
.info-detail summary::-webkit-details-marker { display: none; }
.info-detail summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold-2);
  font-weight: 300;
  transition: transform 0.3s ease;
}
.info-detail[open] summary {
  background: var(--gold-bg-soft);
  border-bottom: 1px solid var(--gold-line);
}
.info-detail[open] summary::after { transform: rotate(45deg); }

.info-table > div {
  display: grid;
  grid-template-columns: 96px 1fr;
  border-bottom: 1px solid rgba(184, 153, 104, 0.18);
  font-size: 0.82rem;
}
.info-table > div:last-child { border-bottom: 0; }
.info-table dt {
  padding: 12px 14px;
  background: var(--gold-bg-soft);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: var(--gold-3);
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(184, 153, 104, 0.18);
}
.info-table dd {
  margin: 0;
  padding: 12px 14px;
  color: var(--ink);
  line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 28px 36px;
  text-align: center;
  margin-top: 48px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-1), transparent);
}
.footer-brand {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: #fff;
  margin-bottom: 8px;
  padding-left: 0.32em;
}
.footer-tag {
  font-family: "Noto Serif JP", serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--gold-1);
  margin-bottom: 22px;
}
.footer-address {
  font-size: 0.78rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 26px;
  letter-spacing: 0.04em;
}
.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- 固定 CTA(常時表示) ---------- */
.cta-fixed {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 488px;
  margin: 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 50%, #a08658 100%);
  color: #fff;
  font-family: "Noto Serif JP", "Noto Sans JP", serif;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.1em;
  border-radius: 999px;
  text-align: center;
  box-shadow:
    0 16px 36px rgba(138, 111, 71, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-fixed::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.cta-fixed::after {
  content: "›";
  margin-left: 10px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--gold-3);
  background: #fff;
  border-radius: 50%;
}
.cta-fixed:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 44px rgba(138, 111, 71, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* 固定CTA: LINE色のバリアント */
.cta-fixed--line {
  background: linear-gradient(135deg, #06c755 0%, #04a948 100%);
  box-shadow:
    0 16px 36px rgba(6, 170, 73, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.cta-fixed--line::after {
  color: #04a948;
}
.cta-fixed--line:hover {
  background: linear-gradient(135deg, #05b54c 0%, #03933e 100%);
  box-shadow:
    0 20px 44px rgba(6, 170, 73, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.cta-fixed--line span {
  position: relative;
  padding-left: 28px;
}
.cta-fixed--line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 5px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.365 9.863c.349 0 .63.286.631.638 0 .351-.282.638-.63.638H17.61v1.125h1.755c.349 0 .63.287.63.638 0 .351-.281.638-.63.638h-2.386c-.346 0-.627-.287-.627-.638v-4.79c0-.351.281-.638.628-.638h2.386c.349 0 .63.287.63.638s-.281.638-.63.638H17.61v1.125h1.755zm-3.855 3.016c0 .274-.176.515-.439.601-.067.024-.135.034-.202.034-.211 0-.398-.103-.516-.275l-2.443-3.336v3.005c0 .351-.279.638-.631.638-.346 0-.626-.287-.626-.638v-4.79c0-.274.176-.514.439-.602.063-.018.131-.031.198-.031.214 0 .397.099.518.273l2.467 3.327V8.279c0-.351.281-.638.631-.638.346 0 .627.287.627.638v4.6zm-5.685 0c0 .351-.281.638-.631.638-.346 0-.627-.287-.627-.638v-4.79c0-.351.281-.638.63-.638.346 0 .628.287.628.638v4.79zm-2.466.638H4.969c-.346 0-.63-.287-.63-.638v-4.79c0-.351.284-.638.63-.638.349 0 .63.287.63.638v4.153h1.759c.348 0 .629.287.629.638 0 .351-.281.637-.629.637M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314' fill='currentColor'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.365 9.863c.349 0 .63.286.631.638 0 .351-.282.638-.63.638H17.61v1.125h1.755c.349 0 .63.287.63.638 0 .351-.281.638-.63.638h-2.386c-.346 0-.627-.287-.627-.638v-4.79c0-.351.281-.638.628-.638h2.386c.349 0 .63.287.63.638s-.281.638-.63.638H17.61v1.125h1.755zm-3.855 3.016c0 .274-.176.515-.439.601-.067.024-.135.034-.202.034-.211 0-.398-.103-.516-.275l-2.443-3.336v3.005c0 .351-.279.638-.631.638-.346 0-.626-.287-.626-.638v-4.79c0-.274.176-.514.439-.602.063-.018.131-.031.198-.031.214 0 .397.099.518.273l2.467 3.327V8.279c0-.351.281-.638.631-.638.346 0 .627.287.627.638v4.6zm-5.685 0c0 .351-.281.638-.631.638-.346 0-.627-.287-.627-.638v-4.79c0-.351.281-.638.63-.638.346 0 .628.287.628.638v4.79zm-2.466.638H4.969c-.346 0-.63-.287-.63-.638v-4.79c0-.351.284-.638.63-.638.349 0 .63.287.63.638v4.153h1.759c.348 0 .629.287.629.638 0 .351-.281.637-.629.637M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314' fill='currentColor'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---------- アクセシビリティ ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- iOS safe-area ---------- */
@supports (padding: max(0px)) {
  .cta-fixed { bottom: max(16px, env(safe-area-inset-bottom)); }
  .lp { padding-bottom: max(110px, calc(80px + env(safe-area-inset-bottom))); }
}
