/*
Theme Name: gyouseishosi-nakabayasi
Theme URI: https://example.com/
Author: GitHub Copilot
Author URI: https://github.com/features/copilot
Description: 行政書士LP用のカスタムWordPressテーマ
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: gyouseishosi-nakabayasi
*/

:root {
  --header-bg: #ffffff;
  --header-border: #e7e7e7;
  --text-color: #232323;
  --muted-text: #9f9f9f;
  --cta-bg: #bb925e;
  --cta-bg-strong: #b38750;
  --cta-soft: #f9f4ec;
  --cta-border: #b68b56;
  --cta-shadow: rgba(0, 0, 0, 0.16);
  --section-bg: #efefed;
  --line-color: #e2c7a3;
  --outline-color: #9f9f9f;
  --space-section: 88px;
  --space-section-lg: 104px;
  --space-section-md: 72px;
  --space-section-sm: 56px;
  --gutter-pc: 132px;
  --gutter-lg: 72px;
  --gutter-md: 40px;
  --gutter-sm: 24px;
  --global-scale: 0.8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text-color);
  font-family: "Noto Sans JP", sans-serif;
  background: #ffffff;
  zoom: var(--global-scale);
  overflow-x: hidden;
}

.site-header {
  width: 100%;
  min-height: 82px;
  background: #ffffff;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid var(--header-border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.global-nav {
  background: #ffffff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: #333333;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__line + .nav-toggle__line {
  margin-top: 5px;
}

.site-header__inner {
  width: min(1180px, calc(100% - var(--gutter-pc)));
  min-height: 80px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 460px) 1fr auto auto;
  align-items: center;
  column-gap: 18px;
}

.site-logo {
  margin-right: 0;
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
  max-width: 100%;
}

.global-nav {
  justify-self: start;
}

.site-logo__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(23px, 1.55vw, 30px);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-wrap: balance;
}

.site-logo__subtitle {
  margin-top: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  color: var(--muted-text);
  letter-spacing: 0.06em;
}

.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.global-nav__link {
  position: relative;
  display: inline-block;
  padding: 8px 10px 10px;
  font-size: 14px;
  font-weight: 700;
  color: #2f2f2f;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.35;
  white-space: nowrap;
  border-radius: 4px;
}

.global-nav__link::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 4px;
  width: calc(100% - 20px);
  height: 2px;
  background: var(--line-color);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.global-nav__link:hover,
.global-nav__link:focus-visible {
  background: #f8f3ea;
  color: #604a2f;
}

.global-nav__link:hover::after,
.global-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.site-header__tel {
  font-size: 17px;
  font-weight: 700;
  color: #353535;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-header__cta {
  min-width: 164px;
  height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cta-bg);
  border: 1px solid var(--cta-border);
  border-radius: 4px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 1px 2px var(--cta-shadow);
  white-space: nowrap;
}

.site-header__cta,
.hero__button,
.service-feature__button,
.news__button,
.contact-form__button,
.site-footer__link {
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}

.hero {
  background: #ffffff;
  border-top: 1px solid #e1e1df;
  border-bottom: 1px solid #e1e1df;
}

.hero__inner {
  width: min(1180px, calc(100% - var(--gutter-pc)));
  margin: 0 auto;
  padding: 44px 0 72px;
  display: grid;
  grid-template-columns: 1fr 560px;
  align-items: center;
  column-gap: 28px;
}

.hero__content {
  min-width: 0;
  max-width: 860px;
}

.hero__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 1.45;
  letter-spacing: 0.045em;
  color: #242424;
  text-wrap: balance;
}

.hero__line {
  display: block;
  white-space: normal;
}

.hero__phrase {
  white-space: nowrap;
}

.hero__title-mark {
  display: inline-block;
  border-bottom: 3px solid var(--line-color);
  line-height: 0.98;
}

.hero__lead {
  margin: 36px 0 0;
  font-size: clamp(15px, 1.15vw, 22px);
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: #666666;
  font-weight: 700;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__button {
  min-width: 280px;
  height: 92px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: clamp(18px, 1.2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 2px;
}

.hero__button--primary {
  color: #ffffff;
  background: var(--cta-bg);
  border: 1px solid #b9915e;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero__button--secondary {
  color: #6f5430;
  background: #ffffff;
  border: 2px solid #c8a671;
}

.hero__media {
  width: 100%;
  aspect-ratio: 560 / 372;
  border: 1px solid #dededb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background-image: linear-gradient(rgba(190, 201, 204, 0.18), rgba(190, 201, 204, 0.18)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1300&q=80");
  background-size: cover;
  background-position: center;
}

.reasons {
  background: var(--section-bg);
  padding: var(--space-section-lg) 0 var(--space-section);
}

.reasons__inner {
  width: min(1180px, calc(100% - var(--gutter-pc)));
  margin: 0 auto;
}

.reasons__title {
  margin: 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #323232;
}

.reasons__title::after {
  content: "";
  display: block;
  width: 84px;
  margin: 16px auto 0;
  border-bottom: 4px solid #444444;
}

.reasons__lead {
  margin: 40px 0 0;
  text-align: center;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.03em;
  color: #7a7a7a;
}

.reasons__cards {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.reason-card {
  min-height: 520px;
  border: 2px solid #ececec;
  background: #ffffff;
  padding: 40px 30px 30px;
}

.reason-card__number {
  width: 78px;
  height: 78px;
  margin: 0 auto;
  border-radius: 50%;
  background: #2f3838;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.reason-card__title {
  margin: 28px 0 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(30px, 2.1vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #3a3a3a;
}

.reason-card__text {
  margin: 24px 0 0;
  font-size: clamp(14px, 1.02vw, 16px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #555555;
}

.services {
  background: #ffffff;
  padding: var(--space-section-lg) 0 var(--space-section);
}

.services__inner {
  width: min(1120px, calc(100% - var(--gutter-pc)));
  margin: 0 auto;
}

.services__title {
  margin: 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #333333;
}

.services__title::after {
  content: "";
  display: block;
  width: 76px;
  margin: 12px auto 0;
  border-bottom: 4px solid #4c4c4c;
}

.services__lead {
  margin: 34px 0 0;
  text-align: center;
  color: #8b8b8b;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-feature {
  margin-top: 52px;
  border-radius: 12px;
  border: 1px solid #e3e3e3;
  background: #ffffff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 47% 53%;
}

.service-feature__image {
  min-height: 360px;
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.service-feature--web {
  margin-top: 36px;
}

.service-feature__image--web {
  background-image: url("https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?auto=format&fit=crop&w=1200&q=80");
}

.service-feature__content {
  padding: 40px 46px 34px;
}

.service-feature__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(30px, 2.3vw, 40px);
  font-weight: 700;
  letter-spacing: 0.035em;
  color: #383838;
}

.service-feature__text {
  margin: 20px 0 0;
  color: #5f5f5f;
  font-size: clamp(14px, 1.02vw, 16px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.service-feature__text + .service-feature__text {
  margin-top: 14px;
}

.service-feature__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-feature__item {
  color: #6b6b6b;
  font-size: clamp(14px, 0.95vw, 15px);
  line-height: 1.95;
  letter-spacing: 0.03em;
}

.service-feature__button {
  margin-top: 18px;
  min-width: 170px;
  height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid #be9763;
  color: #7a5a31;
  text-decoration: none;
  font-size: clamp(14px, 0.98vw, 15px);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.services__subheading {
  margin: 62px 0 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 2.2vw, 36px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #353535;
}

.service-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-grid__card {
  min-height: 140px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-left: 3px solid #5d5d5d;
  padding: 16px 16px 14px;
}

.service-grid__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 1.38vw, 22px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #3f3f3f;
}

.service-grid__text {
  margin: 10px 0 0;
  color: #6f6f6f;
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.profile {
  background: var(--section-bg);
  padding: var(--space-section-lg) 0 var(--space-section);
}

.profile__inner {
  width: min(1120px, calc(100% - var(--gutter-pc)));
  margin: 0 auto;
}

.profile__title {
  margin: 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2f2f2f;
}

.profile__title::after {
  content: "";
  display: block;
  width: 76px;
  margin: 14px auto 0;
  border-bottom: 4px solid #464646;
}

.profile__grid {
  margin-top: 52px;
  display: flex;
  justify-content: center;
  align-items: start;
}

.profile__photo {
  min-height: 460px;
  border-radius: 12px;
  border: 1px solid #dedede;
  background: #d4d4d1;
  color: #8e8e8e;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile__content {
  max-width: 500px;
  width: 100%;
}

.profile__role {
  margin: 0;
  color: #565656;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.profile__name {
  margin: 14px 0 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #efefef;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(40px, 3.2vw, 56px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #2f2f2f;
}

.profile__message {
  margin-top: 24px;
}

.profile__message p {
  margin: 0;
  color: #5d5d5d;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 700;
  line-height: 1.95;
  letter-spacing: 0.03em;
}

.profile__message p + p {
  margin-top: 18px;
}

.profile__history {
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid #ecece8;
  background: #f0f0ed;
}

.profile__history-item {
  margin: 0;
  color: #555555;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.9;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile__history-item strong {
  display: inline-block;
  width: 110px;
  color: #3f3f3f;
  flex-shrink: 0;
}

.profile__history-item + .profile__history-item {
  margin-top: 6px;
}

.fees {
  background: #ffffff;
  padding: var(--space-section-lg) 0 var(--space-section);
}

.fees__inner {
  width: min(1120px, calc(100% - var(--gutter-pc)));
  margin: 0 auto;
}

.fees__title {
  margin: 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2f2f2f;
}

.fees__title::after {
  content: "";
  display: block;
  width: 76px;
  margin: 14px auto 0;
  border-bottom: 4px solid #464646;
}

.fees__lead {
  margin: 36px 0 0;
  text-align: center;
  color: #737373;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.fees__tables {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.fees__column {
  min-width: 0;
}

.fees__column--left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.fee-card {
  background: #ffffff;
  border-top: 4px solid #ccb894;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  padding: 34px 34px 26px;
}

.fee-card__title {
  margin: 0;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #efefef;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(30px, 2.1vw, 38px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #3a3a3a;
}

.fee-card__rows {
  margin-top: 16px;
}

.fee-row {
  padding: 14px 0;
  border-bottom: 1px solid #f1f1f1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(168px, 220px);
  gap: 8px;
  align-items: start;
}

.fee-row__label,
.fee-row__price {
  margin: 0;
  color: #4c4c4c;
  font-size: clamp(15px, 1.08vw, 17px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.025em;
}

.fee-row__price {
  text-align: right;
  white-space: normal;
}

.fee-card__note {
  margin: 16px 0 0;
  color: #8f8f8f;
  font-size: clamp(12px, 0.85vw, 13px);
  line-height: 1.65;
  letter-spacing: 0.02em;
  text-align: right;
}

.fees__actions {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
}

.fees__detail-button {
  min-width: 280px;
  height: 60px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b18854;
  background: #bc955f;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(17px, 1.15vw, 20px);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
}

.fees__detail-button:hover,
.fees__detail-button:focus-visible {
  background: var(--cta-bg-strong);
  border-color: #a87a45;
  color: #ffffff;
}

.faq {
  background: var(--section-bg);
  padding: var(--space-section) 0;
}

.faq__inner {
  width: min(1000px, calc(100% - var(--gutter-pc)));
  margin: 0 auto;
}

.faq__title {
  margin: 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2f2f2f;
}

.faq__title::after {
  content: "";
  display: block;
  width: 76px;
  margin: 14px auto 0;
  border-bottom: 4px solid #464646;
}

.faq__lead {
  margin: 32px 0 0;
  text-align: center;
  color: #737373;
  font-size: clamp(14px, 1.02vw, 16px);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.faq__list {
  margin-top: 40px;
  display: grid;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 22px 26px;
}

.faq-item__question {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #3a3a3a;
  font-size: clamp(22px, 1.55vw, 28px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.faq-item__label {
  width: 40px;
  height: 32px;
  border-radius: 4px;
  background: #273131;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.faq-item__answer {
  margin: 16px 0 0 54px;
  color: #626262;
  font-size: clamp(14px, 1.02vw, 16px);
  line-height: 1.9;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.news {
  background: #ffffff;
  padding: var(--space-section) 0;
}

.news__inner {
  width: min(920px, calc(100% - var(--gutter-pc)));
  margin: 0 auto;
}

.news__title {
  margin: 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2f2f2f;
}

.news__title::after {
  content: "";
  display: block;
  width: 76px;
  margin: 14px auto 0;
  border-bottom: 4px solid #464646;
}

.news__list {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.news__item {
  min-height: 66px;
  border-bottom: 1px solid #ececec;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 0 10px;
}

.news__date {
  color: #6f6f6f;
  font-size: clamp(12px, 0.92vw, 14px);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.news__category {
  border: 1px solid #d4d4d4;
  background: #f5f5f5;
  color: #7b7b7b;
  padding: 4px 10px;
  font-size: clamp(11px, 0.82vw, 12px);
  line-height: 1;
}

.news__link {
  color: #2f2f2f;
  text-decoration: none;
  font-size: clamp(20px, 1.45vw, 28px);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.25;
}

a.news__link {
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a.news__link:hover,
a.news__link:focus-visible {
  color: #6a4d2b;
  text-decoration: underline;
  text-decoration-color: #c8a671;
  text-underline-offset: 0.14em;
}

.news__actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.news__button {
  margin-top: 0;
  min-width: 210px;
  height: 64px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #6f6f6f;
  background: #ffffff;
  color: #3c3c3c;
  text-decoration: none;
  font-size: clamp(20px, 1.35vw, 24px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.news .wp-show-posts,
.news .news__list {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.news__notice {
  margin: 34px 0 0;
  padding: 16px;
  border: 1px solid #ead9be;
  background: #fffaf1;
  color: #6f5b3a;
  font-size: 14px;
  line-height: 1.7;
}

.news .wp-show-posts .wp-show-posts-entry,
.news .news__list .listing-item,
.news__item {
  min-height: 66px;
  border-bottom: 1px solid #ececec;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 0 10px;
}

.news .wp-show-posts .wp-show-posts-entry-date,
.news .news__list .listing-item .date {
  color: #6f6f6f;
  font-size: clamp(12px, 0.92vw, 14px);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.news .wp-show-posts .wp-show-posts-entry-title a,
.news .news__list .listing-item a {
  color: #2f2f2f;
  text-decoration: none;
  font-size: clamp(30px, 2.2vw, 38px);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.25;
}

.news .wp-show-posts .wp-show-posts-entry-header,
.news .wp-show-posts .wp-show-posts-entry-summary,
.news .wp-show-posts .wp-show-posts-entry-meta {
  margin: 0;
}

.contact {
  background: var(--section-bg);
  padding: var(--space-section) 0 var(--space-section-lg);
}

.contact__inner {
  width: min(820px, calc(100% - var(--gutter-pc)));
  margin: 0 auto;
}

.contact__title {
  margin: 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2f2f2f;
}

.contact__title::after {
  content: "";
  display: block;
  width: 76px;
  margin: 14px auto 0;
  border-bottom: 4px solid #464646;
}

.contact__lead {
  margin: 28px 0 0;
  text-align: center;
  color: #707070;
  font-size: clamp(13px, 0.98vw, 15px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.contact__phone {
  margin: 36px auto 0;
  width: min(680px, 100%);
  min-height: 132px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: #e0e0df;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.contact__phone-label {
  margin: 0;
  color: #5b5b5b;
  font-size: clamp(14px, 1.02vw, 15px);
  font-weight: 700;
}

.contact__phone-number {
  margin-top: 8px;
  color: #2f2f2f;
  text-decoration: none;
  font-size: clamp(52px, 3.8vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.contact__phone-time {
  margin: 10px 0 0;
  color: #777777;
  font-size: clamp(12px, 0.88vw, 13px);
  font-weight: 500;
}

.contact-form {
  margin: 42px auto 0;
  width: min(600px, 100%);
  border: 1px solid #e9e9e9;
  background: #fafafa;
  padding: 26px 30px 36px;
}

.contact-form__field + .contact-form__field {
  margin-top: 14px;
}

.contact-form__label {
  display: block;
  margin-bottom: 8px;
  text-align: center;
  color: #4a4a4a;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  border: 2px solid #ececec;
  background: #ffffff;
  color: #2f2f2f;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  padding: 8px 10px;
}

.contact-form__input {
  height: 44px;
}

.contact-form__textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form__button {
  margin: 28px auto 0;
  width: 170px;
  height: 54px;
  border: 1px solid #b18854;
  background: #bc955f;
  color: #ffffff;
  display: block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.contact-form .wpcf7-form > p {
  margin: 0;
}

.contact-form .wpcf7-form > p + p {
  margin-top: 14px;
}

.contact-form .wpcf7-form label {
  display: block;
  margin-bottom: 8px;
  text-align: center;
  color: #4a4a4a;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.contact-form .wpcf7-text,
.contact-form .wpcf7-email,
.contact-form .wpcf7-textarea {
  width: 100%;
  border: 2px solid #ececec;
  background: #ffffff;
  color: #2f2f2f;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  padding: 8px 10px;
}

.contact-form .wpcf7-text,
.contact-form .wpcf7-email {
  height: 44px;
}

.contact-form .wpcf7-textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form .wpcf7-submit {
  margin: 28px auto 0;
  width: 170px;
  height: 54px;
  border: 1px solid #b18854;
  background: #bc955f;
  color: #ffffff;
  display: block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.contact-form .wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}

.contact-form .wpcf7-response-output {
  margin: 16px 0 0;
  border-width: 1px;
  border-radius: 4px;
  font-size: 14px;
}

.contact-form__notice {
  margin: 0;
  padding: 16px;
  border: 1px solid #ead9be;
  background: #fffaf1;
  color: #6f5b3a;
  font-size: 14px;
  line-height: 1.7;
}

.site-header__cta:hover,
.site-header__cta:focus-visible,
.hero__button--primary:hover,
.hero__button--primary:focus-visible,
.contact-form__button:hover,
.contact-form__button:focus-visible {
  background: var(--cta-bg-strong);
  border-color: #a87a45;
}

.hero__button--secondary:hover,
.hero__button--secondary:focus-visible,
.service-feature__button:hover,
.service-feature__button:focus-visible {
  background: var(--cta-soft);
  border-color: #b98e59;
}

.news__button:hover,
.news__button:focus-visible {
  background: #f6f6f6;
  border-color: #555555;
  color: #2f2f2f;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #f6d7ad;
  opacity: 1;
}

.site-footer {
  background: linear-gradient(180deg, #2a2928 0%, #1f1e1d 100%);
  color: #ece6df;
  border-top: 1px solid #4a4744;
  padding: 46px 0 26px;
}

.site-footer__inner {
  width: min(1180px, calc(100% - var(--gutter-pc)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 420px);
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
}

.site-footer__about {
  min-width: 0;
}

.site-footer__brand {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(30px, 2.4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: #fffdf9;
}

.site-footer__tagline {
  margin: 14px 0 0;
  color: #d4c9ba;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.site-footer__address {
  margin: 16px 0 0;
  font-style: normal;
  color: #d8cfc2;
  font-size: clamp(14px, 0.98vw, 15px);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.site-footer__tel {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.site-footer__nav-title {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #b9aa97;
  font-weight: 700;
  text-align: right;
}

.site-footer__list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.site-footer__link {
  color: #f0ece5;
  text-decoration: none;
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-footer__bottom {
  width: min(1180px, calc(100% - var(--gutter-pc)));
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__copy {
  margin: 0;
  text-align: center;
  color: #b8afa2;
  font-size: clamp(13px, 0.9vw, 14px);
  letter-spacing: 0.02em;
}

@media (max-width: 1200px) {
  .site-header__inner {
    width: min(1180px, calc(100% - var(--gutter-lg)));
    grid-template-columns: minmax(220px, 380px) 1fr auto auto;
    column-gap: 12px;
  }

  .site-logo__title {
    font-size: clamp(20px, 1.8vw, 25px);
  }

  .site-logo__subtitle {
    font-size: 10px;
  }

  .global-nav__list {
    gap: 4px;
  }

  .global-nav__link {
    padding: 8px 8px 10px;
    font-size: 13px;
  }

  .site-header__tel {
    font-size: 16px;
  }

  .site-header__cta {
    min-width: 150px;
    height: 44px;
    font-size: 15px;
  }

  .hero__inner {
    width: min(1180px, calc(100% - var(--gutter-lg)));
    grid-template-columns: 1fr 48%;
    column-gap: 30px;
    padding: 36px 0 54px;
  }

  .hero__button {
    min-width: 235px;
    height: 74px;
  }

  .reasons {
    padding: var(--space-section-md) 0;
  }

  .reasons__inner {
    width: min(1180px, calc(100% - var(--gutter-lg)));
  }

  .reasons__cards {
    margin-top: 48px;
    gap: 18px;
  }

  .reason-card {
    min-height: 460px;
    padding: 28px 22px 22px;
  }

  .reason-card__number {
    width: 64px;
    height: 64px;
    font-size: 34px;
  }

  .services {
    padding: var(--space-section-md) 0;
  }

  .services__inner {
    width: min(1120px, calc(100% - var(--gutter-lg)));
  }

  .service-feature {
    margin-top: 42px;
    grid-template-columns: 44% 56%;
  }

  .service-feature__content {
    padding: 30px 30px 28px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .profile {
    padding: var(--space-section-md) 0;
  }

  .profile__inner {
    width: min(1120px, calc(100% - var(--gutter-lg)));
  }

  .profile__grid {
    column-gap: 28px;
  }

  .profile__photo {
    min-height: 380px;
  }

  .fees {
    padding: var(--space-section-md) 0;
  }

  .fees__inner {
    width: min(1120px, calc(100% - var(--gutter-lg)));
  }

  .fees__tables {
    gap: 16px;
  }

  .fees__column--left {
    gap: 16px;
  }

  .fee-card {
    padding: 26px 20px 20px;
  }

  .faq {
    padding: var(--space-section-md) 0;
  }

  .faq__inner {
    width: min(1000px, calc(100% - var(--gutter-lg)));
  }

  .news {
    padding: var(--space-section-md) 0;
  }

  .news__inner {
    width: min(920px, calc(100% - var(--gutter-lg)));
  }

  .news__item {
    gap: 12px;
  }

  .news__link {
    font-size: clamp(18px, 1.7vw, 24px);
  }

  .news__button {
    min-width: 190px;
    height: 56px;
  }

  .contact {
    padding: var(--space-section-md) 0;
  }

  .contact__inner {
    width: min(820px, calc(100% - var(--gutter-lg)));
  }

  .contact__phone-number {
    font-size: clamp(40px, 3.4vw, 54px);
  }

  .contact-form {
    width: min(560px, 100%);
    padding: 22px 20px 28px;
  }

  .site-footer__inner,
  .site-footer__bottom {
    width: min(980px, calc(100% - var(--gutter-lg)));
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 10px 0;
  }

  .site-header__inner {
    width: min(100%, calc(100% - var(--gutter-md)));
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    row-gap: 0;
    column-gap: 12px;
  }

  .site-logo {
    grid-column: 1 / 2;
    grid-row: 1;
  }

  .site-logo__title {
    font-size: clamp(20px, 4.6vw, 26px);
    line-height: 1.18;
  }

  .site-logo__subtitle {
    margin-top: 6px;
    font-size: 11px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: 2 / 3;
    grid-row: 1;
  }

  .site-header__cta {
    grid-column: 1 / 3;
    grid-row: 4;
    min-width: 0;
    width: 100%;
    height: 48px;
    font-size: 18px;
    justify-self: stretch;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease, margin-top 0.2s ease;
  }

  .global-nav {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: stretch;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    border-top: 1px solid #ececec;
    transition: max-height 0.25s ease, opacity 0.2s ease, padding-top 0.2s ease, margin-top 0.2s ease;
  }

  .site-header--menu-open .global-nav {
    max-height: 520px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 10px;
    padding-top: 8px;
  }

  .global-nav__list {
    gap: 0;
    display: block;
    text-align: left;
  }

  .global-nav__item {
    width: 100%;
  }

  .global-nav__link {
    font-size: 14px;
    padding: 13px 6px;
    display: block;
    text-align: left;
    border-radius: 0;
    border-bottom: 1px solid #eeeeee;
  }

  .global-nav__link::after {
    left: 6px;
    width: calc(100% - 12px);
  }

  .site-header__tel {
    grid-column: 1 / 3;
    grid-row: 3;
    font-size: 16px;
    align-self: center;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease, margin-top 0.2s ease;
  }

  .site-header--menu-open .site-header__tel {
    max-height: 42px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #ececec;
  }

  .site-header--menu-open .site-header__cta {
    max-height: 56px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 10px;
  }

  .site-header--menu-open .nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header--menu-open .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .site-header--menu-open .nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__inner {
    width: min(100%, calc(100% - var(--gutter-md)));
    padding: 28px 0 40px;
    grid-template-columns: 1fr;
    row-gap: 26px;
  }

  .hero__title {
    font-size: clamp(28px, 6.2vw, 40px);
  }

  .hero__line {
    white-space: normal;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: clamp(14px, 3.4vw, 18px);
    line-height: 1.8;
  }

  .hero__actions {
    margin-top: 24px;
    gap: 10px;
  }

  .hero__button {
    min-width: 0;
    flex: 1;
    height: 60px;
    font-size: clamp(14px, 2.4vw, 16px);
  }

  .reasons {
    padding: var(--space-section-sm) 0;
  }

  .reasons__inner {
    width: min(100%, calc(100% - var(--gutter-md)));
  }

  .reasons__title {
    font-size: clamp(28px, 5.2vw, 38px);
  }

  .reasons__title::after {
    width: 66px;
    margin-top: 12px;
    border-bottom-width: 3px;
  }

  .reasons__lead {
    margin-top: 24px;
    line-height: 1.75;
  }

  .reasons__cards {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reason-card {
    min-height: 0;
  }

  .reason-card__title {
    margin-top: 20px;
    font-size: clamp(22px, 4.2vw, 30px);
  }

  .reason-card__text {
    margin-top: 16px;
    line-height: 1.9;
  }

  .services {
    padding: var(--space-section-sm) 0;
  }

  .services__inner {
    width: min(100%, calc(100% - var(--gutter-md)));
  }

  .services__title {
    font-size: clamp(28px, 5.2vw, 38px);
  }

  .services__title::after {
    width: 62px;
    border-bottom-width: 3px;
  }

  .services__lead {
    margin-top: 22px;
  }

  .service-feature {
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .service-feature__image {
    min-height: 240px;
  }

  .service-feature__content {
    padding: 22px 20px 20px;
  }

  .service-feature__title {
    font-size: clamp(24px, 4.6vw, 30px);
  }

  .service-feature__button {
    height: 46px;
  }

  .services__subheading {
    margin-top: 42px;
    font-size: clamp(24px, 4.5vw, 30px);
  }

  .service-grid {
    margin-top: 22px;
    grid-template-columns: 1fr;
  }

  .service-grid__card {
    min-height: 0;
  }

  .profile {
    padding: var(--space-section-sm) 0;
  }

  .profile__inner {
    width: min(100%, calc(100% - var(--gutter-md)));
  }

  .profile__title {
    font-size: clamp(28px, 5.2vw, 38px);
  }

  .profile__title::after {
    width: 62px;
    border-bottom-width: 3px;
  }

  .profile__grid {
    margin-top: 28px;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .profile__photo {
    min-height: 260px;
  }

  .profile__name {
    font-size: clamp(32px, 7vw, 44px);
  }

  .profile__message p + p {
    margin-top: 14px;
  }

  .profile__history {
    padding: 14px 14px;
  }

  .fees {
    padding: var(--space-section-sm) 0;
  }

  .fees__inner {
    width: min(100%, calc(100% - var(--gutter-md)));
  }

  .fees__title {
    font-size: clamp(28px, 5.2vw, 38px);
  }

  .fees__title::after {
    width: 62px;
    border-bottom-width: 3px;
  }

  .fees__lead {
    margin-top: 22px;
  }

  .fees__tables {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fees__column--left {
    grid-template-rows: auto;
    gap: 14px;
  }

  .fee-card__title {
    font-size: clamp(24px, 4.4vw, 30px);
  }

  .faq {
    padding: var(--space-section-sm) 0;
  }

  .faq__inner {
    width: min(100%, calc(100% - var(--gutter-md)));
  }

  .faq__title {
    font-size: clamp(28px, 5.2vw, 38px);
  }

  .faq__title::after {
    width: 62px;
    border-bottom-width: 3px;
  }

  .faq__lead {
    margin-top: 20px;
  }

  .faq__list {
    margin-top: 26px;
    gap: 12px;
  }

  .faq-item {
    padding: 16px 16px;
  }

  .faq-item__question {
    gap: 10px;
    font-size: clamp(18px, 3.8vw, 24px);
  }

  .faq-item__label {
    width: 34px;
    height: 28px;
    font-size: 15px;
  }

  .faq-item__answer {
    margin-left: 44px;
    margin-top: 12px;
  }

  .news {
    padding: var(--space-section-sm) 0;
  }

  .news__inner {
    width: min(100%, calc(100% - var(--gutter-md)));
  }

  .news__title {
    font-size: clamp(28px, 5.2vw, 38px);
  }

  .news__title::after {
    width: 62px;
    border-bottom-width: 3px;
  }

  .news__list {
    margin-top: 28px;
  }

  .news .wp-show-posts .wp-show-posts-entry,
  .news .news__list .listing-item,
  .news__item {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
    padding-bottom: 14px;
  }

  .news .wp-show-posts .wp-show-posts-entry-title a,
  .news .news__list .listing-item a,
  .news__link {
    font-size: clamp(16px, 4.4vw, 22px);
  }

  .news__button {
    margin-top: 14px;
    min-width: 168px;
    height: 50px;
    font-size: clamp(16px, 2.8vw, 20px);
  }

  .contact {
    padding: var(--space-section-sm) 0;
  }

  .contact__inner {
    width: min(100%, calc(100% - var(--gutter-md)));
  }

  .contact__title {
    font-size: clamp(28px, 5.2vw, 38px);
  }

  .contact__title::after {
    width: 62px;
    border-bottom-width: 3px;
  }

  .contact__lead {
    margin-top: 20px;
    font-size: 13px;
  }

  .contact__phone {
    margin-top: 24px;
    min-height: 112px;
  }

  .contact__phone-number {
    font-size: clamp(34px, 8.2vw, 46px);
  }

  .contact-form {
    margin-top: 24px;
    padding: 18px 14px 22px;
  }

  .contact-form__label {
    text-align: left;
  }

  .contact-form__button {
    margin-top: 22px;
    width: 150px;
    height: 48px;
    font-size: 20px;
  }

  .contact-form .wpcf7-form label {
    text-align: left;
  }

  .contact-form .wpcf7-submit {
    margin-top: 22px;
    width: 150px;
    height: 48px;
    font-size: 20px;
  }

  .site-footer {
    padding: 30px 0 20px;
  }

  .site-footer__inner,
  .site-footer__bottom {
    width: min(100%, calc(100% - var(--gutter-md)));
  }

  .site-footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer__brand {
    font-size: clamp(32px, 7vw, 42px);
  }

  .site-footer__nav-title {
    text-align: left;
  }

  .site-footer__list {
    justify-items: start;
    padding-top: 0;
  }

  .site-footer__link {
    font-size: clamp(16px, 3.6vw, 20px);
  }

  .site-footer__bottom {
    margin-top: 18px;
    padding-top: 16px;
  }
}

@media (max-width: 520px) {
  .site-header__inner {
    width: calc(100% - var(--gutter-sm));
  }

  .site-header__tel {
    font-size: 16px;
  }

  .hero__inner {
    width: calc(100% - var(--gutter-sm));
    padding: 24px 0 34px;
  }

  .hero__title {
    line-height: 1.5;
  }

  .hero__title-mark {
    border-bottom-width: 2px;
  }

  .hero__lead {
    margin-top: 16px;
    line-height: 1.75;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__button {
    width: 100%;
    height: 56px;
  }

  .reasons__inner {
    width: calc(100% - var(--gutter-sm));
  }

  .reason-card {
    padding: 24px 18px 20px;
  }

  .reason-card__number {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }

  .services__inner {
    width: calc(100% - var(--gutter-sm));
  }

  .profile__inner {
    width: calc(100% - var(--gutter-sm));
  }

  .profile__photo {
    min-height: 220px;
    font-size: 16px;
  }

  .profile__name {
    padding-bottom: 12px;
  }

  .profile__history-item strong {
    width: 90px;
  }

  .fees__inner {
    width: calc(100% - var(--gutter-sm));
  }

  .fee-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .fee-row__price {
    text-align: left;
    white-space: normal;
  }

  .fee-card__note {
    text-align: left;
  }

  .faq__inner {
    width: calc(100% - var(--gutter-sm));
  }

  .faq-item__question {
    display: block;
    line-height: 1.5;
  }

  .faq-item__label {
    margin-right: 8px;
    vertical-align: top;
  }

  .faq-item__answer {
    margin-left: 0;
  }

  .news__inner {
    width: calc(100% - var(--gutter-sm));
  }

  .news__button {
    min-width: 100%;
  }

  .contact__inner {
    width: calc(100% - var(--gutter-sm));
  }

  .contact-form__button {
    width: 100%;
  }

  .contact-form .wpcf7-submit {
    width: 100%;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__inner,
  .site-footer__bottom {
    width: calc(100% - var(--gutter-sm));
  }

  .site-footer__nav-title {
    text-align: left;
  }

  .site-footer__list {
    justify-items: start;
  }
}

.post-detail {
  background: #ffffff;
  padding: var(--space-section-lg) 0;
}

.post-detail__inner {
  width: min(1280px, calc(100% - var(--gutter-lg)));
  margin: 0 auto;
  border: 1px solid #e7e7e7;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  padding: 48px 64px 54px;
}

.post-detail__header {
  border-bottom: 1px solid #e7dccd;
  padding-bottom: 20px;
}

.post-detail__label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 2px 12px;
  background: #f8f2e8;
  border: 1px solid #d7c0a0;
  color: #6e512f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.post-detail__title {
  margin: 16px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #2d2b28;
}

.post-detail__date {
  margin-top: 14px;
  display: block;
  color: #7b746a;
  font-size: 14px;
  font-weight: 500;
}

.post-detail__thumb {
  margin: 26px 0 0;
}

.post-detail__thumb img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #e8e0d4;
}

.post-detail__content {
  margin-top: 34px;
  color: #3f3c37;
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.02em;
}

.post-detail__content h2,
.post-detail__content h3,
.post-detail__content h4 {
  margin: 1.9em 0 0.7em;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  color: #2f2c27;
}

.post-detail__content h2 {
  font-size: clamp(24px, 2vw, 30px);
  border-left: 4px solid #c8a671;
  padding-left: 12px;
}

.post-detail__content h3 {
  font-size: clamp(20px, 1.6vw, 24px);
}

.post-detail__content p {
  margin: 1em 0;
}

.post-detail__content ul,
.post-detail__content ol {
  margin: 1.2em 0;
  padding-left: 1.5em;
}

.post-detail__content a {
  color: #6a4d2b;
}

.post-detail__actions {
  margin-top: 42px;
}

.post-detail__button {
  min-width: 220px;
  height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #7a6545;
  background: #ffffff;
  color: #3f3425;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

.post-detail__button:hover,
.post-detail__button:focus-visible {
  background: #f8f2e8;
}

.post-detail__pages {
  margin-top: 26px;
}

@media (max-width: 900px) {
  .post-detail {
    padding: var(--space-section-md) 0;
  }

  .post-detail__inner {
    width: min(100%, calc(100% - var(--gutter-md)));
    padding: 34px 30px 36px;
  }

  .post-detail__content {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .post-detail {
    padding: var(--space-section-sm) 0;
  }

  .post-detail__inner {
    width: calc(100% - var(--gutter-sm));
    padding: 22px 16px 24px;
  }

  .post-detail__title {
    font-size: clamp(24px, 7.4vw, 32px);
  }

  .post-detail__button {
    width: 100%;
    min-width: 0;
    height: 52px;
    font-size: 16px;
  }
}

.policy-page {
  background: #ffffff;
  padding: var(--space-section) 0;
}

.policy-page__inner {
  width: min(980px, calc(100% - var(--gutter-pc)));
  margin: 0 auto;
}

.policy-doc {
  border: 1px solid #e8ddcb;
  background: #fffdfa;
  box-shadow: 0 6px 20px rgba(70, 55, 34, 0.08);
  padding: 36px 40px 42px;
}

.policy-doc__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 3vw, 48px);
  letter-spacing: 0.04em;
  color: #2f2a23;
}

.policy-doc__title::after {
  content: "";
  display: block;
  width: 72px;
  margin-top: 12px;
  border-bottom: 4px solid #4f4437;
}

.policy-doc__lead {
  margin: 20px 0 0;
  color: #5f564a;
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.02em;
}

.policy-doc__section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #eadfce;
}

.policy-doc__heading {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #312a22;
}

.policy-doc p {
  margin: 14px 0 0;
  color: #413a31;
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.02em;
}

.policy-doc ul {
  margin: 12px 0 0;
  padding-left: 1.25em;
  color: #413a31;
}

.policy-doc li {
  margin-top: 6px;
  line-height: 1.9;
}

.policy-doc a {
  color: #6a4d2b;
}

.policy-doc__contact {
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 8px 14px;
}

.policy-doc__contact dt {
  font-weight: 700;
  color: #3b3228;
}

.policy-doc__contact dd {
  margin: 0;
  color: #4a4034;
}

.fees-detail-page {
  background: #ffffff;
  padding: var(--space-section) 0;
}

.fees-detail-page__inner {
  width: min(980px, calc(100% - var(--gutter-pc)));
  margin: 0 auto;
}

.fees-detail-page__header {
  margin-bottom: 22px;
}

.fees-detail-page__title {
  margin: 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 3vw, 50px);
  letter-spacing: 0.04em;
  color: #2f2f2f;
}

.fees-detail-page__title::after {
  content: "";
  display: block;
  width: 76px;
  margin: 14px auto 0;
  border-bottom: 4px solid #464646;
}

.fees-detail-page__lead {
  margin: 24px 0 0;
  text-align: center;
  color: #6d6d6d;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.fees-detail-group {
  margin-top: 18px;
  border: 1px solid #e7e7e7;
  border-top: 4px solid #ccb894;
  background: #ffffff;
  padding: 22px 24px 20px;
}

.fees-detail-group__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 2.25vw, 36px);
  color: #3a3a3a;
  letter-spacing: 0.03em;
}

.fees-detail-group__note {
  margin: 14px 0 0;
  color: #5e5e5e;
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.9;
}

.fees-detail-list {
  margin: 16px 0 0;
}

.fees-detail-row {
  padding: 11px 0;
  border-bottom: 1px solid #f0f0f0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
  gap: 10px;
  align-items: start;
}

.fees-detail-row dt,
.fees-detail-row dd {
  margin: 0;
  color: #4b4b4b;
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.fees-detail-row dd {
  white-space: normal;
  text-align: right;
  font-weight: 700;
  color: #3b3b3b;
}

.web-plan-page {
  background: #ffffff;
}

.web-plan-hero {
  padding: 48px 0 38px;
  border-bottom: 1px solid #e6e9ed;
}

.web-plan-hero__inner,
.web-plan-section__inner,
.web-plan-final-cta__inner {
  width: min(1200px, calc(100% - 72px));
  margin: 0 auto;
}

.web-plan-hero__inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 20px;
  align-items: stretch;
}

.web-plan-hero__content {
  border: 1px solid #e4e8ed;
  background: #ffffff;
  padding: 28px 26px 24px;
}

.web-plan-hero__label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  background: #f3f6fa;
  color: #304660;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.web-plan-hero__title {
  margin: 14px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(36px, 3.1vw, 52px);
  line-height: 1.38;
  color: #2f2c29;
  letter-spacing: 0.03em;
}

.web-plan-hero__lead {
  margin: 16px 0 0;
  color: #4e5863;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.9;
}

.web-plan-hero__media {
  margin: 0;
  border: 1px solid #dde4ec;
  background: #f8fafc;
  min-height: 320px;
}

.web-plan-hero__image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.web-plan-cta {
  margin-top: 20px;
  min-width: 220px;
  height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ab7f45;
  background: #ba8f58;
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px rgba(95, 66, 30, 0.18);
}

.web-plan-cta:hover,
.web-plan-cta:focus-visible {
  background: var(--cta-bg-strong);
  border-color: #946a35;
  color: #ffffff;
}

.web-plan-section {
  padding: 34px 0;
}

.web-plan-section--compact {
  padding-top: 28px;
  padding-bottom: 28px;
}

.web-plan-section--accent {
  background: #f9fbfd;
  border-top: 1px solid #e8edf2;
  border-bottom: 1px solid #e8edf2;
}

.web-plan-section__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 2.3vw, 38px);
  color: #302d29;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.web-plan-section__title::after {
  content: "";
  display: block;
  width: 64px;
  margin-top: 10px;
  border-bottom: 3px solid #8095aa;
}

.web-plan-section__sub {
  margin: 18px 0 0;
  font-size: clamp(21px, 1.7vw, 28px);
  color: #39342d;
}

.web-plan-text {
  margin: 12px 0 0;
  color: #4e5965;
  font-size: clamp(15px, 1.03vw, 17px);
  line-height: 1.88;
}

.web-plan-list {
  margin: 20px 0 0;
  padding: 18px 20px 18px 34px;
  border: 1px solid #e4e8ed;
  background: #ffffff;
  display: grid;
  gap: 9px;
}

.web-plan-list li {
  color: #4d5964;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.78;
}

.web-plan-includes {
  margin-top: 18px;
  border: 1px solid #e4e9ef;
  background: #ffffff;
  padding: 20px 22px 22px;
}

.web-plan-includes__image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 14px;
  border: 1px solid #dde4ec;
}

.web-plan-includes__title {
  margin: 0;
  font-size: clamp(22px, 1.8vw, 28px);
  color: #322d27;
}

.web-plan-includes__desc {
  margin: 12px 0 0;
  color: #4e5864;
  line-height: 1.82;
}

.web-plan-checklist {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.web-plan-checklist li {
  border: 1px solid #e6ebf0;
  background: #fbfdff;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  color: #3f392f;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.web-plan-checklist li::before {
  content: "・";
  margin-right: 4px;
}

.web-plan-strengths {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.web-plan-strength-card {
  border: 1px solid #e4e9ef;
  background: #ffffff;
  padding: 16px 14px;
}

.web-plan-strength-card h3 {
  margin: 0;
  font-size: clamp(18px, 1.45vw, 24px);
  color: #312c26;
}

.web-plan-strength-card p {
  margin: 10px 0 0;
  color: #56616c;
  font-size: 14px;
  line-height: 1.8;
}

.web-plan-flow {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.web-plan-flow li {
  border: 1px solid #e4e9ef;
  background: #ffffff;
  min-height: 124px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.web-plan-flow span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4d647b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.web-plan-flow p {
  margin: 0;
  color: #4f5a66;
  font-size: 14px;
  line-height: 1.7;
}

.web-plan-price {
  margin-top: 18px;
  border: 1px solid #dfe6ee;
  background: #ffffff;
  display: grid;
  grid-template-columns: 170px 1fr;
}

.web-plan-price__label,
.web-plan-price__value {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid #e8edf3;
}

.web-plan-price__label {
  background: #f6f9fc;
  color: #405466;
  font-weight: 700;
}

.web-plan-price__value {
  color: #302a24;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 1.9vw, 32px);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.web-plan-final-cta {
  padding: 36px 0 56px;
}

.web-plan-final-cta__inner {
  border: 1px solid #dde4ec;
  background: #f8fbff;
  text-align: center;
  padding: 28px 24px 32px;
}

.web-plan-final-cta__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 2.3vw, 38px);
  color: #302a24;
}

.web-plan-final-cta__text {
  margin: 14px 0 0;
  color: #544d43;
  line-height: 1.88;
}

.web-plan-cta--large {
  margin-top: 18px;
  min-width: 300px;
  height: 58px;
  font-size: 19px;
}

@media (max-width: 900px) {
  .policy-page {
    padding: var(--space-section-md) 0;
  }

  .policy-page__inner {
    width: min(100%, calc(100% - var(--gutter-md)));
  }

  .policy-doc {
    padding: 28px 24px 30px;
  }

  .policy-doc__contact {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .fees__actions {
    justify-content: stretch;
  }

  .fees__detail-button {
    width: 100%;
    min-width: 0;
  }

  .fees-detail-page {
    padding: var(--space-section-md) 0;
  }

  .fees-detail-page__inner {
    width: min(100%, calc(100% - var(--gutter-md)));
  }

  .fees-detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .fees-detail-row dd {
    white-space: normal;
  }

  .web-plan-hero,
  .web-plan-section,
  .web-plan-final-cta {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .web-plan-hero__inner,
  .web-plan-section__inner,
  .web-plan-final-cta__inner {
    width: min(100%, calc(100% - 36px));
  }

  .web-plan-hero__inner {
    grid-template-columns: 1fr;
  }

  .web-plan-hero__media {
    min-height: 240px;
  }

  .web-plan-hero__image {
    min-height: 240px;
  }

  .web-plan-flow {
    grid-template-columns: 1fr;
  }

  .web-plan-flow li {
    min-height: 0;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .web-plan-price {
    grid-template-columns: 1fr;
  }

  .web-plan-price__label,
  .web-plan-price__value {
    border-bottom: 1px solid #e8edf3;
  }

  .web-plan-strengths {
    grid-template-columns: 1fr;
  }

  .web-plan-cta,
  .web-plan-cta--large {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .policy-page__inner {
    width: calc(100% - var(--gutter-sm));
  }

  .policy-doc {
    padding: 22px 16px 24px;
  }

  .policy-doc__heading {
    font-size: clamp(19px, 5.6vw, 24px);
  }

  .fees-detail-page__inner {
    width: calc(100% - var(--gutter-sm));
  }

  .fees-detail-group {
    padding: 18px 14px 16px;
  }

  .fees-detail-group__title {
    font-size: clamp(22px, 6.2vw, 28px);
  }

  .web-plan-hero__inner,
  .web-plan-section__inner,
  .web-plan-final-cta__inner {
    width: calc(100% - 24px);
  }

  .web-plan-hero__content {
    padding: 20px 16px 18px;
  }

  .web-plan-hero__title {
    font-size: clamp(28px, 7.2vw, 38px);
  }

  .web-plan-list {
    padding-left: 24px;
  }

  .web-plan-includes {
    padding: 16px 14px 18px;
  }

  .web-plan-price__value {
    font-size: clamp(22px, 6.2vw, 28px);
  }

  .web-plan-final-cta__inner {
    padding: 22px 14px 24px;
  }
}
