@charset "UTF-8";
/* =========================================
   about.scss — About ページ専用スタイル
   共通ヘッダー/フッター/section-header は style.css 側で定義済み
   背景リズム：offwhite → 白 → 薄blue → offwhite → 白 → 薄mint → 濃紺
   ========================================= */
/* ─────────────── HERO（オフホワイト＋ゴーストタイポ）─────────────── */
.about-hero {
  position: relative;
  overflow: hidden;
  min-height: min(52vw, 560px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(90px, 12vw, 140px) clamp(24px, 6vw, 48px) clamp(50px, 7vw, 80px);
  background: var(--offwhite);
}
@media (max-width: 899px) {
  .about-hero {
    min-height: min(100vw, 520px);
  }
}

.about-hero__ghost {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: clamp(70px, 9vw, 110px);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(96px, 18vw, 176px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(6, 30, 41, 0.05);
  pointer-events: none;
  white-space: nowrap;
  margin: 0;
}

.about-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: url("../images/about-hero-bg-pc.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, color-stop(40%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(to left, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
          mask-image: -webkit-gradient(linear, right top, left top, color-stop(40%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
          mask-image: linear-gradient(to left, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 899px) {
  .about-hero__bg {
    width: min(72%, 320px);
    aspect-ratio: 4/5;
    height: auto;
    top: auto;
    bottom: 0;
    opacity: 0.5;
    background-image: url("../images/about-hero-bg-sp.webp");
    -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(to left, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
            mask-image: -webkit-gradient(linear, right top, left top, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
            mask-image: linear-gradient(to left, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  }
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.about-hero__en {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(48px, 8vw, 72px);
  letter-spacing: 0.06em;
  color: var(--prada-navy);
  margin: 0 0 18px;
  line-height: 1;
}

.about-hero__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.5vw, 15px); /* 13.6px→14px 和文の下限 */
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--prada-mint-text);
  margin: 0 0 26px;
}

.about-hero__tagline {
  font-family: "Klee One", serif;
  font-weight: 600;
  font-size: clamp(19px, 2.2vw, 23px);
  color: var(--prada-navy);
  margin: 0;
}

/* ▼ スマホ専用の改行。
   SP幅では1行17〜20字しか入らず、カタカナ語の途中で割れてしまうため、
   意味の切れ目で改行する。PC(900px以上)では無効化して1行に戻す。 */
.br-sp {
  display: inline;
}
@media (min-width: 600px) {
  .br-sp {
    display: none;
  }
}

/* ─────────────── section-header の about 用調整 ─────────────── */
@media (min-width: 900px) {
  .section-header--left {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
    margin-left: 0;
    /* 中央揃えのセクションは見出しの下に余白が要るが、ここは左揃えで
       本文が直下に続くため64pxは空きすぎる。詰めて本文と一続きに見せる */
    margin-bottom: clamp(24px, 3vw, 32px);
  }
  .section-header--left .heading-block {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  .section-header--left .section-ja {
    margin-left: 4px;
  }
  .section-header--left .desc-divider {
    margin-left: 4px;
    margin-right: auto;
  }
}

.section-header--dark .section-en {
  color: var(--offwhite);
}
.section-header--dark {
  /* section-ja はミントのままでダーク背景に映える */
}

/* ─────────────── PROFILE（主役・白背景・写真右ブリード）─────────────── */
.about-profile {
  background: #ffffff;
  padding: clamp(70px, 10vw, 110px) 0 clamp(70px, 10vw, 120px);
  overflow: hidden;
}

.about-profile__grid {
  display: grid;
  grid-template-columns: 1fr 38%;
  gap: clamp(32px, 5vw, 56px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 48px) 0 0;
}
@media (max-width: 899px) {
  .about-profile__grid {
    grid-template-columns: 1fr;
    padding: 0 clamp(24px, 6vw, 48px);
  }
}

.about-profile__left {
  padding-left: clamp(24px, 6vw, 48px);
}
@media (max-width: 899px) {
  .about-profile__left {
    padding-left: 0;
  }
}

.about-profile__text {
  /* 本文はゴシック（明朝は見出し・キャッチに限定）*/
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 1.6vw, 17px); /* 14.4px→16px TOPの本文と統一 */
  line-height: var(--lh-body);
  color: var(--prada-navy);
  letter-spacing: 0.05em; /* TOPの本文と同条件に */
  margin: 0;
  text-align: left;
}

.about-profile__photo {
  position: relative;
}
@media (max-width: 899px) {
  .about-profile__photo {
    max-width: 320px;
    margin: 0 auto;
  }
}

.about-profile__photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 560px;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 24px 60px rgba(6, 30, 41, 0.18);
          box-shadow: 0 24px 60px rgba(6, 30, 41, 0.18);
}
.about-profile__photo-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.about-profile__photo-frame img:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.about-profile__sign {
  position: absolute;
  left: -0.6em;
  bottom: 24px;
  font-family: "Pinyon Script", cursive;
  font-size: clamp(38px, 5vw, 51px);
  color: rgba(30, 84, 108, 0.45);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin: 0;
  pointer-events: none;
}
@media (max-width: 899px) {
  .about-profile__sign {
    left: auto;
    right: 4px;
    bottom: -10px;
  }
}

/* PROFILE メタ情報（趣味・MBTI） */
.about-profile__meta {
  margin: 28px 0 0;
  border-top: 1px solid rgba(6, 30, 41, 0.14);
  padding-top: 20px;
}

.about-profile__meta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 16px;
  padding: 6px 0;
}
.about-profile__meta-row dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.3vw, 15px); /* 12.5px→14px */
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--prada-mint-text);
  width: 52px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.about-profile__meta-row dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 1.4vw, 16px); /* 13.1px→15px */
  line-height: var(--lh-body);
  color: var(--prada-navy);
  margin: 0;
  /* 資格など複数行になる項目：年月を脇役にして資格名を主役にする */
}
.about-profile__meta-row dd .about-profile__meta-item {
  display: block;
}
.about-profile__meta-row dd .about-profile__meta-item:not(:last-child) {
  margin-bottom: 10px;
}
.about-profile__meta-row dd .about-profile__meta-item {
  /* SP：年月を単独行にして、資格名がdd幅をフルに使えるようにする */
}
@media (max-width: 899px) {
  .about-profile__meta-row dd .about-profile__meta-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
  }
}
.about-profile__meta-row dd .about-profile__meta-title {
  display: inline;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.about-profile__meta-row dd .about-profile__meta-year {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--prada-mint-text);
  margin-right: 8px;
}

/* ─────────────── 呼吸ゾーン ─────────────── */
/* ▼ 呼吸ゾーン(.about-breath)は削除。
   EXPERIENCE の背景 rgba(30,84,108,0.06) と offwhite が
   ほぼ同じ明度で、区切りとして機能していなかった。
   EXPERIENCE(薄い青グレー) → STRENGTH(白) の色差で十分区切れる。 */
/* ─────────────── STRENGTH（白背景・罫線グリッド）─────────────── */
/* もとEXPERIENCEセクションの背景色をセクション全体に。
   カード(.about-strength__cell)は白のままなので、地の色と分かれて
   「カード」として立って見える */
.about-strength {
  background: rgba(30, 84, 108, 0.06);
  padding: clamp(60px, 8vw, 100px) 0 clamp(50px, 7vw, 80px);
}

.about-strength__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 48px);
}

/* ▼ 図版とセクション見出しを横並びにする。
   PROFILEが「テキスト左・写真右」なので、こちらは「図版左・見出し右」。
   カード3枚は「3つのちから」が一目で並列と分かるよう、下に3列のまま置く */
.about-strength__intro {
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: clamp(28px, 4vw, 48px);
  /* 図版が縦に大きいので、中央揃えだと見出しが宙に浮く。上揃えにする */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: clamp(40px, 6vw, 64px);
  /* .section-header は本来ページ幅いっぱいの中央寄せ。
     右カラムに入れるので、その前提の余白と最大幅を打ち消す */
}
.about-strength__intro .section-header {
  margin: 0;
  max-width: none;
  padding-bottom: 0;
}
@media (max-width: 899px) {
  .about-strength__intro {
    grid-template-columns: 1fr;
    /* SPは見出しが先。図版は根拠なので後ろに回す */
  }
  .about-strength__intro .about-strength__figure {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .about-strength__intro .section-header {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: clamp(28px, 5vw, 40px);
  }
}

.about-strength__figure {
  margin: 0;
}
@media (max-width: 899px) {
  .about-strength__figure {
    max-width: 420px;
    margin: 0 auto;
  }
}
.about-strength__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  -webkit-box-shadow: 0 12px 32px rgba(6, 30, 41, 0.08);
          box-shadow: 0 12px 32px rgba(6, 30, 41, 0.08);
}

.about-strength__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(6, 30, 41, 0.14);
  border: 1px solid rgba(6, 30, 41, 0.14);
}
@media (max-width: 899px) {
  .about-strength__grid {
    grid-template-columns: 1fr;
  }
}

.about-strength__cell {
  background: #ffffff;
  padding: clamp(24px, 4vw, 36px) clamp(18px, 3vw, 28px);
  text-align: center;
  /* SPは1行20字しか入らず、中央揃えだと最後の行に1〜2字だけ残って崩れる。
     アイコンと見出しは中央のまま、説明文だけ左揃えにする */
}
@media (max-width: 899px) {
  .about-strength__cell .about-strength__desc {
    text-align: left;
  }
}

/* ▼ アイコンはSVGを「マスク」として使い、色はCSS側で決める。
   SVGファイル内の色は一切参照されないので、素材を差し替えても色ズレが起きない。
   色を変えたいときは下の background-color の1行だけ直せばよい。 */
.about-strength__icon {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto 16px;
  background-color: var(--prada-blue); /* ← ここ1行で3つとも変わる */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.about-strength__icon--hearing {
  -webkit-mask-image: url("../images/icon-hearing.svg");
  mask-image: url("../images/icon-hearing.svg");
}

.about-strength__icon--attract {
  -webkit-mask-image: url("../images/icon-attract.svg");
  mask-image: url("../images/icon-attract.svg");
}

.about-strength__icon--support {
  -webkit-mask-image: url("../images/icon-support.svg");
  mask-image: url("../images/icon-support.svg");
}

.about-strength__name {
  /* 中身が和文なので Playfair は効かない（明朝にフォールバックする）。
     カード内はゴシックのルール通り Noto Sans JP を指定する。 */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  /* ▼ TOPの .works-title / .for-you__card-title と同じ規格に統一 2026-08-02 */
  font-size: clamp(18px, 1.9vw, 20px);
  line-height: var(--lh-title);
  color: var(--prada-navy);
  margin: 0 0 16px;
}

.about-strength__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 1.5vw, 16px); /* 13.6px→15px */
  line-height: var(--lh-body);
  color: var(--prada-blue);
  margin: 0;
}

/* ─────────────── SKILLS + HOBBY（薄mint・巨大タイポ）─────────────── */
.about-skills {
  position: relative;
  /* STRENGTHがグレーになったので白に。白→色→白→濃紺の交互を保つ */
  background: #ffffff;
  padding: clamp(60px, 8vw, 100px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}

.about-skills__ghost {
  position: absolute;
  right: -0.2em;
  bottom: -0.18em;
  font-family: "Pinyon Script", cursive;
  font-size: clamp(112px, 18vw, 160px);
  line-height: 1;
  /* 背景が白になり0.14では濃く出るため薄める（旧: 薄ミント地で0.14） */
  color: rgba(95, 148, 152, 0.1);
  pointer-events: none;
  margin: 0;
}

.about-skills__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 48px);
}

.about-skills__content {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 899px) {
  .about-skills__content {
    grid-template-columns: 1fr;
  }
}

.about-skills__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
@media (max-width: 899px) {
  .about-skills__visual {
    max-width: 420px;
    margin: 0 auto;
  }
}

.about-skills__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: clamp(14px, 2.5vw, 24px);
  padding: clamp(14px, 2.5vw, 20px) 0;
  border-bottom: 1px solid rgba(6, 30, 41, 0.16);
}

.about-skills__name {
  font-family: "Playfair Display", serif;
  font-weight: 700; /* 他のPlayfair見出しと揃える */
  font-size: clamp(24px, 3.2vw, 32px);
  color: var(--prada-navy);
  width: clamp(180px, 30vw, 300px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  /* ▼ 1.1は詰まりすぎ。TOPの見出しと同じ変数へ 2026-08-02 */
  line-height: var(--lh-title);
}
@media (max-width: 599px) {
  .about-skills__name {
    width: auto;
  }
}

.about-skills__desc {
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media (max-width: 599px) {
  .about-skills__desc {
    width: 100%;
  }
}

.about-skills__lead {
  font-size: clamp(15px, 1.5vw, 16px);
  font-weight: 600;
  color: var(--prada-navy);
}

.about-skills__note {
  font-size: clamp(16px, 1.5vw, 17px);
  line-height: var(--lh-body);
  color: var(--prada-blue);
}

@media (max-width: 599px) {
  .about-skills__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 4px;
  }
}
/* ─────────────── BRAND CONCEPT（濃紺ダーク・数式）─────────────── */
.about-concept {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--prada-blue)), color-stop(45%, #123c50), to(#0d3547));
  background: linear-gradient(180deg, var(--prada-blue) 0%, #123c50 45%, #0d3547 100%);
  padding: clamp(56px, 8vw, 84px) 0 clamp(56px, 8vw, 84px);
  text-align: center;
  overflow: hidden;
}

.about-concept__ghost {
  position: absolute;
  left: 50%;
  top: 30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(56px, 10vw, 96px);
  color: rgba(243, 244, 244, 0.04);
  white-space: nowrap;
  pointer-events: none;
  margin: 0;
}

.about-concept__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 48px);
}

/* 数式：Whit + (e) = White */
.about-concept__catch {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(19px, 2.2vw, 23px);
  letter-spacing: 0.08em;
  color: var(--offwhite);
  margin: 0 0 clamp(28px, 4vw, 40px);
}

/* ▼ 球体は説明の図ではなく装飾。記号と下の言葉は廃止 2026-08-02
   White（大）／(e)（小）／Whit（中）の3つ。(e)を真ん中に小さく置くことで、
   eの有無で生まれる2つの言葉を繋いでいることを図でも表す
   SP幅でも3つの合計が収まるよう、最小値を抑えて縦積みは避けている
   3つとも白（sphere--white）。濃紺背景でのコントラストが14:1以上あり、
   ブランドカラーのグラデーションは上端が濃紺寄りで背景に沈むため */
.about-concept__formula {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* SPでは間隔を詰めて3つが横に収まるようにする */
  gap: clamp(12px, 3.5vw, 40px);
  margin-bottom: clamp(30px, 5vw, 44px);
}

.about-concept__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-concept__text {
  /* 本文はゴシック。キャッチ(.about-concept__catch)は明朝のまま */
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 1.6vw, 17px); /* 14.4px→16px */
  line-height: var(--lh-body);
  color: var(--offwhite);
  max-width: 580px;
  /* 下マージンはLycca球体との間隔用だった。球体削除で本文が最後の要素に
     なったため、残すとセクション下の余白が上より広くなる */
  margin: 0 auto;
}

.about-concept__em {
  /* 本文(#f3f4f4)は10.7:1。強調が6.4:1だと本文より暗く沈むため明るくする */
  color: #c3dbdb; /* 8.1:1 */
  font-weight: 700;
}

/* ─────────────── 球体 ─────────────── */
/* ▼ ゆっくり上下に浮かぶ。振れ幅は小さめにして落ち着かせる 2026-08-02 */
@-webkit-keyframes about-sphere-float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
}
@keyframes about-sphere-float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
}
/* 動きを減らす設定にしている人には動かさない */
@media (prefers-reduced-motion: reduce) {
  .sphere {
    -webkit-animation: none;
            animation: none;
  }
}
@-webkit-keyframes about-sphere-shimmer {
  0% {
    -webkit-transform: translateX(-160%) skewX(-20deg);
            transform: translateX(-160%) skewX(-20deg);
  }
  100% {
    -webkit-transform: translateX(210%) skewX(-20deg);
            transform: translateX(210%) skewX(-20deg);
  }
}
@keyframes about-sphere-shimmer {
  0% {
    -webkit-transform: translateX(-160%) skewX(-20deg);
            transform: translateX(-160%) skewX(-20deg);
  }
  100% {
    -webkit-transform: translateX(210%) skewX(-20deg);
            transform: translateX(210%) skewX(-20deg);
  }
}
.sphere {
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.15) 22%, transparent 40%), linear-gradient(150deg, #0d3547 0%, var(--prada-blue) 45%, var(--prada-mint) 80%, #c3dbdb 100%);
  -webkit-box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 3px 3px 10px rgba(255, 255, 255, 0.3);
          box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 3px 3px 10px rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
  /* ▼ ホバーで拡大するのをやめ、常にゆっくり上下に浮かせる 2026-08-02
     3つとも同じ動きだと機械的に見えるので、サイズごとに周期をずらす
     （周期は .sphere--lg / --md / --sm 側で個別に指定） */
  -webkit-animation: about-sphere-float 7s ease-in-out infinite;
          animation: about-sphere-float 7s ease-in-out infinite;
}
.sphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
  -webkit-animation: about-sphere-shimmer 4s infinite;
          animation: about-sphere-shimmer 4s infinite;
}

/* 答えの White 球体：真っ白なパール */
.sphere--white {
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.4) 26%, transparent 50%), linear-gradient(150deg, #b8c4d4 0%, #e4eaf4 30%, #f4f6fa 50%, #ccd4e4 70%, #7888a0 100%);
  -webkit-box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), inset 3px 3px 10px rgba(255, 255, 255, 0.8);
          box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), inset 3px 3px 10px rgba(255, 255, 255, 0.8);
}
.sphere--white .sphere-txt {
  color: var(--prada-navy);
}

.sphere-txt {
  /* ▼ Cormorant Garamondは300/400/500しか読み込んでおらず、
     500は禁止ウェイトのため400より太くできなかった。
     600・700を持つPlayfair Displayへ変更（英字専用というルールにも合う）。
     Playfairのイタリックは500しかないため font-style は normal にする 2026-08-02 */
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 600;
  color: var(--offwhite);
  position: relative;
  z-index: 1;
}

.sphere--lg {
  width: clamp(100px, 15vw, 172px);
  height: clamp(100px, 15vw, 172px);
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}
.sphere--lg .sphere-txt {
  font-size: clamp(19px, 3vw, 31px);
}

.sphere--md {
  width: clamp(88px, 13vw, 148px);
  height: clamp(88px, 13vw, 148px);
  /* 周期をずらして3つが同時に上下しないようにする */
  -webkit-animation-duration: 5.5s;
          animation-duration: 5.5s;
  -webkit-animation-delay: -1.8s;
          animation-delay: -1.8s;
}
.sphere--md .sphere-txt {
  font-size: clamp(17px, 2.6vw, 27px);
}

.sphere--sm {
  width: clamp(52px, 7.5vw, 86px);
  height: clamp(52px, 7.5vw, 86px);
  -webkit-animation-duration: 6.5s;
          animation-duration: 6.5s;
  -webkit-animation-delay: -3.4s;
          animation-delay: -3.4s;
}
.sphere--sm .sphere-txt {
  font-size: clamp(15px, 1.7vw, 19px);
}

/* ▼ ダーク背景での視認性調整。
   .section-ja は style.scss 側で --prada-mint-text(#457074) になるため、
   濃紺の上では 1.5:1 まで落ちる。この上書きは絶対に消さないこと。 */
.section-header--dark .section-ja {
  color: #b0d2d4;
}

@media screen and (max-width: 899px) {
  /* 見出し→本文 12→16px（TOPの .top-plan__name と同じ） */
  .about-strength__name {
    margin-bottom: 16px;
  }
}