/* =====================
  ABOUTメッセージセクション
===================== */
.about-message-section {
  position: relative;
  background: radial-gradient(circle at 50% 80%, #60afff 0%, #0086ce 30%, #003bbe 60%);
  padding: 130px 0 200px;
  overflow: hidden;
}
.about-message-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, #1a6fd4 0%, #06379f 40%, #002080 80%);
  animation: gradientFade 6s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}
@keyframes gradientFade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.about-message-label {
  position: absolute;
  left: -5px;
  top: 30px;
  font-family: 'Lato', sans-serif;
  font-size: 120px;
  letter-spacing: 0.02em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  writing-mode: vertical-rl;
  transform: rotate(360deg);
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}
.about-message-section .inner {
  position: relative;
  z-index: 1;
}
.about-message-catch {
  text-align: center;
  margin-bottom: 60px;
  overflow: hidden;
}
.about-catch-img {
  max-width: 900px;
  width: 100%;
  height: auto;
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}
.about-message-catch.is-visible .about-catch-img {
  clip-path: inset(0 0% 0 0);
}
.about-message-body {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease 0.3s;
}
.about-message-body.is-visible {
  opacity: 1;
}
.about-message-body + .about-message-body {
  margin-top: 3em;
}
.about-message-img {
  display: block;
  margin: 9em auto 3em;
  max-width: 600px;
  width: 100%;
  height: auto;
}
.about-message-catch-2 {
  text-align: center;
  margin: 1.5em auto;
  max-width: 600px;
  width: 100%;
  overflow: hidden;
}
.about-message-catch-2 .about-message-img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  /* opacityは不要になるので削除 */
}
.about-message-catch-2.is-visible .about-message-img {
  clip-path: inset(0 0% 0 0);
}
/* ---- タブレット (769px ~ 1199px) ---- */
@media (min-width: 769px) and (max-width: 1199px) {
  .about-catch-img {
    max-width: 550px;
  }
}
@media (max-width: 768px) {
  .about-message-section {
    padding: 80px 0 120px;
  }
  .about-message-label {
    font-size: 60px;
    left: -6px;
    top: 50px;
  }
  .about-catch-img {
    max-width: 100%;
    width: 70%;
  }
  .about-message-catch {
    margin-bottom: 40px;
  }
  .about-message-body {
    font-size: 18px;
    padding: 0 20px;
    /* br タグを無効化してテキストを自然に折り返す */
    word-break: auto-phrase;
  }
  .about-message-img {
    max-width: 460px;
    margin: 6em auto 2em;
  }
  .about-message-catch-2 {
    max-width: 460px;
  }
}
/* スマホ */
@media (max-width: 480px) {
  .about-message-section {
    padding: 60px 0 80px;
  }
  .about-message-label {
    font-size: 52px;
    left: -2px;
    top: 16px;
  }
  .about-message-catch {
    margin-bottom: 10px;
  }
  .about-message-body {
    font-size: 16px;
    line-height: 1.9;
    padding: 0 16px;
    text-align: center;
  }
  .about-message-body + .about-message-body {
    margin-top: 2em;
  }
  .about-message-img {
    max-width: 100%;
    width: calc(100% - 32px);
    margin: 3.5em auto 0.5em;
  }
  .about-message-catch-2 {
    max-width: 100%;
    width: calc(100% - 32px);
    margin: 1em auto;
  }
  .about-message-catch-2 .about-message-img {
    width: 85%;
  }
  .inner {
    padding: 0; /* 親の .inner にパディングがある場合は上書き不要 */
  }
}
/* =====================
  aboutページ 取り扱い保険会社
===================== */
.about-insurance-section {
  background: #eaeff4;
  padding: 100px 0 120px;
}
.about-insurance-header {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}
.about-insurance-header .insurance-heading {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.about-insurance-section h2 {
  color: #06379f;
}
.about-insurance-section p {
  color: #06379f;
}
p.about-insurance-desc {
  font-size: 18px;
  line-height: 2;
  color: #000;
  padding-top: 8px;
  font-weight: 700;
  margin-left: auto;
  overflow-wrap: anywhere;
}
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(6, 185px);
  gap: 15px;
  justify-content: center;
}
.insurance-card {
  width: 185px;
  height: 70px;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  box-sizing: border-box;
  overflow: hidden;
}
.insurance-card img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.insurance-card-fwd img {
  max-height: 38px;
}
/* =====================
  レスポンシブ対応
  （既存CSSに追記）
===================== */
/* タブレット */
@media (max-width: 1200px) {
  .insurance-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .insurance-card {
    width: auto;
    height: 70px;
  }
}
@media (max-width: 768px) {
  .about-insurance-section {
    padding: 50px 16px 60px;
  }
  .about-insurance-header {
    gap: 16px;
    margin-bottom: 30px;
  }
  p.about-insurance-desc {
    font-size: 15px;
    line-height: 1.8;
  }
  .insurance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .insurance-card {
    width: auto;
    height: 60px;
    padding: 12px 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  }
  .about-insurance-header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }
  p.about-insurance-desc {
    font-size: 15px;
    margin-left: 0;
    /* br タグを無効化して自然に折り返す */
    word-break: auto-phrase;
  }
  .about-photo-banner {
    height: 200px;
  }
  .insurance-card-fwd img {
    max-height: 34px;
  }
}
/* =====================
  会社概要
===================== */
.about-company-section {
  display: flex;
  background: #fff;
  position: relative;
}
.about-company-photo-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 30vw;
  height: 100%;
  pointer-events: none;
}
.about-company-photo {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  background-image: url('../../images/about/company-photo.webp');
  background-size: cover;
  background-position: center;
  /* フェード用 */
  transition: opacity 0.4s ease;
}
/* セクション内でfixed */
.about-company-photo.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}
/* セクション末尾に達したらabsoluteでセクション底に固定 */
.about-company-photo.is-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
}
.about-company-content {
  margin-left: 30vw;
  width: 54vw;
  padding: 100px 80px 250px;
  box-sizing: border-box;
}
.about-company-heading {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 60px;
}
.about-company-heading .section-main-title {
  color: #000;
}
.about-company-heading .section-sub-title {
  color: #000;
}
.about-company-table {
  width: 100%;
}
.about-company-row {
  display: flex;
  align-items: stretch;
}
.about-company-row dt {
  width: 150px;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  color: #06379f;
  padding: 20px 5px;
  letter-spacing: 0.2em;
  border-bottom: 2px solid #06379f;
}
.about-company-row dd {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding: 20px 0 20px 40px;
  border-bottom: 1px solid #cbcbcb;
}
.map-link {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 15px;
  color: #06379f;
  text-decoration: none;
  border-bottom: 1px solid #06379f;
  transition: opacity 0.2s ease;
}
.map-link:hover {
  opacity: 0.6;
}
/* 営業所リスト */
.office-list {
  padding: 0 !important; /* ddのpaddingをリセット */
  border: none !important;
}
.office-item {
  padding: 24px 0 24px 40px;
  border-bottom: 1px solid #cbcbcb;
}
.office-item:first-child {
  padding-top: 24px;
}
.office-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
/* 左：写真 */
.office-photo {
  position: relative;
  width: 300px;
  flex-shrink: 0;
  aspect-ratio: 5 / 2.5;
  overflow: hidden;
  background: #e8eef7;
}
.office-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.office-photo-cover {
  position: absolute;
  inset: 0;
  background: #06379f;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
  z-index: 2;
}
/* 右：テキスト */
.office-info {
  flex: 1;
}
.office-name {
  display: inline-block;
  background: #06379f;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.office-address {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 6px;
}
.office-tel {
  font-size: 16px;
}
.office-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.office-name {
  margin-bottom: 0;
}
.sponsor-lead {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.7;
}
.sponsor-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sponsor-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #000;
}
.sponsor-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #06379f;
  flex-shrink: 0;
}
/* ---- タブレット (769px ~ 1199px) ---- */
@media (min-width: 769px) and (max-width: 1199px) {
  .about-company-section {
    flex-direction: column;
  }
  /* 写真：sticky解除、固定高さ */
  .about-company-photo-wrap {
    display: none;
  }
  /* コンテンツ：左マージンリセット */
  .about-company-content {
    width: 100%;
    margin-left: 0;
    padding: 48px 20px 80px;
    box-sizing: border-box;
  }
  .about-company-row dt {
    width: 120px;
    font-size: 15px;
    padding: 16px 5px;
  }
  .about-company-row dd {
    font-size: 15px;
    padding: 16px 0 16px 24px;
  }
  .office-item {
    padding: 20px 0 20px 24px;
  }
  .office-photo {
    width: 200px;
  }
  .office-address, .office-tel {
    font-size: 15px;
  }
  .sponsor-lead {
    font-size: 15px;
  }
  .sponsor-list li {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .about-company-section {
    flex-direction: column;
  }
  /* 写真：sticky解除、固定高さ */
  .about-company-photo-wrap {
    display: none;
  }
  /* コンテンツ：左マージンリセット */
  .about-company-content {
    width: 100%;
    margin-left: 0;
    padding: 48px 20px 80px;
    box-sizing: border-box;
  }
  .about-company-photo, .about-company-photo.is-fixed, .about-company-photo.is-bottom {
    position: relative !important;
    width: 100%;
    height: 240px;
    margin-left: 0;
    top: auto;
    bottom: auto;
    left: auto;
  }
  /* コンテンツ：左マージンリセット */
  .about-company-content {
    width: 100%;
    margin-left: 0;
    padding: 48px 20px 80px;
    box-sizing: border-box;
  }
  /* 見出し：縦並びに */
  .about-company-heading {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 40px;
  }
  /* テーブル行：縦並び */
  .about-company-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-company-row dt {
    width: 100%;
    font-size: 13px;
    padding: 14px 0 6px;
    border-bottom: none;
    letter-spacing: 0.1em;
  }
  .about-company-row dd {
    width: 100%;
    font-size: 15px;
    padding: 0 0 14px;
    border-bottom: 1px solid #cbcbcb;
  }
  /* 営業所リスト */
  .office-list {
    padding: 0 !important;
  }
  .office-item {
    padding: 20px 0;
  }
  /* 営業所inner：縦並び（写真を下に） */
  .office-inner {
    flex-direction: column;
    gap: 14px;
  }
  /* 写真：左端揃えで幅100% */
  .office-photo {
    width: 100%;
    aspect-ratio: 16 / 7;
    order: 2; /* テキストの後ろに */
  }
  .office-info {
    order: 1;
  }
  .office-name-row {
    flex-wrap: wrap;
    gap: 8px;
  }
  .office-address, .office-tel {
    font-size: 15px;
  }
  /* スポンサー・地域貢献 */
  .sponsor-lead {
    font-size: 15px;
  }
  .sponsor-list {
    gap: 5px;
  }
  .sponsor-list li {
    font-size: 15px;
  }
  /* マップリンク */
  .map-link {
    font-size: 13px;
    margin-bottom: 5px;
  }
}
/* =====================
  グループ紹介
===================== */
.about-group-section {
  position: relative;
  background: #06379f;
  padding: 180px 0 160px;
  overflow: hidden;
  color: #fff;
}
.ticker-wrap {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.about-group-ticker {
  display: flex;
  white-space: nowrap;
}
.about-group-ticker span {
  font-size: 120px;
  font-weight: 900;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.08);
}
.about-group-main-copy {
  text-align: center;
  font-size: 55px;
  font-weight: 900;
  margin-bottom: 40px;
  line-height: 1.4;
}
.about-group-speech-box {
  max-width: 950px;
  position: relative;
  background: #fff;
  color: #000;
  padding: 30px;
  margin: 0 auto;
  z-index: 10;
}
/* ▼ */
.about-group-speech-box::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 20px 15px 0 15px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
/* 中身 */
.about-group-speech-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}
/* 左 */
.about-group-left {
  width: 45%;
}
.about-group-title {
  font-size: 26px;
  font-weight: 900;
  line-height: 2;
  text-align: center;
}
/* 青ボックス */
.about-group-blue-box {
  display: inline-block;
  background: #06379f;
  color: #fff;
  padding: 4px 15px;
  margin: 0 4px;
}
.about-group-normal {
  color: #000;
}
/* 右 */
.about-group-right {
  width: 50%;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
}
/* セクション */
.about-group-circle {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}
/* 円全体 */
.about-group-circle-wrap {
  position: relative;
  width: 800px;
  height: 800px;
}
/* =====================
  背景の脈動アニメーション（3つの円）
===================== */
.pulse-circle {
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite both;
}
/* 1つ目 */
.pulse-circle--1 {
  width: 830px;
  height: 830px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 60%, rgba(255, 255, 255, 0) 100%);
}
/* 2つ目 */
.pulse-circle--2 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(56, 96, 185, 0.5) 0%, rgba(56, 96, 185, 0.5) 50%, rgba(56, 96, 185, 0) 100%);
  animation-delay: 0.4s;
}
/* 3つ目 */
.pulse-circle--3 {
  width: 960px;
  height: 960px;
  background: radial-gradient(circle, rgba(113, 148, 220, 0.25) 0%, rgba(113, 148, 220, 0.25) 40%, rgba(113, 148, 220, 0) 100%);
  animation-delay: 0.8s;
}
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}
/* 背景画像 */
.about-group-circle-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
/* =====================
  中央円
===================== */
.about-group-center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: #091843;
  border: 6px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.4s ease;
}
.about-group-center-circle img {
  width: 70%;
}
/* =====================
  中央円：ロゴ／情報の切り替え
===================== */
.center-logo {
  width: 70%;
  transition: opacity 0.4s ease;
}
.center-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.center-info-title {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  width: 100%;
}
.center-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 70%;
}
.center-info-list li {
  color: #fff;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  padding-left: 1em;
  position: relative;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.about-group-center-circle.is-active .center-info-list li {
  opacity: 1;
  transform: translateY(0);
}
.about-group-center-circle.is-active .center-info-list li:nth-child(1) {
  transition-delay: 0.15s;
}
.about-group-center-circle.is-active .center-info-list li:nth-child(2) {
  transition-delay: 0.25s;
}
.about-group-center-circle.is-active .center-info-list li:nth-child(3) {
  transition-delay: 0.35s;
}
.about-group-center-circle.is-active .center-info-list li:nth-child(4) {
  transition-delay: 0.45s;
}
.center-info-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
/* ホバー時：中央円の切り替え */
.about-group-center-circle.is-active .center-logo {
  opacity: 0;
}
.about-group-center-circle.is-active .center-info {
  opacity: 1;
}
/* ホバー時：ノードの色反転 */
.about-group-node {
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.about-group-node.is-active {
  background: #091843;
  border: 3px solid #fff;
  color: #fff;
}
/* =====================
  外の白丸
===================== */
.about-group-node {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
  color: #06379f;
  border: 3px solid #06379f;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: translate(-50%, -50%);
  z-index: 2;
}
/* 円周配置（重要） */
.node1 {
  top: 10%;
  left: 75%;
}
.node2 {
  top: 50%;
  left: 95%;
}
.node3 {
  top: 88%;
  left: 75%;
}
.node4 {
  top: 88%;
  left: 25%;
}
.node5 {
  top: 50%;
  left: 5%;
}
.node6 {
  top: 10%;
  left: 25%;
}
/* =====================
  指差しアイコン
===================== */
.about-group-point {
  position: absolute;
  width: 40px;
  bottom: 10px;
  right: -5px;
}
/* =====================
  BUSINESS PARTNERS
===================== */
.about-partners {
  padding: 50px 0 0;
}
.about-partners .partners-heading {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 50px;
}
.about-partners .section-heading p, .about-partners .section-heading h2 {
  display: block;
  color: #fff;
}
.about-partners-lead {
  font-size: 28px;
  color: #06379f;
  margin: 0 0 50px;
  line-height: 1.8;
  font-weight: 900;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 2px solid #06379f;
}
.about-partners-box {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 50px;
}
.about-partners-box img {
  width: 100%;
  height: auto;
}
/* =====================
  グループ紹介 - レスポンシブ対応
===================== */
/* ---- タブレット (769px ~ 1199px) ---- */
@media (min-width: 769px) and (max-width: 1199px) {
  .about-group-section {
    padding: 140px 0 120px;
  }
  .about-group-ticker span {
    font-size: 80px;
  }
  .about-group-main-copy {
    font-size: 40px;
  }
  .about-group-speech-box {
    max-width: 720px;
    padding: 24px;
  }
  .about-group-speech-inner {
    gap: 24px;
  }
  .about-group-title {
    font-size: 18px;
  }
  .about-group-right {
    font-size: 15px;
  }
  /* 円：800px → 580px にスケール */
  .about-group-circle {
    padding: 100px 20px;
  }
  .about-group-circle-wrap {
    width: 580px;
    height: 580px;
  }
  .pulse-circle--1 {
    width: 600px;
    height: 600px;
  }
  .pulse-circle--2 {
    width: 650px;
    height: 650px;
  }
  .pulse-circle--3 {
    width: 700px;
    height: 700px;
  }
  .about-group-center-circle {
    width: 220px;
    height: 220px;
  }
  .center-info-title {
    font-size: 22px;
  }
  .center-info-list li {
    font-size: 13px;
  }
  .about-partners .partners-heading {
    text-align: center;
    margin-bottom: 30px;
  }
  .about-group-node {
    width: 110px;
    height: 110px;
    font-size: 15px;
  }
  .about-group-point {
    width: 30px;
  }
  .about-partners-lead {
    font-size: 22px;
  }
  .about-partners-box {
    padding: 30px 40px;
  }
}
/* ---- スマホ (〜768px) ---- */
@media (max-width: 768px) {
  .about-group-section {
    padding: 80px 0;
  }
  /* ティッカー */
  .about-group-ticker span {
    font-size: 70px;
  }
  /* メインコピー */
  .about-group-main-copy {
    font-size: 30px;
    margin-bottom: 25px;
    padding: 0;
  }
  .about-partners .partners-heading {
    text-align: center;
    margin-bottom: 30px;
  }
  /* 吹き出しボックス：縦並び */
  .about-group-speech-box {
    margin: 0 20px;
    padding: 20px;
  }
  .about-group-speech-inner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .about-group-left {
    width: 100%;
  }
  .about-group-right {
    width: 100%;
    font-size: 15px;
    line-height: 1.8;
  }
  .about-group-title {
    font-size: 20px;
    line-height: 1.8;
  }
  /* 円グラフ：コンテナを縮小 */
  .about-group-circle {
    padding: 70px 0 60px;
    overflow: hidden;
  }
  .about-group-circle-wrap {
    /* 画面幅に合わせてスケール。基準800px → spは340px想定 */
    width: 340px;
    height: 340px;
  }
  .pulse-circle--1 {
    width: 354px;
    height: 354px;
  }
  .pulse-circle--2 {
    width: 384px;
    height: 384px;
  }
  .pulse-circle--3 {
    width: 410px;
    height: 410px;
  }
  /* 中央円 */
  .about-group-center-circle {
    width: 130px;
    height: 130px;
    border-width: 1px;
  }
  .about-group-center-circle img {
    width: 80%;
  }
  .center-info {
    padding: 12px;
  }
  .center-info-title {
    font-size: 11px;
    margin-bottom: 6px;
    padding-bottom: 5px;
    line-height: 1.4;
  }
  .center-info-list {
    width: 80%;
  }
  .center-info-list li {
    font-size: 9px;
    line-height: 1.3;
  }
  /* ノード（周囲の白丸） */
  .about-group-node {
    width: 70px;
    height: 70px;
    font-size: 10px;
    border-width: 1px;
    line-height: 1.1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  .about-group-node.is-active {
    border: 1px solid #fff;
  }
  .node2 {
    left: 92%;
  }
  .node5 {
    left: 7%;
  }
  .about-group-point {
    width: 18px;
    bottom: 4px;
    right: -3px;
  }
  /* BUSINESS PARTNERS */
  .about-partners {
    padding: 20px 0 0;
  }
  .about-partners-lead {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 0 0 15px;
    line-height: 1.6;
  }
  .about-partners-box {
    margin: 0 20px;
    padding: 20px;
  }
}
/* =====================
  5つの特徴
===================== */
.strengths-section {
  background: #eaeff4;
}
/* inner + flex */
.strengths-inner {
  display: flex;
  align-items: stretch;
}
/* 左固定 */
.strengths-left {
  width: 30%;
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 100px 20px;
  box-sizing: border-box;
  position: sticky;
}
.strengths-left h2.section-sub-title {
  color: #000;
}
.strengths-left p.section-main-title {
  color: #000;
}
/* 右側 */
.strengths-right {
  width: 70%;
  padding: 100px 0;
}
/* カード */
.strength-card {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 60px;
}
/* 上部 */
.strength-head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.strength-num {
  width: 60px;
  height: 60px;
  font-size: 40px;
  font-weight: 900;
  background: #06379f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  margin-right: 20px;
}
.strength-heading {
  color: #06379f;
  font-size: 30px;
  line-height: 1.3;
}
/* 下部 */
.strength-body {
  display: flex;
  gap: 20px;
}
.strength-photo-cover {
  position: absolute;
  inset: 0;
  background: #06379f;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
  z-index: 2;
}
.strength-img {
  position: relative;
}
.strength-img img {
  width: 300px;
  height: auto;
  flex-shrink: 0;
}
.strength-body p {
  flex: 1;
  line-height: 1.8;
}
/* ---- タブレット (769px ~ 1199px) ---- */
@media (min-width: 769px) and (max-width: 1199px) {
  .strengths-section {
    padding: 80px 20px 80px;
  }
  .strengths-inner {
    flex-direction: column !important;
    gap: 0;
  }
  .strengths-left {
    width: 100%;
    position: static;
    height: auto;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 40px;
  }
  /* 右 */
  .strengths-right {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
}
/* ---- スマホ (〜768px) ---- */
@media (max-width: 768px) {
  .strengths-section {
    padding: 60px 20px 80px;
  }
  .strengths-inner {
    flex-direction: column !important;
    gap: 0;
  }
  .strengths-left {
    width: 100%;
    position: static;
    height: auto;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 40px;
  }
  /* 右 */
  .strengths-right {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  /* カード */
  .strength-card {
    padding: 24px 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }
  .strength-card:last-child {
    margin-bottom: 0;
  }
  /* ヘッド */
  .strength-head {
    margin-bottom: 16px;
  }
  .strength-num {
    width: 44px;
    height: 44px;
    font-size: 28px;
    margin-right: 14px;
    flex-shrink: 0;
  }
  .strength-heading {
    font-size: 17px;
    line-height: 1.3;
  }
  /* ボディ：縦並び（画像→テキスト） */
  .strength-body {
    flex-direction: column;
    gap: 16px;
  }
  .strength-img {
    width: 100%;
  }
  .strength-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  .strength-body p {
    font-size: 15px;
    line-height: 1.8;
  }
}
/* =====================
  ミッション
===================== */
.mission-section {
  background: #fff;
  padding: 80px 0 180px;
}
.mission-inner {
  display: flex;
  align-items: center;
}
.mission-section .section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mission-section h2.section-sub-title {
  color: #000;
}
/* 左 */
.mission-left {
  width: 50%;
}
.mission-box {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mission-box p {
  display: block;
  background: #091843;
  color: #fff;
  font-weight: 700;
  font-size: 60px;
  letter-spacing: 0.02em;
  padding: 5px 20px 13px;
  margin-bottom: 15px;
}
/* 右 */
.mission-right {
  width: 50%;
}
.mission-right img {
  width: 110%;
  transform: translate(-10%, 50px);
  height: auto;
  display: block;
}
/* ---- タブレット (769px ~ 1199px) ---- */
@media (min-width: 769px) and (max-width: 1199px) {
  .mission-section {
    padding: 80px 0 140px;
  }
  .mission-box p {
    font-size: 35px;
  }
  .mission-right img {
    width: 115%;
    transform: translate(-10%, 40px);
  }
}
/* ---- スマホ (〜768px) ---- */
@media (max-width: 768px) {
  .mission-section {
    padding: 60px 20px 80px;
  }
  /* 縦並び */
  .mission-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  /* 左：全幅 */
  .mission-left {
    width: 100%;
  }
  .mission-box {
    margin-top: 28px;
  }
  .mission-box p {
    font-size: 32px;
    padding: 4px 14px 10px;
    margin-bottom: 10px;
  }
  /* 右：全幅・はみ出し効果をリセット */
  .mission-right {
    width: 100%;
  }
  .mission-right img {
    width: 100%;
    transform: none;
  }
}
/* =====================
  ビジョン
===================== */
.vision-section {
  background: #ebeef4;
  padding: 120px 0;
}
.vision-inner {
  display: flex;
  align-items: center;
}
/* 左：画像 */
.vision-left {
  width: 50%;
}
.vision-left img {
  width: 120%;
  transform: translate(-25%, 40px);
  display: block;
}
/* 右：テキスト */
.vision-right {
  width: 50%;
}
/* タイトル縦並び */
.vision-section .section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.vision-section .section-sub-title {
  color: #000;
}
/* テキスト */
.vision-box {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.vision-box p {
  background: #091843;
  color: #fff;
  font-weight: 700;
  font-size: 60px;
  letter-spacing: 0.02em;
  padding: 5px 20px 13px;
  margin-bottom: 10px;
}
/* ---- タブレット (769px ~ 1199px) ---- */
@media (min-width: 769px) and (max-width: 1199px) {
  .vision-box p {
    font-size: 35px;
  }
}
/* ---- スマホ (〜768px) ---- */
@media (max-width: 768px) {
  .vision-section {
    padding: 60px 20px 80px;
  }
  /* 縦並び・画像を下に */
  .vision-inner {
    flex-direction: column-reverse; /* ここを column から column-reverse に変更 */
    align-items: flex-start;
    gap: 20px;
  }
  /* 左：全幅・はみ出しリセット */
  .vision-left {
    width: 100%;
  }
  .vision-left img {
    width: 100%;
    transform: none;
  }
  /* 右：全幅 */
  .vision-right {
    width: 100%;
  }
  .vision-box {
    margin-top: 28px;
  }
  .vision-box p {
    font-size: 28px;
    padding: 4px 14px 10px;
    margin-bottom: 8px;
  }
}
/* =====================
  バリュー
===================== */
.value-section {
  background: #091843;
  padding: 120px 0;
}
.value-content {
  max-width: 800px;
}
/* タイトル */
.value-section .section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.value-section .section-main-title {
  color: #fff;
}
.value-section .section-sub-title {
  color: #fff;
}
/* VALUEリスト */
.value-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.value-list p {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #091843;
  font-weight: 800;
  font-size: 60px;
  padding: 5px 20px 13px;
  margin-bottom: 20px;
  white-space: nowrap;
}
/* 番号 */
.value-num {
  font-family: 'Lato', sans-serif;
  margin-right: 10px;
  font-size: 70px;
  letter-spacing: 0.1em;
}
/* ---- タブレット (769px ~ 1199px) ---- */
@media (min-width: 769px) and (max-width: 1199px) {
  .value-num {
    font-size: 40px;
  }
  .value-list p {
    white-space: normal; /* 折り返し許可 */
    display: flex;
    box-sizing: border-box;
    line-height: 1.2;
    font-size: 35px;
  }
}
/* ---- スマホ (〜768px) ---- */
@media (max-width: 768px) {
  .value-section {
    padding: 60px 20px 80px;
  }
  .value-list {
    margin-top: 40px;
    width: 100%;
  }
  .value-list p {
    font-size: 22px;
    padding: 6px 14px 10px;
    margin-bottom: 12px;
  }
  .value-num {
    font-size: 26px;
    margin-right: 8px;
    flex-shrink: 0;
  }
}