/* --------------------
   Reset / Normalize
-------------------- */
* {
  box-sizing: border-box;
}

body{ font-family: var(--ff-body); }
h1  { font-family: var(--ff-h1);   font-weight: 700; }
h2  { font-family: var(--ff-h2);   font-weight: 400; } /* Rubik Dirtは1ウェイト */
h3, p { font-family: var(--ff-body); }

body, h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------
   Base Typography
-------------------- */
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-sans);
  font-size: var(--fz-100);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--fg);
}

h1 { font-size: 2rem;  }



p { margin-bottom: 1rem; }

/* --------------------
   Links
-------------------- */
a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  color: var(--accent);
}

/* --------------------
   Utility
-------------------- */
.container {
  margin-inline: auto;
}

.text-center { text-align: center; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }

/* SNS　コピー成功/失敗の軽いフィードバック（ボタンは消さない） */
.share .share-btn.copy.is-copied { background-color: rgba(0,0,0,.08); }
.share .share-btn.copy.is-error  { background-color: rgba(255,0,0,.12); }
.share .share-btn.copy .sns-ic   { transition: transform .15s ease; }
.share .share-btn.copy.is-copied .sns-ic { transform: scale(1.06); }

.cf-msg {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.cf-agree-error {
  color: #b00020;              /* 文字色：濃い赤 */
  background: #fdecea;         /* 背景：うっすらピンク */
  border-left: 4px solid #f44336;
  padding: 6px 10px;
  border-radius: 4px;
}


/* 404ページだけフッターをコンパクトにする */
body.is-404-page .site-footer {
  padding-block: 1.5rem !important;  /* 上下の余白を小さめに */
  margin-top: 2rem !important;       /* 上の余白を適度に */
  min-height: auto !important;       /* 変な min-height が入っていた場合に潰す */
}


.is-404-page h1,
.is-404-page > main > p{
  text-align: center;
  margin: 100px 0px;
}

.is-404-page form{
  width: fit-content;
  margin: auto;
}
.is-404-page input{
  height: 30px;
}
.is-404-page ul{
  margin-top:30px;
  text-align: center;
  line-height: 5.0rem;
}
.is-404-page .container{
  padding: 20px 10px;
}