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

/* プログラム全体のコンテナ */
.program-container {
  background: #E9E5EA;
  width: 92%;
  margin: 0 0 0 0;
  padding: 13px;
  color: #550000;
}

/* プログラムヘッダー */
.program-header {
  font-size: 13px;
  font-family: 'Noto Serif Japanese', serif;
  letter-spacing: 1.5px;
  color: #550000;
  text-align: center;
  border-top: 1px solid #550000;
  border-bottom: 1px solid #550000;
  padding: 7px;
  width: 95%;
  font-weight: bold;
  margin-bottom: 1em;
}

/* プログラム項目の共通スタイル */
.program-item {
  margin-bottom: 1.5em;
}

.program-item:last-of-type {
  margin-bottom: 1em;
}

/* 楽曲タイトル */
.song-title {
  font-size: 13px;
  font-family: 'Noto Serif Japanese', serif;
  letter-spacing: 1.5px;
  color: #550000;
  text-align: center;
  width: 95%;
  font-weight: bold;
  margin-bottom: 0.3em;
}

/* 映画情報 */
.movie-info {
  font-size: 13px;
  font-family: 'Noto Serif Japanese', serif;
  letter-spacing: 1.5px;
  color: #550000;
  text-align: center;
  width: 95%;
  font-weight: bold;
}

/* 注意書き */
.program-note {
  font-size: 13px;
  font-family: 'Noto Serif Japanese', serif;
  letter-spacing: 1.5px;
  color: #550000;
  text-align: center;
  width: 95%;
  font-weight: bold;
}

.program-note div {
  margin-bottom: 0.2em;
}

.program-note div:last-child {
  margin-bottom: 0;
}


/* コラボメニュー全体のコンテナ */
.collabo-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.collabo-title {
  padding-top: 10px;
}

/* バナー画像 */
.collabo-banner {
  padding: 0;
  margin: 0;
}

.collabo-banner img {
  height: auto;
  display: block;
}

/* 説明文セクション */
.collabo-description {
  padding: 5px;
  margin: 0;
  border: 1px solid #000;
  width: 100%;
  background: #5A1800;
}

.collabo-description p {
  color: #fff;
  padding: 10px 10px 0 20px;
  margin: 0;
  line-height: 1.6;
}

/* セクションタイトル */
.section-title {
  color: #dc143c;
  font-weight: bold;
  margin: 0 0 1em 0;
  padding: 10px 0 0 0;
	font-size: 16px;
}

/* スペシャルプランセクション */
.special-plan-section {
  padding: 5px;
  margin: 0;
  border: 1px solid #000;
  width: 100%;
  background: #000;
}

.plan-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  margin-bottom: 1em;
}

.champagne-image {
  flex-shrink: 0;
  height: auto;
  width: 150px;
}

.plan-text {
  flex: 1;
  color: #fff;
}

.plan-text p {
  margin: 0;
  line-height: 1.6;
}

.champagne-name {
  font-size: 12px;
  text-align: center;
  margin: 10px 0 0 0;
  padding: 10px 0 0 0;
  color: #e6b422;
  font-weight: bold;
letter-spacing: -0.05em
}

.plan-note {
  font-size: 10px;
  text-align: right;
  margin: 0;
  padding: 10px 20px 10px 0;
  color: #fff;
}

/* スペシャルメニューセクション */
.special-menu-section {
  padding: 5px;
  margin: 0;
  border: 1px solid #000;
  width: 100%;
  background: #000;
}

.special-menu-section hr {
  margin: 10px 0;
  border-color: #333;
}

/* 共通メニューアイテム */
.menu-item {
  margin-bottom: 2em;
  padding: 10px;
}

.menu-name {
  color: #dc143c;
  font-weight: bold;
  margin: 0 0 0.5em 0;
  font-size: 16px;
}

.price {
  margin-left: 0.5em;
}

.menu-description {
  color: #fff;
  line-height: 1.6;
}

.menu-description p {
  margin: 0 0 0.5em 0;
}

.menu-description ul {
  margin: 0.5em 0;
  padding-left: 1.5em;
  text-indent: -18px;	
	
}

.menu-description li {
  margin-bottom: 0.3em;
}

/* オーシャンプレート */
.ocean-plate .menu-image {
  width: 100%;
  max-width: 510px;
  height: auto;
  margin-bottom: 1em;
  display: block;
}

/* デザートセクション */
.dessert-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dessert-image {
  flex-shrink: 0;
  height: auto;
  width: 150px;
}

.dessert-details {
  flex: 1;
  padding-left: 10px;
}

.dessert-details .menu-name {
  margin-bottom: 0.8em;
}

.dessert-details .menu-description p {
  line-height: 1.6;
}

/* メニューフッター */
.menu-footer {
  margin-top: 2em;
  padding: 10px 20px 20px 0;
}

.menu-footer p {
  font-size: 10px;
  text-align: right;
  margin: 0;
  color: #fff;
  line-height: 1.4;
}

/* クリアフィックス */
.clear {
  clear: both;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
  .collabo-container,
  .collabo-description,
  .special-plan-section,
  .special-menu-section {
    width: 100%;
    max-width: 520px;
  }
  
  .plan-content,
  .dessert-content {
    flex-direction: column;
    align-items: center;
  }
  
  .champagne-image,
  .dessert-image {
    margin-bottom: 1em;
  }
  
  .dessert-details {
    padding-left: 0;
    text-align: center;
  }
  
  .menu-footer p {
    text-align: center;
  }
  
  .ocean-plate .menu-image {
    max-width: 100%;
  }
}

.pagetop {
	text-align:right;
	padding:10px 5px 0 0;
}







