/* =========================
  Reservation Page CSS
  1ファイル運用
========================= */

:root{
  --bg:#fff;
  --text:#1f2937;
  --muted:#6b7280;
  --line:#e5e7eb;
  --soft:#f8fafc;

  --accent:#e85b6c;  /* くすみコーラル */
  --accent2:#2a7f74; /* 落ち着いたグリーン */

  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 18px;
  --container: 980px;
}

/* 予約ページ全体 */
.ysl-reservation{
  background: var(--bg);
  color: var(--text);
}

/* 全体の幅・余白 */
.ysl-wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 18px 80px;
}

/* HERO */
.ysl-hero{
  padding: 10px 0 0;
}
.ysl-hero__img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* Section */
.ysl-sec{
  padding: 44px 0;
}
.ysl-sec--tight{
  padding-top: 22px;
  padding-bottom: 22px;
}

/* Title */
.ysl-title{
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: .02em;
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 30px);
}
.ysl-title span{
  display: block;
  margin-top: 6px;
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ysl-lead{
  text-align: center;
  color: var(--muted);
  line-height: 1.9;
  margin: 0 auto;
  max-width: 52rem;
}
.ysl-note{
  text-align: center;
  color: var(--muted);
  margin-top: 8px;
  font-size: 14px;
}

/* Grid：縦積み固定（文章量差で崩れない） */
.ysl-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}

/* Card */
.ysl-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

/* 見出し（ボタンっぽくしない） */
.ysl-card__head{
  display: block;
  margin-bottom: 10px;
}
.ysl-card__label{
  display: inline-block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ysl-card__title{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.ysl-card__sub{
  margin: 12px 0 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* Buttons */
.ysl-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .08s ease, box-shadow .12s ease, opacity .12s ease;
  user-select: none;
}
.ysl-btn:active{
  transform: translateY(1px);
}
.ysl-btn--accent{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(232,91,108,.25);
}
.ysl-btn--accent:hover{
  opacity: .92;
}
.ysl-btn--ghost{
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}
.ysl-btn--ghost:hover{
  box-shadow: 0 10px 24px rgba(0,0,0,.07);
}

/* URL line */
.ysl-linkline{
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  word-break: break-all;
}
.ysl-linkline a{
  color: var(--accent2);
  text-decoration: underline;
}

/* Copy box */
.ysl-copybox{
  margin-top: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

/* Copy bar */
.ysl-copybar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.ysl-copybar__title{
  font-weight: 900;
  font-size: 14px;
  color: var(--text);
}
.ysl-copybar__right{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Copy button */
.ysl-copybtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
}
.ysl-copybtn:active{
  transform: translateY(1px);
}
.ysl-copied{
  font-size: 12px;
  color: var(--muted);
}

/* Template list */
.ysl-template{
  background: transparent;
}
.ysl-list{
  margin: 0;
  padding-left: 0;
  list-style: none;
  line-height: 1.9;
}
.ysl-list li{
  padding: 14px 0;
  border-bottom: 1px dashed #e5e7eb;
}
.ysl-list li:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}
.ysl-list strong{
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

/* footer note */
.ysl-footer-note{
  text-align: center;
  color: var(--muted);
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
}

/* Mobile tightening */
@media (max-width: 480px){
  .ysl-wrap{ padding-left: 14px; padding-right: 14px; }
  .ysl-card{ padding: 16px; }
  .ysl-btn{ padding: 13px 14px; }
  .ysl-copybox{ padding: 14px; }
}

