@charset "utf-8";
/*
 * ======================================
 * AIRA-COR サイト固有CSS
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * -- 共通パーツ
 * .aira-fade              - ページ全体のフェードイン（元データ animation:acFade .7s ease both）
 * .aira-container         - max-width:1400px の共通コンテナ（左右paddingなし／SPのみ24px）
 * .aira-en                - 英字見出し（Cormorant 500 / lh1.05 / ls.04em / #8C7A63）+ サイズmodifier
 * .aira-ja                - 日本語見出し（clamp(22,2vw,30) / 400 / ls.1em / lh1.7）
 * .aira-lead              - 本文（16px / lh2.2 / ls.08em）+ --lg(18px) / --xl(20px)
 * .aira-link-en           - 下線リンク（Cormorant 600 / 14px / ls.22em / border-bottom 1px）
 * .aira-photo             - 写真枠（bg:#EDEAE3 / overflow:hidden）+ --zoom(cursor:zoom-in)
 *
 * -- ヘッダー / SPナビ
 * .aira-header            - MV/ヒーローに重なる透過ヘッダー → .is-fixed で元データの半透明blur帯へ
 * .aira-header__inner     - width:96% / padding:22px 0 / gap:40px
 * .aira-header__nav       - gap:34px の英字ナビ
 * .aira-header__store     - Online Store（白地＋1px枠囲み 500／下線は現在ページと誤読されるため不使用）
 * .aira-nav-toggle / .aira-sp-nav - SPナビの配色をサイトトーンへ
 *
 * -- フッター
 * .aira-footer            - clip-path:inset(0) + 背景画像 fixed の暗部フッター
 * .aira-footer-cta        - Online Store CTA（padding:150px 0 130px / gap:34px）
 * .aira-footer__main      - grid minmax(200px,1fr) auto / gap:40px 60px
 *
 * -- TOP
 * .aira-mv                - 100vh / min-height:700px の額装型メインビュー
 * .aira-colors            - Seven Colors マーキー（gap:22px / 56s linear）
 * .aira-feature           - 40%/60% グリッドの導線セクション
 * .aira-cta               - 背景画像 fixed の Collection CTA
 *
 * -- 下層
 * .aira-hero              - 52vh / min-height:400px のページヒーロー
 * .aira-stagger           - 12カラム段違いレイアウト（Concept）
 * .aira-light             - 光の当て方セクション（#EFECE5 帯・2カラム段違い）
 * .aira-color-sec         - Collection 各色ブロック（25%/70% + sticky色名）
 * .aira-dl                - 会社概要 dl（200px 1fr / padding:18px 0）
 * .aira-form-cms          - CMSお問い合わせフォーム(cms_id=7/pattern1)の見た目上書き
 * .aira-privacy           - 個人情報の取り扱いについて（スクロール枠 / 13px / lh2.2）
 *
 * ======================================
 * 共通SCSSに不足していたもの（5分類）
 * ======================================
 *
 * ・値の粒度不足
 *   - コンテナ幅 1400px + 左右 padding 40px の組み合わせ（.container は padding を持たない）
 *   - 余白 18 / 22 / 26 / 34 / 44 / 56 / 64 / 110 / 130 / 150 / 170 / 260px が utility に無い
 *   - font-size の clamp() 指定（.fz-* は固定値のみ）
 *   - line-height 1.05 / 2.1 / 2.2 / 2.4、letter-spacing 0.04 / 0.06 / 0.12 / 0.16 / 0.18 / 0.22 / 0.24em
 * ・指定方向不足
 *   - grid-template-columns の非等分指定（40%/60%・25%/70%・200px/1fr・minmax(200px,1fr) auto）
 *   - grid-column / grid-row による段違い配置（Concept の 1/7・8/13・2/12）
 * ・状態不足
 *   - 写真カードのベール（rgba 面）をホバーでスライドさせる状態が無い
 * ・構造不足
 *   - 背景画像を position:fixed + clip-path:inset(0) で固定表示する「窓」構造
 *   - 額装型メインビュー（ぼかし背景 + 中央フレーム + 外周コピー）
 *   - sticky なラベル列を持つ 2カラム（Collection）
 * ・装飾パターン不足
 *   - 下線1本のみの英字リンク（.btn 系はすべて枠・塗り前提）
 *   - マスク付き無限マーキー（-webkit-mask-image のフェードアウト）
 *
 */

/* ==========================================================================
   0. Tokens
   ========================================================================== */
:root {
  --aira-accent: #8C7A63;
  --aira-ink: #3A3A38;
  --aira-bg: #F5F3EE;
  --aira-section: #EFECE5;
  --aira-photo: #EDEAE3;
  --aira-dark: #24231F;
  --aira-font-en: "Cormorant Garamond", "Times New Roman", serif;
}

/* ==========================================================================
   1. Base
   ========================================================================== */
body {
  overflow-x: clip;
}

a {
  color: inherit;
}

a:hover {
  opacity: 0.7;
}

.aira-fade {
  animation: acFade 0.7s ease both;
}

/* ==========================================================================
   2. 共通パーツ
   ========================================================================== */
.aira-container {
  max-width: 1400px;
  margin: 0 auto;
}

.aira-container--edge {
  width: 96%;
  margin: 0 auto;
}

/* -- 英字見出し（既定：clamp(24px,2.6vw,44px)） */
.aira-en {
  margin: 0 0 18px;
  font-family: var(--aira-font-en);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--aira-accent);
}
.aira-en--xl {
  font-size: clamp(48px, 7vw, 124px);
  line-height: 1.02;
  text-transform: uppercase;
}
.aira-en--lg {
  font-size: clamp(30px, 3.4vw, 58px);
}
.aira-en--sm {
  font-size: clamp(20px, 2vw, 32px);
}
.aira-en--xs {
  margin: 0 0 16px;
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.2;
  letter-spacing: 0.18em;
}
.aira-en--white {
  color: #ffffff;
}

/* -- 日本語見出し */
.aira-ja {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.aira-ja--wide {
  font-size: 30px;
  letter-spacing: 0.12em;
}
.aira-ja--sm {
  font-size: clamp(20px, 1.8vw, 26px);
}
.aira-ja--md {
  font-size: 22px;
  line-height: 1.8;
}

/* -- 本文 */
.aira-lead {
  margin: 0;
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  text-wrap: pretty;
}
.aira-lead--sm {
  font-size: 15px;
}
.aira-lead--md {
  font-size: 18px;
}
.aira-lead--lg {
  font-size: 18px;
  line-height: 2.1;
}
.aira-lead--xl {
  font-size: 20px;
  letter-spacing: 0.1em;
}
.aira-lead--gap {
  margin: 0 0 22px;
}

/* -- 下線リンク（元データ共通のボタン表現） */
.aira-link-en {
  display: inline-block;
  border-bottom: 1px solid rgba(58, 58, 56, 0.45);
  padding: 0 2px 7px;
  font-family: var(--aira-font-en);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aira-ink);
  transition: opacity 0.3s ease;
}
.aira-link-en--white {
  border-bottom-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
}

/* -- 写真枠 */
.aira-photo {
  background: var(--aira-photo);
  overflow: hidden;
}
.aira-photo--zoom {
  cursor: zoom-in;
}
.aira-photo > img,
.aira-photo > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aira-photo > a {
  display: block;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   3. Header
   ========================================================================== */
/* --------------------------------------------------------------------------
   ヘッダーは MV／ページヒーローに重ねる（header-sticky --transparent）。
   初期     … absolute で写真に重なる透過状態・白文字・ロゴ白反転
   .is-fixed … ヒーローを抜けたら fixed + 元データの見た目
               （rgba(245,243,238,0.94) / blur(6px) / 下罫線 rgba(58,58,56,0.12)）
   .is-fixed の付与は js/common.js
   -------------------------------------------------------------------------- */
.aira-header {
  z-index: 40;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}
.aira-header .aira-header__nav-en {
  color: #ffffff;
}
/* 白背景を敷いたので、透過ヘッダー（MV／ヒーロー上）でも文字・枠はインク色にする。
   ここを白のままにすると白地に白文字でボタンが消える。 */
.aira-header .aira-header__store {
  border-color: rgba(58, 58, 56, 0.45);
  color: var(--aira-ink);
}
.aira-header .header__nav-item--current .aira-header__nav-en {
  color: rgba(255, 255, 255, 0.62);
}

.aira-header.is-fixed {
  background: rgba(245, 243, 238, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom-color: rgba(58, 58, 56, 0.12);
}
.aira-header.is-fixed .aira-header__inner {
  padding: 22px 0;
}
.aira-header.is-fixed .aira-header__nav-en {
  color: var(--aira-ink);
}
.aira-header.is-fixed .aira-header__store {
  border-color: rgba(58, 58, 56, 0.45);
}
.aira-header.is-fixed .header__nav-item--current .aira-header__nav-en {
  color: var(--aira-accent);
}

.aira-header__inner {
  width: 96%;
  max-width: none;
  height: auto;
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.aira-header__logo {
  flex: none;
  display: block;
}
.aira-header__logo img {
  height: 58px;
  width: auto;
}

.aira-header__nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: 0;
  margin-right: 0;
}

.aira-header__nav-item a {
  display: block;
  padding: 0;
}
.aira-header__nav-item a::after {
  display: none;
}

.aira-header__nav-en {
  font-family: var(--aira-font-en);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aira-ink);
}

/* 現在ページ表示（＝色の変化）と誤読されるため下線は使わず、1pxの枠で囲む。
   角丸なしはサイト全体の直角方針に合わせたもの。 */
.aira-header__store {
  display: inline-block;
  border: 1px solid rgba(58, 58, 56, 0.45);
  /* letter-spacing の末尾アキ（0.18em）を右paddingから引いて文字を光学的に中央へ */
  padding: 12px calc(14px - 0.18em) 13px 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  background: #fff;
}

/* ==========================================================================
   4. SPナビ / ハンバーガー
   ========================================================================== */
.aira-nav-toggle {
  background: rgba(245, 243, 238, 0.9);
  border: 1px solid rgba(58, 58, 56, 0.12);
  border-radius: 0;
  top: 14px;
  right: 14px;
}
.aira-nav-toggle .nav-toggle__line {
  background: var(--aira-ink);
}

.aira-sp-nav {
  background: rgba(36, 35, 31, 0.97);
}
.aira-sp-nav .sp-nav__link {
  font-family: var(--aira-font-en);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.14em;
}
/* 日本語表記は置かず英字のみ。補助表記だった頃の縮小・薄字指定を戻す */
.aira-sp-nav .sp-nav__en {
  font-family: var(--aira-font-en);
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 1;
  padding-left: 0;
}

/* ==========================================================================
   5. Footer
   ========================================================================== */
.aira-footer {
  position: relative;
  margin-top: 170px;
  overflow: hidden;
  clip-path: inset(0);
  background: var(--aira-dark);
  color: #ffffff;
}

.aira-footer__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

.aira-footer__veil {
  position: absolute;
  inset: 0;
  background: rgba(24, 23, 21, 0.3);
  z-index: 1;
}

.aira-footer__body {
  position: relative;
  z-index: 2;
}

.aira-footer-cta {
  max-width: 1400px;
  margin: 0 auto;
  padding: 150px 0 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 34px;
}

.aira-footer-cta__en {
  margin: 0;
  font-family: var(--aira-font-en);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.aira-footer-cta__lead {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}

.aira-footer-cta__link {
  margin-top: 10px;
}

.aira-footer__rule-wrap {
  max-width: 1400px;
  margin: 0 auto;
}
.aira-footer__rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
}

.aira-footer__main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 0 40px;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto;
  gap: 40px 60px;
  align-items: center;
}

.aira-footer__logo img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
}

.aira-footer__sns {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.aira-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 32px;
  font-family: var(--aira-font-en);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.aira-footer__nav a {
  color: #ffffff;
}

.aira-footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 46px;
}

.aira-footer__copyright {
  margin: 0;
  font-family: var(--aira-font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

/* ==========================================================================
   6. TOP — メインビュー
   ========================================================================== */
.aira-mv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #2B2A28;
}

.aira-mv__bg {
  position: absolute;
  inset: -30px;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  object-fit: cover;
  object-position: 50% 55%;
  filter: blur(18px) brightness(0.72);
}

.aira-mv__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 19, 18, 0.42) 0%, rgba(20, 19, 18, 0.16) 38%, rgba(20, 19, 18, 0.46) 100%);
}

.aira-mv__frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aira-mv__frame-inner {
  position: relative;
  height: min(58vh, 740px);
  width: auto;
  max-width: 54vw;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--aira-photo);
  box-shadow: 0 24px 60px rgba(20, 19, 18, 0.28);
}

.aira-mv__slide {
  position: absolute;
  inset: 0;
}

.aira-mv__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.aira-mv__shot--a {
  opacity: 0;
  animation: acMvA 18s ease-in-out infinite;
}
.aira-mv__shot--b {
  opacity: 0;
  animation: acMvB 18s ease-in-out infinite;
}

.aira-mv__word {
  position: absolute;
  left: 50%;
  top: calc(50% - min(58vh, 740px) / 2 - 14px);
  z-index: 3;
  margin: 0;
  font-family: var(--aira-font-en);
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.05;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 28px rgba(20, 19, 18, 0.5);
}

.aira-mv__foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 70px 2.5% 6vh;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.aira-mv__copy {
  color: #ffffff;
}

.aira-mv__lead {
  margin: 0;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(20, 19, 18, 0.5);
}

.aira-mv__catch {
  margin: 20px 0 0;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-shadow: 0 2px 24px rgba(20, 19, 18, 0.55);
}

.aira-mv__scroll {
  flex: none;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--aira-font-en);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

/* 縦組み。ラテン文字は vertical-rl で90度回転して上から下へ読ませる */
.aira-mv__scroll-txt {
  writing-mode: vertical-rl;
  margin-bottom: -0.28em; /* letter-spacing の末尾アキを詰める */
}

.aira-mv__scroll-line {
  display: block;
  width: 1px;
  height: 96px;
  background: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   7. TOP — Seven Colors（マーキー）
   ========================================================================== */
.aira-colors {
  padding: 150px 0 40px;
}

.aira-colors__head {
  padding: 0 max(2.5vw, 20px);
  margin: 0 0 56px;
  text-align: center;
}
.aira-colors__head .aira-lead--lg {
  margin: 34px 0 0;
}

.aira-colors__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 92%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 92%, rgba(0, 0, 0, 0) 100%);
}

.aira-colors__track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: acMarquee 56s linear infinite;
}

.aira-color-card {
  position: relative;
  flex: none;
  width: clamp(320px, 32vw, 560px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
  background: var(--aira-photo);
}
.aira-color-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aira-color-card__veil {
  position: absolute;
  inset: 0;
  background: rgba(35, 34, 32, 0.46);
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.aira-color-card:hover .aira-color-card__veil {
  transform: translateY(100%);
}
.aira-color-card:hover {
  opacity: 1;
}
.aira-color-card__label {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  text-shadow: 0 1px 14px rgba(20, 19, 18, 0.4);
}
.aira-color-card__en {
  margin: 0;
  font-family: var(--aira-font-en);
  font-size: 22px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.aira-color-card__ja {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.24em;
}

/* ==========================================================================
   8. TOP — 各ページへの導線
   ========================================================================== */
.aira-feature {
  padding: 120px 0 0;
}

.aira-feature__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 0;
}
.aira-feature__inner--img-left {
  grid-template-columns: 60% 40%;
}

.aira-feature__body {
  padding: 0 64px 0 max(2.5vw, 20px);
}
.aira-feature__inner--img-left .aira-feature__body {
  order: 2;
  padding: 0 max(2.5vw, 20px) 0 64px;
}

.aira-feature__ttl {
  margin: 0 0 26px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.aira-feature__txt {
  margin: 0 0 34px;
}

.aira-feature__img {
  display: block;
}
.aira-feature__inner--img-left .aira-feature__img {
  order: 1;
}
.aira-feature__img .aira-photo {
  aspect-ratio: 16 / 10;
}

/* ==========================================================================
   9. TOP — Collection CTA
   ========================================================================== */
.aira-cta {
  position: relative;
  width: 100%;
  margin-top: 150px;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px max(2.5vw, 20px);
  overflow: hidden;
  clip-path: inset(0);
  background: var(--aira-dark);
}

.aira-cta__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

.aira-cta__veil {
  position: absolute;
  inset: 0;
  background: rgba(24, 23, 21, 0.55);
  z-index: 1;
}

.aira-cta__body {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 860px;
}

.aira-cta__ttl {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.aira-cta__txt {
  margin: 34px 0 44px;
  font-size: 18px;
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.94);
  text-wrap: pretty;
}

/* ==========================================================================
   10. 下層 — ページヒーロー
   ========================================================================== */
.aira-hero {
  position: relative;
  width: 100%;
  height: 52vh;
  min-height: 400px;
  overflow: hidden;
  background: var(--aira-dark);
}

.aira-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
/* トリミング位置はページごとに元データの値を踏襲する */
.aira-hero__bg--62 { object-position: 50% 62%; }
.aira-hero__bg--68 { object-position: 50% 68%; }
.aira-hero__bg--74 { object-position: 50% 74%; }
.aira-hero__bg--78 { object-position: 50% 78%; }

.aira-hero__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 19, 18, 0.5) 0%, rgba(20, 19, 18, 0.34) 42%, rgba(20, 19, 18, 0.56) 100%);
}

/* 英字のみのタイトルは下寄せのまま左右中央に置く（下端からの余白は元データの64px） */
.aira-hero__body {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

/* 下層ページのタイトルは英字のみ（日本語見出しは置かない） */
.aira-hero__en {
  margin: 0;
  font-family: var(--aira-font-en);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.04em;
}

/* -- 下層共通の導入ブロック */
.aira-intro {
  max-width: 1400px;
  margin: 0 auto;
  padding: 110px 0;
  text-align: center;
}
.aira-intro--top0 {
  padding: 130px 0 0;
}
.aira-intro--tight {
  padding: 110px 0 70px;
}
.aira-intro--collection {
  padding: 100px 0 0;
}
.aira-intro__ttl {
  margin: 0 0 30px;
}

/* -- 下層共通の締めブロック */
.aira-closing {
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 0;
}

/* ==========================================================================
   11. Concept — 段違いレイアウト
   ========================================================================== */
.aira-stagger {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 0 0;
}

.aira-stagger__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 40px;
}

.aira-stagger__col--a {
  grid-column: 1 / 7;
  grid-row: 1;
  margin-top: 0;
}
.aira-stagger__col--b {
  grid-column: 8 / 13;
  grid-row: 1;
  margin-top: 260px;
}
.aira-stagger__col--c {
  grid-column: 2 / 12;
  grid-row: 2;
  margin-top: 90px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}

.aira-stagger__photo {
  aspect-ratio: 4 / 3;
}

.aira-stagger__en {
  margin: 26px 0 12px;
}

.aira-stagger__ttl {
  margin: 0 0 20px;
}

.aira-stagger__choice-photo {
  height: 480px;
  aspect-ratio: 1129 / 1450;
  background: var(--aira-photo);
  overflow: hidden;
}
.aira-stagger__choice-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.aira-stagger__choice-body .aira-en {
  margin: 0 0 12px;
}

/* ==========================================================================
   12. How to See Stones — 光のセクション
   ========================================================================== */
.aira-light {
  padding: 0 0 110px;
}

.aira-light__band {
  width: 96%;
  margin: 0 auto;
  background: var(--aira-section);
  padding: 110px max(2.5vw, 24px);
}

.aira-light__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.aira-light__col--offset {
  margin-top: 150px;
}

.aira-light__head {
  text-align: center;
  margin-bottom: 44px;
}
.aira-light__head .aira-ja--sm {
  margin: 0 0 24px;
}

.aira-light__stack {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--aira-bg);
  overflow: hidden;
}
.aira-light__stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aira-light__stack .aira-light__shot--cross {
  opacity: 0;
  animation: acCross 12s ease-in-out infinite;
}
.aira-light__stack .aira-light__shot--a {
  opacity: 0;
  animation: acMvA 15s ease-in-out infinite;
}
.aira-light__stack .aira-light__shot--b {
  opacity: 0;
  animation: acMvB 15s ease-in-out infinite;
}

.aira-light__caption {
  margin: 20px 0 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--aira-accent);
}

/* ==========================================================================
   13. Collection — 各色ブロック
   ========================================================================== */
.aira-color-sec {
  max-width: 1400px;
  margin: 0 auto;
  padding: 110px 0px;
  border-bottom: 1px solid rgba(58, 58, 56, 0.12);
  /* sticky ヘッダー（22px + 58px + 22px + 1px = 103px）分のアンカーオフセット */
  scroll-margin-top: 103px;
}

.aira-color-sec__grid {
  display: grid;
  grid-template-columns: 25% 70%;
  gap: 0 5%;
  align-items: start;
}

.aira-color-sec__label {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.aira-color-sec__name {
  margin: 0;
  font-family: var(--aira-font-en);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 400;
  letter-spacing: 0.16em;
}
.aira-color-sec__ja {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--aira-accent);
}

.aira-color-sec__main {
  aspect-ratio: 16 / 9;
}

.aira-color-sec__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  margin-top: 44px;
}
.aira-color-sec__row .aira-lead {
  line-height: 2.4;
}
.aira-color-sec__store {
  justify-self: end;
  letter-spacing: 0.24em;
}

.aira-color-sec__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
  max-width: 640px;
}
.aira-color-sec__thumbs figure {
  margin: 0;
}
.aira-color-sec__thumbs .aira-photo {
  aspect-ratio: 1 / 1;
}
.aira-color-sec__cap {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(58, 58, 56, 0.6);
}

.aira-collection-end {
  border-top: 1px solid rgba(58, 58, 56, 0.12);
}
.aira-collection-end__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 110px 0 140px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.aira-collection-end__inner .aira-link-en {
  flex: none;
}

/* ==========================================================================
   14. Display — 写真グリッド
   ========================================================================== */
.aira-display-grid {
  max-width: 1400px;
  margin: 0 auto;
}
.aira-display-grid__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.aira-display-grid .aira-photo {
  aspect-ratio: 3 / 2;
}

/* ==========================================================================
   15. About — 会社概要 / フォーム
   ========================================================================== */
.aira-company {
  background: var(--aira-section);
  border-top: 1px solid rgba(58, 58, 56, 0.1);
  border-bottom: 1px solid rgba(58, 58, 56, 0.1);
}
.aira-company__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 0;
}
.aira-company__head {
  text-align: center;
  margin-bottom: 56px;
}

.aira-dl {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 2.1;
  max-width: 900px;
  text-align: left;
}
.aira-dl dt {
  padding: 18px 0;
  border-top: 1px solid rgba(58, 58, 56, 0.14);
  color: var(--aira-accent);
}
.aira-dl dd {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(58, 58, 56, 0.14);
}
.aira-dl dt:last-of-type,
.aira-dl dd:last-of-type {
  border-bottom: 1px solid rgba(58, 58, 56, 0.14);
}

.aira-contact {
  max-width: 1400px;
  margin: 0 auto;
  padding: 110px 0 130px;
}
.aira-contact__head {
  text-align: center;
  margin-bottom: 60px;
}
.aira-contact__head .aira-ja {
  margin: 0 0 30px;
}

/* -- 個人情報の取り扱いについて（フォームの外・CMS差し替え後も残す） */
.aira-privacy {
  max-width: 760px;
  margin: 0 auto 44px;
}
.aira-privacy__ttl {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.7;
  color: var(--aira-accent);
  text-align: center;
}
.aira-privacy__body {
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid rgba(58, 58, 56, 0.14);
  padding: 26px 28px;
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.06em;
}
.aira-privacy__body p {
  margin: 0;
}
.aira-privacy__body p + p {
  margin-top: 1.6em;
}

/* --------------------------------------------------------------------------
   CMSお問い合わせフォーム（cms_id=7 / design_pattern=1）の見た目調整

   CMSは innerHTML で
     <link rel="stylesheet" href="https://cdn.rs-sys.jp/css/cms/mail-form.css">
   を body 内に差し込むため、この site.css より後ろに置かれる。
   同一詳細度ではCMS側が勝つので、全セレクタを .aira-form-cms で1段深くして
   詳細度で上回らせている（!important は使わない）。

   元データ（claude-design-output）のフォーム実数値に合わせる:
     ラベル      13px / ls .16em / #8C7A63、ラベル→入力 12px、項目間 34px
     入力欄      下線1本 rgba(58,58,56,.3) / padding 12px 2px / 16px / #3A3A38 / ls .06em
     テキストエリア 枠線1px rgba(58,58,56,.3) / padding 16px / line-height 2
     送信ボタン   下線1本 rgba(58,58,56,.45) / Cormorant 600 14px / ls .22em / uppercase
     フォーム幅   max-width 760px 中央
   -------------------------------------------------------------------------- */
.aira-form-cms {
  max-width: 760px;
  margin: 0 auto;
}

/* -- 外枠：CMS既定の背景・内側余白を消す */
.aira-form-cms .form-contents { padding: 0; margin: 0; }
.aira-form-cms .form-pattern-1 { background: transparent; }
.aira-form-cms .form-contents form dl { margin: 0; }

/* -- dt/dd：既定の「左ラベル列（float）」をやめ、ラベルを入力の上に置く */
.aira-form-cms .form-contents form dl dt:not(.pattern-exclusion) {
  float: none;
  width: auto;
  margin: 0;
  padding: 0 0 12px;
  text-align: left;
}
.aira-form-cms .form-contents form dl dd:not(.pattern-exclusion) {
  margin: 0;
  padding: 0 0 34px;
  line-height: 2.2;
}
.aira-form-cms .form-pattern-1 dl dd:not(.pattern-exclusion) { border-bottom: none; }

/* -- ラベル。CMSは「必須」を ::before で前に出すため、
      inline-flex + row-reverse でラベルの後ろへ回す（元データは末尾配置） */
.aira-form-cms .form-contents form dl dt:not(.pattern-exclusion) span {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.16em;
  color: var(--aira-accent);
}
.aira-form-cms .form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  content: "（必須）";
  position: static;
  top: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--aira-accent);
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* -- 入力欄・セレクト＝下線1本 */
.aira-form-cms .form-pattern-1 dd:not(.pattern-exclusion) .textarea,
.aira-form-cms .form-pattern-1 dd:not(.pattern-exclusion) .textarea-serect {
  width: 100%;
  height: auto;
  padding: 12px 2px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(58, 58, 56, 0.3);
  border-radius: 0;
  color: var(--aira-ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  transition: border-color 0.3s ease;
}
/* -- テキストエリアのみ枠線（元データ踏襲） */
.aira-form-cms .form-pattern-1 dd:not(.pattern-exclusion) textarea.textarea {
  padding: 16px;
  border: 1px solid rgba(58, 58, 56, 0.3);
  line-height: 2;
  resize: vertical;
}
.aira-form-cms .form-pattern-1 dd:not(.pattern-exclusion) .textarea:focus,
.aira-form-cms .form-pattern-1 dd:not(.pattern-exclusion) .textarea-serect:focus {
  border-color: rgba(58, 58, 56, 0.6);
  outline: none;
}
.aira-form-cms .form-contents dd:not(.pattern-exclusion) .textarea::placeholder {
  color: rgba(58, 58, 56, 0.4);
}

/* -- エラー時の入力欄（js/contact.js が .is-error を付ける） */
.aira-form-cms .form-pattern-1 dd:not(.pattern-exclusion) .textarea.is-error,
.aira-form-cms .form-pattern-1 dd:not(.pattern-exclusion) .textarea-serect.is-error {
  border-color: #A65A4B;
  background: rgba(166, 90, 75, 0.06);
}

/* -- 送信ボタン。CMS既定（固定幅・グレー・封筒アイコン）を元データの下線リンク調に */
.aira-form-cms .form-contents .submit-btn {
  display: block;
  width: fit-content;
  margin: 12px auto 0;
  padding: 0 2px 7px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(58, 58, 56, 0.45);
  border-radius: 0;
  color: var(--aira-ink);
  font-family: var(--aira-font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.aira-form-cms .form-contents .submit-btn:hover { opacity: 0.7; }
.aira-form-cms .form-contents .submit-btn::before { content: none; }

/* -- エラーメッセージ */
.aira-form-cms .form-contents .form-err-msg {
  margin: 0 0 34px;
  padding: 16px 20px;
  background: rgba(166, 90, 75, 0.06);
  border: 1px solid rgba(166, 90, 75, 0.5);
  color: #A65A4B;
  font-size: 13px;
  line-height: 2;
}
.aira-form-cms .form-contents .form-err-msg ul { list-style: none; margin: 0; padding: 0; }
.aira-form-cms .form-contents .form-err-msg li { padding: 2px 0; }

/* -- 送信完了メッセージ */
.aira-form-cms .form-pattern-1 .form-thanks-msg {
  padding: 48px 40px;
  background: transparent;
  border: 1px solid rgba(58, 58, 56, 0.14);
}
.aira-form-cms .form-contents .form-thanks-msg p {
  text-align: center;
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--aira-ink);
  text-wrap: pretty;
}
.aira-form-cms .form-contents .form-thanks-msg .back-home-btn {
  display: flex;
  justify-content: center;
  width: auto;
  margin: 32px auto 0;
}
.aira-form-cms .form-pattern-1 .form-thanks-msg .back-home-btn a {
  display: inline-block;
  width: auto;
  padding: 0 2px 7px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(58, 58, 56, 0.45);
  border-radius: 0;
  color: var(--aira-ink);
  font-family: var(--aira-font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.aira-form-cms .form-pattern-1 .form-thanks-msg .back-home-btn a:hover {
  background: transparent;
  opacity: 0.7;
}

/* ==========================================================================
   16. Keyframes
   ========================================================================== */
@keyframes acFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* 3枚クロスフェード（1枚目＝ベース、A＝2枚目、B＝3枚目） */
@keyframes acMvA {
  0%,   28%  { opacity: 0; }
  33%,  61%  { opacity: 1; }
  66%,  100% { opacity: 0; }
}
@keyframes acMvB {
  0%,   61%  { opacity: 0; }
  66%,  94%  { opacity: 1; }
  100%       { opacity: 0; }
}

/* 2枚クロスフェード */
@keyframes acCross {
  0%,   45%  { opacity: 0; }
  55%,  95%  { opacity: 1; }
  100%       { opacity: 0; }
}

/* 無限マーキー（カード7枚 × 2セット / gap 22px 分を差し引く） */
@keyframes acMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 11px)); }
}

@media (prefers-reduced-motion: reduce) {
  .aira-colors__track,
  .aira-mv__shot--a,
  .aira-mv__shot--b,
  .aira-light__stack img {
    animation: none;
  }
}

/* ==========================================================================
   17. Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  /* main.css の .header__nav（PC以下非表示）を site.css が上書きしてしまうため再指定 */
  .aira-header__nav {
    display: none;
  }
  .aira-header__inner {
    padding: 16px 0;
  }
  .aira-header__logo img {
    height: 44px;
  }

  .aira-mv__frame-inner {
    max-width: 76vw;
  }
  .aira-mv__catch {
    font-size: 40px;
  }

  .aira-stagger__col--b {
    margin-top: 160px;
  }
  .aira-light__col--offset {
    margin-top: 90px;
  }
}

@media (max-width: 896px) {
  .aira-container,
  .aira-intro,
  .aira-closing,
  .aira-hero__body,
  .aira-footer-cta,
  .aira-footer__rule-wrap,
  .aira-footer__main,
  .aira-footer__bottom,
  .aira-stagger,
  .aira-color-sec,
  .aira-collection-end__inner,
  .aira-company__inner,
  .aira-contact,
  .aira-display-grid {
    padding-left: 24px;
    padding-right: 24px;
  }

  /* -- MV */
  .aira-mv {
    min-height: 560px;
  }
  .aira-mv__frame-inner {
    height: min(46vh, 520px);
    max-width: 86vw;
  }
  .aira-mv__word {
    top: calc(50% - min(46vh, 520px) / 2 - 14px);
    left: 24px;
  }
  .aira-mv__foot {
    padding: 40px 5% 5vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .aira-mv__lead {
    white-space: normal;
  }
  .aira-mv__catch {
    font-size: 32px;
  }
  .aira-mv__scroll {
    align-self: flex-end;
    gap: 12px;
  }
  .aira-mv__scroll-line {
    width: 1px;
    height: 40px;
  }

  /* -- Seven Colors */
  .aira-colors {
    padding: 90px 0 20px;
  }
  .aira-colors__head {
    margin: 0 0 40px;
  }
  .aira-color-card {
    width: clamp(240px, 62vw, 400px);
  }

  /* -- Feature */
  .aira-feature {
    padding: 80px 0 0;
  }
  .aira-feature__inner,
  .aira-feature__inner--img-left {
    grid-template-columns: 1fr;
  }
  .aira-feature__body,
  .aira-feature__inner--img-left .aira-feature__body {
    order: 2;
    padding: 34px 24px 0;
  }
  .aira-feature__img,
  .aira-feature__inner--img-left .aira-feature__img {
    order: 1;
  }

  /* -- CTA */
  .aira-cta {
    margin-top: 90px;
    min-height: auto;
    padding: 90px 24px;
  }

  /* -- 下層 */
  .aira-hero {
    height: 46vh;
    min-height: 320px;
  }
  .aira-intro {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .aira-intro--top0 {
    padding: 80px 24px 0;
  }
  .aira-intro--tight {
    padding-bottom: 50px;
  }
  .aira-intro--collection {
    padding-bottom: 0;
  }
  .aira-closing {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .aira-stagger {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .aira-stagger__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .aira-stagger__col--a,
  .aira-stagger__col--b,
  .aira-stagger__col--c {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }
  .aira-stagger__col--b,
  .aira-stagger__col--c {
    margin-top: 70px;
  }
  .aira-stagger__col--c {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .aira-stagger__choice-photo {
    height: auto;
    width: 100%;
  }

  .aira-light {
    padding-bottom: 70px;
  }
  .aira-light__band {
    width: 100%;
    padding: 70px 24px;
  }
  .aira-light__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .aira-light__col--offset {
    margin-top: 0;
  }

  .aira-color-sec {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .aira-color-sec__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .aira-color-sec__label {
    position: static;
    flex-direction: row;
    align-items: baseline;
  }
  .aira-color-sec__row {
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
  }
  .aira-color-sec__store {
    justify-self: start;
  }
  .aira-color-sec__thumbs {
    gap: 12px;
    margin-top: 34px;
  }
  .aira-collection-end__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding-top: 70px;
    padding-bottom: 90px;
  }

  .aira-display-grid__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .aira-company__inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .aira-dl {
    grid-template-columns: 1fr;
  }
  .aira-dl dt {
    padding: 16px 0 0;
    border-top: 1px solid rgba(58, 58, 56, 0.14);
  }
  .aira-dl dd {
    padding: 0 0 16px;
    border-top: 0;
  }
  .aira-dl dt:last-of-type {
    border-bottom: 0;
  }
  .aira-contact {
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .aira-form-cms .form-contents .submit-btn {
    width: 100%;
    text-align: center;
  }

  /* -- フッター */
  .aira-footer {
    margin-top: 100px;
  }
  /* 縦長ビューポートでは横が大きく切り落とされ、中央基準だと石が右端で半分に割れる。
     石が収まるよう右寄りにトリミングする */
  .aira-footer__bg {
    object-position: 80% 50%;
  }
  .aira-footer-cta {
    padding-top: 90px;
    padding-bottom: 80px;
  }
  .aira-footer__main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 40px;
    padding-bottom: 30px;
    align-items: start;
  }
  .aira-footer__nav {
    justify-content: flex-start;
  }
  .aira-footer__copyright {
    text-align: left;
  }
  .aira-footer__bottom {
    padding-bottom: 40px;
  }
}

@media (max-width: 639px) {
  .aira-header__logo img {
    height: 36px;
  }

  /* SPではフッターナビを出さない（SPナビで代替） */
  .aira-footer__nav {
    display: none;
  }
  .aira-mv__catch {
    font-size: 28px;
  }
  .aira-mv__lead {
    font-size: 13px;
  }
  .aira-color-card__en {
    font-size: 18px;
  }
  .aira-color-sec__thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
  .aira-color-sec__cap {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .aira-lead--xl {
    font-size: 17px;
  }
}

/* ==========================================================================
   18. 写真アニメーション（バーが走り抜けたあとに写真が現れる）

   HTML側は画像に class="animation-txt" を付けるだけ。
   js/common.js が
     <div class="animation-content"><div class="animation-bar"> img </div></div>
   でラップし、スクロール位置に応じて .animation-content に .move を付け外しする。
   ========================================================================== */
@keyframes flash {
  0%   { opacity: 0.4; }
  100% { opacity: 1; }
}
@keyframes animation-bar {
  0%   { left: 0;      width: 0; }
  50%  { left: 0;      width: 100%; }
  51%  { left: 0;      width: 100%; }
  100% { left: 100.5%; width: 0; }
}
@keyframes animation-txt {
  0%   { opacity: 0; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}

.animation-content.move .animation-bar::before {
  animation: animation-bar 1.5s ease 0s 1 normal forwards;
}
.animation-content.move .animation-txt {
  animation: animation-txt 0s ease 0.8s 1 normal forwards;
}
.animation-content .animation-box {
  display: block;
  text-align: center;
}
.animation-content .animation-bar {
  position: relative;
  display: block;
  transform: translate3d(0, 0, 0);
}
.animation-content .animation-bar::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: var(--aira-dark);
}
.animation-content .animation-txt {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

/* -- 比率固定の写真枠（.aira-photo）内で使うときのサイズ継承。
      JSのラップで img が .aira-photo の直下でなくなり
      `.aira-photo > img` の width/height/object-fit が外れるため補う */
/* ※ 子孫セレクタにしているのは、ライトボックス用の <a> が間に入る
      （.aira-photo > a > .animation-content）ケースも拾うため */
.aira-photo .animation-content,
.aira-photo .animation-content > .animation-bar,
.aira-stagger__choice-photo .animation-content,
.aira-stagger__choice-photo .animation-content > .animation-bar {
  display: block;
  width: 100%;
  height: 100%;
}
.aira-photo .animation-txt {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -- 光のセクション（stones.php）は画像1枚ずつではなくスライド枠ごと出す。
      画像側に付けると .animation-txt の opacity アニメが
      acCross / acMvA / acMvB のクロスフェードを上書きして消してしまうため。 */
.aira-light__col > .animation-content,
.aira-light__col .animation-content > .animation-bar {
  display: block;
  width: 100%;
}

/* -- スクロールフェード（.effect_fade → .effect_scroll） */
.effect_fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 2s;
}
.effect_fade.effect_scroll {
  opacity: 1;
  transform: translate(0, 0);
}

/* -- 動きを減らす設定の環境では静止表示にする */
@media (prefers-reduced-motion: reduce) {
  .animation-content .animation-txt { opacity: 1; animation: none; }
  .animation-content.move .animation-bar::before { animation: none; }
  .effect_fade { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   19. OPローダー（TOPのみ）

   ロゴがじんわり現れ → ゆっくりズームしながらフェードアウト → 幕が引く。
   タイムライン（合計 約3.6秒）
     0.00〜0.90s  ロゴ フェードイン（scale 1 → 1.02）
     0.90〜2.00s  ゆっくりズーム（1.02 → 1.10）
     2.00〜3.20s  ズームしながらフェードアウト（1.10 → 1.26 / opacity 0）
     2.40〜3.60s  幕（生成り地）がフェードアウト
   ========================================================================== */
.aira-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--aira-bg);
  animation: airaLoaderVeil 1.2s ease 2.4s forwards;
}

.aira-loader__logo {
  width: min(260px, 46vw);
  height: auto;
  opacity: 0;
  transform: scale(1);
  animation: airaLoaderLogo 3.2s cubic-bezier(0.33, 0, 0.2, 1) both;
}

@keyframes airaLoaderLogo {
  0%   { opacity: 0; transform: scale(1); }
  28%  { opacity: 1; transform: scale(1.02); }
  62%  { opacity: 1; transform: scale(1.10); }
  100% { opacity: 0; transform: scale(1.26); }
}

@keyframes airaLoaderVeil {
  from { opacity: 1; visibility: visible; }
  to   { opacity: 0; visibility: hidden; }
}

/* ローダー表示中はスクロールを止める（js/common.js が html に付け外し） */
.is-loading,
.is-loading body {
  overflow: hidden;
}

/* 動きを減らす設定の環境ではローダーを出さない */
@media (prefers-reduced-motion: reduce) {
  .aira-loader { display: none; }
}
