@charset "UTF-8";
/* ============================================================
   PodOS テーマスタイル（エントリ）
   実体は各パーシャルに分割。BEM記法／コーラルピンク。
   ビルド: sass assets/scss/style.scss assets/css/style.css
   ============================================================ */
/* ---------- base ---------- */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.podos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.podos-site {
  width: 100%;
  background: #fff;
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 520px) {
  .podos-container {
    padding: 0 16px;
  }
}
/* ---------- header（追従・フラット構造） ---------- */
.p-header {
  background: #fff;
  border-bottom: 1px solid #f1e3e4;
  position: sticky;
  top: 0;
  z-index: 30;
}
.p-header__inner {
  display: flex;
  align-items: center;
  gap: 0 26px;
  padding: 14px 24px;
}
.p-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.p-header__logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.p-header__logo-sub {
  font-size: 10.5px;
  font-weight: 700;
  color: #7a7073;
  letter-spacing: 0.02em;
}
.p-header__nav {
  margin-left: auto;
}
.p-header__menu {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-header__menu a, .p-header__menu .p-header__menu-link {
  font-size: 14.5px;
  font-weight: 700;
  color: #222;
  transition: color 0.15s;
}
.p-header__menu a:hover, .p-header__menu .p-header__menu-link:hover {
  color: #fa6f78;
}
.p-header__menu .current-menu-item > a,
.p-header__menu .is-current {
  color: #fa6f78;
}
.p-header__cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fa6f78;
  color: #fff;
  border-radius: 12px;
  padding: 11px 20px;
  box-shadow: 0 3px 0 #e8525c;
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.1s;
}
.p-header__cta:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #e8525c;
}
.p-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.p-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  border-radius: 2px;
  transition: 0.25s;
}

/* ---------- SP：ロゴ左＋ハンバーガー右、ナビはドロップダウン ---------- */
@media (max-width: 860px) {
  .p-header__inner {
    justify-content: space-between;
  }
  .p-header__logo-sub {
    display: none;
  }
  .p-header__cta {
    display: none;
  }
  .p-header__burger {
    display: flex;
  }
  .p-header__nav {
    margin-left: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: #fff;
    border-bottom: 1px solid #f1e3e4;
    padding: 8px 24px 18px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06);
  }
  .p-header__nav.is-open {
    display: block;
  }
  .p-header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .p-header__menu a, .p-header__menu .p-header__menu-link {
    display: block;
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid #f1e3e4;
  }
  .p-header__burger[aria-expanded=true] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .p-header__burger[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .p-header__burger[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
/* ---------- hero（画像1枚・SP全幅 / PC最大1200px・背景#faebee） ---------- */
.p-hero {
  background: #faebee;
}
.p-hero__picture {
  display: block;
}
.p-hero__img {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

/* ---------- section head ---------- */
.p-sec-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 46px;
}
.p-sec-head__title {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  color: #222;
  letter-spacing: 0.16em;
  margin: 0;
}

/* ---------- pickup ---------- */
.p-pickup {
  padding: 66px 0 24px;
}
.p-pickup__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 44px;
  align-items: start;
}
.p-pickup__feature {
  display: block;
}
.p-pickup__cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #fa6f78;
  margin-bottom: 10px;
}
.p-pickup__feature-title {
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 700;
  color: #222;
  line-height: 1.5;
  margin: 0 0 16px;
}
.p-pickup__feature-excerpt {
  font-size: 13.5px;
  color: #7a7073;
  line-height: 2;
  margin: 0 0 22px;
}
.p-pickup__feature-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-pickup__list {
  display: flex;
  flex-direction: column;
}
.p-pickup__item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
}
.p-pickup__item:first-child {
  padding-top: 0;
}
.p-pickup__item:last-child {
  padding-bottom: 0;
}
.p-pickup__item-thumb {
  width: 120px;
  height: 90px;
  flex: none;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-pickup__item-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  line-height: 1.55;
  margin: 0;
}
.p-pickup__divider {
  height: 1px;
  background: #f1e3e4;
}

/* ---------- 汎用カード ---------- */
.p-card {
  display: flex;
  flex-direction: column;
}
.p-card__thumb {
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-card__thumb--empty {
  border: 2px dashed #f3b9bd;
}
.p-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-card__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fa6f78;
  margin-bottom: 9px;
}
.p-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  line-height: 1.55;
  margin: 0 0 10px;
}
.p-card__excerpt {
  font-size: 12.5px;
  color: #7a7073;
  line-height: 1.9;
  margin: 0;
}

/* ---------- category ---------- */
.p-cats {
  padding: 62px 0 80px;
}
.p-cats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px;
}
.p-cats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-cats__circle {
  width: clamp(130px, 14vw, 158px);
  margin-bottom: 20px;
}
.p-cats__icon {
  width: 100%;
  height: auto;
  display: block;
}
.p-cats__name {
  font-size: 19px;
  font-weight: 800;
  color: #222;
  margin: 0 0 13px;
}
.p-cats__desc {
  font-size: 12.5px;
  color: #7a7073;
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 520px) {
  .p-pickup__grid {
    grid-template-columns: 1fr;
  }
  .p-cats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ---------- CTAバナー（画像1枚・相談ページへのリンク） ---------- */
.p-cta {
  padding: 48px 0 8px;
}
.p-cta__banner {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(250, 111, 120, 0.18);
  transition: transform 0.15s, box-shadow 0.15s;
}
.p-cta__banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(250, 111, 120, 0.26);
}
.p-cta__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- 運営者カード ---------- */
.p-author {
  background: #fff5f6;
  padding: 56px 24px;
}
.p-author__card {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #f1e3e4;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  box-shadow: 0 8px 24px rgba(250, 111, 120, 0.1);
}
.p-author__brand {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.p-author__logo {
  height: 37px;
  width: auto;
  display: block;
}
.p-author__body {
  flex: 1 1 320px;
  min-width: 280px;
}
.p-author__desc {
  font-size: 13px;
  color: #5a5052;
  line-height: 2;
  margin: 0 0 18px;
}
.p-author__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.p-author__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #222;
}
.p-author__link span {
  color: #fa6f78;
}
.p-author__cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fa6f78;
  color: #fff;
  border-radius: 12px;
  padding: 13px 22px;
  box-shadow: 0 3px 0 #e8525c;
  font-weight: 800;
  font-size: 14px;
}

/* ---------- dark footer ---------- */
.p-footer {
  background: #2b2326;
  color: #e7dcde;
  padding: 46px 24px 30px;
}
.p-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.p-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-footer__logo {
  height: 34px;
  width: auto;
  display: block;
}
.p-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
}
.p-footer__link {
  font-size: 12.5px;
  color: #cbbdc0;
  font-weight: 500;
}
.p-footer__link:hover {
  color: #fff;
}
.p-footer__divider {
  width: 100%;
  max-width: 760px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.p-footer__copy {
  font-size: 11.5px;
  color: #9b8e91;
  margin: 0;
  text-align: center;
}

/* ---------- 固定CTAバナー（画面下に常時追従・PC/SP共通） ---------- */
.p-fixcta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  line-height: 0;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 -2px 18px rgba(0, 0, 0, 0.16);
}
.p-fixcta__img {
  display: block;
  width: auto;
  height: 92px;
  max-width: 100%;
}

.podos-site {
  padding-bottom: 100px;
}

@media (max-width: 860px) {
  .p-author__card {
    padding: 28px;
    gap: 24px;
  }
  .p-fixcta {
    left: 0;
    right: 0;
    transform: none;
    border-radius: 0;
  }
  .p-fixcta__img {
    width: 100%;
    height: auto;
  }
  .podos-site {
    padding-bottom: 22vw;
  }
}
/* ---------- アイキャッチ（縦横比キープ・1番上） ---------- */
.p-eyecatch {
  padding: 28px 0 4px;
}
.p-eyecatch__img {
  display: block;
  width: 100%;
  max-width: 880px;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
}

/* ---------- article body ---------- */
.p-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 8px;
}
.p-article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.p-article__meta-label {
  font-size: 11px;
  font-weight: 700;
  color: #9a8e90;
  letter-spacing: 0.1em;
}
.p-article__cat {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #fa6f78;
  border-radius: 20px;
  padding: 5px 16px;
}
.p-article__date {
  font-size: 12px;
  color: #9a8e90;
}
.p-article__title {
  font-size: clamp(23px, 3.4vw, 32px);
  font-weight: 800;
  color: #222;
  line-height: 1.55;
  margin: 0 0 18px;
}
.p-article__catch {
  font-size: clamp(14px, 1.9vw, 16px);
  font-weight: 700;
  color: #e8525c;
  line-height: 1.9;
  margin: 0 0 30px;
  padding-left: 14px;
  border-left: 4px solid #fa969c;
}
.p-article__body h1 {
  font-size: clamp(23px, 3.4vw, 32px);
  font-weight: 800;
  color: #222;
  line-height: 1.55;
  margin: 0 0 30px;
}
.p-article__body h2 {
  font-size: clamp(20px, 2.6vw, 25px);
  font-weight: 800;
  color: #222;
  margin: 40px 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #fa969c;
}
.p-article__body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #222;
  margin: 38px 0 18px;
  padding-left: 14px;
  border-left: 5px solid #fa6f78;
}
.p-article__body h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: #e8525c;
  margin: 30px 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-article__body h4::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fa969c;
}
.p-article__body p {
  font-size: 15px;
  line-height: 2.1;
  color: #3f3a3b;
  margin: 0 0 24px;
}
.p-article__body .p-point__label {
  color: #fff;
}
.p-article__body strong, .p-article__body b {
  font-weight: 800;
  background: linear-gradient(transparent 60%, #ffdbe0 60%);
  padding: 0 1px;
}
.p-article__body a {
  color: #e8525c;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.p-article__body a:hover {
  color: #fa6f78;
}
.p-article__body img {
  border-radius: 12px;
  margin: 8px 0 24px;
}
.p-article__body blockquote {
  background: #fff5f6;
  border-left: 4px solid #fa969c;
  border-radius: 0 12px 12px 0;
  padding: 16px 22px;
  margin: 0 0 12px;
  color: #3f3a3b;
}
.p-article__body blockquote p {
  margin: 0;
}
.p-article__body .p-tablescroll {
  margin: 0 0 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.p-article__body table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-size: 14px;
}
.p-article__body table th, .p-article__body table td {
  border: 1px solid #f1e3e4;
  padding: 11px 13px;
  text-align: left;
  white-space: normal;
  vertical-align: top;
}
.p-article__body table th {
  background: #fff5f6;
  font-weight: 700;
  color: #222;
}
.p-article__body .p-tablescroll table {
  margin: 0;
}
.p-article__body .p-tablescroll th, .p-article__body .p-tablescroll td {
  white-space: nowrap;
}

/* ---------- 目次ボックス（本文内 .p-toc） ---------- */
.p-toc {
  background: #fff5f6;
  border-radius: 14px;
  padding: 26px 30px;
  margin: 34px 0 10px;
}
.p-toc__head {
  font-size: 17px;
  font-weight: 800;
  color: #e8525c;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-toc__head::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fa6f78;
  display: inline-block;
}
.p-toc__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.p-toc__item > a {
  font-size: 14px;
  font-weight: 700;
  color: #3f3a3b;
  display: flex;
  gap: 8px;
}
.p-toc__item > a::before {
  content: "›";
  color: #fa6f78;
}
.p-toc__sub {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 22px;
  margin-top: 9px;
}
.p-toc__sub a {
  font-size: 13px;
  color: #7a7073;
}

/* ---------- POINTボックス（本文内 .p-point） ---------- */
.p-point {
  background: #fff5f6;
  border: 2px solid #f6cfd3;
  border-radius: 16px;
  padding: 20px 22px;
  margin: 8px 0 12px;
}
.p-point__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: #fa6f78;
  border-radius: 20px;
  padding: 5px 20px;
  margin: 0 0 13px;
  letter-spacing: 0.08em;
}
.p-point__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.p-point__item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 700;
  color: #3f3a3b;
  line-height: 1.55;
}
.p-point__item::before {
  content: "✓";
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 6px;
  border-radius: 50%;
  background: #fa6f78;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* ---------- FAQ アコーディオン（本文内 .p-faq / <details>ベース） ---------- */
.p-faq {
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-faq__item {
  border: 1px solid #f1e3e4;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.p-faq__item[open] {
  border-color: #f3b9bd;
}
.p-faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 800;
  color: #222;
}
.p-faq__q::-webkit-details-marker {
  display: none;
}
.p-faq__q::before {
  content: "Q";
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fa6f78;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}
.p-faq__q::after {
  content: "";
  flex: none;
  margin-left: auto;
  width: 14px;
  height: 14px;
  position: relative;
  transition: transform 0.25s;
  background: linear-gradient(#fa6f78, #fa6f78) center/100% 2px no-repeat, linear-gradient(#fa6f78, #fa6f78) center/2px 100% no-repeat;
}
.p-faq__item[open] .p-faq__q::after {
  transform: rotate(45deg);
}
.p-faq__a {
  padding: 2px 18px 18px 56px;
  font-size: 14px;
  line-height: 1.95;
  color: #3f3a3b;
}
.p-faq__a p {
  margin: 0 0 10px;
  color: #3f3a3b;
  font-size: 14px;
  line-height: 1.95;
}
.p-faq__a p:last-child {
  margin-bottom: 0;
}

/* ---------- article footer (related / share) ---------- */
.p-article-foot {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 24px 8px;
}

.p-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.p-related__item {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #f1e3e4;
  border-radius: 12px;
  padding: 16px 18px;
}
.p-related__thumb {
  width: 74px;
  height: 58px;
  flex: none;
  border-radius: 8px;
  overflow: hidden;
  background: #fff5f6;
  border: 2px dashed #f3b9bd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-related__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fa6f78;
  margin-bottom: 6px;
}
.p-related__title {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
  margin: 0;
}

.p-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.p-share__label {
  font-size: 13px;
  font-weight: 700;
  color: #7a7073;
  margin: 0;
}
.p-share__btns {
  display: flex;
  gap: 14px;
}
.p-share__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  transition: transform 0.12s;
}
.p-share__btn:hover {
  transform: translateY(-2px);
}
.p-share__btn--x {
  background: #000;
}
.p-share__btn--line {
  background: #06c755;
  font-weight: 800;
  font-size: 11px;
}
.p-share__btn--fb {
  background: #3b5998;
  font-size: 18px;
}

/* ---------- category hero (archive) ---------- */
.p-cat-hero {
  background: #fff5f6;
}
.p-cat-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 56px 0;
}
.p-cat-hero__text {
  flex: 1 1 360px;
  min-width: 300px;
}
.p-cat-hero__title {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800;
  color: #222;
  margin: 0 0 24px;
  letter-spacing: 0.01em;
}
.p-cat-hero__desc {
  font-size: 15px;
  color: #5a5052;
  line-height: 2;
  margin: 0;
  max-width: 470px;
}
.p-cat-hero__visual {
  flex: none;
  width: clamp(200px, 26vw, 300px);
}
.p-cat-hero__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- archive grid / pager ---------- */
.p-archive {
  padding: 56px 0 8px;
}
.p-archive__empty {
  text-align: center;
  color: #7a7073;
  padding: 40px 0;
}

.p-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px 32px;
}

.pagination {
  margin: 50px 0 8px;
  display: flex;
  justify-content: center;
}
.pagination .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #f1e3e4;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  color: #222;
}
.pagination .page-numbers.current {
  background: #fa6f78;
  color: #fff;
  border-color: #fa6f78;
}
.pagination .page-numbers:hover:not(.current) {
  border-color: #fa6f78;
  color: #fa6f78;
}

/* SP：お風呂なびのカテゴリページ踏襲（アイコン中央上→タイトル→説明→横並びリスト） */
@media (max-width: 860px) {
  .p-cat-hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 36px 0 28px;
  }
  .p-cat-hero__visual {
    display: block;
    order: -1;
    width: clamp(170px, 56vw, 230px);
    margin: 0 auto 10px;
  }
  .p-cat-hero__text {
    flex: 1 1 auto;
    min-width: 0;
  }
  .p-cat-hero__title {
    margin-bottom: 14px;
  }
  .p-cat-hero__desc {
    max-width: none;
    text-align: left;
    font-size: 14px;
  }
  .p-archive {
    padding: 36px 0 8px;
  }
  .p-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .p-card {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #f1e3e4;
  }
  .p-card:last-child {
    border-bottom: none;
  }
  .p-card__thumb {
    width: 110px;
    height: 76px;
    flex: none;
    margin-bottom: 0;
  }
  .p-card__body {
    flex: 1;
    min-width: 0;
  }
  .p-card__excerpt {
    display: none;
  }
  .p-card__title {
    font-size: 15px;
    margin: 0;
  }
  .p-card__cat {
    display: block;
    margin-bottom: 5px;
  }
}
/* ---------- 固定ページ ---------- */
.p-page-hero {
  background: #fff5f6;
  padding: 48px 0;
}
.p-page-hero__title {
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 800;
  color: #222;
  margin: 0;
  text-align: center;
}
.p-page-hero__lead {
  margin: 16px auto 0;
  max-width: 640px;
  text-align: center;
  color: #5a5052;
  font-size: 14.5px;
  line-height: 1.9;
}

.p-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 8px;
}

/* ---------- お問い合わせフォーム ---------- */
.p-contact {
  padding: 48px 0 8px;
}
.p-contact__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.p-contact__intro {
  margin-bottom: 24px;
}
.p-contact__notice {
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 24px;
}
.p-contact__notice--ok {
  background: #eafaf1;
  color: #1f8159;
  border: 1px solid #bfe6d3;
}
.p-contact__notice--err {
  background: #fff0f2;
  color: #e8525c;
  border: 1px solid #f6cfd3;
}
.p-contact__form {
  background: #fff;
  border: 1px solid #f1e3e4;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(250, 111, 120, 0.08);
}
.p-contact__field {
  margin-bottom: 20px;
}
.p-contact__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}
.p-contact__label span {
  font-size: 11px;
  color: #fff;
  background: #fa6f78;
  border-radius: 4px;
  padding: 2px 7px;
  margin-left: 6px;
}
.p-contact__input {
  width: 100%;
  border: 1px solid #e6d6d8;
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 15px;
  font-family: inherit;
  color: #222;
  background: #fff5f6;
}
.p-contact__input:focus {
  outline: none;
  border-color: #fa6f78;
  background: #fff;
}
.p-contact__textarea {
  resize: vertical;
  line-height: 1.8;
}
.p-contact__submit {
  display: block;
  width: 100%;
  background: #fa6f78;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 3px 0 #e8525c;
}
.p-contact__submit:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #e8525c;
}
.p-contact__note {
  font-size: 12px;
  color: #7a7073;
  line-height: 1.8;
  margin: 16px 0 0;
  text-align: center;
}
.p-contact__note a {
  color: #e8525c;
  text-decoration: underline;
}

/* ---------- 404 ---------- */
.p-404 {
  padding: 90px 0;
}
.p-404__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.p-404__code {
  font-size: 80px;
  font-weight: 900;
  color: #fa969c;
  margin: 0;
  line-height: 1;
}
.p-404__title {
  font-size: 24px;
  font-weight: 800;
  color: #222;
  margin: 10px 0 16px;
}
.p-404__text {
  font-size: 14px;
  color: #7a7073;
  line-height: 2;
  margin: 0 0 30px;
}
.p-404__btn {
  display: inline-flex;
  background: #fa6f78;
  color: #fff;
  border-radius: 14px;
  padding: 14px 32px;
  font-weight: 800;
  box-shadow: 0 3px 0 #e8525c;
}
