/* ==========================================================================
   ファイルパス: /css/style.css
   内容: デザインシステムに基づく変数定義・リセット・共通レイアウト
   ========================================================================== */

:root {
  /* ブランドカラー */
  --color-brand-green: #44a93b;
  --color-accent-yellow: #fcff7b;
  --color-base-white: #ffffff;
  --color-sub-lightgray: #f1f7f1;

  /* テキストカラー */
  --color-text-main: #333333;
  --color-text-sub: #666666;
  --color-text-note: #888888;
  --color-text-white: #ffffff;

  /* タイポグラフィ */
  --font-family-ja: "Noto Sans JP", sans-serif;
  --font-family-en: "Plus Jakarta Sans", sans-serif;

  /* フォントウェイト */
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-bold: 700;

  /* 行間 */
  --leading-base: 1.8;
  --leading-heading: 1.3;
  --leading-list: 1.7;

  /* レイアウト */
  --container-width: 1200px;
  --section-space-pc: 120px;
  --section-space-sp: 80px;
  --content-space-pc: 32px;
  --content-space-sp: 20px;

  /* パーツ設定 */
  --radius-button: 32px;
  --radius-card: 16px;
  --transition-base: 0.3s ease;
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* 基本リセット (簡易版) */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 横ぶれ（横スクロール）防止
   何らかの要素が僅かにビューポート幅をはみ出しても、
   ページ全体が横に動かないようにするための保険設定 */
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-family-ja);
  color: var(--color-text-main);
  line-height: var(--leading-base);
  background-color: var(--color-base-white);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

p {
  max-width: 800px;
  margin: 0 auto;
}
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--content-space-pc);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--content-space-sp);
  }
}
/* ==========================================================================
   ファイルパス: /css/style.css (続き・追記分)
   内容: ヘッダー、フッターの共通レイアウト
   ========================================================================== */

/* --------------------------------------
   Header (固定ヘッダー)
-------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-base-white);
  z-index: 100;
  transition:
    box-shadow var(--transition-base),
    padding var(--transition-base);
}

/* スクロール時にJSで付与されるクラス */
.header.is-scrolled {
  box-shadow: var(--shadow-light);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 var(--content-space-pc);
  max-width: 1440px;
  margin: 0 auto;
}

.header__logo-link {
  display: block;
}

/* ナビゲーション (PC版ベース) */
.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.header__nav-link {
  font-family: var(--font-family-en);
  font-weight: var(--weight-bold);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--color-text-main);
}

.header__nav-link:hover {
  color: var(--color-brand-green);
}

/* ハンバーガーボタン (PC時は非表示) */
.header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
}

.header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-main);
  position: absolute;
  left: 8px;
  transition: var(--transition-base);
}

.header__hamburger-line:nth-child(1) {
  top: 12px;
}
.header__hamburger-line:nth-child(2) {
  top: 19px;
}
.header__hamburger-line:nth-child(3) {
  top: 26px;
}

/* --------------------------------------
   Footer
-------------------------------------- */
.footer {
  background-color: var(--color-base-white);
  padding: 80px 0 40px;
  border-top: 1px solid var(--color-sub-lightgray);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.footer__logo {
  display: block;
  margin-bottom: 24px;
}

.footer__copy {
  color: var(--color-text-sub);
  font-size: 0.875rem;
}

.footer__nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer__nav-link,
.footer__nav-item a {
  font-family: var(--font-family-en);
  font-weight: var(--weight-bold);
  font-size: 0.875rem;
  color: var(--color-text-main);
}

.footer__nav-item a:hover {
  color: var(--color-brand-green);
}

.footer__utility-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.footer__utility-item a {
  font-size: 0.8125rem;
  color: var(--color-text-note);
}

.footer__utility-item a:hover {
  color: var(--color-brand-green);
}

.footer__bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--color-sub-lightgray);
}

.footer__copyright {
  font-family: var(--font-family-en);
  font-size: 0.75rem;
  color: var(--color-text-note);
}

/* ==========================================================================
   ファイルパス: /css/style.css (追記)
   内容: セクション共通スタイルとトップページ前半のスタイル
   ========================================================================== */

/* --------------------------------------
   セクション共通
-------------------------------------- */
.section {
  padding: var(--section-space-pc) 0;
}

.section--bg-gray {
  background-color: var(--color-sub-lightgray);
}

.section__title {
  font-size: 2rem;
  font-weight: var(--weight-bold);
  text-align: center;
  margin-bottom: 48px;
  line-height: var(--leading-heading);
}

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

/* テキスト内の一部だけをアクセントカラー（ブランドグリーン）で強調する汎用クラス */
.text-accent {
  color: var(--color-brand-green);
  font-weight: var(--weight-bold);
}

.section__lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

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

/* --------------------------------------
   Section 01: Hero
-------------------------------------- */
.hero {
  padding: 160px 0 80px;
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.hero__content {
  flex: 1;
}

.hero__title {
  font-size: 3rem;
  font-weight: var(--weight-bold);
  line-height: var(--leading-heading);
  margin-bottom: 32px;
  color: var(--color-brand-green);
}

.hero__lead {
  font-size: 1.125rem;
  font-weight: var(--weight-medium);
  margin-bottom: 24px;
}

.hero__note {
  font-size: 1rem;
  color: var(--color-text-sub);
  margin-bottom: 40px;
}

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

.hero__image {
  flex: 1;
  height: 480px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

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

/* --------------------------------------
   Section 02: 共感 (Empathy)
-------------------------------------- */
.empathy__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.empathy__card {
  background-color: var(--color-base-white);
  padding: 24px;
  border-radius: var(--radius-card);
  text-align: center;
}

.empathy__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.empathy__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.empathy__text {
  font-size: 1rem;
}

.empathy__message {
  text-align: center;
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  line-height: var(--leading-heading);
  margin-top: 48px;
}

.empathy__message p {
  margin-bottom: 16px;
}

/* --------------------------------------
   Section 03: 課題 (Issue) & Section 04: ブランド (Brand)
-------------------------------------- */
.issue__inner,
.brand__inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.issue__inner {
  margin-bottom: 96px;
}

.brand__inner--reverse {
  flex-direction: row;
}

.issue-brand__cta {
  text-align: center;
  margin-top: 56px;
}

.issue__content,
.brand__content {
  flex: 1;
}

.issue__title {
  font-size: 2rem;
  font-weight: var(--weight-bold);
  line-height: var(--leading-heading);
  margin-bottom: 32px;
}

.issue__text p,
.brand__text p {
  margin-bottom: 24px;
}

.issue__image,
.brand__image {
  flex: 1;
  height: 440px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.issue__image img,
.brand__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --------------------------------------
   Section 05: 価値 (Value)
-------------------------------------- */
.value__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.value__card {
  background-color: var(--color-base-white);
  border: 1px solid var(--color-sub-lightgray);
  padding: 40px;
  border-radius: var(--radius-card);
}

.value__card--featured {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url("../images/sampleimage.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.value__card--featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

.value__card-title {
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  margin-bottom: 6px;
  color: var(--color-brand-green);
  text-align: center;
}

/* --------------------------------------
   Section 06: サービス (Service)
-------------------------------------- */
.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* --------------------------------------
   汎用パーツ：画像トリミング表示（アスペクト比を保ったまま親要素いっぱいに埋める）
   使い方：<div class="media-cover"><img ...></div>
-------------------------------------- */
.media-cover {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-card);
  margin-bottom: 20px;
}

.media-cover--round {
  border-radius: 50%;
}

.media-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* imgタグ下のデフォルトの隙間（インライン要素の余白）対策 */
}

.service__card {
  display: block;
  background-color: var(--color-base-white);
  border: 1px solid var(--color-sub-lightgray);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-align: center;
  transition: var(--transition-base);
}

.service__card:hover {
  box-shadow: var(--shadow-light);
  border-color: var(--color-brand-green);
}

.service__card .media-cover {
  position: relative;
  margin-bottom: 0;
  border-radius: 0;
}

.service__card .media-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 40%,
    var(--color-base-white) 95%
  );
}

.service__card-body {
  padding: 24px 32px 40px;
}

.service__card-title {
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  margin-bottom: 16px;
}

.service__card-text {
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.service__card-link {
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  font-size: 0.875rem;
}

/* --------------------------------------
   Section 07: 特長 (Features)
-------------------------------------- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.features__card {
  background-color: var(--color-base-white);
  padding: 32px 24px;
  border-radius: var(--radius-card);
}

.features__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  background-color: var(--color-brand-green); /* 仮アイコン */
  border-radius: 50%;
  opacity: 0.2;
}

.features__card-title {
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
  margin-bottom: 16px;
}

.features__card-text {
  font-size: 1.125rem;
}

/* ==========================================================================
   ファイルパス: /css/style.css (後半部分の追記)
   ========================================================================== */

/* --------------------------------------
   Section 08: 実績 (Works)
-------------------------------------- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
/* ※個別のカードスタイルはJSと連携するため components.css に後述 */

/* --------------------------------------
   Section 09: お客様の声 (Voice)
-------------------------------------- */
.voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.voice__card {
  background-color: var(--color-base-white);
  padding: 32px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-light);
}

.voice__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-sub-lightgray);
}

.voice__icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-sub-lightgray);
  border-radius: 50%;
}

.voice__name {
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
  margin-bottom: 4px;
}

.voice__service {
  font-size: 0.75rem;
  color: var(--color-text-sub);
}

.voice__content h4 {
  font-size: 0.875rem;
  color: var(--color-brand-green);
  margin-bottom: 8px;
}

.voice__content p {
  font-size: 1.125rem;
  margin-bottom: 16px;
}
.voice__content p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------
   Section 10: 代表メッセージ (Message)
-------------------------------------- */
.message__inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.message__image {
  flex: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.message__content {
  flex: 1;
}

.message__text p {
  margin-bottom: 24px;
}

.message__cta {
  margin-top: 40px;
}

/* --------------------------------------
   Section 11: FAQ
-------------------------------------- */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__category {
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  margin: 40px 0 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-brand-green);
}
.faq__category:first-child {
  margin-top: 0;
}

.faq__item {
  background-color: var(--color-base-white);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-weight: var(--weight-bold);
  font-size: 1rem;
  color: var(--color-text-main);
}

.faq__q-icon {
  color: var(--color-brand-green);
  font-size: 1.25rem;
  margin-right: 16px;
}

.faq__q-text {
  flex: 1;
  padding-right: 24px;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

.faq__arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-brand-green);
  border-bottom: 2px solid var(--color-brand-green);
  transform: rotate(45deg);
  transition: transform var(--transition-base);
}

/* アコーディオン開状態 */
.faq__item.is-open .faq__arrow {
  transform: rotate(-135deg);
}

.faq__answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    height 0.3s ease,
    opacity 0.3s ease;
}

.faq__answer-inner {
  padding: 0 24px 24px 54px; /* アイコン分インデント */
  font-size: 1.125rem;
  color: var(--color-text-sub);
}

/* --------------------------------------
   Section 12: CTA
-------------------------------------- */
.cta__inner {
  display: flex;
  align-items: center;
  gap: 56px;
  background: linear-gradient(
    135deg,
    rgba(68, 169, 59, 0.1) 0%,
    rgba(252, 255, 123, 0.1) 100%
  );
  border-radius: var(--radius-card);
  padding: 64px;
}

.cta__content {
  flex: 1;
}

.cta__image {
  flex: 1;
  height: 440px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta__title {
  font-size: 2rem;
  font-weight: var(--weight-bold);
  margin-bottom: 32px;
}

.cta__lead p {
  margin-bottom: 24px;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

/* cta__innerの直接の子として使われる場合（テキスト群と横並びのボタン群） */
.cta__inner > .cta__actions {
  flex-direction: column;
  flex-shrink: 0;
  margin-top: 0;
}

/* --------------------------------------
   Section 13: 関連記事 (Related)
-------------------------------------- */
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.related__card {
  display: block;
  padding: 32px;
  border: 1px solid var(--color-sub-lightgray);
  border-radius: var(--radius-card);
  transition: var(--transition-base);
}

.related__card:hover {
  border-color: var(--color-brand-green);
  box-shadow: var(--shadow-light);
}

.related__label {
  display: inline-block;
  font-size: 0.75rem;
  font-family: var(--font-family-en);
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  margin-bottom: 16px;
}

.related__title {
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
}

/* --------------------------------------
   Section 14: Closing
-------------------------------------- */
.closing {
  padding: 120px 0;
}

.closing__inner {
  text-align: center;
}

.closing__title {
  font-size: 2.5rem;
  color: var(--color-brand-green);
  margin-bottom: 40px;
}

.closing__lead {
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  margin-bottom: 24px;
}

.closing__note {
  color: var(--color-text-sub);
}

/* ==========================================================================
   ファイルパス: /css/style.css (追記)
   内容: 下層ページ共通スタイル ＆ ABOUTページスタイル
   ========================================================================== */

/* --------------------------------------
   下層ページ共通: Page Header
-------------------------------------- */
.page-header {
  padding: 160px 0 60px; /* 固定ヘッダー分を下げる */
  background-color: var(--color-sub-lightgray);
  text-align: center;
}

.page-header__title {
  font-family: var(--font-family-en);
  font-size: 3rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.page-header__sub {
  font-size: 1rem;
  color: var(--color-text-sub);
}

/* --------------------------------------
   下層ページ共通: Breadcrumb (パンくず)
-------------------------------------- */
.breadcrumb {
  padding: 16px 0;
  background-color: var(--color-base-white);
  border-bottom: 1px solid var(--color-sub-lightgray);
}

.breadcrumb__list {
  display: flex;
  list-style: none;
  font-size: 0.75rem;
  color: var(--color-text-note);
}

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

.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  font-family: var(--font-family-en);
}

.breadcrumb__item a {
  color: var(--color-text-sub);
  transition: color var(--transition-base);
}

.breadcrumb__item a:hover {
  color: var(--color-brand-green);
}

/* --------------------------------------
   ABOUT: Brand Story
-------------------------------------- */
.story__inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.story__content {
  flex: 1;
}

.story__text p {
  margin-bottom: 24px;
}
.story__text p:last-child {
  margin-bottom: 0;
}

.story__image {
  flex: 1;
  height: 440px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --------------------------------------
   ABOUT: Concept & Philosophy (PVV)
-------------------------------------- */
.philosophy__concept {
  text-align: center;
  margin-bottom: 80px;
}

.philosophy__concept-title {
  font-size: 2rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  margin-bottom: 24px;
}

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}

.philosophy__card {
  position: relative;
  z-index: 1;
  padding: 40px 32px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--color-sub-lightgray);
  overflow: hidden;
  background-color: var(--color-base-white);
  background-image: url("../images/philosophy-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.philosophy__card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

.philosophy__label {
  font-family: var(--font-family-en);
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.philosophy__label span {
  font-family: var(--font-family-ja);
  font-size: 0.75rem;
  color: var(--color-text-note);
  margin-top: 4px;
}

.philosophy__title {
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
  margin-bottom: 16px;
  line-height: var(--leading-heading);
}

.philosophy__concept-text {
  font-size: 1.125rem;
}

.philosophy__desc {
  font-size: 1rem;
}

/* --------------------------------------
   ABOUT: Profile (代表プロフィール・ページ最下部)
-------------------------------------- */
.profile__grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 64px;
}

.profile__side {
  flex: 0 0 320px;
}

.profile__photo {
  width: 100%;
  max-width: 280px;
  height: 300px;
  margin-bottom: 24px;
}

.profile__facts {
  border-top: 1px solid var(--color-sub-lightgray);
}

.profile__facts-row {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-sub-lightgray);
  font-size: 1rem;
}

.profile__facts-row dt {
  flex: 0 0 88px;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
}

.profile__facts-row dd {
  flex: 1;
  line-height: 1.7;
}

.profile__main {
  flex: 1;
  min-width: 0;
}

.profile__eyebrow {
  font-family: var(--font-family-en);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: var(--color-brand-green);
  margin-bottom: 8px;
}

.profile__message {
  margin-top: 24px;
}

.profile__brand-message {
  margin-bottom: 48px;
}

.profile__greeting {
  padding-top: 40px;
  border-top: 1px solid var(--color-sub-lightgray);
}

.profile__message p {
  font-size: 1.125rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.profile__message-lead {
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
  line-height: 1.7;
  margin-bottom: 24px;
}

.profile__signature {
  font-size: 1rem;
  font-weight: var(--weight-bold);
  text-align: right;
  margin-top: 24px;
}

.profile__cta {
  margin-top: 32px;
  text-align: center;
}

.profile__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 32px;
  margin: 0 auto 56px;
}

.profile__stat-card {
  background-color: var(--color-base-white);
  padding: 40px 48px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-light);
  text-align: center;
}

.profile__stat-number {
  font-family: var(--font-family-en);
  font-size: 2.5rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  line-height: 1;
}

.profile__stat-number span {
  font-size: 1rem;
  color: var(--color-text-sub);
  margin-left: 4px;
}

.profile__stat-label {
  font-size: 1rem;
  color: var(--color-text-sub);
  margin-top: 8px;
}

.profile__stat-note {
  font-size: 0.6875rem;
  color: var(--color-text-sub);
  margin-top: 4px;
}

.single-services__lead--spaced {
  margin-top: 64px;
}

.profile__skills {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.profile__skills-title {
  font-size: 1rem;
  font-weight: var(--weight-bold);
  margin-bottom: 16px;
}

.profile__skill-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.profile__skill-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  background-color: rgba(68, 169, 59, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
}

.profile__skills-note {
  font-size: 1rem;
  color: var(--color-text-sub);
  line-height: 1.8;
  margin-top: 8px;
  text-align: left;
}

/* --------------------------------------
   ABOUT: Brand Value
-------------------------------------- */
.brand-value__list {
  max-width: 800px;
  margin: 0 auto;
}

.brand-value__item {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-sub-lightgray);
}

.brand-value__item:last-child {
  border-bottom: none;
}

.brand-value__number {
  font-family: var(--font-family-en);
  font-size: 2.5rem;
  font-weight: var(--weight-bold);
  color: rgba(68, 169, 59, 0.2); /* ブランドグリーンの薄い色 */
  line-height: 1;
}

.brand-value__content {
  flex: 1;
}

.brand-value__title {
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  margin-bottom: 16px;
}

/* ==========================================================================
   ファイルパス: /css/style.css (追記)
   内容: SERVICEページのスタイル
   ========================================================================== */

/* --------------------------------------
   SERVICE: Lead (ページ内リンク)
-------------------------------------- */
.service-lead {
  padding-bottom: 40px;
}

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

/* --------------------------------------
   SERVICE: Detail (各サービス詳細)
-------------------------------------- */
.service-detail {
  /* アンカーリンクで飛んだ際にヘッダー(80px)と余白分を確保 */
  scroll-margin-top: 100px;
}

.service-detail__inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* 左側：タイトルエリア */
.service-detail__header {
  flex: 0 0 35%;
  position: sticky;
  top: 120px; /* スクロール時に追従 */
}

.service-detail__title {
  font-size: 2rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  margin-bottom: 24px;
}

.service-detail__lead {
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
}

/* 右側：コンテンツエリア */
.service-detail__content {
  flex: 1;
}

.service-detail__block {
  margin-bottom: 56px;
}
.service-detail__block:last-child {
  margin-bottom: 0;
}

.service-detail__sub-title {
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-sub-lightgray);
}

/* 課題リスト */
.service-detail__list {
  list-style: none;
}

.service-detail__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
}
.service-detail__list li:last-child {
  margin-bottom: 0;
}

.service-detail__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--color-brand-green);
  border-radius: 50%;
}

/* 支援内容カード */
.service-detail__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-detail__card {
  background-color: var(--color-base-white);
  padding: 32px 24px;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-sub-lightgray);
  box-shadow: var(--shadow-light);
}

/* 背景がグレーのセクション内にあるカードは白を際立たせるためボーダーを外す */
.section--bg-gray .service-detail__card {
  border: none;
}

.service-detail__card h4 {
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  margin-bottom: 12px;
}

.service-detail__card p {
  font-size: 1.125rem;
}

/* ==========================================================================
   ファイルパス: /css/style.css (追記)
   内容: WORKSページのスタイル
   ========================================================================== */

/* --------------------------------------
   WORKS: Voice Detail (お客様の声 詳細版)
-------------------------------------- */
.voice-detail {
  scroll-margin-top: 100px;
}

.voice-detail__list {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.voice-detail__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.voice-detail__item {
  background-color: var(--color-base-white);
  padding: 48px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-light);
}

.voice-detail__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-sub-lightgray);
}

.voice-detail__title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-detail__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.voice-detail__name {
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
}

.voice-detail__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--weight-bold);
  background-color: var(--color-sub-lightgray);
  padding: 4px 12px;
  border-radius: 4px;
}

.voice-detail__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.voice-detail__block h4 {
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

/* 小さなチェックマークやポイント風の装飾 */
.voice-detail__block h4::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--color-accent-yellow);
  border-radius: 50%;
  margin-right: 8px;
}

.voice-detail__block p {
  font-size: 1.125rem;
  line-height: var(--leading-list);
}

/* ==========================================================================
   ファイルパス: /css/style.css (追記)
   内容: CONTACTページ（フォーム）のスタイル
   ========================================================================== */

/* --------------------------------------
   CONTACT: 全体レイアウト
-------------------------------------- */
.contact__lead {
  text-align: center;
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
  margin-bottom: 64px;
}

.contact__lead p {
  margin-bottom: 16px;
}
.contact__lead p:last-child {
  margin-bottom: 0;
}

.contact__grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

/* 左側：フォーム */
.contact__form {
  flex: 1;
  background-color: var(--color-base-white);
  padding: 48px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--color-sub-lightgray);
}

/* 右側：インフォメーション */
.contact__info {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__info-box {
  background-color: var(--color-sub-lightgray);
  padding: 32px 24px;
  border-radius: var(--radius-card);
}

.contact__info-title {
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  margin-bottom: 16px;
}

.contact__info-text {
  font-size: 1.125rem;
  margin-bottom: 24px;
}

/* LINEボタンの特例スタイル */
.btn--line {
  width: 100%;
  /* 実際のLINEカラーに合わせて調整が必要な場合はここに記述 */
  border-color: #06c755;
  color: #06c755;
}
.btn--line:hover {
  background-color: #e6f9ed;
}

/* --------------------------------------
   Form (コンポーネントスタイル)
-------------------------------------- */
.form__item {
  margin-bottom: 32px;
}

.form__label {
  display: flex;
  align-items: center;
  font-weight: var(--weight-bold);
  margin-bottom: 12px;
}

.form__required {
  font-size: 0.625rem;
  color: var(--color-text-white);
  background-color: #e05252; /* 注意を引く色 */
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 12px;
}

.form__optional {
  font-size: 0.625rem;
  color: var(--color-text-sub);
  background-color: var(--color-sub-lightgray);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 12px;
}

/* インプットとテキストエリアの共通スタイル */
.form__input,
.form__textarea {
  width: 100%;
  background-color: var(--color-sub-lightgray);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text-main);
  transition: var(--transition-base);
}

/* フォーカス時のアクセシビリティ対応 */
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-brand-green);
  background-color: var(--color-base-white);
  box-shadow: 0 0 0 3px rgba(68, 169, 59, 0.1);
}

.form__textarea {
  resize: vertical; /* 縦方向のみリサイズ可能に */
  min-height: 120px;
}

.form__privacy {
  font-size: 1rem;
  text-align: center;
  color: var(--color-text-sub);
  margin: 48px 0 24px;
}

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

.form__submit {
  text-align: center;
}

.form__submit .btn {
  width: 100%;
  max-width: 320px;
}
/* ==========================================================================
   ファイルパス: /css/style.css (追記)
   内容: リーガルページ（プライバシーポリシー・利用規約）の共通記述スタイル
   ========================================================================== */

/* --------------------------------------
   LEGAL: 規約・ポリシー文書の装飾
-------------------------------------- */
.legal {
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-text-main);
  line-height: var(--leading-base);
}

.legal__lead {
  font-size: 1rem;
  margin-bottom: 48px;
  color: var(--color-text-sub);
}

.legal h2 {
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  margin: 48px 0 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-brand-green);
}

.legal p {
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.legal ul {
  list-style: none;
  margin-bottom: 32px;
}

.legal li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 1.125rem;
}
.legal li:last-child {
  margin-bottom: 0;
}

.legal li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color-brand-green);
  font-weight: var(--weight-bold);
}

.legal__date {
  text-align: right;
  margin-top: 64px;
  font-weight: var(--weight-bold);
  color: var(--color-text-sub);
}

/* --------------------------------------
   TOPページ：申し込みの流れ (FLOW)
-------------------------------------- */
.flow__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}

.flow__eyebrow {
  font-family: var(--font-family-en);
  font-size: 0.875rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  margin-bottom: 8px;
}

.flow__lead {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text-sub);
  max-width: 420px;
}

.flow__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  position: relative;
  margin-bottom: 60px;
}

.flow__step {
  background-color: var(--color-base-white);
  border-radius: var(--radius-card);
  padding: 32px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-light);
  position: relative;
}

.flow__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-brand-green);
  color: var(--color-text-white);
  font-family: var(--font-family-en);
  font-weight: var(--weight-bold);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.flow__step-title {
  font-size: 0.9375rem;
  font-weight: var(--weight-bold);
  margin-bottom: 8px;
  color: var(--color-brand-green);
}

.flow__step-text {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--color-text-sub);
  text-align: justify;
}

.flow__cta {
  text-align: center;
}

.flow__cta-link {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--color-brand-green);
  border-radius: 999px;
  color: var(--color-brand-green);
  font-weight: var(--weight-bold);
  font-size: 0.875rem;
  background-color: var(--color-base-white);
  transition: var(--transition-base);
}

.flow__cta-link:hover {
  background-color: var(--color-brand-green);
  color: var(--color-text-white);
}

/* --------------------------------------
   TOPページ：CALCISが選ばれる理由 (MERIT)
-------------------------------------- */
.merit__main {
  background-color: var(--color-base-white);
  border: 1px solid var(--color-brand-green);
  border-radius: var(--radius-card);
  padding: 48px;
  text-align: center;
  margin-bottom: 32px;
}

.merit__main-title {
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  margin-bottom: 16px;
}

.merit__main-text {
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
}

.merit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.merit__card {
  background-color: var(--color-base-white);
  border: 1px solid var(--color-sub-lightgray);
  border-radius: var(--radius-card);
  padding: 32px;
}

.merit__card-title {
  font-size: 1.0625rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  margin-bottom: 12px;
}

.merit__card-text {
  font-size: 1rem;
  color: var(--color-text-sub);
}

/* --------------------------------------
   TOPページ：お客様の声 自動スライド (REVIEWS SLIDER)
-------------------------------------- */
.reviews-slider-section .container {
  margin-bottom: 40px;
}

.reviews-slider {
  overflow: hidden;
  width: 100%;
}

.reviews-slider .reviews__grid {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 32px;
  padding: 0 var(--content-space-pc);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  will-change: transform;
}

.reviews-slider .reviews__grid.is-dragging {
  cursor: grabbing;
}

.reviews-slider .reviews__card {
  flex: 0 0 320px;
  width: 320px;
}

/* --------------------------------------
   TOPページ：即座に申し込める4つのサービス (QUICK APPLY)
-------------------------------------- */
.quick-apply__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.quick-apply__card {
  background-color: var(--color-base-white);
  border: 1px solid var(--color-sub-lightgray);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quick-apply__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  background-color: rgba(68, 169, 59, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.quick-apply__title {
  font-size: 1.0625rem;
  font-weight: var(--weight-bold);
  margin-bottom: 12px;
  min-height: 2.6em;
}

.quick-apply__price {
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  color: var(--color-brand-green);
  margin-bottom: 20px;
}

.quick-apply__price span {
  font-size: 0.875rem;
  font-weight: normal;
  color: var(--color-text-sub);
}

.quick-apply__btn {
  width: 100%;
  margin-top: auto;
}

/* --------------------------------------
   SERVICEページ：比較図（2軸チャートは画像埋め込み）
-------------------------------------- */
.compare__image-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  text-align: center;
}

.compare__image-wrapper--matrix {
  max-width: 640px;
  margin: 0 auto 48px;
}

.compare__image-wrapper img {
  max-width: 100%;
  height: auto;
}

/* --------------------------------------
   SERVICEページ：6軸比較表（コーディング実装）
-------------------------------------- */
.compare__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare__matrix {
  display: grid;
  grid-template-columns: 180px repeat(3, 1fr);
  min-width: 760px;
  background-color: var(--color-base-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.compare__cell {
  padding: 24px 20px;
  border-bottom: 1px solid var(--color-sub-lightgray);
  border-right: 1px solid var(--color-sub-lightgray);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.compare__cell:nth-child(4n) {
  border-right: none;
}

.compare__cell--corner {
  background-color: var(--color-base-white);
}

.compare__col-head {
  align-items: center;
  text-align: center;
  gap: 8px;
  background-color: var(--color-sub-lightgray);
}

.compare__col-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-text-sub);
  color: var(--color-text-white);
  font-family: var(--font-family-en);
  font-weight: var(--weight-bold);
  font-size: 0.8125rem;
}

.compare__col-name {
  font-weight: var(--weight-bold);
  font-size: 0.9375rem;
}

.compare__col-head--highlight {
  background-color: var(--color-brand-green);
}

.compare__col-head--highlight .compare__col-number {
  background-color: var(--color-base-white);
  color: var(--color-brand-green);
}

.compare__col-head--highlight .compare__col-name {
  color: var(--color-text-white);
}

.compare__axis {
  font-weight: var(--weight-bold);
  font-size: 0.9375rem;
  background-color: var(--color-base-white);
}

.compare__symbol {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  font-weight: var(--weight-bold);
  line-height: 1.2;
  margin-bottom: 8px;
  white-space: nowrap;
}

.compare__symbol--circle {
  color: var(--color-brand-green);
}

.compare__symbol--triangle {
  color: #c9a227;
}

.compare__symbol--cross {
  color: var(--color-text-note);
}

.compare__cell-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  text-align: center;
  color: var(--color-text-sub);
}

.compare__cell--highlight {
  background-color: rgba(68, 169, 59, 0.06);
}

.compare__cell--highlight .compare__cell-text {
  color: var(--color-text-main);
  font-weight: var(--weight-bold);
}

/* --------------------------------------
   汎用パーツ：スマホ表示専用の改行・改行禁止
-------------------------------------- */
/* 使い方：改行したい箇所に <br class="sp-only"> を入れる（PCでは無効、スマホでのみ改行） */
br.sp-only {
  display: none;
}

/* 使い方：不自然に2文字だけ次の行に残ってしまう範囲を <span class="sp-nowrap">〜</span> で囲むと、
   その範囲ごと丸ごと次の行に送られるため、孤立した文字が出なくなる（スマホのみ有効） */
.sp-nowrap {
  white-space: normal;
}
