@charset "UTF-8";

/* ===== Reset ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 700; }

/* ===== Variables ===== */
:root{
  --orange:#ff7a00;
  --orange2:#ff8f2a;
  --text:#111;
  --muted:#555;
  --line:#d9d9d9;
  --bg:#fff;
  --pcw:1400px; /* ★ PCは全体1400px */
}

/* ===== Base ===== */
body{
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans",
               "Hiragino Kaku Gothic ProN", "游ゴシック",
               "Yu Gothic", Meiryo, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
}

/* ===== 全体ラッパー（PCだけ1400px） ===== */
.top,
.wrap,
.footer{
  width: 100%;
}

/* PC */
@media (min-width: 1024px){
  .top,
  .wrap,
  .footer{
    max-width: var(--pcw);
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== トップ画像 ===== */
.top img{
  width: 100%;
}

/* ===== 本文 ===== */
.wrap{
  padding: 20px 140px 44px;
}

/* ===== 見出し ===== */
.h1{
  margin: 12px 0 8px;
  font-size: 26px;
  font-weight: 700;
}
.lead{
  margin: 0 0 20px;
  color: var(--muted);
}

/* ===== 帯（最低限のLP感） ===== */
.band{
  margin: 26px -24px 0;
  padding: 12px 24px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
  background: #e74a48;
}

/* PCでは帯も1400px内で完結 */
@media (min-width: 1024px){
  .band{
    margin-left: -24px;
    margin-right: -24px;
  }
}

/* ===== セクション ===== */
.section{
  padding: 20px 0 0;
  border-bottom: 1px solid var(--line);
}
.section:last-of-type{
  border-bottom: none;
}

.section--shops{
  border-bottom: none;
}

.h2{
  margin: 18px 0 10px;
  font-size: 20px;
  font-weight: 700;
}
.h2--mt{ margin-top: 22px; }

.step{
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}

.p{ margin: 0 0 12px; }
.p--strong{ font-weight: 700; }

/* ===== リスト ===== */
.list{
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin: 3px 0; }

/* ===== MAP ===== */
.map{
  margin-top: 12px;
  border: 1px solid var(--line);
}
.note{
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 13px;
}

/* ===== 店舗 ===== */
.shops{
  margin: 0 0 20px;
  padding-left: 18px;
}
.shops li{ margin: 5px 0; }

/* ===== 店舗リンク ===== */
.shops a{
  color: #0066cc;              /* 標準的なリンク青 */
  text-decoration: underline; /* 下線あり */
}

.shops a:hover{
  color: #e60033;          /* ★ 指定カラー */
  text-decoration: underline;
}

/* ===== お問合せ ===== */
.contact{
  margin: 14px 0 18px;
}
.contact .row{
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.contact .row:last-child{
  border-bottom: 1px solid var(--line);
}
.contact dt{
  width: 60px;
  font-weight: 700;
}
.contact dd{ margin: 0; }

/* ===== クレジット ===== */
.credit{
  margin: 16px 0 22px;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
}
.credit li{ margin: 4px 0; }

/* ===== フッター ===== */
.footer{
  padding: 22px 0 26px;
  text-align: center;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

/* ===== SP ===== */
@media (max-width: 767px){
  .wrap{
    padding: 0px 16px 36px;
  }
  .band{
    margin-left: -16px;
    margin-right: -16px;
    padding: 10px 16px;
  }
}

@media (max-width: 767px){

  body{
    font-size: 13px;    
    line-height: 1.55;
  }

  .band{
    font-size: 13px;
    padding: 9px 16px;
  }

  .shops{
    font-size: 13px;
  }

  .shops li{
    margin: 3px 0;
  }

  .p{
    font-size: 13px;
  }

  .contact{
    font-size: 13px;
  }

  .contact dt{
    width: 50px;
  }

  .credit{
    font-size: 12px;
  }

  .footer{
    font-size: 11px;
  }
}

/* ===== SP：事務局行の（）部分を改行 ===== */
@media (max-width: 767px){
  .section .p span{
    display: block !important;
  }
}

.section--no-border{
  border-bottom: none;
}

/* ===== 強調スタイル ===== */
.txt-red{
  color: #e74a48;
}

.txt-uline{
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px; /* 太めの下線 */
  text-underline-offset: 2px;     /* 文字と下線の間隔 */
}

/* 折り返したくない塊だけ固定（横スクロールは禁止なので「短い塊」だけに限定） */
.nowrap{
  white-space: nowrap;
}

/* 「1会計につき1回スタンプ」も途中で割らない（短いので安全） */
.txt-uline{
  white-space: nowrap;
}

/* ===== SP：PCと同じ改行ルールにする（横スクロールなし） ===== */
@media (max-width: 767px){
  .section--no-border .p{
    word-break: keep-all;
    line-break: strict;
  }
}

/* 利用方法：行を完全固定 */
.use-lines .line{
  display: block;
  margin-bottom: 6px;
}

/* 最後の行だけ余白なし */
.use-lines .line:last-child{
  margin-bottom: 0;
}

/* 注意事項：横スクロール防止（強制折り返し） */
.section--no-border .p{
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}


