/* =====================================================
   SUICH | guide.css
   ─────────────────────────────────────────────────
   【用途】売却ガイドページ（guide.html）専用のスタイル
   　・地目別ガイドコンテンツ
   　・目次（TOC）サイドバー
   　・地目別プロカード（宅地・農地・山林など）
   　・ガイドページ独自のフッターレイアウト
===================================================== */
/* =====================================================
   SUICH | guide.css
   ページ固有スタイル
===================================================== */

/* ─── HEADER ─── */

  .nav-cta {
    background: var(--green-accent);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 2px;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--green-light) !important; }

  /* ─── PAGE HERO ─── */
  

  

  

  

  

  

  

  

  

  

  

  

  

  .hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }

  .btn-primary {
    background: var(--green-accent) url("../img/icon_search.png") no-repeat left 32px center / 1.5em;
    color: #fff;
    padding: 16px 32px 16px 64px;
    font-size:16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    border: 1px solid var(--green-vivid);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
    border-radius: 2px;
  }

  .btn-primary:hover { background: var(--green-light); transform: translateY(-1px); }

  .btn-outline-dark {
    background: url("../img/icon_lock.png") no-repeat left 32px center / 1.5em;
    border: 1px solid var(--on-dark-faint);
    color: var(--on-dark-mid);
    padding: 16px 32px 16px 64px;
    font-size:16px;
    letter-spacing: 0.08em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, color 0.2s;
    border-radius: 2px;
  }

  .btn-outline-dark:hover { border-color: var(--on-dark-low); color: #fff; }

  /* Hero stats bar */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--on-dark-ghost);
    padding-top: 40px;
    gap: 0;
  }

  .hero-stat {
    padding: 0 80px 0 0;
    border-right: 1px solid var(--on-dark-high);
	text-align: center;
  }

  .hero-stat:last-child { border-right: none; padding-left: 32px; padding-right: 0; }
  .hero-stat:nth-child(2) { padding-left: 32px; }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--green-vivid);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size:14px;
    color: var(--on-dark-low);
    letter-spacing: 0.05em;
    line-height: 1.6;
  }

  /* ─── MAIN LAYOUT ─── */
  .main-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 96px; /* padding: 112px 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
  }

  /* ─── STICKY TOC ─── */
  .toc {
    position: sticky;
    top: 92px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }

  .toc-

  .toc-list { padding: 8px 0; }

  .toc-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 22px;
    font-size:16px;
    color: var(--grey-mid);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border-left: 2px solid transparent;
  }

  .toc-list a:hover {
    background: var(--green-pale);
    color: var(--green-dark);
    border-left-color: var(--green-accent);
  }

  .toc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--green-muted);
    min-width: 18px;
  }

  .toc-cta {
    margin: 8px 14px 14px;
    display: block;
    background: var(--green-accent);
    color: #fff;
    text-align: center;
    padding: 13px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s;
  }

  .toc-cta:hover { background: var(--green-light); }

  /* ─── ARTICLE CONTENT ─── */
  .article { }

  .section-block {
    /*margin-bottom: 100px;*/
    scroll-margin-top: 92px;
  }
  
  .js-sp-accordion-content{
  	padding-bottom: 100px;
  }

  .section-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    letter-spacing: 0.25em;
    color: var(--green-accent);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
  }

  .section-num em {
  	font-style: normal;
  	font-size: 50px;
    font-weight: 500;
  }
  
  .section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(24px, 3.7vw, 36px);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.5;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }

  .lead-text {
    font-size:16px;
    color: var(--grey-mid);
    line-height: 1.95;
    margin-bottom: 28px;
  }

  /* ─── DIFFICULTY CARDS ─── */
  .difficulty-cards {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 28px;
  }

  .diff-card {
    background: #fff;
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 18px;
    align-items: flex-start;
  }

  .diff-icon {
    width: 36px; height: 36px;
    /*background: var(--green-pale);*/
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .diff-body strong {
    display: block;
    font-size:20px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 4px;
  }

  .diff-body p {
    font-size:18px;
    color: var(--grey-mid);
    line-height: 1.7;
  }

  /* ─── INFO BOX ─── */
  .info-box {
    background: var(--green-pale);
    border: 1px solid var(--green-muted);
    border-left: 3px solid var(--green-accent);
    border-radius: 0 4px 4px 0;
    padding: 22px 24px;
    margin: 24px 0;
  }

  .info-box-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--green-mid);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .approach-list{display:flex;flex-direction:column;gap:0;background:var(--border);border:1px solid var(--border);border-radius:4px;overflow:hidden;margin-top:28px;}
.approach-item{background:#fff;padding:30px 32px;border-bottom:1px solid var(--border);display:flex;gap:16px;align-items:flex-start;}
.approach-item:last-child{border-bottom:none;}
.approach-icon{font-size:20px;flex-shrink:0;margin-top:2px;}
.approach-title{font-size:20px;font-weight:700;color:var(--green-dark);margin-bottom:5px;line-height:1.45;}
.approach-desc{font-size:18px;color:var(--grey-mid);line-height:1.8;}
  .reason-num {
  font-family: 'Cormorant Garamond',serif;
  font-size: 60px;
  font-weight: 600;
  color: var(--green-muted);
  line-height: 0.3;
}

  /* ─── CTA LINK ─── */
  .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size:16px;
    color: var(--green-accent);
    text-decoration: none;
    border: 1px solid var(--green-muted);
    padding: 10px 18px;
    border-radius: 2px;
    margin-top: 8px;
    transition: background 0.2s, border-color 0.2s;
    background: #fff;
  }

  .cta-link:hover { background: var(--green-pale); border-color: var(--green-accent); }
  .cta-link::after { content: '→'; }

  /* ─── GROUND TYPE CARDS ─── */
  .ground-types {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 28px;
  }

  .ground-card {
  	padding: 32px;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s;
  }

  .ground-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

  .ground-card-header {
  	margin-bottom: 20px;
  }
  
  .ground-tag {
	line-height:1.45;
    font-weight:700;
	color:var(--green-dark);
    font-size: 24px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .ground-tag .reason-num{
  	padding-right: 0.2em;
  	display: inline;
  }
  
  .ground-difficulty {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  .diff-high { background: rgba(192,96,96,0.2); color: #e08080; }
  .diff-mid  { background: rgba(184,149,90,0.2); color: #c8a060; }
  .diff-low  { background: rgba(74,145,98,0.2); color: var(--green-accent); }

  .ground-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .ground-desc {
    font-size:16px;
    color: var(--grey-mid);
    line-height: 1.9;
    margin-bottom: 16px;
  }

  .ground-point {
    background: var(--grey-pale);
    border-radius: 2px;
    padding: 12px 16px;
    font-size:16px;
    color: var(--grey-mid);
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .ground-point strong { color: var(--green-dark); }

  /* ─── PROS LIST ─── */
  .pros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 28px;
  }

  .pro-card {
  	position: relative;
    background: #fff;
    padding: 36px 34px;
  }

  .pro-num {
  	position: absolute;
	right: 32px;
	bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 100px;
    font-weight: 600;
    color: var(--green-pale);
    line-height: 1;
    margin-bottom: 12px;
	z-index: 0;
  }

  .pro-title {
    font-size:22px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 8px;
    line-height: 1.5;
  }

  .pro-desc {
  	position: relative;
    font-size:18px;
    color: var(--grey-mid);
    line-height: 1.95;
	z-index: 1;
  }

  /* ─── RISK SECTION ─── */
  .risk-block {
    background: var(--green-dark);
    border-radius: 4px;
    padding: 40px;
    margin-bottom: 28px;
  }

  .risk-block-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
  }

  .risk-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
  }

  .risk-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--on-dark-ghost);
    border: 1px solid var(--on-dark-ghost);
    border-radius: 3px;
    padding: 26px 28px;
  }

  .risk-item-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 600;
    color: var(--green-accent);
    min-width: 60px;
    line-height: 0.5;
    padding-top: 2px;
  }

  .risk-item-text strong {
    display: block;
    font-size:22px;
    color: #fff;
    margin-bottom: 3px;
    font-weight: 600;
  }

  .risk-item-text p {
    font-size:18px;
    color: var(--on-dark-low);
    line-height: 1.7;
  }

  .cashflow-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
  }

  .cf-side {
    background: var(--on-dark-ghost);
    border-radius: 3px;
    padding: 22px 20px;
    border: 1px solid var(--on-dark-ghost);
  }
  
  .cf-box{display: flex; gap: 30px;}
  
  .cf-label{font-size:20px;letter-spacing:.22em;color:var(--on-dark-faint);text-transform:uppercase;margin-bottom:10px;}

  .cf-side.bad .cf-label { color: #e08080; }
  .cf-side.good .cf-label { color: var(--green-vivid); }

  .cf-title{font-family:'Noto Serif JP',serif;font-size:16px;font-weight:700;margin-bottom:14px; background: #FFF; border-radius: 500px; width: 160px; height: 160px; display: flex; justify-content: center; align-items: center; text-align: center;}

  .cf-side.bad .cf-title { color: #e08080; }
  .cf-side.good .cf-title { color: var(--green-accent); }

  .cf-items { list-style: none; }
  .cf-items li {
    font-size:16px;
    color: var(--on-dark-low);
    padding: 0.8em 0;
    display: flex;
    align-items: center;
    gap: 1.0em;
  }

  .cf-side.bad .cf-items li::before { width: 1.5em; height: 1.5em; background: url("../img/icon_down.png") no-repeat center / contain; content:""; display: block; }
  .cf-side.good .cf-items li::before { width: 1.5em; height: 1.5em; background: url("../img/icon_up.png") no-repeat center / contain; content:""; display: block; }

  .cf-vs {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--on-dark-high);
    text-align: center;
  }

  /* ─── PROCESS STEPS ─── */
  .process-steps {
  	position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
    /*background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;*/
    overflow: hidden;
    margin-bottom: 28px;
  }
  
  .process-steps::before {
	  content: '';
	  position: absolute;
	  top: 40px;
	  left: 30px;
	  right: 0;
	  width: 1px;
	  height: 23em;
	  background: rgba(74,145,98,1.0);
	  z-index: 0;
  }

  .process-step {
    /*background: #fff;
    padding: 22px 26px;*/
	position: relative;
	padding: 20px 0;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: flex-start;
	z-index: 1;
  }

  .step-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .step-circle {
    width: 60px; height: 60px;
	padding-bottom: 10px;
    background: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-weight: 600;
    color: var(--on-dark-high);
  }

  .process-step:nth-of-type(3) .step-circle,
  .process-step:nth-of-type(4) .step-circle{
	padding-bottom: 20px;
  }
  
  .step-body strong {
    display: block;
    font-size:22px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 5px;
    /*padding-top: 10px;*/
  }

  .step-body p {
    font-size:18px;
    color: var(--grey-mid);
    line-height: 1.95;
  }

  /* ─── CONTACT BOX ─── */
  .contact-box {
    background: var(--green-mid);
    border-radius: 4px;
    padding: 44px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .contact-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 70% 30%, rgba(74,145,98,0.3) 0%, transparent 65%);
  }

  .contact-box-inner { position: relative; }

  .contact-box h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .contact-box p {
    font-size:16px;
    color: var(--on-dark-low);
    margin-bottom: 28px;
  }

  .contact-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .btn-contact-white {
    background: #fff;
    color: var(--green-dark);
    padding: 20px 28px;
    font-size:20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 2px;
    display: block;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .btn-contact-white:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

  .btn-contact-outline {
    border: 1px solid var(--on-dark-faint);
    color: var(--on-dark-high);
    padding: 20px 28px;
    font-size:20px;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 2px;
    display: block;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-contact-outline:hover { border-color: #fff; background: var(--on-dark-ghost); }

  .contact-note {
    font-size: 11px;
    color: var(--on-dark-faint);
    letter-spacing: 0.08em;
    line-height: 1.95;
  }
  

  /* ─── RELATED PAGES ─── */
  

  

  

  

  

  

  

  

  

  

  /* ─── FOOTER ─── */
  

  

  

  

  

  

  

  

  

  /* ─── ANIMATIONS ─── */
  
    to   { opacity: 1; transform: translateY(0); }
  }

  
  
  
  .hero-cta-row { animation: fadeUp 0.7s ease 0.3s both; }
  .hero-stats { animation: fadeUp 0.7s ease 0.4s both; }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    
    .main-layout { grid-template-columns: 1fr; }
    .toc { display: none; }
    .hero-stats { grid-template-columns: 1fr; gap: 20px; }
    .hero-stat { border-right: none; padding: 0; }
    .pros-grid { grid-template-columns: 1fr; }
    .cashflow-compare { grid-template-columns: 1fr; }
    .cf-vs { display: none; }
    
    
    
  
  
  
  
  
  
  

/* ━━━ PLACEHOLDER IMAGES ━━━ */

/* ─── MAIN SITE BANNER (guide固有レイアウト) ─── */
.msb-guide         { background:var(--green-pale);border-top:2px solid var(--green-muted);border-bottom:1px solid var(--border); }
.msb-guide-inner   { max-width:1440px;margin:0 auto;padding:18px 96px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:14px; }
.msb-guide-left    { display:flex;align-items:center;gap:12px; }
.msb-guide-icon    { font-size:20px; }
.msb-guide-eyebrow { font-size:16px;letter-spacing:.22em;color:var(--green-accent);font-weight:600;text-transform:uppercase;margin-bottom:2px; }
.msb-guide-title   { font-size:16px;font-weight:700;color:var(--green-dark); }
.msb-guide-btn     { display:inline-flex;align-items:center;gap:6px;background:var(--green-mid);color:#fff;padding:11px 24px;font-size:16px;font-weight:600;letter-spacing:.08em;text-decoration:none;border-radius:3px;white-space:nowrap;transition:background .2s; }
.msb-guide-btn:hover { background:var(--green-light); }
/* ─── GUIDE FOOTER (guide.htmlの独自フッター) ─── */
.guide-footer       { background:var(--green-dark);padding:72px 0 36px; }
.guide-footer-inner { max-width:1440px;margin:0 auto;padding:0 96px; }
.guide-footer-top   { display:grid;grid-template-columns:260px 1fr;gap:96px;padding-bottom:52px;border-bottom:1px solid var(--on-dark-ghost);margin-bottom:36px; }
.guide-footer-logo  { font-family:'Cormorant Garamond',serif;font-size:30px;font-weight:600;color:#fff;letter-spacing:.15em;margin-bottom:12px; }
.guide-footer-tagline { font-size:16px;color:var(--on-dark-faint);line-height:1.9; }
.guide-footer-nav   { display:grid;grid-template-columns:repeat(3,1fr);gap:36px; }
.guide-footer-nav-h4 { font-size:16px;letter-spacing:.22em;color:var(--green-muted);text-transform:uppercase;margin-bottom:16px;font-weight:500; }
.guide-footer-nav-a { display:block;font-size:16px;color:var(--on-dark-low);text-decoration:none;padding:5px 0; }
.guide-footer-nav-a:hover { color:var(--on-dark-mid); }
.guide-footer-bottom { display:flex;justify-content:space-between;font-size:16px;color:var(--on-dark-faint);flex-wrap:wrap;gap:12px; }

/* Mobile layout */
@media (max-width: 900px) {
  .main-layout,
  .guide-section,
  .content-section {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .hero-stats,
  .pros-grid,
  .approach-grid,
  .case-grid,
  .flow-grid,
  .related-grid,
  .guide-footer-top,
  .guide-footer-nav {
    grid-template-columns: 1fr;
  }
  
  .section-title {
  	padding-right: 12vw;
  }
  
  .toc-card,
  .side-toc {
    position: static;
  }
  .cashflow-compare {
    grid-template-columns: 1fr;
    gap: 4vw;
  }
  .cf-box {
    gap: 3vw;
    align-items: center;
  }
  .cf-title {
    width: 24vw;
    height: 24vw;
    min-width: 118px;
    font-size: 3.4vw;
  }
  .comparison-wrap,
  .table-wrap {
    overflow-x: auto;
  }
  .comparison-table,
  .comp-table {
    min-width: 680px;
  }
  .msb-guide-inner,
  .guide-footer-inner {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .msb-guide-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main-layout,
  .guide-section,
  .content-section,
  .msb-guide-inner,
  .guide-footer-inner {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
