/* ==========================================================================
   ボタン共通スタイル
   ========================================================================== */

/* ボタンリンクのunderline除去 */
.btns .btn,
.tuikacta .btn {
  text-decoration: none;
}

/* セクション内ボタンコンテナ（custom.cssのabsolute配置を上書き） */
#section-04 .container .btns,
#section-27 .container .btns {
  position: static;
  translate: none;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  width: auto;
  max-width: 700px;
  margin: 0 auto;
}
#section-04 .container .btns .btn,
#section-27 .container .btns .btn {
  display: flex;
  width: auto;
}
#section-27 .container .btns .btn:last-child {
  flex-basis: auto;
}

/* sticky追従バー */
.sticky .btns {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  width: auto;
  max-width: 600px;
}
.sticky .btns .btn {
  display: flex;
  width: auto;
}

/* 電話ボタン */
.tel-btn-html {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, #efc367 0%, #e07a50 100%);
  border: 2px solid #D9683D;
  border-radius: 10px;
  padding: 14px 28px;
  text-decoration: none;
  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: opacity 0.2s;
  cursor: pointer;
  box-sizing: border-box;
}
.tel-btn-html:hover {
  opacity: 0.85;
}
.tel-btn-html .tel-icon {
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}
.tel-btn-html .tel-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.tel-btn-html .tel-main {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
}
.tel-btn-html .tel-sub {
  font-size: 11px;
  color: #fff;
  text-align: center;
}

/* LINEボタン */
.line-btn-html {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, #5fba46 0%, #4a9e34 100%);
  border: 2px solid #3d8a2a;
  border-radius: 10px;
  padding: 14px 28px;
  text-decoration: none;
  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: opacity 0.2s;
  cursor: pointer;
  box-sizing: border-box;
}
.line-btn-html:hover {
  opacity: 0.85;
}
.line-btn-html .line-logo {
  background-color: #fff;
  color: #4a9e34;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
  flex-shrink: 0;
}
.line-btn-html .line-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: #fff;
  line-height: 1.4;
  flex-shrink: 0;
}
.line-btn-html .line-cta {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1;
}
.line-btn-html .line-cta .line-arrow {
  font-size: 14px;
}

/* お問い合わせボタン */
.form-btn-html {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #ffe570 0%, #f5cc3a 100%);
  border: 2px solid #d4ad1a;
  border-radius: 10px;
  padding: 14px 28px;
  text-decoration: none;
  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: opacity 0.2s;
  cursor: pointer;
  box-sizing: border-box;
}
.form-btn-html:hover {
  opacity: 0.85;
}
.form-btn-html .form-text {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}
.form-btn-html .form-arrow {
  font-size: 12px;
  color: #333;
}

/* ==========================================================================
   Section 04 - CTA（上部）
   ========================================================================== */
#section-04 {
  background: linear-gradient(
    135deg,
    #1a3a7a 0%,
    #1a2e5e 50%,
    #0f1e3d 100%
  );
  padding: 40px 20px 50px;
  text-align: center;
}
#section-03-5 {
  background-color: #1a2e5e;
  padding: 20px 20px;
}

/* ==========================================================================
   Section 05 - こういう状況ではありませんか？
   ========================================================================== */
#section-05 {
  background-color: #eceae5 !important;
  overflow: hidden;
}
#section-05 .problems-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 60px 40px 80px;
  min-height: 500px;
}
#section-05 .problems-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
#section-05 .problems-heading {
  position: relative;
  margin-bottom: 32px;
  padding-top: 30px;
}
#section-05 .problems-en {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: bold;
  font-style: italic;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  white-space: nowrap;
}
#section-05 .problems-sub {
  position: relative;
  font-size: 16px;
  color: #1a2e5e;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  border-bottom: 2px solid #1a2e5e;
  display: inline-block;
  padding-bottom: 4px;
}
#section-05 .problems-title {
  font-size: 32px;
  font-weight: bold;
  color: #1a2e5e;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
#section-05 .problems-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  flex-direction: column;
  gap: 0;
  text-align: left;
}
#section-05 .problems-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: normal;
  color: #333;
  line-height: 1.6;
  padding: 16px 0;
  border-bottom: 2px dashed #aab5c8;
}

#section-05 .problems-list li span {
  flex: 1;
}
#section-05 .problems-list li:first-child {
  border-top: 2px dashed #aab5c8;
}
#section-05 .problems-list li strong {
  color: #2a5090;
  font-weight: bold;
  display: inline;
}
#section-05 .problems-list li::before {
  content: "\2713";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background-color: #1a2e5e;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  align-self: center;
}
#section-05 .problems-person {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 340px;
  z-index: 10;
}
#section-05 .problems-person img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(30%);
}

/* ==========================================================================
   Section 06 - 今すぐ相談すべき理由
   ========================================================================== */
#section-06 {
  background-color: #2a5090 !important;
}
#section-06 .reasons-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}
#section-06 .reasons-heading {
  text-align: center;
  margin-bottom: 40px;
}
#section-06 .reasons-label {
  display: inline-block;
  font-size: 15px;
  color: #1a2e5e;
  font-weight: bold;
  letter-spacing: 0.15em;
  background-color: #fff;
  padding: 8px 24px;
  border-radius: 9999px;
  margin-bottom: 20px;
}
#section-06 .reasons-title {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#section-06 .reasons-title em {
  font-style: normal;
  color: #f5cc3a;
  text-decoration: underline;
  text-decoration-color: #f5cc3a;
  text-underline-offset: 4px;
  text-decoration-thickness: 3px;
}
#section-06 .reasons-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 740px;
  margin: 0 auto;
}
#section-06 .reasons-card {
  background-color: #fff;
  border-top: 4px solid #D9683D;
  border-radius: 0;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
#section-06 .reasons-icon {
  flex-shrink: 0;
}
#section-06 .reasons-text {
  font-size: 24px;
  font-weight: normal;
  color: #333;
  line-height: 1.7;
}
#section-06 .reasons-text strong {
  font-weight: bold;
  color: #2a5090;
}

/* ==========================================================================
   Section 07 - 選ばれる理由
   ========================================================================== */
#section-07 {
  background-color: #f5f0e8;
  overflow: hidden;
}
#section-07 .chosen-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 70px;
  position: relative;
}
#section-07 .chosen-heading {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-top: 20px;
}
#section-07 .chosen-en {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: bold;
  font-style: italic;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  white-space: nowrap;
}
#section-07 .chosen-title {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  color: #1a2e5e;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
#section-07 .chosen-logo {
  height: 36px;
  width: auto;
  vertical-align: middle;
  margin-right: 2px;
}
#section-07 .chosen-ga {
  font-size: 28px;
  font-weight: normal;
  color: #333;
  vertical-align: middle;
}
#section-07 .chosen-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.chosen-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.chosen-number {
  margin-bottom: 12px;
}
.chosen-number span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e07a50, #D9683D);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
}
.chosen-card-badges {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}
.chosen-card-badges span {
  display: inline-block;
  background: #1a2e5e;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 12px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}
.chosen-card-title {
  font-size: 24px;
  font-weight: bold;
  color: #1a2e5e;
  margin-bottom: 16px;
  line-height: 1.4;
}
.chosen-card-img {
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
}
.chosen-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.chosen-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.chosen-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  padding: 6px 0;
}

.chosen-card-list li span {
  flex: 1;
}
.chosen-card-list li::before {
  content: "\2713";
  color: #2a5090;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}
.chosen-card-list li strong {
  color: #2a5090;
  font-weight: bold;
}

.chosen-card--wide {
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.chosen-card-list--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.chosen-card-note {
  font-size: 15px;
  color: #888;
  margin-top: 10px;
  text-align: center;
  line-height: 1.6;
}

/* ==========================================================================
   Section 09/10 - 税理士紹介（共通）
   ========================================================================== */
.intro-section {
  background-color: #eceae5;
  overflow: hidden;
}
.intro-section .intro-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px 70px;
  position: relative;
}
.intro-section .intro-heading {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-top: 20px;
}
.intro-section .intro-en {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 72px;
  font-weight: bold;
  font-style: italic;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  white-space: nowrap;
}
.intro-section .intro-title {
  font-size: 32px;
  font-weight: bold;
  color: #1a2e5e;
  letter-spacing: 0.15em;
}

/* プロフィール上部（名前+写真） */
.intro-section .intro-profile {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}
.intro-section .intro-profile-info {
  flex: 0 1 auto;
  text-align: left;
}
.intro-section .intro-name-block {
  border-left: 8px solid #1a2e5e;
  padding-left: 20px;
  margin-bottom: 16px;
}
.intro-section .intro-label {
  font-size: 22px;
  font-weight: bold;
  color: #998c78;
  margin-bottom: 4px;
}
.intro-section .intro-name {
  font-size: 48px;
  font-weight: bold;
  color: #998c78;
  line-height: 1.3;
  margin-bottom: 2px;
  letter-spacing: 0.15em;
}
.intro-section .intro-name-en {
  font-size: 18px;
  color: #998c78;
  font-style: italic;
  letter-spacing: 0.1em;
}
.intro-section .intro-desc {
  font-size: 20px;
  color: #1a2e5e;
  line-height: 1.8;
  font-weight: bold;
}
.intro-section .intro-profile-photo {
  flex-shrink: 0;
}
.intro-section .intro-profile-photo img {
  width: 300px;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* 引用 */
.intro-section .intro-quote {
  font-size: 30px;
  font-weight: bold;
  color: #1a2e5e;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* 特徴ボックス */
.intro-section .intro-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.intro-section .intro-feature {
  font-size: 18px;
  color: #1a2e5e;
  line-height: 1.7;
  padding: 16px 24px;
  border: 2px solid #1a2e5e;
  border-left: 5px solid #1a2e5e;
  background-color: #fff;
  text-align: left;
}
.intro-section .intro-feature strong {
  font-weight: bold;
  color: #1a2e5e;
}

/* 経歴 */
.intro-section .intro-career {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.intro-section .intro-career-title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #1a2e5e;
  display: block;
  width: fit-content;
  padding: 8px 24px;
  margin-bottom: 24px;
  letter-spacing: 0.3em;
  text-align: left;
}
.intro-section .intro-career-list {
  margin: 0;
  padding: 0;
  display: inline-block;
  text-align: left;
}
.intro-section .intro-career-item {
  padding: 8px 0;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}
.intro-section .intro-career-item dt {
  font-weight: normal;
  display: inline;
}
.intro-section .intro-career-item dt::before {
  content: "■";
  color: #1a2e5e;
  margin-right: 6px;
  font-size: 12px;
}
.intro-section .intro-career-item dd {
  display: inline;
  margin: 0;
  margin-left: 1em;
}
.intro-section .intro-career-item--block dt {
  display: block;
  margin-bottom: 4px;
}
.intro-section .intro-career-item--block dd {
  display: block;
  margin-left: 22px;
}

/* ==========================================================================
   Section 11 - 解決までの流れ
   ========================================================================== */
.flow-section {
  background-color: #fff;
  padding: 60px 20px 80px;
}
.flow-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.flow-heading {
  text-align: center;
  position: relative;
  padding-top: 20px;
  margin-bottom: 50px;
}
.flow-en {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
  font-weight: bold;
  font-style: italic;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  white-space: nowrap;
}
.flow-title {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  color: #1a2e5e;
  letter-spacing: 0.1em;
}

/* タイムライン */
.flow-timeline {
  display: flex;
  gap: 0;
}
.flow-row {
  display: flex;
  align-items: flex-start;
  flex: 1;
}
.flow-row--left {
  flex-direction: row;
}
.flow-row--right {
  flex-direction: row-reverse;
  margin-top: 40px;
}
.flow-icon-col {
  flex-shrink: 0;
  width: 200px;
}
.flow-icons {
  width: 100%;
  height: auto;
  display: block;
}
.flow-timeline--sp {
  display: none;
}
.flow-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px 0;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
}
.flow-step-num {
  font-size: 28px;
  font-weight: bold;
  color: #1a2e5e;
  font-style: italic;
  flex-shrink: 0;
  line-height: 1;
}
.flow-step-title {
  font-size: 20px;
  font-weight: bold;
  color: #1a2e5e;
  line-height: 1.6;
}
.flow-step-title span {
  display: block;
  font-size: 16px;
  color: #555;
  font-weight: normal;
}

/* SP */
@media (max-width: 600px) {
  .flow-section {
    padding: 40px 16px 60px;
  }
  .flow-en {
    font-size: 60px;
  }
  .flow-title {
    font-size: 28px;
  }
  .flow-heading {
    margin-bottom: 30px;
  }
  .flow-timeline--pc {
    display: none;
  }
  .flow-timeline--sp {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
  }
  .flow-timeline--sp .flow-icon-col {
    width: 80px;
    flex-shrink: 0;
  }
  .flow-timeline--sp .flow-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
  }
  .flow-timeline--sp .flow-step {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0;
  }
  .flow-step {
    padding: 16px 0;
  }
  .flow-step-num {
    font-size: 22px;
  }
  .flow-step-title {
    font-size: 17px;
  }
  .flow-step-title span {
    display: inline;
    font-size: 17px;
    color: #1a2e5e;
    font-weight: bold;
  }
}

/* ==========================================================================
   よくある事例 - 見出し
   ========================================================================== */
.cases-heading-wrapper {
  background-color: #fff;
  padding: 60px 40px 40px;
}
.cases-heading {
  text-align: center;
  position: relative;
  padding-top: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.cases-en {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: bold;
  font-style: italic;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  white-space: nowrap;
}
.cases-title {
  position: relative;
  font-size: 32px;
  font-weight: bold;
  color: #1a2e5e;
  letter-spacing: 0.15em;
}

/* ==========================================================================
   その他の事例（簡易版）
   ========================================================================== */
.case-section--simple .case-body {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 0 0 16px 16px;
  text-align: left;
}

.case-simple-item {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.case-simple-item:last-child {
  border-bottom: none;
}

.case-simple-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a2e5e;
  margin-bottom: 8px;
}

.case-simple-text {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}

/* SP調整 */
@media (max-width: 600px) {
  .case-section--simple .case-body {
    padding: 20px;
  }

  .case-simple-title {
    font-size: 16px;
  }

  .case-simple-text {
    font-size: 14px;
  }
}

/* 事例ヘッダー */
.case-section {
  padding: 60px 0;
  background-color: #fff;
}
.case-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.case-header {
  background-color: #1a2e5e;
  display: flex;
  align-items: center;
  padding: 24px 32px;
  gap: 0;
}
.case-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  border-right: 3px solid rgba(255, 255, 255, 0.4);
  padding-right: 24px;
  margin-right: 24px;
  line-height: 1.2;
}
.case-number-label {
  font-size: 14px;
  letter-spacing: 0.1em;
}
.case-number-value {
  font-size: 40px;
  font-weight: bold;
}
.case-header-body {
  flex: 1;
  text-align: left;
}
.case-tag {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  padding: 2px 12px;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.case-title {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

/* 事例コンテンツ */
.case-body {
  background-color: #eceae5;
  padding: 40px;
  text-align: center;
  border-radius: 0 0 16px 16px;
}
.case-situation-label {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #a89a82;
  padding: 8px 28px;
  border-radius: 9999px;
  margin-bottom: 24px;
  letter-spacing: 0.15em;
}
.case-situation-text {
  font-size: 20px;
  color: #333;
  line-height: 1.9;
  margin-bottom: 24px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.case-situation-text strong {
  color: #1a2e5e;
  font-weight: bold;
}
.case-checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 600px;
  text-align: left;
}
.case-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  padding: 16px 0;
  border-bottom: 1px solid #ccc;
}
.case-checklist li:first-child {
  border-top: 1px solid #ccc;
}
.case-checklist li::before {
  content: "✔";
  color: #d4944a;
  font-size: 22px;
  flex-shrink: 0;
}

/* 結果・Pointカード */
.case-result-card {
  background-color: #E96B2D;
  border-radius: 16px;
  padding: 40px 36px;
  margin-top: 32px;
  text-align: center;
}
.case-result-label {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #D9683D;
  background-color: #fff;
  padding: 8px 48px;
  border-radius: 9999px;
  margin-bottom: 24px;
  letter-spacing: 0.15em;
}
.case-result-text {
  font-size: 24px;
  color: #fff;
  line-height: 1.9;
  text-align: left;
  max-width: 600px;
  margin: 0 auto 24px;
}
.case-result-text strong {
  color: #FFF3B0;
  font-weight: bold;
}
.case-point-title {
  font-size: 38px;
  font-weight: bold;
  font-style: italic;
  color: #f5cc3a;
  text-align: left;
  max-width: 600px;
  margin: 8px auto 16px;
  border-bottom: 3px solid #f5cc3a;
  display: inline-block;
  padding-bottom: 4px;
}

.case-checklist--orange li {
  color: #D9683D;
  border-bottom-color: #e0a88a;
}
.case-checklist--orange li:first-child {
  border-top-color: #e0a88a;
}
.case-checklist--orange li::before {
  color: #D9683D;
}

@media (max-width: 600px) {
  .cases-heading-wrapper {
    padding: 40px 20px 0;
  }
  .cases-en {
    font-size: 50px;
  }
  .cases-title {
    font-size: 26px;
  }
  .case-section {
    padding: 40px 16px;
  }
  .case-header {
    padding: 20px 20px;
  }
  .case-number-value {
    font-size: 32px;
  }
  .case-title {
    font-size: 20px;
  }
  .case-body {
    padding: 30px 20px;
  }
  .case-checklist li {
    font-size: 20px;
  }
  .case-result-card {
    padding: 30px 20px;
    border-radius: 12px;
  }
  .case-result-text {
    font-size: 17px;
  }
  .case-point-title {
    font-size: 26px;
  }
  .case-checklist li {
    font-size: 20px;
  }
}

/* チーム紹介 */
.intro-section .team-section {
  margin-top: 48px;
}
.intro-section .team-title {
  background-color: #1a2e5e;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 12px 32px;
  letter-spacing: 0.2em;
  display: block;
  max-width: 280px;
  margin: 0 auto;
}

.intro-section .team-photos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 32px;
}
.intro-section .team-photos img {
  flex: 1;
  width: 0;
  min-width: 0;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* 河合セクション - 写真左・名前右の反転レイアウト */

/* ==========================================================================
   Section 21 - 料金体系
   ========================================================================== */
#section-21 {
  background-color: #f5f5f5;
  padding: 60px 20px;
}
#section-21 .price-heading {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
#section-21 .price-heading .price-en {
  font-size: 72px;
  font-weight: bold;
  font-style: italic;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  letter-spacing: 0.05em;
}
#section-21 .price-heading .price-ja {
  font-size: 32px;
  font-weight: bold;
  font-style: italic;
  color: #1a2e5e;
  margin-top: -20px;
  position: relative;
  letter-spacing: 0.1em;
}
#section-21 .price-container {
  max-width: 700px;
  margin: 0 auto;
}
#section-21 .price-free {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
#section-21 .price-free .free-label {
  display: inline-block;
  background-color: #1a2e5e;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 24px;
  border-radius: 4px;
}
#section-21 .price-free .free-arrow {
  color: #1a2e5e;
  font-size: 20px;
}
#section-21 .price-free .free-value {
  color: #d63a00;
  font-size: 42px;
  font-weight: bold;
  line-height: 1;
}
#section-21 .price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
}
#section-21 .price-table tr {
  border-bottom: 1px solid #ccc;
}
#section-21 .price-table th {
  background-color: #e7e3dc;
  font-size: 18px;
  font-weight: bold;
  color: #1a2e5e;
  padding: 24px 20px;
  text-align: center;
  width: 35%;
  vertical-align: middle;
  border-right: 1px solid #ccc;
}
#section-21 .price-table td {
  padding: 24px 24px;
  vertical-align: middle;
}
#section-21 .price-table .price-amount {
  font-size: 28px;
  font-weight: bold;
  color: #1a2e5e;
  line-height: 1.4;
}
#section-21 .price-table .price-amount .tax {
  font-size: 14px;
  font-weight: normal;
  color: #666;
}
#section-21 .price-table .price-amount .yen {
  font-size: 16px;
}
#section-21 .price-table .price-amount.red {
  color: #d63a00;
}
#section-21 .price-table .price-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-top: 6px;
}

/* ==========================================================================
   Section 24 - FAQ
   ========================================================================== */
#section-24 {
  background-color: #f5f5f5;
  padding: 60px 20px;
}
#section-24 .faq-heading {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
#section-24 .faq-heading .faq-en {
  font-size: 72px;
  font-weight: bold;
  font-style: italic;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  letter-spacing: 0.05em;
}
#section-24 .faq-heading .faq-ja {
  font-size: 32px;
  font-weight: bold;
  font-style: italic;
  color: #1a2e5e;
  margin-top: -20px;
  position: relative;
  letter-spacing: 0.1em;
}
#section-24 .faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#section-24 .faq-item {
  background-color: #1a2e5e;
  border-radius: 4px;
  overflow: hidden;
}
#section-24 .faq-question {
  background-color: #0d3b7a;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#section-24 .faq-question .q-label {
  font-size: 32px;
  font-weight: bold;
  font-style: italic;
  color: #ffffff;
  flex-shrink: 0;
  line-height: 1;
}
#section-24 .faq-question .q-text {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.5;
}
#section-24 .faq-answer {
  padding: 20px 24px 24px;
  background-color: #ffffff;
}
#section-24 .faq-answer-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
#section-24 .faq-answer .a-label {
  font-size: 32px;
  font-weight: bold;
  font-style: italic;
  color: #e8a090;
  flex-shrink: 0;
  line-height: 1;
}
#section-24 .faq-answer .a-first {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  line-height: 1.5;
}
#section-24 .faq-answer .a-detail {
  font-size: 15px;
  color: #333333;
  line-height: 1.8;
  padding-left: 48px;
}

/* ==========================================================================
   Section 25 - 事務所概要
   ========================================================================== */
#section-25 {
  background-color: #ffffff;
  padding: 60px 20px;
}
#section-25 .office-container {
  max-width: 820px;
  margin: 0 auto;
}
#section-25 .office-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #1a2e5e;
  margin-bottom: 40px;
  letter-spacing: 0.15em;
}
#section-25 .office-table {
  width: 100%;
  border-collapse: collapse;
}
#section-25 .office-table tr {
  border-bottom: 1px solid #ccc;
}
#section-25 .office-table th {
  color: #1a2e5e;
  font-weight: bold;
  font-size: 15px;
  padding: 16px 20px;
  text-align: left;
  width: 35%;
  vertical-align: middle;
  border-left: 3px solid #1a2e5e;
}
#section-25 .office-table td {
  color: #333;
  font-size: 15px;
  padding: 16px 20px;
  vertical-align: middle;
}
#section-25 .office-photos {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
#section-25 .office-photos img {
  flex: 1;
  width: 0;
  min-width: 0;
  object-fit: cover;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}

/* ==========================================================================
   Section 26 - アクセス
   ========================================================================== */
#section-26 {
  background-color: #ffffff;
  padding: 0 20px 60px;
}
#section-26 .location-container {
  max-width: 820px;
  margin: 0 auto;
}
#section-26 .location-photos {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}
#section-26 .location-photos img {
  flex: 1;
  width: 0;
  min-width: 0;
  object-fit: cover;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}
#section-26 .location-info {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
#section-26 .location-label {
  font-size: 15px;
  font-weight: bold;
  color: #1a2e5e;
  flex-shrink: 0;
  padding-top: 2px;
}
#section-26 .location-detail {
  border-left: 3px solid #1a2e5e;
  padding-left: 20px;
}
#section-26 .location-detail .postal {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}
#section-26 .location-detail .address {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}
#section-26 .location-detail .note {
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
}
#section-26 .location-detail .access {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}

/* ==========================================================================
   Section 27 - CTA（下部）
   ========================================================================== */
#section-27 {
  background: linear-gradient(
    135deg,
    #1a3a7a 0%,
    #1a2e5e 40%,
    #2a4a6a 70%,
    #1e3050 100%
  ) !important;
  padding: 50px 20px 60px;
  text-align: center;
}
#section-27 .section27-heading {
  color: #fff;
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 8px;
  text-align: center;
}
#section-27 .section27-heading strong {
  color: #f5cc3a;
  font-size: 28px;
  font-weight: bold;
}
#section-27 .section27-sub {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 36px;
  text-align: center;
}

@media screen and (max-width: 768px) {
/* ==========================================================================
   Section Voice - レイアウト調整（左右余白を詰めて背景ブルーを見せる）
   ========================================================================== */
#section-voice {
  background: #1a2e5e;
  padding: 60px 0;
}

#section-voice .container,
#section-voice .voice-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3px; /* 左右余白を調整して背景を見せる */
}

#section-voice .voice-card {
  margin: 0 10px;
}

/* Voiceカードの横並びと間隔調整 */
#section-voice .voice-wrapper {
  display: flex;
  gap: 24px; /* Voice01とVoice02の間隔 */
  flex-wrap: wrap;
}

#section-voice .voice-card {
  flex: 1 1 calc(50% - 12px);
}
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 600px) {
  /* ボタン共通 */
  #section-04 .container .btns,
  #section-27 .container .btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 90%;
  }
  #section-04 .container .btns .btn,
  #section-27 .container .btns .btn {
    width: 100%;
  }
  .sticky .btns {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 90%;
  }
  .sticky .btns .btn {
    width: 100%;
  }
  .tel-btn-html,
  .line-btn-html,
  .form-btn-html {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
  }

  /* Section 05 */
  #section-05 .problems-wrapper {
    padding: 40px 20px 200px;
    min-height: auto;
  }
  #section-05 .problems-en {
    font-size: 50px;
  }
  #section-05 .problems-title {
    font-size: 26px;
  }
  #section-05 .problems-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
  }
  #section-05 .problems-list li::before {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 12px;
  }
  #section-05 .problems-person {
    width: 220px;
    right: 50%;
    transform: translateX(50%);
    z-index: 0;
  }

  /* Section 06 */
  #section-06 .reasons-wrapper {
    padding: 40px;
  }
  #section-06 .reasons-title {
    font-size: 28px;
  }
  #section-06 .reasons-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
  }
  #section-06 .reasons-card {
    padding: 20px 24px;
  }
  #section-06 .reasons-icon svg {
    width: 56px;
    height: 56px;
  }
  #section-06 .reasons-text {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Section 07 - 選ばれる理由 */
  #section-07 .chosen-wrapper {
    padding: 40px 20px 50px;
  }
  #section-07 .chosen-en {
    font-size: 50px;
  }
  #section-07 .chosen-title {
    font-size: 28px;
  }
  #section-07 .chosen-logo {
    height: 28px;
  }
  #section-07 .chosen-ga {
    font-size: 22px;
  }
  #section-07 .chosen-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .chosen-card {
    padding: 28px 20px 24px;
  }
  .chosen-card-title {
    font-size: 18px;
  }
  .chosen-card-img img {
    height: auto;
    aspect-ratio: 16 / 7;
  }
  .chosen-card-list li {
    font-size: 14px;
  }

  .chosen-card--wide {
    max-width: 100%;
  }

  .pc-only {
    display: none;
  }

  /* Section 09/10 - 税理士紹介 */
  .intro-section .intro-wrapper {
    padding: 40px 20px 50px;
  }
  .intro-section .intro-en {
    font-size: 42px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .intro-section .intro-title {
    font-size: 26px;
  }
  .intro-section .intro-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .intro-section .intro-profile-photo img {
    width: 180px;
  }
  .intro-section .intro-name {
    font-size: 28px;
  }
  .intro-section .intro-quote {
    font-size: 18px;
  }
  .intro-section .intro-feature {
    font-size: 14px;
    padding: 12px 16px;
  }
  .intro-section .intro-career-item {
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
  }
  .intro-section .intro-career-item dt {
    white-space: normal;
  }
  .intro-section .intro-career-item dd {
    padding-left: 16px;
  }
  .intro-section .intro-profile-info {
    text-align: center;
    width: 100%;
  }
  .intro-section .intro-desc {
    text-align: center;
    max-width: 100%;
  }

  /* Section 03-5 */
  #section-03-5 {
    padding: 15px 16px;
  }

  /* Section 04 */
  #section-04 {
    background: linear-gradient(
      135deg,
      #1a3a7a 0%,
      #1a2e5e 50%,
      #0f1e3d 100%
    );
    padding: 30px 16px 40px;
  }

  /* Section 21 - 料金 */
  #section-21 {
    padding: 40px 16px;
  }
  #section-21 .price-heading .price-en {
    font-size: 48px;
  }
  #section-21 .price-heading .price-ja {
    font-size: 24px;
    margin-top: -14px;
  }
  #section-21 .price-heading {
    margin-bottom: 30px;
  }
  #section-21 .price-free .free-value {
    font-size: 32px;
  }
  /* 追加: 料金セクション 無料表示のSPレイアウト調整 */
  #section-21 .price-free {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  #section-21 .price-free .free-label {
    width: auto;
    white-space: nowrap;
  }
  #section-21 .price-free .free-value {
    flex-basis: 100%;
    text-align: center;
    font-size: 28px;
  }
  #section-21 .price-table th,
  #section-21 .price-table td {
    display: block;
    width: 100%;
    border-right: none;
    text-align: left;
  }
  #section-21 .price-table th {
    padding: 16px 16px 8px;
  }
  #section-21 .price-table td {
    padding: 8px 16px 16px;
  }

  /* Section 24 - FAQ */
  #section-24 {
    padding: 40px 16px;
  }
  #section-24 .faq-heading .faq-en {
    font-size: 48px;
  }
  #section-24 .faq-heading .faq-ja {
    font-size: 24px;
    margin-top: -14px;
  }
  #section-24 .faq-heading {
    margin-bottom: 36px;
  }
  #section-24 .faq-question .q-label,
  #section-24 .faq-answer .a-label {
    font-size: 26px;
  }
  #section-24 .faq-question .q-text {
    font-size: 16px;
  }
  #section-24 .faq-answer .a-first {
    font-size: 15px;
  }
  #section-24 .faq-answer .a-detail {
    font-size: 14px;
    padding-left: 42px;
  }

  /* Section 25 - 事務所概要 */
  #section-25 {
    padding: 40px 16px;
  }
  #section-25 .office-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  #section-25 .office-table th,
  #section-25 .office-table td {
    display: block;
    width: 100%;
    padding: 10px 16px;
  }
  #section-25 .office-table th {
    padding-bottom: 4px;
    border-bottom: none;
  }
  #section-25 .office-table td {
    padding-top: 4px;
  }
  #section-25 .office-photos {
    flex-direction: column;
  }

  /* Section 26 - アクセス */
  #section-26 {
    padding: 0 16px 40px;
  }
  #section-26 .location-photos {
    flex-direction: column;
  }
  #section-26 .location-info {
    flex-direction: column;
    gap: 16px;
  }

  /* Section 27 - CTA */
  #section-27 {
    padding: 40px 16px 50px;
  }
  #section-27 .section27-heading {
    font-size: 18px;
  }
  #section-27 .section27-heading strong {
    font-size: 22px;
  }
  #section-27 .section27-sub {
    font-size: 14px;
  }
}
/* ==========================================================================
   Section 01-03 - FV
   ========================================================================== */

#section-voice {
  background-color: #fff;
  padding: 60px 20px;
}
.voice-bg {
  background: linear-gradient(
    135deg,
    #1a3a7a 0%,
    #1a2e5e 50%,
    #0f1e3d 100%
  );
  padding: 60px 0;
  position: relative;
}
.voice-header {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
  padding-top: 40px;
}
.voice-subtitle {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
  font-weight: bold;
  font-style: italic;
  color: rgba(255, 255, 255, 0.15);
  margin: 0;
  letter-spacing: 0.1em;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
}
.voice-title {
  position: relative;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  letter-spacing: 0.1em;
}
.voice-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  margin: 0 auto 40px;
}
.voice-label {
  background-color: #fff;
  color: #1a2e5e;
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  padding: 16px 32px;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #1a2e5e;
  display: block;
  margin-bottom: 0;
}
.voice-content {
  padding: 40px;
  margin-top: 0;
}
.voice-info {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.voice-stats {
  flex: 1;
}
.stat-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  margin-top: 12px;
}
.stat-label {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
  border: 2px solid #333;
  padding: 6px 12px;
  display: inline-block;
}
.stat-value {
  font-size: 20px;
  font-weight: bold;
  color: #1a2e5e;
}
.stat-result {
  background-color: #E96B2D;
  color: #fff;
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 12px;
}
.result-text {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
.voice-body {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #eee;
}
.voice-quote {
  font-size: 24px;
  font-weight: bold;
  color: #1a2e5e;
  line-height: 1.6;
  margin: 0 0 8px 0;
}
.voice-category {
  font-size: 14px;
  color: #888;
  margin: 0 0 24px 0;
}
.voice-text {
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #333;
  line-height: 1.9;
  margin-bottom: 24px;
}
.voice-text p {
  margin: 0 0 16px 0;
}
.voice-text strong {
  color: #1a2e5e;
  font-weight: bold;
}
.voice-point {
  background-color: #f5f5f5;
  padding: 24px;
  border-left: 4px solid #1a2e5e;
  border-radius: 4px;
  margin-top: 24px;
}
.point-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a2e5e;
  margin: 0 0 12px 0;
}
.point-text {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin: 0;
}

/* レスポンシブ */
@media (max-width: 600px) {
  #section-voice {
    padding: 40px 16px;
  }
  .voice-bg {
    padding: 40px 0;
  }
  .voice-header {
    margin-bottom: 36px;
    padding-top: 0px;
  }
  .voice-subtitle {
    font-size: 56px;
  }
  .voice-title {
    font-size: 24px;
    margin-top: -4px;
  }
  .voice-card {
    border-radius: 4px;
    margin-bottom: 30px;
  }
  .voice-label {
    background-color: #fff;
    color: #1a2e5e;
    font-size: 18px;
    padding: 12px 20px;
    border-bottom: 2px solid #1a2e5e;
    display: block;
    margin-bottom: 0;
  }
  .voice-content {
    padding: 24px 20px;
    margin-top: 0;
  }
  .voice-info {
    flex-direction: column;
    gap: 20px;
  }

  .voice-stats {
    text-align: center;
    width: 100%;
  }

  .stat-item {
    align-items: center;
    width: 100%;
  }

  .stat-result {
    width: 100%;
    box-sizing: border-box;
  }

  .stat-label {
    margin-left: auto;
    margin-right: auto;
  }

  .stat-label,
  .stat-value,
  .result-text {
    text-align: center;
  }
  .voice-stats .stat-label {
    display: block !important;
    width: 100% !important;
    text-align: center;
    border: 2px solid #333;
    padding: 6px 12px;
    box-sizing: border-box;
  }
  .stat-value {
    font-size: 16px;
  }
  .result-text {
    font-size: 14px;
  }
  .voice-body {
    margin-top: 20px;
    padding-top: 20px;
  }
  .voice-quote {
    font-size: 16px;
  }
  .voice-text {
    font-size: 14px;
  }
  .voice-point {
    padding: 16px;
  }
  .point-title {
    font-size: 14px;
  }
  .point-text {
    font-size: 13px;
  }
}
/* ==========================================================================
   FV H1（SEO用・目立たせない）
   ========================================================================== */
.fv-h1 {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.4;
  margin: 0 0 4px 0;
  color: #333;
}

@media screen and (max-width: 600px) {
  .fv-h1 {
    font-size: 10px;
    margin-bottom: 2px;
  }
}

/* ==========================================================================
   Section 02 OB（国税OBセクション）
   ========================================================================== */
#section-02-ob {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.ob-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #1a2e5e;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* 比較表 */
.ob-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ob-table table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}

.ob-table th,
.ob-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  white-space: nowrap;
}

.ob-table th {
  background-color: #1a2e5e;
  color: #fff;
  text-align: center;
}

/* 右列強調 */
.ob-table td:last-child {
  background-color: #eef3ff;
  font-weight: bold;
}

/* 左列（項目）強調 */
.ob-table td:first-child {
  background-color: #f0f0f0;
  font-weight: bold;
  color: #1a2e5e;
  width: 180px;
}

/* 実績（新デザイン） */
.ob-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 32px auto;
}

.ob-number {
  background: #fff;
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  border: 1px solid #e5e5e5;
}

.ob-number p {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.ob-number span {
  font-size: 28px;
  font-weight: bold;
  color: #1a2e5e;
  line-height: 1.3;
}

/* 強調（真ん中を目立たせる） */
.ob-number:nth-child(2) {
  background: #1a2e5e;
  color: #fff;
}

.ob-number:nth-child(2) p {
  color: #cbd5f5;
}

.ob-number:nth-child(2) span {
  color: #fff;
  font-size: 32px;
}

/* SP対応 */
@media screen and (max-width: 600px) {
  .ob-numbers {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px auto;
  }

  .ob-number {
    padding: 14px 12px;
  }

  .ob-number span {
    font-size: 26px;
  }

  .ob-number:nth-child(2) span {
    font-size: 28px;
  }
}
