    /* ----------------- header -----------------*/
  .subpage .header {  
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  
  .h-logo {
    width: 175px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .h-logo.sp {
    position: fixed;
    top: 34px;
    left: 26px;
    z-index: 40;
  }

  .h-logo.pc {
    display: none;
  }

  @media (min-width: 992px) {
    .subpage .header {
      align-items: center;
    }

    .h-logo.sp {
      display: none;
    }

    .h-logo.pc {
      display: inline-block;
    }

    .subpage .g-nav {
      padding: 36px;
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }

    .g-nav__ul {
      padding-left: 58px;
    }

    .g-nav__link {
      padding: 12px;
    }
  }

  @media (min-width: 1200px) {
    .g-nav__link {
      padding: 15.5px 15px;
    }
  }

  @media (max-width: 992px) {/* 992px以下の時だけ適用 */
    .h-logo.is-hidden {
      opacity: 0;
      visibility: hidden;      /* キーボードフォーカスも防ぐ場合 */
      pointer-events: none;    /* クリック不可にしたい場合 */
    }
  }
  
  
  /* ----------------- section -----------------*/
  .sec--subpage__mv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1100px;
    width: 100%;
    margin: 30vh auto 0;
    padding-bottom: 40px;
  }
  
  .subtitle {
    font-family: var(--text-en);
    font-size: 3.75rem;
    letter-spacing: 0.08rem;
    line-height: 1.4;
    text-align: center;
  }
  
  .subtitle span {
    display: block;
    font-family: var(--text-jp);
    font-size: 1rem;
    font-weight: bold;
  }
  
  @media (min-width: 768px) {
    .subtitle {
      font-size: 6.875rem;
    }
  
    .subtitle span {
      font-size: 1.5rem;
    }
  }
  
  .subpage__mv__wrap {
    margin-top: 2.5rem;
    padding: 5px;
    border: solid 1.5px var(--main-color);
    width: calc(100% + 48px); /* 親要素のpaddingを考慮して幅を調整 */
  }
  
  .subpage__mv__img {
    aspect-ratio: 16 / 9;
    border: solid 3px var(--main-color);
    width: 100%;
  }
  
  .subpage__mv__wrap.no-border {
    border: none;
    padding: 0;
  }
  
  .no-border .subpage__mv__img {
    border: none;
    aspect-ratio: initial;
  }
  
  @media (min-width: 768px) {
    .subpage__mv__wrap {
      margin-top: 5rem;
      width: 100%;
    }
  
    .subpage__mv__wrap.no-border {
      border: none;
      padding: 5px;
    }
  }
  
  /* section --about */
  .sec--about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .sec--about:nth-last-of-type(1),
  .sec--about:nth-last-of-type(3) {
    flex-direction: column-reverse;
  }
  
  .sec--about img {
    display: block;
    border: solid 3px var(--main-color);
    width: 100%;
  }
  
  .sec--about__text {
    text-align: justify;
  }
  
  .sec--about__text__en {
    padding-top: 1rem;
  }
  
  @media (min-width: 768px) {
    .sec--about {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2.8rem;
      max-width: 1100px;
    }

    .sec--about:nth-last-of-type(1) {
      margin-bottom: 5rem;
    }
  
    .sec--about:nth-last-of-type(1),
    .sec--about:nth-last-of-type(3) {
      flex-direction: row;
    }
  
    .sec--about img {
      width: 50%;
    }
  }
  
  /* section --residents */
  .sec--residents {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .sec--residents:last-of-type {
    margin-bottom: 120px;
  }
  
  .outlet-category-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    text-align: center;
  }
  
  .outlet-category-title span {
    display: block;
  }
  
  @media (min-width: 1024px) {
    .sec--residents {
      width: 80%;
    }
  
    .outlet-category-title span {
      display: inline-block;
    }
  }