/*
Theme Name: izu-familyresort
Template: blankslate
Version:0.0.1
*/


/*改行*/
.br-pc {
  display: block;
}
.br-sp {
  display: none;
}
.pc {
  display: block;
}
.mb {
  display: none;
}
@media (max-width: 959px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .mb {
    display: block;
  }
}
/**/ :root {
  --main-font-color: #333;
  --body-font-size: 1.6em;
  --body-line-height: 1.25;
  --body-font-weight: 300;
  --body-font-weight-bold: 600;
  --body-font-family: "Zen Old Mincho", "Shippori Mincho", serif;
  --main-color: #166de3;
/*	追加分*/
	  --bessou-green: #102820;
  --bessou-green-deep: #0b1f19;
  --bessou-green-soft: #18362d;
  --bessou-gold: #b88935;
  --bessou-gold-light: #d2b56d;
  --bessou-cream: #f5f1e8;
  --bessou-ivory: #fbfaf6;
  --bessou-white: #ffffff;
  --bessou-text: #222222;
  --bessou-muted: #666666;
  --bessou-border: rgba(184, 137, 53, 0.34);
  --bessou-shadow: 0 0.55rem 1.45rem rgba(0, 0, 0, 0.14);
  --bessou-shadow-soft: 0 0.35rem 1.1rem rgba(0, 0, 0, 0.1);
}
/*全体共通*/
* {
  min-height: 0;
  min-width: 0;
}
a {
  text-decoration: none;
  color: var(--main-font-color);
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  letter-spacing: 0.1rem;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}
span, p {
  line-height: 1.5;
  letter-spacing: 0.1rem;
}
.wrapper {
  position: relative;
}



/*-----------------------------全ページ共通(page.phpで作成されたページ)ここから-----------------------------*/
/*パンくずリスト*/
.pankuzulist {
	border-bottom: solid 1px #ccc;
}
.breadcrumb {
	width: 80%;
	margin: 0 auto;
}
/*-----------------------------全ページ共通(page.phpで作成されたページ)ここまで-----------------------------*/




/*-----------------------------お問合せページ-----------------------------*/
.contact_width {
		padding: 8rem 0;
	}
.contact_steps {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0 0 48px;
	gap: 6px;
}

.contact_step {
	position: relative;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 64px;
	padding: 0 20px;
	background: #c8c8c8;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.04em;
	/* 右端の矢印形 */
	clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%, 24px 50%);
}

/* 最初のステップは左側のへこみを無くす */
.contact_step:first-child {
	clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%);
}

/* 最後のステップは右側の矢印を無くす */
.contact_step:last-child {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 24px 50%);
}

/* アクティブなステップ */
.contact_step.is-active {
	background: #b39656; /* サイトに合わせて変更 */
}

.contact_width {
	width: 80%;
	margin: 0 auto;
}

.contact_steps {
	max-width: 80%;
  margin: 0 auto;
  padding: 0;
}



/* フォーム全体 */
.wpcf7 dl {
  max-width: 80%;
  margin: 0 auto;
  padding: 0;
	margin-top: 2rem;
}

/* 各項目を横並びに */
.wpcf7 dl {
  display: grid;
  grid-template-columns: 320px 1fr;
  row-gap: 0;
}

/* ラベル（dt） */
.wpcf7 dt {
  font-size: 1.1rem;
  font-weight: bold;
  color: #222;
  display: flex;
  align-items: center;
  padding: 30px 0;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
}

/* 入力欄エリア（dd） */
.wpcf7 dd {
  padding: 24px 0;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
  display: block;
}

/* 「必須」ラベル */
.wpcf7 .must {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  color: #d0021b;
  border: 1px solid #d0021b;
  border-radius: 4px;
  padding: 3px 8px;
  margin-left: 12px;
  line-height: 1;
}

/* 入力欄共通 */
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  background: #f2f2f2;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 16px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  color: #333;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #bbb;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #b39656;
  background: #fff;
}

/* 住所など複数フィールドが横並びになる行 */
.wpcf7 dd br {
  flex-basis: 100%;
  height: 12px;
}

/* 郵便番号などの小さい入力欄（必要に応じて幅調整） */
.wpcf7 input[name="address1-1"],
.wpcf7 input[name="address2-1"],
.wpcf7 input[name="address1-2"],
.wpcf7 input[name="address2-2"] {
  width: 120px;
}

.wpcf7 input[name="address1-3"],
.wpcf7 input[name="address2-3"] {
  width: 100%;
  margin-top: 12px;
}

/* テキストエリア */
.wpcf7 textarea {
  min-height: 160px;
  resize: vertical;
}

/* ラジオボタン */
.wpcf7 .wpcf7-radio {
  display: flex;
  gap: 24px;
}

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

.wpcf7 .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
}

/* 同意チェックボックスの行 */
.wpcf7 > p {
  text-align: center;
  font-size: 17px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.wpcf7 .wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wpcf7 > p a {
  color: #222;
  text-decoration: underline;
}

/* チェックボックス・ラジオの見た目調整 */
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #b39656;
}

/* ===== 送信ボタン ===== */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  display: block;
  margin: 30px auto 0;
  background: #b39656;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 22px 90px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(179, 150, 86, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* 光が左から右へ流れるエフェクト */
.wpcf7 input[type="submit"]::before,
.wpcf7 .wpcf7-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

/* ホバー：少し浮き上がる＋色が濃くなる＋光が走る */
.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
  background: #a3863f;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(179, 150, 86, 0.55);
}

.wpcf7 input[type="submit"]:hover::before,
.wpcf7 .wpcf7-submit:hover::before {
  left: 125%;
}

/* クリック時：少し沈む */
.wpcf7 input[type="submit"]:active,
.wpcf7 .wpcf7-submit:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(179, 150, 86, 0.45);
}

/* ===== ステップ矢印（フォーム上部に表示する場合） ===== */
/* HTML側で .step-arrows を別途用意する想定 */
.step-arrows {
  display: flex;
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto 60px;
}

.step-arrows .step {
  flex: 1;
  height: 64px;
  background: #ccc;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
}

.step-arrows .step.active {
  background: #b39656;
}
.contact_personal-information {
	text-align: center;
	margin-top: 2rem;
}

/* ===== Contact Form 7 確認画面用CSS（.contact-confirm 配下） ===== */

/* フォーム全体 */
.contact-confirm .wpcf7 dl {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 320px 1fr;
  row-gap: 0;
}

/* ラベル（dt） */
.contact-confirm .wpcf7 dt {
  font-size: 22px;
  font-weight: bold;
  color: #222;
  display: flex;
  align-items: center;
  padding: 30px 0;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
}

/* 値エリア（dd） */
.contact-confirm .wpcf7 dd {
  padding: 30px 0;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

/* 「必須」ラベル */
.contact-confirm .wpcf7 .must {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  color: #d0021b;
  border: 1px solid #d0021b;
  border-radius: 4px;
  padding: 3px 8px;
  margin-left: 12px;
  line-height: 1;
}

/* ========== Contact Form 7 確認画面用CSS（.contact-confirm 配下） ========== */
/* 入力画面とレイアウトを揃える */

/* フォーム全体 */
.contact-confirm .wpcf7 dl {
  max-width: 80%;
  margin: 0 auto;
  margin-top: 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: 320px 1fr;
  row-gap: 0;
}

/* ラベル（dt）：入力画面と同じ */
.contact-confirm .wpcf7 dt {
  font-size: 1.1rem;
  font-weight: bold;
  color: #222;
  display: flex;
  align-items: center;
  padding: 30px 0;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
}

/* 値エリア（dd）：入力画面と同じ block 配置 */
.contact-confirm .wpcf7 dd {
  padding: 24px 0;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
  display: block;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* 「必須」ラベル */
.contact-confirm .wpcf7 .must {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  color: #d0021b;
  border: 1px solid #d0021b;
  border-radius: 4px;
  padding: 3px 8px;
  margin-left: 12px;
  line-height: 1;
}
/* ===== 確認画面：ラジオ・チェックボックスを操作不可に ===== */
.contact-confirm .wpcf7 input[type="radio"],
.contact-confirm .wpcf7 input[type="checkbox"] {
  pointer-events: none;
}

.contact-confirm .wpcf7 .wpcf7-list-item label {
  pointer-events: none;
  cursor: default;
}

/* ===== 確認画面：入力欄をテキスト表示風に ===== */
/* 枠・背景・影を消してプレーンなテキストに見せる */
.contact-confirm .wpcf7 input[type="text"],
.contact-confirm .wpcf7 input[type="tel"],
.contact-confirm .wpcf7 input[type="email"],
.contact-confirm .wpcf7 textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #333;
  width: auto;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

/* テキストエリアは複数行をそのまま表示 */
.contact-confirm .wpcf7 textarea {
  width: 100%;
  min-height: auto;
  height: auto;
  resize: none;
  overflow: hidden;
  line-height: 1.6;
}

/* フォーカスしても見た目を変えない */
.contact-confirm .wpcf7 input:focus,
.contact-confirm .wpcf7 textarea:focus {
  outline: none;
  background: transparent;
  border: none;
}

/* 住所など複数フィールドの行 */
.contact-confirm .wpcf7 dd br {
  height: 6px;
}

.contact-confirm .wpcf7 input[name="address1-3"],
.contact-confirm .wpcf7 input[name="address2-3"] {
  width: 100%;
  margin-top: 4px;
}

/* ラジオボタン（選択された値のみ表示される想定） */
.contact-confirm .wpcf7 .wpcf7-radio {
  display: flex;
  gap: 24px;
}

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

.contact-confirm .wpcf7 .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

/* ===== ボタンエリア ===== */
.contact-confirm .wpcf7 form {
  text-align: center;
}

/* 戻る・送信ボタンを中央に横並び */
.contact-confirm .wpcf7 input[type="submit"],
.contact-confirm .wpcf7 .wpcf7-previous,
.contact-confirm .wpcf7 .wpcf7-submit {
  display: inline-block;
  margin: 30px 12px 0;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 22px 8rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* 送信する（メインボタン）：入力画面のボタンと同じ配色・アニメーション */
.contact-confirm .wpcf7 input[type="submit"],
.contact-confirm .wpcf7 .wpcf7-submit {
  background: #b39656;
  color: #fff;
  box-shadow: 0 6px 16px rgba(179, 150, 86, 0.4);
}

/* 光が左から右へ流れるエフェクト */
.contact-confirm .wpcf7 .wpcf7-submit::before,
.contact-confirm .wpcf7 input[type="submit"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.contact-confirm .wpcf7 .wpcf7-submit:hover,
.contact-confirm .wpcf7 input[type="submit"]:hover {
  background: #a3863f;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(179, 150, 86, 0.55);
}

.contact-confirm .wpcf7 .wpcf7-submit:hover::before,
.contact-confirm .wpcf7 input[type="submit"]:hover::before {
  left: 125%;
}

.contact-confirm .wpcf7 .wpcf7-submit:active,
.contact-confirm .wpcf7 input[type="submit"]:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(179, 150, 86, 0.45);
}

/* 戻る（サブボタン） */
.contact-confirm .wpcf7 .wpcf7-previous {
  background: #fff;
  color: #b39656;
  border: 2px solid #b39656;
  box-shadow: none;
}

.contact-confirm .wpcf7 .wpcf7-previous:hover {
  background: #f5f0e4;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(179, 150, 86, 0.25);
}

.contact-confirm .wpcf7 .wpcf7-previous:active {
  transform: translateY(-1px);
}

/* ========== Contact Form 7 送信完了用CSS（.contact-complete 配下） ========== */

.contact-complete-text {
	width: 80%;
	margin: 0 auto;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 600;
	margin-top: 2rem;
}
.contact-complete .contact-complete_back-button {
  text-align: center;
  margin: 48px 0 0;
}

.contact-complete .contact-complete_back-button a {
  display: inline-block;
  background: #b39656;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  padding: 20px 70px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(179, 150, 86, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* 光が左から右へ流れるエフェクト */
.contact-complete .contact-complete_back-button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.contact-complete .contact-complete_back-button a:hover {
  background: #a3863f;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(179, 150, 86, 0.55);
}

.contact-complete .contact-complete_back-button a:hover::before {
  left: 125%;
}

.contact-complete .contact-complete_back-button a:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(179, 150, 86, 0.45);
}

.wpcf7-list-item-label a {
	color: var(--bessou-gold);
	border-bottom: solid 1px;
	padding-bottom: 0.2rem;
}
.wpcf7-list-item-label a:hover {
	color: var(--main-font-color);
	border-bottom: solid 1px var(--main-font-color);
}


/* =====================================================
   レスポンシブ
   ===================================================== */

/* ===== コンタクト共通 レスポンシブ ===== */
@media (max-width: 768px) {
	.contact_width {
		padding: 5rem 0;
		width: 90%;
	}
}

/* ===== 入力画面 レスポンシブ ===== */
@media (max-width: 768px) {
  .wpcf7 dl {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-top: 1rem;
  }

  .wpcf7 dt {
    padding: 24px 0 8px;
    border-bottom: none;
    font-size: 19px;
  }

  .wpcf7 dd {
    padding: 0 0 24px;
  }

  .wpcf7 input[type="submit"],
  .wpcf7 .wpcf7-submit {
    width: 100%;
    padding: 20px;
    font-size: 18px;
  }

  /* ステップ矢印リストを現在地表示用のボックスに変える */
  .contact_steps {
    display: block;
    position: relative;
    margin: 0;
    padding: 16px 20px;
    background: #b89a54;
    border-radius: 6px;
    text-align: center;
    max-width: -webkit-fill-available;
  }

  /* 非アクティブのステップは隠す */
  .contact_step {
    display: none;
    min-height: auto;
    padding: 0;
    background: none;
    clip-path: none;
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  /* アクティブなステップだけ表示 */
  .contact_step.is-active {
    display: block;
    background: none;
  }

  .contact_step.is-active::before {
    display: block;
    font-size: 12px;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 4px;
  }

  .contact_step[data-step="1"].is-active::before {
    content: "STEP 1 / 3";
  }
  .contact_step[data-step="2"].is-active::before {
    content: "STEP 2 / 3";
  }
  .contact_step[data-step="3"].is-active::before {
    content: "STEP 3 / 3";
  }
}

/* ===== 確認画面 レスポンシブ ===== */

@media (max-width: 768px) {
  .contact-confirm .wpcf7 dl {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-top: 1rem;
  }
  .contact-confirm .wpcf7 dt {
    padding: 24px 0 8px;
    border-bottom: none;
    font-size: 19px;
  }
  .contact-confirm .wpcf7 dd {
    padding: 0 0 24px;
  }

  /* ===== 住所・物件住所部分 ===== */

  /* dd直下の p を flex 横並びに */
  .contact-confirm .wpcf7 dd.address-row p {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-start;
    gap: 2px;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
  }

  /* input を包む span を文字幅だけにする（強制） */
  .contact-confirm .wpcf7 dd.address-row .wpcf7-form-control-wrap {
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: max-content !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
  }

  /* input本体も文字幅だけに（size属性を無効化） */
  .contact-confirm .wpcf7 dd.address-row .wpcf7-form-control-wrap input {
    width: auto !important;
    min-width: 0 !important;
    max-width: max-content !important;
    margin: 0 !important;
    padding: 0 !important;
    field-sizing: content; /* 対応ブラウザで中身に合わせて縮む */
  }

  /* 住所本体（3つめ）だけ改行して横いっぱいに */
  .contact-confirm .wpcf7 dd.address-row br {
    flex-basis: 100%;
    width: 100%;
    height: 0;
    margin: 0;
  }

  .contact-confirm .wpcf7 dd.address-row .wpcf7-form-control-wrap[data-name="address1-3"],
  .contact-confirm .wpcf7 dd.address-row .wpcf7-form-control-wrap[data-name="address2-3"] {
    flex-basis: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 4px !important;
  }

  /* ===== ボタン ===== */
  .contact-confirm .wpcf7 input[type="submit"],
  .contact-confirm .wpcf7 .wpcf7-previous,
  .contact-confirm .wpcf7 .wpcf7-submit {
    display: block;
    width: 100%;
    margin: 16px auto 0;
    padding: 20px;
    font-size: 18px;
  }
}

/* ===== 送信完了レスポンシブ ===== */
@media (max-width: 768px) {
  .contact-complete .contact-complete_back-button {
    margin-top: 32px;
  }
  .contact-complete .contact-complete_back-button a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 18px;
    font-size: 17px;
    text-align: center;
  }
	.contact-complete-text {
		width: 100%;
		        font-size: 1rem;
        letter-spacing: 1px;
	}
}
/*-----------------------------お問合せページここまで-----------------------------*/









/*-----------------------------査定実績詳細ここから-----------------------------*/
.-w-blog_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
.-w-blog_nav__back a {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #333;
  border-radius: 4px;
}
.-w-blog_nav__prev,
.-w-blog_nav__next {
  flex: 1;
}
.-w-blog_nav__next {
  text-align: right;
}
.blog_post-grid {
	    display: flex;
    flex-flow: column;
    gap: 2.5rem;
}


/*-----------------------------査定実績詳細ここまで-----------------------------*/





/*-----------------------------ヘッダーここから-----------------------------*/
.site-header {
  width: 100%;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px; /* rem の基準 */
}
 
/* ===== 上部バー ===== */
.header-topbar {
  background: #1b2e1d;
  color: #fff;
}
.header-topbar__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0.75rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.header-topbar__title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: bold;
}
.header-topbar__nav {
  display: flex;
  gap: 2rem;
}
.header-topbar__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: bold;
}
.header-topbar__nav a:hover {
  opacity: .8;
}
 
/* ===== メインヘッダー ===== */
.header-main {
  background: #fff;
}
.header-main__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0.875rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
 
/* 1. ロゴ */
.header-logo {
  flex-shrink: 0;
}
.header-logo__link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.header-logo__img {
      height: 2.4rem;
  width: auto;
}
.header-logo__text {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.0625rem;
  color: #1b2e1d;
  white-space: nowrap;
}
 
/* 2. 中央メニュー */
.header-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.header-nav__list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav__list a {
  color: #333;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: bold;
  white-space: nowrap;
  transition: color .2s;
}
.header-nav__list a:hover {
  color: #b89a54;
}
 
/* 3. 右：電話＋ボタン */
.header-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.header-contact__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-contact__number {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  text-decoration: none;
  color: #222;
}
.header-contact__icon {
  color: #1b2e1d;
  display: inline-flex;
}
.header-contact__icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.header-contact__num {
  font-size: 1.375rem;
  font-weight: bold;
  letter-spacing: 0.03125rem;
  line-height: 1;
}
.header-contact__hours {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: #555;
  line-height: 1.5;
}
.header-contact__btn {
  display: inline-flex;
  align-items: center;
  background: #b89a54;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.0625rem;
  padding: 1rem;
  border-radius: 0.125rem;
  white-space: nowrap;
  transition: background .2s;
}
.header-contact__btn:hover {
  background: #a78844;
}
 
/* ===== ハンバーガーボタン（PCでは非表示） ===== */
.header-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3125rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
}
.header-toggle__bar {
  display: block;
  width: 1.625rem;
  height: 2px;
  margin: 0 auto;
  background: #1b2e1d;
  transition: transform .3s ease, opacity .3s ease;
}
 
/* オーバーレイ（PCでは非表示） */
.header-overlay {
  display: none;
}

	/* ドロワー内の電話＋ボタンはPCでは非表示 */
.header-nav__contact {
  display: none;
}
 
/* ===== レスポンシブ：タブレット（メニューを下段へ折り返し） ===== */
@media (max-width: 1280px) and (min-width: 960px) {
  .header-main__inner {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 1rem;
  }
  .header-nav {
    order: 3;
    flex-basis: 100%;
  }
  .header-nav__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
  }
}
 
/* ===== レスポンシブ：スマホ（ハンバーガーメニュー） ===== */
@media (max-width: 959px) {
  /* 上部バー */
  .header-topbar__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
  }
  .header-topbar__title {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .header-topbar__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
  }
  .header-topbar__nav a {
    font-size: 0.75rem;
  }
 
  /* メインヘッダー：ロゴ・連絡先・ハンバーガーを1行に */
  .header-main__inner {
    flex-wrap: nowrap;
    padding: 0.625rem 1rem;
    gap: 0.75rem;
	          box-shadow: 0px 1px 9px 0px #c2c2c2;
  }
  .header-logo {
    margin-right: auto;
  }
  .header-logo__img {
    height: 2.4rem;
  }
  .header-logo__text {
    font-size: 1.0625rem;
  }
 
  /* ハンバーガーボタンを表示 */
  .header-toggle {
    display: flex;
    order: 3;
  }
 
  /* 右側の連絡先はメニュー内へ移動させるので一旦隠す */
  .header-contact {
    display: none;
  }
 
  /* メニュー本体：右からスライドするドロワー */
  .header-nav {
            position: fixed;
        top: 0;
        right: 0;
        z-index: 1001;
        width: -webkit-fill-available;
        height: 100dvh;
        margin: 0;
        padding: 1rem 1.5rem 2rem;
        background: #fffffff2;
        box-shadow: -1px 5px 6px rgba(0, 0, 0, .15);
        transform: translateX(100%);
        transition: transform .3s ease;
        overflow-y: auto;
        display: block;
  }
  .header-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .header-nav__list li {
            border-bottom: 1px solid #1b2e1d40;
  }
  .header-nav__list a {
    display: block;
    padding: 1rem 0.25rem;
    font-size: 1rem;
  }
 
  /* メニュー内に電話＋ボタンを再掲したいときの想定スタイル（任意） */
 
  /* オーバーレイ */
  .header-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    transition: opacity .3s ease;
  }
 
  /* ===== 開いた状態 ===== */
  body.is-nav-open .header-nav {
    transform: translateX(0);
  }
  body.is-nav-open .header-overlay {
    opacity: 1;
  }
  /* スクロールロック */
  body.is-nav-open {
    overflow: hidden;
  }
 
  /* ハンバーガー→×アニメーション */
  body.is-nav-open .header-toggle__bar:nth-child(1) {
    transform: translateY(0.4375rem) rotate(45deg);
  }
  body.is-nav-open .header-toggle__bar:nth-child(2) {
    opacity: 0;
  }
  body.is-nav-open .header-toggle__bar:nth-child(3) {
    transform: translateY(-0.4375rem) rotate(-45deg);
  }
	
	
/*	ヘッダーメニュー位置の高さ調整（ヘッダーの下辺から出るようにする）*/
	.header-nav {
  top: var(--header-bottom, 7.5rem);
          height: -webkit-fill-available;
}
.header-overlay {
  top: var(--header-bottom, 7.5rem);
}
	
	.InfoBar {
		display: none;
	}
	

	
	 /* ドロワー内の電話＋ボタン */
  .header-nav__contact {
    display: block;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
  }
  .header-nav__tel {
    display: block;
    text-decoration: none;
    color: #222;
    margin-bottom: 1rem;
  }
  .header-nav__tel-num {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
    color: #1b2e1d;
  }
  .header-nav__tel-hours {
    display: block;
    font-size: 0.75rem;
    color: #555;
    line-height: 1.5;
    margin-top: 0.25rem;
  }
  .header-nav__btn {
    display: block;
    background: #b89a54;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    padding: 0.875rem 1rem;
    border-radius: 0.125rem;
  }
  .header-nav__btn:active {
    background: #a78844;
  }
	
}
/*-----------------------------ヘッダーここまで-----------------------------*/


/*-----------------------------フッターここから-----------------------------*/

#footer {
  background-color: #333;
  color: #ffffff;
  padding: 70px 20px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

/* 会社情報 */
.footer-logo img {
  max-width: 240px;
  height: auto;
  margin-bottom: 15px;
}

.company-name {
  font-size: 20px;
  font-weight: 700;
}

.company-address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}

.company-address a {
  color: #ffffff;
  text-decoration: none;
}

/* サービス・情報の見出し */
.footer-heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* リスト */
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
	display: flex;
    flex-flow: column;
    gap: 1.3rem;
}

.footer-list li {
  font-size: 17px;
}

.footer-list a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-list a:hover {
  opacity: 0.7;
}

/* 会社情報のリンク（電話番号など） */
.company-address a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.company-address a:hover {
  color: #b89a54;
}

/* リスト */
.footer-list a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-list a:hover {
  color: #b89a54;
}



/* コピーライト */
#copyright {
  text-align: center;
  padding: 24px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  #footer {
    padding: 36px 24px 0;
	          margin-bottom: 4.6rem;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 35px 20px;
    padding-bottom: 28px;
  }

  /* 会社情報は横幅いっぱい */
  .footer-company {
    flex: 0 0 100%;
  }

  /* サービス・情報を2カラム横並び */
  .footer-nav {
    flex: 1 1 0;
    min-width: 0;
	  display: none;
  }
}


/*スマホ固定ボタン*/
#fNavi {
	display: none;
}
@media screen and (max-width: 768px) {
	#fNavi {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #b89a54;
  }

  #fNavi .item {
    position: relative;
    flex: 1;
  }

  /* 項目間の区切り線 */
  #fNavi .item + .item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.5);
  }

  #fNavi .itemLink {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    text-decoration: none;
    color: #ffffff;
  }

  #fNavi .img {
    margin-bottom: 8px;
  }

  #fNavi .img svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
  }

  #fNavi .txt {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
  }
}
/*-----------------------------フッターここまで-----------------------------*/

/*-----------------------------CTAここから-----------------------------*/
 
  .cta {
    position: relative;
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }
  .cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 40, 45, 0.8);
  }
  .cta__inner {
    position: relative;
    z-index: 1;
  }
  .cta__label {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: #c9a14a;
    margin-bottom: 1rem;
  }
  .cta__title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
  }
  .cta__desc {
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
  }
  .cta__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .cta__tel-icon {
    width: 3rem;
    height: 3rem;
    fill: #c9a14a;
  }
  .cta__tel-num {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: 0.02em;
	  line-height: 1;
  }
  .cta__hours {
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }
  .cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .cta__btn {
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.375rem;
    font-weight: bold;
        width: 23rem;
    height: 4.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 0;
  }
  /* スライドして色が変わる背景 */
  .cta__btn::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
  }
  .cta__btn:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.3);
  }
  /* 矢印が右に動く */
  .cta__btn .arrow {
    font-weight: normal;
    transition: transform 0.3s ease;
  }
  .cta__btn:hover .arrow {
    transform: translateX(0.375rem);
  }
  /* プライマリ：ホバーで少し濃いゴールドがスライドイン */
  .cta__btn--primary {
    background: #c9a14a;
  }
  .cta__btn--primary::after {
    background: #b08c34;
  }
  .cta__btn--primary:hover::after {
    transform: translateX(0);
  }
  /* セカンダリ：ホバーで白背景がスライドインし文字色が反転 */
  .cta__btn--secondary {
    border: 0.0625rem solid #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  }
  .cta__btn--secondary::after {
    background: #fff;
  }
  .cta__btn--secondary:hover {
    color: #1e282d;
  }
  .cta__btn--secondary:hover::after {
    transform: translateX(0);
  }
  .cta__features {
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    font-size: 1.25rem;
    font-weight: bold;
  }
/* 電話番号リンクのホバーアニメーション */
  .cta__tel-haco {
    text-decoration: none;
    color: #fff;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  }
  .cta__tel-haco:hover {
    transform: scale(1.04);
    color: #c9a14a;
    text-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.35);
  }
  /* 電話リンクのホバーでアイコンも連動 */
  .cta__tel-icon {
    transition: transform 0.3s ease;
  }
  .cta__tel:hover .cta__tel-icon {
    transform: rotate(-12deg) scale(1.1);
  }

/*レスポンシブ*/
@media screen and (max-width: 768px) {
  .cta {
    padding: 3rem 1rem;
  }
  .cta__label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .cta__title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .cta__desc {
	  display: none;
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }
  .cta__desc br {
    display: none;
  }
  .cta__tel {
    gap: 0.625rem;
    margin-bottom: 0.75rem;
  }
  .cta__tel-icon {
    width: 2rem;
    height: 2rem;
  }
  .cta__tel-num {
    font-size: 2.25rem;
  }
  .cta__hours {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }
  .cta__buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .cta__btn {
    width: 100%;
    max-width: 20rem;
    height: 4rem;
    font-size: 1.125rem;
  }
  .cta__features {
    flex-wrap: wrap;
            gap: 0.7rem 3rem;
    font-size: 0.9375rem;
  }
}
/*-----------------------------CTAここまで-----------------------------*/


/*-----------------------------パンくずリストここから-----------------------------*/
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  font-size: 0.875rem;
}
.breadcrumb__item a {
  color: #c9a14a;
  text-decoration: none;
}
.breadcrumb__item a:hover {
  text-decoration: underline;
}
.breadcrumb__item--current {
  color: #666;
  font-weight: bold;
}
.breadcrumb__sep {
  color: #999;
}
/*-----------------------------パンくずリストここまで-----------------------------*/



/*-----------------------------コンタクトページここから-----------------------------*/



/*-----------------------------コンタクトページここまで-----------------------------*/


/*-----------------------------TOPページここから----------------------------*/
.section_heading {
  margin-bottom: 2.15rem;
  text-align: center;
}

.section_heading_left {
  text-align: left;
}

.section_en {
  margin-bottom: 0.15rem;
  color: var(--bessou-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section_heading h2 {
  color: var(--bessou-green-deep);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
	    font-family: serif;
}

.section_heading p:not(.section_en) {
  margin-top: 0.5rem;
  color: var(--bessou-muted);
  font-size: 0.9rem;
}

.section_heading_light h2,
.section_heading_light .section_en {
  color: var(--bessou-white);
}

.common_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 15rem;
  padding: 0.8rem 1.35rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.common_btn::after {
  content: "›";
  margin-left: 0.75rem;
  font-size: 1rem;
  line-height: 1;
}

.common_btn:hover {
  opacity: 0.82;
  transform: translateY(-0.1rem);
}

.common_btn_fill {
  color: var(--bessou-white);
  background: var(--bessou-gold);
}

.common_btn_outline {
  color: var(--bessou-white);
	    border: solid 3px;
}

/* hero */
.hero_back {
  position: relative;
  min-height: 31rem;
  padding: 6.2rem 0 4.7rem;
  background-image: linear-gradient(90deg, rgba(9, 24, 19, 0.88) 0%, rgba(9, 24, 19, 0.68) 38%, rgba(9, 24, 19, 0.1) 72%), var(--bessou-placeholder-image);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero_width {
	width: 85%;
	margin: 0 auto;
}

.hero_content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 12.5rem;
  gap: 4rem;
  align-items: center;
  color: var(--bessou-white);
}

.hero_title {
  max-width: 50rem;
  margin-bottom: 1.2rem;
  font-size: clamp(1.85rem, 3.3vw, 3rem);
  font-weight: 700;
  line-height: 1.48;
  letter-spacing: 0.075em;
	font-family: serif;
}

.hero_lead {
  max-width: 40rem;
  margin-bottom: 1.65rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero_buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero_numbers {
  display: grid;
  gap: 0.7rem;
}

.hero_number_card {
  padding: 1.2rem 0.8rem;
  text-align: center;
	border: 0.0625rem solid rgba(210, 181, 109, 0.85);
  background: rgba(13, 32, 26, 0.88);
}

.hero_number_card + .hero_number_card {
  border-top: 0.0625rem solid rgba(210, 181, 109, 0.65);
}

.hero_number_card strong {
  display: block;
  color: var(--bessou-gold-light);
  font-size: 2.5rem;
  line-height: 1.1;
	    font-family: serif;
}

.hero_number_card strong span {
  font-size: 1.5rem;
}

.hero_number_card small {
  display: block;
      margin-top: 0.7rem;
    font-size: 1rem;
  line-height: 1.5;
}

/* point */
.point_back {
  padding: 1.65rem 0;
  background: var(--bessou-white);
}

.point_width {
	width: 85%;
	margin: 0 auto;
}

.point_content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.point_item {
  display: grid;
  grid-template-columns: 3.1rem 1fr;
  column-gap: 0.9rem;
  align-items: center;
}

.icon_round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.05rem;
  height: 3.05rem;
  color: var(--bessou-gold);
  border: 0.0625rem solid var(--bessou-gold);
  border-radius: 50%;
}

.icon_round svg,
.flow_icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.point_item h2 {
  color: var(--bessou-green-deep);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.45;
}

.point_item p {
  grid-column: 2;
  color: var(--bessou-green-deep);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* concept */
.concept_back {
  padding: 4.7rem 0 4.5rem;
  background: var(--bessou-cream);
}

.concept_width {
	width: 85%;
	margin: 0 auto;
}

.concept_box {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: stretch;
  background: var(--bessou-white);
  box-shadow: var(--bessou-shadow);
}

.concept_image {
  overflow: hidden;
}

.concept_image img {
  width: 100%;
  height: 100%;
  min-height: 20.5rem;
  object-fit: cover;
  aspect-ratio: 1.55 / 1;
}

.concept_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.25rem 2.45rem;
}

.concept_text h3 {
  margin-bottom: 0.95rem;
  color: var(--bessou-green-deep);
  font-size: clamp(1.18rem, 1.6vw, 1.55rem);
  font-weight: 700;
  line-height: 1.6;
	    font-family: serif;
}

.concept_text p {
  color: var(--bessou-muted);
  font-size: 0.86rem;
  line-height: 1.9;
}

.concept_text p + p {
  margin-top: 0.85rem;
}

/* achievement */
.achievement_back {
  padding: 2.75rem 0;
  background: var(--bessou-green-deep);
}

.achievement_content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: var(--bessou-white);
  text-align: center;
}

.achievement_item {
  padding: 0 2rem;
}

.achievement_item + .achievement_item {
  border-left: 0.0625rem solid rgba(255, 255, 255, 0.35);
}

.achievement_number {
  color: var(--bessou-gold-light);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
	    font-family: serif;
}

.achievement_number span {
  font-size: 0.9rem;
}

.achievement_item h2 {
  margin-top: 0.35rem;
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
	
}

.achievement_item p:last-child {
  font-size: 1rem;
  line-height: 1.65;
}

/* reason */
.reason_back {
  padding: 4.6rem 0 4.4rem;
  background: var(--bessou-green-deep);
}
.section_heading_light .reason-smallheading {
	    color: var(--bessou-gold);
}

.reason_width {
	width: 85%;
	margin: 0 auto;
}

.reason_grid {
  display: flex;
  gap: 0.6rem;
}

.reason_card {
  overflow: hidden;
  min-height: 16.8rem;
  background: var(--bessou-white);
  box-shadow: var(--bessou-shadow-soft);
	position: relative;
	    flex: 0 0 calc(23% - 9.6px);
}
/*flex: 0 0 calc(23% - 3.2px);*/

.reason_card.reason_card_wide {
	flex: 0 0 31%;
}

.reason_card figure {
  overflow: hidden;
}

.reason_card figure img {
  width: 100%;
  height: 8.7rem;
  object-fit: cover;
  aspect-ratio: 1.55 / 1;
}

.reason_card_body {
  padding: 1.15rem 1.1rem 1.25rem;
	    display: flex;
    flex-flow: column;
    gap: 0.5rem;
}

.reason_card_body > span {
  color: var(--bessou-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
	position: absolute;
	top: 5%;
	left: 5%;
}
.reason_card_body .reason_tags span {
	letter-spacing: 1.2px;
	font-size: 0.7rem;
}

.reason_card_body h3 {
  color: var(--bessou-green-deep);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
	    font-family: serif;
	text-align: center;
}

.reason_card_body p {
  color: var(--bessou-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.reason_buttons {
	    display: flex;
    justify-content: center;
}
.reason_buttons .common_btn {
	    min-width: 20rem;
	font-size: 1rem;
}

.reason_card_wide .reason_card_body {
  height: 100%;
	    justify-content: center;
}

.reason_tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.reason_tags li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.45rem 0.35rem;
  color: var(--bessou-green-deep);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  background: var(--bessou-cream);
}

.reason_content .common_btn,
.reason_width > .common_btn,
.reason_button .common_btn {
  margin-top: 2.5rem;
}


/* common section backgrounds */
.services_back,
.flow_back,
.works_back,
.cases_back,
.voice_back,
.representative_back,
.access_back {
  padding: 4.7rem 0;
  background: var(--bessou-white);
}

/* services */
.service_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.service_card,
.case_card,
.voice_card,
.flow_card {
  background: var(--bessou-white);
  box-shadow: var(--bessou-shadow-soft);
}

.services_width {
	width: 85%;
	margin: 0 auto;
}

.service_card {
  overflow: hidden;
}

.service_card figure {
  overflow: hidden;
}

.service_card figure img {
  width: 100%;
  height: 9.4rem;
  object-fit: cover;
  aspect-ratio: 1.45 / 1;
}

.service_body {
  padding: 1.15rem 1.05rem 1.25rem;
}


.service_body h3,
.case_body h3,
.flow_card h3 {
  margin-bottom: 0.55rem;
  color: var(--bessou-green-deep);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
	    text-align: center;
    letter-spacing: 0px;
    font-family: serif;
}

.service_body h3 {
	font-size: 1.4rem;
}
.service_card:nth-child(3) .service_body h3 {
	font-size: 1.2rem;
}

.service_body p,
.case_body p,
.flow_card p,
.voice_card p {
  color: var(--bessou-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.service_body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.8rem;
}

.service_body li,
.case_body span {
  display: inline-block;
  padding: 0.22rem 0.48rem;
  color: var(--bessou-white);
  font-size: 0.9rem;
  line-height: 1.45;
  background: var(--bessou-green);
}

/* flow */
.flow_back {
  padding-top: 2.5rem;
  background: var(--bessou-white);
}

.flow_width {
	width: 85%;
	margin: 0 auto;
}

.flow_card p {
	text-align: left;
}

.flow_card .flow_step {
	text-align: center;
}

.flow_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.flow_card {
  position: relative;
  min-height: 13rem;
  padding: 1.55rem 1.15rem 1.35rem;
  text-align: center;
  border-radius: 0.2rem;
}

.flow_card h3 {
	font-size: 1.5rem;
}

.flow_card:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -1rem;
  z-index: 2;
  color: var(--bessou-gold);
  font-size: 2.7rem;
  line-height: 1;
  transform: translateY(-50%);
}

.flow_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.7rem;
  color: var(--bessou-gold);
  background: rgba(184, 137, 53, 0.13);
  border-radius: 50%;
}

.flow_step {
  margin-bottom: 0.25rem;
  color: var(--bessou-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.flow_card small {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.5em 0.7rem;
  color: var(--bessou-green-deep);
  font-size: 1rem;
  background: var(--bessou-cream);
	font-weight: 600;
}

/* works */
.works_back {
  padding-top: 3.1rem;
}

.works_width {
	    width: 85%;
    margin: 0 auto;
}

.works_grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.work_card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.45 / 1;
  color: var(--bessou-white);
  background: var(--bessou-green-deep);
  box-shadow: var(--bessou-shadow-soft);
}

.work_card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
}
.work_card::after {
  pointer-events: none;
}

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

.work_card span {
  position: absolute;
  left: 0.75rem;
  bottom: 0.7rem;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
}

/* cases */
.cases_back {
  padding-top: 3.4rem;
  background: var(--bessou-white);
}

.cases_width {
	    width: 85%;
    margin: 0 auto;
}

.case_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.case_card {
  display: grid;
  grid-template-columns: 45% 1fr;
  overflow: hidden;
	padding: 1rem;
	    border-radius: 2%;
	    gap: 1rem;
}

.case_card img {
  width: 100%;
  height: 100%;
  min-height: 10.2rem;
  object-fit: cover;
}


.case_body h3 {
  margin-top: 0.55rem;
	text-align: left;
}

.case_body span {
	background: var(--bessou-gold);
	border-radius: 2%;
}



/* voice */
.voice_back {
  padding-top: 3.2rem;
  background: var(--bessou-white);
}

.voice_width {
	    width: 85%;
    margin: 0 auto;
}

.voice_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.voice_card {
  min-height: 11.8rem;
  padding: 1.55rem 1.4rem;
  box-shadow: var(--bessou-shadow-soft);
}

.voice_card::before {
  content: "★★★★★";
  display: block;
  margin-bottom: 0.65rem;
  color: var(--bessou-gold);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
}

.voice_card p {
	color: var(--bessou-green-deep);
}

.voice_card span {
  display: block;
  margin-top: 1rem;
      color: var(--bessou-muted);
  font-size: 1rem;
  font-weight: 700;
}

/* representative */

.representative_width {
	    width: 85%;
    margin: 0 auto;
}

.representative_content {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.representative_image {
	flex: 0 0 calc(35% - 24px);
}

.representative_name {
	flex: 0 0 calc(25% - 24px);
}

.representative_text {
	flex: 0 0 40%;
}

.representative_image {
  overflow: hidden;
}

.representative_image img {
  width: 100%;
  height: 100%;
  min-height: 18.5rem;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.representative_text {
	    border-left: 0.15rem solid var(--bessou-gold);
	padding-left: 1rem;
}

.representative_text h2 {
	font-size: 1.3rem;
}

.representative_text .section_heading {
    margin-bottom: 1rem;
}

.representative_text > p {
  color: var(--bessou-muted);
  font-size: 0.85rem;
  line-height: 1.85;
}

.representative_name {
  display: grid;
  gap: 1.5rem;
  
}

.representative_name-text {
	display: flex;
	flex-flow: column;
	gap: 0.2rem;
}


.representative_name strong {
  color: var(--bessou-green-deep);
  font-size: 1.8rem;
  line-height: 1.35;
	font-weight: 600;
}

.representative_name-shikaku {
	display: flex;
	flex-flow: column;
	gap: 0.3rem;
}
.representative_name span {
	var(--bessou-green-deep);
  font-size: 1rem;

}
.representative_name-text span {
	color: var(--bessou-gold);
		font-weight: 600;
}

.representative_numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.representative_numbers div {
  padding: 0.8rem 0.55rem;
  text-align: center;
  border: 0.0625rem solid var(--bessou-border);
}

.representative_numbers strong {
  display: block;
  color: var(--bessou-gold);
  font-size: 1.5rem;
  line-height: 1.2;
	    font-family: serif;
	font-weight: 600;
}

.representative_numbers span {
  display: block;
  margin-top: 0.35rem;
  color: var(--bessou-muted);
  font-size: 1rem;
    letter-spacing: 1.1px;
}

/* access */
.access_back {
  padding-top: 3.5rem;
  padding-bottom: 4.6rem;
  background: var(--bessou-white);
}

.access_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.access_width {
	    width: 85%;
    margin: 0 auto;
}

.access_map {
  overflow: hidden;
}

.access_map iframe {
  width: 100%;
  height: 100%;
  min-height: 21rem;
  border: 0;
}

.access_table {
  padding: 1.6rem 1.8rem;
  background: #f5f5f5;
}

.access_table div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.8rem;
  padding: 0.45rem 0;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.08);
}

.access_table dt {
  color: var(--bessou-green-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.access_table dd {
  color: var(--bessou-muted);
  font-size: 0.82rem;
}

.access_table a {
	border-bottom: solid 1px;
}
.access_table a:hover {
	border-bottom: none;
	color: var(--bessou-gold);
}
.representative_back {
		    background: var(--bessou-cream);
	}

/* --- works（買取実績ギャラリー） --- */
/* 査定実績（.case_card）と同じ角丸に揃える */
.work_card {
  border-radius: 2%;
}

/* オーバーレイも同じ角丸にしないと四隅がはみ出す */
.work_card::after {
  border-radius: inherit;
}

.work_card > a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border-radius: inherit;
  overflow: hidden;
}

/* .work_card::after のグラデーションは <a> の兄弟要素として
   カード全面を覆っているため、そのままだとクリックを奪ってしまう。
   pointer-events: none で「見た目はそのまま・クリックは透過」にする */
.work_card::after {
  pointer-events: none;
}

/* ::after のオーバーレイより span を前面に出す */
.work_card > a > span {
  z-index: 2;
}

/* タイトルが長い場合の省略（2行まで） */
.work_card span {
  right: 0.75rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.works_empty,
.cases_empty {
  padding: 2rem 0;
  color: var(--bessou-muted);
  text-align: center;
}

/* --- works「実績をもっとみる」カード --- */
/* 写真の代わりにゴールドのベタ塗り＋中央寄せでボタンらしく */
.work_card_more {
  background: var(--bessou-gold);
}

/* 写真が無いのでグラデーションオーバーレイは不要 */
.work_card_more::after {
  display: none;
}

.work_card_more > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  text-align: center;
}

/* 他カードの span は左下配置なので、ここだけ解除して中央に */
.work_card_more > a > span {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  -webkit-line-clamp: none;
}

/* common_btn と同じ「›」を付けて統一感を出す */
.work_card_more > a > span::after {
  content: "›";
  margin-left: 0.6rem;
  font-size: 1.05rem;
  line-height: 1;
}

.work_card_more > a:hover {
  opacity: 0.86;
}

/* --- cases（査定実績） --- */
/* case_card は grid-template-columns: 45% 1fr のため、
   <a> 自身にその grid を引き継がせる */
.case_card > a {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 1rem;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* 元の .case_card の grid 指定は <a> 側に移したので解除 */
.case_card {
  display: block;
}

/* 日付バッジ（元は「分譲地」ラベルの位置） */
.case_body span {
  font-variant-numeric: tabular-nums;
}

/* 抜粋テキストを3行で省略し、カード高さを揃える */
.case_body p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.5rem;
}

/* タイトルも2行まで */
.case_body h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* 「もっとみる」ボタン */
.cases_more {
  margin-top: 2rem;
  text-align: center;
}
.cases_btn {
	    background: var(--bessou-gold);
	    color: var(--bessou-white);
}

/* --- SP 調整 --- */
@media screen and (max-width: 767px) {
  .case_card > a {
    grid-template-columns: 40% 1fr;
    gap: 0.7rem;
  }

  .cases_more {
    margin-top: 1.5rem;
  }

  /* 元の style.css は 48rem 以下で .works_grid を 1fr にしているため、
     写真カードが画面幅いっぱい（1.45:1）になり縦に長くなりすぎる。
     2カラムに戻してサムネらしいサイズに収める */
  .works_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  /* 「実績をもっとみる」は写真ではなくボタンなので、
     aspect-ratio を解除して横長のバーにする */
  .work_card_more {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    min-height: 0;
  }

  .work_card_more > a {
    padding: 0.9rem 1rem;
  }

  .work_card_more > a > span {
    font-size: 1rem;
  }

  /* ボタン内は1行に収めたいので改行を無効化 */
  .work_card_more > a > span br {
    display: none;
  }
}




@media (max-width: 80rem) {
  .hero_width,
  .point_width,
  .concept_width,
  .achievement_width,
  .reason_width,
  .services_width,
  .flow_width,
  .works_width,
  .cases_width,
  .voice_width,
  .representative_width,
  .access_width {
    width: 90%;
  }

  .point_content,
  .reason_grid,
  .service_grid,
  .flow_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .works_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case_grid,
  .voice_grid {
    grid-template-columns: 1fr;
  }

  .flow_card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 48rem) {
  .section_heading {
    margin-bottom: 1.75rem;
  }
	
	.point_content {
		    gap: 1rem;
	}
	.point_item h2 {
		    font-size: 1.1rem;
	}

  .section_heading_left {
    text-align: center;
  }

  .section_heading h2 {
    font-size: 1.3rem;
  }

  .hero_back {
    min-height: auto;
    padding: 4.4rem 0 3.6rem;
    background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	  
  }

  .hero_content,
  .concept_box,
  .achievement_content,
  .case_grid,
  .voice_grid,
  .representative_content,
  .access_grid {
    grid-template-columns: 1fr;
  }
	
	.hero_content {
		gap: 2rem;
	}

  .hero_title {
    font-size: 1.45rem;
  }

  .hero_buttons {
    display: grid;
  }

  .hero_numbers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero_number_card {
    padding: 0.85rem 0.4rem;
	  border: 0.0625rem solid rgba(210, 181, 109, 0.85);
  }

/*
  .hero_number_card + .hero_number_card {
    border-top: 0;
    border-left: 0.0625rem solid rgba(210, 181, 109, 0.65);
  }
*/

  .hero_number_card strong {
    font-size: 1.3rem;
  }

  .point_content,
  .reason_grid,
  .service_grid,
  .flow_grid,
  .works_grid,
  .representative_numbers {
    grid-template-columns: 1fr;
  }

  .point_item {
    grid-template-columns: 2.8rem 1fr;
  }

  .icon_round {
    width: 2.8rem;
    height: 2.8rem;
  }

  .concept_back,
  .reason_back,
  .services_back,
  .flow_back,
  .works_back,
  .cases_back,
  .voice_back,
  .representative_back,
  .access_back {
    padding: 3.6rem 0;
  }

  .concept_image img {
    min-height: auto;
    aspect-ratio: 1.45 / 1;
  }

  .concept_text,
  .access_table {
    padding: 1.3rem;
  }

  .achievement_item {
    padding: 1.15rem 0;
  }

  .achievement_item + .achievement_item {
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.35);
    border-left: 0;
  }

  .reason_card {
    min-height: auto;
  }

  .reason_card figure img,
  .service_card figure img {
    height: auto;
            aspect-ratio: 2 / 1;
  }

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

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

  .case_card img {
    min-height: auto;
    aspect-ratio: 1.65 / 1;
  }

  .representative_image img {
    min-height: auto;
    aspect-ratio: 1.35 / 1;
  }

  .access_map iframe {
    min-height: 18rem;
  }

  .access_table div {
            grid-template-columns: 1fr;
        gap: 0.4rem;
        padding: 0.7rem 0.2rem;
  }
	.access_table dt {
		font-size: 1rem;
	}
	.access_table dd {
    font-size: 1rem;
}
	
	.concept_text h3 {
		    font-size: clamp(1rem, 1.6vw, 1.55rem);
		        margin-bottom: 0.8rem;
	}
	
	.reason_grid {
		    flex-flow: column;
    	gap: 2rem;
	}
	.hero_number_card strong span {
    font-size: 1rem;
    letter-spacing: 0px;
}
	.hero_lead {
		    font-size: 1rem;
	}
	
	.achievement_width {
		    margin: 0 auto;
	}
	.achievement_number {
		font-size: clamp(2.5rem, 3vw, 3rem);
	}
	.achievement_number span {
    font-size: 1.5rem;
}
	
	.reason_card_wide .reason_card_body {
		    padding-top: 2.5rem;
	}
	.reason_card_body .reason_tags span {
    font-size: 1rem;
}
	
	.representative_content {
		    flex-flow: column;
    gap: 1rem;
	}	
	
	.representative_name strong {
    font-size: 1.6rem;
    line-height: 1.2;
}
	.representative_name {
    gap: 1rem;
}
	.representative_text {
		margin-top: 1.5rem;
		    border-top: 0.15rem solid var(--bessou-gold);
    padding-top: 1rem;
		border-left: none;
		padding-left: 0;
	}
	
	.representative_numbers div {
		    border: 0.1rem solid var(--bessou-border);
	}
	.representative_numbers strong {
		    font-size: 2rem;
	}
	
	
}
/*-----------------------------TOPページここまで----------------------------*/


/*-----------------------------TOPページ アニメーションここから-----------------------------*/
/*
  front-page.php に追加した js-* クラス専用。
  JavaScriptが動かない環境では非表示にならないよう、.has-motion-js 配下だけ初期状態を設定しています。
*/

:root {
  --motion-duration: 1.15s;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-delay: 0ms;
}

/* ファーストビュー：背景とコピーを静かに立ち上げる */
.has-motion-js .js-hero-scene {
  background-position: 53% center;
  transition: background-position 2.4s var(--motion-ease);
}

/* ヒーロー本文全体を左からゆっくり表示 */
.has-motion-js .js-hero-copy {
  opacity: 0;
  transform: translate3d(-3.5rem, 0, 0);
  transition:
    opacity 1.35s var(--motion-ease),
    transform 1.35s var(--motion-ease);
  will-change: opacity, transform;
}

.has-motion-js.is-page-ready .js-hero-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

/* コピー内は縦移動させず、左からの動きを明確にする */
.has-motion-js .js-hero-copy .hero_title,
.has-motion-js .js-hero-copy .hero_lead,
.has-motion-js .js-hero-copy .hero_buttons {
  transform: translate3d(0, 0, 0);
}

.has-motion-js .hero_title,
.has-motion-js .hero_lead,
.has-motion-js .hero_buttons,
.has-motion-js .hero_number_card {
  opacity: 0;
  transform: translate3d(0, 1.7rem, 0);
  transition:
    opacity 1.25s var(--motion-ease),
    transform 1.25s var(--motion-ease);
}

.has-motion-js .hero_lead {
  transition-delay: 0.18s;
}

.has-motion-js .hero_buttons {
  transition-delay: 0.36s;
}

.has-motion-js .hero_number_card:nth-child(1) {
  transition-delay: 0.48s;
}

.has-motion-js .hero_number_card:nth-child(2) {
  transition-delay: 0.62s;
}

.has-motion-js .hero_number_card:nth-child(3) {
  transition-delay: 0.76s;
}

.has-motion-js.is-page-ready .js-hero-scene {
  background-position: center center;
}

.has-motion-js.is-page-ready .hero_title,
.has-motion-js.is-page-ready .hero_lead,
.has-motion-js.is-page-ready .hero_buttons,
.has-motion-js.is-page-ready .hero_number_card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* スクロール表示の共通設定 */
.has-motion-js .js-reveal {
  opacity: 0;
  transform: translate3d(0, 2.25rem, 0);
  transition:
    opacity var(--motion-duration) var(--motion-ease) var(--motion-delay),
    transform var(--motion-duration) var(--motion-ease) var(--motion-delay),
    clip-path 1.45s var(--motion-ease) var(--motion-delay);
  will-change: opacity, transform, clip-path;
}

.has-motion-js .js-reveal-right {
  transform: translate3d(2.8rem, 0, 0);
}

.has-motion-js .js-reveal-left {
  transform: translate3d(-2.8rem, 0, 0);
}

.has-motion-js .js-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}


/* 売却の流れ：ほかのセクションよりゆっくり、番号順に表示 */
.has-motion-js .flow_grid .flow_card.js-reveal {
  transition:
    opacity 1.9s var(--motion-ease) var(--motion-delay),
    transform 1.9s var(--motion-ease) var(--motion-delay),
    box-shadow 0.45s var(--motion-ease);
}

/* 写真は左からマスクが開き、内部画像が少しだけ縮小して収まる */
/*
  Safariを含むブラウザ差を避けるため、clip-pathには-webkit-指定も併記。
  共通の.js-revealとはtransitionを分離し、マスク解除を確実に反映させます。
*/
.has-motion-js .js-reveal-mask-left {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition:
    -webkit-clip-path 0.85s var(--motion-ease) var(--motion-delay),
    clip-path 0.85s var(--motion-ease) var(--motion-delay);
  will-change: clip-path;
}

.has-motion-js .js-reveal-mask-left img {
  transform: scale(1.08);
  transform-origin: center center;
  transition: transform 1s var(--motion-ease) var(--motion-delay);
}

.has-motion-js .js-reveal-mask-left.is-visible {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  will-change: auto;
}

.has-motion-js .js-reveal-mask-left.is-visible img {
  transform: scale(1);
}

/* clip-path非対応環境ではフェード＋横移動に自動で切り替える */
@supports not ((clip-path: inset(0 0 0 0)) or (-webkit-clip-path: inset(0 0 0 0))) {
  .has-motion-js .js-reveal-mask-left {
    opacity: 0;
    transform: translate3d(-2rem, 0, 0);
    transition:
      opacity var(--motion-duration) var(--motion-ease) var(--motion-delay),
      transform var(--motion-duration) var(--motion-ease) var(--motion-delay);
  }

  .has-motion-js .js-reveal-mask-left.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* 見出し英字にわずかな字間変化を加える */
.has-motion-js .section_heading.js-reveal .section_en {
  letter-spacing: 0.28em;
  transition: letter-spacing 1.4s var(--motion-ease) var(--motion-delay);
}

.has-motion-js .section_heading.js-reveal.is-visible .section_en {
  letter-spacing: 0.16em;
}

/* ホバー時のマイクロアニメーション */
.reason_card,
.service_card,
.flow_card,
.work_card,
.case_card,
.voice_card,
.point_item .icon_round,
.common_btn::after {
  transition:
    transform 0.45s var(--motion-ease),
    box-shadow 0.45s var(--motion-ease),
    opacity 0.35s ease;
}

.reason_card img,
.service_card img,
.work_card img,
.case_card img,
.representative_image img {
  transition: transform 0.85s var(--motion-ease);
}

@media (hover: hover) and (pointer: fine) {
  .reason_card:hover,
  .service_card:hover,
  .flow_card:hover,
  .work_card:hover,
  .case_card:hover,
  .voice_card:hover,
  .has-motion-js .js-reveal.is-visible.reason_card:hover,
  .has-motion-js .js-reveal.is-visible.service_card:hover,
  .has-motion-js .js-reveal.is-visible.flow_card:hover,
  .has-motion-js .js-reveal.is-visible.work_card:hover,
  .has-motion-js .js-reveal.is-visible.case_card:hover,
  .has-motion-js .js-reveal.is-visible.voice_card:hover {
    transform: translate3d(0, -0.4rem, 0);
    box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.16);
  }

  .reason_card:hover img,
  .service_card:hover img,
  .work_card:hover img,
  .case_card:hover img {
    transform: scale(1.045);
  }

  .point_item:hover .icon_round {
    transform: rotate(8deg) scale(1.06);
  }

  .common_btn:hover::after {
    transform: translateX(0.25rem);
  }
}

/* スマホでは移動量と時間を少し抑える */
@media (max-width: 48rem) {
  :root {
    --motion-duration: 0.95s;
  }

  .has-motion-js .js-reveal {
    transform: translate3d(0, 1.5rem, 0);
  }

  .has-motion-js .js-reveal-right,
  .has-motion-js .js-reveal-left {
    transform: translate3d(0, 1.5rem, 0);
  }

  .has-motion-js .js-reveal.is-visible {
    transform: translate3d(0, 0, 0);
  }


  /* スマホ：上からふわっと、1番から順にゆっくり表示 */
  .has-motion-js .flow_grid .flow_card.js-reveal {
    transition:
      opacity 1.75s var(--motion-ease) var(--motion-delay),
      transform 1.75s var(--motion-ease) var(--motion-delay),
      box-shadow 0.45s var(--motion-ease);
  }

  .has-motion-js .js-hero-scene,
  .has-motion-js.is-page-ready .js-hero-scene {
    background-position: center center;
  }
}

/* OS・ブラウザの「動きを減らす」設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  .has-motion-js .js-hero-scene,
  .has-motion-js .js-hero-copy,
  .has-motion-js .hero_title,
  .has-motion-js .hero_lead,
  .has-motion-js .hero_buttons,
  .has-motion-js .hero_number_card,
  .has-motion-js .js-reveal,
  .has-motion-js .js-reveal-mask-left,
  .has-motion-js .js-reveal-mask-left img,
  .has-motion-js .section_heading.js-reveal .section_en {
    opacity: 1 !important;
    transform: none !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
    transition: none !important;
    animation: none !important;
  }
}
/*-----------------------------TOPページ アニメーションここまで-----------------------------*/






/*-----------------------------査定実績一覧ここから-----------------------------*/
/* ページ全体 */
.blog-archive {
  color: var(--bessou-text);
  background: var(--bessou-ivory);
}

/* ページタイトル */
.blog-archive > h1 {
  position: relative;
      margin: 0 ;
    padding: 2rem 7rem 2rem;
    color: var(--bessou-white);
    font-family: "Zen Old Mincho", "Shippori Mincho", serif;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-align: left;
    background: linear-gradient(90deg, rgba(11, 31, 25, 0.96) 0%, rgba(16, 40, 32, 0.94) 50%, rgba(11, 31, 25, 0.96) 100%);
}

/* タイトル下のゴールドライン */
.blog-archive > h1::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 0.125rem;
  margin: 0.5rem 0;
  background: var(--bessou-gold);
}

/* パンくず */
.blog-archive .pankuzulist {
  background: var(--bessou-white);
  border-top: 0;
  border-bottom: 0.0625rem solid rgba(16, 40, 32, 0.14);
}

.blog-archive .breadcrumb {
  width: 85%;
  max-width: 80rem;
  margin: 0 auto;
}

/* 一覧エリア */
.blog-archive .blog-list {
  margin: 0;
}

.blog-archive .blog-list_back {
  padding: 5rem 0 4.5rem;
  background: var(--bessou-ivory);
}

.blog-archive .blog-list_width {
  width: 85%;
  max-width: 80rem;
  margin: 0 auto;
}

/* PC：3列×2段 */
.blog-archive .blog-list_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.5rem;
}

/* カード */
.blog-archive .blog-item {
  overflow: hidden;
  height: 100%;
  margin: 0;
  background: var(--bessou-white);
  border: 0.0625rem solid rgba(184, 137, 53, 0.22);
  box-shadow: var(--bessou-shadow-soft);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.blog-archive .blog-item > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--bessou-text);
}

/* アイキャッチ */
.blog-archive .blog-item__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bessou-cream);
}

/* 画像下の細いゴールドライン */
.blog-archive .blog-item__thumb::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.1875rem;
  background: var(--bessou-gold);
  transform: scaleX(0.25);
  transform-origin: left center;
  transition: transform 0.5s ease;
}

.blog-archive .blog-item__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

/* テキスト部分 */
.blog-archive .blog-item__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.45rem 1.4rem 1.55rem;
}

/* タイトル */
.blog-archive .blog-item__title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 0.8rem;
  color: var(--bessou-green-deep);
  font-family: "Zen Old Mincho", "Shippori Mincho", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.06em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* 投稿日 */
.blog-archive .blog-item__date {
  position: relative;
  margin-bottom: 0.9rem;
  padding-bottom: 0.8rem;
  color: var(--bessou-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.blog-archive .blog-item__date::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.0625rem;
  background: rgba(16, 40, 32, 0.12);
}

/* 抜粋 */
.blog-archive .blog-item__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--bessou-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* カードホバー */
@media (hover: hover) and (pointer: fine) {
  .blog-archive .blog-item:hover {
    border-color: var(--bessou-border);
    box-shadow: var(--bessou-shadow);
    transform: translateY(-0.4rem);
  }

  .blog-archive .blog-item:hover .blog-item__thumb img {
    transform: scale(1.045);
  }

  .blog-archive .blog-item:hover .blog-item__thumb::after {
    transform: scaleX(1);
  }

  .blog-archive .blog-item:hover .blog-item__title {
    color: var(--bessou-gold);
  }
}

/* 投稿がない場合 */
.blog-archive > p {
  width: 85%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  color: var(--bessou-muted);
  font-size: 1rem;
  text-align: center;
}

/* =========================================
   ページネーション
========================================= */

.blog-archive .navigation.pagination {
  margin: 0;
  padding: 0 1.5rem 5.5rem;
  background: var(--bessou-ivory);
	    padding-top: 3rem;
}

.blog-archive .navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.blog-archive .navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  height: 2.8rem;
  padding: 0 0.75rem;
  color: var(--bessou-green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  background: var(--bessou-white);
  border: 0.0625rem solid rgba(16, 40, 32, 0.2);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

/* 現在のページ */
.blog-archive .navigation.pagination .page-numbers.current {
  color: var(--bessou-white);
  background: var(--bessou-gold);
  border-color: var(--bessou-gold);
}

/* 前へ・次へ */
.blog-archive .navigation.pagination .page-numbers.prev,
.blog-archive .navigation.pagination .page-numbers.next {
  min-width: 3.4rem;
  color: var(--bessou-white);
  background: var(--bessou-green-deep);
  border-color: var(--bessou-green-deep);
}

/* 省略記号 */
.blog-archive .navigation.pagination .page-numbers.dots {
  min-width: 1.5rem;
  padding: 0;
  color: var(--bessou-muted);
  background: transparent;
  border-color: transparent;
}

/* ページネーションホバー */
@media (hover: hover) and (pointer: fine) {
  .blog-archive .navigation.pagination a.page-numbers:hover {
    color: var(--bessou-white);
    background: var(--bessou-gold);
    border-color: var(--bessou-gold);
    transform: translateY(-0.15rem);
  }

  .blog-archive .navigation.pagination a.page-numbers.prev:hover,
  .blog-archive .navigation.pagination a.page-numbers.next:hover {
    background: var(--bessou-green-soft);
    border-color: var(--bessou-green-soft);
  }
}

/* =========================================
   タブレット
========================================= */

@media screen and (max-width: 1024px) {
  .blog-archive .blog-list_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================
   スマホ
========================================= */

@media screen and (max-width: 768px) {
  .blog-archive > h1 {
    padding: 3.5rem 1.25rem 2.8rem;
    font-size: 1.8rem;
  }

  .blog-archive > h1::after {
    width: 3rem;
    margin-top: 1rem;
  }

  .blog-archive .breadcrumb,
  .blog-archive .blog-list_width {
    width: 90%;
  }

  .blog-archive .blog-list_back {
    padding: 3.5rem 0 3rem;
  }

  .blog-archive .blog-list_grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-archive .blog-item__thumb {
    aspect-ratio: 16 / 9;
  }

  .blog-archive .blog-item__body {
    padding: 1.25rem 1.2rem 1.35rem;
  }

  .blog-archive .blog-item__title {
    min-height: auto;
    font-size: 1.15rem;
    line-height: 1.6;
  }

  .blog-archive .blog-item__excerpt {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .blog-archive .navigation.pagination {
    padding: 3rem 1rem 4rem;
  }

  .blog-archive .navigation.pagination .nav-links {
    gap: 0.45rem;
  }

  .blog-archive .navigation.pagination .page-numbers {
    min-width: 2.55rem;
    height: 2.55rem;
    padding: 0 0.55rem;
    font-size: 0.9rem;
  }

  .blog-archive .navigation.pagination .page-numbers.prev,
  .blog-archive .navigation.pagination .page-numbers.next {
    min-width: 3rem;
  }
}

/*20260721_一覧ページサイトバー表示のため追記*/
/* =====================================================
   査定実績一覧：月別アーカイブ
===================================================== */

/* 一覧＋サイドバー */
.blog-archive .blog-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17rem;
  gap: 3rem;
  align-items: start;
}

.blog-archive .blog-archive-main {
  min-width: 0;
}

/* サイドバーを追加するため、PCはカード2列 */
.blog-archive .blog-archive-main .blog-list_grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* =====================================================
   絞り込み中の年月表示
===================================================== */

.blog-archive .blog-archive-current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.2rem 1.4rem;
  background: var(--bessou-white);
  border-left: 0.25rem solid var(--bessou-gold);
  box-shadow: var(--bessou-shadow-soft);
}

.blog-archive .blog-archive-current p {
  margin: 0;
  color: var(--bessou-green-deep);
  font-family: "Zen Old Mincho", "Shippori Mincho", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.blog-archive .blog-archive-current p span {
  margin-right: 0.25rem;
  color: var(--bessou-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.blog-archive .blog-archive-current > a {
  flex-shrink: 0;
  position: relative;
  padding-right: 1.2rem;
  color: var(--bessou-green-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.blog-archive .blog-archive-current > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-top: 0.0625rem solid currentColor;
  border-right: 0.0625rem solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* =====================================================
   アーカイブサイドバー
===================================================== */

.blog-archive .blog-archive-sidebar {
  position: sticky;
  top: 7rem;
}

.blog-archive .blog-archive-widget {
  overflow: hidden;
  background: var(--bessou-white);
  border: 0.0625rem solid rgba(184, 137, 53, 0.25);
  box-shadow: var(--bessou-shadow-soft);
}

/* 見出し */
.blog-archive .blog-archive-widget__heading {
  position: relative;
  padding: 1.6rem 1.5rem 1.4rem;
  background: var(--bessou-green-deep);
}

.blog-archive .blog-archive-widget__heading::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.125rem;
  margin-top: 0.8rem;
  background: var(--bessou-gold);
}

.blog-archive .blog-archive-widget__heading > span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--bessou-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
}

.blog-archive .blog-archive-widget__heading h2 {
  margin: 0;
  color: var(--bessou-white);
  font-family: "Zen Old Mincho", "Shippori Mincho", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

/* 月別リスト */
.blog-archive .blog-archive-months {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-archive .blog-archive-months > li {
  margin: 0;
  padding: 0;
  border-bottom: 0.0625rem solid rgba(16, 40, 32, 0.11);
}

.blog-archive .blog-archive-months > li:last-child {
  border-bottom: 0;
}

.blog-archive .blog-archive-months > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 3.5rem;
  padding: 0.8rem 1.15rem 0.8rem 1.4rem;
  color: var(--bessou-green-deep);
  background: var(--bessou-white);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    padding-left 0.25s ease;
}

/* 左側のアクセント線 */
.blog-archive .blog-archive-months > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.2rem;
  height: 0;
  background: var(--bessou-gold);
  transform: translateY(-50%);
  transition: height 0.25s ease;
}

/* 年月 */
.blog-archive .blog-archive-months__date {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

/* 件数 */
.blog-archive .blog-archive-months__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  min-height: 1.65rem;
  padding: 0.2rem 0.45rem;
  color: var(--bessou-white);
  background: var(--bessou-green-deep);
  border-radius: 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
}

/* 選択中 */
.blog-archive .blog-archive-months > li.is-current > a {
  padding-left: 1.7rem;
  color: var(--bessou-gold);
  background: var(--bessou-cream);
}

.blog-archive .blog-archive-months > li.is-current > a::before {
  height: 100%;
}

.blog-archive
  .blog-archive-months
  > li.is-current
  .blog-archive-months__count {
  background: var(--bessou-gold);
}

/* ホバー */
@media (hover: hover) and (pointer: fine) {
  .blog-archive .blog-archive-months > li > a:hover {
    padding-left: 1.7rem;
    color: var(--bessou-gold);
    background: var(--bessou-cream);
  }

  .blog-archive .blog-archive-months > li > a:hover::before {
    height: 100%;
  }

  .blog-archive
    .blog-archive-months
    > li
    > a:hover
    .blog-archive-months__count {
    background: var(--bessou-gold);
  }

  .blog-archive .blog-archive-current > a:hover {
    color: var(--bessou-gold);
  }
}

.blog-archive .blog-archive-widget__empty {
  margin: 0;
  padding: 1.5rem;
  color: var(--bessou-muted);
  font-size: 0.85rem;
}

/* =====================================================
   投稿がない場合
===================================================== */

.blog-archive .blog-archive-empty {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--bessou-white);
  border: 0.0625rem solid rgba(184, 137, 53, 0.22);
}

.blog-archive .blog-archive-empty p {
  margin: 0;
  color: var(--bessou-muted);
}

.blog-archive .blog-archive-empty a {
  display: inline-block;
  margin-top: 1.5rem;
  padding-bottom: 0.2rem;
  color: var(--bessou-green-deep);
  font-weight: 600;
  border-bottom: 0.0625rem solid var(--bessou-gold);
}

/* =====================================================
   ページネーション調整
===================================================== */

.blog-archive
  .blog-archive-main
  .navigation.pagination {
  margin: 0;
  padding: 3rem 0 0;
  background: transparent;
}

/* =====================================================
   タブレット
===================================================== */

@media screen and (max-width: 1100px) {
  .blog-archive .blog-archive-layout {
    grid-template-columns: minmax(0, 1fr) 15.5rem;
    gap: 2rem;
  }
}

@media screen and (max-width: 900px) {
  .blog-archive .blog-archive-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .blog-archive .blog-archive-sidebar {
    position: static;
  }

  .blog-archive .blog-archive-months {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-archive .blog-archive-months > li {
    border-right: 0.0625rem solid rgba(16, 40, 32, 0.11);
  }

  .blog-archive .blog-archive-months > li:nth-child(3n) {
    border-right: 0;
  }
}

/* =====================================================
   スマートフォン
===================================================== */

@media screen and (max-width: 768px) {
  .blog-archive .blog-archive-main .blog-list_grid {
    grid-template-columns: 1fr;
  }

  .blog-archive .blog-archive-current {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1rem 1.1rem;
  }

  .blog-archive .blog-archive-months {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-archive .blog-archive-months > li:nth-child(3n) {
    border-right: 0.0625rem solid rgba(16, 40, 32, 0.11);
  }

  .blog-archive .blog-archive-months > li:nth-child(2n) {
    border-right: 0;
  }

  .blog-archive .blog-archive-months > li > a {
    padding-right: 0.8rem;
    padding-left: 1rem;
  }

  .blog-archive .blog-archive-months > li > a:hover,
  .blog-archive .blog-archive-months > li.is-current > a {
    padding-left: 1.25rem;
  }

  .blog-archive .blog-archive-months__date {
    font-size: 0.85rem;
  }

  .blog-archive .blog-archive-months__count {
    min-width: 2.3rem;
    font-size: 0.65rem;
  }

  .blog-archive
    .blog-archive-main
    .navigation.pagination {
    padding-top: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .blog-archive .blog-archive-months {
    grid-template-columns: 1fr;
  }

  .blog-archive .blog-archive-months > li,
  .blog-archive .blog-archive-months > li:nth-child(2n),
  .blog-archive .blog-archive-months > li:nth-child(3n) {
    border-right: 0;
  }
}




/*-----------------------------査定実績一覧ここまで-----------------------------*/




/*-----------------------------買取実績一覧ここから-----------------------------*/

/* =====================================================
   査定実績・買取実績 共通ページタイトル
   ===================================================== */

.page-headding {
  position: relative;
  margin: 0;
  padding: 2rem 7rem;
  color: var(--bessou-white);
  font-family: "Zen Old Mincho", "Shippori Mincho", serif;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-align: left;
  background:
    linear-gradient(
      90deg,
      rgba(11, 31, 25, 0.96) 0%,
      rgba(16, 40, 32, 0.94) 50%,
      rgba(11, 31, 25, 0.96) 100%
    );
}

/* タイトル下のゴールドライン */
.page-headding::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 0.125rem;
  margin: 0.5rem 0;
  background: var(--bessou-gold);
}

/* =====================================================
   買取実績ページ全体
   ===================================================== */

.gallery-archive {
  color: var(--bessou-text);
  background: var(--bessou-cream);
}

/* パンくず */
.gallery-archive .pankuzulist {
  background: var(--bessou-white);
  border-top: 0;
  border-bottom: 0.0625rem solid rgba(16, 40, 32, 0.14);
}

.gallery-archive .breadcrumb {
  width: 85%;
  max-width: 80rem;
  margin: 0 auto;
}

/* =====================================================
   一覧エリア
   ===================================================== */

.gallery-archive .gallery-list {
  margin: 0;
}

.gallery-archive .gallery-list_back {
  padding: 5.5rem 0;
  background:
    linear-gradient(
      135deg,
      var(--bessou-cream) 0%,
      var(--bessou-ivory) 55%,
      #eee8da 100%
    );
}

.gallery-archive .gallery-list_width {
  width: 85%;
  max-width: 80rem;
  margin: 0 auto;
}

/* PCは2列で写真を大きく見せる */
.gallery-archive .gallery-list_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem 2rem;
  counter-reset: gallery-number;
}

/* =====================================================
   買取実績カード
   ===================================================== */

.gallery-archive .gallery-item {
  position: relative;
  overflow: hidden;
  height: 100%;
  margin: 0;
  background: var(--bessou-green-deep);
  box-shadow: 0 0.7rem 1.8rem rgba(11, 31, 25, 0.18);
  counter-increment: gallery-number;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

/* カード全体をリンクにする */
.gallery-archive .gallery-item > a {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  height: 100%;
  padding-bottom: 1.75rem;
  color: var(--bessou-white);
}

/* =====================================================
   アイキャッチ
   ===================================================== */

.gallery-archive .gallery-item__eyecatch {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  padding: 0;
  background: var(--bessou-green-deep);
}

/* 画像全面表示 */
.gallery-archive .gallery-item__eyecatch img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition:
    transform 0.8s ease,
    filter 0.5s ease;
}

/* 画像下部に薄いグラデーション */
.gallery-archive .gallery-item__eyecatch::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(11, 31, 25, 0) 50%,
      rgba(11, 31, 25, 0.52) 100%
    );
  pointer-events: none;
}

/* 連番ラベル */
.gallery-archive .gallery-item__eyecatch::before {
  content: "PURCHASE " counter(gallery-number, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  color: var(--bessou-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  background: rgba(11, 31, 25, 0.88);
  border-left: 0.2rem solid var(--bessou-gold);
  backdrop-filter: blur(0.25rem);
}

/* =====================================================
   タイトル
   ===================================================== */

.gallery-archive .gallery-item h2 {
  position: relative;
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  padding: 1.6rem 1.7rem 0;
  color: var(--bessou-white);
  font-family: "Zen Old Mincho", "Shippori Mincho", serif;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.07em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.3s ease;
}

/* タイトル左側のゴールドライン */
.gallery-archive .gallery-item h2::before {
  content: "";
  display: inline-block;
  width: 0.2rem;
  height: 1.25em;
  margin-right: 0.75rem;
  vertical-align: -0.18em;
  background: var(--bessou-gold);
  transition: height 0.35s ease;
}

/* =====================================================
   抜粋
   ===================================================== */

.gallery-archive .gallery-item__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0.85rem 1.7rem 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.85;
  letter-spacing: 0.05em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* =====================================================
   詳しく見る
   ===================================================== */

.gallery-archive .gallery-item > a::after {
  content: "VIEW DETAILS　→";
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  margin: 1.45rem 1.7rem 0;
  padding-bottom: 0.3rem;
  color: var(--bessou-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.13em;
  border-bottom: 0.0625rem solid var(--bessou-gold);
  transition:
    color 0.3s ease,
    letter-spacing 0.3s ease,
    border-color 0.3s ease;
}

/* =====================================================
   カードホバー
   ===================================================== */

@media (hover: hover) and (pointer: fine) {
  .gallery-archive .gallery-item:hover {
    box-shadow: 0 1.15rem 2.8rem rgba(11, 31, 25, 0.28);
    transform: translateY(-0.55rem);
  }

  /* 写真をズーム */
  .gallery-archive .gallery-item:hover .gallery-item__eyecatch img {
    filter: brightness(0.92);
    transform: scale(1.07);
  }

  .gallery-archive .gallery-item:hover h2 {
    color: var(--bessou-gold-light);
  }

  .gallery-archive .gallery-item:hover h2::before {
    height: 1.55em;
  }

  .gallery-archive .gallery-item:hover > a::after {
    color: var(--bessou-white);
    letter-spacing: 0.18em;
    border-color: var(--bessou-white);
  }
}

/* =====================================================
   投稿がない場合
   ===================================================== */

.gallery-archive > p {
  width: 85%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  color: var(--bessou-muted);
  font-size: 1rem;
  text-align: center;
}

/* =====================================================
   ページネーション
   ===================================================== */

.gallery-archive .navigation.pagination {
  margin: 0;
  padding: 3rem 1.5rem 5.5rem;
}

.gallery-archive .navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.gallery-archive .navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  height: 2.8rem;
  padding: 0 0.75rem;
  color: var(--bessou-green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  background: var(--bessou-white);
  border: 0.0625rem solid rgba(16, 40, 32, 0.2);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

/* 現在のページ */
.gallery-archive .navigation.pagination .page-numbers.current {
  color: var(--bessou-white);
  background: var(--bessou-gold);
  border-color: var(--bessou-gold);
}

/* 前へ・次へ */
.gallery-archive .navigation.pagination .page-numbers.prev,
.gallery-archive .navigation.pagination .page-numbers.next {
  min-width: 3.4rem;
  color: var(--bessou-white);
  background: var(--bessou-green-deep);
  border-color: var(--bessou-green-deep);
}

/* 省略記号 */
.gallery-archive .navigation.pagination .page-numbers.dots {
  min-width: 1.5rem;
  padding: 0;
  color: var(--bessou-muted);
  background: transparent;
  border-color: transparent;
}

/* ページネーションホバー */
@media (hover: hover) and (pointer: fine) {
  .gallery-archive .navigation.pagination a.page-numbers:hover {
    color: var(--bessou-white);
    background: var(--bessou-gold);
    border-color: var(--bessou-gold);
    transform: translateY(-0.15rem);
  }

  .gallery-archive .navigation.pagination a.page-numbers.prev:hover,
  .gallery-archive .navigation.pagination a.page-numbers.next:hover {
    background: var(--bessou-green-soft);
    border-color: var(--bessou-green-soft);
  }
}

/* =====================================================
   タブレット
   ===================================================== */

@media screen and (max-width: 1024px) {
  .gallery-archive .gallery-list_width {
    width: 90%;
  }

  .gallery-archive .gallery-list_grid {
    gap: 2rem 1.4rem;
  }

  .gallery-archive .gallery-item h2 {
    padding-right: 1.35rem;
    padding-left: 1.35rem;
  }

  .gallery-archive .gallery-item__excerpt {
    margin-right: 1.35rem;
    margin-left: 1.35rem;
  }

  .gallery-archive .gallery-item > a::after {
    margin-left: 1.35rem;
  }
}

/* =====================================================
   スマホ
   ===================================================== */

@media screen and (max-width: 768px) {
  /* 査定実績・買取実績 共通タイトル */
  .page-headding {
    padding: 2rem 1.25rem 2rem;
    font-size: 1.8rem;
  }

  .blog-archive > h1::after,
  .gallery-archive > h1::after {
    width: 3rem;
    margin-top: 1rem;
  }

  .gallery-archive .breadcrumb,
  .gallery-archive .gallery-list_width {
    width: 90%;
  }

  .gallery-archive .gallery-list_back {
    padding: 3.5rem 0;
  }

  .gallery-archive .gallery-list_grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .gallery-archive .gallery-item__eyecatch {
    aspect-ratio: 16 / 10;
  }

  .gallery-archive .gallery-item__eyecatch::before {
    top: 0.75rem;
    left: 0.75rem;
    min-height: 1.8rem;
    padding: 0.3rem 0.65rem;
    font-size: 0.65rem;
  }

  .gallery-archive .gallery-item h2 {
    padding: 1.35rem 1.2rem 0;
    font-size: 1.18rem;
  }

  .gallery-archive .gallery-item__excerpt {
    margin: 0.75rem 1.2rem 0;
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .gallery-archive .gallery-item > a::after {
    margin: 1.25rem 1.2rem 0;
    font-size: 0.72rem;
  }

  .gallery-archive .navigation.pagination {
    padding: 3rem 1rem 4rem;
  }

  .gallery-archive .navigation.pagination .nav-links {
    gap: 0.45rem;
  }

  .gallery-archive .navigation.pagination .page-numbers {
    min-width: 2.55rem;
    height: 2.55rem;
    padding: 0 0.55rem;
    font-size: 0.9rem;
  }

  .gallery-archive .navigation.pagination .page-numbers.prev,
  .gallery-archive .navigation.pagination .page-numbers.next {
    min-width: 3rem;
  }
}

/*-----------------------------買取実績一覧ここまで-----------------------------*/



/*-----------------------------査定実績詳細ページここから-----------------------------*/

/* =====================================================
   ページ全体
   ===================================================== */

.-w-blog_main--full {
  color: var(--bessou-text);
  background:
    linear-gradient(
      135deg,
      var(--bessou-ivory) 0%,
      var(--bessou-cream) 100%
    );
}

/* =====================================================
   パンくずリスト
   ===================================================== */

.-w-blog_main--full > .pankuzulist {
  width: 100%;
  background: var(--bessou-white);
  border-top: 0;
  border-bottom: 0.0625rem solid rgba(16, 40, 32, 0.14);
}

.-w-blog_main--full > .pankuzulist .breadcrumb {
  width: 85%;
  max-width: 80rem;
  margin: 0 auto;
}


/* =====================================================
   記事本体
   ===================================================== */

.-w-blog_main--full > section {
  position: relative;
  width: 85%;
  max-width: 64rem;
  margin: 5rem auto;
  padding: 4.5rem 5rem 4rem;
  box-sizing: border-box;
  background: var(--bessou-white);
  border-top: 0.25rem solid var(--bessou-gold);
  box-shadow:
    0 0.7rem 2rem rgba(11, 31, 25, 0.1),
    0 0.15rem 0.5rem rgba(11, 31, 25, 0.06);
}

/* 記事上部の背景装飾 */
.-w-blog_main--full > section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  background:
    linear-gradient(
      135deg,
      transparent 50%,
      rgba(184, 137, 53, 0.08) 50%
    );
  pointer-events: none;
}

/* =====================================================
   記事タイトル
   ===================================================== */

.-w-blog_main--full .-w-font_title1 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 0 1.5rem;
  color: var(--bessou-green-deep);
  font-family: "Zen Old Mincho", "Shippori Mincho", serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.08em;
  border-bottom: 0.0625rem solid rgba(16, 40, 32, 0.16);
}

/* 英字ラベル */
.-w-blog_main--full .-w-font_title1::before {
  content: "ASSESSMENT RECORD";
  display: block;
  margin-bottom: 0.7rem;
  color: var(--bessou-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.2em;
}

/* タイトル下のゴールドライン */
.-w-blog_main--full .-w-font_title1::after {
  content: "";
  position: absolute;
  bottom: -0.0625rem;
  left: 0;
  width: 4rem;
  height: 0.1875rem;
  background: var(--bessou-gold);
}

/* =====================================================
   投稿日・カテゴリー
   ===================================================== */

.-w-blog_main--full .-w-dtl-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0 3rem;
  color: var(--bessou-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

/* 投稿日 */
.-w-blog_main--full .-w-date {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--bessou-muted);
}

/* 区切り線は非表示 */
.-w-blog_main--full .-w-sep {
  display: none;
}

/* カテゴリー */
.-w-blog_main--full .-w-cate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.25rem 0.8rem;
  color: var(--bessou-white);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
  background: var(--bessou-green-deep);
  border-left: 0.18rem solid var(--bessou-gold);
}

/* =====================================================
   本文
   ===================================================== */

.-w-blog_main--full .-w-text {
  color: var(--bessou-text);
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.055em;
}

/* 段落 */
.-w-blog_main--full .-w-rich_text p {
  margin: 0 0 1.6rem;
  color: var(--bessou-text);
  font-size: 1rem;
  line-height: 2;
}

/* 最後の段落 */
.-w-blog_main--full .-w-rich_text p:last-child {
  margin-bottom: 0;
}

/* 本文内の大見出し */
.-w-blog_main--full .-w-rich_text h2 {
  position: relative;
  margin: 3.5rem 0 1.5rem;
  padding: 1rem 1.2rem 1rem 1.5rem;
  color: var(--bessou-white);
  font-family: "Zen Old Mincho", "Shippori Mincho", serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.07em;
  background: var(--bessou-green-deep);
  border-left: 0.3rem solid var(--bessou-gold);
}

/* 本文内の中見出し */
.-w-blog_main--full .-w-rich_text h3 {
  position: relative;
  margin: 2.8rem 0 1.3rem;
  padding: 0 0 0.8rem 1rem;
  color: var(--bessou-green-deep);
  font-family: "Zen Old Mincho", "Shippori Mincho", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.06em;
  border-bottom: 0.0625rem solid rgba(16, 40, 32, 0.2);
}

/* 中見出し左のゴールドライン */
.-w-blog_main--full .-w-rich_text h3::before {
  content: "";
  position: absolute;
  top: 0.15em;
  bottom: 0.95rem;
  left: 0;
  width: 0.2rem;
  background: var(--bessou-gold);
}

/* 小見出し */
.-w-blog_main--full .-w-rich_text h4 {
  margin: 2rem 0 1rem;
  color: var(--bessou-green-deep);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

/* リンク */
.-w-blog_main--full .-w-rich_text a {
  color: var(--bessou-gold);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  transition: color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .-w-blog_main--full .-w-rich_text a:hover {
    color: var(--bessou-green-deep);
  }
}

/* 箇条書き */
.-w-blog_main--full .-w-rich_text ul,
.-w-blog_main--full .-w-rich_text ol {
  margin: 1.5rem 0 2rem;
  padding: 1.4rem 1.6rem 1.4rem 3rem;
  background: var(--bessou-ivory);
  border-left: 0.2rem solid var(--bessou-gold);
}

.-w-blog_main--full .-w-rich_text li {
  margin-bottom: 0.65rem;
  color: var(--bessou-text);
  line-height: 1.8;
}

.-w-blog_main--full .-w-rich_text li:last-child {
  margin-bottom: 0;
}

/* 引用 */
.-w-blog_main--full .-w-rich_text blockquote {
  position: relative;
  margin: 2rem 0;
  padding: 1.7rem 2rem 1.7rem 3.4rem;
  color: var(--bessou-muted);
  background: var(--bessou-cream);
  border-left: 0.25rem solid var(--bessou-gold);
}

.-w-blog_main--full .-w-rich_text blockquote::before {
  content: "“";
  position: absolute;
  top: 0.6rem;
  left: 1rem;
  color: var(--bessou-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

/* 本文内の画像 */
.-w-blog_main--full .-w-rich_text img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2.5rem auto;
}

/* 横スクロール対応 */
.-w-blog_main--full .-w-rich_text table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  background: var(--bessou-white);
}

.-w-blog_main--full .-w-rich_text th,
.-w-blog_main--full .-w-rich_text td {
  padding: 1rem;
  line-height: 1.7;
  text-align: left;
  border: 0.0625rem solid rgba(16, 40, 32, 0.17);
}

.-w-blog_main--full .-w-rich_text th {
  color: var(--bessou-white);
  font-weight: 600;
  background: var(--bessou-green-deep);
}

/* =====================================================
   ACF画像
   ===================================================== */

/* 画像全体を表示 */
.-w-blog_main--full .-w-image img {
  display: block;
  width: auto;
  width: 100%;
  height: auto;
aspect-ratio: 5/3;
  margin: 0 auto;
  object-fit: cover;
}
#blog_img img {
	width: 100%;
	    height: auto;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

/* =====================================================
   前の記事・一覧・次の記事
   ===================================================== */

.-w-blog_main--full .-w-blog_nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 0.0625rem solid rgba(16, 40, 32, 0.16);
}

/* 前後リンクの共通設定 */
.-w-blog_main--full .-w-blog_nav__prev a,
.-w-blog_main--full .-w-blog_nav__next a {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.7rem 1rem;
  box-sizing: border-box;
  color: var(--bessou-green-deep);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  border: 0.0625rem solid rgba(16, 40, 32, 0.25);
  background: var(--bessou-white);
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

/* 前の記事 */
.-w-blog_main--full .-w-blog_nav__prev {
  min-width: 0;
  text-align: left;
}

/* 次の記事 */
.-w-blog_main--full .-w-blog_nav__next {
  min-width: 0;
  text-align: right;
}

.-w-blog_main--full .-w-blog_nav__next a {
  justify-content: flex-end;
}

/* 一覧に戻る */
.-w-blog_main--full .-w-blog_nav__back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  min-height: 3.3rem;
  padding: 0.75rem 1.5rem;
  box-sizing: border-box;
  color: var(--bessou-white);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  background: var(--bessou-gold);
  border: 0.0625rem solid var(--bessou-gold);
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* ナビゲーションのホバー */
@media (hover: hover) and (pointer: fine) {
  .-w-blog_main--full .-w-blog_nav__prev a:hover,
  .-w-blog_main--full .-w-blog_nav__next a:hover {
    color: var(--bessou-white);
    background: var(--bessou-green-deep);
    border-color: var(--bessou-green-deep);
    transform: translateY(-0.15rem);
  }

  .-w-blog_main--full .-w-blog_nav__back a:hover {
    background: var(--bessou-green-deep);
    border-color: var(--bessou-green-deep);
    box-shadow: 0 0.45rem 1rem rgba(11, 31, 25, 0.2);
    transform: translateY(-0.15rem);
  }
}

/* =====================================================
   タブレット
   ===================================================== */

@media screen and (max-width: 1024px) {
  .-w-blog_main--full > section {
    width: 90%;
    padding: 4rem 3.5rem 3.5rem;
  }

  .-w-blog_main--full > .pankuzulist .breadcrumb {
    width: 90%;
  }
}

/* =====================================================
   スマホ
   ===================================================== */

@media screen and (max-width: 768px) {
  .-w-blog_main--full > .pankuzulist .breadcrumb {
    width: 90%;
  }

  .-w-blog_main--full > section {
    width: 100%;
    margin: 0;
    padding: 3.2rem 5% 3.5rem;
    border-top-width: 0.2rem;
    box-shadow: none;
  }

  .-w-blog_main--full > section::before {
    width: 6rem;
    height: 6rem;
  }

  /* タイトル */
  .-w-blog_main--full .-w-font_title1 {
    padding-bottom: 1.2rem;
    font-size: 1.55rem;
    line-height: 1.55;
    letter-spacing: 0.06em;
  }

  .-w-blog_main--full .-w-font_title1::before {
    margin-bottom: 0.55rem;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
  }

  /* 日付・カテゴリー */
  .-w-blog_main--full .-w-dtl-info {
    margin: 1rem 0 2.3rem;
    gap: 0.55rem;
  }

  /* 本文 */
  .-w-blog_main--full .-w-text,
  .-w-blog_main--full .-w-rich_text p {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .-w-blog_main--full .-w-rich_text h2 {
    margin-top: 2.8rem;
    padding: 0.85rem 1rem 0.85rem 1.2rem;
    font-size: 1.2rem;
  }

  .-w-blog_main--full .-w-rich_text h3 {
    margin-top: 2.4rem;
    font-size: 1.1rem;
  }

  .-w-blog_main--full .-w-rich_text ul,
  .-w-blog_main--full .-w-rich_text ol {
    padding: 1.2rem 1rem 1.2rem 2.3rem;
  }

  .-w-blog_main--full .-w-rich_text blockquote {
    padding: 1.4rem 1.2rem 1.4rem 2.8rem;
  }

  /* ACF画像 */
  .-w-blog_main--full .-w-image {
    margin-top: 2.7rem;
    padding: 0.55rem;
  }

  /* 前後ナビ */
  .-w-blog_main--full .-w-blog_nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
  }

  .-w-blog_main--full .-w-blog_nav__back {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
  }

  .-w-blog_main--full .-w-blog_nav__prev {
    grid-column: 1;
    grid-row: 2;
  }

  .-w-blog_main--full .-w-blog_nav__next {
    grid-column: 2;
    grid-row: 2;
  }

  .-w-blog_main--full .-w-blog_nav__prev a,
  .-w-blog_main--full .-w-blog_nav__next a {
    width: 100%;
    min-height: 3.2rem;
    padding: 0.65rem 0.7rem;
    font-size: 0.78rem;
  }

  .-w-blog_main--full .-w-blog_nav__next a {
    justify-content: flex-end;
  }

  .-w-blog_main--full .-w-blog_nav__back a {
    width: 100%;
    min-height: 3.4rem;
  }
}

/*-----------------------------査定実績詳細ページここまで-----------------------------*/






/*-----------------------------買取実績詳細ページここから-----------------------------*/
.gallery_post-grid {
	display: flex;
	flex-flow: column;
	gap: 2.5rem;
}
#gallery_slider img {
	width: 100%;
	    height: auto;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}











.gallery-button {
  width: 100%;
  text-align: center;
}

.gallery-button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: min(100%, 430px);
  min-height: 64px;
  padding: 16px 72px 16px 35px;

  color: #fff;
  background: linear-gradient(
    135deg,
    #263b35 0%,
    #3d5a50 100%
  );

  border: 1px solid #263b35;
  border-radius: 2px;

  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-decoration: none;

  box-shadow: 0 10px 24px rgba(25, 45, 38, 0.18);

  overflow: hidden;

  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

/* テキストを前面に配置 */
.gallery-button a span {
  position: relative;
  z-index: 2;
}

/* 右側の矢印エリア */
.gallery-button a::after {
  content: "→";

  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: calc(100% - 20px);

  color: #263b35;
  background-color: #fff;

  font-size: 18px;
  line-height: 1;

  transform: translateY(-50%);

  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    transform 0.35s ease;
}

/* 左から光が流れる装飾 */
.gallery-button a::before {
  content: "";

  position: absolute;
  top: 0;
  left: -100%;

  width: 60%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.16),
    transparent
  );

  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

/* ホバー */
.gallery-button a:hover {
  color: #263b35;
  background: #fff;
  border-color: #263b35;

  box-shadow: 0 14px 28px rgba(25, 45, 38, 0.22);
  transform: translateY(-3px);
}

.gallery-button a:hover::before {
  left: 150%;
}

.gallery-button a:hover::after {
  color: #fff;
  background-color: #263b35;
  transform: translate(3px, -50%);
}

/* キーボード操作時 */
.gallery-button a:focus-visible {
  outline: 3px solid rgba(38, 59, 53, 0.3);
  outline-offset: 4px;
}

/* スマートフォン */
@media screen and (max-width: 767px) {
  .gallery-button {
    margin: 35px 0 45px;
  }

  .gallery-button a {
    width: 100%;
    min-height: 58px;
    padding: 14px 60px 14px 20px;

    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .gallery-button a::after {
    right: 8px;
    width: 40px;
    height: calc(100% - 16px);
  }
}



/*-----------------------------買取実績詳細ページここまで-----------------------------*/


/*-----------------------------プライバシーポリシーここから-----------------------------*/
.privacy-policy_width {
	    width: 85%;
    margin: 0 auto;
	    padding: 4.7rem 0 4.5rem;
}
.privacy-policy_tate {
	display: flex;
	flex-flow: column;
	gap: 3.5rem;
}
.privacy-policy h2.wp-block-heading {
	font-size: 1.7rem;
}
.privacy-policy h3.wp-block-heading {
	font-size: 1.5rem;
}



/* 本文 */
.privacy-policy_content p {
	font-size: 1.05rem;
	line-height: 2;
	margin: 0 0 1.2rem;
}
.privacy-policy_content p:last-child {
	margin-bottom: 0;
}
.privacy-policy_content .wp-block-paragraph a {
	color: var(--bessou-gold);
	text-decoration: underline;
	word-break: break-all;
}

/* ブロック間 */
.privacy-policy_haco > *:last-child {
	margin-bottom: 0;
}

/* 大見出し h2 */
.privacy-policy_content h2.wp-block-heading {
	position: relative;
	color: var(--bessou-gold);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .04em;
	margin: 0 0 1.8rem;
	padding: .9rem 1.2rem .9rem 1.5rem;
	background: var(--bessou-cream);
	border-left: 6px solid var(--bessou-gold);
	border-radius: 0 4px 4px 0;
}

/* 小見出し h3 */
.privacy-policy_content h3.wp-block-heading {
	position: relative;
	color: var(--bessou-gold);
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: .02em;
	margin: 2.4rem 0 1rem;
	padding: 0 0 .5rem 1.1rem;
	border-bottom: 1px solid var(--bessou-muted);
}
.privacy-policy_content h3.wp-block-heading::before {
	content: "";
	position: absolute;
	top: .45em;
	left: 0;
	width: 10px;
	height: 10px;
	background: var(--bessou-gold-light);
	border-radius: 2px;
	transform: rotate(45deg);
}
.privacy-policy_content h2.wp-block-heading + h3.wp-block-heading {
	margin-top: 0;
}


/* スマートフォン */
@media screen and (max-width: 599px) {
	.privacy-policy_width {
		width: 88%;
		padding: 2.8rem 0 3rem;
	}
	.privacy-policy_tate {
		gap: 2.2rem;
	}
	.privacy-policy_content h2.wp-block-heading {
		font-size: 1.2rem;
		padding: .7rem .8rem .7rem 1rem;
		border-left-width: 4px;
		margin-bottom: 1.2rem;
		letter-spacing: .02em;
	}
	.privacy-policy_content h3.wp-block-heading {
		font-size: 1.08rem;
		margin: 1.7rem 0 .8rem;
		padding-left: .95rem;
	}
	.privacy-policy_content h3.wp-block-heading::before {
		width: 8px;
		height: 8px;
	}
	.privacy-policy_content p {
		font-size: .95rem;
		line-height: 1.9;
		margin-bottom: 1rem;
	}
}
/*-----------------------------プライバシーポリシーここまで-----------------------------*/



/*                    スタッフ紹介 （服部）                 */
/* =========================================================
   スタッフ紹介ページ / slug: staff
   すべての独自クラス・IDは staff- で始めています。
========================================================= */

.staff-main {
    --staff-green: #0d2b22;
    --staff-gold: #b89445;
    --staff-gold-dark: #9f7f37;
    --staff-cream: #f7f4ed;
    --staff-card-bg: #ffffff;
    --staff-detail-bg: #f4f1ea;
    --staff-text: #252525;
    --staff-muted: #6d6a63;
    --staff-border: #aaa79f;
    --staff-active: #c95d67;
    color: var(--staff-text);
    background: #ffffff;
    overflow: hidden;
}

.staff-main *,
.staff-main *::before,
.staff-main *::after {
    box-sizing: border-box;
}

.staff-inner {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.staff-members-section {
    padding: clamp(80px, 6vw, 138px) 0 clamp(96px, 10vw, 156px);
}

.staff-section-header {
    text-align: center;
    margin-bottom: clamp(42px, 5vw, 66px);
}

.staff-section-en {
    margin: 0 0 18px;
    color: var(--staff-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}

.staff-section-heading {
    margin: 0;
    color: var(--staff-text);
    font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.05em;
}

.staff-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 28px;
}

.staff-card {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--staff-border);
    border-radius: 5px;
    background: var(--staff-card-bg);
    color: inherit;
    text-align: left;
    font: inherit;
    cursor: pointer;
    appearance: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.staff-card:hover {
    transform: translateY(-3px);
    border-color: var(--staff-gold);
    box-shadow: 0 12px 26px rgba(15, 38, 29, 0.1);
}

.staff-card:focus-visible {
    outline: 3px solid rgba(184, 148, 69, 0.38);
    outline-offset: 4px;
}

.staff-card-active {
    border-color: var(--staff-active);
    box-shadow: 0 0 0 1px var(--staff-active);
}

.staff-card-image-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 1.24 / 1;
    overflow: hidden;
    background: #e9e7e0;
}

.staff-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    transition: transform 0.35s ease;
}

.staff-card:hover .staff-card-image {
    transform: scale(1.025);
}

.staff-card-body {
    position: relative;
    display: flex;
    min-height: 190px;
    padding: 18px 18px 32px;
    flex-direction: column;
    align-items: flex-start;
}

.staff-card-role {
    display: inline-flex;
    min-width: 62px;
    min-height: 23px;
    margin-bottom: 9px;
    padding: 3px 12px;
    align-items: center;
    justify-content: center;
    background: var(--staff-green);
    color: #ffffff;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.12em;
}

.staff-card-name {
    display: block;
    font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 22px;
    line-height: 1.35;
    letter-spacing: 0.04em;
}

.staff-card-kana {
    display: block;
    min-height: 17px;
    margin-top: 1px;
    color: var(--staff-muted);
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.07em;
}

.staff-card-copy {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.75;
}

.staff-card-arrow {
    position: absolute;
    right: 13px;
    bottom: 8px;
    color: #262626;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
}

.staff-detail {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 24px;
    margin-top: 56px;
    padding: 30px;
    border: 1px solid var(--staff-border);
    border-radius: 7px;
    background: var(--staff-detail-bg);
    scroll-margin-top: 120px;
}

.staff-detail:focus {
    outline: none;
}

.staff-detail-image-wrap {
    min-height: 385px;
    overflow: hidden;
    border-radius: 5px;
    background: #e6e2d9;
}

.staff-detail-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.staff-detail-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.staff-detail-profile {
    padding: 8px 2px 22px;
}

.staff-detail-pickup {
    display: inline-flex;
    min-height: 31px;
    margin-bottom: 12px;
    padding: 5px 16px;
    align-items: center;
    background: var(--staff-gold);
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.07em;
}

.staff-detail-role {
    margin: 0 0 3px;
    color: var(--staff-muted);
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.staff-detail-name-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 18px;
}

.staff-detail-name {
    margin: 0;
    font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: clamp(29px, 3vw, 40px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.04em;
}

.staff-detail-kana {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.staff-detail-copy {
    margin: 17px 0 0;
    font-size: 14px;
    line-height: 1.8;
}

.staff-detail-information {
    display: grid;
    grid-template-columns: minmax(220px, 0.78fr) minmax(300px, 1.22fr);
    gap: 20px;
    margin-top: auto;
}

.staff-detail-meta,
.staff-detail-message {
    min-height: 166px;
    border-radius: 5px;
    background: #ffffff;
}

.staff-detail-meta {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    padding: 4px 22px;
}

.staff-detail-meta-row {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 16px 0;
}

.staff-detail-meta-row + .staff-detail-meta-row {
    border-top: 1px solid #eeeae1;
}

.staff-detail-meta-icon,
.staff-detail-message-icon {
    color: var(--staff-gold);
}

.staff-detail-meta-icon svg,
.staff-detail-message-icon svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.staff-detail-meta-label,
.staff-detail-message-label {
    margin: 0;
    color: var(--staff-gold-dark);
    font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.staff-detail-meta-value {
    margin: 3px 0 0;
    color: var(--staff-muted);
    font-size: 12px;
    line-height: 1.6;
}

.staff-detail-meta-value:empty {
    display: none;
}

.staff-detail-message {
    padding: 20px 24px 22px;
}

.staff-detail-message-heading {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 13px;
}

.staff-detail-message-text {
    margin: 0;
    white-space: pre-line;
    font-size: 13px;
    line-height: 1.85;
}

.staff-detail-changing {
    animation: staff-detail-fade 0.32s ease both;
}

@keyframes staff-detail-fade {
    0% {
        opacity: 0.35;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.staff-strength-section {
    padding: clamp(88px, 9vw, 134px) 0 clamp(92px, 9vw, 138px);
    background: var(--staff-cream);
}

.staff-strength-header {
    margin-bottom: clamp(42px, 5vw, 64px);
}

.staff-strength-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.staff-strength-item {
    position: relative;
    padding: 0 34px;
    text-align: center;
}

.staff-strength-item + .staff-strength-item::before {
    position: absolute;
    top: 30px;
    bottom: 10px;
    left: 0;
    width: 1px;
    background-image: linear-gradient(to bottom, #78756e 45%, transparent 45%);
    background-size: 1px 9px;
    content: "";
}

.staff-strength-icon {
    display: grid;
    width: 92px;
    height: 92px;
    margin: 0 auto 24px;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    color: var(--staff-gold);
}

.staff-strength-icon svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.staff-strength-title {
    margin: 0 0 13px;
    color: var(--staff-gold-dark);
    font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.staff-strength-description {
    max-width: 230px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.95;
}

@media (max-width: 1100px) {
    .staff-inner {
        width: min(960px, calc(100% - 40px));
    }

    .staff-card-grid {
        gap: 24px 20px;
    }

    .staff-card-body {
        min-height: 180px;
        padding-inline: 14px;
    }

    .staff-detail {
        grid-template-columns: minmax(230px, 310px) minmax(0, 1fr);
        padding: 24px;
    }

    .staff-detail-information {
        grid-template-columns: 1fr;
    }

    .staff-detail-meta,
    .staff-detail-message {
        min-height: auto;
    }

    .staff-detail-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .staff-detail-meta-row + .staff-detail-meta-row {
        border-top: 0;
        border-left: 1px solid #eeeae1;
        padding-left: 20px;
    }

    .staff-strength-item {
        padding-inline: 22px;
    }
}

@media (max-width: 820px) {
    .staff-members-section {
        padding-top: 70px;
    }

    .staff-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .staff-detail {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .staff-detail-image-wrap {
        width: min(100%, 430px);
        min-height: 0;
        aspect-ratio: 1 / 1.05;
        margin-inline: auto;
    }

    .staff-detail-profile {
        text-align: center;
    }

    .staff-detail-name-line {
        justify-content: center;
    }

    .staff-strength-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 60px;
    }

    .staff-strength-item:nth-child(3)::before {
        display: none;
    }
}

@media (max-width: 560px) {
    .staff-inner {
        width: min(100% - 28px, 520px);
    }

    .staff-members-section {
        padding: 58px 0 78px;
    }

    .staff-section-header {
        margin-bottom: 34px;
    }

    .staff-section-en {
        margin-bottom: 12px;
        font-size: 14px;
    }

    .staff-section-heading {
        font-size: 23px;
        line-height: 1.65;
    }

    .staff-card-grid {
        gap: 16px 12px;
    }

    .staff-card-image-wrap {
        aspect-ratio: 1 / 0.82;
    }

    .staff-card-body {
        min-height: 176px;
        padding: 12px 11px 27px;
    }

    .staff-card-role {
        min-width: 52px;
        min-height: 20px;
        margin-bottom: 7px;
        padding: 2px 8px;
        font-size: 10px;
    }

    .staff-card-name {
        font-size: 17px;
    }

    .staff-card-kana {
        font-size: 8px;
    }

    .staff-card-copy {
        margin-top: 7px;
        font-size: 11px;
        line-height: 1.65;
    }

    .staff-card-arrow {
        right: 8px;
        bottom: 6px;
        font-size: 20px;
    }

    .staff-detail {
        margin-top: 34px;
        padding: 14px;
        border-radius: 5px;
    }

    .staff-detail-image-wrap {
        width: 100%;
        aspect-ratio: 1 / 1.02;
    }

    .staff-detail-profile {
        padding: 2px 2px 18px;
    }

    .staff-detail-pickup {
        min-height: 27px;
        margin-bottom: 10px;
        padding: 4px 13px;
        font-size: 12px;
    }

    .staff-detail-name {
        font-size: 28px;
    }

    .staff-detail-copy {
        margin-top: 12px;
        font-size: 13px;
    }

    .staff-detail-information {
        gap: 12px;
    }

    .staff-detail-meta {
        grid-template-columns: 1fr;
        padding: 2px 18px;
    }

    .staff-detail-meta-row + .staff-detail-meta-row {
        border-top: 1px solid #eeeae1;
        border-left: 0;
        padding-left: 0;
    }

    .staff-detail-message {
        padding: 18px;
    }

    .staff-detail-message-text {
        font-size: 12px;
    }

    .staff-strength-section {
        padding: 70px 0 78px;
    }

    .staff-strength-grid {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .staff-strength-item {
        padding: 34px 16px;
    }

    .staff-strength-item:first-child {
        padding-top: 0;
    }

    .staff-strength-item:last-child {
        padding-bottom: 0;
    }

    .staff-strength-item + .staff-strength-item::before,
    .staff-strength-item:nth-child(3)::before {
        display: block;
        top: 0;
        right: 32px;
        bottom: auto;
        left: 32px;
        width: auto;
        height: 1px;
        background-image: linear-gradient(to right, #78756e 45%, transparent 45%);
        background-size: 9px 1px;
    }

    .staff-strength-icon {
        width: 82px;
        height: 82px;
        margin-bottom: 18px;
    }

    .staff-strength-title {
        font-size: 19px;
    }

    .staff-strength-description {
        max-width: 300px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .staff-card,
    .staff-card-image {
        transition: none;
    }

    .staff-detail-changing {
        animation: none;
    }
}


/*　　　　　　　　　　　　 会社概要ページ　　　　　　　　　　　 */

/* =========================================================
   会社概要ページ / slug: company
   すべての新規セレクタを company- で統一
   ========================================================= */

.company-page {
  --company-dark-green: #0d2a22;
  --company-gold: #b5944c;
  --company-gold-light: #e8dfca;
  --company-text: #2d2d2d;
  --company-muted: #6f6f6f;
  --company-line: #d9d5cc;
  --company-bg-beige: #f5f2eb;
  --company-white: #ffffff;
  --company-content-width: 1120px;
  color: var(--company-text);
  background: var(--company-white);
}

.company-page *,
.company-page *::before,
.company-page *::after {
  box-sizing: border-box;
}

.company-page img,
.company-page iframe {
  display: block;
  max-width: 100%;
}

.company-page a {
  color: inherit;
}

.company-page-header {
  /* page-headerの既存デザインをそのまま利用 */
}

.company-page-heading {
  /* page-headdingの既存デザインをそのまま利用 */
}

.company-breadcrumb {
  /* pankuzulistの既存デザインをそのまま利用 */
}

.company-main {
  overflow: hidden;
  background: var(--company-white);
}

.company-container {
  width: min(calc(100% - 48px), var(--company-content-width));
  margin-inline: auto;
}

.company-section-heading {
  max-width: 900px;
  margin: 0 auto 54px;
  text-align: center;
}

.company-section-en {
  margin: 0 0 18px;
  color: var(--company-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.company-section-title,
.company-content-title,
.company-profile-title,
.company-support-item-title {
  margin-top: 0;
  color: var(--company-text);
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
}

.company-section-title {
  margin-bottom: 22px;
  font-size: clamp(25px, 2.35vw, 34px);
  letter-spacing: 0.045em;
  line-height: 1.55;
}

.company-section-lead {
  margin: 0;
  color: #4d4d4d;
  font-size: 14px;
  letter-spacing: 0.035em;
  line-height: 2;
}

.company-pc-break {
  display: inline;
}

/* Welcome
--------------------------------------------------------- */
.company-welcome {
  padding: 92px 0 108px;
}

.company-welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: center;
}

.company-video-wrap {
  width: 100%;
}

.company-video-iframe,
.company-video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
}

.company-video-placeholder {
  display: grid;
  place-items: center;
  background: #d2d2d2;
}

.company-video-placeholder-text {
  color: #3d3d3d;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
}

.company-content-title {
  margin-bottom: 24px;
  font-size: clamp(23px, 2.15vw, 31px);
  letter-spacing: 0.035em;
  line-height: 1.55;
}

.company-content-text {
  color: #3f3f3f;
  font-size: 14px;
  letter-spacing: 0.025em;
  line-height: 1.95;
}

.company-content-text p {
  margin: 0;
}

.company-content-text p + p {
  margin-top: 2px;
}

/* Access
--------------------------------------------------------- */
.company-access {
  padding: 86px 0 94px;
  background: var(--company-bg-beige);
}

.company-access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: stretch;
}

.company-map-wrap {
  min-height: 510px;
  background: var(--company-white);
}

.company-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 510px;
  border: 0;
}

.company-profile-card {
  padding: 38px 48px 34px;
  border-top: 4px solid var(--company-gold);
  background: var(--company-white);
}

.company-profile-title {
  margin-bottom: 24px;
  font-size: clamp(20px, 1.45vw, 27px);
  letter-spacing: 0.035em;
  line-height: 1.65;
}

.company-profile-list {
  margin: 0;
}

.company-profile-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  column-gap: 20px;
  padding: 15px 0;
  border-top: 1px solid var(--company-line);
}

.company-profile-term,
.company-profile-description {
  margin: 0;
}

.company-profile-term {
  color: var(--company-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.company-profile-description {
  color: #3e3e3e;
  font-size: 13px;
  letter-spacing: 0.015em;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.company-profile-link {
  text-decoration: none;
}

.company-profile-link:hover,
.company-profile-link:focus-visible {
  color: var(--company-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.company-profile-separator {
  white-space: nowrap;
}

.company-license {
  margin-top: 38px;
  padding: 18px 24px;
  color: var(--company-white);
  background: var(--company-gold);
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 1.8;
  text-align: center;
}

/* Support
--------------------------------------------------------- */
.company-support {
  padding: 92px 0 118px;
  background: var(--company-white);
}

.company-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-top: 58px;
}

.company-support-item {
  position: relative;
  min-height: 150px;
  margin: 0;
  padding: 24px 38px 0 0;
}

.company-support-number {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  color: var(--company-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
}

.company-support-body {
  position: relative;
  z-index: 1;
}

.company-support-item-title {
  margin-bottom: 15px;
  font-size: 20px;
  letter-spacing: 0.025em;
  line-height: 1.5;
}

.company-support-text {
  margin: 0;
  color: #555555;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.85;
}

/* Tablet
--------------------------------------------------------- */
@media (max-width: 960px) {
  .company-welcome-grid {
    gap: 36px;
  }

  .company-access-grid {
    gap: 28px;
  }

  .company-profile-card {
    padding: 32px 30px 28px;
  }

  .company-profile-row {
    grid-template-columns: 116px minmax(0, 1fr);
    column-gap: 14px;
  }

  .company-support-grid {
    gap: 24px;
  }
}

/* Smartphone
--------------------------------------------------------- */
@media (max-width: 767px) {
  .company-container {
    width: min(calc(100% - 40px), var(--company-content-width));
  }

  .company-section-heading {
    margin-bottom: 38px;
  }

  .company-section-en {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .company-section-title {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.55;
  }

  .company-section-lead {
    font-size: 13px;
    line-height: 1.9;
    text-align: left;
  }

  .company-pc-break {
    display: none;
  }

  .company-welcome {
    padding: 64px 0 72px;
  }

  .company-welcome-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .company-video-iframe,
  .company-video-placeholder {
    aspect-ratio: 16 / 9;
  }

  .company-content-title {
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 1.55;
  }

  .company-content-text {
    font-size: 13px;
    line-height: 1.9;
  }

  .company-content-text br {
    display: none;
  }

  .company-content-text p + p {
    margin-top: 12px;
  }

  .company-access {
    padding: 64px 0 70px;
  }

  .company-access-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .company-map-wrap,
  .company-map-iframe {
    min-height: 340px;
  }

  .company-profile-card {
    padding: 28px 22px 22px;
  }

  .company-profile-title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .company-profile-row {
    grid-template-columns: 1fr;
    row-gap: 6px;
    padding: 13px 0;
  }

  .company-profile-term,
  .company-profile-description {
    font-size: 12px;
  }

  .company-license {
    margin-top: 24px;
    padding: 15px 16px;
    font-size: 11px;
    text-align: left;
  }

  .company-support {
    padding: 68px 0 82px;
  }

  .company-support-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 38px;
  }

  .company-support-item {
    min-height: 0;
    padding: 24px 56px 26px 0;
    border-bottom: 1px solid var(--company-line);
  }

  .company-support-item:last-child {
    border-bottom: 0;
  }

  .company-support-number {
    top: 18px;
    font-size: 54px;
  }

  .company-support-item-title {
    font-size: 19px;
  }
}

@media (max-width: 420px) {
  .company-container {
    width: min(calc(100% - 32px), var(--company-content-width));
  }

  .company-section-title {
    font-size: 22px;
  }

  .company-content-title {
    font-size: 20px;
  }

  .company-map-wrap,
  .company-map-iframe {
    min-height: 300px;
  }
}


/* 　　　　　　初めての方へ　　　　　　　 */
/* =========================================================
   初めての方へ / beginner
   既存の style.css の末尾へ追記してください。
   ========================================================= */

.beginner-page {
  --beginner-green: #0c2b23;
  --beginner-green-deep: #09241d;
  --beginner-gold: #b5985c;
  --beginner-gold-light: #d8c79d;
  --beginner-ink: #2f302c;
  --beginner-muted: #6f706b;
  --beginner-ivory: #faf8f2;
  --beginner-line: #d7d2c8;
  --beginner-white: #ffffff;
  color: var(--beginner-ink);
  overflow: hidden;
}

.beginner-page *,
.beginner-page *::before,
.beginner-page *::after {
  box-sizing: border-box;
}

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

.beginner-page .page-header {
  display: flex;
  align-items: center;
  min-height: 210px;
  margin: 0;
  padding: 40px max(24px, calc((100vw - 1180px) / 2));
  background: var(--beginner-green-deep);
}

.beginner-page .page-headding {
  position: relative;
  margin: 0;
  padding-bottom: 18px;
  color: var(--beginner-white);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.beginner-page .page-headding::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 86px;
  height: 2px;
  background: var(--beginner-gold);
  content: "";
}

.beginner-page .pankuzulist {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0;
  color: #77786f;
  font-size: 12px;
}

.beginner-content {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 15px;
  line-height: 1.9;
}

.beginner-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}


.beginner-br-pc {
  display: inline;
}

.beginner-section-label {
  margin: 0 0 8px;
  color: var(--beginner-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.beginner-section-label--center {
  text-align: center;
}

.beginner-section-heading {
  text-align: center;
}

.beginner-section-heading__title {
  margin: 0;
  color: var(--beginner-ink);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.beginner-section-heading__accent {
  margin-left: 0.14em;
  color: var(--beginner-gold);
  font-size: 1.12em;
}

.beginner-section-heading__text {
  margin: 20px 0 0;
  color: #55564f;
  font-size: 14px;
  line-height: 1.9;
}

.beginner-section-heading__ornament {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  margin: 18px 0 0;
  color: var(--beginner-gold);
}

.beginner-section-heading__ornament::before,
.beginner-section-heading__ornament::after {
  width: 42px;
  height: 1px;
  background: var(--beginner-gold-light);
  content: "";
}

.beginner-section-heading__ornament::before {
  margin-right: 10px;
}

.beginner-section-heading__ornament::after {
  margin-left: 10px;
}

.beginner-section-heading__ornament {
  font-family: Georgia, serif;
}

.beginner-section-heading__ornament::marker {
  content: "";
}

.beginner-section-heading__ornament {
  font-size: 0;
}

.beginner-section-heading__ornament::before,
.beginner-section-heading__ornament::after {
  flex: 0 0 auto;
}

.beginner-section-heading__ornament::before {
  box-shadow: 52px 0 0 -20px var(--beginner-gold);
}

/* Concept intro */
.beginner-intro {
  padding: 108px 0 118px;
  background: var(--beginner-white);
}

.beginner-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
}

.beginner-intro__title {
  margin: 0;
  color: var(--beginner-ink);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(27px, 2.6vw, 39px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.55;
}

.beginner-intro__text {
  margin: 26px 0 0;
  color: #4d4e49;
  font-size: 14px;
  line-height: 2.1;
}

.beginner-intro__figure {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 18px 18px 0 0;
}

.beginner-intro__frame {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  border: 1px solid var(--beginner-gold);
}

.beginner-intro__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* 売却方法 */
.beginner-method {
  position: relative;
  isolation: isolate;
  padding: 88px 0 96px;
  background: #f8f6f1;
}

.beginner-method__background,
.beginner-method__overlay {
  position: absolute;
  z-index: -2;
  inset: 0 0 auto;
  width: 100%;
  height: 360px;
}

.beginner-method__background {
  object-fit: cover;
  object-position: center;
}

.beginner-method__overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(250, 248, 242, 0.3) 0%, rgba(250, 248, 242, 0.82) 68%, #f8f6f1 100%);
}

.beginner-method__heading {
  margin-bottom: 46px;
}

.beginner-method__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.beginner-method-card {
  position: relative;
  padding: 20px 22px 28px;
  border: 1px solid rgba(181, 152, 92, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 24px rgba(51, 49, 42, 0.08);
}

.beginner-method-card__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 10px 18px;
  background: #f1eee7;
}

.beginner-method-card--brokerage .beginner-method-card__title-wrap {
  background: #edf0e9;
}

.beginner-method-card__emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 14px;
  border: 1px solid var(--beginner-gold);
  border-radius: 50%;
  color: var(--beginner-gold);
  font-family: "Noto Serif JP", serif;
  font-size: 9px;
  line-height: 1;
}

.beginner-method-card__title {
  margin: 0;
  color: #4b4c47;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.beginner-method-card__definition {
  margin: 24px 0 18px;
  text-align: center;
  font-size: 13px;
}

.beginner-method-card__balloon {
  position: relative;
  width: min(82%, 360px);
  margin: 0 auto 30px;
  padding: 15px 20px;
  border-radius: 14px;
  background: #d9856d;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  text-align: center;
}

.beginner-method-card--brokerage .beginner-method-card__balloon {
  background: #6fa5a1;
}

.beginner-method-card__balloon::after {
  position: absolute;
  top: 100%;
  left: 50%;
  border-top: 12px solid #d9856d;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  content: "";
  transform: translateX(-50%);
}

.beginner-method-card--brokerage .beginner-method-card__balloon::after {
  border-top-color: #6fa5a1;
}

.beginner-method-card__diagram {
  display: grid;
  grid-template-columns: minmax(70px, 1fr) auto minmax(70px, 1fr);
  align-items: center;
  min-height: 180px;
  padding: 24px 18px;
  border: 1px solid #e6e2da;
  background: #fff;
}

.beginner-method-card--brokerage .beginner-method-card__diagram {
  grid-template-columns: minmax(62px, 1fr) auto minmax(62px, 1fr) auto minmax(62px, 1fr);
}

.beginner-method-card__person {
  min-width: 0;
  color: #68736c;
  text-align: center;
}

.beginner-method-card__person svg {
  width: 66px;
  height: 58px;
  margin: 0 auto 10px;
}

.beginner-method-card__person-label {
  display: block;
  color: #4b4c47;
  font-size: 11px;
  line-height: 1.55;
}

.beginner-method-card__arrow {
  padding: 0 8px;
  color: var(--beginner-gold);
  font-size: 25px;
  line-height: 1;
}

.beginner-method-card__arrow--double {
  font-size: 31px;
}

/* 売却フロー */
.beginner-flow {
  padding: 110px 0 130px;
  background: var(--beginner-white);
}

.beginner-flow__heading {
  margin-bottom: 62px;
}

.beginner-flow__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 6vw, 84px);
}

.beginner-flow-card {
  padding: 30px 44px 62px;
  border-top: 4px solid var(--beginner-gold);
  border-right: 1px solid var(--beginner-gold);
  border-bottom: 1px solid var(--beginner-gold);
  border-left: 1px solid var(--beginner-gold);
  background: #fff;
}

.beginner-flow-card__title {
  margin: 0 0 22px;
  color: #393a36;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
}

.beginner-flow-card__list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.beginner-flow-card__list::before {
  position: absolute;
  top: 17px;
  bottom: 16px;
  left: 17px;
  width: 1px;
  background: var(--beginner-gold);
  content: "";
}

.beginner-flow-card__item {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 16px;
  padding: 0 0 18px;
}

.beginner-flow-card__item:last-child {
  padding-bottom: 0;
}

.beginner-flow-card__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--beginner-gold);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 10px;
  line-height: 1;
}

.beginner-flow-card__body {
  min-width: 0;
  padding: 0 0 18px;
  border-bottom: 1px solid #aaa9a2;
}

.beginner-flow-card__item:last-child .beginner-flow-card__body {
  border-bottom: 0;
}

.beginner-flow-card__item-title {
  margin: 0 0 7px;
  color: #343531;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.beginner-flow-card__item-text,
.beginner-flow-card__details {
  margin: 0;
  color: #565752;
  font-size: 12px;
  line-height: 1.75;
}

.beginner-flow-card__details {
  padding: 0;
  list-style: none;
}

.beginner-flow-card__detail {
  position: relative;
  padding-left: 1em;
}

.beginner-flow-card__detail::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

/* 私たちの考え方 */
.beginner-concepts {
  position: relative;
  isolation: isolate;
  padding: 104px 0 130px;
  background: var(--beginner-ivory);
}

.beginner-concepts__background,
.beginner-concepts__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.beginner-concepts__background {
  object-fit: cover;
  object-position: top center;
  opacity: 0.34;
}

.beginner-concepts__overlay {
  z-index: -1;
  background: rgba(250, 248, 242, 0.79);
}

.beginner-concepts__heading {
  margin-bottom: 58px;
}

.beginner-concepts__list {
  display: grid;
  gap: 36px;
}

.beginner-concept-card {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: 360px;
  border: 1px solid rgba(126, 121, 106, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 22px rgba(46, 45, 40, 0.08);
}

.beginner-concept-card--reverse .beginner-concept-card__figure {
  order: 2;
}

.beginner-concept-card--reverse .beginner-concept-card__body {
  order: 1;
}

.beginner-concept-card__figure {
  position: relative;
  min-width: 0;
  margin: 0;
  background: #ecebe6;
}

.beginner-concept-card__image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.beginner-concept-card__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 92%;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.88);
  color: #5f605a;
  font-size: 10px;
  line-height: 1.5;
}

.beginner-concept-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(32px, 4vw, 58px);
}

.beginner-concept-card__number {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 10px;
  color: var(--beginner-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.beginner-concept-card__number::after {
  width: 54px;
  height: 1px;
  background: var(--beginner-gold);
  content: "";
}

.beginner-concept-card__title {
  margin: 0;
  color: #33342f;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.beginner-concept-card__text {
  margin: 20px 0 0;
  color: #50514b;
  font-size: 13px;
  line-height: 2;
}

.beginner-concept-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.beginner-concept-card__tag {
  padding: 7px 12px;
  border: 1px solid var(--beginner-gold-light);
  border-radius: 999px;
  color: #756946;
  font-size: 10px;
  line-height: 1.3;
}

@media screen and (max-width: 1100px) {
  .beginner-flow-card {
    padding-inline: 30px;
  }

  .beginner-concept-card__body {
    padding: 36px;
  }
}

@media screen and (max-width: 959px) {
  .beginner-page .page-header {
    min-height: 160px;
    padding-inline: 24px;
  }

  .beginner-container,
  .beginner-page .pankuzulist {
    width: min(100% - 40px, 760px);
  }

  .beginner-intro {
    padding: 76px 0 84px;
  }

  .beginner-intro__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .beginner-intro__figure {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .beginner-method {
    padding: 72px 0 80px;
  }

  .beginner-method__grid,
  .beginner-flow__grid {
    grid-template-columns: 1fr;
  }

  .beginner-method__grid {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .beginner-flow {
    padding: 82px 0 94px;
  }

  .beginner-flow__grid {
    width: min(700px, 100%);
    margin-inline: auto;
    gap: 44px;
  }

  .beginner-concepts {
    padding: 82px 0 96px;
  }

  .beginner-concept-card,
  .beginner-concept-card--reverse {
    grid-template-columns: 1fr;
  }

  .beginner-concept-card .beginner-concept-card__figure,
  .beginner-concept-card--reverse .beginner-concept-card__figure {
    order: 1;
  }

  .beginner-concept-card .beginner-concept-card__body,
  .beginner-concept-card--reverse .beginner-concept-card__body {
    order: 2;
  }

  .beginner-concept-card__image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media screen and (max-width: 767px) {
  .beginner-content {
    font-size: 14px;
  }

  .beginner-page .page-header {
    min-height: 134px;
  }

  .beginner-page .page-headding {
    padding-bottom: 13px;
    font-size: 29px;
  }

  .beginner-page .page-headding::after {
    width: 62px;
  }

  .beginner-page .pankuzulist {
    padding-block: 13px;
  }

  .beginner-container,
  .beginner-page .pankuzulist {
    width: calc(100% - 32px);
  }

  .beginner-section-heading__title {
    font-size: 25px;
    letter-spacing: 0.03em;
  }

  .beginner-section-heading__text {
    margin-top: 15px;
    font-size: 13px;
  }

  .beginner-intro {
    padding: 58px 0 66px;
  }

  .beginner-intro__inner {
    gap: 34px;
  }

  .beginner-intro__title {
    font-size: 24px;
  }

  .beginner-intro__text {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.9;
  }

  .beginner-intro__figure {
    padding: 12px 12px 0 0;
  }

  .beginner-intro__frame {
    width: calc(100% - 12px);
    height: calc(100% - 12px);
  }

  .beginner-method {
    padding: 58px 0 62px;
  }

  .beginner-method__background,
  .beginner-method__overlay {
    height: 280px;
  }

  .beginner-method__heading {
    margin-bottom: 32px;
  }

  .beginner-method-card {
    padding: 14px 14px 20px;
  }

  .beginner-method-card__title-wrap {
    min-height: 52px;
  }

  .beginner-method-card__title {
    font-size: 19px;
  }

  .beginner-method-card__definition {
    margin-top: 18px;
  }

  .beginner-method-card__balloon {
    width: min(94%, 340px);
    padding: 13px 14px;
    font-size: 13px;
  }

  .beginner-method-card__diagram {
    padding: 20px 10px;
  }

  .beginner-method-card__person svg {
    width: 54px;
    height: 50px;
  }

  .beginner-method-card__arrow {
    padding-inline: 3px;
    font-size: 20px;
  }

  .beginner-flow {
    padding: 64px 0 76px;
  }

  .beginner-flow__heading {
    margin-bottom: 38px;
  }

  .beginner-flow-card {
    padding: 24px 20px 38px;
  }

  .beginner-flow-card__title {
    font-size: 23px;
  }

  .beginner-flow-card__item-title {
    font-size: 16px;
  }

  .beginner-concepts {
    padding: 64px 0 76px;
  }

  .beginner-concepts__heading {
    margin-bottom: 40px;
  }

  .beginner-concepts__list {
    gap: 24px;
  }

  .beginner-concept-card__body {
    padding: 28px 22px 32px;
  }

  .beginner-concept-card__title {
    font-size: 22px;
  }

  .beginner-concept-card__text {
    margin-top: 16px;
    font-size: 12.5px;
    line-height: 1.9;
  }

  .beginner-concept-card__caption {
    font-size: 9px;
  }
}

@media screen and (max-width: 560px) {
  .beginner-method-card--brokerage .beginner-method-card__diagram {
    grid-template-columns: minmax(54px, 1fr) auto minmax(54px, 1fr) auto minmax(54px, 1fr);
  }

  .beginner-method-card__person-label {
    font-size: 9px;
  }

  .beginner-method-card__arrow {
    padding: 0;
    font-size: 17px;
  }

  .beginner-flow-card__item {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
  }

  .beginner-flow-card__list::before {
    left: 15px;
  }

  .beginner-flow-card__number {
    width: 30px;
    height: 30px;
    font-size: 9px;
  }
}

@media screen and (max-width: 767px) {
  .beginner-br-pc {
    display: none;
  }
}
