@charset "UTF-8";
/* ==========================================================================
   index (top page)  design canvas: 1500 × 3948
   ========================================================================== */

/* ---------------------------------------------------------------- hero --- */
/* デザイン: 1500 × 823 (54.87vw) */
.hero {
  position: relative;
  height: clamp(420px, 54.87vw, 823px);
  overflow: hidden;
  background: #000;
}
.hero-slider,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 100%;
}
.hero-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* デザイン: title.svg 895 × 301 / left 101 / bottom 98 */
.hero-title {
  position: absolute;
  left: 6.73%;
  bottom: 11.94%;
  width: 59.67%;
  max-width: 895px;
  margin: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-title img {
  width: 100%;
  height: auto;
}
/* デザイン: ドット φ8 / 間隔 21 / bottom 40 */
.hero-dots.carousel-indicators {
  margin: 0;
  bottom: 40px;
  gap: 13px;
  z-index: 3;
}
.hero-dots.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
  text-indent: -9999px;
}
.hero-dots.carousel-indicators .active {
  background: var(--c-red);
}

/* --------------------------------------------------------------- to eat --- */
/* デザイン: 1500 × 213 / #9A011A */
.to-eat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  height: 213px;
  background: var(--c-red);
}
/* 訪問済み・ホバーでも文字色は白のまま */
.to-eat,
.to-eat:visited,
.to-eat:hover,
.to-eat:focus,
.to-eat:active {
  color: var(--c-white);
}
.to-eat:hover {
  opacity: 1;
  background: #b00220;
}
.to-eat-ico img {
  width: 27px;
  height: auto;
  display: block;
}
.to-eat-txt {
  font-size: 3.1875rem; /* 51px */
  line-height: 1.2;
  white-space: nowrap;
}
.to-eat-arrow {
  margin-left: 46px;
}
.to-eat-arrow img {
  width: 40px;
  height: 40px;
  display: block;
}

/* ---------------------------------------------------------- dark block --- */
.dark-block {
  background: var(--c-dark) url(../img/index/bg-dark.jpg) no-repeat center top;
  background-size: cover;
  color: var(--c-white);
}
.visual-full img {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------------------------- what is tosa kuroushi --- */
.sec-about {
  padding-top: 53px;
  text-align: center;
}
.sec-about-title {
  margin-bottom: 14px;
}
.sec-about-lead {
  max-width: 720px;
  margin-inline: auto;
}
.sec-about-btn {
  margin-top: 1.5rem;
}

/* movie: デザイン 1000 × 506 */
.movie {
  position: relative;
  margin-top: 64px;
  aspect-ratio: 1000 / 506;
  background: #000;
}
.movie-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.movie-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 111px;
  height: 111px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.movie-play:hover {
  opacity: 0.75;
}
.movie.is-playing .movie-play {
  opacity: 0;
  visibility: hidden;
}
.movie-play img {
  width: 100%;
  height: 100%;
  display: block;
}

/* photo slider（本番サイトの .photo-slider と同じ slick 構成） */
.photo-wrap {
  margin-top: 61px;
  overflow: hidden;
}
.photo-slider .sli {
  padding: 0 15px;
}
.photo-slider .sli img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}
/* slick 初期化前に縦積みで見えてしまうのを防ぐ */
.photo-slider:not(.slick-initialized) {
  display: flex;
}
.photo-slider:not(.slick-initialized) .sli {
  flex: 0 0 33.333%;
}

/* -------------------------------------------------------------- voices --- */
.sec-voices {
  padding-top: 73px;
}
.voices-row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.voices-photo {
  flex: 0 0 52.2%; /* 522 / 1000 */
  max-width: 522px;
}
.voices-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.voices-body {
  flex: 1 1 auto;
  padding-top: 88px;
}
.voices-body .sec-title {
  margin-bottom: 18px;
}
.voices-body .sec-lead {
  margin-bottom: 30px;
}

/* ------------------------------------------------------------- banners --- */
.sec-banner {
  padding-top: 162px;
  padding-bottom: 136px;
}
.banner-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 97px;
  flex-wrap: wrap;
}
.banner-list img {
  width: 390px;
  height: auto;
  display: block;
}

/* ---------------------------------------------------------- responsive --- */
@media (max-width: 991.98px) {
  .hero {
    height: clamp(380px, 70vw, 640px);
  }
  .hero-title {
    left: 50%;
    transform: translateX(-50%);
    width: 74%;
    bottom: 16%;
  }
  .hero-dots.carousel-indicators {
    bottom: 22px;
  }

  .to-eat {
    height: 130px;
    gap: 18px;
  }
  .to-eat-txt {
    font-size: 2rem;
  }
  .to-eat-ico img {
    width: 20px;
  }
  .to-eat-arrow {
    margin-left: 16px;
  }
  .to-eat-arrow img {
    width: 30px;
    height: 30px;
  }

  .sec-about {
    padding-top: 40px;
  }
  .sec-about-title {
    margin-bottom: 16px;
  }
  .movie {
    margin-top: 40px;
  }
  .movie-play {
    width: 72px;
    height: 72px;
  }
  .photo-wrap {
    margin-top: 40px;
  }
  .photo-slider .sli img {
    height: 160px;
  }

  .sec-voices {
    padding-top: 50px;
  }
  .voices-row {
    flex-direction: column;
    gap: 24px;
  }
  .voices-photo {
    flex: none;
    width: 100%;
    max-width: none;
  }
  .voices-body {
    padding-top: 0;
  }

  .sec-banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  /* SP は縦積みにして、ミートプロのバナーを上に出す */
  .banner-list {
    flex-direction: column;
    gap: 24px;
  }
  .banner-list .bnr-meatpro {
    order: -1;
  }
  .banner-list img {
    width: 100%;
    max-width: 390px;
  }
}

/* --------------------------------------------------------------- SP --- */
/* SP デザイン（375 × 2777）に合わせた調整 */
@media (max-width: 767.98px) {
  /* ヒーロー: 375 × 530 */
  .hero {
    height: auto;
    aspect-ratio: 375 / 530;
    max-height: 620px;
  }
  /* タイトル: left 28 / 幅 319 / 下端から 55 */
  .hero-title {
    width: 85.07%;
    bottom: 10.4%;
  }

  /* To Eat: 高さ 85 */
  .to-eat {
    height: 85px;
    gap: 12px;
  }
  .to-eat-txt {
    font-size: 1.125rem; /* 18px */
  }
  .to-eat-ico img {
    width: 13px;
  }
  .to-eat-arrow {
    margin-left: 10px;
  }
  .to-eat-arrow img {
    width: 20px;
    height: 20px;
  }

  /* 写真スライダー: 画像 161 × 120 / スライド間 15 */
  .photo-slider .sli {
    padding: 0 7px;
  }
  .photo-slider .sli img {
    height: 120px;
  }

  /* 動画: 全幅 375 × 220 */
  .movie {
    width: calc(100% + var(--gutter) * 2);
    margin-inline: calc(var(--gutter) * -1);
    aspect-ratio: 375 / 220;
  }
  .movie-play {
    width: 64px;
    height: 64px;
  }

  /* 生産者の声: 見出し・本文とも中央寄せ */
  .voices-body {
    text-align: center;
  }
  .voices-body .btn-more {
    margin-inline: auto;
  }
}
