/* ----------------- 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) {
    .g-nav__link {
      padding: 12px;
    }
  }

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

    .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;
    }
  }

  @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: 3rem;
    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;
  }

  .subtitle.h-3 {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }
  
  .subtitle.h-3 span {
    font-size: 1rem;
  }
  
  @media (min-width: 768px) {
    .subtitle {
      font-size: 6.875rem;
    }
  
    .subtitle span {
      font-size: 1.5rem;
    }

    .subtitle.h-3 {
      font-size: 3.5rem;
      line-height: 1.25;
      margin-bottom: 80px;
    }
    
    .subtitle.h-3 span {
      display: block;
      font-size: 1.5rem;
      font-weight: 600;
      padding-top: 0.75em;
    }
  }
  
  .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(odd) {
    flex-direction: column-reverse;
  }
  
  .sec--about img {
    display: block;
    border: solid 3px var(--main-color);
    width: 100%;
  }

  .sec--about .logo-img {
    border: solid 3px var(--main-color);
    box-sizing: border-box;    /* paddingを含めて幅計算 */
    display: flex;             /* 中央寄せ */
    align-items: center;
    justify-content: center;
  }

  .logo-img img {
    border: none;
    max-width: 100%;           /* 枠内に収める */
    height: auto;
  }

  .sec--about__text-bold {
    font-weight: bold;
  }
  
  .sec--about__text {
    text-align: justify;
  }

  .sec--about__text:nth-of-type(2n) {
    padding-top: 1em;
  }

  .sec--about__enWrap {
    margin-top: 1.5rem;
  }
  
  .sec--about__text__en {
    padding-top: 1rem;
  }

  .sec--about__enWrap .sec--about__text__en:first-of-type {
    padding-top: 0rem;
  }

  .logo-img.blue-studio {
    padding: 4.8rem 3.125rem;
  }

  .logo-img.new-horizon {
    padding: 3.5rem 6.8rem;
  }

  .logo-img.ew {
    padding: 3.75rem 6.75rem;
  }

  .logo-img.tsukimidai {
    padding: 4.25rem;
  }

  .sec--about__concept {
    margin-bottom: 1rem;
  }

  .sec--about__newsWrap {
    padding: 0;
  }

  .sec--about__newsWrap li {
    margin-bottom: 1.5rem;
  }

  .media-pics__heading {
    font-weight: bold;
  }

  .media-pics__link {
    text-underline-offset: 5px;
    font-size: 0.9rem;
  }
  
  @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(odd) {
      flex-direction: row;
    }
  
    .sec--about img {
      width: 50%;
    }

    .sec--about__enWrap {
      margin-top: 2rem;
    }

    .logo-img.blue-studio {
      padding: 7.5rem 4.125rem;
    }

    .logo-img.new-horizon {
      padding: 4.875rem 10.25rem;
    }

    .logo-img.ew {
      padding: 6rem 10.75rem;
    }

    .logo-img.tsukimidai {
      padding: 7rem 4.25rem;
    }

    .logo__blue-studio{
      min-width: 421.23px;
    }

    .logo__new-horizon {
      min-width: 227px;
    }

    .logo__ew {
      min-width: 208px;
    }

    .logo__tsukimidai {
      min-width: 419px;
    }

    .sec--about__newsWrap li {
      margin-bottom: 2rem;
    }
  }
  
  /* 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;
    }
  }