@charset "UTF-8";
/* ============================================================================
   株式会社荒畑園  トップページ index-10.html 専用の上書き  ─ 2026.09.22
   ----------------------------------------------------------------------------
   top-new.css → top-3 … → top-9.css のあとに読み込みます。
   index-9.html は変更していないため、並べて見比べられます。
   ----------------------------------------------------------------------------
   この版での変更
     01 オープニングのロゴを、さらに5倍ゆっくり消えるように
     02 「私たちについて」を、工程ごとに働く人の写真6点に
   ========================================================================== */

/* -------------------------------------------- 01 オープニングのロゴの消え方 */
/* 長さはこの2つの数値だけで決まります。short くしたい場合はここを書き換えてください。
   （index-9 は 2.1秒／1.7秒でした。その5倍にしています） */
:root {
  --splash-out: 10.5s;        /* 白い面が消えきるまで */
  --splash-logo-out: 8.5s;    /* ロゴが消えきるまで */
}
.t-splash {
  transition:
    opacity var(--splash-out) cubic-bezier(.45, 0, .3, 1),
    visibility 0s linear var(--splash-out);
}
.t-splash__logo {
  transform: scale(1.06);
  transition:
    opacity var(--splash-logo-out) cubic-bezier(.45, 0, .3, 1),
    transform var(--splash-out) cubic-bezier(.45, 0, .3, 1);
}
@media (prefers-reduced-motion: reduce) {
  /* 動きを抑える設定の端末では、長く残さず1.5秒で消します */
  .t-splash { transition: opacity 1.5s linear, visibility 0s linear 1.5s; }
  .t-splash__logo { transform: none; transition: opacity 1.2s linear; }
}

/* -------------------------------------------- 02 工程ごとに働く人 */
/* index-9 の1枚の帯（.t-intro__fig）に代えて、畑から発送までの6点を並べます。
   「育てる人と、届ける人が、同じであること。」を、写真の並びで見せる意図です */
.t-people { grid-column: 1 / -1; margin-top: clamp(56px, 7vw, 100px); }

.t-people__lead {
  margin: 0 0 clamp(28px, 3.4vw, 46px);
  font-family: var(--ff-mincho); font-weight: 600;
  font-size: clamp(16px, 1.5vw, 21px); line-height: 2; letter-spacing: .08em;
  color: var(--g800);
}

.t-people__list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 36px) clamp(16px, 2vw, 28px);
  margin: 0; padding: 0; list-style: none;
}
.t-person { margin: 0; }
/* 上下にわずかな段差をつけて、並びが単調にならないようにします */
.t-person:nth-child(2) { margin-top: clamp(16px, 2.4vw, 36px); }
.t-person:nth-child(4) { margin-top: clamp(16px, 2.4vw, 36px); }
.t-person:nth-child(6) { margin-top: clamp(16px, 2.4vw, 36px); }

.t-person__fig {
  margin: 0; overflow: hidden; border-radius: 16px; background: var(--paper-2);
}
.t-person__fig img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4 / 3; object-fit: cover;
}
.t-person__cap {
  margin: 12px 0 0;
  font-weight: 700; font-size: 13.5px; line-height: 1.6;
}
.t-person__cap span {
  display: block; margin-bottom: 5px;
  font-family: var(--ff-en); font-weight: 700; font-size: 10.5px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--g600);
}

@media (max-width: 767px) {
  .t-people__list { grid-template-columns: repeat(2, 1fr); }
  .t-person:nth-child(n) { margin-top: 0; }
  .t-person:nth-child(2n) { margin-top: clamp(14px, 4vw, 28px); }
  .t-person__cap { font-size: 12.5px; }
}
