:root{--wrap-w: min(1200px, 90%);
    --gap: clamp(20px, 10vw, 200px); }
/* ===== full width hero image ===== */
  .hero-img{
    width:100vw; height:100vh;
    overflow:hidden;
    position: relative;
  }
  .hero-img img{
    width:100%; height:100%;
    object-fit:cover; display:block;
  }

  /* ===== main two-column block ===== */
  .two-col{
    display:flex; gap:var(--gap);
    width:var(--wrap-w); margin:0 auto;
    padding: clamp(40px, 9vh, 120px) 0;
  }
  .two-col.reverse{ flex-direction: row-reverse; }

  .right{
    flex:1.3; min-width:0; 
  }
  .left{ flex: 0 0 33%; position:relative; }
  .left .inner{
    position: sticky;
    top: 15%;
    transform: translateY(0%);
  }

  .right{display:flex;flex-direction:column;gap: clamp(16px, 2.4vw, 28px);margin-top: -190px;}
  .ph{ margin:0; overflow:hidden;}
  .ph img{ display:block; width:100%; height:auto; vertical-align:bottom; }

  .eyebrow{ letter-spacing:.08em; opacity:.8; font-size: clamp(12px,1.3vw,14px); margin-bottom: 8px; }
  .title{
    color: #595757;
    font-size: 1.3rem;
    line-height: 45px;
    margin-bottom: 50px;
    font-weight: 400;
  }
  .desc{
    color: #595757;
    font-size: 1rem;
    line-height: 35px;
  }
  .note{
    font-size: 0.7rem;
  }
  .last-section .title,.last-section .desc{
    color: #cabc98;
  }

  .normal{ background:#fff; color:#222; padding:96px 6vw; }

  #info .wrap{
    color: #978357;
    font-size: 1.5rem;
    line-height: 45px;
    letter-spacing: 0.18em;
  }
  #location .caption{
    position: absolute;
    right: 26px;
    bottom: 24px;
    font-size: 11px;
    letter-spacing: .2em;
    color: #fff;
    pointer-events: none;
    white-space: nowrap;
  }
  #location .caption.left{
    right: unset;
    left: 24px;
  }
  #location .over-cap .caption{
    position: absolute;
    right: 26px;
    bottom: -24px;
    font-size: 11px;
    letter-spacing: .2em;
    color: #231815;
    pointer-events: none;
    white-space: nowrap;
  }
  .section-bg{
    background-color: #3d3b3b;
    padding-bottom: 80px;
  }
  /* =========================
   スクロールアニメーション
   ========================= */
  .hero-img ,#head,.over-cap{
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 3.1s cubic-bezier(0.16, 1, 0.3, 1),
      transform 3.1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  #head.is-show,.is-show {
    opacity: 1;
    transform: translateY(0);
  }
  .two-col .right .ph {
    opacity: 0;
    transform: translateY(150px);
    transition:
      opacity 3.9s cubic-bezier(0.16, 1, 0.3, 1),
      transform 3.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  .two-col .right .ph.is-show {
    opacity: 1;
    transform: translateY(0);
  }

.location-history {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 50px 60px 10px;
  border: 1px solid #cabc98;
  background: #3d3b3b;
  box-sizing: border-box;
}
.location-history__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding: 40px 0;
  border-top: 1px solid #cabc98;
}
.location-history__row:first-child {
  padding-top: 0;
  border-top: none;
}
.location-history__text {
  flex: 0 0 50%;
  line-height: 35px;
  font-size: 1rem;
  color: #cabc98;
}
.location-history__title {
  font-size: 1.3rem;
    line-height: 45px;
    margin-bottom: 50px;
    font-weight: 400;
    color: #cabc98;
}
.location-history__img {
  flex: 0 0 50%;
  margin: 0;
  position: relative;
}
.location-history__img img {
  display: block;
  width: 100%;
  height: auto;
}
.location-history__img figcaption {
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #ffffff;
  opacity: 0.85;
  white-space: nowrap;
}
.left-cap{
  right: 0;
  left: 10px;
}
  #head .head-title{
    position: absolute;
    color: #fff;
    z-index: 2;
    font-size: 2.5rem;
    font-family: "Cinzel", serif;
    letter-spacing: 0.25em;
    right: 10vw;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
  }

@media (max-width: 768px) {
  #head .head-title{
    font-size: 1.5rem;
  }
  .location-history {
    padding: 30px 20px 0;
    margin-top: 48px;
    width: var(--wrap-w);
  }
  .location-history__row {
    flex-direction: column;
    gap: 24px;
    padding: 30px 0;
  }
  .location-history__text,
  .location-history__img {
    flex: 0 0 auto;
    width: 100%;
  }
  .location-history__title {
    font-size: 1rem;
    line-height: 35px;
    margin-bottom: 30px;
  }
  .location-history__img figcaption {
    right: 8px;
    bottom: 6px;
    font-size: 9px;
  }
    .hero-img,.over-cap{
      max-height: 300px;
    }
    .over-cap{
      width: 100vw;
      height: 100vh;
      position: relative;
    }
    .over-cap img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      object-position: right;
    }
    .two-col{
        flex-direction: column;
    }
    .two-col.reverse{
      flex-direction: column-reverse;
    }
    .right{margin-top: 0;}
    .two-col .left{ order: 1; }
    .two-col .right{ order: 2; }
    .two-col.reverse .right{ order: 1; } 
    .two-col.reverse .left{  order: 2; } 
    .left .inner{
        position: sticky;
        top: 16px;
        transform: none;
    }
    #info .wrap{
      font-size: 1rem;
      line-height: 35px;
    }
    #location .caption{
      right: 10px;
      bottom: 10px;
      font-size: 8px;
    }
    #location .over-cap .caption{
      right: 10px;
      bottom: -10px;
      font-size: 8px;
    }
    #location .caption.left{
      right: unset;
      left: 10px;
      bottom: 10px;
      font-size: 8px;
    }
    .title {
        font-size: 1rem;
        line-height: 35px;
        margin-bottom: 30px;
        font-weight: 400;
    }
    .note{
      font-size: 0.55rem;
    }
  }