/* -----------------------------------------------------------
   いちご素材ラインナップ：ページ固有の任意追加CSS
   ※ feature-page.css を読み込んだ後に追加してください。
   ----------------------------------------------------------- */

.feature-page--fraise {
  --feature-color-bg: #fff8f8;
  --feature-color-bg-soft: #fff2f2;
  --feature-color-accent: #f6d4d4;
  --feature-color-accent-deep: #9f3f3f;
  --feature-color-border: #f0dddd;
}

.feature-insert-image {
  margin: -10px 0 30px;
  text-align: center;
}

.feature-insert-image img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* 横スクロール案内：共通CSS側に実装済みであれば不要です */
.feature-nav__hint {
  display: none;
}

@media screen and (max-width: 767px) {
  .feature-nav__hint {
    position: absolute;
    top: -42px;
    left: 50%;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 9px 14px;
    border-radius: 10px;
    background: rgba(60, 60, 60, 0.88);
    color: #fff;
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
  }

  .feature-nav__hint::after {
    display: none;
  }

  .feature-nav__hint.is-hidden {
    opacity: 0;
  }
}
