:root {
  --main-bg: #fff;
  --header-footer-bg: #ffe8f0;
  --section-bg: #fff;
  --text-main: #242424;
  --text-muted: #7c7c7c;
  --accent: #e48ca4;
  --login-btn-color1: #e48ca4;
  --login-btn-color2: #f287b2;
  --login-btn-text-color: #fff;
  --table-bg: #fff;
  --table-th-bg: #fff5fa;
  --gallery-bg: #fff;
  --border-radius: 18px;
  --section-shadow: 0 2px 18px rgba(231, 176, 194, 0.10);
}

/* 1. 全体構造 */
html,
body {
  height: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: var(--main-bg);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-main);
}

/* 2. ヘッダー */
header {
  width: 100%;
  background: var(--header-footer-bg);
  border-bottom: 1px solid var(--section-bg);
  text-align: center;
  padding: 0;
  box-sizing: border-box;
}

header img {
  max-width: 370px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(200, 120, 144, 0.07);
}

header h1 {
  margin: 0;
  font-size: 1.5em;
  color: var(--accent);
  letter-spacing: 0.07em;
}

/* 3. メイン・セクション */
main {
  flex: 1 0 auto;
  max-width: 900px;
  margin: 15px auto 0 auto;
  background: var(--section-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--section-shadow);
  padding: 20px 32px 0px 32px;
  box-sizing: border-box;
  margin-bottom: 0 !important;
  color: var(--text-main);
}

/* 4. タイトル・見出し */
h1,
h2,
h3 {
  font-weight: 600;
  color: var(--accent);
  margin-top: 0;
  letter-spacing: 0.04em;
}

h1 {
  margin: 0;
  font-size: 1.8em;
  color: var(--h1-color);
  letter-spacing: 0.07em;
}

h2 {
  font-size: 1.5em;
  font-weight: bold;
  background: var(--h2-bg);
  color: var(--h2-color);
  border-left: 6px solid var(--accent);
  border-radius: 0 20px 20px 0;
  padding: 16px 24px 16px 16px;
  margin: 48px 0 0 0;
  line-height: 1.5;
  display: block;
  letter-spacing: 0.06em;
  box-sizing: border-box;
}

h3 {
  font-size: 1.3em;
  margin: 30px 0px 15px 05px;
}

/* h3, h4, h5, h6 をサブ文字色に */
h3,
h4,
h5,
h6 {
  color: var(--text-muted);
}

.catch-copy {
  font-size: 1.3em;
  margin: 13px 0 0 0;
  color: var(--accent);
  padding: 12px 15px 0 15px;
  border-radius: 9px;
}

.shop-intro {
  font-size: 1.2em;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding: 7px 0;
}

/* 5. リスト・テーブル */
ul {
  padding-left: 19px;
  margin: 8px 0 8px 0;
}

li {
  margin: 0 0 6px 0;
  color: var(--text-main);
}

/* SNSや関連リンクのURL表示を折り返し対応 */
ul li a {
  word-break: break-all;
  /* 英単語やURLでも強制的に改行 */
  overflow-wrap: break-word;
  /* できればこちらも指定 */
  display: inline-block;
  /* スマホで幅を制御しやすくする */
  max-width: 98vw;
  /* スマホで画面幅を超えないように */
  box-sizing: border-box;
  vertical-align: top;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--table-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 1px 8px rgba(200, 120, 144, 0.05);
  overflow: hidden;
  margin: 35px 0 24px 0;
}

th,
td {
  padding: 18px 16px;
  /* 余白を広めに */
  border-bottom: 1px solid var(--section-bg);
  font-size: 1.07em;
  color: var(--text-main);
  vertical-align: middle;
}

th {
  text-align: center;
  /* ★中央寄せ★ */
  color: var(--text-muted);
  background: var(--table-th-bg);
  font-weight: 700;
  letter-spacing: 0.06em;
  /* ちょっと立体感・影も */
  box-shadow: 0 2px 6px rgba(231, 176, 194, 0.08);
  /* 左右に角丸 */
  border-radius: 12px 0 0 12px;
  border-right: 2.5px solid var(--section-bg);
}

td {
  background: var(--table-bg);
  border-radius: 0 12px 12px 0;
}

tr:last-child th,
tr:last-child td {
  border-bottom: none;
}

/* 6. 画像関連 */
section {
  margin-bottom: 34px;
  background: transparent;
}

.intro-text-section {
  max-width: 800px;
  /* メインコンテンツの最大幅 */
  margin: 0 auto 2em auto;
  /* 中央寄せ */
  padding: 0;
}

.intro-text-content {
  line-height: 1.7;
  font-size: 1.1em;
  word-break: break-word;
  /* ここで左右余白が必要ならpadding: 0 24px; など */
}

.intro-text-content img {
  display: block;
  max-width: 100%;
  /* セクションの幅以上は拡大しない */
  height: auto;
  border-radius: 10px;
}

.intro-text-content picture {
  display: block;
  max-width: 100%;
  /* margin指定しない = 左寄せ */
}

/* Quillエディタ由来の中央/右/左寄せクラス対応 */
.ql-align-center img,
.ql-align-center picture,
.ql-align-center picture img {
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
}

.ql-align-right img,
.ql-align-right picture,
.ql-align-right picture img {
  margin-left: auto !important;
  margin-right: 0 !important;
  display: block;
}

.ql-align-left img,
.ql-align-left picture,
.ql-align-left picture img {
  margin-left: 0 !important;
  margin-right: auto !important;
  display: block;
}

.news img,
.coupon-info img,
.faq img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 12px 0;
  object-fit: contain;
  box-sizing: border-box;
  border-radius: 10px;
  background: var(--section-bg);
}

/* 7. ギャラリー画像 */
.gallery {
  width: 100%;
  margin: 35px auto 11px auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  /* ←これ重要 */
  box-sizing: border-box;
  /* 画像間が狭い場合はgapを調整 */
}

/* 画像1枚 */
.gallery-1 img {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

/* 画像2枚 */
.gallery-2 img {
  width: 49%;
  max-width: 400px;
  min-width: 110px;
}

/* 画像3枚 */
.gallery-3 img {
  width: 32%;
  max-width: 260px;
  min-width: 90px;
}

/* 画像4枚以上 */
.gallery-4 img,
.gallery-5 img,
.gallery-6 img,
.gallery-7 img,
.gallery-8 img {
  width: 23.5%;
  max-width: 170px;
  min-width: 75px;
}

/* 共通画像デザイン */
.gallery img {
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(231, 176, 194, 0.14);
  max-height: 160px;
  transition: transform 0.18s;
  border: 1.5px solid var(--header-footer-bg);
  background: var(--gallery-bg);
  object-fit: contain;
  display: block;
  box-sizing: border-box;
}

/* 画像ホバー時 */
.gallery img:hover {
  transform: scale(1.045);
  border-color: var(--accent);
}

.gallery-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3em;
  color: var(--accent);
  font-size: 1.14em;
  font-weight: 600;
  margin: 32px 0 36px 0;
  letter-spacing: 0.07em;
  background: none;
}

.gallery-heading::before,
.gallery-heading::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #fff0, var(--accent) 45%, var(--accent) 55%, #fff0);
  border-radius: 1px;
  min-width: 18px;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .gallery {
    gap: 7px;
  }

  .gallery-1 img {
    width: 97%;
    max-width: 99vw;
  }

  .gallery-2 img {
    width: 48%;
    max-width: 49vw;
  }

  .gallery-3 img {
    width: 31.5%;
    max-width: 33vw;
  }

  .gallery-4 img,
  .gallery-5 img,
  .gallery-6 img,
  .gallery-7 img,
  .gallery-8 img {
    width: 23.2%;
    max-width: 24vw;
  }
}

@media (max-width: 700px) {
  .gallery {
    gap: 6px;
    width: 100%;
  }

  .gallery-1 img {
    width: 98%;
    max-width: 98vw;
  }

  .gallery-2 img {
    width: 48%;
    max-width: 49vw;
  }

  .gallery-3 img {
    width: 98%;
    max-width: 98vw;
    margin: 0 auto 6px auto;
  }

  .gallery-4 img,
  .gallery-5 img,
  .gallery-6 img,
  .gallery-7 img,
  .gallery-8 img {
    width: 48%;
    max-width: 49vw;
  }
}

/* 8. お知らせなど */
.news,
.coupon-info,
.faq {
  background: var(--section-bg);
  border-radius: 10px;
  padding: 15px 17px;
  margin-bottom: 13px;
  color: var(--text-main);
  box-shadow: 0 1px 6px rgba(231, 176, 194, 0.07);
}

/* 9. リンク・ボタン */
a,
.btn,
button {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.12s, background 0.16s;
}

a:hover,
.btn:hover,
button:hover {
  text-decoration: underline;
  color: var(--link-color);
}

.btn,
button {
  background: var(--header-footer-bg);
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1em;
  margin: 8px 0;
  transition: background 0.13s;
  color: var(--text-muted);
}

.btn:hover,
button:hover {
  background: var(--accent);
  color: var(--text-muted);
}

.sns-links-list,
.sns-links-list2 {
  background: var(--section-bg);
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(231, 176, 194, 0.07);
  padding: 15px 22px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.sns-links-list {
  margin-top: 25px;
}

.sns-links-list2 {
  margin-bottom: 35px;
}

.sns-links-list li,
.sns-links-list2 li {
  margin-bottom: 8px;
}

.sns-links-list li:last-child,
.sns-links-list2 li:last-child {
  margin-bottom: 0;
}

/* 新規登録・ログイン特大ボタン */
.login-main-btn {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 36px auto 76px auto;
  padding: 28px 0 26px 0;
  font-size: 2rem;
  font-weight: 800;
  border: none;
  border-radius: 64px;
  background: linear-gradient(100deg, var(--login-btn-color1), var(--login-btn-color2) 70%);
  color: var(--login-btn-text-color);
  box-shadow:
    0 6px 24px 0 rgba(220, 140, 180, 0.18),
    0 2px 6px 0 rgba(255, 255, 255, 0.13) inset,
    0 2px 30px 0 rgba(255, 255, 255, 0.10) inset;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.06em;
  text-shadow:
    0 2px 6px rgba(80, 80, 80, 0.08),
    0 1px 24px rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 3;
  text-decoration: none !important;
  overflow: hidden;
  transition:
    transform 0.17s cubic-bezier(.33, 1.2, .68, 1),
    box-shadow 0.15s,
    filter 0.15s,
    background 0.27s;
  /* 光沢の擬似要素 */
}

.login-main-btn::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  border-radius: 64px 64px 48px 48px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06) 70%);
  opacity: 0.78;
  filter: blur(0.5px);
  z-index: 2;
  transition: opacity 0.27s;
}

.login-main-btn:hover::before {
  opacity: 0.97;
}

.login-main-btn:hover,
.login-main-btn:active {
  filter: brightness(1.08) saturate(1.13) contrast(1.02) drop-shadow(0 7px 24px rgba(231, 176, 194, 0.21));
  transform: translateY(-4px) scale(1.045);
  box-shadow:
    0 14px 42px 0 rgba(231, 176, 194, 0.25),
    0 4px 22px 0 rgba(255, 255, 255, 0.17) inset;
  color: var(--login-btn-text-color) !important;
  text-decoration: none !important;
}

.login-main-btn:active {
  filter: brightness(1.03) saturate(1.08);
  transform: scale(0.99) translateY(2px);
  box-shadow:
    0 4px 16px 0 rgba(231, 176, 194, 0.11),
    0 2px 7px 0 rgba(255, 255, 255, 0.08) inset;
}

/* LINE風ボタン（カラーパレット無効、緑で固定） */
.login-main-btn.custom-btn-line {
  background: linear-gradient(100deg, #06c755 50%, #43e860 100%) !important;
  color: #fff !important;
  text-shadow: 0 2px 7px rgba(10, 40, 14, 0.15);
}

.login-main-btn.custom-btn-line::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.07) 70%);
}

.login-main-btn.custom-btn-line:hover,
.login-main-btn.custom-btn-line:active {
  filter: brightness(1.10) saturate(1.22) contrast(1.05) drop-shadow(0 7px 24px rgba(36, 233, 131, 0.17));
  background: linear-gradient(100deg, #43e860 60%, #06c755 100%) !important;
}

@media (max-width: 650px) {
  .login-main-btn {
    font-size: 1.1rem;
    padding: 20px 0 19px 0;
    border-radius: 38px;
    max-width: 80vw;
  }
}

/* TOPに戻るボタンも同じカラーで連動 */
#backToTopBtn {
  display: none;
  /* 最初は非表示 */
  position: fixed;
  bottom: 40px;
  right: 24px;
  z-index: 9999;
  background: linear-gradient(135deg, var(--login-btn-color1), var(--login-btn-color2));
  color: var(--login-btn-text-color);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.3s;
}

#backToTopBtn.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: fadeInUp 0.3s;
}

#backToTopBtn svg {
  display: block;
  transform: translateX(-8px);
  /* ここをお好みで調整 */
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#backToTopBtn:hover {
  filter: brightness(1.05) saturate(1.1);
  background: linear-gradient(135deg, var(--login-btn-color2), var(--login-btn-color1));
}

/* 10. フッター（画面幅いっぱい＆余白無し） */
footer {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: var(--header-footer-bg);
  text-align: center;
  padding: 24px 0 12px 0;
  margin: 0;
  box-sizing: border-box;
  flex-shrink: 0;
  z-index: 2;
  border-radius: 0 0 0 0;
  color: var(--text-main);
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  display: flex;
  justify-content: center;
  gap: 22px;
}

footer li {
  display: inline;
}

footer small,
footer a {
  color: var(--text-muted);
}

.footer-copyright {
  margin: 8px 0 0 0;
  text-align: center;
}

/* アイコン（サービス内容・ご予約共通） */
.service-icon,
.reservation-info-card .icon {
  font-size: 1.36em;
  color: var(--accent);
  min-width: 32px;
  text-align: center;
  margin-right: 10px;
}

/* サービス内容 */
.service-info-card {
  background: var(--section-bg);
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(231, 176, 194, 0.11);
  padding: 40px 16px 20px 16px;
  margin: 35px 0 16px 0;
  border: 1.5px solid var(--accent);
}

.service-row {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

/* ラベル（サービス内容・ご予約共通） */
.service-label,
.reservation-info-card .label {
  font-weight: 600;
  color: var(--text-muted);
  min-width: 85px;
  margin-right: 7px;
  font-size: 1.07em;
}

/* 値（サービス内容・ご予約共通） */
.service-value,
.reservation-info-card .value {
  color: var(--text-main);
  font-size: 1.08em;
  line-height: 1.7;
}

/* サービス内容リスト */
.service-list {
  list-style: disc inside;
  margin: 0;
  padding-left: 1em;
  color: var(--text-main);
}

.service-list li {
  margin-bottom: 2px;
  font-size: 1em;
}

/* ご予約・ご利用案内 */
.reservation-info-card {
  background: var(--section-bg);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(231, 176, 194, 0.07);
  padding: 18px 16px;
  margin: 35px 0 30px 0;
  border: 1.5px solid var(--accent);
}

.reservation-info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.reservation-info-card li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--section-bg);
  padding: 9px 0;
}

.reservation-info-card li:last-child {
  border-bottom: none;
}

.reservation-info-card .value a {
  color: var(--link-color);
  font-weight: 600;
  text-decoration: underline;
  word-break: break-all;
}


/* レスポンシブ（スマホ等） */
@media (max-width: 700px) {

  main {
    max-width: 99vw;
    padding: 3vw 3vw 0 3vw;
    margin-top: 5px;
  }

  h1 {
    margin: 15px 0 0 0;
    font-size: 1.4em;
  }

  h2 {
    font-size: 1.12em;
    padding: 12px 10vw 12px 10px;
    margin: 32px 0 0 0;
  }

  .intro-text-section {
    max-width: 100vw;
    margin: 0 auto 1.5em auto;
    padding: 0;
  }

  .intro-text-section .intro-text-content {
    padding: 0 4vw;
    box-sizing: border-box;
  }

  .intro-text-section .intro-text-content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .gallery img {
    max-width: 96vw;
    max-height: 29vw;
  }

  table th,
  table td {
    padding: 10px 4vw;
    font-size: 0.97em;
  }

  .gallery img {
    max-height: 29vw;
    margin-bottom: 11px;
  }

  .sns-links-list,
  .sns-links-list2 {
    padding: 11px 8vw;
    max-width: 99vw;
  }

  footer ul {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
  }

  footer ul li {
    font-size: 0.9em;
    margin-right: 15px;
    /* ← これでliの右側に余白 */
  }

  footer ul li:last-child {
    margin-right: 0;
    /* 最後だけ余白消す */
  }

  footer ul li a {
    font-size: 0.9em;
  }

  footer {
    padding: 15px 0 15px 0;
    font-size: 0.9em;
  }

  .footer-copyright {
    margin: 2px 0 0 0;
    /* スマホは上マージンだけ最小限に */
    font-size: 0.9em;
  }

}

@media (max-width: 700px) {

  .reservation-info-card,
  .service-info-card {
    padding: 35px 20px;
  }

  .service-row,
  .reservation-info-card li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--section-bg);
    padding-bottom: 15px;
    gap: 0;
  }

  .reservation-info-card li {
    margin-bottom: 10px;
  }

  .service-row:last-child,
  .reservation-info-card li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  /* headline（アイコン＋ラベル）は共通で横並び、下に余白 */
  .headline {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
  }

  .service-icon,
  .icon {
    font-size: 1.13em;
    margin-right: 7px;
    min-width: 1.5em;
    text-align: center;
    line-height: 1.1;
  }

  .service-label,
  .label {
    font-size: 1.07em;
    margin-right: 0;
    min-width: 0;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.1;
  }

  .service-value,
  .service-list,
  .reservation-info-card .value {
    font-size: 1.07em;
    padding-left: 0;
    margin-top: 4px;
    margin-bottom: 0;
    word-break: break-word;
    color: var(--text-main);
  }

  .service-list {
    margin-left: 0;
    padding-left: 1.25em;
    margin-top: 4px;
  }
}

/* モーダルの全画面オーバーレイ */
.img-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 30, 30, 0.75);
  /* 半透明ダーク・どのテーマでもOK */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  backdrop-filter: blur(2px);
  transition: background 0.2s;
}

.img-modal.show {
  display: flex;
}

.img-modal-content {
  max-width: 96vw;
  max-height: 78vh;
  border-radius: 18px;
  box-shadow: 0 6px 40px 0 rgba(0, 0, 0, 0.30), 0 0 0 6px var(--accent, #e48ca4);
  border: 1.5px solid var(--accent, #e48ca4);
  background: var(--section-bg, #fff);
  object-fit: contain;
  animation: modal-in 0.28s cubic-bezier(.68, -0.55, .27, 1.55);
  margin-bottom: 15px;
}

/* モーダルアニメーション */
@keyframes modal-in {
  0% {
    transform: scale(0.95) translateY(40px);
    opacity: 0;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* 閉じるボタン */
.img-modal-close {
  position: absolute;
  top: 32px;
  right: 38px;
  color: #fff;
  background: rgba(0, 0, 0, 0.29);
  font-size: 2.5em;
  font-weight: bold;
  cursor: pointer;
  padding: 0 12px;
  border-radius: 50%;
  line-height: 1;
  z-index: 10002;
  transition: background 0.15s, color 0.12s;
}

.img-modal-close:hover {
  background: var(--accent, #e48ca4);
  color: #fff;
}

.img-modal-caption {
  color: var(--text-main, #242424);
  background: var(--section-bg, #fff);
  font-size: 1.02em;
  padding: 9px 18px 7px 18px;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(231, 176, 194, 0.08);
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  max-width: 96vw;
  opacity: 0.92;
  letter-spacing: 0.02em;
}

@media (max-width: 700px) {
  .img-modal-content {
    max-width: 98vw;
    max-height: 68vh;
    border-radius: 10px;
    margin-bottom: 8px;
  }

  .img-modal-close {
    top: 14px;
    right: 16px;
    font-size: 2em;
  }

  .img-modal-caption {
    font-size: 0.98em;
    padding: 6px 9px;
  }
}

/* 店舗紹介文 */
.shop-intro.gallery-shop-intro {
  margin: 60px auto 70px auto;
  padding: 18px 12px;
  max-width: 900px;
  font-size: 1.09em;
  color: var(--text-main);
  background: var(--section-bg);
  border-left: 6px solid var(--accent);
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(231, 176, 194, 0.09);
}

@media (max-width: 700px) {
  .shop-intro.gallery-shop-intro {
    padding: 13px 5vw;
    font-size: 0.99em;
    margin: 45px 0 55px 0;
  }
}

/* map-embed（Google Map埋め込み）のモダンデザイン */
.map-embed {
  margin-top: 35px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(50, 50, 93, 0.08), 0 1.5px 6px rgba(0, 0, 0, 0.10);
  background: #fff;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow 0.2s;
}

.map-embed iframe {
  width: 100%;
  min-height: 320px;
  border: none;
  display: block;
}

/* レスポンシブ */
@media (max-width: 850px) {
  .map-embed {
    max-width: 100%;
  }

  .map-embed iframe {
    min-height: 220px;
  }
}

/* access-info のお洒落な吹き出し風スタイル */
.access-info {
  margin: 22px auto 0 auto;
  padding: 16px 22px;

  border-radius: 12px;

  font-size: 1.05em;
  max-width: 620px;
  position: relative;
  line-height: 1.7;
}

.access-info:before {
  content: "🚗";
  font-size: 1.1em;
  margin-right: 0.7em;
  vertical-align: -2px;
}

@media (max-width: 600px) {
  .access-info {
    font-size: 0.97em;
    padding: 12px 10px;
  }
}

.ql-size-small {
  font-size: 0.75em;
}

.ql-size-large {
  font-size: 1.5em;
}

.ql-size-huge {
  font-size: 2.5em;
}

/* テキスト行や画像行の中央・右寄せ・左寄せ対応 */
.ql-align-center {
  text-align: center;
}

.ql-align-right {
  text-align: right;
}

.ql-align-left {
  text-align: left;
}

.ql-align-justify {
  text-align: justify;
}

/* 画像単独の中央・右寄せ・左寄せ（Quill仕様による） */
.ql-align-center img,
.ql-align-right img,
.ql-align-left img,
.ql-editor img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1em auto;
}

.ql-align-center img {
  margin-left: auto;
  margin-right: auto;
}

.ql-align-right img {
  margin-left: auto;
  margin-right: 0;
}

.ql-align-left img {
  margin-left: 0;
  margin-right: auto;
}


/* PC用：.service-rowを2カラム構造に */
.service-row {
  display: flex;
  align-items: flex-start;
  /* ← アイコン行とテキストの頭を揃える */
  margin-bottom: 25px;
  gap: 0.7em;
  /* 余白追加（お好みで調整） */
}

/* headline（アイコン＋ラベル）は最小幅のみ確保で横並びに */
.headline {
  display: flex;
  align-items: center;
  min-width: 9em;
  /* 必要に応じて調整（例: 7em～12em） */
  margin-bottom: 0;
  /* スマホ向けmargin-bottomはPCでは不要 */
  flex-shrink: 0;
  /* 圧縮されないように */
  white-space: nowrap;
  /* アイコン＋ラベルで折り返さない */
}

/* service-valueは残りスペースを全部使う */
.service-value {
  flex: 1 1 0%;
  min-width: 0;
  /* テキストが伸びやすいように */
  word-break: break-word;
}

.table-wrapper {
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
  width: 100%;
  /* max-width指定はテーブル側でもOK */
}

@media (max-width: 700px) {
  .table-wrapper {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .table-wrapper>table {
    max-width: 99vw;
    border-radius: 10px;
  }
}

.service-info-card {
  margin: 35px 32px 16px 32px;
}

.reservation-info-card {
  margin: 35px 32px 30px 32px;
}

@media (max-width: 700px) {

  .service-info-card,
  .reservation-info-card {
    margin-left: 3vw;
    margin-right: 3vw;
  }
}


/* 本文・リストの余白を詰める（Quill出力も対象） */
.p {
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  line-height: 1.7;
}

.ul,
.ol {
  margin-bottom: 1.1em;
  word-break: break-word;
}

/* 取り消し線（strike） */
s,
.ql-syntax s,
strike {
  text-decoration: line-through;
}

/* コードブロック（code-block） */
pre.ql-syntax {
  font-family: 'Fira Mono', 'Consolas', 'Menlo', monospace;
  border-radius: 6px;
  padding: 1em 1.2em;
  overflow-x: auto;
  font-size: 0.96em;
  margin: 1em 0;
  white-space: pre-wrap;
}

/* Quillエディタのiframe動画 */
/* 幅制御（PC:最大1000px, モバイル:全幅） */
iframe.ql-video {
  display: block;
  width: 100%;
  max-width: 1000px;
  /* お好みで */
  height: 563px;
  /* 1000 * 9 / 16 = 562.5 → 563 */
  border: none;
  background: #000;
  margin-left: 0;
  margin-right: auto;
}

.video-wrapper iframe.ql-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 右寄せ（優先度を上げて必ず最後に書く！） */
iframe.ql-video.ql-align-right {
  margin-left: auto !important;
  margin-right: 0 !important;
}

/* 中央寄せ */
iframe.ql-video.ql-align-center {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 左寄せ */
iframe.ql-video.ql-align-left {
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* スマホ幅は100vw */
@media (max-width: 650px) {
  iframe.ql-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* 黒い“額縁”を作る */
.reserve-embed{
  max-width: 680px;
  margin: 0 auto;
 /*  background: #DAEDF1;     ← 周囲を黒に */
  padding: 12px;        /* ← 黒の厚み（お好みで） */
  border-radius: 12px;  /* 角丸は任意 */
}

/* iframe 本体はそのまま（中身は別ドメイン） */
.reserve-embed iframe{
  display: block;
  width: 100%;
  height: 720px;        /* 初期高さ。スクリプトで可変OK */
  border: 0;
  background: #fff;     /* 読み込み中に白で見せたいなら。不要なら消してOK */
  border-radius: 8px;   /* 角丸を合わせたい場合に */
}

/* スマホは額縁を少し薄く */
@media (max-width: 600px){
  .reserve-embed{ padding: 8px; }
}
 /*
.reserve-embed-area{
 background: #F5FDFF;  
  padding: 20px 0;  
}
*/
.reserve-embed{ max-width: 680px; margin: 0 auto; }