@charset "UTF-8";
/* ==========================================================================
   access.css — ACCESSページ固有のセクション

   レイアウト方式: 通常のレスポンシブ（%・flex/grid・clamp()・メディアクエリ）。
   1920px の等比縮小（zoom）は使わない（.currentPage.js-fluid）。
   数値は fig の 1920px 版面での値を起点に、画面幅へ追従させてある。
   ========================================================================== */

/* ==========================================================================
   p-acc-hero — ACCESS メインビジュアル
   ========================================================================== */

.p-acc-hero {
  position: relative;
  width: 100%;
  height: var(--vph, 100vh);
  overflow: hidden;
  background: rgb(222,221,219);
}

.p-acc-hero__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
}

.p-acc-hero__div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background: linear-gradient(114.325deg, rgb(127,122,115) 10.77%, rgb(50,47,42) 96.87%);
}

.p-acc-hero__div-2 {
  position: absolute;
  left: 50%;
  top: 50%;
  box-sizing: border-box;
  width: 100%;
  padding: 0 clamp(24px, 4vw, 80px);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.68vw, 13px);
  align-items: center;
}

.p-acc-hero__div-3 {
  font-family: 'Cormorant Infant', ui-serif, Georgia, serif;
  font-weight: 400;
  font-size: clamp(56px, 5.21vw, 100px);
  line-height: 0.75;
  text-align: center;
  white-space: nowrap;
  padding-bottom: 8px;
  background: linear-gradient(90deg, rgb(154,153,131) 0%, rgb(218,215,203) 50%, rgb(154,153,131) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.p-acc-hero__div-4 {
  font-family: 'YakuHanMP', 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1.3;
  text-align: center;
  padding-bottom: 4px;
  background: linear-gradient(90deg, rgb(154,153,131) 0%, rgb(218,215,203) 50%, rgb(154,153,131) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* ==========================================================================
   p-acc-intro — ACCESS 導入
   ========================================================================== */

.p-acc-intro {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(96px, 9.79vw, 188px) clamp(24px, 3vw, 60px) clamp(72px, 5.63vw, 108px);
  background: linear-gradient(180.79deg, rgb(222,221,219) 9.54%, rgb(219,217,213) 88.82%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.p-acc-intro__rise {
  width: 100%;
  max-width: 949px;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3.54vw, 68px);
  align-items: center;
}

.p-acc-intro__div {
  align-self: stretch;
  font-family: 'Cormorant Infant', ui-serif, Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 0.75;
  text-align: center;
  color: rgb(48,47,34);
}

.p-acc-intro__h2 {
  margin: 0;
  font-family: 'YakuHanMP', 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 50px);
  line-height: 1.34;
  text-align: center;
  padding-bottom: 6px;
  background: linear-gradient(90deg, rgb(44,43,31) 0%, rgb(136,134,105) 50%, rgb(44,43,31) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.p-acc-intro__rise-2 {
  margin: 0;
  font-family: 'YakuHanMP', 'Shippori Mincho B1', serif;
  font-weight: 500;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: 2.05;
  letter-spacing: 0.01em;
  text-align: center;
  color: rgb(48,47,34);
}


/* ==========================================================================
   p-acc-bands — NEARBY / DISTANT の2グループ
   ========================================================================== */

.p-acc-bands {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(88px, 9.38vw, 180px) clamp(16px, 1.61vw, 31px) clamp(80px, 7.97vw, 153px);
  background: linear-gradient(180.79deg, rgb(219,217,213) 0%, rgb(204,198,188) 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 7.97vw, 153px);
  align-items: center;
}

.p-acc-group {
  width: 100%;
  max-width: 1858px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- 見出し帯 ---- */
.p-acc-band {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 33.33vw, 640px);
  padding: clamp(48px, 3.5vw, 67px) clamp(24px, 2vw, 40px);
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(98,82,82);
}

.p-acc-band__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
}

/* 帯のキャプションはベールより前面に置く */
.p-acc-band .imgCap {
  z-index: 3;
}

.p-acc-band__veil {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background: linear-gradient(107.803deg, rgb(132,127,120) 10.75%, rgb(49,46,41) 97.33%);
}

.p-acc-band__body {
  position: relative;
  width: 100%;
  max-width: 1104px;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4.17vw, 80px);
  justify-content: center;
  align-items: center;
}

.p-acc-band__h2 {
  margin: 0;
  font-family: 'Cormorant Infant', ui-serif, Georgia, serif;
  font-weight: 400;
  font-size: clamp(38px, 3.65vw, 70px);
  line-height: 0.75;
  text-align: center;
  white-space: nowrap;
  background: linear-gradient(90deg, rgb(154,153,131) 0%, rgb(218,215,203) 50%, rgb(154,153,131) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.p-acc-band__txt {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 1.56vw, 30px);
  align-items: center;
}

.p-acc-band__lead {
  margin: 0;
  font-family: 'YakuHanMP', 'Shippori Mincho B1', serif;
  font-weight: 400;
  font-size: clamp(19px, 1.56vw, 30px);
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-align: center;
  color: rgb(255,255,255);
}

.p-acc-band__p {
  margin: 0;
  font-family: 'YakuHanMP', 'Shippori Mincho B1', serif;
  font-weight: 400;
  font-size: clamp(13px, 0.83vw, 16px);
  line-height: 2.19;
  letter-spacing: 0.01em;
  text-align: center;
  color: rgb(255,255,255);
}

/* ---- 写真＋テキストの2枚組 ---- */
/* 写真とテキストを 1:1 で並べる。1024px 以下では縦積みに組み替える（下の @media） */
.p-acc-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}

/* fig は 928 : 928 の等分。テキスト側は中身の最小幅で広がるため、割合で固定する */
.p-acc-row__pic {
  position: relative;
  flex: 0 0 50%;
  min-width: 0;
  aspect-ratio: 928 / 823;
  overflow: hidden;
  background: rgb(217,217,217);
}

.p-acc-row__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-acc-row__txt {
  flex: 0 0 50%;
  min-width: 0;
  background: rgba(255,255,255,0.7);
  box-sizing: border-box;
  padding: clamp(32px, 4.17vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.p-acc-row__rise {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 1.82vw, 35px);
  align-items: flex-start;
}

.p-acc-row__h3 {
  margin: 0;
  font-family: 'YakuHanMP', 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: clamp(22px, 2.08vw, 40px);
  line-height: 1.55;
  letter-spacing: 0.01em;
  padding-bottom: 4px;
  background: linear-gradient(90deg, rgb(44,43,31) 0%, rgb(136,134,105) 50%, rgb(44,43,31) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.p-acc-row__p {
  margin: 0;
  width: 100%;
  max-width: 472px;
  font-family: 'YakuHanMP', 'Shippori Mincho B1', serif;
  font-weight: 500;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: 2.05;
  letter-spacing: 0.01em;
  color: rgb(48,47,34);
}

/* ---- 写真3枚のグリッド（縦長1枚＋横長2枚。NEARBY は右が縦長、DISTANT は左が縦長） ---- */
/* ---- fig ACCESS の構成: 上に長方形1点、下に2点を横並び（930×823） ---- */
.p-acc-stack {
  flex: 0 0 50%;
  min-width: 0;
  aspect-ratio: 930 / 823;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.p-acc-stack__cell {
  position: relative;
  overflow: hidden;
  background: rgb(99,63,63);
}

.p-acc-stack__cell--wide {
  grid-column: 1 / span 2;
}

.p-acc-stack__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.p-acc-grid {
  flex: 0 0 50%;
  min-width: 0;
  aspect-ratio: 930 / 823;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.p-acc-grid__cell {
  position: relative;
  overflow: hidden;
  background: rgb(99,63,63);
}

.p-acc-grid--rightTall .p-acc-grid__cell:nth-child(1) { grid-area: 1 / 1; }
.p-acc-grid--rightTall .p-acc-grid__cell:nth-child(2) { grid-area: 2 / 1; }
.p-acc-grid--rightTall .p-acc-grid__cell:nth-child(3) { grid-area: 1 / 2 / span 2 / span 1; }

.p-acc-grid--leftTall .p-acc-grid__cell:nth-child(1) { grid-area: 1 / 1 / span 2 / span 1; }
.p-acc-grid--leftTall .p-acc-grid__cell:nth-child(2) { grid-area: 1 / 2; }
.p-acc-grid--leftTall .p-acc-grid__cell:nth-child(3) { grid-area: 2 / 2; }

.p-acc-grid__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==========================================================================
   タブレット（〜1024px）— 写真とテキストを縦積みに組み替える
   ========================================================================== */

@media screen and (max-width: 1024px) {
  .p-acc-row {
    flex-direction: column;
  }

  .p-acc-row__pic,
  .p-acc-row__txt,
  .p-acc-stack,
  .p-acc-grid {
    width: 100%;
    flex: 0 0 auto;
  }

  .p-acc-row__txt {
    padding: 40px 24px;
  }

  .p-acc-row__rise {
    max-width: 640px;
    margin: 0 auto;
  }

  /* 縦積みでは本文も見出しと同じ幅まで使う（PC の 472px 上限のままだと右に大きな余白が残る） */
  .p-acc-row__p {
    max-width: none;
  }
}


/* ==========================================================================
   SP（〜767px）— 規定ブレークポイント。zoom は掛からず実寸で組む
   ========================================================================== */

@media screen and (max-width: 767px) {

  /* SP は支給画像にモノクロ・明暗の加工が焼き込まれているため、実装側の画像処理（luminosity 合成・
     multiply の暗幕・明るさ補正）は行わず、画像をそのまま表示する */
  .p-acc-hero__img {
    filter: none;
    mix-blend-mode: normal;
  }

  .p-acc-hero__div {
    display: none;
  }


  /* ---- メインビジュアル ---- */
  #mainVisual .p-acc-hero,
  .p-acc-hero {
    width: 100%;
    height: var(--vph, 100vh);
  }

  .p-acc-hero__div-2 {
    width: 100%;
    box-sizing: border-box;
    gap: 10px;
    padding: 0 24px;
  }

  .p-acc-hero__div-3 {
    font-size: 54px;
    padding-bottom: 6px;
  }

  .p-acc-hero__div-4 {
    font-size: 15px;
    line-height: 24px;
    white-space: normal;
    /* SP はキャッチコピーを白にする（支給画像の上での可読性を確保）。
       PC のグラデーション文字は打ち消す */
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: rgb(255,255,255);
  }

  /* ---- 導入 ---- */
  .p-acc-intro {
    width: 100%;
    padding: 96px 24px 72px;
    gap: 56px;
  }

  .p-acc-intro__rise {
    width: 100%;
    gap: 40px;
  }

  .p-acc-intro__div {
    font-size: 15px;
  }

  .p-acc-intro__h2 {
    font-size: 27px;
    line-height: 44px;
    white-space: normal;
  }

  .p-acc-intro__rise-2 {
    font-size: 15px;
    line-height: 31px;
    text-align: left;
  }

  /* ---- グループ ---- */
  .p-acc-bands {
    width: 100%;
    padding: 88px 16px;
    gap: 96px;
  }

  .p-acc-group {
    width: 100%;
  }

  /* ---- 見出し帯 ---- */
  .p-acc-band {
    width: 100%;
    height: auto;
    min-height: 300px;
    box-sizing: border-box;
    padding: 56px 20px;
  }

  .p-acc-band__img,
  .p-acc-band__veil {
    width: 100%;
    height: 100%;
  }

  .p-acc-band__body {
    width: 100%;
    gap: 32px;
  }

  .p-acc-band__h2 {
    font-size: 34px;
    line-height: 0.9;
    white-space: normal;
  }

  .p-acc-band__txt {
    width: 100%;
    gap: 20px;
  }

  .p-acc-band__lead {
    font-size: 19px;
    line-height: 32px;
  }

  .p-acc-band__p {
    font-size: 14px;
    line-height: 28px;
    text-align: left;
  }

  /* SP は決め打ちの改行を解き、画面幅で自然に折る */
  .p-acc-band__p br:not(.only-sp) {
    display: none;
  }

  /* ---- 2枚組は縦積み。画像 → テキストの読み順に統一 ---- */
  .p-acc-row,
  .p-acc-row--rev {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .p-acc-row__pic {
    width: 100%;
    height: auto;
    order: 1;
    /* PC の aspect-ratio（928/823）が残ると SP 用画像より箱が高くなり、
       下に地色の帯ができてキャプションがそこへ落ちる。箱は画像の高さに合わせる */
    aspect-ratio: auto;
  }

  .p-acc-row__img {
    width: 100%;
    height: auto;
    aspect-ratio: 750 / 560;
  }

  /* fig ACCESS の構成: SP は上の長方形を全幅、下の2点を横並びのまま */
  .p-acc-stack {
    width: 100%;
    height: auto;
    /* PC の aspect-ratio（930/823）が残ると iOS Safari では枠の高さが確定値になり、
       グリッド行がその高さに押し込まれて写真が帯状に潰れる。枠は行の合計高さに任せる */
    aspect-ratio: auto;
    order: 1;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1px;
  }

  .p-acc-stack__cell {
    aspect-ratio: 375 / 332;
  }

  .p-acc-stack__cell--wide {
    aspect-ratio: 750 / 332;
  }

  .p-acc-grid {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    order: 1;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1px;
  }

  /* SP は1カラム。写真を縦に積んで読み順どおりに見せる */
  .p-acc-grid--rightTall .p-acc-grid__cell:nth-child(1),
  .p-acc-grid--rightTall .p-acc-grid__cell:nth-child(2),
  .p-acc-grid--rightTall .p-acc-grid__cell:nth-child(3),
  .p-acc-grid--leftTall .p-acc-grid__cell:nth-child(1),
  .p-acc-grid--leftTall .p-acc-grid__cell:nth-child(2),
  .p-acc-grid--leftTall .p-acc-grid__cell:nth-child(3) {
    grid-area: auto;
    aspect-ratio: 750 / 480;
  }

  /* 縦長素材のセルはSPでも縦長のまま（横長に切ると建物上部のロゴが切れる） */
  .p-acc-grid--rightTall .p-acc-grid__cell:nth-child(3),
  .p-acc-grid--leftTall .p-acc-grid__cell:nth-child(1) {
    aspect-ratio: 750 / 960;
  }

  .p-acc-row__txt {
    width: 100%;
    height: auto;
    order: 2;
    padding: 40px 24px 48px;
    background: rgba(255,255,255,0.78);
  }

  .p-acc-row__rise {
    width: 100%;
    gap: 24px;
  }

  .p-acc-row__h3 {
    font-size: 24px;
    line-height: 40px;
    white-space: normal;
  }

  .p-acc-row__p {
    width: 100%;
    font-size: 15px;
    line-height: 31px;
  }

  /* SPではPC用の改行を解除（ボディコピーは折り返しに任せる） */
  .p-acc-row__p br:not(.only-sp) {
    display: none;
  }
}
