/* --- 260521 STYLEセクション: PC 2列×2行グリッド + テキスト左上オーバーレイ --- */
@media (min-width: 768px) {
    .style-section__inner {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  
    .style-section__inner > .section-title {
      grid-column: 1 / -1;
      margin-bottom: 44px;
    }
  
    .style-section__inner > .style-card:first-of-type,
    .style-section__inner .style-card + .style-card {
      margin-top: 0;
    }
  
    .style-section__inner .style-card {
      display: block;
      position: relative;
      aspect-ratio: 720 / 480;
      background: transparent;
      overflow: hidden;
    }
  
    .style-section__inner .style-card--img-right {
      flex-direction: unset;
    }
  
    .style-section__inner .style-card__image {
      position: absolute;
      inset: 0;
      flex: none;
      max-width: none;
      width: 100%;
      height: 100%;
    }
  
    .style-section__inner .style-card__image img {
      width: 100%;
      height: 100%;
      min-height: 0;
      object-fit: cover;
    }
  
    .style-section__inner .style-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.05) 100%
      );
      z-index: 1;
      pointer-events: none;
    }
  
    .style-section__inner .style-card__body {
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 2;
      flex: none;
      width: 100%;
      max-width: 100%;
      padding: 28px 32px;
      box-sizing: border-box;
      justify-content: flex-start;
      background: transparent;
    }
  
    .style-section__inner .style-card__title {
      color: #fff;
      font-size: 28px;
      margin-bottom: 8px;
    }
  
    .style-section__inner .style-card__text {
      color: rgba(255, 255, 255, 0.9);
      font-size: 12px;
      line-height: 1.8;
      margin-bottom: 16px;
    }
  }

/* --- 260522 ハンバーガーメニュー: 3本線の下に「メニュー」テキスト --- */
.header_nav_humburger {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header_nav_humburger::after {
  content: "メニュー";
  display: block;
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #222736;
}

@media screen and (max-width: 768px) {
  .header_nav_humburger::after {
    content: none;
  }
}

/* --- 260527 about02: 1200×540 1枚表示（PC） --- */
@media (min-width: 768px) {
  .about-feature__image-full--about02 img {
    width: 100%;
    height: 540px;
    object-fit: cover;
  }
}
