/* ==========================================================================
   Bloomary Design – main.css
   Figma: ブランディング / top (node 1965-455)
   ========================================================================== */

:root {
  --color-brown: #160700; /* body_brown */
  --color-green: #628f5f; /* body_green */
  --color-sage: #b4c1b3; /* CONCEPT ラベル */
  --color-peach: #ead2c7; /* ナンバー・英字アクセント */
  --color-white-warm: #fafaf8;
  --font-en: "Lora", serif;
  --font-en-display: "Libre Baskerville", serif;
  --font-ja: "Noto Serif JP", serif;
  --header-height: 68px;
  --content-width: 1200px;
}

/* Reset (最小限) ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--color-brown);
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.8;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Header ------------------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 250, 238, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 238, 0.9);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.global-nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.global-nav__list a {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  transition: opacity 0.25s ease;
}

.global-nav__list a:hover {
  opacity: 0.6;
}

.site-header__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-height);
  padding: 0 22px;
  background: var(--color-green);
  color: var(--color-white-warm);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: opacity 0.25s ease;
}

.site-header__cta:hover {
  opacity: 0.85;
}

/* ハンバーガー(SPのみ表示) */
.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--color-brown);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 14px;
}
.menu-toggle span:nth-child(2) {
  top: 21px;
}
.menu-toggle span:nth-child(3) {
  top: 28px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  background: var(--color-white-warm);
  border-top: 1px solid rgba(22, 7, 0, 0.08);
  padding: 24px 20px 32px;
}

.mobile-nav__list a {
  display: block;
  padding: 12px 4px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
}

.mobile-nav__cta {
  display: block;
  margin-top: 16px;
  padding: 14px;
  background: var(--color-green);
  color: var(--color-white-warm);
  text-align: center;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* 共通セクション ----------------------------------------------------------- */
.section {
  padding: 120px 20px;
  max-width: calc(var(--content-width) + 40px);
  margin: 0 auto;
}

.section__head {
  margin-bottom: 80px;
}
.section__head--center {
  text-align: center;
}

.section__label {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.section__label--green {
  color: var(--color-green);
}

.section__label--soft {
  color: var(--color-sage);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section__sub {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.text-link {
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
  color: var(--color-green);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-green);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.text-link:hover::after {
  transform: scaleX(0.6);
}

/* Hero --------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: var(--header-height);
  margin-bottom: 40px;
  /* hero__copy::before の発光(左右-20px)がビューポート外へはみ出して
     横スクロールを生むため、ヒーロー内でクリップする */
  overflow-x: clip;
}

.hero__visual {
  position: relative;
  width: min(1360px, calc(100% - 200px));
  margin: 0 auto;
  height: clamp(380px, 44vw, 640px);
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -62deg,
    rgba(147, 75, 23, 0.6) 0%,
    rgba(255, 255, 255, 0.36) 63%
  );
  pointer-events: none;
}

/* ヒーロー左上の光のバースト装飾 */
.hero__burst {
  position: absolute;
  left: 0;
  top: 0;
  width: min(365px, 30%);
  height: auto;
  filter: blur(5px);
  mix-blend-mode: lighten;
  pointer-events: none;
  user-select: none;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: -105px auto 0;
  padding: 0 20px;
  font-size: clamp(30px, 3.75vw, 54px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  /* 写真の上でも文字が沈まないよう、背後に柔らかい白い光をにじませて視認性を確保 */
  text-shadow:
    0 0 4px rgba(255, 252, 247, 0.95),
    0 0 22px rgba(255, 252, 247, 0.85),
    0 0 44px rgba(255, 252, 247, 0.6);
}

/* 文字が重なる帯だけをほんのり明るくして下地のコントラストを底上げ */
.hero__copy::before {
  content: "";
  position: absolute;
  inset: -0.4em -20px;
  z-index: -1;
  background: radial-gradient(
    120% 100% at 20% 50%,
    rgba(255, 252, 247, 0.72) 0%,
    rgba(255, 252, 247, 0) 70%
  );
  pointer-events: none;
}

/* 縦書きサイドテキスト */
.hero__side {
  position: absolute;
  top: 173px;
  writing-mode: vertical-rl;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-brown);
}

.hero__side--left {
  left: 34px;
}

.hero__side--right {
  left: auto;
  right: 32px;
  top: 156px;
  font-size: 16px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.25s ease;
}

.hero__side--right:hover {
  opacity: 0.6;
}
.hero__insta {
  transform: rotate(-90deg);
}

/* Concept ------------------------------------------------------------------ */
.concept__title {
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.concept__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

/* 3円ダイアグラム */
.concept-diagram {
  position: relative;
  flex-shrink: 0;
  width: 433px;
  height: 386px;
}

.concept-diagram__dashed {
  position: absolute;
  left: 74px;
  top: 73px;
  width: 281px;
  height: 281px;
  border: 1px dashed rgba(22, 7, 0, 0.35);
  border-radius: 50%;
}

.concept-diagram__center {
  position: absolute;
  left: 153px;
  top: 200px;
  width: 122px;
  text-align: center;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 24px;
  letter-spacing: 0.03em;
}

.concept-circle {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 151px;
  height: 151px;
  border-radius: 50%;
  text-align: center;
}

.concept-circle::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  pointer-events: none;
}

.concept-circle--vision {
  left: 139px;
  top: 0;
  background: linear-gradient(145deg, #d7c7b2 5.7%, #857663 50%);
}

.concept-circle--worldview {
  left: 0;
  top: 235px;
  background: linear-gradient(140deg, #c3afaf 4.7%, #876767 61%);
}

.concept-circle--values {
  left: 282px;
  top: 235px;
  background: linear-gradient(-35deg, #607e5e 50%, #a3cfa0 106%);
}

.concept-circle__en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--color-peach);
}

.concept-circle__ja {
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #fff;
}

.concept__text {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 25px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.concept__text p {
  width: 100%;
}
.concept__text strong {
  font-weight: 900;
}

/* 中間イメージ --------------------------------------------------------------- */
.midvisual {
  position: relative;
  height: clamp(240px, 29.6vw, 426px);
  overflow: hidden;
}

.midvisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.midvisual__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -48deg,
    rgba(147, 75, 23, 0.4) 5%,
    rgba(255, 255, 255, 0.12) 71%
  );
}

/* Service ------------------------------------------------------------------ */
.service__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-card {
  position: relative;
}

.service-card__link {
  position: relative;
  display: block;
  height: 575px;
  overflow: hidden;
}

.service-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card__link:hover .service-card__image {
  transform: scale(1.04);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.7) 10%,
    rgba(66, 33, 9, 0.7) 40%
  );
}

.service-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 96px 40px 48px;
  text-align: center;
  color: #fff;
}

.service-card__num {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--color-peach);
}

.service-card__title {
  margin-top: 26px;
  font-family: var(--font-en-display);
  font-weight: 500;
  font-size: clamp(30px, 2.8vw, 40px);
  line-height: 1;
  letter-spacing: 0.1em;
}

.service-card__desc {
  margin-top: 56px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.service-card__more {
  position: relative;
  margin-top: auto;
  align-self: flex-end;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding-bottom: 4px;
}

.service-card__more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card__link:hover .service-card__more::after {
  transform: scaleX(0.6);
}

/* Works -------------------------------------------------------------------- */
.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

.work-card__thumb {
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.work-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-card a:hover .work-card__thumb img {
  transform: scale(1.04);
}

.work-card__cat {
  margin-top: 16px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--color-green);
}

.work-card__title {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.work-card__excerpt {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(22, 7, 0, 0.7);
}

.work-card--placeholder {
  opacity: 0.85;
}

/* Contact ------------------------------------------------------------------ */
.contact {
  position: relative;
  min-height: 527px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 20px;
}

.contact__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    198deg,
    rgba(255, 255, 255, 0.7) 24%,
    rgba(66, 33, 9, 0.56) 49%
  );
}

.contact__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.contact__title {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(44px, 4.2vw, 60px);
  line-height: 1;
  letter-spacing: 0.1em;
}

.contact__text {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.contact__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(400px, 100%);
  height: 95px;
  margin-top: 56px;
  background: var(--color-green);
  border: 1px solid #fff;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.3s ease;
}

.contact__button:hover {
  background: #4f7a4c;
}

/* Footer ------------------------------------------------------------------- */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  background: #fff;
}

.site-footer__copyright {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* フェードイン --------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* アーカイブ(フォールバック) -------------------------------------------------
   ※ WPは body にも .archive を付与するため、main 要素に限定する
   (body.archive に当たると /works/ など全アーカイブの上部に余白が出る) */
main.archive {
  padding-top: calc(var(--header-height) + 60px);
}
.archive__item + .archive__item {
  margin-top: 40px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .concept__body {
    flex-direction: column;
    gap: 64px;
  }

  .concept__text {
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 80px 20px;
  }
  .section__head {
    margin-bottom: 56px;
  }
  .section__label {
    font-size: 44px;
  }

  .global-nav,
  .site-header__cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
  .mobile-nav.is-open {
    display: block;
  }

  .hero__visual {
    width: calc(100% - 32px);
    border-radius: clamp(28px, 7vw, 64px);
  }

  .hero__side {
    display: none;
  }

  .hero__copy {
    margin-top: -64px;
  }

  .service__cards {
    grid-template-columns: 1fr;
  }
  .service-card__link {
    height: 480px;
  }
  .service-card__content {
    padding: 64px 24px 40px;
  }
  .service-card__desc {
    margin-top: 40px;
  }

  .works__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .hero__copy {
    margin-top: -40px;
    font-size: 28px;
  }

  .concept-diagram {
    width: 320px;
    height: 288px;
  }

  /* SPでは図を約0.74倍に縮小 */
  .concept-diagram__dashed {
    left: 55px;
    top: 54px;
    width: 208px;
    height: 208px;
  }
  .concept-circle {
    width: 112px;
    height: 112px;
    gap: 5px;
  }
  .concept-circle--vision {
    left: 103px;
  }
  .concept-circle--worldview {
    top: 174px;
  }
  .concept-circle--values {
    left: 208px;
    top: 174px;
  }
  .concept-circle__en {
    font-size: 17px;
  }
  .concept-circle__ja {
    font-size: 20px;
  }
  .concept-diagram__center {
    left: 113px;
    top: 148px;
    width: 94px;
    font-size: 18px;
  }

  .concept__text {
    font-size: 16px;
  }

  .works__grid {
    grid-template-columns: 1fr;
  }

  .contact {
    min-height: 440px;
    padding: 72px 20px;
  }
  .contact__button {
    height: 76px;
    font-size: 17px;
    margin-top: 40px;
  }
}

/* ==========================================================================
   下層ページ共通
   ========================================================================== */
.page {
  overflow-x: hidden;
}

/* ページヒーロー(英字ラベル + 和名) */
.page-hero {
  padding: calc(var(--header-height) + 88px) 20px 56px;
  text-align: center;
  background: var(--color-white-warm);
}

.page-hero__label {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color-green);
}

.page-hero__ja {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-brown);
}

/* パンくず */
.breadcrumb {
  max-width: calc(var(--content-width) + 40px);
  margin: 0 auto;
  padding: 18px 20px 0;
  font-size: 13px;
  color: rgba(22, 7, 0, 0.6);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "／";
  color: rgba(22, 7, 0, 0.3);
}

.breadcrumb a {
  color: var(--color-green);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* セクション枠 */
.page-section {
  max-width: calc(var(--content-width) + 40px);
  margin: 0 auto;
  padding: 80px 20px;
}

.page-section--tint {
  max-width: none;
  background: var(--color-white-warm);
}

.page-section--tint > * {
  max-width: calc(var(--content-width) + 40px);
  margin-inline: auto;
}

.page-body {
  max-width: 820px;
  margin: 0 auto;
}

/* リード文 */
.lead {
  text-align: center;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 2;
  letter-spacing: 0.03em;
}

.lead p + p {
  margin-top: 1.6em;
}

/* 本文(the_content) */
.prose {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.02em;
}

.prose > * + * {
  margin-top: 1.4em;
}

.prose h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.prose h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.prose a {
  color: var(--color-green);
  text-decoration: underline;
}

.prose ul,
.prose ol {
  padding-left: 1.4em;
}

.prose li + li {
  margin-top: 0.4em;
}

.prose img {
  border-radius: 8px;
}

.prose blockquote {
  margin: 0;
  padding-left: 1em;
  border-left: 3px solid var(--color-green);
  color: rgba(22, 7, 0, 0.75);
}

/* 小見出し(英字 + 和名) */
.block-heading {
  margin-bottom: 48px;
  text-align: center;
}

.block-heading__en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--color-green);
}

.block-heading__ja {
  margin-top: 8px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* CONTACT 誘導バンド */
.cta {
  padding: 80px 20px;
  background: var(--color-green);
  color: #fff;
  text-align: center;
}

.cta__title {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0.1em;
}

.cta__text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(400px, 100%);
  height: 76px;
  margin-top: 36px;
  background: #fff;
  color: var(--color-green);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

.cta__button:hover {
  opacity: 0.88;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  padding: 40px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(22, 7, 0, 0.08);
  border-radius: 16px;
}

.page-section--tint .value-card {
  background: #fff;
}

.value-card__en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 22px;
  color: var(--color-green);
}

.value-card__ja {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.value-card__text {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(22, 7, 0, 0.8);
  text-align: left;
}

.profile {
  max-width: 720px;
  margin: 0 auto;
}

.profile__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 4px 24px;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(22, 7, 0, 0.1);
}

.profile__row:first-child {
  border-top: 1px solid rgba(22, 7, 0, 0.1);
}

.profile__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-green);
}

.profile__value {
  font-size: 15px;
  line-height: 1.9;
}

.profile__value a {
  color: var(--color-green);
  text-decoration: underline;
}

/* ==========================================================================
   SERVICE
   ========================================================================== */
.service-detail {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.service-block {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.service-block__head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(22, 7, 0, 0.12);
}

.service-block__num {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  color: var(--color-green);
}

.service-block__title {
  font-family: var(--font-en-display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0.08em;
}

.service-block__lead {
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.03em;
}

.service-block__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.subhead {
  position: relative;
  margin-bottom: 14px;
  padding-left: 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-green);
}

.subhead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
}

.checklist li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.9;
}

.checklist li + li {
  margin-top: 8px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.price {
  margin-top: 32px;
  font-size: 15px;
  line-height: 1.9;
}

.price strong {
  font-family: var(--font-en);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--color-brown);
}

.note {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(22, 7, 0, 0.55);
}

/* Flow */
.flow {
  max-width: 760px;
  margin: 0 auto;
}

.flow__step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 28px 4px;
}

.flow__step + .flow__step {
  border-top: 1px solid rgba(22, 7, 0, 0.1);
}

.flow__num {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-green);
}

.flow__num strong {
  display: block;
  margin-top: 4px;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-brown);
}

.flow__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.flow__text {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(22, 7, 0, 0.8);
}

/* ==========================================================================
   CONTACT ページ
   ========================================================================== */
.contact-panel {
  max-width: 720px;
  margin: 0 auto;
}

.contact-form-area {
  margin-top: 40px;
}

.contact-note {
  padding: 24px;
  background: var(--color-white-warm);
  border: 1px dashed rgba(22, 7, 0, 0.2);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(22, 7, 0, 0.7);
}

/* フォーム(CF7 やプレーンフォーム両対応) */
.page-contact input[type="text"],
.page-contact input[type="email"],
.page-contact input[type="tel"],
.page-contact textarea,
.page-contact select {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  color: var(--color-brown);
  background: #fff;
  border: 1px solid rgba(22, 7, 0, 0.2);
  border-radius: 8px;
}

.page-contact textarea {
  min-height: 160px;
  resize: vertical;
}

.page-contact input:focus,
.page-contact textarea:focus,
.page-contact select:focus {
  outline: 2px solid rgba(98, 143, 95, 0.4);
  outline-offset: 1px;
  border-color: var(--color-green);
}

.page-contact input[type="submit"],
.page-contact button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(320px, 100%);
  height: 60px;
  margin-top: 8px;
  color: #fff;
  background: var(--color-green);
  border: 0;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.page-contact input[type="submit"]:hover,
.page-contact button[type="submit"]:hover {
  opacity: 0.88;
}

.contact-info {
  margin-top: 56px;
  text-align: center;
}

.contact-info__label {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 18px;
  color: var(--color-green);
}

.contact-info__text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.9;
}

.contact-info a {
  color: var(--color-green);
  text-decoration: underline;
}

/* ==========================================================================
   WORKS 詳細
   ========================================================================== */
.single-work {
  padding-top: var(--header-height);
}

.single-work__hero {
  width: 100%;
  max-height: 60vh;
  overflow: hidden;
}

.single-work__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-work__body {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px 96px;
}

.single-work__title {
  margin-top: 12px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.single-work__meta {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(22, 7, 0, 0.55);
}

.single-work__content {
  margin-top: 40px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  color: var(--color-green);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: opacity 0.25s ease;
}

.back-link:hover {
  opacity: 0.7;
}

/* ページネーション */
.pagination {
  margin-top: 64px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  font-family: var(--font-en);
  font-size: 14px;
  border: 1px solid rgba(22, 7, 0, 0.15);
  border-radius: 8px;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.pagination .page-numbers.current {
  color: #fff;
  background: var(--color-green);
  border-color: var(--color-green);
}

.pagination a.page-numbers:hover {
  color: var(--color-green);
  border-color: var(--color-green);
}

/* 404 */
.error404-body {
  text-align: center;
}

.error404-body p {
  font-size: 16px;
  line-height: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  margin-top: 32px;
  color: #fff;
  background: var(--color-green);
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: opacity 0.3s ease;
}

.button:hover {
  opacity: 0.88;
}

/* ==========================================================================
   下層ページ レスポンシブ
   ========================================================================== */
@media (max-width: 900px) {
  .page-hero {
    padding: calc(var(--header-height) + 64px) 20px 44px;
  }
  .page-section {
    padding: 64px 20px;
  }
  .value-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-detail {
    gap: 72px;
  }
  .service-block__body {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cta {
    padding: 64px 20px;
  }
}

@media (max-width: 600px) {
  .profile__row {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 16px 4px;
  }
  .flow__step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  .flow__num strong {
    font-size: 28px;
  }
  .single-work__body {
    padding: 40px 20px 72px;
  }
  .cta__button {
    height: 64px;
    font-size: 16px;
  }
}

/* ==========================================================================
   Contact Form 7 (CONTACT ページ)
   ========================================================================== */
.page-contact .wpcf7 {
  margin-top: 8px;
}

.page-contact .cf7-field {
  margin-bottom: 24px;
}

.page-contact .cf7-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-brown);
}

.page-contact .cf7-req {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--color-green);
  border-radius: 4px;
  vertical-align: middle;
}

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

/* プライバシー同意 */
.page-contact .cf7-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 28px;
  font-size: 14px;
}

.page-contact .cf7-privacy a {
  color: var(--color-green);
  text-decoration: underline;
}

.page-contact .wpcf7-list-item {
  margin: 0;
}

.page-contact .wpcf7-acceptance .wpcf7-list-item-label {
  margin-left: 4px;
}

.page-contact input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-green);
  vertical-align: middle;
}

/* 送信ボタン */
.page-contact .cf7-submit {
  text-align: center;
  margin-top: 8px;
}

.page-contact .wpcf7-spinner {
  margin: 0 0 0 12px;
}

/* バリデーション・応答メッセージ */
.page-contact .wpcf7-not-valid {
  border-color: #c0392b !important;
}

.page-contact .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
  color: #c0392b;
}

.page-contact .wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 14px 18px !important;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.7;
}

.page-contact .wpcf7-mail-sent-ok {
  border-color: var(--color-green) !important;
  background: rgba(98, 143, 95, 0.08);
  color: var(--color-green);
}

.page-contact form.invalid .wpcf7-response-output,
.page-contact form.unaccepted .wpcf7-response-output,
.page-contact form.spam .wpcf7-response-output {
  border-color: #c0392b !important;
  background: rgba(192, 57, 43, 0.06);
  color: #c0392b;
}

/* ==========================================================================
   THANKS ページ
   ========================================================================== */
.thanks-body {
  text-align: center;
}

.thanks-text {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 2;
  letter-spacing: 0.03em;
}

.thanks-note {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(22, 7, 0, 0.6);
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.button--ghost {
  color: var(--color-green);
  background: transparent;
  border: 1px solid var(--color-green);
}

.button--ghost:hover {
  color: #fff;
  background: var(--color-green);
  opacity: 1;
}

.pc-only {
  display: inline;
}

@media (max-width: 600px) {
  .pc-only {
    display: none;
  }
  .thanks-actions .button {
    width: 100%;
  }
}

/* ==========================================================================
   ページヒーロー(キービジュアル画像入り)
   ========================================================================== */
.page-hero--visual {
  padding: var(--header-height) 0 0; /* 上部はヘッダー分だけ白帯を確保しナビの視認性を担保 */
  background: #fff;
}

.page-hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(260px, 30vw, 400px);
  overflow: hidden;
  text-align: center;
}

.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      -62deg,
      rgba(147, 75, 23, 0.5) 0%,
      rgba(255, 255, 255, 0.08) 70%
    ),
    linear-gradient(180deg, rgba(22, 7, 0, 0.28) 0%, rgba(22, 7, 0, 0.42) 100%);
  pointer-events: none;
}

.page-hero--visual .page-hero__inner {
  position: relative;
  z-index: 1;
  padding: 48px 20px;
}

.page-hero--visual .page-hero__label {
  color: #fff;
  text-shadow: 0 2px 16px rgba(22, 7, 0, 0.35);
}

.page-hero--visual .page-hero__ja {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(22, 7, 0, 0.35);
}

@media (max-width: 600px) {
  .page-hero__media {
    min-height: 220px;
  }
  .page-hero--visual .page-hero__inner {
    padding: 36px 20px;
  }
}

/* ==========================================================================
   ABOUT 経歴タイムライン
   ========================================================================== */
.timeline {
  max-width: 760px;
  margin: 0 auto;
}

.timeline__item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding-bottom: 40px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__period {
  padding-top: 2px;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--color-green);
}

.timeline__body {
  position: relative;
  padding-left: 28px;
  padding-bottom: 8px;
  border-left: 1px solid rgba(22, 7, 0, 0.15);
}

.timeline__item:last-child .timeline__body {
  border-left-color: transparent;
}

.timeline__body::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 0 4px #fff;
}

.timeline__title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.timeline__text {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(22, 7, 0, 0.8);
}

@media (max-width: 600px) {
  .timeline__item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .timeline__body {
    padding-left: 20px;
    border-left: none;
  }
  .timeline__body::before {
    display: none;
  }
}

/* ==========================================================================
   構成案(20260602)反映分の追加コンポーネント
   ========================================================================== */

/* SPのみ表示の改行(PC用 .pc-only はTHANKSセクションで定義済み) */
.sp-only {
  display: none;
}

@media (max-width: 600px) {
  .sp-only {
    display: inline;
  }
}

/* Hero: サブコピー + CTA ---------------------------------------------------- */
.hero__lead {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: 24px auto 0;
  padding: 0 20px;
}

.hero__sub {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 60px;
  padding: 0 32px;
  background: var(--color-green);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

.hero__button:hover {
  opacity: 0.85;
}

.hero__button--ghost {
  background: transparent;
  color: var(--color-green);
  border: 1px solid var(--color-green);
}

.hero__button--ghost:hover {
  opacity: 1;
  background: rgba(98, 143, 95, 0.08);
}

/* Problem ------------------------------------------------------------------- */
.problem__title {
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.problem__body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
}

.worry-list {
  flex-shrink: 0;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.worry-list li {
  position: relative;
  padding: 14px 18px 14px 44px;
  background: var(--color-white-warm);
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.7;
}

.worry-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.35em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-sage);
}

.problem__text {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.03em;
}

@media (max-width: 1100px) {
  .problem__body {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
}

/* Works リード / Flowセクション導入文 --------------------------------------- */
.works__lead {
  margin-top: 24px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.03em;
  color: rgba(22, 7, 0, 0.8);
}

.front-flow__more {
  margin-top: 40px;
  text-align: center;
}

/* Contact: キャッチ + 副CTA -------------------------------------------------- */
.contact__catch {
  margin-top: 24px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact__text {
  margin-top: 16px;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.contact__actions .contact__button {
  margin-top: 0;
}

.contact__button--ghost {
  background: transparent;
  border: 1px solid #fff;
}

.contact__button--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* 下層ページ共通: キャッチコピー / 左寄せリード ------------------------------ */
.catch {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.lead .catch {
  margin-bottom: 0.6em;
}

.lead--left {
  text-align: left;
}

/* 枠付きチェックリスト ------------------------------------------------------- */
.checklist--boxed {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid rgba(22, 7, 0, 0.08);
  border-radius: 16px;
}

.page-section:not(.page-section--tint) .checklist--boxed {
  background: var(--color-white-warm);
  border-color: transparent;
}

/* 対応範囲テーブル ----------------------------------------------------------- */
.range-table-wrap {
  max-width: 820px;
  margin: 0 auto;
  overflow-x: auto;
}

.range-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.9;
}

.range-table th,
.range-table td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(22, 7, 0, 0.1);
  text-align: left;
  vertical-align: top;
}

.range-table tr:first-child th,
.range-table tr:first-child td {
  border-top: 1px solid rgba(22, 7, 0, 0.1);
}

.range-table th {
  width: 160px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-green);
  white-space: nowrap;
}

/* サービス選びの目安 --------------------------------------------------------- */
.service-block__more {
  margin-top: 20px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.choice-card {
  display: block;
  padding: 36px 28px;
  background: #fff;
  border: 1px solid rgba(22, 7, 0, 0.08);
  border-radius: 16px;
  text-align: center;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.choice-card:hover {
  border-color: var(--color-green);
  transform: translateY(-3px);
}

.choice-card__label {
  font-size: 14px;
  color: rgba(22, 7, 0, 0.7);
}

.choice-card__name {
  margin-top: 10px;
  font-family: var(--font-en-display);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.08em;
  color: var(--color-green);
}

.choice-note {
  margin-top: 32px;
  text-align: center;
  font-size: 15px;
  line-height: 2;
  color: rgba(22, 7, 0, 0.8);
}

/* サポート内容 2カラム ------------------------------------------------------- */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 820px;
  margin: 0 auto;
}

/* 対応メニュー(SPOT DESIGN) -------------------------------------------------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card {
  padding: 32px 24px;
  background: var(--color-white-warm);
  border-radius: 16px;
}

.page-section--tint .menu-card {
  background: #fff;
  border: 1px solid rgba(22, 7, 0, 0.08);
}

.menu-card__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-brown);
}

.menu-card__text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(22, 7, 0, 0.8);
}

/* 5つの約束(ABOUT) ----------------------------------------------------------- */
.promise {
  max-width: 760px;
  margin: 0 auto;
  counter-reset: promise;
}

.promise__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 28px 4px;
}

.promise__item + .promise__item {
  border-top: 1px solid rgba(22, 7, 0, 0.1);
}

.promise__num {
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-peach);
}

.promise__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.promise__text {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(22, 7, 0, 0.8);
}

/* FAQ(details/summary アコーディオン) --------------------------------------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  background: #fff;
  border: 1px solid rgba(22, 7, 0, 0.08);
  border-radius: 12px;
}

.faq__item + .faq__item {
  margin-top: 16px;
}

.faq__q {
  position: relative;
  padding: 20px 56px 20px 52px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}

.faq__q::-webkit-details-marker {
  display: none;
}

/* Q. アイコン */
.faq__q::before {
  content: "Q.";
  position: absolute;
  left: 20px;
  top: 20px;
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--color-green);
}

/* 開閉アイコン(+ / −) */
.faq__q::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-size: 22px;
  line-height: 1;
  color: var(--color-green);
  transition: transform 0.25s ease;
}

.faq__item[open] .faq__q::after {
  content: "−";
}

.faq__a {
  padding: 0 24px 22px 52px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(22, 7, 0, 0.85);
}

/* CONTACT ページ追加分 ------------------------------------------------------- */
.contact-topics {
  margin-top: 48px;
  padding: 32px 36px;
  background: var(--color-white-warm);
  border-radius: 16px;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.contact-method {
  padding: 28px 24px;
  border: 1px solid rgba(22, 7, 0, 0.1);
  border-radius: 12px;
}

.contact-method__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-green);
}

.contact-method__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(22, 7, 0, 0.8);
}

.contact-note-soft {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  line-height: 2;
  color: rgba(22, 7, 0, 0.7);
}

.note--center {
  margin-top: 24px;
  text-align: center;
}

/* SP下部固定CTA -------------------------------------------------------------- */
.sp-fixed-cta {
  display: none;
}

@media (max-width: 900px) {
  .sp-fixed-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 250, 238, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-top: 1px solid rgba(22, 7, 0, 0.08);
  }

  .sp-fixed-cta__button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    background: var(--color-green);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 4px;
  }

  /* 固定CTAに隠れないよう下余白を確保 */
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}

/* 追加分レスポンシブ --------------------------------------------------------- */
@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .contact-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero__actions {
    flex-direction: column;
  }
  .hero__button {
    width: 100%;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .choice-grid {
    grid-template-columns: 1fr;
  }
  .checklist--boxed,
  .contact-topics {
    padding: 24px 20px;
  }
  .promise__item {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }
  .promise__num {
    font-size: 28px;
  }
  .faq__q {
    padding: 16px 44px 16px 44px;
  }
  .faq__q::before {
    left: 16px;
    top: 16px;
  }
  .faq__a {
    padding: 0 20px 18px 44px;
  }
  .contact__actions {
    flex-direction: column;
  }
}

/* ==========================================================================
   「女将の目」診断ページ (page-shindan.php)
   ========================================================================== */
/* 5つの窓 */
.mado-list {
  max-width: 760px;
  margin: 0 auto;
}

.mado {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 26px 4px;
}

.mado + .mado { border-top: 1px solid rgba(22, 7, 0, 0.1); }

.mado__num {
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-peach);
}

.mado__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.mado__scope {
  margin-top: 2px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(22, 7, 0, 0.55);
}

.mado__quote {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-green);
  font-weight: 600;
}

/* 料金カード */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  background: #fff;
  border: 1px solid rgba(22, 7, 0, 0.08);
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
}

.price-card--featured {
  border: 2px solid var(--color-green);
  position: relative;
}

.price-card__tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 3px 14px;
  border-radius: 999px;
  background: var(--color-white-warm);
  color: var(--color-green);
  border: 1px solid rgba(98, 143, 95, 0.4);
}

.price-card--featured .price-card__tag {
  background: var(--color-green);
  color: #fff;
  border-color: var(--color-green);
}

.price-card__name {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.price-card__price {
  margin-top: 10px;
  color: var(--color-brown);
}

.price-card__price strong {
  font-family: var(--font-en);
  font-size: 30px;
  letter-spacing: 0.04em;
}

.price-card__price span { font-size: 12px; color: rgba(22, 7, 0, 0.6); }

.price-card__desc {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.9;
  color: rgba(22, 7, 0, 0.8);
  text-align: left;
}

/* レポート見本 */
.report-preview {
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 600px) {
  .mado { grid-template-columns: 52px 1fr; gap: 16px; }
  .mado__num { font-size: 28px; }
}

/* ==========================================================================
   診断ヒアリングシート (page-shindan-sheet.php)
   ========================================================================== */
.sheet-note {
  font-size: 14px;
  color: rgba(22, 7, 0, 0.65);
}

/* ラジオ・チェックボックスを読みやすく横並びに */
.page-shindan-sheet .wpcf7-list-item {
  margin: 0 18px 6px 0;
  display: inline-block;
}

.page-shindan-sheet .wpcf7-list-item label {
  cursor: pointer;
}

.page-shindan-sheet input[type="radio"] {
  accent-color: var(--color-green);
  margin-right: 4px;
}

/* ==========================================================================
   SERVICEページ: 診断への案内枠
   ========================================================================== */
.shindan-invite {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(98, 143, 95, 0.07);
  border: 1px solid rgba(98, 143, 95, 0.35);
  border-radius: 16px;
  padding: 36px 40px;
  text-align: center;
}

.shindan-invite__tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 3px 16px;
  border-radius: 999px;
  background: var(--color-green);
  color: #fff;
}

.shindan-invite__title {
  margin-top: 14px;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.shindan-invite__text {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 2;
  color: rgba(22, 7, 0, 0.85);
  text-align: left;
}

.shindan-invite__link { margin-top: 16px; }

/* サービス選びの目安: 3枚構成に対応 */
.choice-grid { grid-template-columns: repeat(3, 1fr); max-width: 960px; }

@media (max-width: 900px) {
  .choice-grid { grid-template-columns: 1fr; max-width: 480px; }
  .shindan-invite { padding: 28px 22px; }
}
