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

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

/* ==========================================================================
   p-loc-hero — LOCATION メインビジュアル
   ========================================================================== */

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

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

.p-loc-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-loc-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-loc-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-loc-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-loc-intro — LOCATION 導入
   ========================================================================== */

.p-loc-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: clamp(56px, 5.63vw, 108px);
}

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

.p-loc-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-loc-intro__h2 {
  margin: 0;
  padding-left: 26px;
  font-family: 'YakuHanMP', 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 50px);
  line-height: 1.34;
  text-align: center;
  /* PC は各行を1行で組む（折り返しは only-sp の br に任せる） */
  white-space: nowrap;
  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-loc-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-loc-strip — LOCATION 自動送りスライダー
   ========================================================================== */

/* 流れる帯。写真は原寸のまま送り、帯の高さだけ画面幅に追従させる（js/common.js が送る） */
.p-loc-strip {
  position: relative;
  width: 100%;
  height: clamp(240px, 20.42vw, 392px);
  overflow: hidden;
  background: linear-gradient(180deg, rgb(219,217,213) 0%, rgb(216,213,208) 100%);
}

.p-loc-strip__strip-track {
  position: absolute;
  left: 0;
  top: 0;
  height: clamp(235px, 19.98vw, 383.521px);
  display: flex;
  gap: 1px;
  mix-blend-mode: luminosity;
  will-change: transform;
}

/* 自動スクロールの停止／再生ボタン（規定 2.2.2: 自動で動き続けるものは止められるようにする）。
   注釈（右下）とぶつからないよう左下に置き、タップ領域は 44px を確保する */
.p-loc-strip__toggle {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  box-sizing: border-box;
  min-width: 44px;
  min-height: 44px;
  margin: 0;
  padding: 6px 14px;
  border: 1px solid rgba(49,46,42,0.35);
  border-radius: 2px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: 'YakuHanMP', 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgb(49,46,42);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.p-loc-strip__toggle:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(49,46,42,0.6);
}

.p-loc-strip__toggle:focus-visible {
  outline: 2px solid rgb(49,46,42);
  outline-offset: 2px;
}

/* 停止中の記号（2本線）。再生に切り替わると三角になる */
.p-loc-strip__toggleIcon {
  flex: none;
  width: 8px;
  height: 10px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.p-loc-strip__toggle.is-paused .p-loc-strip__toggleIcon {
  width: 0;
  height: 0;
  border-left: 9px solid currentColor;
  border-right: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* 帯の下に地が残るぶん、注釈を写真の下端に合わせて持ち上げる */
.p-loc-strip .imgCap {
  bottom: 14.5px;
}

.p-loc-strip__img {
  display: block;
  width: clamp(352px, 29.95vw, 575px);
  height: clamp(235px, 19.98vw, 383.521px);
  flex: 0 0 auto;
  object-fit: cover;
}


/* ==========================================================================
   p-loc-bands — LOCATION コンテンツ帯
   ========================================================================== */

.p-loc-bands {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(88px, 9.22vw, 177px) clamp(16px, 1.67vw, 32px) clamp(80px, 7.97vw, 153px);
  background: linear-gradient(180.79deg, rgb(216,213,208) 0%, rgb(204,198,188) 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 7.97vw, 153px);
  align-items: center;
}

.p-loc-bands__screen-label {
  width: 100%;
  max-width: 1856px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-loc-bands__div-2 {
  position: relative;
  width: 100%;
  min-height: clamp(200px, 19.17vw, 368px);
  padding: clamp(32px, 2.5vw, 48px) clamp(24px, 2vw, 40px);
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(222,221,219);
}

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

.p-loc-bands__div-3 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background: linear-gradient(100.473deg, rgb(127,122,115) 10.74%, rgb(50,47,42) 97.69%);
}

.p-loc-bands__rise {
  position: relative;
  margin: 0;
  font-family: 'Cormorant Infant', ui-serif, Georgia, serif;
  font-weight: 400;
  font-size: clamp(34px, 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;
}

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

.p-loc-bands__div-5 {
  position: relative;
  flex: 0 0 50%;
  min-width: 0;
  aspect-ratio: 928 / 823;
  overflow: hidden;
  background: rgb(217,217,217);
}

.p-loc-bands__img-2 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.p-loc-bands__h3 {
  margin: 0;
  font-family: 'YakuHanMP', 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: clamp(22px, 2.08vw, 40px);
  line-height: 1.55;
  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-loc-bands__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);
}

.p-loc-bands__div-7 {
  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-loc-bands__div-8 {
  flex: 0 0 50%;
  min-width: 0;
  aspect-ratio: 930 / 823;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.p-loc-bands__div-9 {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  background: rgb(99,63,63);
}

.p-loc-bands__img-3 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-loc-bands__div-10 {
  position: relative;
  overflow: hidden;
  background: rgb(99,63,63);
}

.p-loc-bands__img-4 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-loc-bands__div-11 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}

.p-loc-bands__div-12 {
  position: relative;
  flex: 0 0 50%;
  min-width: 0;
  aspect-ratio: 930 / 567;
  overflow: hidden;
  background: rgb(217,217,217);
}

.p-loc-bands__img-5 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-loc-bands__div-13 {
  width: 100%;
  box-sizing: border-box;
  padding: clamp(48px, 5.21vw, 100px) clamp(24px, 7.97vw, 153px);
  background: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3.13vw, 60px);
  align-items: center;
}

.p-loc-bands__div-14 {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 5.47vw, 105px);
  align-items: center;
}

.p-loc-bands__rise-3 {
  width: 100%;
  max-width: 1023px;
  display: flex;
  flex-direction: row;
  gap: clamp(32px, 9.74vw, 187px);
  align-items: center;
  justify-content: center;
}

.p-loc-bands__h3-2 {
  margin: 0;
  flex: 0 0 auto;
  font-family: 'YakuHanMP', 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: clamp(22px, 2.08vw, 40px);
  line-height: 1.55;
  white-space: nowrap;
  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-loc-bands__p-2 {
  margin: 0;
  width: 100%;
  max-width: 472px;
  flex: 0 1 auto;
  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);
}

.p-loc-bands__div-15 {
  align-self: stretch;
  height: 1px;
  background: rgb(208,205,179);
}

.p-loc-bands__div-16 {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(32px, 5.83vw, 112px);
  align-items: flex-start;
  justify-content: center;
}

.p-loc-bands__rise-4 {
  flex: 1 1 300px;
  max-width: 442.667px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
}

.p-loc-bands__div-17 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  align-self: stretch;
}

.p-loc-bands__div-18 {
  position: relative;
  width: 100%;
  aspect-ratio: 440 / 279;
  overflow: hidden;
  background: rgb(217,217,217);
}

.p-loc-bands__img-6 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-loc-bands__h4 {
  margin: 0;
  font-family: 'YakuHanMP', 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: clamp(18px, 1.3vw, 25px);
  line-height: 1.32;
  white-space: nowrap;
  padding-bottom: 3px;
  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-loc-bands__p-3 {
  margin: 0;
  align-self: stretch;
  font-family: 'YakuHanMP', 'Shippori Mincho B1', serif;
  font-weight: 500;
  font-size: clamp(13px, 0.78vw, 15px);
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: rgb(48,47,34);
}




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

@media screen and (max-width: 1024px) {
  .p-loc-bands__div-4,
  .p-loc-bands__div-11 {
    flex-direction: column;
  }

  .p-loc-bands__div-5,
  .p-loc-bands__div-6,
  .p-loc-bands__div-7,
  .p-loc-bands__div-8,
  .p-loc-bands__div-12 {
    width: 100%;
    flex: 0 0 auto;
  }

  .p-loc-bands__div-6,
  .p-loc-bands__div-7 {
    padding: 40px 24px;
  }

  .p-loc-bands__rise-2 {
    max-width: 640px;
    margin: 0 auto;
  }

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

  /* 見出しと本文は横に並べきれないので縦積みにする */
  .p-loc-bands__rise-3 {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .p-loc-bands__h3-2 {
    text-align: center;
  }
}


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

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

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

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


  /* ---- メインビジュアル: 全面（画面いっぱい） ---- */
  #mainVisual .p-loc-hero,
  .p-loc-hero {
    width: 100%;
    height: var(--vph, 100vh);
  }

  .p-loc-hero__div-2 {
    gap: 10px;
    padding: 0 24px;
  }

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

  .p-loc-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-loc-hero__div-2 {
    width: 100%;
    box-sizing: border-box;
  }

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

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

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

  .p-loc-intro__h2 {
    padding-left: 0;
    font-size: 27px;
    line-height: 44px;
    white-space: normal;
  }

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

  /* ---- 自動送りスライダー ---- */
  .p-loc-strip {
    width: 100%;
    height: 226px;
  }

  .p-loc-strip__strip-track {
    height: 218px;
  }

  .p-loc-strip__img {
    width: 327px;
    height: 218px;
  }

  /* 帯の下に 8px の地が残るので、注釈は写真の下端に揃える */
  .p-loc-strip .imgCap {
    bottom: 14px;
  }

  /* ---- コンテンツ帯 ---- */
  .p-loc-bands {
    width: 100%;
    padding: 88px 16px 88px;
    gap: 96px;
  }

  .p-loc-bands__screen-label {
    width: 100%;
  }

  .p-loc-bands__div-2 {
    width: 100%;
    height: 176px;
    /* PC の min-height（200px）が残ると箱が画像より高くなり、
       絶対配置のキャプションが画像の外（ページの地）へ落ちる */
    min-height: 0;
  }

  .p-loc-bands__img,
  .p-loc-bands__div-3 {
    width: 100%;
    height: 176px;
  }

  .p-loc-bands__rise {
    padding: 0 12px;
    font-size: 34px;
    line-height: 0.9;
    white-space: normal;
    text-align: center;
  }

  /* 画像とテキストの2枚組は縦積みに（画像 → テキストの順で読ませる） */
  .p-loc-bands__div-4 {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }

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

  .p-loc-bands__img-2 {
    width: 100%;
    height: auto;
    aspect-ratio: 928 / 640;
  }

  /* テキスト面は常に画像の後ろへ（fig の互い違いは SP では読み順優先） */
  .p-loc-bands__div-6,
  .p-loc-bands__div-7 {
    width: 100%;
    height: auto;
    order: 2;
    padding: 44px 24px 48px;
  }

  .p-loc-bands__rise-2 {
    width: 100%;
    gap: 22px;
  }

  .p-loc-bands__h3,
  .p-loc-bands__h3-2,
  .p-loc-bands__h4,
  .p-loc-intro__h2,
  .p-loc-hero__div-4 {
    /* SP は決め打ちの改行を解き、句読点で自然に折る */
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: strict;
  }

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

  .p-loc-bands__p {
    width: 100%;
    font-size: 15px;
    line-height: 30px;
  }

  /* 3枚グリッドは SP では1カラムに積む */
  .p-loc-bands__div-8 {
    width: 100%;
    height: auto;
    /* PC の aspect-ratio（930/823）が残ると iOS Safari では枠の高さが確定値になり、
       3行がその高さに押し込まれて写真が帯状に潰れる。枠は行の合計高さに任せる */
    aspect-ratio: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2px;
  }

  .p-loc-bands__div-9 {
    grid-row: auto;
  }

  .p-loc-bands__img-3 {
    width: 100%;
    /* 親の高さが auto のため height:100% は Safari で不定になる。画像自身の aspect-ratio で高さを決める */
    height: auto;
    object-fit: cover;
    /* SPのトリミングは上寄せ。中央のままだと建物上部（塔屋・シンボル）が切れる */
    object-position: center top;
    aspect-ratio: 750 / 480;
  }

  .p-loc-bands__img-4 {
    width: 100%;
    height: auto;
    aspect-ratio: 750 / 480;
  }

  /* 駅の2枚横並びは縦積み */
  .p-loc-bands__div-11 {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 2px;
  }

  .p-loc-bands__div-12 {
    width: 100%;
    height: auto;
  }

  .p-loc-bands__img-5 {
    width: 100%;
    height: auto;
    aspect-ratio: 930 / 567;
  }

  /* 見出し＋本文＋カード3枚 */
  .p-loc-bands__div-13 {
    width: 100%;
    padding: 52px 24px 56px;
    gap: 40px;
  }

  .p-loc-bands__div-14 {
    gap: 44px;
  }

  .p-loc-bands__rise-3 {
    width: 100%;
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }

  .p-loc-bands__h3-2 {
    font-size: 24px;
    line-height: 40px;
    white-space: normal;
  }

  .p-loc-bands__p-2 {
    width: 100%;
    font-size: 15px;
    line-height: 30px;
  }

  .p-loc-bands__div-16 {
    flex-direction: column;
    gap: 44px;
  }

  .p-loc-bands__rise-4 {
    width: 100%;
    gap: 16px;
  }

  .p-loc-bands__div-17 {
    gap: 22px;
  }

  .p-loc-bands__div-18 {
    width: 100%;
    height: auto;
  }

  .p-loc-bands__img-6 {
    width: 100%;
    height: auto;
    aspect-ratio: 440 / 279;
  }

  .p-loc-bands__h4 {
    font-size: 19px;
    line-height: 30px;
    white-space: normal;
  }

  .p-loc-bands__p-3 {
    font-size: 14px;
    line-height: 27px;
  }
}

/* SP の和文の折り返し（規定: 行間・文字間を詰めすぎない／可読性の担保）。
   文字サイズは各ブロックの SP 指定（本文15px・小見出し14px）をそのまま使う */
@media screen and (max-width: 767px) {
  .p-loc-intro,
  .p-loc-bands {
    line-break: strict;
    word-break: normal;
    overflow-wrap: break-word;
  }

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

  .p-loc-bands__p-2 br:not(.only-sp) {
    display: none;
  }
}

