/* ================= Base ================= */

:root {
  --color-main: #007bff;
  --color-accent: #ffa500;
  --color-text-main: #2f4f4f;
  --color-heading: #333333;
  --color-border: #cbd5e1;
  --sb: 320px; /* サイドバー幅（PC固定値） */
  --content-max: 1040px;
}

a {
  color: var(--color-main);
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em 1.1em;
  border-radius: 30px;
  background: var(--color-main);
  color: #fff;
  text-decoration: none;
}
.c-button--secondary {
  background: var(--color-accent);
}

/* コンテナ（モバイルファースト：1カラム） */
.l-container {
  display: block;
  padding-inline: 24px;
}
.l-main {
  min-width: 0;
}
.l-sidebar {
  min-width: 0;
}

/* ================= Widgets / Sidebar ================= */

.wgt {
  border: 1px solid var(--color-border, #e6e6e6);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  background: #fff;
}
.wgt + .wgt {
  margin-top: 18px;
}

.wgt__title {
  font-size: 1.06rem;
  font-weight: 700;
  margin: 0 0 0.7em;
  color: var(--color-heading, #333);
  position: relative;
  padding-left: 0.8em;
}
.wgt__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  background: var(--color-main);
  border-radius: 2px;
}

.wgt ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wgt li {
  padding: 0.55em 0;
  border-top: 1px dashed var(--color-border, #e6e6e6);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-left: 2rem;
}
.wgt li:first-child {
  border-top: none;
}
.wgt a {
  color: inherit;
  text-decoration: none;
}
.wgt a:hover {
  color: var(--color-main);
  text-decoration: underline;
}

.l-sidebar .wgt li > a {
  display: block;
  flex: 1;
  padding-right: 0.5rem;
}
.l-sidebar .wgt li > a:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
  border-radius: 6px;
}

.wgt .count {
  font-size: 0.92em;
  color: #666;
  background: #f7fbfc;
  border: 1px solid var(--color-border, #e6e6e6);
  padding: 2px 6px;
  border-radius: 6px;
}

/* 予約ボタン（ウィジェット用） */
.sb-reserve {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0.8em 1.1em;
  border-radius: 30px;
  text-decoration: none;
  color: #fff !important;
  background: var(--color-main);
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(14, 165, 179, 0.18);
}
.sb-reserve:hover {
  filter: brightness(1.03);
}
.sb-note {
  margin-top: 0.5em;
  font-size: 0.9em;
  color: #666;
  text-align: center;
}

/* ================= Blog cards ================= */

.card-list--blog {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .card-list--blog {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
  }
}

.card__img {
  overflow: hidden;
}
.card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 600px) {
  .card__img img {
    height: 180px;
  }
}

.l-container,
.l-main,
.l-sidebar {
  overflow: visible;
} /* sticky保険 */

/* ================= Responsive Layout ================= */

/* ～960px：必ず1カラム。サイドバーは下に回り 320px 中央寄せ */
@media (max-width: 960px) {
  .has-sidebar .l-container {
    display: block !important;
  }
  .l-main {
    max-width: min(92vw, var(--content-max));
    margin-inline: auto;
  }
  .l-sidebar {
    position: static !important;
    width: min(92vw, var(--sb)) !important;
    max-width: var(--sb) !important;
    margin: 24px auto 0 !important; /* 中央寄せ */
    justify-self: auto !important;
  }
}

/* ≥961px：has-sidebar ページは2カラム（右320固定・sticky） */
@media (min-width: 961px) {
  .has-sidebar .l-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--sb);
    gap: 28px;
    align-items: start;
    max-width: 1200px;
    margin-inline: auto;
  }
  .l-sidebar {
    position: sticky;
    top: 24px;
    width: var(--sb);
    max-width: var(--sb);
    margin: 0;
    align-self: start;
  }
  body.admin-bar .l-sidebar {
    top: calc(24px + 32px);
  } /* 管理バー考慮 */
}

/* カテゴリーページのカード：768px～2列（他ページには影響なし） */
body.category .card-list.card-list--blog {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  body.category .card-list.card-list--blog {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
  }
}

/* ===== タイトルのサイズ調整（小さめ） ===== */

/* 一覧カードのタイトル */
.card.card--post h3.card__title {
  font-size: clamp(0.95rem, 1.25vw, 1.125rem) !important; /* 15–18px 目安 */
  line-height: 1.4 !important;
  margin: 0 0 0.4em !important;
}
.card.card--post h3.card__title a {
  font-size: inherit !important;
}

/* カテゴリー見出し「カテゴリー：○○」 */
.archive-head .text-title {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem) !important; /* 17.6–22.4px 目安 */
  line-height: 1.35 !important;
}

/* 記事ページのタイトル */
.post__title {
  font-size: clamp(1.25rem, 2vw, 1.6rem) !important; /* 20–25.6px 目安 */
  line-height: 1.35 !important;
  margin: 0 0 0.8em !important;
}

/* サイドバーのウィジェット見出し（少しだけ控えめ） */
.wgt__title {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem) !important; /* 15–16.8px 目安 */
  line-height: 1.35 !important;
}
