@charset "UTF-8";
/* 丸カーソルのホバー */
/* お知らせ一覧 */
/* 大切なお知らせ（一覧） */
/* 商品一覧（４段組み） */
/* 商品一覧（４段組み／ホバーアクションズーム） */
/* 商品一覧（3段組み） */
/* 商品カテゴリー（3段組み） */
/* サムネイル付きリンク（３段） */
/* サムネイル付きリンク（３段／タイトルデザイン違い） */
/* 商品情報スライダー */
/* サイドバー（商品一覧） */
/* レシピ４段（スマホ横スクロール） */
/* レシピ４段（詳細ありスマホ横スクロール） */
/* レシピ探す一覧（４段組み） */
/* レシピ検索結果（3段組み） */
/* レシピのスペックアイコン */
/* レシピの材料と作り方2段 */
/* 角丸2段（右写真） */
.hero-area {
  height: 90vh;
  max-height: 1200px;
  width: 100%;
  border-radius: 40px 40px 40px 0;
}
@media screen and (max-width: 767px) {
  .hero-area {
    max-height: 500px;
    border-radius: 20px;
    margin-top: 16px;
    border-radius: 20px 20px 20px 0;
  }
}
.hero-area-slide {
  overflow: hidden;
}
.hero-area-slide-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-area .swiper-slide img {
  transform: scale(1);
  transition: transform 5s linear;
}
.hero-area .swiper-slide.swiper-slide-active img {
  transform: scale(1.08);
}

.scroll-nav {
  position: absolute;
  bottom: 40px;
  right: 25px;
  width: 21px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .scroll-nav {
    right: 2%;
    bottom: 20px;
  }
}
.scroll-nav-shape {
  width: 7px;
  height: 70px;
  overflow: hidden;
}
.scroll-nav-shape svg {
  transform: translateY(0);
  animation: scroll-nav 2.4s ease-out infinite;
}
.scroll-nav span {
  display: block;
  margin-top: 10px;
  color: #fff;
  writing-mode: vertical-rl;
  transform: translateX(-6px);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

@keyframes scroll-nav {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.indicator-container {
  position: absolute;
  top: 47%;
  right: 25px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .indicator-container {
    right: 2%;
  }
}
.indicator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 14px;
  letter-spacing: 0.05em;
}
.indicator-item > button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (hover: hover) and (pointer: fine) {
  .indicator-item > button:hover {
    cursor: pointer;
  }
}
.indicator-item:not(:last-child) {
  padding-bottom: 14px;
}
.indicator-item:last-child::after {
  content: none;
}
.indicator-item::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%224%22%20height%3D%224%22%20viewBox%3D%220%200%204%204%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%222%22%20cy%3D%222%22%20r%3D%222%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
}
.indicator-item .circle {
  position: absolute;
  top: 0;
  right: 0;
}
.indicator-item .circle-stroke {
  opacity: 0;
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: opacity 0.2s ease;
}
.indicator-item.active .circle-stroke {
  animation: stroke 5s linear forwards;
  animation-play-state: running;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.indicator-item.active.completed .circle-stroke {
  opacity: 0;
  stroke-dashoffset: 100;
  animation: none;
  transition: opacity 0s;
}

@keyframes stroke {
  to {
    stroke-dashoffset: 100;
  }
}/*# sourceMappingURL=heroarea.css.map */