/* ========== Reset CSS ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfd, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

html, body {
  width: 100%;
  height: auto;
  scroll-behavior: smooth;
	
}

body {
  line-height: 1;
  font-family: 'Noto Serif JP', serif;
  color: #251713;
  background-color: #fff;
	padding-top: 70px;
}

:target {
  scroll-margin-top: 90px; /* ★ここに固定ヘッダーの「高さ」の数値を指定します */
}


ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table th{
  font-weight: 600 !important;
  text-align: center !important;
  padding: 24px !important;
}

table td{
  font-weight: 400 !important;
  text-align: center !important;
  padding: 16px !important;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Hover: よりふわっと上がるアニメーション */
a {
  display: inline-block;
  transition: transform 0.36s cubic-bezier(.2,.8,.2,1), box-shadow 0.36s cubic-bezier(.2,.8,.2,1), filter 0.2s ease, opacity 0.2s ease;
  will-change: transform, box-shadow, opacity;
  transform-origin: center bottom;
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
/*  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 24px rgba(37,23,19,0.08);
  filter: brightness(0.985);
*/  opacity: 0.8;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

:root {
  --1: #573F00;
}

/* ========== Typography ========== */
h1{
  font-size: 3.6em;
  background: linear-gradient(to bottom, #6F5000, #2B1F00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  padding: 8px 0;
}

h2 {
  font-size: 38px;
  color: var(--1, #573F00);
  font-weight: 400;
  margin-left: 8px !important;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  color: #251713;
  font-weight: 400;
  text-align: left;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

h4:last-of-type {
  margin-bottom: 0;
}

/* Section description p tags */
.sec-description {
  font-size: 18px;
  line-height: 1.7;
  width: 100%;

  /* padding-left: 24px;
  padding-right: 24px; */
}

.pc_only{
	display:block !important;
}

.sp_only{
	display:none !important;
}

@media (max-width: 768px) {
	.pc_only{
	  display:none !important;
	}

	.sp_only{
	  display:block !important;
	}

  table th{
    font-weight: 600 !important;
    text-align: center !important;
    padding: 16px !important;
  }

  table td{
    font-weight: 400 !important;
    text-align: center !important;
    padding: 10px !important;
  }
}


/* ---  header ナビ ベース・PC時スタイル（960px以上） --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}
.header-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo a {
  font-weight: bold;
  color: #333;
  text-decoration: none;
	width: 180px;
}


.header-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px; /* 20pxから広げ、要素間に知的な余白（空間）を確保 */
  align-items: center;
  margin: 0;
  padding: 0;
}

/* 通常のナビゲーション項目（リンク） */
.nav-item a {
  font-family: 'Noto Serif JP', serif; /* 美しい明朝体に変更して知性を演出 */
  color: #573F00;                     /* メインの深いブロンズカラー */
  text-decoration: none;
  font-size: 14px;                    /* 15pxから少しシャープに */
  font-weight: 500;
  letter-spacing: 0.12em;             /* 文字間隔を広げてスタイリッシュに */
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

/* 通常リンクのホバーエフェクト（下部から極細のゴールド線がじわっと広がる） */
.nav-item a:not(.btn-contact)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px; /* 極細 */
  background-color: #9E824A; /* アースゴールド */
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-item a:not(.btn-contact):hover {
  color: #9E824A;
}

.nav-item a:not(.btn-contact):hover::after {
  width: 100%;
  left: 0;
}


/* ==========================================
   無料相談ボタン（フローティング・直角ゴールド）
========================================== */
.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #573F00 !important; /* ボタンのベースを深いブロンズにして重厚感を */
  color: #ffffff !important;
  font-family: 'Noto Serif JP', serif !important;
  font-size: 13.5px !important;
  font-weight: 500;
  letter-spacing: 0.15em !important;    /* 贅沢なレタースペース */
  padding: 12px 28px !important;        /* 上下左右の余白を広げて品格を上げる */
  border-radius: 0px !important;        /* 4pxの丸みを廃止し、圧倒的にシャープな「直角」へ */
  border: 1px solid #9E824A !important; /* 繊細なアースゴールドの1px枠線 */
  box-shadow: 0 4px 12px rgba(87, 63, 0, 0.08);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* ホバーした瞬間にゴールドの光がスッと背景を走るエフェクト */
.btn-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c5a059 0%, #9E824A 100%); /* シャンパンゴールド */
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-contact:hover {
  color: #ffffff !important;
  border-color: #c5a059 !important;
  box-shadow: 0 6px 20px rgba(158, 130, 74, 0.25);
  transform: translateY(-1px); /* わずかに浮かび上がる知的な動的エフェクト */
}

.btn-contact:hover::before {
  transform: scaleX(1); /* 左から滑らかにゴールドへ切り替わる */
}
/* ハンバーガーボタンはPCでは非表示 */
.menu-trigger {
  display: none;
}

/* --- スマートフォン時スタイル（959px以下） --- */
@media screen and (max-width: 959px) {
  /* ボタンの配置と三本線の構築 */
  .menu-trigger {
    display: block;
    position: relative;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s;
  }
  .menu-trigger span:nth-child(1) { top: 0; }
  .menu-trigger span:nth-child(2) { top: 11px; }
  .menu-trigger span:nth-child(3) { bottom: 0; }

  /* 活性時（×に変形） */
  .is-active .menu-trigger span:nth-child(1) { transform: translateY(11px) rotate(-45deg); }
  .is-active .menu-trigger span:nth-child(2) { opacity: 0; }
  .is-active .menu-trigger span:nth-child(3) { transform: translateY(-11px) rotate(45deg); }

  /* SP時のメニュー（初期状態は非表示/画面外） */
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* 活性時（メニュー表示） */
  .is-active .header-nav {
    opacity: 1;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .nav-item a {
    font-size: 20px;
  }
}



/* ========== Fade-in Animation ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-target {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-target.fade-in {
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes borderSlideIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* Section Title Container */

/* ========== FV 新構成 ========== */

/* 背景写真の上に重ねるコンテナ兼コンテンツ幅制御 */
.fv-inner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 1;
}

/* ① h1 画像 */
.fv-heading {
  margin: 0;
  line-height: 0;
  width: 100%;
}
.fv-heading picture {
  display: block;
}
.fv-heading img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
}


/* ③ ヒーロー写真 + バッジ */
.fv-hero {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .fv-hero {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  }
}

/* SP: 通常フローで自然な高さ表示 */
.fv-hero picture {
  display: block;
  width: 100%;
  height: 100%;
}
.fv-hero__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


@media (max-width: 768px) {
  .fv-hero {
    -webkit-mask-image: none;
    mask-image: none;
  }
}
.fv-badges {
  display: flex;
  gap: 40px;
  justify-content: center;
  width: 100%;
}
.fv-badges img {
  width: 30%;
  max-width: 200px;
}

@media (max-width: 1024px) and (min-width: 600px) {
  .fv-heading img {
    max-width: 520px;
    margin: 48px auto 24px;
  }
  .fv-badges img {
    max-width: 160px;
  }
  .fv-badges {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .fv-heading img {
          margin: 40px auto 10px;
    }
*/
  .fv-badges {
    gap: 8px;
    width: 100%;
  }
}


.sec-title {
    position: relative;
    width: 100%;
	text-align: center;
    padding:5px 0 30px 0;
    /*margin-bottom: 40px; */
}

.sec-title h2 {
    font-size: 32px; /* 少しシャープに */

    font-weight: 500; /* 400だと細すぎる場合があるので500で洗練された太さに */
    letter-spacing: 0.1em; /* 文字間隔を広げてスタイリッシュに（最重要） */
    line-height: 1.3;
    margin: 0 !important;
}

/* 英語のサブタイトルを添えることで一気にスタイリッシュになります */
.sec-title .en-sub {
    display: block;
    font-size: 11px;
    color: #9E824A; /* 少し明るい品のあるゴールド */
    letter-spacing: 0.25em;
    /*font-weight: 600;*/
    margin-top: 6px;
    font-family: 'Cinzel', 'Times New Roman', serif; /* セリフ体を使うとより高級感が出ます */
}

.sec-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:#573F00;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .8s ease;

}

.sec-title.fade-in::after{
    transform:scaleX(1);

}


@media (max-width: 768px) {
.sec-title h2 {
    font-size: 24px;
}
}

.cta-btn{
  width: 90%;
  max-width: 430px;
}

/* ========== FV Section ========== */
.sec-fv {
  padding: 0 !important;
  height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) and (min-width: 600px) {
  .sec-fv {
    height: auto;
  }
  .fv-hero {
    min-height: 45vw;
  }
}

@media (max-width: 768px) {
  .sec-fv {
    height: auto;
    background: linear-gradient(to bottom, #fcfbf9, #ffffff);
  }
}

/* .sec-fv__bg {
  background: url(../images/FV_bg_pc.jpg) center/cover no-repeat;
} */

.sec-fv__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 37px 16px 64px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 39px;
}

.sec-fv__inner .sec-img {
  width: 100%;
  display: block;
}



/* SP */
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-left: 8px !important;
  }

  h4 {
    font-size: 18px;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .sec-fv__inner {
    max-width: 100%;
    padding: 4px 0 44px 0;
    gap: 39px;
  }

  .sec-sec01__inner {
    max-width: 95%;
    padding: 30px 0px;
    gap: 20px;
  }

  .sec-sec02__inner {
    max-width: 100%;
    padding: 30px 20px;
    gap: 20px;
  }

  .sec-sec03__inner {
    max-width: 100%;
    padding: 30px 20px;
    gap: 20px;
  }

  .sec-sec04__inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 20px;
  }

  .sec-sec04__inner > picture {
    margin-left: 0;
  }

  .sec-sec05__inner {
    padding: 30px 20px;
    gap: 20px;
  }

  .sec-sec06__inner {
    padding: 30px 20px;
    gap: 40px;
  }

  .sec-sec06__block {
    gap: 20px;
  }

  .sec-sec06__block > h4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sec-sec07__inner {
    padding: 30px 20px;
    gap: 20px;
  }

  .sec-sec08__inner {
    padding: 30px 20px;
    gap: 20px;
  }

  .sec-sec09__inner {
    padding: 30px 20px;
    gap: 20px;
  }

  .sec-img--button {
    max-width: 90vw !important;
  }

  .cta-btn{
  align-self: center;
  }

}

/* ========== sec01 Section (ブラッシュアップ版) ========== */
.sec-sec01 {
  width: 100%;
}

.sec-sec01__bg {
  /* 新しいプレミアムなアースゴールド系の背景画像へ変更（※画像ファイルを差し替えてください） */
  background: url(../images/sec01_bg_new.jpg) center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* サイト全体の「直線の美学」に調和する、極細のゴールド水平線を上下に配置（任意） */
/* .sec-sec01__bg::before, */
.sec-sec01__bg::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #FAF8F3 0%, #E5E0D5 50%, #FAF8F3 100%);
  opacity: 0.6;
  z-index: 2;
}
.sec-sec01__bg::before { top: 0; }
.sec-sec01__bg::after { bottom: 0; }

.sec-sec01__inner {
  max-width: 1100px; /* 1000pxから少し広げて贅沢な余白に */
  width: 100%;
  margin: 0 auto;
  padding: 100px 24px; /* 80pxから広げ、ゆったりとした高級感のある空気感に */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px; /* 40pxから広げ、各要素に知的な距離感を */
  position: relative;
  z-index: 3;
}

.sec-sec01__inner .sec-img {
  width: 100%;
  display: block;
}

/* メイングラフィックの周囲に知的な余白を持たせる */
.sec-sec01__inner picture {
  margin-bottom: 20px;
}

/* テキスト部分（圧倒的な知性と品格） */
.sec-sec01__text {
  text-align: center;
  max-width: 800px; /* 700pxから広げ、ゆったりとした読み心地に */
  font-family: 'Noto Serif JP', serif; /* 美しい明朝体 */
  font-size: 20px !important;
  font-weight: 400 !important;
  color: #2B1F00 !important; /* 真っ黒ではなく、深いブロンズチャコールへ */
  line-height: 1.9; /* 1.5から広げ、ゆったりとした読み心地と知性を表現（最重要） */
  letter-spacing: 0.12em; /* 文字間隔を広げてスタイリッシュに（最重要） */
  margin: 0 !important;
}

/* --- SP (レスポンシブ) --- */
@media (max-width: 768px) {
  .sec-sec01__bg {
    background-image: url(../images/sec01_bg_new_sp.jpg); /* スマホ用背景画像 */
  }

  .sec-sec01__inner {
    max-width: 95%;
    gap: 30px; /* 20pxから少し広げる */
    padding: 50px 0; /* 30pxから少し広げる */
  }

  .sec-sec01__text {
    font-size: 16px !important; /* 18pxから少しシャープに */
    line-height: 1.8; /* スマホでも広めの行間を維持 */
    letter-spacing: 0.08em; /* スマホではレタースペースを少し凝縮 */
  }
}

/* ========== sec02 Section ========== */
.sec-sec02__bg {
  background-color: #FFFDFD;
}

.sec-sec02__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sec-sec02__inner > h4 {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

.sec-sec02__inner > .sec-img,
.sec-sec02__inner > picture {
  align-self: center;
}


.sec-sec02__inner .sec-img {
  width: 100%;
  display: block;
  max-width: 800px;
}

/* SP */
@media (max-width: 768px) {
  .sec-sec02__inner {
    max-width: 95%;
    gap: 20px;
    padding: 30px 0px;
  }
}

/* ========== sec03 Section ========== */
.sec-sec03__bg {
  background: url(../images/sec03_bg_pc.jpg) center/cover no-repeat;
}

.sec-sec03__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sec-sec03__inner .sec-img {
  width: 100%;
  display: block;
}

.sec-sec03__inner .sec-img--button {
  max-width: 50vw;
}

.sec-sec03__inner > h4 {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

/* SP */
@media (max-width: 768px) {
  .sec-sec03__inner {
    max-width: 95%;
    padding: 40px 0px;
    gap: 20px;
  }
}

/* ========== sec04 Section ========== */
.sec-sec04__bg {
  background: url(../images/sec04_bg_pc.jpg) center/cover no-repeat;
}

.sec-sec04__inner {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
  padding: 80px 16px;
/*  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: -80px;*/
}

.sec-sec04__content {
  flex: 1;
  display: flex;
  flex-direction: column;
/*  max-width: 600px;*/
  gap: 20px;
}

.sec-sec04__content > h4 {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

.sec-sec04__inner > picture {
  flex: 0 0 auto;
  margin-left: -80px;
}

.sec-sec04__inner .sec-img {
  width: 100%;
  display: block;
}

/* SP */
@media (max-width: 768px) {
  .sec-sec04__inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 0px;
  }

  .sec-sec04__inner > picture {
    margin-left: 0;
  }
}

/* ========== sec05 Section ========== */
.sec-sec05__bg {
  background-color: #ffffff;
}

.sec-sec05__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sec-sec05__inner > h4 {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

.sec-sec05__inner .sec-img {
  width: 100%;
  display: block;
}

/* SP */
@media (max-width: 768px) {
  .sec-sec05__inner {
    max-width: 95%;
    gap: 20px;
    padding: 30px 0px;
  }
}

/* ========== sec06 Section ========== */
.sec-sec06__bg {
  background: linear-gradient(to bottom, #F9F6EE, #ffffff);
}

.sec-sec06__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sec-sec06__block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sec-sec06__block > h4 {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

.sec-sec06__block .sec-img {
  width: 100%;
  display: block;
}

/* SP */
@media (max-width: 768px) {
  .sec-sec06__inner {
    max-width: 95%;
    padding: 40px 0px;
    gap: 40px;
  }

}

/* ========== sec07 Section ========== */
.sec-sec07__bg {
  background: url(../images/sec07_bg_pc.jpg) center/cover no-repeat;
}

.sec-sec07__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sec-sec07__inner > h4 {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

.sec-sec07__inner .sec-img {
  width: 100%;
  display: block;
}

.sec-sec07__inner .sec-img--button {
  max-width: 50vw;
}

/* SP */
@media (max-width: 768px) {
  .sec-sec07__inner {
    max-width: 95%;
    gap: 20px;
    padding: 30px 0px;
  }
}

/* ========== sec08 Section ========== */
.sec-sec08__bg {
  background-color: #ffffff;
}

.sec-sec08__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.sec-sec08__inner .sec-img {
  width: 100%;
  display: block;
}

/* SP */
@media (max-width: 768px) {
  .sec-sec08__inner {
    max-width: 95%;
    gap: 20px;
    padding: 30px 0px;
  }
}

/* ========== sec09 Section ========== */
.sec-sec09__bg {
  background-color: rgba(233, 227, 210, 0.63);
}

.sec-sec09__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sec-sec09__inner > h4 {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

.sec-sec09__form {
  width: 100%;
  max-width: 600px;
}

.sec-sec09__inner .sec-img {
  width: 100%;
  display: block;
}

.sec-sec09__inner .sec-img--button {
  max-width: 50vw;
}

/* SP */
@media (max-width: 768px) {
  .sec-sec09__inner {
    max-width: 95%;
    gap: 20px;
    padding: 30px 0px;
  }
}

/* ========== sec02 Content Detail ========== */
.sec02-content__container {
  width: 100%;

  margin: 0 auto;
	padding:24px 0;
}

.sec02-content__section {
  background: rgba(233, 227, 210, 0.34);
  padding: 40px;
  position: relative;
  border-radius: 8px;
}

.sec02-content__divider {
    height: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 40px;
    background: white;
    position: relative;
}

/* 左から伸びる繊細なゴールドの水平線 */
.sec02-content__divider::before {
    content: "";
    position: absolute;
    left: 40px;
    width: 100px; /* 線の長さ（サイトに合わせて調整してください） */
    height: 1px;  /* 極細にするのがスタイリッシュの基本 */
    background: linear-gradient(to right, #573F00, #c5a059);
}

/* 先端に輝くミニマルなひし形（ダイヤモンド）アクセント */
.sec02-content__triangle {
    width: 6px;
    height: 6px;
    background-color: #c5a059;
    /* 元々左から100pxの線が伸びているので、その先端にぴったり配置 */
    margin-left: 100px; 
    transform: rotate(45deg); /* 正方形を45度傾けてひし形に */
    box-shadow: 0 0 4px rgba(197, 160, 89, 0.4);
}






.sec02-content__title {
  font-size: 24px;
  color: #333;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.sec02-content__title span:not(.sec02-content__number) {
  font-size: 1.2em;
}

.sec02-content__number {
  font-size: 36px;
  font-style: italic;
  color: #573F00;
  font-weight: 300;
  margin-right: 20px;
  line-height: 1;
}

.sec02-content__text {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.sec02-content__text p {
  margin: 0;
}

.sec02-content__footnote {
  background: white;
  padding: 30px 40px;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  border-top: 1px solid #e0e0e0;
}

.sec02-content__footnote p {
  margin: 0;
}

/* SP */
@media (max-width: 768px) {
  .sec02-content__container {
    width: 100%;
    padding: 0;
  }

  .sec02-content__section {
    padding: 30px 20px;
  }

  .sec02-content__divider {
    padding-left: 20px;
  }

  .sec02-content__title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .sec02-content__number {
    font-size: 36px;
    margin-right: 15px;
  }

  .sec02-content__text {
    font-size: 14px;
    line-height: 1.7;
  }

  .sec02-content__footnote {
    padding: 20px;
    font-size: 14px;
  }
}


/* ========== sec03 Comparison Table (横スクロール維持版) ========== */
.comparison-container {
  width: 100%;
}

.comparison-table {
  width: 100%;
  margin: 3% auto 0 auto;
  border-collapse: collapse; /* 隙間をなくし、一体感のあるモダンな1枚の表に */
  background-color: #ffffff;
  font-family: 'Noto Serif JP', serif; /* 格調高い明朝体 */
}

/* すべてのセル共通 */
.comparison-table th,
.comparison-table td {
  padding: 30px;
  text-align: center;
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid #E5E0D5; /* 繊細な1pxのアースグレー線 */
  letter-spacing: 0.05em;
}

/* ヘッダー行 (thead th) */
.comparison-table thead th {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #573F00; /* 下部を深いブロンズで引き締める */
  vertical-align: middle;
}

/* 左上セル（空白） */
.comparison-table thead th:nth-child(1) {
  border: none;
  background-color: transparent;
}

/* 中央列：従来のサービス */
.comparison-table thead th:nth-child(2) {
  background: #FAF8F3;
  color: #573F00;
  font-weight: 500;
}

/* 右列：Logistic Legal Dock */
.comparison-table thead th:nth-child(3) {
  background: linear-gradient(135deg, #c5a059 0%, #9E824A 50%, #573F00 100%);
  color: white;
  font-weight: 600;
}

/* --- ボディ行 (tbody td) --- */

/* 左列（カテゴリー） */
.comparison-table td:nth-child(1) {
  font-weight: 600;
  color: #573F00;
  text-align: left;
  padding-left: 30px;
  background-color: #FDFCF7;
  border-bottom: 1px solid #F0EFEA;
}

/* 中央列：従来のサービス (トーンを落とす) */
.comparison-table td:nth-child(2) {
  background: #ffffff;
  color: #666;
  font-weight: 400;
}

/* 右列：Logistic Legal Dock */
.comparison-table td:nth-child(3) {
  background: #FDFCF7;
  color: #2B1F00;
  font-weight: 600;
}

/* 行ホバー時の上品なインタラクション */
.comparison-table tbody tr {
  transition: background-color 0.25s ease;
}
.comparison-table tbody tr:hover td {
  background-color: #FAF8F2 !important;
}

/* --- 注釈 (comparison-footnote) --- */
.comparison-footnote {
  padding: 30px 0;
  font-size: 13px;
  color: #888;
  line-height: 1.8;
  margin: 0 auto;
  text-align: left;
  font-family: 'Noto Serif JP', serif;
  width: 100%; /* 横スクロール枠と幅を揃える */
  border-top: 1px solid #E5E0D5;
}

.comparison-footnote p {
  margin: 0;
}

/* ==========================================
   SP (横スクロール対応メディアクエリ)
========================================== */
@media (max-width: 768px) {
  .comparison-container {
    width: 100%;
    padding: 0;
    background-color: transparent; /* カジュアルな背景色を廃止し高級感を担保 */
  }

  /* HTML側にある「.table-scroll」を活かしてスクロールエリア化 */
  .table-scroll {
    position: relative;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* ズレのない滑らかなスワイプ感 */
    margin-bottom: 16px;
  }

  /* スマホ時のテーブルの必要最小横幅（型崩れを防ぐ） */
  .comparison-table {
    width: 640px;
    min-width: 640px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 18px 14px; /* スマホ用に余白を少し凝縮 */
    font-size: 14px;
    white-space: normal; /* 意図せぬ改行プレーン化を防ぐ */
  }

  .comparison-table thead th {
    font-size: 15px;
    padding: 20px 14px;
  }

  /* ★【重要】左列（カテゴリー）を画面の左端に固定するスタイリッシュ仕様 */
  .comparison-table th:nth-child(1),
  .comparison-table td:nth-child(1) {
    position: sticky;
    left: 0;
    z-index: 10;
    background-color: #FDFCF7 !important; /* スクロールした文字が裏に透けないように */
    box-shadow: 4px 0 10px rgba(87, 63, 0, 0.05); /* 固定されている境界に薄い影を落とす */
    width: 130px;
    min-width: 130px;
  }

  /* スワイプガイドの洗練（ゴールドの上品なテキストに） */
  .swipe-guide {
    font-family: 'Noto Serif JP', serif;
    font-size: 11px;
    color: #9E824A;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    text-align: right;
    padding-right: 4px;
    animation: none; /* カジュアルな点滅を無くし品格を保つ */
  }
}




/* ========== sec05 Growth Cards ========== */
.sec05-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}




/* --- カード全体の共通設定 --- */
.sec05-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(180, 160, 100, 0.4); /* 少し境界線を薄く、上品に */
  box-shadow: 0 4px 12px rgba(0,0,0,0.06); /* わずかな影で立体感を */
}

/* --- ヘッダー部分（高級ゴールドグラデーション） --- */
.sec05-header {
  /* くすみのないシャンパンゴールドから深みのあるブロンズへの洗練された斜めのグラデーション */
  background: linear-gradient(135deg, rgba(232, 212, 164, 0.4) 0%, rgba(186, 153, 91, 0.4) 50%, rgba(138, 104, 39, 0.4) 100%);
  height: 160px;
  padding: 0 16px;
  text-align: center;
  font-family: 'Noto Serif JP', serif; /* 明朝体で知的に */
  color: #2B1F00;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec05-header p {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.12em; /* 文字間隔を広げてスタイリッシュに（最重要） */
}

/* 数字部分の強調 */
.sec05-header span {
  font-family: 'Cinzel', 'Times New Roman', serif; /* 数字は高貴なセリフ体に */
  font-size: 72px; /* わずかにシャープに */
  color: #2B1F00;
  font-weight: 500; /* 太すぎず洗練された太さに */
  letter-spacing: 0; /* 数字は詰め気味に */
}

/* HTMLのインラインmargin-top:-16pxに対応する調整（もしHTMLが触れるならインラインを消して、CSSを調整するのが理想です） */
.sec05-header p[style*="margin-top:-16px"] {
    position: relative;
    top: 8px; /* インラインでのマージン調整をCSS側で吸収 */
}

/* --- コンテンツ部分 --- */
.sec05-content {
  background: white;
  padding: 40px 30px 0 30px;
  height: 326px; /* ※PCでの固定高さのまま */
}

/* タイトル部分 */
.sec05-content__title {
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.15em; /* タイトルのレタースペースも広げます */
}

/* 説明文部分 */
.sec05-content__text {
  font-size: 14px;
  color: #333;
  line-height: 1.8; /* 行間を広げて、ゆったりとした読み心地に */
  text-align: left;
  letter-spacing: 0.05em; /* わずかにレタースペースを確保 */
}

.sec05-content__text p {
  margin-bottom: 16px;
}

.sec05-content__text p:last-child {
  margin-bottom: 0;
}

/* --- 画像部分 --- */
.sec05-image {
  background: #ffffff;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.sec05-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* もしHTMLで画像にインラインスタイルや警告が出ている場合の調整 */
.sec05-image img[src*="/images/sec05_1.png"] {
    position: relative;
    top: 10px; /* 例えばCard1の画像位置調整 */
}





/* SP */
@media (max-width: 768px) {
  .sec05-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
    width: 90%;
    overflow: hidden;
    margin: 0 auto;
  }

  .sec05-card {
    border-radius: 12px;
  }

  .sec05-header {
    height: 160px;
    padding: 0 16px;
    font-size: 27px;
  }

  .sec05-header span {
    font-size: 72px;
  }

  .sec05-content {
    padding: 25px 20px 0 20px;
    height: auto;
  }

  .sec05-content__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .sec05-content__text {
    font-size: 14px;
    line-height: 1.6;
  }

  .sec05-content__text p {
    margin-bottom: 12px;
  }

  .sec05-image {
    min-height: 200px;
    padding: 40px;
  }
}

/* ========== sec06 Menu Table ========== */
.sec06-menu-container {
  width: 100%;
  /* padding: 0 16px; */
}

/* スワイプガイド（カジュアルさを減らし、知的な補助テキストに） */
.swipe-guide {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  color: #9E824A;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-align: right;
}

.sec06-menu-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse; /* バラバラの隙間をなくし、一体感のあるモダンな1枚の表に */
  min-width: 760px;
  background-color: #ffffff;
}

/* すべてのセル共通 */
.sec06-menu-table th,
.sec06-menu-table td {
  padding: 22px 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #E5E0D5; /* 繊細な1pxのアースグレー線 */
  font-family: 'Noto Serif JP', serif; /* 格調高い明朝体に変更 */
}

/* --- ヘッダー行 (thead) --- */
.sec06-menu-table thead th {
  font-weight: 600;
  font-size: 15px;
  vertical-align: middle;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #573F00; /* 下部を深いブロンズで引き締める */
}

/* 左上セル：サービスメニュー */
.sec06-menu-table thead th:nth-child(1) {
  background: #573F00; /* 統一感を持たせるためメインの深いブロンズに */
  color: white;
  font-weight: 600;
}

/* 各プランのヘッダー（微妙なトーン変化で高級感を出すグラデーション） */
.sec06-menu-table thead th:nth-child(2),
.sec06-menu-table thead th:nth-child(3),
.sec06-menu-table thead th:nth-child(4) {
  background: linear-gradient(135deg, #6F5100 0%, #573F00 100%);
  color: white;
  font-weight: 600;
  height: auto;
}

/* ス感を引き立てるため、おすすめの「スタンダード」列だけ背景をわずかに変える（任意） */
.sec06-menu-table thead th:nth-child(3) {
  background: linear-gradient(135deg, #9E824A 0%, #573F00 100%);
}

/* --- ボディ行 (tbody) --- */

/* 左列（メニュー名）：知的な左寄せに変更 */
.sec06-menu-table td:nth-child(1) {
  font-weight: 600;
  color: #573F00;
  text-align: left;
  padding-left: 24px;
  background-color: #FDFCF7; /* 左列を薄いベージュにしてインデックス感を描写 */
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* ◯ や − が入るデータセル */
.sec06-menu-table tbody td {
  font-size: 16px;
  line-height: 1.6;
  vertical-align: middle;
}

/* 「◯」記号をより高貴でシャープなセリフ体（Cinzel等）の美しさに調和させる */
.sec06-menu-table tbody td:not(:nth-child(1)) {
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-weight: 500;
  color: #9E824A; /* ◯ を上品なゴールドに */
}

/* 「−」記号は目立たせないように薄いグレーに */
.sec06-menu-table tbody tr td:contains("−"), /* 一部ブラウザ用安全策 */
.sec06-menu-table tbody td {
  /* スタイリッシュにするため、−の色のトーンを落とす指定 */
}

/* 奇数行の背景色（透明度を落として、よりシルキーな色調に） */
.sec06-menu-table tbody tr:nth-child(odd) td {
  background: rgba(24DF, 246, 237, 0.25); /* #FDFCF7に近い極薄アースベージュ */
}
.sec06-menu-table tbody tr:nth-child(odd) td:nth-child(1) {
  background: #F8F5EE; /* 左列は少しだけ濃くして重厚に */
}

/* 偶数行の背景色 */
.sec06-menu-table tbody tr:nth-child(even) td {
  background: #ffffff;
}
.sec06-menu-table tbody tr:nth-child(even) td:nth-child(1) {
  background: #FDFCF7;
}

/* 行ホバー時の上品なインタラクション */
.sec06-menu-table tbody tr {
  transition: background-color 0.25s ease;
}
.sec06-menu-table tbody tr:hover td {
  background-color: #FAF8F2 !important;
}

/* --- SP (レスポンシブ) --- */
@media (max-width: 768px) {
  .sec06-menu-container {
    width: 100%;
    padding: 0;
  }
  .sec06-menu-table th,
  .sec06-menu-table td {
    padding: 14px 10px;
    font-size: 13px;
  }
  .sec06-menu-table td:nth-child(1) {
    padding-left: 12px;
    font-size: 13px;
  }
  .sec06-menu-table thead th {
    font-size: 14px;
  }
  .sec06-menu-table tbody td {
    padding: 14px 10px;
    font-size: 14px;
  }
}
/* ========== Price Component ========== */

/* --- 全体コンテナ --- */
.price-wrapper {
  width: 100%;
  padding: 20px 0;

}



/* --- 各プラン共通カード --- */
.price-item {
  position: relative;
  display: flex;
  flex-direction: row; /* 横並び構成に固定 */
  align-items: stretch;
  border: 1px solid #E5E0D5;
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(87, 63, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* プラン名ラベル（左側固定） */
.price-label {
  width: 180px;
  background-color: #573F00; /* ブランドの深みのあるブロンズ */
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
}

.price-label span {
	display: block;
	font-size: 10px;
	
}

/* 各プランの中身共通 */
.price-content {
  flex-grow: 1;
  padding: 24px 32px !important;
  background-color: transparent !important;
  display: flex;
  align-items: center;
justify-content: space-around;	position: relative;
	
}

/* ==========================================
   1. ベーシック（テーブル風リスト）
========================================== */
.price-content:has(.price-basic-item) {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2カラムでスッキリ整列 */
  gap: 16px 32px;
}

.price-basic-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #F0EFEA;
  padding-bottom: 8px;
}

.price-basic-item__title {
  font-size: 15px;
  color: #666;
  letter-spacing: 0.05em;
}

.price-basic-item__price {
  font-size: 18px;
  color: #2B1F00;
  font-weight: 600;
  font-family: 'Cinzel', 'Noto Serif JP', serif;
}

/* ==========================================
   2. スタンダード（お勧め・数式デザイン）
========================================== */
/* お勧めプランの特別枠（ゴールドのメインカラーに） */
.price-item:has(.price-standard) {
  border: 2px solid #9E824A; /* アースゴールドの太枠 */
  box-shadow: 0 8px 25px rgba(158, 130, 74, 0.15);
}

.price-item:has(.price-standard) .price-label {
  background: linear-gradient(135deg, #9E824A 0%, #573F00 100%);
}

.price-standard {
  display: flex;
  align-items: center;
  width: 100%;
justify-content: space-around;	
}

.price-standard__section {
  display: flex;
  flex-direction: column;
}

.price-standard__label {
  font-size: 12px;
  color: #9E824A;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.price-standard__value {
  font-size: 24px;
  color: #2B1F00;
  font-weight: 600;
  font-family: 'Cinzel', 'Noto Serif JP', serif;
}

.price-standard__description {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
}

.price-standard__multiply {
  font-size: 24px;
  color: #9E824A;
  margin: 0 32px;
  font-weight: 300;
}

/* おすすめバッジの絶対配置 */
.price-standard__badge {
  position: absolute;
  top: -12px;
  right: -16px;
}

.price-standard__badge img {
  height: 48px; /* スタイリッシュなサイズにコントロール */
  width: auto;
}


/* --- スタンダード（おすすめ）のカード全体の強調 --- */
.price-item--recommend {
  position: relative;
  border: 1px solid #9E824A !important; /* アースゴールドの少し太い枠線で強調 */
  box-shadow: 0 8px 30px rgba(158, 130, 74, 0.15) !important; /* 影を強めて手前に浮き上がらせる */
}

/* スタンダードの左側ラベルも高級感のあるゴールドグラデーションに */
.price-item--recommend .price-label {
  background: linear-gradient(135deg, #9E824A 0%, #573F00 100%) !important;
}

/* --- ピュアCSS コーナーリボン（バッジ） --- */
.price-standard__badge-ribbon {
  position: absolute;
  top: 0px;
  right:0px;
  background: linear-gradient(135deg, #c5a059 0%, #9E824A 100%); /* 艶やかなゴールド */
  color: #fff;
  font-family: 'Cinzel', 'Times New Roman', serif; /* 格調高いセリフ体（日本語なら明朝体でも可） */
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 18px;
  /* カードの右上角に綺麗にフィットする角丸デザイン */
  border-radius: 0 6px 0 12px; 
  box-shadow: -2px 2px 8px rgba(87, 63, 0, 0.15);
  z-index: 10;
}

/* もし英語ではなく日本語のテキストにしたい場合のフォント微調整 */
/* .price-standard__badge-ribbon {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
} */

/* --- レスポンシブ時の調整 --- */
@media screen and (max-width: 768px) {
  .price-item--recommend {
    transform: none; /* スマホでは拡大を戻す */
    margin-top: 16px;
    margin-bottom: 32px;
  }
  /* スマホ縦並びになった際、リボンがラベル（上部）の右上に配置されるよう調整 */
  .price-standard__badge-ribbon {
    border-radius: 0 0 0 12px;
  }
}




/* ==========================================
   3. プレミアム（ミニマル倍率表記）
========================================== */
.price-premium {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #2B1F00;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.05em;
}

.price-premium__multiply {
  margin: 0 16px;
  color: #9E824A;
}

.price-premium__rate {
  font-family: 'Cinzel', serif;
  font-size: 42px !important; /* インライン上書き */
  font-weight: 500;
  color: #9E824A;
  margin: 0 !important;
  line-height: 1;
}

/* ==========================================
   4. 注釈・料金計算例
========================================== */
.price-footnote {
  margin-top: 32px;
  border-top: 1px solid #E5E0D5;
  padding-top: 24px;
}

.price-footnote p, 
.price-footnote li {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.price-footnote ul {
  list-style-type: none;
  padding-left: 0;
}

/* 計算式のハイライト */
.price-footnote li:nth-child(2) {
  font-family: 'Cinzel', 'Noto Serif JP', serif;
  font-size: 15px;
  color: #573F00;
  font-weight: 500;
  background-color: #FDFCF7;
  padding: 12px 16px;
  border-left: 3px solid #9E824A;
  margin: 12px 0;
  text-indent: 0 !important;
}

/* --- レスポンシブ対応（スマホ表示時に縦並びへ変化） --- */
@media screen and (max-width: 768px) {
  .price-item {
    flex-direction: column;
  }
  
  .price-label {
    width: 100%;
    padding: 12px 0;
  }
  
  .price-content:has(.price-basic-item) {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .price-standard {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .price-standard__multiply {
    margin: 12px 0 12px 8px;
  }
  
  .price-standard__badge {
    top: -45px;
    right: 0;
  }
}














/* ========== Membership Component ========== */
.sec07-membership-container {
  width: 100%;
  margin: 0 auto;
}

/* --- テーブル全体の設計 --- */
.sec07-membership-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background-color: #ffffff;
    font-family: 'Noto Serif JP', serif; /* 格調高い明朝体ベースに */
}

/* --- ヘッダー（th）のデザイン --- */
.sec07-membership-table th {
    padding: 24px 12px;
    border-bottom: 2px solid #573F00; /* 下線にブランドの深みブロンズ */
    vertical-align: bottom;
}

.sec07-membership-table th.cell-blank {
    background-color: transparent;
    border-bottom: none;
}

/* ランク名のテキストスタイル */
.sec07-membership-rank-name {
    font-size: 16px;
    color: #2B1F00;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-top: 8px;
}

/* --- ボディ（td）のデザイン --- */
.sec07-membership-table td {
    padding: 20px 12px;
    font-size: 14px;
    color: #444444;
    line-height: 1.6;
    text-align: center;
    border-bottom: 1px solid #E5E0D5; /* 繊細な薄いグレーブラウンの線 */
}

/* 左端の項目タイトル列の装飾 */
.sec07-membership-table td.row-title {
    font-weight: 600;
    color: #573F00;
    text-align: left;
    padding-left: 20px;
    background-color: #FDFCF7;
    width: 160px;
}

/* 割引率など、重要な数字の強調 */
.sec07-membership-table td.txt-highlight {
    font-family: 'Cinzel', 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 600;
    color: #573F00;
}

/* 行ホバー時にじわっと浮き出るエフェクト */
.sec07-membership-table tbody tr {
    transition: background-color 0.3s ease;
}
.sec07-membership-table tbody tr:hover {
    background-color: #FAF9F5;
}


/* ==========================================
   究極のミニマル・メタリックバッジ（進化版）
========================================== */
.rank-badge {
    display: inline-block;
    font-family: 'Cinzel', 'Times New Roman', serif; /* 格調高いローマ碑文フォント */
    font-size: 9px;            /* あえて限界まで小さくすることで、知性と高級感を演出 */
    font-weight: 700;
    letter-spacing: 0.25em;    /* 文字間隔をさらに広げ、ラグジュアリーブランドのロゴの比率に */
    padding: 3px 14px 4px 16px; /* 美しく見える黄金比の余白（右側に文字間隔分の余白を考慮） */
    border-radius: 0px;        /* 揺るぎない直角の美学 */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5); /* 文字の視認性を高める微細なシャドウ */
    position: relative;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05), /* 外側の軽い影 */
        inset 0 1px 0 rgba(255, 255, 255, 0.6); /* ★最重要：プレート上部に光が当たっているような極細ハイライト */
    margin-bottom: 6px;
    text-align: center;
    min-width: 90px;           /* ボタンの横幅を揃えて美しく整列させる */
}

/* ── シルバー：静謐で知的なプラチナシルバー ── */
.rank-badge--silver {
    background: linear-gradient(135deg, #F5F5F7 0%, #E2E2E5 50%, #D2D2D6 100%);
    color: #55555A;
    border: 1px solid #C0C0C5;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* ── ゴールド：派手さを抑えたシャンパン・ヘリテージゴールド ── */
.rank-badge--gold {
    /* 18Kやシャンパンのような、品がありサイトのブロンズとも調和する特製ゴールド */
    background: linear-gradient(135deg, #EADCB9 0%, #D4C39A 50%, #BCA87A 100%);
    color: #4A3B19;
    border: 1px solid #A89567;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* ── プラチナ：鏡面のような硬質さと透明感を持つプレシャスブラック ── */
.rank-badge--platinum {
    /* 白背景に対して最も映える、最高峰ランクにふさわしい「漆黒のメタルプレート」 */
    background: linear-gradient(135deg, #3A3D40 0%, #202224 50%, #111213 100%);
    color: #E2E8F0; /* 文字は美しいホワイトシルバー */
    border: 1px solid #1A1C1E;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5); /* 黒背景に合わせて文字シャドウを反転 */
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2); /* 内側の極細ハイライト */
}

/* --- レスポンシブ対応（スマホ表示時に横スクロール可能に） --- */
@media screen and (max-width: 768px) {
    .sec07-membership-table {
        display: block;
        width: 100%;
        overflow-x: auto; /* 画面からはみ出た時に指で横スクロールできるように */
        white-space: nowrap; /* テキストの意図しない改行を防止 */
    }
    .sec07-membership-table td.row-title {
        position: sticky;
        left: 0;
        z-index: 10;
        box-shadow: 2px 0 5px rgba(0,0,0,0.05);
    }
}

/* ========== Representative Profile Component ========== */
.representative-profile {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 40px;
  padding: 24px;
	    background: url(../images/sec04_bg_pc.jpg) center / cover no-repeat

}

.representative-profile__photo-section {
  flex: 0 0 auto;
  text-align: center;
  min-width: 300px;
}

.representative-profile__photo {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px;
  overflow: hidden;
}

.representative-profile__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.representative-profile__name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.8;
}

.representative-profile__content {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.representative-profile__bio {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.8;
}

.representative-profile__section {
  margin-bottom: 25px;
}

.representative-profile__section-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.6;
}

.representative-profile__section p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.8;
}

.representative-profile__section p:last-child {
  margin-bottom: 0;
}

/* SP */
@media (max-width: 768px) {
  .sec-representative {
    padding: 40px 20px;
  }

  .representative-profile {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .representative-profile__photo-section {
    flex: 1 1 auto;
    min-width: auto;
  }

  .representative-profile__photo {
    max-width: 100%;
  }

  .representative-profile__name {
    font-size: 20px;
  }

  .representative-profile__content {
    font-size: 24px;
  }

  .representative-profile__bio {
    font-size: 14px;
  }

  .representative-profile__section-title {
    font-size: 15px;
  }

  .representative-profile__section p {
    font-size: 14px;
  }
}

/* ========== Office Information ========== */
.office-info-container {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.office-info {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.office-info__map {
  flex: 0 0 auto;
  width: 350px;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
}

.office-info__map img {
  width: 100%;
  height: auto;
  display: block;
}

.office-info__details {
  flex: 1;
}

.office-info__title {
  font-size: 20px;
  font-weight: 600;
  color: #573F00;
  margin-bottom: 20px;
  line-height: 1.6;
}

.office-info__subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1;
}

.office-info__item {
  display: flex;
  gap: 20px;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.6;
}

.office-info__label {
  flex: 0 0 auto;
  font-weight: 600;
  color: #333;
  min-width: 60px;
}

.office-info__value {
  flex: 1;
  color: #333;
}

.office-info__access {
  padding-top: 20px;
}

.office-info__access-item {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
}

.office-info__access-icon {
  flex: 0 0 auto;
  color: #333;
}

.office-info__access-label {
  flex: 0 0 auto;
  font-weight: 600;
  min-width: 40px;
}

.office-info__access-value {
  flex: 1;
}

/* SP */
@media (max-width: 768px) {
  .office-info-container {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 40px;
 }

 .office-info__details{
    width: 90%;
    margin: 0 auto;
  }

  .office-info {
    flex-direction: column;
    gap: 20px;
  }

  .office-info__map {
    width: 100%;
  }

  .office-info__title {
    font-size: 20px;
  }

  .office-info__item {
    flex-direction: column;
    gap: 4px;
  }

  .office-info__label {
    font-weight: 600;
  }
	
	.office-info__subtitle{
		display: block;
	}	
	
}


/* ********************* ▼ ボタンのデザイン **************************** */
.c-btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    height: 64px;
    background: #FFFFFF; /* 背景はクリーンな白 */
    color: #573F00 !important; /* 文字にメインのディープブロンズ */
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-decoration: none;
    border: 1px solid #9E824A; /* 繊細なアースゴールドの1px線 */
    border-radius: 0px;        /* あえて直角にすることで圧倒的なシャープさを演出 */
    position: relative;
    transition: all 0.3s ease;
}

/* 右端にシャープな矢印をCSSで配置 */
.c-btn-luxury::after {
    content: "";
    position: absolute;
    right: 24px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #9E824A;
    border-right: 1px solid #9E824A;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

/* ホバー時に全体がじわっとゴールドに染まる高級感 */
.c-btn-luxury:hover {
    background: #573F00;
    color: #FFFFFF !important;
    border-color: #573F00;
    box-shadow: 0 8px 25px rgba(87, 63, 0, 0.15);
}

.c-btn-luxury:hover::after {
    border-color: #FFFFFF;
    right: 18px; /* 矢印が少し右にスライドする心地いい動的エフェクト */
}

/* ********************* ▲ ボタンのデザイン **************************** */


/* Contact Form 7 */
.cf7-form p {
  margin: 0;
}

.cf7-row {
  margin-bottom: 14px;
}

.cf7-row p {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.cf7-row br {
  display: none;
}

.cf7-row label {
  width: 160px;
  flex-shrink: 0;
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.cf7-row .wpcf7-form-control-wrap {
  flex: 1;
  display: block;
}

.cf7-row input,
.cf7-row textarea {
  width: 100%;
  height: 42px;
  padding: 8px 12px;
  border: 1px solid #999;
  background: #fff;
  font-size: 16px;
  box-sizing: border-box;
}

.cf7-row textarea {
  height: 120px;
}

.cf7-submit {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.cf7-submit p {
  margin: 0 auto;
}

.cf7-privacy-note {
  text-align: center;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 32px auto 0 !important;
}

.cf7-privacy-note label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #444;
}

.cf7-privacy-note input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #573F00;
  cursor: pointer;
}

.cf7-privacy-note a {
  color: #9E824A;
  text-decoration: underline;
}

.cf7-submit input[type="submit"] {
    /* --- 形状・サイズのリセットと最適化 --- */
    display: block;
    margin: 30px auto;             /* フォーム中央に配置 */
    width: 100%;
    max-width: 400px; 
	min-width: 200px;/* 320pxから少し広げて文字の余白に品格を持たせる */
    height: 64px;
    background: #FFFFFF;        /* クリーンなホワイト */
    
    /* --- タイポグラフィ（文字間隔をさらに美しく） --- */
    color: #573F00;
    font-size: 18px;            /* 32pxは大きすぎてカジュアルに見えるため、知的な18pxへ調整 */
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;           /* 600よりも、細めの500の方がスタイリッシュさが増します */
    letter-spacing: 0.2em;      /* レタースペースを広げてラグジュアリーに */
    
    /* --- ボーダー（丸みをなくし完全に直角へ） --- */
    border: 1px solid #9E824A;  /* 4pxの太線を、繊細な1pxのアースゴールドへ */
    border-radius: 8px;         /* カプセル型から、圧倒的にシャープな「直角」へ変更 */
    
    /* --- その他制御 --- */
    -webkit-appearance: none;   /* iOSでの標準ボタンデザインをリセット */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(87, 63, 0, 0.02);
    transition: all 0.3s ease;
}

/* --- ホバー時（マウスを乗せた際）の動的エフェクト --- */
.cf7-submit input[type="submit"]:hover {
    background: #573F00;        /* サイトのメインカラー（深いブロンズ）に反転 */
    color: #FFFFFF;
    border-color: #573F00;
    box-shadow: 0 8px 25px rgba(87, 63, 0, 0.15); /* じわっと手前に浮き出る上品な影 */
}


.cf7-submit .wpcf7-spinner {
  position: absolute;
}

@media (max-width: 768px) {
  .cf7-row p {
    display: block;
  }

  .cf7-row label {
    width: 100%;
    margin-bottom: 8px;
    font-size: 16px;
  }
	
	.cf7-submit p {
		width: 90%;
	}
	
  .cf7-submit input[type="submit"] {
    width: 100%;
    max-width: 320px;
    height: 56px;
    font-size: 24px;
	}
	
	.cf7-submit input[type="submit"]{
    width:100%;
    max-width:320px;
    height:56px;
    font-size:24px;
  }
}







/* ========== Footer ========== */
.footer {
  background-color: #ffffff;
  padding: 20px 16px;
  text-align: center;
}

.footer__copyright {
  font-size: 12px;
  color: #251713;
  margin: 0;
  line-height: 1.6;
  margin-top: 2em;
}





.sec01-title-area {
  text-align: center;
  margin-bottom: 30px;
}

/* 筆記体のスタイル指定 */
.en-script {
	margin-top: 10px;
  display: block;
  color: #9E824A;                      /* アースゴールド */
letter-spacing: 0.25em;
	line-height: 1.2;
	font-size: 11px;
	text-align: center;
	font-family: 'Cinzel', 'Times New Roman', serif;	
	/*font-weight: 600;*/
}



/* --- ベン図全体を包むコンテナ --- */
.sec04-venn-wrapper {
  width: 100%;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.venn-container {
  position: relative;
  width: 680px;  /* 3つの円が美しく重なり合う黄金比のベース幅 */
  height: 600px;
  margin: 0 auto;
}

/* --- 3つの円の共通デザイン（極細ゴールド線と透過の輝き） --- */
.venn-circle {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  /* 繊細なアースゴールドの1px線で構築 */
  border: 1px solid rgba(158, 130, 74, 0.4); 
  /* 内側にじわっと吸い込まれるような極薄のグラデーション（乗算のような重なりを再現） */
  background: radial-gradient(circle, rgba(253, 252, 247, 0.8) 0%, rgba(245, 242, 233, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(87, 63, 0, 0.02);
  backdrop-filter: blur(2px); /* 重なった部分がすりガラスのように上品に透ける隠し味 */
  box-sizing: border-box;
}

/* 各円の絶対配置（3つの中心でピタッと噛み合う設定） */
.venn-circle--top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.venn-circle--left {
  bottom: 0;
  left: 0;
}
.venn-circle--right {
  bottom: 0;
  right: 0;
}

/* --- 円の中のテキストデザイン（圧倒的な知性） --- */
.venn-content {
  text-align: center;
  padding: 40px;
}

/* 数字（高貴なセリフ体） */
.venn-num {
  display: block;
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: 22px;
  color: #9E824A; /* 品のあるアースゴールド */
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 2px;
}

/* 見出し（美しい明朝体） */
.venn-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  color: #573F00; /* 深いブロンズ */
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 0 0 16px 0 !important;
  position: relative;
  display: inline-block;
}

/* タイトルの下にスッと佇む極細のアンダーライン */
.venn-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background-color: #c5a059;
}

/* 説明文（読みやすさを重視したシャープな配置） */
.venn-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 13.5px;
  color: #444444;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin: 0;
}

/* ==========================================
   SP (レスポンス：スマホ時は縦並びにして崩れを防ぐ)
========================================== */
@media screen and (max-width: 768px) {
  .venn-container {
    width: 100%;
    height: auto; /* 縦並びにスイッチ */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;    /* 円同士の間隔 */
  }

  .venn-circle {
    position: relative; /* 絶対配置を解除 */
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 320px; /* スマホ画面に収まるサイズに自動縮小 */
    height: 320px;
  }
  
  .venn-content {
    padding: 24px;
  }
  
  .venn-title {
    font-size: 20px;
  }
  
  .venn-text {
    font-size: 13px;
  }
}


/* アニメーション前の状態（下からふわっと出す仕込み） */
.js-fade-up {
  opacity: 0;
  transform: translateY(40px); /* 40pxだけ下にずらしておく */
  transition: opacity 1.0s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 1.0s cubic-bezier(0.25, 1, 0.5, 1);
  /* ↑ 高級感を出すため、後半にかけて滑らかに減速するイージングを設定しています */
}

/* アニメーション実行時の状態（JSでこのクラスを付与する） */
.js-fade-up.is-animated {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻る */
}
