@charset "UTF-8";

/* Google Fonts - Noto Serif JP */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&display=swap');

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Serif JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #222;
  line-height: 1.7;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* ==========================================================================
   Layout Helpers & Utilities (コンテンツ最大幅1280px統一)
   ========================================================================== */
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-white { color: #fff !important; }
.relative-z { position: relative; z-index: 2; }

.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.btn-header {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-header:hover {
  background-color: #333;
}

.btn-dark {
background-color: #000;
    color: #fff;
    border: 1px solid #000;
    width: 100%;
    max-width: 370px;
    height: 54px;
}

.btn-dark:hover {
  background-color: #333;
  color: #fff;
}

.btn-light {
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
    width: 100%;
    max-width: 370px;
    height: 54px;
}

.btn-light:hover {
  background-color: #f0f0f0;
}

.btn-cta-light {
  background-color: #fff;
  color: #111;
  border: 1px solid #ccc;
  padding: 18px 28px;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.btn-cta-light:hover {
  background-color: #f8f8f8;
  border-color: #999;
}

.btn-icon {
  margin-right: 8px;
}

/* Section Common Titles */
.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
display: block;
    font-size: 0.9rem;
    letter-spacing: 0.07em;
    color: #111;
    margin-bottom: 30px;
    font-weight: 600;
}

#case .section-subtitle{
    color: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.section-desc {
  margin-top: 16px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
}

.img-box {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* ==========================================================================
   1. HEADER & MEGAMENU (sticky完全対応 ＆ 横スクロール無しの全幅背景)
   ========================================================================== */
.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  height: 70px;
}

.header-inner {
  width: 100%;
  max-width: 100%; 
  padding: 0 0 0 30px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo a {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  max-width: 250px;
}

.main-nav {
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: auto; 
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  height: 100%;
  margin: 0;
  padding: 0;
}

.main-nav .nav-item {
  position: relative;
  height: 100%;
  border-left: 1px solid #eee;
}

.main-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 28px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-item.current .nav-link {
  color: #000;
}

/* 現在地・ホバー時の下線 */
.main-nav .nav-item.current .nav-link::after,
.main-nav .nav-item:hover .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
}

.header-cta {
  height: 100%;
  display: flex;
  align-items: center;
}

.header-cta .btn-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 36px;
  background-color: #000;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.header-cta .btn-header:hover {
  background-color: #222;
}

/* --------------------------------------------------------------------------
   メガメニュー設定
   -------------------------------------------------------------------------- */
.dropdown-menu {
  position: absolute;
  top: 70px;
  left: 0;
  padding: 30px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

.dropdown-menu::before {
  content: "";
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  width: 100%;
  height: 110px; 
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  z-index: -1;
    padding-bottom: 30px;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-inner {
  width: 100%;
  margin: 0;
  padding: 0;
}

.dropdown-list {
  list-style: none;
  padding: 0 20px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dropdown-list a {
  font-size: 0.875rem;
  color: #222222;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.25s ease;
  display: inline-block;
}

.dropdown-list a:hover {
  color: #666666;
}

/* ==========================================================================
   2. HERO / MAIN VISUAL
   ========================================================================== */
.hero-section {
  width: 100%;
  background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
  background-image: radial-gradient(circle at 80% 20%, rgba(200, 220, 240, 0.4) 0%, transparent 50%);
  padding: 120px 0 80px;
  text-align: left;
}

.hero-content {
  position: relative;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 50px;
}

.hero-badges {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.badge-circle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  background-color: transparent;
  font-size: 0.85rem;
  color: #555;
}

.badge-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-btn-wrap {
  width: 100%;
  text-align: right;
  margin-top: 20px;
}

.btn-hero-dark {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
    width: 100%;
  max-width: 320px;
  height: 54px;
  padding: 0 24px;
  background-color: #000000;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

.btn-hero-dark:hover {
  opacity: 0.85;
}

.btn-hero-dark .arrow {
  font-size: 0.8rem;
  letter-spacing: -2px;
}
/* ==========================================================================
   3. STRENGTH / FEATURES
   ========================================================================== */
.strength-section {
  width: 100%;
  padding: 150px 0;
  background: #E7EAED;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.strength-card {
  padding: 32px 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.strength-number {
  display: inline-block;
  background-color: #111;
  color: #fff;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.strength-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
}

.strength-card .img-box {
  margin-bottom: 20px;
}

.strength-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

/* ==========================================================================
   4. SERVICE / APPROACH (トップ・詳細ページ共通・全幅100%レイアウト)
   ========================================================================== */
.service-section {
  width: 100%;
  padding: 120px 0;
  background-color: #fff;
}

.service-split {
display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  margin-left: calc(-1 * (100vw - 100%) / 2 - 7px);
  margin-right: calc(-1 * (100vw - 100%) / 2 - 20px);
  box-sizing: border-box;
}

.split-block {
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.split-light {
  background-color: #ffffff;
  color: #222222;
  border-top: 1px solid #e1e8ed;
  border-bottom: 1px solid #e1e8ed;
}

.split-dark {
  background-color: #0b0e14;
  color: #ffffff;
}

.split-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.split-block h3 {
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.split-dark h3 {
  border-bottom-color: #333333;
}

.split-desc {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.6;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  max-width: 520px;
  width: 100%;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.check-list li::before {
  content: "☐";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
}

.check-list-light li::before {
  color: #ffffff;
}

.split-detail {
  max-width: 520px;
  width: 100%;
  font-size: 0.85rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* ==========================================================================
   5. CASE STUDY (背景画像100%)
   ========================================================================== */
.case-section {
  width: 100%;
  position: relative;
  padding: 150px 0;
  background-image: url('images/achievements_bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.case-slider-wrap {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 40px;
}

.slide-nav {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.slide-nav:hover {
  background: rgba(255,255,255,0.4);
}

.slide-nav.prev { left: -20px; }
.slide-nav.next { right: -20px; }

.case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.case-card {
  background-color: #ffffff;
  color: #222;
  padding: 28px 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
  background-color: #f1f5f9;
  padding: 4px 10px;
}

.case-card-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #111;
}

.case-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8fafc;
  padding: 16px;
  margin-bottom: 20px;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric .label {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 4px;
}

.metric .val {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.metric.highlight .val {
  color: #0f172a;
  font-weight: 700;
}

.metric-arrow {
  color: #94a3b8;
  font-weight: bold;
}

.case-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #000;
  text-align: right;
  display: block;
}

.case-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   6. FAQ (背景100%)
   ========================================================================== */
.faq-section {
  width: 100%;
  padding: 150px 0;
  background-color: #fcfcfc;
}

.faq-list {
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: #111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 1.5rem;
  color: #111;
  transition: transform 0.3s ease;
}

details[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0;
  font-size: 0.9rem;
  color: #111;
  line-height: 1.7;
}

/* ==========================================================================
   7. BOTTOM CTA SECTION
   ========================================================================== */
.cta-banner-section {
  width: 100%;
  background-color: #C6C6C6;
  padding: 80px 0 90px;
  text-align: center;
}

.cta-banner-section h2 {
  font-size: 1.45rem;
  font-weight: 500;
  color: #111111;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.cta-banner-section p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111111;
  margin-bottom: 50px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1080px;
  margin: 0 auto;
}

/* 白枠大型ボタン */
.btn-cta-light {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  height: 110px;
  background-color: #ffffff;
  color: #111111;
  border: none;
  border-radius: 0;
  padding: 0 24px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-light:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 16px;
  flex-shrink: 0;
}

.btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0);
}

/* ==========================================================================
   8. FOOTER (背景100%)
   ========================================================================== */
.site-footer {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0 60px;
  font-size: 0.85rem;
}

.footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid #333333;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.footer-logo .logo-mark img {
  max-width: 100%;
  min-height: 25px;
}

/* 中央ナビゲーション (均等配置・白文字) */
.footer-links {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #333333;
  padding-bottom: 50px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-nav-title {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-nav-title:hover {
  opacity: 0.7;
}

/* サブメニューリスト（- 代表挨拶 など） */
.footer-sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-sub-menu a {
  color: #ffffff;
  font-size: 0.825rem;
  font-weight: 400;
  opacity: 0.9;
  transition: opacity 0.25s ease;
  white-space: nowrap;
}

.footer-sub-menu a:hover {
  opacity: 0.6;
}

/* 下部エリア（個人情報保護方針・コピーライト） */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-sub-links a {
  color: #ffffff;
  font-size: 0.825rem;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer-sub-links a:hover {
  opacity: 0.7;
}

.copyright {
  color: #ffffff; /* 黒で見えなくなっていた文字色を白に変更 */
  font-size: 0.825rem;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   下層ページ共通スタイル (PAGE HERO & BREADCRUMB - 背景100%)
   ========================================================================== */
.page-hero {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0 30px; 
  border-bottom: 1px solid #f0f0f0;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.page-hero-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 24px; 
}

.page-hero-title-en {
  font-size: 3.2rem;
  font-weight: 400;
  color: #111111;
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-hero-title-ja {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333333;
}

.breadcrumb {
  margin-top: 40px;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: #666666;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "＞";
  margin: 0 10px;
  font-size: 0.7rem;
  color: #999999;
}

.breadcrumb a {
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #000000;
  text-decoration: underline;
}

.breadcrumb span {
  color: #333333;
}

.page-main {
  width: 100%;
  padding: 125px 0 100px;
}

/* ==========================================================================
   プライバシーポリシーページ
   ========================================================================== */
.privacy-content {
  background-color: #fff;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
}

.privacy-lead {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.privacy-block {
  margin-bottom: 40px;
}

.privacy-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #111;
}

.privacy-block p {
  margin-bottom: 12px;
}

.privacy-block ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.privacy-block li {
  margin-bottom: 6px;
}

.privacy-info-box {
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  padding: 24px;
  border-radius: 4px;
  margin-top: 20px;
}

.privacy-info-box p {
  margin-bottom: 8px;
}

.privacy-info-box p:last-child {
  margin-bottom: 0;
}

.privacy-date {
  text-align: right;
  margin-top: 20px;
  color: #666;
}

.privacy-company {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.privacy-company h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ==========================================================================
   ガイドライン（遵守の宣言）
   ========================================================================== */
.guideline-content {
  background-color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #333333;
}

.guideline-lead {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}

.guideline-lead h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
}

.guideline-lead p {
  margin-bottom: 16px;
}

.guideline-block {
  margin-bottom: 40px;
}

.guideline-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #111111;
}

.guideline-block ol {
  padding-left: 20px;
  margin-bottom: 0;
}

.guideline-block li {
  margin-bottom: 12px;
}

.guideline-block li:last-child {
  margin-bottom: 0;
}

.guideline-footer-info {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.guideline-footer-info .date {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 12px;
}

.guideline-footer-info .company {
  font-size: 1rem;
  color: #111111;
}

.guideline-footer-info .company strong {
  font-size: 1.05rem;
}

/* ==========================================================================
   よくある質問（FAQ）ページ用スタイル
   ========================================================================== */
.faq-page-content {
  background-color: #ffffff;
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-lead-text {
  font-size: 1.05rem;
  margin-bottom: 60px;
}

.faq-category {
  margin-bottom: 70px;
}

.faq-category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  display: flex;
  flex-direction: column;
}

.faq-question {
  font-size: 0.95rem;
  font-weight: 400;
  color: #111111;
  padding-bottom: 20px;
  border-bottom: 1px solid #111; 
  line-height: 1.6;
}

.faq-answer {
  font-size: 0.9rem;
  color: #333333;
  line-height: 1.85;
  padding-top: 20px;
}

.faq-answer p {
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: #111111;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.faq-answer a:hover {
  opacity: 0.7;
}

/* ==========================================================================
   代表挨拶・プロフィール
   ========================================================================== */
.greeting-section {
  margin-bottom: 100px;
}

.greeting-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

.greeting-left {
  display: flex;
  flex-direction: column;
}

.greeting-photo-box {
  width: 100%;
  height: 400px;
  background-color: #e5e5e5;
  margin-bottom: 24px;
  overflow: hidden;
}

.greeting-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.greeting-signature {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #111111;
}

.greeting-signature .company-name {
  font-size: 0.9rem;
  color: #333333;
  margin-bottom: 4px;
}

.greeting-right h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.greeting-text p {
  font-size: 0.9rem;
  color: #333333;
  line-height: 1.9;
  margin-bottom: 24px;
}

.greeting-text p:last-child {
  margin-bottom: 0;
}

.profile-section {
  padding-top: 60px;
  border-top: 1px solid #e5e5e5;
}

.profile-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 40px;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.profile-col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #111111;
}

.profile-col p {
  font-size: 0.875rem;
  color: #444444;
  line-height: 1.85;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-item {
  margin-bottom: 24px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  font-weight: 700;
  font-size: 0.9rem;
  color: #111111;
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.875rem;
  color: #444444;
  line-height: 1.8;
}

/* ==========================================================================
   企業理念（Philosophy）
   ========================================================================== */
.ph-top-message {
  text-align: center;
  padding: 20px 0 90px;
}

.ph-top-message h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.ph-top-message p {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.85;
}

/* 存在意義 & 目指す姿 */
.ph-section {
  margin-bottom: 100px;
}

.ph-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ph-block-grid.reverse .ph-block-text {
  order: 2;
}

.ph-block-grid.reverse .ph-block-image {
  order: 1;
}

.ph-block-image {
  width: 100%;
  height: 500px;
  background-color: #e5e5e5;
  overflow: hidden;
}

.ph-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph-sub-en {
  display: block;
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 8px;
}

.ph-block-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 24px;
}

.ph-block-text p {
  font-size: 0.9rem;
  color: #333333;
  line-height: 1.9;
  margin-bottom: 16px;
}

.ph-block-text p:last-child {
  margin-bottom: 0;
}

/* 行動原則 セクション */
.ph-value-section {
  width: 100%;
  position: relative;
  background: radial-gradient(circle at 10% 50%, rgba(220, 235, 252, 0.6), transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(230, 240, 255, 0.5), transparent 50%),
              #fcfdfe;
  padding: 100px 0;
  margin-bottom: 100px;
}

.ph-value-grid {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 60px;
  align-items: start;
}

.ph-value-left h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 24px;
}

.ph-value-left p {
  font-size: 0.9rem;
  color: #444444;
  line-height: 1.85;
}

.ph-value-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ph-value-item {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 30px;
}

.ph-value-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ph-value-num-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.ph-value-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}

.ph-value-desc {
  font-size: 0.875rem;
  color: #444444;
  line-height: 1.8;
}

/* 社名に込めた思い セクション */
.ph-identity-section {
  text-align: center;
  padding: 40px 0 80px;
}

.ph-identity-section .ph-sub-en {
  margin-bottom: 12px;
}

.ph-identity-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 50px;
}

.ph-identity-logo {
  margin-bottom: 50px;
}

.ph-identity-logo img {
  max-width: 280px;
  height: auto;
  margin: 0 auto;
}

.ph-identity-catch {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 50px;
}

.ph-identity-text {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}

.ph-identity-text p {
  font-size: 0.9rem;
  color: #333333;
  line-height: 3;
  margin-bottom: 16px;
  text-align: center;
}

/* ==========================================================================
   会社概要（Company）
   ========================================================================== */
.company-hero-image {
  width: calc(50vw + 250px);
  margin-left: calc(-50vw + 50%); 
  height: 500px;
  margin-bottom: 80px;
  overflow: hidden;
  background-color: #e5e5e5;
}

.company-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 会社概要 (Outline) セクション */
.company-outline-section {
  margin-bottom: 120px;
}

.company-outline-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.company-section-title h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.4;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.company-table th {
  width: 22%;
  padding: 24px 16px 24px 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: #333333;
  text-align: left;
  vertical-align: top;
}

.company-table td {
  padding: 24px 0;
  font-size: 0.9rem;
  color: #111111;
  line-height: 1.8;
  vertical-align: top;
}

.company-table td a {
  color: #111111;
  text-decoration: underline;
}

.company-table td a:hover {
  opacity: 0.7;
}

/* アクセス (Access) セクション */
.company-access-section {
  width: 100%;
  margin-bottom: 100px;
}

.company-access-grid {
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 100px;
    align-items: center;
}


.company-map-wrap {
  height: 480px;
  background-color: #f0f0f0;
  box-sizing: border-box;
}

.company-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.company-access-info {
  display: flex;
  flex-direction: column;
}

.company-access-info .address {
  font-size: 0.9rem;
  color: #333333;
  line-height: 1.85;
  margin-top: 16px;
}

/* ==========================================================================
   サービス（Service）
   ========================================================================== */

/* 1. トップメッセージ */
.sv-top-message {
  padding: 20px 0 60px;
  margin-bottom: 60px;
}

.sv-top-message h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.sv-top-message p {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.85;
}

/* 2. 選ばれる3つの理由 (背景100%) */
.sv-reasons-section {
  width: 100%;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(220, 235, 252, 0.6), transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(230, 240, 255, 0.5), transparent 50%),
              #fcfdfe;
  padding: 125px 0 120px;
  margin-bottom: 120px;
}

.sv-reasons-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 80px;
}

.sv-reason-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.sv-reason-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sv-reason-item.reverse .sv-reason-text {
  order: 2;
}

.sv-reason-item.reverse .sv-reason-image {
  order: 1;
}

.sv-reason-num-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}

.sv-reason-num-title .num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111111;
  line-height: 1;
}

.sv-reason-num-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.4;
}

.sv-reason-text p {
  font-size: 0.9rem;
  color: #333333;
  line-height: 1.85;
}

.sv-reason-image {
  width: 100%;
  height: 320px;
  background-color: #e5e5e5;
  overflow: hidden;
}

.sv-reason-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sv-approach-title-wrap{
    margin-bottom: 90px;
}

/* 4. ご相談から成約までの流れ */
.sv-flow-section {
  margin-bottom: 120px;
}

.sv-flow-title-wrap {
  margin-bottom: 60px;
    margin-top: 100px;
}

.sv-flow-title-wrap h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 16px;
}

.sv-flow-title-wrap p {
  font-size: 0.9rem;
  color: #444444;
  line-height: 1.8;
}

.sv-flow-bar-img {
  width: 100%;
  margin-bottom: 60px;
}

.sv-flow-bar-img img {
  width: 100%;
  height: auto;
}

.sv-phase-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sv-phase-card {
  background-color: #f7f8f9;
  padding: 40px;
  border-radius: 4px;
}

.sv-phase-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.sv-phase-num {
  font-size: 1.8rem;
  font-weight: 700;
  
  color: #111111;
  line-height: 1;
}

.sv-phase-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111111;
}

.sv-phase-period {
  font-size: 0.9rem;
  color: #666666;
  margin-left: 8px;
}

.sv-step-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sv-step-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}

.sv-step-item p {
  font-size: 0.875rem;
  color: #444444;
  line-height: 1.8;
}

.sv-step-item p .note {
  font-size: 0.8rem;
  color: #666666;
}

/* ==========================================================================
   料金体系（Price）
   ========================================================================== */

/* 1. 料金の特徴（4つのカード） */
.pr-features-section {
  width: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(220, 235, 252, 0.6), transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(230, 240, 255, 0.5), transparent 50%),
              #fcfdfe;
  padding: 80px 0 100px;
  margin-bottom: 100px;
}

.pr-lead-wrap {
  margin-bottom: 60px;
}

.pr-lead-wrap h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 30px;
}

.pr-lead-wrap p {
  font-size: 0.9rem;
  color: #444444;
  line-height: 1.8;
}

.pr-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pr-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.pr-card-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pr-card-value {
  font-size: 1.8rem;
  font-weight: 700;
  
  color: #111111;
  margin-bottom: 12px;
  line-height: 1.2;
}

.pr-card-value span {
  font-size: 1rem;
}

.pr-card-sub {
  font-size: 0.75rem;
  color: #666666;
}

/* 2. 共通ブロック */
.pr-section-block {
  margin-bottom: 100px;
    margin-top: 100px;
}

.pr-section-header {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 16px;
  margin-bottom: 30px;
}

.pr-section-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111111;
}

.pr-section-desc {
  font-size: 0.9rem;
  color: #333333;
  line-height: 1.85;
  margin-bottom: 30px;
}

.pr-section-desc p {
  margin-bottom: 12px;
}

.pr-section-desc p:last-child {
  margin-bottom: 0;
}

/* 比較テーブル */
.pr-table-wrap {
  max-width: 900px;
  margin: 0 auto 20px;
}

.pr-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.9rem;
    margin: 60px 0;
}

.pr-table th, .pr-table td {
  border: 1px solid #e0e0e0;
  padding: 16px;
}

.pr-table th {
  background-color: #cacaca;
  font-weight: 700;
  color: #111111;
}

.pr-table td.bg-gray {
  background-color: #cacaca;
}

/* 図表イメージ配置用 */
.pr-diagram-img {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 30px;
  text-align: center;
}

.pr-diagram-img img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* レーマン手数料率と最低報酬のグリッド */
.pr-lehman-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 110px;
  align-items: center;
  margin-bottom: 40px;
}

.pr-lehman-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
    border: 1px solid #e0e0e0;
}

.pr-lehman-table th, .pr-lehman-table td {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 14px 12px;
}

.pr-lehman-table th {
  background-color: #cacaca;
  text-align: left;
  font-weight: 700;
  color: #111111;
}

.pr-lehman-table td {
  text-align: right;
  color: #333333;
}

.pr-min-fee-circle {
  width: 240px;
  height: 240px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.pr-min-fee-circle .label {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.pr-min-fee-circle .value {
  font-size: 1.8rem;
  font-weight: 700;
  
  line-height: 1.2;
  margin-bottom: 8px;
}

.pr-min-fee-circle .sub {
  font-size: 0.75rem;
  opacity: 0.8;
}


.pr-commitment-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pr-commitment-card {
  padding: 20px 0;
}

.pr-commitment-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 12px;
}

.pr-commitment-header .num {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111111;
  line-height: 1;
}

.pr-commitment-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111111;
}

.pr-commitment-body {
  font-size: 0.9rem;
  color: #333333;
  line-height: 1.85;
}

.cmp-chart-container {
  width: 100%;
  max-width: 1080px;
  margin: 40px auto;
}

.cmp-chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.cmp-chart-block {
  display: flex;
  flex-direction: column;
}

/* 上部タイトルバー */
.cmp-chart-header {
  padding: 12px 20px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
}

.cmp-chart-header.header-dark {
  background-color: #000000;
  color: #ffffff;
}

.cmp-chart-header.header-light {
  background-color: #e8e8e8;
  color: #333333;
}

/* グラフエリア */
.cmp-bars-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  height: 320px;
  padding-bottom: 40px;
margin-top: 50px;
}

.cmp-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 110px;
}

/* 単体バー（グレー） */
.cmp-bar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
}

.cmp-bar.bar-gray {
  background-color: #8c8c8c;
}

/* 積み上げバーコンテナ */
.cmp-bar-stacked {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* 積み上げバーの要素 */
.cmp-bar-top,
.cmp-bar-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  padding: 8px 4px;
}

.cmp-bar-top small,
.cmp-bar-bottom small {
  font-size: 0.72rem;
  font-weight: 400;
}

/* カラー指定 */
.bar-black {
  background-color: #000000;
}

.bar-blue {
  background-color: #0033a0;
}

.bar-red {
  background-color: #a80000;
}

.bar-darkgray {
  background-color: #4a4a4a;
}

/* バー下部のキャプション文字 */
.cmp-bar-label {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #111111;
  text-align: center;
  white-space: nowrap;
}

.cmp-chart-container {
  width: 100%;
  max-width: 960px;
  margin: 50px auto;
}

.cmp-chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cmp-chart-block {
  display: flex;
  flex-direction: column;
  background-color: #fafafa;
  border: 1px solid #eaeaea;
  padding-bottom: 24px;
}

/* グラフメイン枠 */
.cmp-chart-body {
  padding: 24px 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cmp-chart-sub {
  font-size: 0.85rem;
  color: #555555;
  margin-bottom: 20px;
  text-align: center;
}

/* バーを積み重ねるエリア */
.cmp-bars-group {
  width: 100%;
  height: 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cmp-bar-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 8px;
}

/* 高さの比率指定 */
.cmp-bar-item.flex-large {
  flex: 2.2; /* 高さ大きめ指定 */
}

.cmp-bar-item:not(.flex-large) {
  flex: 1;
}

/* カラータイプ */
.bar-gray-box {
  background-color: #8c8c8c;
}

.bar-blue-box {
  background-color: #0033a0;
}

.bar-red-box {
  background-color: #a80000;
}

/* = 記号 */
.cmp-equal {
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #666666;
  line-height: 1;
  margin: -2px 0;
}

/* 下部キャプションテキスト */
.cmp-chart-caption {
  font-size: 0.8rem;
  color: #333333;
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

#fee{
    padding-top: 0;
}

#fee .pr-features-section{
    margin-bottom: 0;
}

.fee-process-section {
  width: 100%;
  margin: 0
}

/* 上部 黒背景エリア */
.fee-process-header {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  padding: 100px 0 325px;
}

.fee-process-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* 下部 白背景エリア＆カード */
.fee-process-body {
  width: 100%;
  margin-top: -260px;
}

.fee-process-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 60px 30px 80px;
  position: relative;
}

/* 横軸の線 */
.fee-flow-line {
  position: absolute;
  top: 92px;
  left: 60px;
  right: 60px;
  height: 1px;
  background-color: #cccccc;
  z-index: 1;
}

/* 01〜08のグリッドコンテナ */
.fee-flow-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  position: relative;
  z-index: 2;
}

.fee-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* 円形数字アイコン */
.fee-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.circle-white {
  background-color: #ffffff;
  border: 1px solid #999999;
  color: #111111;
}

.circle-gray {
  background-color: #777777;
  color: #ffffff;
}

.circle-black {
  background-color: #000000;
  color: #ffffff;
}

/* 縦書きテキスト領域 */
.fee-vertical-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 0.85rem;
  color: #111111;
  letter-spacing: 0.15em;
  line-height: 1.5;
  height: 200px;
}

/* バッジ（中間金100万円・成功報酬） */
.fee-badge-wrap {
  position: absolute;
  top: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
}

.fee-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  border-radius: 2px;
}

.badge-gray {
  background-color: #777777;
}

.badge-black {
  background-color: #000000;
}

.fee-badge-note {
  font-size: 0.68rem;
  color: #666666;
  margin-top: 6px;
}

.fee_list{
    padding-left: 20px;
    margin: 20px 0;
}

.fee-sim-container {
  width: 100%;
  margin: 40px auto 0;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  padding: 36px 30px;
}

.fee-sim-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 24px;
}

.fee-sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fee-sim-card {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.fee-sim-card-header {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #dddddd;
}

.fee-sim-card-header .highlight {
  font-size: 1.1rem;
}

.fee-sim-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

/* 単純計算の計算式 */
.fee-sim-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
}

.fee-sim-formula.total {
  justify-content: flex-end;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eeeeee;
}

.fee-sim-formula .formula-result {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111111;
}


/* 内訳計算用 */
.fee-sim-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.825rem;
  color: #555555;
  background-color: #fafafa;
  padding: 12px;
  border-radius: 2px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.breakdown-item .calc {
  font-weight: 600;
  color: #222222;
}

.breakdown-plus {
  text-align: center;
  font-weight: bold;
  color: #888888;
  font-size: 0.8rem;
  line-height: 1;
}

/* ==========================================================================
   成約実績（Achievements）
   ========================================================================== */

/* 上部ヒーローエリア */
.ach-hero-section {
  width: 100%;
  position: relative;
  background-image: url('images/achievements_bg.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 80px 0 60px;
  margin-bottom: 80px;
}

/* タイトルエリア */
.ach-hero-section .page-hero-title-wrap,
.ach-hero-title-group {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 24px;
}

.ach-hero-title-en {
  font-size: 3.2rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.ach-hero-title-ja {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0;
  opacity: 0.9;
}

.ach-hero-catch {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.ach-hero-desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: #111;
  opacity: 0.95;
  margin-bottom: 40px;
}

.ach-hero-desc p {
  margin-bottom: 8px;
}

.ach-hero-desc p:last-child {
  margin-bottom: 0;
}

/* パンくずリスト */
.ach-breadcrumb {
  margin-top: 20px;
}

.ach-breadcrumb ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.ach-breadcrumb li {
  display: flex;
  align-items: center;
}

.ach-breadcrumb li + li::before {
  content: "＞";
  margin: 0 10px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

.ach-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.ach-breadcrumb a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.ach-breadcrumb span {
  color: #ffffff;
}

/* 絞り込みフィルター */
.ach-filter-section {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 30px;
  margin-bottom: 60px;
}

.ach-filter-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ach-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px 12px;
}

.ach-checkbox-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #333333;
  cursor: pointer;
  user-select: none;
}

.ach-checkbox-item input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #111111;
  cursor: pointer;
}

/* 成約実績カードグリッド */
.ach-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 100px;
}

.ach-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ach-card-catch {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111111;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ach-card-sides-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 16px;
}

.ach-side-title {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 0;
}

.ach-card-sides-body {
  display: grid;
  grid-template-columns: 1fr 20px 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.78rem;
  color: #333333;
  line-height: 1.6;
}

.ach-side-col {
  text-align: center;
}

.ach-side-col .industry {
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}

.ach-side-col .detail {
  font-size: 0.72rem;
  color: #666666;
}

.ach-cross-mark {
  text-align: center;
  font-size: 1.1rem;
  color: #888888;
  font-weight: 300;
}

.ach-card-footer {
  border-top: 1px solid #eeeeee;
  padding-top: 12px;
  font-size: 0.75rem;
  color: #111111;
  font-weight: 700;
  text-align: left;
}

/* ==========================================================================
   お問い合わせ
   ========================================================================== */
.contact-lead-section {
  margin-bottom: 50px;
}

.contact-lead-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
  margin-bottom: 24px;
}

.contact-lead-desc {
  font-size: 0.875rem;
  color: #333333;
  line-height: 1.85;
  margin-bottom: 24px;
}

.contact-lead-desc p {
  margin-bottom: 8px;
}

.contact-lead-desc p:last-child {
  margin-bottom: 0;
}

.contact-required-note {
  font-size: 0.85rem;
  color: #d32f2f;
  font-weight: 500;
}

/* フォーム構造 */
.contact-form-wrap {
  max-width: 960px;
  margin: 0 auto 100px;
}

.contact-form-group {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  padding: 20px 0;
}

.contact-form-group.align-top {
  align-items: flex-start;
  padding-top: 24px;
}

.contact-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-label .req {
  color: #d32f2f;
  font-size: 0.9rem;
}

/* 入力フィールド */
.contact-input-text,
.contact-select,
.contact-textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9rem;
  border: 1px solid #cccccc;
  border-radius: 2px;
  background-color: #ffffff;
  color: #333333;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input-text:focus,
.contact-select:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #111111;
}

.contact-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%3C333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.contact-textarea {
  height: 160px;
  resize: vertical;
  line-height: 1.6;
}

/* ラジオボタン */
.contact-radio-group {
  display: flex;
  align-items: center;
  gap: 32px;
}

.contact-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #333333;
  cursor: pointer;
}

.contact-radio-label input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #111111;
  cursor: pointer;
}

/* 個人情報・チェックボックス */
.contact-privacy-desc {
  font-size: 0.825rem;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-privacy-desc a {
  color: #111111;
  text-decoration: underline;
  font-weight: 600;
}

.contact-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111111;
  cursor: pointer;
}

.contact-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #111111;
  cursor: pointer;
}

/* 送信ボタン */
.contact-submit-wrap {
  text-align: center;
  margin-top: 50px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 48px;
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #cccccc;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-submit:hover {
  background-color: #111111;
  color: #ffffff;
  border-color: #111111;
}

@media (min-width: 1025px) {
  .hamburger-btn,
  .sp-nav-cta {
    display: none !important;
  }
}

/* ==========================================================================
   Responsive Design (Mobile & Tablet)
   ========================================================================== */
@media (max-width: 1024px) {
  /* ヘッダー周り */
  .header-cta {
    position: absolute;
    right: 70px;
  }

  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
    margin-left: auto;
    margin-right: 20px;
  }

  .hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #111111;
    transition: all 0.3s ease;
  }

  .hamburger-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* ハンバーガーメニュー本体 */
  .main-nav {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #ffffff;
    padding: 40px 30px;
    overflow-y: auto;
    transform: translateX(100%); /* 右側に退避 */
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    margin-left: 0;
  }

  /* メニュー展開時 */
  .main-nav.active {
    transform: translateX(0);
  }

  .main-nav .nav-list {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .main-nav .nav-item {
    border-left: none;
    border-bottom: 1px solid #eeeeee;
    height: auto;
    width: 100%;
    position: static; /* PC用のabsoluteをクリア */
  }

  .main-nav .nav-link {
    justify-content: flex-start;
    padding: 18px 0;
    font-size: 1rem;
    font-weight: 600;
    height: auto;
  }

  .main-nav .nav-item.current .nav-link::after,
  .main-nav .nav-item:hover .nav-link::after {
    display: none;
  }

  /* ドロップダウン（サブメニュー）崩れ防止上書き */
  .dropdown-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    padding: 0 0 16px 12px !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .dropdown-menu::before {
    display: none !important;
  }

  .dropdown-inner {
    padding: 0;
  }

  .dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
  }

  .dropdown-list a {
    font-size: 0.9rem;
    color: #666666;
    padding: 4px 0;
    display: block;
  }

  /* メニュー下部のCTAボタン */
  .sp-nav-cta {
    margin-top: 40px;
    width: 100%;
    text-align: center;
  }

  .sp-nav-cta .btn {
    max-width: 100%;
  }

  /* 1024px用レイアウト */
  .pr-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pr-lehman-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ach-checkbox-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .company-outline-grid {
    grid-template-columns: 200px 1fr;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .strength-grid, 
  .case-cards, 
  .ach-cards-grid {
    grid-template-columns: 1fr;
  }

  .service-split {
    grid-template-columns: 1fr;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }

  .hero-badges {
    gap: 15px;
  }

  .cta-btn-group {
    flex-direction: column;
    align-items: center;
  }

  .slide-nav {
    display: none;
  }

  .greeting-grid, 
  .profile-grid, 
  .ph-block-grid, 
  .ph-value-grid, 
  .cmp-chart-grid, 
  .fee-sim-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ph-block-grid.reverse .ph-block-text { order: 2; }
  .ph-block-grid.reverse .ph-block-image { order: 1; }
  .ph-block-image { height: 300px; }

  .company-hero-image {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 320px;
  }

  .company-outline-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .company-access-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .company-map-wrap {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 360px;
  }

  .company-map-wrap iframe {
    width: 100%;
    left: 0;
  }

  /* 料金プロセスのスマホ最適化（カード縦並び化） */
  .fee-process-header {
    padding: 60px 0 180px;
  }

  .fee-process-body {
    margin-top: -140px;
  }

  .fee-process-card {
    padding: 30px 16px;
  }

  .fee-flow-line {
    display: none;
  }

  .fee-flow-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fee-flow-item {
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 24px;
  }

  .fee-flow-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .fee-vertical-text {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    height: auto;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 12px;
  }

  .fee-badge-wrap {
    position: static;
    margin-top: 8px;
  }

  .contact-form-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* 小型スマホ（〜768px） */
@media (max-width: 768px) {
  /* ハンバーガーメニューを表示維持するため .main-nav { display: none; } は除外 */

  .hero-badges { 
    flex-wrap: wrap; 
    justify-content: center;
  }

  .hero-btn-wrap {
    text-align: center;
  }

  .btn-hero-dark {
    max-width: 100%;
  }

  .sv-reason-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sv-reason-item.reverse .sv-reason-text { order: 1; }
  .sv-reason-item.reverse .sv-reason-image { order: 2; }

  .ach-checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-links { 
    flex-direction: column; 
    gap: 24px; 
  }

  .footer-bottom { 
    flex-direction: column; 
    gap: 16px; 
    align-items: flex-start; 
  }

  .page-hero { 
    padding: 50px 0 20px; 
  }

  .page-hero-inner { 
    min-height: 140px; 
  }

  .page-hero-title-wrap { 
    flex-direction: column; 
    gap: 8px; 
    align-items: flex-start; 
  }

  .company-table th {
    width: 30%;
  }

  .ph-identity-text p { 
    text-align: left; 
  }

  .btn-cta-light {
    height: auto;
    padding: 20px 16px;
  }
}