@charset "UTF-8";
/*
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template: cocoon-master
Version: 1.1.3
*/

:root {
  --rz-bg: #f7f3ec;
  --rz-paper: #fffdf9;
  --rz-ink: #2f3432;
  --rz-muted: #68716d;
  --rz-accent: #c87352;
  --rz-sage: #879987;
  --rz-line: #ded8ce;
}

body {
  color: var(--rz-ink);
  background: var(--rz-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.9;
}

.header-container,
.header-container-in.hlt-top-menu,
.header-container-in.hlt-top-menu.hlt-tm-small {
  background: rgba(255,253,249,.98);
  border-bottom: 1px solid var(--rz-line);
  box-shadow: 0 4px 18px rgba(47,52,50,.05);
}

.logo-header a,
.site-name-text {
  color: var(--rz-ink) !important;
  font-weight: 800;
  letter-spacing: .08em;
}

.logo-header a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-header a::after {
  content: "リノベ前提";
  color: var(--rz-ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
}

.navi,
.navi-in > ul {
  background: transparent;
}

.navi-in > ul > li > a {
  color: var(--rz-ink);
  font-size: 14px;
  font-weight: 700;
  padding-inline: 14px;
  border-radius: 6px;
}

.navi-in > ul > li > a:hover {
  color: var(--rz-accent);
  background: rgba(200,115,82,.08);
}

.navi-in .item-description,
.navi-in .caption-wrap .item-description {
  display: none !important;
}

#content {
  margin-top: 36px;
  margin-bottom: 56px;
}

.main,
.sidebar {
  background: var(--rz-paper);
  border: 1px solid var(--rz-line);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(47,52,50,.05);
}

.main {
  padding: clamp(24px,4vw,52px);
}

.entry-title,
.article h1 {
  color: var(--rz-ink);
  font-size: clamp(28px,4vw,42px);
  line-height: 1.4;
  letter-spacing: .01em;
}

.article h2 {
  color: var(--rz-ink);
  margin-top: 2.8em;
  padding: .65em .8em;
  background: #f1ece3;
  border-left: 5px solid var(--rz-accent);
  border-radius: 0 8px 8px 0;
  font-size: clamp(22px,3vw,29px);
}

.article h3 {
  color: var(--rz-ink);
  margin-top: 2.2em;
  padding-bottom: .35em;
  border-bottom: 2px solid var(--rz-sage);
  font-size: clamp(19px,2.5vw,23px);
}

.article a {
  color: #a64f35;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

/* Share buttons use their original brand backgrounds and white labels. */
.sns-share-buttons a,
.sns-share-buttons a:visited,
.sns-share-buttons a:hover,
.sns-share-buttons .button-caption,
.sns-share-buttons .social-icon {
  color: #fff !important;
}

/* Follow buttons also need white symbols on their brand-color tiles. */
.sns-follow-buttons a,
.sns-follow-buttons a:visited,
.sns-follow-buttons a:hover,
.sns-follow-buttons .button-caption,
.sns-follow-buttons .social-icon,
.follow-button .social-icon {
  color: #fff !important;
}

/* The static home page is a guide entrance, not an article to share. */
.page-id-13 .sns-share,
.page-id-13 .sns-share-buttons {
  display: none !important;
}

.page-id-13 .date-tags,
.page-id-13 .post-date,
.page-id-13 .post-update {
  display: none !important;
}

/* Two calm, editorial entry points on the home page. */
.rz-start-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 30px 0 42px;
  width: 100%;
}

.rz-start-links > br {
  display: none;
}

.rz-start-card,
.rz-start-card:visited {
  display: grid;
  min-width: 0;
  min-height: 142px;
  grid-template-columns: 52px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  color: var(--rz-ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--rz-line);
  border-left: 1px solid var(--rz-line) !important;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(48, 51, 47, .045);
  transition: background-color .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.rz-start-card-primary,
.rz-start-card-primary:visited {
  background: #fff;
}

.rz-start-card:hover {
  color: var(--rz-ink);
  text-decoration: none;
  border-color: #cbbbad;
  background: #fffdfb;
  box-shadow: 0 7px 20px rgba(48, 51, 47, .075);
}

.rz-start-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: #f3ece6;
  color: var(--rz-accent-dark);
}

.rz-start-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rz-start-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.rz-start-copy strong {
  font-size: 18px;
  line-height: 1.45;
}

.rz-start-label {
  color: #6d706b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
}

.rz-start-note {
  color: #5d625c;
  font-size: 13px;
}

.rz-start-arrow {
  color: var(--rz-accent);
  font-size: 20px;
  line-height: 1;
}

.article table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--rz-line);
  border-radius: 8px;
  overflow: hidden;
}

.article table th {
  background: #e8eee8;
  color: var(--rz-ink);
}

.article blockquote,
.information-box,
.question-box,
.alert-box {
  border-radius: 8px;
}

.toc {
  background: #faf7f1;
  border: 1px solid var(--rz-line);
  border-radius: 10px;
}

.pr-label {
  color: #fff;
  background: var(--rz-accent);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  letter-spacing: .08em;
}

.sidebar {
  padding: 22px;
}

.widget-sidebar h3 {
  color: var(--rz-ink);
  border-bottom: 2px solid var(--rz-accent);
  padding-bottom: 8px;
}

.footer {
  background: var(--rz-ink);
  color: #f7f3ec;
}

.footer a {
  color: #f7f3ec;
}

.pagination-next-link,
.page-numbers,
.cat-link,
.tag-link {
  border-radius: 6px;
}

.article .cat-link,
.article .cat-link:visited,
.article .tag-link,
.article .tag-link:visited {
  color: #fff !important;
}

@media screen and (max-width: 1023px) {
  .navi-in > ul > li > a { padding-inline: 9px; font-size: 13px; }
}

@media screen and (max-width: 834px) {
  #content { margin-top: 16px; }
  .main { padding: 22px 18px; border-radius: 0; }
  .entry-title, .article h1 { font-size: 27px; }
  .article h2 { font-size: 22px; }
  .sidebar { border-radius: 0; }
  .rz-start-links { grid-template-columns: 1fr; gap: 12px; margin: 24px 0 34px; }
  .rz-start-card { min-height: 0; grid-template-columns: 44px minmax(0, 1fr) 18px; gap: 14px; padding: 20px 18px; }
  .rz-start-icon { width: 44px; height: 44px; }
  .rz-start-icon svg { width: 24px; height: 24px; }
  .rz-start-copy strong { font-size: 17px; }
}


.logo-header a,
.site-name-text {
  color: var(--rz-ink) !important;
  font-weight: 800;
  letter-spacing: .08em;
}

.logo-header a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-header a::after {
  content: "リノベ前提";
  color: var(--rz-ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
}

.navi,
.navi-in > ul {
  background: transparent;
}

.navi-in > ul > li > a {
  color: var(--rz-ink);
  font-size: 14px;
  font-weight: 700;
  padding-inline: 14px;
  border-radius: 6px;
}

.navi-in > ul > li > a:hover {
  color: var(--rz-accent);
  background: rgba(200,115,82,.08);
}

.navi-in .item-description,
.navi-in .caption-wrap .item-description {
  display: none !important;
}

#content {
  margin-top: 36px;
  margin-bottom: 56px;
}

.main,
.sidebar {
  background: var(--rz-paper);
  border: 1px solid var(--rz-line);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(47,52,50,.05);
}

.main {
  padding: clamp(24px,4vw,52px);
}

.entry-title,
.article h1 {
  color: var(--rz-ink);
  font-size: clamp(28px,4vw,42px);
  line-height: 1.4;
  letter-spacing: .01em;
}

.article h2 {
  color: var(--rz-ink);
  margin-top: 2.8em;
  padding: .65em .8em;
  background: #f1ece3;
  border-left: 5px solid var(--rz-accent);
  border-radius: 0 8px 8px 0;
  font-size: clamp(22px,3vw,29px);
}

.article h3 {
  color: var(--rz-ink);
  margin-top: 2.2em;
  padding-bottom: .35em;
  border-bottom: 2px solid var(--rz-sage);
  font-size: clamp(19px,2.5vw,23px);
}

.article a {
  color: #a64f35;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

/* Share buttons use their original brand backgrounds and white labels. */
.sns-share-buttons a,
.sns-share-buttons a:visited,
.sns-share-buttons a:hover,
.sns-share-buttons .button-caption,
.sns-share-buttons .social-icon {
  color: #fff !important;
}

/* Follow buttons also need white symbols on their brand-color tiles. */
.sns-follow-buttons a,
.sns-follow-buttons a:visited,
.sns-follow-buttons a:hover,
.sns-follow-buttons .button-caption,
.sns-follow-buttons .social-icon,
.follow-button .social-icon {
  color: #fff !important;
}

/* The static home page is a guide entrance, not an article to share. */
.page-id-13 .sns-share,
.page-id-13 .sns-share-buttons {
  display: none !important;
}

.page-id-13 .date-tags,
.page-id-13 .post-date,
.page-id-13 .post-update {
  display: none !important;
}

/* Two calm, editorial entry points on the home page. */
.rz-start-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 30px 0 42px;
  width: 100%;
}

.rz-start-links > br {
  display: none;
}

.rz-start-card,
.rz-start-card:visited {
  display: grid;
  min-width: 0;
  min-height: 142px;
  grid-template-columns: 52px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  color: var(--rz-ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--rz-line);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(48, 51, 47, .045);
  transition: background-color .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.rz-start-card-primary,
.rz-start-card-primary:visited {
  background: #fff;
}

.rz-start-card:hover {
  color: var(--rz-ink);
  text-decoration: none;
  border-color: #cbbbad;
  background: #fffdfb;
  box-shadow: 0 7px 20px rgba(48, 51, 47, .075);
}

.rz-start-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: #f3ece6;
  color: var(--rz-accent-dark);
}

.rz-start-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rz-start-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.rz-start-copy strong {
  font-size: 18px;
  line-height: 1.45;
}

.rz-start-label {
  color: #6d706b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
}

.rz-start-note {
  color: #5d625c;
  font-size: 13px;
}

.rz-start-arrow {
  color: var(--rz-accent);
  font-size: 20px;
  line-height: 1;
}

.article table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--rz-line);
  border-radius: 8px;
  overflow: hidden;
}

.article table th {
  background: #e8eee8;
  color: var(--rz-ink);
}

.article blockquote,
.information-box,
.question-box,
.alert-box {
  border-radius: 8px;
}

.toc {
  background: #faf7f1;
  border: 1px solid var(--rz-line);
  border-radius: 10px;
}

.pr-label {
  color: #fff;
  background: var(--rz-accent);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  letter-spacing: .08em;
}

.sidebar {
  padding: 22px;
}

.widget-sidebar h3 {
  color: var(--rz-ink);
  border-bottom: 2px solid var(--rz-accent);
  padding-bottom: 8px;
}

.footer {
  background: var(--rz-ink);
  color: #f7f3ec;
}

.footer a {
  color: #f7f3ec;
}

.pagination-next-link,
.page-numbers,
.cat-link,
.tag-link {
  border-radius: 6px;
}

.article .cat-link,
.article .cat-link:visited,
.article .tag-link,
.article .tag-link:visited {
  color: #fff !important;
}

@media screen and (max-width: 1023px) {
  .navi-in > ul > li > a { padding-inline: 9px; font-size: 13px; }
}

@media screen and (max-width: 834px) {
  #content { margin-top: 16px; }
  .main { padding: 22px 18px; border-radius: 0; }
  .entry-title, .article h1 { font-size: 27px; }
  .article h2 { font-size: 22px; }
  .sidebar { border-radius: 0; }
  .rz-start-links { grid-template-columns: 1fr; gap: 12px; margin: 24px 0 34px; }
  .rz-start-card { min-height: 0; grid-template-columns: 44px minmax(0, 1fr) 18px; gap: 14px; padding: 20px 18px; }
  .rz-start-icon { width: 44px; height: 44px; }
  .rz-start-icon svg { width: 24px; height: 24px; }
  .rz-start-copy strong { font-size: 17px; }
}

.header-container-in.hlt-top-menu,
.header-container-in.hlt-top-menu.hlt-tm-small {
  background: rgba(255,253,249,.98);
  border-bottom: 1px solid var(--rz-line);
  box-shadow: 0 4px 18px rgba(47,52,50,.05);
}

.logo-header a,
.site-name-text {
  color: var(--rz-ink) !important;
  font-weight: 800;
  letter-spacing: .08em;
}

.logo-header a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-header a::after {
  content: "リノベ前提";
  color: var(--rz-ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
}

.navi,
.navi-in > ul {
  background: transparent;
}

.navi-in > ul > li > a {
  color: var(--rz-ink);
  font-size: 14px;
  font-weight: 700;
  padding-inline: 14px;
  border-radius: 6px;
}

.navi-in > ul > li > a:hover {
  color: var(--rz-accent);
  background: rgba(200,115,82,.08);
}

.navi-in .item-description,
.navi-in .caption-wrap .item-description {
  display: none !important;
}

#content {
  margin-top: 36px;
  margin-bottom: 56px;
}

.main,
.sidebar {
  background: var(--rz-paper);
  border: 1px solid var(--rz-line);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(47,52,50,.05);
}

.main {
  padding: clamp(24px,4vw,52px);
}

.entry-title,
.article h1 {
  color: var(--rz-ink);
  font-size: clamp(28px,4vw,42px);
  line-height: 1.4;
  letter-spacing: .01em;
}

.article h2 {
  color: var(--rz-ink);
  margin-top: 2.8em;
  padding: .65em .8em;
  background: #f1ece3;
  border-left: 5px solid var(--rz-accent);
  border-radius: 0 8px 8px 0;
  font-size: clamp(22px,3vw,29px);
}

.article h3 {
  color: var(--rz-ink);
  margin-top: 2.2em;
  padding-bottom: .35em;
  border-bottom: 2px solid var(--rz-sage);
  font-size: clamp(19px,2.5vw,23px);
}

.article a {
  color: #a64f35;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

/* Share buttons use their original brand backgrounds and white labels. */
.sns-share-buttons a,
.sns-share-buttons a:visited,
.sns-share-buttons a:hover,
.sns-share-buttons .button-caption,
.sns-share-buttons .social-icon {
  color: #fff !important;
}

/* Follow buttons also need white symbols on their brand-color tiles. */
.sns-follow-buttons a,
.sns-follow-buttons a:visited,
.sns-follow-buttons a:hover,
.sns-follow-buttons .button-caption,
.sns-follow-buttons .social-icon,
.follow-button .social-icon {
  color: #fff !important;
}

/* The static home page is a guide entrance, not an article to share. */
.page-id-13 .sns-share,
.page-id-13 .sns-share-buttons {
  display: none !important;
}

.page-id-13 .date-tags,
.page-id-13 .post-date,
.page-id-13 .post-update {
  display: none !important;
}

/* Make the two primary paths on the home page unmistakably separate. */
.rz-start-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 42px;
}

.rz-start-card,
.rz-start-card:visited {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 26px;
  color: var(--rz-ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--rz-line);
  border-left: 5px solid var(--rz-sage);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(48, 51, 47, .07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.rz-start-card-primary,
.rz-start-card-primary:visited {
  border-left-color: var(--rz-accent);
  background: #fffaf5;
}

.rz-start-card:hover {
  color: var(--rz-ink);
  text-decoration: none;
  border-color: var(--rz-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(48, 51, 47, .12);
}

.rz-start-card strong {
  font-size: 20px;
  line-height: 1.55;
}

.rz-start-label {
  color: var(--rz-accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

.rz-start-note {
  color: #5d625c;
  font-size: 14px;
}

.rz-start-note b {
  float: right;
  color: var(--rz-accent);
  font-size: 19px;
}

.article table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--rz-line);
  border-radius: 8px;
  overflow: hidden;
}

.article table th {
  background: #e8eee8;
  color: var(--rz-ink);
}

.article blockquote,
.information-box,
.question-box,
.alert-box {
  border-radius: 8px;
}

.toc {
  background: #faf7f1;
  border: 1px solid var(--rz-line);
  border-radius: 10px;
}

.pr-label {
  color: #fff;
  background: var(--rz-accent);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  letter-spacing: .08em;
}

.sidebar {
  padding: 22px;
}

.widget-sidebar h3 {
  color: var(--rz-ink);
  border-bottom: 2px solid var(--rz-accent);
  padding-bottom: 8px;
}

.footer {
  background: var(--rz-ink);
  color: #f7f3ec;
}

.footer a {
  color: #f7f3ec;
}

.pagination-next-link,
.page-numbers,
.cat-link,
.tag-link {
  border-radius: 6px;
}

.article .cat-link,
.article .cat-link:visited,
.article .tag-link,
.article .tag-link:visited {
  color: #fff !important;
}

@media screen and (max-width: 1023px) {
  .navi-in > ul > li > a { padding-inline: 9px; font-size: 13px; }
}

@media screen and (max-width: 834px) {
  #content { margin-top: 16px; }
  .main { padding: 22px 18px; border-radius: 0; }
  .entry-title, .article h1 { font-size: 27px; }
  .article h2 { font-size: 22px; }
  .sidebar { border-radius: 0; }
  .rz-start-links { grid-template-columns: 1fr; gap: 12px; margin: 24px 0 34px; }
  .rz-start-card { min-height: 0; padding: 20px; }
  .rz-start-card strong { font-size: 18px; }
}

.header-container-in.hlt-top-menu,
.header-container-in.hlt-top-menu.hlt-tm-small {
  background: rgba(255,253,249,.98);
  border-bottom: 1px solid var(--rz-line);
  box-shadow: 0 4px 18px rgba(47,52,50,.05);
}

.logo-header a,
.site-name-text {
  color: var(--rz-ink) !important;
  font-weight: 800;
  letter-spacing: .08em;
}

.logo-header a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-header a::after {
  content: "リノベ前提";
  color: var(--rz-ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
}

.navi,
.navi-in > ul {
  background: transparent;
}

.navi-in > ul > li > a {
  color: var(--rz-ink);
  font-size: 14px;
  font-weight: 700;
  padding-inline: 14px;
  border-radius: 6px;
}

.navi-in > ul > li > a:hover {
  color: var(--rz-accent);
  background: rgba(200,115,82,.08);
}

.navi-in .item-description,
.navi-in .caption-wrap .item-description {
  display: none !important;
}

#content {
  margin-top: 36px;
  margin-bottom: 56px;
}

.main,
.sidebar {
  background: var(--rz-paper);
  border: 1px solid var(--rz-line);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(47,52,50,.05);
}

.main {
  padding: clamp(24px,4vw,52px);
}

.entry-title,
.article h1 {
  color: var(--rz-ink);
  font-size: clamp(28px,4vw,42px);
  line-height: 1.4;
  letter-spacing: .01em;
}

.article h2 {
  color: var(--rz-ink);
  margin-top: 2.8em;
  padding: .65em .8em;
  background: #f1ece3;
  border-left: 5px solid var(--rz-accent);
  border-radius: 0 8px 8px 0;
  font-size: clamp(22px,3vw,29px);
}

.article h3 {
  color: var(--rz-ink);
  margin-top: 2.2em;
  padding-bottom: .35em;
  border-bottom: 2px solid var(--rz-sage);
  font-size: clamp(19px,2.5vw,23px);
}

.article a {
  color: #a64f35;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

/* Share buttons use their original brand backgrounds and white labels. */
.sns-share-buttons a,
.sns-share-buttons a:visited,
.sns-share-buttons a:hover,
.sns-share-buttons .button-caption,
.sns-share-buttons .social-icon {
  color: #fff !important;
}

/* Follow buttons also need white symbols on their brand-color tiles. */
.sns-follow-buttons a,
.sns-follow-buttons a:visited,
.sns-follow-buttons a:hover,
.sns-follow-buttons .button-caption,
.sns-follow-buttons .social-icon,
.follow-button .social-icon {
  color: #fff !important;
}

/* The static home page is a guide entrance, not an article to share. */
.page-id-13 .sns-share,
.page-id-13 .sns-share-buttons {
  display: none !important;
}

/* Make the two primary paths on the home page unmistakably separate. */
.rz-start-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 42px;
}

.rz-start-card,
.rz-start-card:visited {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 26px;
  color: var(--rz-ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--rz-line);
  border-left: 5px solid var(--rz-sage);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(48, 51, 47, .07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.rz-start-card-primary,
.rz-start-card-primary:visited {
  border-left-color: var(--rz-accent);
  background: #fffaf5;
}

.rz-start-card:hover {
  color: var(--rz-ink);
  text-decoration: none;
  border-color: var(--rz-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(48, 51, 47, .12);
}

.rz-start-card strong {
  font-size: 20px;
  line-height: 1.55;
}

.rz-start-label {
  color: var(--rz-accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

.rz-start-note {
  color: #5d625c;
  font-size: 14px;
}

.rz-start-note b {
  float: right;
  color: var(--rz-accent);
  font-size: 19px;
}

.article table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--rz-line);
  border-radius: 8px;
  overflow: hidden;
}

.article table th {
  background: #e8eee8;
  color: var(--rz-ink);
}

.article blockquote,
.information-box,
.question-box,
.alert-box {
  border-radius: 8px;
}

.toc {
  background: #faf7f1;
  border: 1px solid var(--rz-line);
  border-radius: 10px;
}

.pr-label {
  color: #fff;
  background: var(--rz-accent);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  letter-spacing: .08em;
}

.sidebar {
  padding: 22px;
}

.widget-sidebar h3 {
  color: var(--rz-ink);
  border-bottom: 2px solid var(--rz-accent);
  padding-bottom: 8px;
}

.footer {
  background: var(--rz-ink);
  color: #f7f3ec;
}

.footer a {
  color: #f7f3ec;
}

.pagination-next-link,
.page-numbers,
.cat-link,
.tag-link {
  border-radius: 6px;
}

.article .cat-link,
.article .cat-link:visited,
.article .tag-link,
.article .tag-link:visited {
  color: #fff !important;
}

@media screen and (max-width: 1023px) {
  .navi-in > ul > li > a { padding-inline: 9px; font-size: 13px; }
}

@media screen and (max-width: 834px) {
  #content { margin-top: 16px; }
  .main { padding: 22px 18px; border-radius: 0; }
  .entry-title, .article h1 { font-size: 27px; }
  .article h2 { font-size: 22px; }
  .sidebar { border-radius: 0; }
  .rz-start-links { grid-template-columns: 1fr; gap: 12px; margin: 24px 0 34px; }
  .rz-start-card { min-height: 0; padding: 20px; }
  .rz-start-card strong { font-size: 18px; }
}

  background: rgba(255,253,249,.98);
  border-bottom: 1px solid var(--rz-line);
  box-shadow: 0 4px 18px rgba(47,52,50,.05);
}

.logo-header a,
.site-name-text {
  color: var(--rz-ink) !important;
  font-weight: 800;
  letter-spacing: .08em;
}

.navi,
.navi-in > ul {
  background: transparent;
}

.navi-in > ul > li > a {
  color: var(--rz-ink);
  font-size: 14px;
  font-weight: 700;
  padding-inline: 14px;
  border-radius: 6px;
}

.navi-in > ul > li > a:hover {
  color: var(--rz-accent);
  background: rgba(200,115,82,.08);
}

.navi-in .item-description,
.navi-in .caption-wrap .item-description {
  display: none !important;
}

#content {
  margin-top: 36px;
  margin-bottom: 56px;
}

.main,
.sidebar {
  background: var(--rz-paper);
  border: 1px solid var(--rz-line);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(47,52,50,.05);
}

.main {
  padding: clamp(24px,4vw,52px);
}

.entry-title,
.article h1 {
  color: var(--rz-ink);
  font-size: clamp(28px,4vw,42px);
  line-height: 1.4;
  letter-spacing: .01em;
}

.article h2 {
  color: var(--rz-ink);
  margin-top: 2.8em;
  padding: .65em .8em;
  background: #f1ece3;
  border-left: 5px solid var(--rz-accent);
  border-radius: 0 8px 8px 0;
  font-size: clamp(22px,3vw,29px);
}

.article h3 {
  color: var(--rz-ink);
  margin-top: 2.2em;
  padding-bottom: .35em;
  border-bottom: 2px solid var(--rz-sage);
  font-size: clamp(19px,2.5vw,23px);
}

.article a {
  color: #a64f35;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

/* Share buttons use their original brand backgrounds and white labels. */
.sns-share-buttons a,
.sns-share-buttons a:visited,
.sns-share-buttons a:hover,
.sns-share-buttons .button-caption,
.sns-share-buttons .social-icon {
  color: #fff !important;
}

/* Follow buttons also need white symbols on their brand-color tiles. */
.sns-follow-buttons a,
.sns-follow-buttons a:visited,
.sns-follow-buttons a:hover,
.sns-follow-buttons .button-caption,
.sns-follow-buttons .social-icon,
.follow-button .social-icon {
  color: #fff !important;
}

/* The static home page is a guide entrance, not an article to share. */
.page-id-13 .sns-share,
.page-id-13 .sns-share-buttons {
  display: none !important;
}

/* Make the two primary paths on the home page unmistakably separate. */
.rz-start-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 42px;
}

.rz-start-card,
.rz-start-card:visited {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 26px;
  color: var(--rz-ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--rz-line);
  border-left: 5px solid var(--rz-sage);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(48, 51, 47, .07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.rz-start-card-primary,
.rz-start-card-primary:visited {
  border-left-color: var(--rz-accent);
  background: #fffaf5;
}

.rz-start-card:hover {
  color: var(--rz-ink);
  text-decoration: none;
  border-color: var(--rz-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(48, 51, 47, .12);
}

.rz-start-card strong {
  font-size: 20px;
  line-height: 1.55;
}

.rz-start-label {
  color: var(--rz-accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

.rz-start-note {
  color: #5d625c;
  font-size: 14px;
}

.rz-start-note b {
  float: right;
  color: var(--rz-accent);
  font-size: 19px;
}

.article table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--rz-line);
  border-radius: 8px;
  overflow: hidden;
}

.article table th {
  background: #e8eee8;
  color: var(--rz-ink);
}

.article blockquote,
.information-box,
.question-box,
.alert-box {
  border-radius: 8px;
}

.toc {
  background: #faf7f1;
  border: 1px solid var(--rz-line);
  border-radius: 10px;
}

.pr-label {
  color: #fff;
  background: var(--rz-accent);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  letter-spacing: .08em;
}

.sidebar {
  padding: 22px;
}

.widget-sidebar h3 {
  color: var(--rz-ink);
  border-bottom: 2px solid var(--rz-accent);
  padding-bottom: 8px;
}

.footer {
  background: var(--rz-ink);
  color: #f7f3ec;
}

.footer a {
  color: #f7f3ec;
}

.pagination-next-link,
.page-numbers,
.cat-link,
.tag-link {
  border-radius: 6px;
}

.article .cat-link,
.article .cat-link:visited,
.article .tag-link,
.article .tag-link:visited {
  color: #fff !important;
}

@media screen and (max-width: 1023px) {
  .navi-in > ul > li > a { padding-inline: 9px; font-size: 13px; }
}

@media screen and (max-width: 834px) {
  #content { margin-top: 16px; }
  .main { padding: 22px 18px; border-radius: 0; }
  .entry-title, .article h1 { font-size: 27px; }
  .article h2 { font-size: 22px; }
  .sidebar { border-radius: 0; }
  .rz-start-links { grid-template-columns: 1fr; gap: 12px; margin: 24px 0 34px; }
  .rz-start-card { min-height: 0; padding: 20px; }
  .rz-start-card strong { font-size: 18px; }
}

.header-container-in.hlt-top-menu,
.header-container-in.hlt-top-menu.hlt-tm-small {
  background: rgba(255,253,249,.98);
  border-bottom: 1px solid var(--rz-line);
  box-shadow: 0 4px 18px rgba(47,52,50,.05);
}

.logo-header a,
.site-name-text {
  color: var(--rz-ink) !important;
  font-weight: 800;
  letter-spacing: .08em;
}

.navi,
.navi-in > ul {
  background: transparent;
}

.navi-in > ul > li > a {
  color: var(--rz-ink);
  font-size: 14px;
  font-weight: 700;
  padding-inline: 14px;
  border-radius: 6px;
}

.navi-in > ul > li > a:hover {
  color: var(--rz-accent);
  background: rgba(200,115,82,.08);
}

.navi-in .item-description,
.navi-in .caption-wrap .item-description {
  display: none !important;
}

#content {
  margin-top: 36px;
  margin-bottom: 56px;
}

.main,
.sidebar {
  background: var(--rz-paper);
  border: 1px solid var(--rz-line);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(47,52,50,.05);
}

.main {
  padding: clamp(24px,4vw,52px);
}

.entry-title,
.article h1 {
  color: var(--rz-ink);
  font-size: clamp(28px,4vw,42px);
  line-height: 1.4;
  letter-spacing: .01em;
}

.article h2 {
  color: var(--rz-ink);
  margin-top: 2.8em;
  padding: .65em .8em;
  background: #f1ece3;
  border-left: 5px solid var(--rz-accent);
  border-radius: 0 8px 8px 0;
  font-size: clamp(22px,3vw,29px);
}

.article h3 {
  color: var(--rz-ink);
  margin-top: 2.2em;
  padding-bottom: .35em;
  border-bottom: 2px solid var(--rz-sage);
  font-size: clamp(19px,2.5vw,23px);
}

.article a {
  color: #a64f35;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

/* Share buttons use their original brand backgrounds and white labels. */
.sns-share-buttons a,
.sns-share-buttons a:visited,
.sns-share-buttons a:hover,
.sns-share-buttons .button-caption,
.sns-share-buttons .social-icon {
  color: #fff !important;
}

/* Follow buttons also need white symbols on their brand-color tiles. */
.sns-follow-buttons a,
.sns-follow-buttons a:visited,
.sns-follow-buttons a:hover,
.sns-follow-buttons .button-caption,
.sns-follow-buttons .social-icon,
.follow-button .social-icon {
  color: #fff !important;
}

/* The static home page is a guide entrance, not an article to share. */
.page-id-13 .sns-share,
.page-id-13 .sns-share-buttons {
  display: none !important;
}

.article table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--rz-line);
  border-radius: 8px;
  overflow: hidden;
}

.article table th {
  background: #e8eee8;
  color: var(--rz-ink);
}

.article blockquote,
.information-box,
.question-box,
.alert-box {
  border-radius: 8px;
}

.toc {
  background: #faf7f1;
  border: 1px solid var(--rz-line);
  border-radius: 10px;
}

.pr-label {
  color: #fff;
  background: var(--rz-accent);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  letter-spacing: .08em;
}

.sidebar {
  padding: 22px;
}

.widget-sidebar h3 {
  color: var(--rz-ink);
  border-bottom: 2px solid var(--rz-accent);
  padding-bottom: 8px;
}

.footer {
  background: var(--rz-ink);
  color: #f7f3ec;
}

.footer a {
  color: #f7f3ec;
}

.pagination-next-link,
.page-numbers,
.cat-link,
.tag-link {
  border-radius: 6px;
}

.article .cat-link,
.article .cat-link:visited,
.article .tag-link,
.article .tag-link:visited {
  color: #fff !important;
}

@media screen and (max-width: 1023px) {
  .navi-in > ul > li > a { padding-inline: 9px; font-size: 13px; }
}

@media screen and (max-width: 834px) {
  #content { margin-top: 16px; }
  .main { padding: 22px 18px; border-radius: 0; }
  .entry-title, .article h1 { font-size: 27px; }
  .article h2 { font-size: 22px; }
  .sidebar { border-radius: 0; }
}

  background: rgba(255,253,249,.98);
  border-bottom: 1px solid var(--rz-line);
  box-shadow: 0 4px 18px rgba(47,52,50,.05);
}

.logo-header a,
.site-name-text {
  color: var(--rz-ink) !important;
  font-weight: 800;
  letter-spacing: .08em;
}

.navi,
.navi-in > ul {
  background: transparent;
}

.navi-in > ul > li > a {
  color: var(--rz-ink);
  font-size: 14px;
  font-weight: 700;
  padding-inline: 14px;
  border-radius: 6px;
}

.navi-in > ul > li > a:hover {
  color: var(--rz-accent);
  background: rgba(200,115,82,.08);
}

.navi-in .item-description,
.navi-in .caption-wrap .item-description {
  display: none !important;
}

#content {
  margin-top: 36px;
  margin-bottom: 56px;
}

.main,
.sidebar {
  background: var(--rz-paper);
  border: 1px solid var(--rz-line);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(47,52,50,.05);
}

.main {
  padding: clamp(24px,4vw,52px);
}

.entry-title,
.article h1 {
  color: var(--rz-ink);
  font-size: clamp(28px,4vw,42px);
  line-height: 1.4;
  letter-spacing: .01em;
}

.article h2 {
  color: var(--rz-ink);
  margin-top: 2.8em;
  padding: .65em .8em;
  background: #f1ece3;
  border-left: 5px solid var(--rz-accent);
  border-radius: 0 8px 8px 0;
  font-size: clamp(22px,3vw,29px);
}

.article h3 {
  color: var(--rz-ink);
  margin-top: 2.2em;
  padding-bottom: .35em;
  border-bottom: 2px solid var(--rz-sage);
  font-size: clamp(19px,2.5vw,23px);
}

.article a {
  color: #a64f35;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

/* Share buttons use their original brand backgrounds and white labels. */
.sns-share-buttons a,
.sns-share-buttons a:visited,
.sns-share-buttons a:hover,
.sns-share-buttons .button-caption,
.sns-share-buttons .social-icon {
  color: #fff !important;
}

/* Follow buttons also need white symbols on their brand-color tiles. */
.sns-follow-buttons a,
.sns-follow-buttons a:visited,
.sns-follow-buttons a:hover,
.sns-follow-buttons .button-caption,
.sns-follow-buttons .social-icon,
.follow-button .social-icon {
  color: #fff !important;
}

/* The static home page is a guide entrance, not an article to share. */
.page-id-13 .sns-share,
.page-id-13 .sns-share-buttons {
  display: none !important;
}

.article table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--rz-line);
  border-radius: 8px;
  overflow: hidden;
}

.article table th {
  background: #e8eee8;
  color: var(--rz-ink);
}

.article blockquote,
.information-box,
.question-box,
.alert-box {
  border-radius: 8px;
}

.toc {
  background: #faf7f1;
  border: 1px solid var(--rz-line);
  border-radius: 10px;
}

.pr-label {
  color: #fff;
  background: var(--rz-accent);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  letter-spacing: .08em;
}

.sidebar {
  padding: 22px;
}

.widget-sidebar h3 {
  color: var(--rz-ink);
  border-bottom: 2px solid var(--rz-accent);
  padding-bottom: 8px;
}

.footer {
  background: var(--rz-ink);
  color: #f7f3ec;
}

.footer a {
  color: #f7f3ec;
}

.pagination-next-link,
.page-numbers,
.cat-link,
.tag-link {
  border-radius: 6px;
}

@media screen and (max-width: 1023px) {
  .navi-in > ul > li > a { padding-inline: 9px; font-size: 13px; }
}

@media screen and (max-width: 834px) {
  #content { margin-top: 16px; }
  .main { padding: 22px 18px; border-radius: 0; }
  .entry-title, .article h1 { font-size: 27px; }
  .article h2 { font-size: 22px; }
  .sidebar { border-radius: 0; }
}

.header-container-in.hlt-top-menu,
.header-container-in.hlt-top-menu.hlt-tm-small {
  background: rgba(255,253,249,.98);
  border-bottom: 1px solid var(--rz-line);
  box-shadow: 0 4px 18px rgba(47,52,50,.05);
}

.logo-header a,
.site-name-text {
  color: var(--rz-ink) !important;
  font-weight: 800;
  letter-spacing: .08em;
}

.navi,
.navi-in > ul {
  background: transparent;
}

.navi-in > ul > li > a {
  color: var(--rz-ink);
  font-size: 14px;
  font-weight: 700;
  padding-inline: 14px;
  border-radius: 6px;
}

.navi-in > ul > li > a:hover {
  color: var(--rz-accent);
  background: rgba(200,115,82,.08);
}

.navi-in .item-description,
.navi-in .caption-wrap .item-description {
  display: none !important;
}

#content {
  margin-top: 36px;
  margin-bottom: 56px;
}

.main,
.sidebar {
  background: var(--rz-paper);
  border: 1px solid var(--rz-line);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(47,52,50,.05);
}

.main {
  padding: clamp(24px,4vw,52px);
}

.entry-title,
.article h1 {
  color: var(--rz-ink);
  font-size: clamp(28px,4vw,42px);
  line-height: 1.4;
  letter-spacing: .01em;
}

.article h2 {
  color: var(--rz-ink);
  margin-top: 2.8em;
  padding: .65em .8em;
  background: #f1ece3;
  border-left: 5px solid var(--rz-accent);
  border-radius: 0 8px 8px 0;
  font-size: clamp(22px,3vw,29px);
}

.article h3 {
  color: var(--rz-ink);
  margin-top: 2.2em;
  padding-bottom: .35em;
  border-bottom: 2px solid var(--rz-sage);
  font-size: clamp(19px,2.5vw,23px);
}

.article a {
  color: #a64f35;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

/* Share buttons use their original brand backgrounds and white labels. */
.sns-share-buttons a,
.sns-share-buttons a:visited,
.sns-share-buttons a:hover,
.sns-share-buttons .button-caption,
.sns-share-buttons .social-icon {
  color: #fff !important;
}

/* The static home page is a guide entrance, not an article to share. */
.page-id-13 .sns-share,
.page-id-13 .sns-share-buttons {
  display: none !important;
}

.article table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--rz-line);
  border-radius: 8px;
  overflow: hidden;
}

.article table th {
  background: #e8eee8;
  color: var(--rz-ink);
}

.article blockquote,
.information-box,
.question-box,
.alert-box {
  border-radius: 8px;
}

.toc {
  background: #faf7f1;
  border: 1px solid var(--rz-line);
  border-radius: 10px;
}

.pr-label {
  color: #fff;
  background: var(--rz-accent);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  letter-spacing: .08em;
}

.sidebar {
  padding: 22px;
}

.widget-sidebar h3 {
  color: var(--rz-ink);
  border-bottom: 2px solid var(--rz-accent);
  padding-bottom: 8px;
}

.footer {
  background: var(--rz-ink);
  color: #f7f3ec;
}

.footer a {
  color: #f7f3ec;
}

.pagination-next-link,
.page-numbers,
.cat-link,
.tag-link {
  border-radius: 6px;
}

@media screen and (max-width: 1023px) {
  .navi-in > ul > li > a { padding-inline: 9px; font-size: 13px; }
}

@media screen and (max-width: 834px) {
  #content { margin-top: 16px; }
  .main { padding: 22px 18px; border-radius: 0; }
  .entry-title, .article h1 { font-size: 27px; }
  .article h2 { font-size: 22px; }
  .sidebar { border-radius: 0; }
}

  background: rgba(255,253,249,.98);
  border-bottom: 1px solid var(--rz-line);
  box-shadow: 0 4px 18px rgba(47,52,50,.05);
}

.logo-header a,
.site-name-text {
  color: var(--rz-ink) !important;
  font-weight: 800;
  letter-spacing: .08em;
}

.navi,
.navi-in > ul {
  background: transparent;
}

.navi-in > ul > li > a {
  color: var(--rz-ink);
  font-size: 14px;
  font-weight: 700;
  padding-inline: 14px;
  border-radius: 6px;
}

.navi-in > ul > li > a:hover {
  color: var(--rz-accent);
  background: rgba(200,115,82,.08);
}

.navi-in .item-description,
.navi-in .caption-wrap .item-description {
  display: none !important;
}

#content {
  margin-top: 36px;
  margin-bottom: 56px;
}

.main,
.sidebar {
  background: var(--rz-paper);
  border: 1px solid var(--rz-line);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(47,52,50,.05);
}

.main {
  padding: clamp(24px,4vw,52px);
}

.entry-title,
.article h1 {
  color: var(--rz-ink);
  font-size: clamp(28px,4vw,42px);
  line-height: 1.4;
  letter-spacing: .01em;
}

.article h2 {
  color: var(--rz-ink);
  margin-top: 2.8em;
  padding: .65em .8em;
  background: #f1ece3;
  border-left: 5px solid var(--rz-accent);
  border-radius: 0 8px 8px 0;
  font-size: clamp(22px,3vw,29px);
}

.article h3 {
  color: var(--rz-ink);
  margin-top: 2.2em;
  padding-bottom: .35em;
  border-bottom: 2px solid var(--rz-sage);
  font-size: clamp(19px,2.5vw,23px);
}

.article a {
  color: #a64f35;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

.article table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--rz-line);
  border-radius: 8px;
  overflow: hidden;
}

.article table th {
  background: #e8eee8;
  color: var(--rz-ink);
}

.article blockquote,
.information-box,
.question-box,
.alert-box {
  border-radius: 8px;
}

.toc {
  background: #faf7f1;
  border: 1px solid var(--rz-line);
  border-radius: 10px;
}

.pr-label {
  color: #fff;
  background: var(--rz-accent);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  letter-spacing: .08em;
}

.sidebar {
  padding: 22px;
}

.widget-sidebar h3 {
  color: var(--rz-ink);
  border-bottom: 2px solid var(--rz-accent);
  padding-bottom: 8px;
}

.footer {
  background: var(--rz-ink);
  color: #f7f3ec;
}

.footer a {
  color: #f7f3ec;
}

.pagination-next-link,
.page-numbers,
.cat-link,
.tag-link {
  border-radius: 6px;
}

@media screen and (max-width: 1023px) {
  .navi-in > ul > li > a { padding-inline: 9px; font-size: 13px; }
}

@media screen and (max-width: 834px) {
  #content { margin-top: 16px; }
  .main { padding: 22px 18px; border-radius: 0; }
  .entry-title, .article h1 { font-size: 27px; }
  .article h2 { font-size: 22px; }
  .sidebar { border-radius: 0; }
}
