/* ===== yoyaku2.html ページ専用スタイル ===== */
:root {
  --yq-bg: #F7F4EE;
  --yq-ink: #2B2521;
  --yq-sumi: #1E1B19;
  --yq-gold: #A9803C;
  --yq-gold-deep: #8A6A30;
  --yq-line: #DCD3C4;
  --yq-card: #FFFFFF;
  --yq-muted: #8C8175;
  --yq-serif: "Shippori Mincho", serif;
  --yq-sans: "Noto Sans JP", sans-serif;
}

/* ===== page title h2 ===== */
#main h2.h2-text {
  font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif !important;
  color: #4a3c2e !important;
  letter-spacing: -0.02em;
}

.page-title-sub {
  display: inline !important; /* sp.css の display:none を上書き */
  font-size: 29px;
  margin-left: 0.3em;
  white-space: nowrap; /* ご予約を途中で改行させない */
}

@media screen and (max-width: 782px) {
  #main h2.h2-text {
    font-size: 24px !important;
  }
  .page-title-sub {
    font-size: 22px;
  }
}

/* ===== yoyaku content ===== */
.yoyaku-wrap {
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--yq-sans);
}

/* === Intro === */
.yoyaku-intro {
  padding: 24px 0 8px;
  text-align: center;
}
.yoyaku-intro p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--yq-ink);
}

/* === Section === */
.yoyaku-section {
  padding: 16px 0 20px;
}
.yoyaku-section-title {
  font-family: var(--yq-sans);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--yq-ink);
  margin-bottom: 16px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 10px;
}
.yoyaku-section-title::before,
.yoyaku-section-title::after {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--yq-gold);
  display: inline-block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

/* === CTA Card === */
.yoyaku-cta-card {
  background: var(--yq-sumi);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 16px 0;
}
.yoyaku-cta-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(169,128,60,0.25);
  border-radius: 50%;
}
.yoyaku-card-label {
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--yq-gold);
  margin-bottom: 22px;
}
.yoyaku-card-sub {
  font-size: 16px;
  color: #C9BFA8;
  margin-top: 14px;
  margin-bottom: 0;
  letter-spacing: 0.03em;
}
a.yoyaku-btn-primary {
  display: inline-block;
  width: 100%;
  background: var(--yq-gold);
  color: #FFFFFF;
  font-family: var(--yq-serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-decoration: none;
  padding: 16px 0;
  border-radius: 2px;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a.yoyaku-btn-primary:hover {
  background: #BE9550;
  color: #FFFFFF;
  text-decoration: none;
}
.yoyaku-btn-primary:focus-visible {
  outline: 2px solid #F7F4EE;
  outline-offset: 3px;
}
.yoyaku-btn-arrow {
  margin-left: 10px;
}

/* === Steps === */
.yoyaku-steps {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.yoyaku-step {
  display: -webkit-box;
  display: flex;
  gap: 16px;
  padding-bottom: 22px;
  position: relative;
}
.yoyaku-step:last-child { padding-bottom: 0; }
.yoyaku-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 44px;
  width: 1px;
  height: calc(100% - 14px);
  background: var(--yq-line);
}
.yoyaku-step-num {
  -webkit-box-flex: 0;
  flex: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--yq-gold);
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-family: var(--yq-serif);
  font-size: 18px;
  color: var(--yq-gold-deep);
  background: #fff;
  z-index: 1;
}
.yoyaku-step-body h4 {
  font-family: var(--yq-serif);
  font-size: 23px;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 4px;
  letter-spacing: 0.06em;
  color: var(--yq-ink);
}
.yoyaku-step-body p {
  font-size: 17px;
  color: var(--yq-ink);
  line-height: 1.7;
}

/* === Phone Card === */
.yoyaku-phone-card {
  background: var(--yq-card);
  border: 1px solid var(--yq-line);
  border-radius: 4px;
  padding: 22px 20px;
  text-align: center;
}
.yoyaku-phone-label {
  font-size: 18px;
  color: var(--yq-ink);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.yoyaku-phone-number {
  display: inline-block;
  font-family: var(--yq-serif);
  font-size: 29px;
  font-weight: 600;
  color: var(--yq-ink);
  text-decoration: none;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.yoyaku-phone-number:hover { border-color: var(--yq-gold); }
.yoyaku-phone-hours {
  font-size: 16px;
  color: var(--yq-muted);
  line-height: 1.8;
}

/* === Notes (Web予約について) === */
.yoyaku-notes {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--color-card, #FFFFFF);
  border: 1px solid var(--yq-line);
  border-radius: 4px;
  padding: 16px 20px;
}
.yoyaku-notes li {
  font-size: 15px;
  color: var(--yq-ink);
  line-height: 1.8;
  padding: 6px 0 6px 1.2em;
  text-indent: -1.2em;
}
.yoyaku-notes li::before {
  content: "・";
  color: var(--yq-gold);
}
.yoyaku-notes a {
  color: var(--yq-gold-deep);
  text-decoration: underline;
}
.yoyaku-notes a:hover {
  color: var(--yq-gold);
}