/***********************************************
 * ベーススタイル
 ***********************************************/
body {
  margin: 0;
  padding: 0;
  background-color: #f9f7e8;
  font-family: sans-serif;
}
/* メニュー全体セクション */
#menu {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
#menu.appear {
  opacity: 1;
  transform: translateY(0);
}

/***********************************************
 * 2カラムレイアウト
 ***********************************************/
.menu-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
.menu-box {
  width: 48%;
  position: relative;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
}
.menu-box.visible {
  opacity: 1;
  transform: translateY(0);
}

/***********************************************
 * 画像・テキスト
 ***********************************************/
.menu-image {
  width: 65%; 
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 10px auto;
  display: block;
}
.menu-item-title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 5px;
  color: #333;
}
.menu-item-desc {
  font-size: 18px;
  color: #666;
  margin-bottom: 10px;
  position: relative;
}
.menu-item-desc::after {
  content: "";
  display: block;
  width: 50%;
  height: 2px;
  background-color: #003366;
  margin: 5px auto 0 auto;
}

/***********************************************
 * LUNCH Menu 見出し
 ***********************************************/
.lunch-title-wrapper {
  position: relative;
  overflow: hidden;
  text-align: left;
  color: #007BFF;
  margin-bottom: 20px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0s, transform 0.5s ease 0s;
}
.lunch-title-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: currentColor;
  width: 0;
  transition: width 1.5s ease;
}
.lunch-title {
  font-family: 'Pacifico', cursive;
  font-size: 4.5rem;
  margin: 0;
}
.lunch-subtitle {
  font-family: inherit;
  font-size: inherit;
  display: block;
  margin-top: 10px;
  opacity: 0.8;
}
.lunch-title-wrapper.animate {
  opacity: 1;
  transform: translateY(0);
}
.lunch-title-wrapper.animate .lunch-title-line {
  width: 100%;
}

/***********************************************
 * Set Drinks 見出し
 ***********************************************/
.drink-title-wrapper {
  position: relative;
  overflow: hidden;
  text-align: left;
  color: #78C2A4;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0s, transform 0.8s ease 0s;
}
.drink-title-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: currentColor;
  width: 0;
  transition: width 2s ease;
}
.drink-title {
  font-family: 'Pacifico', cursive;
  font-size: 3rem;
  margin: 0;
}
.drink-subtitle {
  font-size: 1.5rem;
  display: block;
  margin-top: 10px;
  color: #666;
  font-family: sans-serif;
  line-height: 1.5;
  white-space: nowrap;
}
.set-drink-title,
.set-drink-info {
  display: inline;
}
.single-drink {
  display: block;
}
@media (max-width: 768px) {
  .drink-title {
    font-size: 2.5rem;
    text-align: center;
  }
  .drink-subtitle {
    font-size: 1.3rem;
    text-align: center;
    white-space: normal;
  }
  .set-drink-title,
  .set-drink-info,
  .single-drink {
    display: block;
  }
}
.drink-title-wrapper.animate {
  opacity: 1;
  transform: translateY(0);
}
.drink-title-wrapper.animate .drink-title-line {
  width: 100%;
}
.drink-items {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin-left: 20px;
  text-align: left;
}

/***********************************************
 * スマホ対応
 ***********************************************/
@media (max-width: 768px) {
  .menu-section {
    flex-direction: column;
    align-items: center;
  }
  .menu-box {
    width: 100%;
    margin-bottom: 0;
  }
  .menu-image {
    width: 90%;
  }
  .menu-item-title {
    font-size: 20px;
  }
  .menu-item-desc {
    font-size: 16px;
  }
  .lunch-title {
    font-size: 3rem;
  }
  .drink-items {
    margin-left: 0;
    text-align: center;
  }
  .menu-item-title .break-line {
    display: block;
  }
}
