@charset "UTF-8";
body {
  background-color: #fdfaf5;
  color: #333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
}

.menu-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}
@media (max-width: 600px) {
  .menu-wrapper {
    padding: 20px;
  }
}

.menu-header {
  text-align: center;
  border-bottom: 3px double #1a2a40;
  margin-bottom: 50px;
  padding-bottom: 20px;
}
.menu-header h1 {
  font-size: 2.5rem;
  margin: 0;
  letter-spacing: 0.2em;
  color: #1a2a40;
}
@media (max-width: 600px) {
  .menu-header h1 {
    font-size: 1.8rem;
  }
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  color: #1a2a40;
  border-left: 6px solid #b22222;
  padding-left: 15px;
  margin-top: 60px;
  margin-bottom: 20px;
}

.section-note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

/* メニューの並び（1列/2列） */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px 40px;
}
@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px dotted #ccc;
  padding: 8px 0;
}
.menu-item.highlight {
  display: block;
  background: #fffafa;
  border: 1px solid #b22222;
  padding: 15px;
  border-radius: 4px;
}
.menu-item.highlight .item-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  font-size: 1.2rem;
  color: #b22222;
}

.description {
  font-size: 0.85rem;
  color: #555;
  margin: 5px 0 0 0;
}

/* 注意書きボックス */
.alert {
  background-color: #fff4f4;
  border: 1px solid #ffcccc;
  padding: 15px;
  color: #d80000;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* テーブル（焼酎リスト） */
.shochu-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}

.shochu-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.shochu-table th, .shochu-table td {
  padding: 12px;
  border: 1px solid #eee;
  text-align: left;
}
.shochu-table th {
  background-color: #1a2a40;
  color: white;
}