/* =============================================
   CHOICE HOME株式会社 - Business Detail Pages CSS
   事業詳細ページ共通スタイル
   ============================================= */

/* ========================================
   NAVBAR ALWAYS-SCROLLED (詳細ページ用)
   ======================================== */
.navbar.scrolled {
  background: rgba(10, 31, 68, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 8px 32px rgba(10,31,68,0.12);
}

.nav-link-active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.15) !important;
}

/* ========================================
   BIZ HERO SECTION
   ======================================== */
.biz-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.biz-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.biz-hero:hover .biz-hero-bg {
  transform: scale(1.0);
}

.biz-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,31,68,0.25) 0%,
    rgba(10,31,68,0.65) 60%,
    rgba(10,31,68,0.88) 100%
  );
  z-index: 1;
}

.biz-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 100px 0 64px;
}

/* ---- パンくず ---- */
.biz-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 2px;
}

.biz-breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  transition: var(--transition);
}

.biz-breadcrumb a:hover { color: var(--gold-light); }

.biz-breadcrumb span {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
}

.biz-breadcrumb span:last-child {
  color: var(--gold-light);
}

/* ---- ヒーローテキスト ---- */
.biz-hero-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.biz-hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-light);
}

.biz-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.biz-hero-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.8);
  line-height: 2.0;
  font-weight: 300;
}

/* ========================================
   BIZ OVERVIEW
   ======================================== */
.biz-overview { background: var(--white); }

.biz-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.biz-overview-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 24px;
  margin-top: 12px;
}

.biz-overview-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* 統計 */
.biz-overview-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}

.biz-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  min-width: 90px;
}

.biz-stat-num {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  text-align: center;
}

.biz-stat-label {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}

/* 画像エリア */
.biz-overview-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: visible;
}

.biz-overview-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.biz-overview-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 4px 24px rgba(184,154,90,0.5);
  border: 3px solid var(--white);
}

.biz-overview-badge i {
  font-size: 20px;
  margin-bottom: 4px;
}

.biz-overview-badge-green {
  background: linear-gradient(135deg, #2D8C4E, #22703E);
  box-shadow: 0 4px 24px rgba(45,140,78,0.4);
}

.biz-overview-badge-warm {
  background: linear-gradient(135deg, #B85A3A, #8C3A20);
  box-shadow: 0 4px 24px rgba(184,90,58,0.4);
}

/* ========================================
   BIZ SERVICE CARDS (詳細ページ内)
   ======================================== */
.biz-services-section { background: var(--white); }

.biz-section-sub {
  font-size: 15px;
  color: var(--gray-600);
  margin-top: 16px;
  line-height: 1.8;
}

.biz-service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.biz-service-cards-5 {
  grid-template-columns: repeat(3, 1fr);
}

/* カード */
.biz-svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.biz-svc-card:hover {
  border-color: var(--navy-pale);
  background: var(--navy-pale);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.biz-svc-card-highlight {
  border-color: var(--gold);
  border-width: 2px;
  background: linear-gradient(135deg, #FFFDF7 0%, #FFF8ED 100%);
}

.biz-svc-card-highlight:hover {
  background: linear-gradient(135deg, #FFF8E8 0%, #FFF0D0 100%);
  border-color: var(--gold);
}

/* アイコン */
.biz-svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10,31,68,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.biz-svc-card:hover .biz-svc-icon {
  background: var(--navy);
  color: var(--white);
}

.biz-svc-icon-green {
  background: rgba(45,140,78,0.1);
  color: #2D8C4E;
}

.biz-svc-card:hover .biz-svc-icon-green {
  background: #2D8C4E;
  color: var(--white);
}

.biz-svc-icon-warm {
  background: rgba(184,90,58,0.1);
  color: #B85A3A;
}

.biz-svc-card:hover .biz-svc-icon-warm {
  background: #B85A3A;
  color: var(--white);
}

/* 本文 */
.biz-svc-body h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.biz-svc-body p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 16px;
}

.biz-svc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.biz-svc-list li {
  font-size: 13px;
  color: var(--gray-800);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.biz-svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

/* バッジ */
.svc-badge {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
  vertical-align: middle;
}

.svc-badge-green {
  background: #2D8C4E;
}

/* ========================================
   外国人関連事業セクション
   ======================================== */
.biz-foreign-section { position: relative; }

.biz-foreign-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(184,154,90,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(255,255,255,0.04) 0%, transparent 40%);
}

.biz-foreign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.biz-foreign-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
}

.biz-foreign-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(184,154,90,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.biz-foreign-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(184,154,90,0.2);
  border: 1px solid rgba(184,154,90,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 20px;
  margin-bottom: 20px;
}

.biz-foreign-card h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.5;
}

.biz-foreign-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 16px;
}

.biz-foreign-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.biz-foreign-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.biz-foreign-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

/* ========================================
   CTA セクション
   ======================================== */
.biz-cta-section { background: var(--off-white); }

.biz-cta-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 72px 60px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--gold);
}

.biz-cta-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.biz-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.4;
}

.biz-cta-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 40px;
}

.biz-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(10,31,68,0.2);
}

/* ========================================
   FOOTER BUSINESS LINKS
   ======================================== */
.footer-business ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-business ul li a:hover {
  color: var(--gold-light);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .biz-overview-grid { grid-template-columns: 1fr; gap: 48px; }
  .biz-overview-img img { height: 360px; }
  .biz-foreign-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .biz-service-cards,
  .biz-service-cards-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .biz-hero { min-height: 50vh; }
  .biz-hero-content { padding: 80px 0 48px; }
  .biz-cta-wrap { padding: 48px 28px; }
  .biz-foreign-grid { grid-template-columns: 1fr; }
  .biz-cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 640px) {
  .biz-service-cards,
  .biz-service-cards-5 {
    grid-template-columns: 1fr;
  }
  .biz-overview-stats { gap: 20px; }
  .biz-breadcrumb { flex-wrap: wrap; }
}
