@charset "UTF-8";
/* CSS Document */


/* COTTON CLUB NEW YEAR MENU Section */
.new-year-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

/* 赤背景エリア */
.new-year-section .red-bg-area {
  background-color: #950006;
  padding-bottom: 60px;
}

/* 黒背景エリア */
.new-year-section .black-bg-area {
  background-color: #000000;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* メイン画像 */
.new-year-section .main-image-container {
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
}

.new-year-section .main-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* ヘッダー装飾 */
.new-year-section .section-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
  position: relative;
}

.new-year-section .section-header::before,
.new-year-section .section-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c1a45d, transparent);
  margin: 20px auto;
}

.new-year-section .section-title {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.new-year-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #c1a45d;
}

.new-year-section .section-subtitle {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
  margin-top: 30px;
  /*text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);*/
}

/* イントロテキストラッパー */
.new-year-section .intro-text-wrapper {
  padding: 0 20px;
}

.new-year-section .intro-text {
  font-size: 0.9rem;
  line-height: 2;
  color: #ffffff;
  margin-bottom: 0;
  text-align: justify;
  padding: 0 10px;
  /*text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);*/
}

/* メインコンテンツ */
.new-year-section .content-wrapper {
  padding: 0 20px;
}

/* メニューカード（画像と情報を統合） */
.new-year-section .menu-card {
  background: #ffffff;
  border: 2px solid #c1a45d;
  margin: 0 0 40px 0;
  position: relative;
  overflow: hidden;
  /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);*/
}

/*.new-year-section .menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #950006, #c1a45d);
}*/

/* 画像エリア（カード内） */
.new-year-section .image-container {
  width: 100%;
  overflow: hidden;
}

.new-year-section .image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.new-year-section .menu-card:hover .image-container img {
  transform: scale(1.02);
}

/* メニュー情報エリア */
.new-year-section .menu-info {
  padding: 40px 30px;
}

.new-year-section .menu-title {
  font-size: 1.3rem;
  color: #950006;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.new-year-section .menu-price {
  color: #c1a45d;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.new-year-section .menu-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.9;
  margin-top: 20px;
}

/* 注意事項 */
.new-year-section .notes {
  margin-top: 40px;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.1);
/*  border-left: 4px solid #c1a45d;*/
  backdrop-filter: blur(10px);
}

.new-year-section .notes p {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.8;
}

.new-year-section .notes p:last-child {
  margin-bottom: 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .new-year-section .red-bg-area {
    padding-bottom: 50px;
  }

  .new-year-section .black-bg-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .new-year-section .main-image-container {
	  margin-top: 20px;
    margin-bottom: 20px;
  }

  .new-year-section .section-header {
    padding: 0 15px;
  }

  .new-year-section .section-title {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }

  .new-year-section .section-subtitle {
    font-size: 1rem;
  }

  .new-year-section .intro-text-wrapper {
    padding: 0 15px;
  }

  .new-year-section .intro-text {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .new-year-section .content-wrapper {
    padding: 0 15px;
  }

  .new-year-section .menu-info {
    padding: 30px 20px;
  }

  .new-year-section .menu-title {
    font-size: 1.3rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .new-year-section .menu-price {
    font-size: 1.6rem;
  }

  .new-year-section .menu-description {
    font-size: 0.95rem;
  }

  .new-year-section .notes {
    padding: 20px 15px;
  }

  .new-year-section .notes p {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 480px) {
  .new-year-section .red-bg-area {
    padding-bottom: 40px;
  }

  .new-year-section .black-bg-area {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .new-year-section .main-image-container {
	  margin-top: 10px;
    margin-bottom: 10px;
  }

  .new-year-section .section-header {
    padding: 0 12px;
  }

  .new-year-section .section-title {
    font-size: 1.3rem;
  }

  .new-year-section .section-subtitle {
    font-size: 0.95rem;
  }

  .new-year-section .intro-text-wrapper {
    padding: 0 12px;
  }

  .new-year-section .intro-text {
    font-size: 0.9rem;
  }

  .new-year-section .content-wrapper {
    padding: 0 12px;
  }

  .new-year-section .menu-info {
    padding: 25px 20px;
  }

  .new-year-section .menu-title {
    font-size: 1.2rem;
  }

  .new-year-section .menu-price {
    font-size: 1.5rem;
  }
}