/* =====================================================
   Tokusho Page
===================================================== */

.tokushoHero{
  padding:72px 16px 28px;
  background: linear-gradient(180deg, rgba(246,242,236,1) 0%, rgba(255,255,255,1) 100%);
}

.tokushoHero__inner,
.tokushoSection__inner,
.tokushoCta__inner{
  max-width:1040px;
  margin:0 auto;
}

.tokushoHero__eyebrow{
  letter-spacing:.12em;
  font-weight:700;
  opacity:.7;
  margin:0 0 8px;
}

.tokushoHero__ttl{
  font-size: clamp(28px, 4vw, 40px);
  margin:0 0 10px;
}

.tokushoHero__lead{
  margin:0;
  opacity:.85;
  line-height:1.9;
}

.tokushoHero__meta{
  margin:10px 0 0;
  font-size:13px;
  opacity:.7;
}

.tokushoBreadcrumb{
  padding:10px 16px 0;
}

.tokushoBreadcrumb__list{
  max-width:1040px;
  margin:0 auto;
  padding:0;
  list-style:none;
  display:flex;
  gap:10px;
  font-size:13px;
  opacity:.75;
}

.tokushoBreadcrumb__list li::after{
  content: ">";
  margin-left:10px;
  opacity:.5;
}

.tokushoBreadcrumb__list li:last-child::after{
  content:none;
}

.tokushoSection{
  padding:40px 16px 0;
}

.tokushoCard{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:16px;
  box-shadow: 0 8px 26px rgba(0,0,0,.05);
}

/* 表 */
.tokushoTable{
  width:100%;
  border-collapse:collapse;
}

.tokushoTable th,
.tokushoTable td{
  padding:14px 12px;
  vertical-align:top;
  border-bottom:1px solid rgba(0,0,0,.06);
  line-height:1.9;
}

.tokushoTable th{
  width:28%;
  font-weight:800;
  opacity:.85;
}

.tokushoNote{
  margin:10px 0 0;
  font-size:12.5px;
  opacity:.7;
}

/* SP：表を縦積み */
@media (max-width: 560px){
  .tokushoTable,
  .tokushoTable tbody,
  .tokushoTable tr,
  .tokushoTable th,
  .tokushoTable td{
    display:block;
    width:100%;
  }
  .tokushoTable tr{
    padding:10px 0;
    border-bottom:1px solid rgba(0,0,0,.06);
  }
  .tokushoTable th{
    padding:10px 12px 6px;
  }
  .tokushoTable td{
    padding:0 12px 10px;
    border-bottom:none;
  }
}

/* =====================================================
   CTA（右キャプチャのカード風）
===================================================== */

.tokushoCta{
  padding:44px 16px 64px;
}

.tokushoCta__box{
  max-width:1040px;
  margin:0 auto;
  border-radius:18px;
  padding:22px 18px;
  background: rgba(246,242,236,1);
  border:1px solid rgba(0,0,0,.06);
}

.tokushoCta__ttl{
  margin:0 0 8px;
  font-size:20px;
  font-weight:800;
}

.tokushoCta__text{
  margin:0 0 14px;
  line-height:1.9;
  opacity:.9;
}

/* =====================================================
   CTA Button（右キャプチャの丸いゴールドボタン）
===================================================== */

.ctaBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  border:none;
}

.ctaBtn--primary{
  background:#b07b2a;
  color:#ffffff;
  padding:14px 26px;
  border-radius:999px;
  font-size:14px;
  letter-spacing:.02em;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  transition:all .2s ease;
}

.ctaBtn--primary:hover{
  background:#9a6b24;
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(0,0,0,.16);
}

.ctaBtn--primary:active{
  transform:translateY(0);
  box-shadow:0 4px 10px rgba(0,0,0,.12);
}

@media (max-width:640px){
  .ctaBtn--primary{
    padding:13px 22px;
    font-size:13px;
  }
}

/* =====================================================
   Footer（濃グレー帯＋右リンク横並び：キャプチャ仕様）
===================================================== */

.siteFooter{
  background:#5b5b5b;
  width:100%;
}

.siteFooter__inner{
  max-width:1040px;
  margin:0 auto;
  padding:0 24px;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.siteFooter__brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.siteFooter__brandMark{
  width:20px;
  height:20px;
  background:#f5a623;
  clip-path:polygon(0 0, 100% 50%, 0 100%);
  flex-shrink:0;
}

.siteFooter__brandText{
  font-size:22px;
  font-weight:800;
  letter-spacing:.02em;
  color:#222;
  line-height:1;
}

.siteFooter__brandText span{
  color:#f5a623;
}

.siteFooter__nav{
  display:flex;
  align-items:center;
  gap:26px;
  white-space:nowrap;
}

.siteFooter__nav a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  letter-spacing:.02em;
  opacity:.95;
  transition:opacity .2s ease;
}

.siteFooter__nav a:hover{
  opacity:1;
  text-decoration:underline;
  text-underline-offset:4px;
}

@media (max-width: 768px){
  .siteFooter__inner{ padding:0 20px; }
  .siteFooter__nav{ gap:18px; }
}

@media (max-width: 640px){
  .siteFooter__inner{
    height:auto;
    padding:18px 16px;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }
  .siteFooter__nav{
    flex-wrap:wrap;
    gap:10px 16px;
  }
  .siteFooter__brandText{ font-size:20px; }
}