body {
  background-color: #fffdf8;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  color: #3e3e3e;
  text-align: center;
}

.page {
  max-width: 720px;
  margin: 40px auto 60px;
  padding: 0 16px;
  text-align: left;
}

.card {
  background-color: #fff;
  border: 1px solid #e7d8c3;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 28px 28px;
  box-shadow: 0 1px 3px rgba(180,130,80,0.05);
}

.header {
  padding-bottom: 8px;
}

.title {
  font-size: 31px;
  font-weight: 500;
  color: #7b4b26;
  margin: 0 0 12px;
}

.desc {
  font-size: 18px;
  color: #6d4c41;
  margin: 0 0 18px;
}

.q-title {
  font-size: 23px;
  font-weight: 500;
  color: #5d4037;
  margin: 0px 0 14px;
  border-bottom: 1px solid #e7d8c3;
  padding-bottom: 6px;
}

.req {
  color: #c75b39;
  margin-left: 4px;
}

.choice {
  display: flex;
  align-items: flex-start;
  margin: 30px 0;
  font-size: 18px;
}

.choice input[type="radio"] {
  width: 24px;
  height: 24px;
  accent-color: #d87b4a;
  margin-right: 12px;
  margin-top: 4px;
}

/* スマホ時のみサイズ拡大 */
@media screen and (max-width: 768px) {
  .choice span,
  .menu-info {
    display: block;
  }

  .choice {
    margin: 30px 0;
  }

  .choice input[type="radio"] {
    width: 30px !important;
    height: 30px !important;
    margin-right: 14px;
    margin-top: 6px;
    transform: scale(1.25);
    transform-origin: center;
  }
}

.menu-info {
  display: flex;
  flex-direction: column;
}

.menu-name {
  font-weight: 500;
  font-size: 20px;
}

.menu-price {
  color: #d87b4a;
  font-weight: 500;
  font-size: 20px;
  margin-top: 3px;
  margin-bottom: 6px;
}

.menu-desc {
  font-size: 16px;
  color: #777;
  margin: 0;
  line-height: 1.6;
}

.btn-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 26px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  background-color: #d87b4a;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  background-color: #c36d3e;
}

.btn-primary:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.multi-note {
  color: #3e3e3e;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 10px;
}

iframe {
  border: 0;
  width: 100%;
  height: 360px;
  border-radius: 8px;
}

.notice-box {
  background: #fff7ee;
  border: 1px solid #e7d8c3;
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.8;
  color: #5d4037;
}

.btn-secondary {
  transform: scale(0.7);
  transform-origin: left top;
}

.footer {
  text-align: center;
  color: #8d6e63;
  font-size: 14px;
  margin-top: 40px;
  line-height: 1.7;
}

.notice-box u {
  text-decoration: underline;
}

.note {
  font-size: 15px;
  color: #5d4037;
  margin-top: 10px;
}

.cancel-btn {
  background: none;
  border: none;
  color: #d87b4a;
  font-size: 16px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.cancel-btn:hover {
  color: #b85c2a;
}

/* === 追従ボタンエリア === */
.sticky-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fffdf8;
  border-top: 2px solid #e7d8c3;
  z-index: 999;
  display: flex;
  justify-content: center;
}

.sticky-area {
  width: 100%;
  max-width: 720px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 左グループ（ボタン＋注釈） */
.sticky-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 右端キャンセル */
.sticky-cancel {
  margin-top: 0;
  color: #b85c2a;
  font-size: 15px;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
}

.sticky-cancel:hover {
  color: #a14e21;
}

/* === 📱スマホ時：stickyエリアをbtn-area風に === */
@media screen and (max-width: 768px) {
  .sticky-area {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px 16px;
    gap: 10px;
  }

  .sticky-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .sticky-cancel {
    align-self: flex-start;
    font-size: 16px;
    margin-top: 0;
  }

  /* ボタンエリア風に全体を見やすく */
  .sticky-wrapper {
    border-top: 1px solid #e7d8c3;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
  }

  /* 注釈文字もbtn-areaと統一感を持たせる */
  .multi-note {
    font-size: 15px;
    color: #3e3e3e;
    margin-left: 10px;
  }
}



.tel-link {
    color: inherit;        /* 文字色は変えない */
    text-decoration: underline; /* 下線のみ */
}
