@charset "UTF-8";
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* 背景動画 */
  /* コンテンツ */
  /* 上のテキスト画像 */
  /* 黒背景帯（横幅100%） */
  /* ボタン */
  /* スマホ対応 */
}
.mv__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 135%;
  height: 135%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.mv__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
  width: 100%;
}
.mv__title {
  width: 90%;
  max-width: 900px;
  height: auto;
}
.mv__overlay {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv__logo {
  width: 300px;
  height: auto;
}
.mv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f7d200;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none !important;
  padding: 14px 40px;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
  position: relative;
}
.mv__btn::before {
  font-family: "Font Awesome 6 Free";
  content: "\f073";
  /* ← カレンダーアイコン (fa-calendar-days) */
  font-weight: 900;
  /* solidアイコンを出すために必須 */
  font-size: 18px;
  margin-right: 8px;
  display: inline-block;
}
.mv__btn:hover {
  background: #ffd900;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .mv__overlay {
    padding: 24px 0;
  }
  .mv__logo {
    width: 220px;
  }
  .mv__btn {
    font-size: 16px;
    padding: 12px 30px;
  }
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}
.scroll-down__text {
  color: #fff;
  font-size: 34px;
  letter-spacing: 2px;
  margin-bottom: 6px;
  opacity: 0.8;
}
.scroll-down__arrow {
  width: 12px;
  height: 12px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  animation: scrollArrow 1.6s infinite ease-in-out;
  opacity: 0.8;
}

/* 下方向にゆっくり動くモーション */
@keyframes scrollArrow {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0.8;
  }
  50% {
    transform: rotate(-45deg) translate(0, 8px);
    opacity: 0.4;
  }
  100% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0.8;
  }
}
.section-kodawari {
  background: #111;
  color: #fff;
  padding: 100px 20px;
}
.section-kodawari__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-kodawari__head {
  text-align: center;
  margin-bottom: 80px;
}
.section-kodawari__title {
  font-size: 32px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding-left: 60px;
}
.section-kodawari__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 40px;
  background: url("../img/title_h2.png") no-repeat center/contain;
}
.section-kodawari__subtitle {
  font-size: 16px;
  margin-top: 12px;
  opacity: 0.8;
}

/* ──────────────────────────────
   こだわりブロック
────────────────────────────── */
.kodawari-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
  /* 番号とタイトルを横並び */
  /* SP 調整（必要なら） */
  /* 左右反転バージョン */
}
.kodawari-item__img {
  flex: 1;
}
.kodawari-item__img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.kodawari-item__content {
  flex: 1;
}
.kodawari-item__head {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
.kodawari-item__num {
  font-size: 44px;
  font-weight: bold;
  color: #f7d200;
  line-height: 1;
  margin: 0;
  padding-top: 0.1em;
  /* 視覚調整。不要なら 0 に */
}
.kodawari-item__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .kodawari-item__num {
    font-size: 32px;
    padding-top: 0.06em;
  }
  .kodawari-item__title {
    font-size: 18px;
    line-height: 1.6;
  }
}
.kodawari-item__desc {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
}
.kodawari-item--left {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .kodawari-item {
    flex-direction: column !important;
    gap: 30px;
    margin-bottom: 60px;
  }
  .kodawari-item__num {
    font-size: 32px;
  }
  .kodawari-item__title {
    font-size: 18px;
  }
}

.section-menu {
  background: #23170b;
  color: #fff;
  padding: 60px 0;
}
.section-menu__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.section-menu__title {
  font-size: 32px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding-left: 60px;
  text-align: center;
  margin-bottom: 50px;
}
.section-menu__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 40px;
  background: url("../img/title_h2.png") no-repeat center/contain;
}
.section-menu__item {
  margin-bottom: 40px;
}
.section-menu__item-title {
  position: relative;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}
.section-menu__item-label {
  color: #f6c400;
  font-weight: 700;
  margin-right: 8px;
}
.section-menu__item-price {
  font-size: 16px;
  color: #ddd;
  white-space: nowrap;
  text-align: right;
}
.section-menu__item-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
@media (max-width: 768px) {
  .section-menu__item-body {
    display: block;
  }
}
.section-menu__item-img {
  flex: 0 0 47%;
}
.section-menu__item-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.section-menu__item-text {
  flex: 1;
  font-size: 14px;
  line-height: 2;
  color: #eaeaea;
  text-align: left;
}
.section-menu .section-topping {
  background: #23170b;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.section-menu .section-topping__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.section-menu .section-topping__title {
  position: relative;
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 10px 0;
}
.section-menu .section-topping__lead {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 50px;
}
.section-menu .section-topping__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.section-menu .section-topping__btn-wrap {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.section-menu .section-topping__btn-label {
  display: inline-block;
  background: #fff;
  color: #23170b;
  font-size: 14px;
  padding: 5px 15px;
  margin-bottom: 10px;
  border-radius: 3px;
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  top: -38px;
  border: 1px solid #f6c400;
  font-weight: bold;
  white-space: nowrap;
}
.section-menu .section-topping__btn {
  display: inline-block;
  background: #f6c400;
  color: #23170b;
  font-size: 20px;
  font-weight: 700;
  padding: 15px 100px;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  transition: background 0.3s;
}
.section-menu .section-topping__btn::before {
  content: "\f2e7";
  /* Font Awesome utensils */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  display: inline-block;
}
.section-menu .section-topping__btn:hover {
  background: #e0b000;
}
.section-menu .menu-list {
  list-style: none;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 800px;
  text-align: left;
}
.section-menu .menu-list .menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 6px;
}
.section-menu .menu-list .menu-item .menu-item__name {
  display: block;
  flex: 0.7;
}/*# sourceMappingURL=top.css.map */