html,
body {
  margin: 0;
  padding: 0;
}

a {
  color: inherit; /* 親要素の色を継承 */
  text-decoration: none; /* 下線を消す */
}

.header-bar {
  display: block;
  width: 100%;
  height: 100px;
  background-color: #611b2f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 1000;
}

.brand-2 {
  width: 150px;
  height: 100%;
  background-image: url("./assets/logo-redvalue.png");
  background-position: 50%;
  background-size: cover;
}

.bg-section {
  background-image: url("./assets/background-stone.jpg");
  background-size: cover;
}

.section-intro {
  margin: 0 auto; /* ブロック要素を中央に配置 */
  padding-top: 100px;
  width: 80%;
}

.title {
  font-family: "Droid Serif", serif;
  text-align: center;
  color: #611b2f;
  font-weight: bold;
}
.explain {
  font-family: "Droid Serif", serif;
  text-align: justify;
  font-size: 14px;
  color: #5f4d5d;
  line-height: 2.2;
  margin: 20px;
  text-align: center; /* テキストを中央揃えにする */
}
.button {
  margin: 20px;

  display: inline-block;
  font-family: "Droid Serif", serif;
  padding: 10px 20px;
  font-size: 16px;
  color: #611b2f;
  background-color: transparent;
  border: 2px solid #611b2f;
  border-radius: 9999px; /* 半円の形状 */
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.button:hover {
  background-color: #8a2f45;
  color: #fff;
}

.section-explain {
  margin-top: 100px;
}

.section-detail {
  margin-top: 100px;
  padding-bottom: 100px;
}

.section-menu {
  border: 0px; /* 白色の枠線を追加 */
  padding: 60px;
  text-align: center;
  background-image: url("./assets/backgroun-wine.jpg");
  background-color: rgba(43, 9, 19, 0.819);
  background-blend-mode: darken;
  background-position: center;
  background-repeat: no-repeat; /* 背景画像は繰り返さない */
  background-size: cover; /* 超えたらズーム */
}

@media (min-width: 992px) {
  .image-slide img {
    width: 70%;
    height: auto;
  }
  .menu-slide {
    position: relative;
    left: -20%; /* 左に20px移動して重ねる */
    bottom: 10%;
    width: 100%;
    padding: 10px;
    background-color: rgba(109, 33, 54, 0.936);
  }

  .menu-title {
    font-family: "Droid Serif", serif;
    color: #ffffff; /* 白色の文字色 */
    font-size: min(
      1.7vw,
      20px
    ); /* フォントサイズを相対的に指定し、最大サイズを16pxに設定 */
  }

  .promotion-explain {
    background-color: #ffffffa5;
    font-family: "Droid Serif", serif;
    color: #000000; /* 文字色を黒に設定 */
    display: inline-block;
    width: auto; /* 文字の分だけwidth */
    margin: 0 auto; /* 親の中央に配置 */
    font-size: min(1.4vw, 16px);
    padding: 4px;
    border: 0;
  }

  .menu-price {
    font-family: "Droid Serif", serif;
    margin-top: 10px;
    color: #fff;
    font-size: min(1.4vw, 16px);
  }

  .menu-explain {
    font-family: "Droid Serif", serif;
    display: block;
    margin: 0 auto;
    color: #fff;
    width: 80%;
    font-size: min(1.2vw, 14px);
    margin-bottom: 20px;
  }

  .purchase-button {
    display: inline-block;
    font-family: "Droid Serif", serif;
    padding: 10px 20px;
    font-size: 16px;
    color: #611b2f;
    background-color: #fff;
    border: 2px solid #611b2f;
    border-radius: 9999px; /* 半円の形状 */
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .purchase-button:hover {
    background-color: #8a2f45;
    color: #fff;
  }

  .change-text {
    color: #fff;
    font-family: "Droid Serif", serif;
    font-size: min(1.2vw, 14px);
  }
}
@media (max-width: 992px) {
  .menu-slide {
    position: relative;
    width: 100%;
    padding: 10px;
    background-color: rgba(109, 33, 54);
  }
  .image-slide img {
    width: 100%;
    height: auto;
  }

  .menu-title {
    font-family: "Droid Serif", serif;
    color: #ffffff; /* 白色の文字色 */
    font-size: 20px;
  }

  .promotion-explain {
    background-color: #ffffffa5;
    font-family: "Droid Serif", serif;
    color: #000000; /* 文字色を黒に設定 */
    display: inline-block;
    width: auto; /* 文字の分だけwidth */
    margin: 0 auto; /* 親の中央に配置 */
    font-size: 14px;
    padding: 4px;
    border: 0;
  }

  .menu-price {
    font-family: "Droid Serif", serif;
    margin-top: 10px;
    color: #fff;
    font-size: 14px;
  }

  .menu-explain {
    font-family: "Droid Serif", serif;
    display: block;
    margin: 0 auto;
    color: #fff;
    width: 80%;
    font-size: 12px;
    margin-bottom: 20px;
  }

  .purchase-button {
    display: inline-block;
    font-family: "Droid Serif", serif;
    padding: 10px 20px;
    font-size: 16px;
    color: #611b2f;
    background-color: #fff;
    border: 2px solid #611b2f;
    border-radius: 9999px; /* 半円の形状 */
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-bottom: 24px;
  }

  .purchase-button:hover {
    background-color: #8a2f45;
    color: #fff;
  }

  .change-text {
    color: #fff;
    font-family: "Droid Serif", serif;
    font-size: 12px;
  }
}

.menu-gold {
  background-color: rgba(173, 152, 58);
}

.menu-premium {
  background-color: rgba(61, 21, 59);
}

/* Start of Selection */

.dli-caret-circle-fill-left {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 2em; /* サイズを2emにしました */
  height: 2em; /* サイズを2emにしました */
  border: 0.1875em solid currentColor; /* サイズに合わせて調整 */
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}

.dli-caret-circle-fill-left::before {
  content: "";
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.45em 0.77942em; /* サイズを2emに合わせて調整 */
  border-right-color: currentColor;
  border-left: 0;
  transform: translateX(-15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.dli-caret-circle-fill-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 2em; /* サイズを2emにしました */
  height: 2em; /* サイズを2emにしました */
  border: 0.1875em solid currentColor; /* サイズに合わせて調整 */
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}

.dli-caret-circle-fill-right::before {
  content: "";
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.45em 0.77942em; /* サイズを2emに合わせて調整 */
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* End of Selection */
.footer-bar {
  display: block;
  width: 100%;
  height: 100px;
  background-color: #611b2f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 1000;
}
