.header {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding: clamp(20px, 4vw, 32px) 20px clamp(16px, 3vw, 24px);
  box-sizing: border-box;
  text-align: center;
}

body {
  margin: 0;
}

/* ロゴ：ヘッダー上部に中央配置 */
.logo {
  margin: 0 0 clamp(14px, 3vw, 24px);
}

.logo img {
  height: clamp(50px, 7vw, 90px);
}

.line{
  border: none;        /* デフォルトの線を消す */
  height: 1.5px;         /* 太さ */
  background-color: #333; /* 線の色 */
  width: calc(100% + 40px); /* .headerの左右padding(20px)分をはみ出させて端まで届かせる */
  margin-left: -20px;
  margin-right: -20px;
}

/* ハンバーガーボタン（モバイル用） */
.menu-btn,
.menu-close {
  display: none;
  background: none;
  border: none;
  font-size: 12px;
  letter-spacing: 0.15em;
  cursor: pointer;
}

/* ナビ全体：ロゴ下に横並びで中央配置 */
nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各リンク */
nav a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 550;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

/* オーダーメイド：虹色の「青」 */
nav a:hover {
  color: #3f7fd1;
}

/* HOME：どのページからでも虹色のグラデーションで表示 */
nav a[href="main.html"]:hover {
  background-image: linear-gradient(90deg, #e5484d, #c9a179, #e0b400, #7fad8f, #3f7fd1, #4a4e9e, #8e5fc4);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* 区切り線 */
nav .separator {
  color: #ccc;
  font-size: 21px;
  font-weight: 300;
  line-height: 1;
}

/* モバイル：ハンバーガーメニューに切り替え */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
    position: absolute;
    top: clamp(20px, 4vw, 32px);
    right: 24px;
  }

  .menu-body {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .menu-body.is-open {
    transform: translateX(0);
  }

  .menu-close {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
  }

  nav ul {
    flex-direction: column;
    gap: 28px;
  }

  .separator {
    display: none;
  }
}

/* ==== オーダー料金 ==== */
.order-page {
  max-width: 860px;
  margin: 0 auto 60px;
  padding: 0 20px;
  box-sizing: border-box;
}

.order-hero {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 14px;
  border-top: 3px solid #3f7fd1;
  opacity: 0.95;
}

.order-title {
  font-size: clamp(22px, 4vw, 28px);
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

/* オーダーメニュー1件分のカード。増やすときはこのブロックごとHTMLで複製する */
.order-item {
  border-top: 1px solid #ddd;
  padding: 28px 0;
}

.order-item-name {
  font-size: 18px;
  color: #333;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  border-left: 4px solid #4a4e9e;
  padding-left: 10px;
}

.order-price-list {
  margin: 0 0 14px;
  padding-left: 1.2em;
  line-height: 1.9;
}

.order-sublist {
  margin: 4px 0 0;
  padding-left: 1.2em;
  line-height: 1.9;
}

.order-item-note {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 8px;
}

.order-closing {
  border-top: 1px solid #ddd;
  padding: 28px 0 0;
  text-align: center;
  color: #444;
}

.order-closing p {
  line-height: 1.8;
  margin: 0;
}

/* ==== フッター ==== */
.footer {
  text-align: center;
  padding: 24px 20px;
  border-top: 1px solid #eee;
  color: #999;
  font-size: 12px;
}

.footer p {
  margin: 0;
}
