.company-wrap {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

/* =====================
  ページタイトル
===================== */
.company-page-title {
  background: #f5f7fa;
  padding: 60px 0 40px;
  text-align: center;
}

.company-page-title h1 {
  font-size: 28px;
  font-weight: bold;
}

.company-page-title span {
  display: block;
  font-size: 14px;
  color: #888;
  margin-top: 5px;
}

/* =========================
   セクションタイトル
========================= */

.section-title {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 60px;

  padding-bottom: 8px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;

  width: 180px;  /* ←ここで調整 */
  height: 4px;

  background: linear-gradient(90deg, #f2b705, #f19ca6);
  border-radius: 999px;
}

.company-title {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.company-sub-title {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

/* =========================
   セクションタイトル
========================= */

.section-title {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 60px;

  padding-bottom: 8px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;

  width: 180px;  /* ←ここで調整 */
  height: 4px;

  background: linear-gradient(90deg, #f2b705, #f19ca6);
  border-radius: 999px;
}


/* =====================================
   運営会社概要
===================================== */

.company-section {
  padding: 80px 20px;
  background: #f8faf7;
  margin-bottom: 20px;
}

.company-sub-title {
  text-align: center;
  margin-bottom: 50px;
}

.company-sub-title span {
  display: inline-block;
  padding: 15px 60px;
  border: 3px solid #6ea8a6;
  border-radius: 6px;
  background: #fff;
  color: #356868;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}

.company-sub-title span::before,
.company-sub-title span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
}

.company-sub-title span::before {
  top: -3px;
  left: -3px;
  border-top: 6px solid #73c8e8;
  border-left: 6px solid #73c8e8;
}

.company-sub-title span::after {
  right: -3px;
  bottom: -3px;
  border-right: 6px solid #f4a55d;
  border-bottom: 6px solid #f4a55d;
}

.company-overview-image img{
  width: 100%;
  height: auto;
}

/* カード */

.company-card {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* テーブル */

.company-table {
  margin: 0;
}

.company-table .row {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-bottom: 1px solid #ddd;
}

.company-table .row:last-child {
  border-bottom: none;
}

.company-table dt {
  background: linear-gradient(
    135deg,
    #d9f1ee,
    #edf9f7
  );
  padding: 25px;
  font-weight: 700;
  font-size: 1.1rem;

  display: flex;
  align-items: center;
  gap: 12px;

  border-right: 1px solid #ddd;
}

.company-table dt i {
  color: #5e9f9c;
  font-size: 1.4rem;
}

.company-table dd {
  margin: 0;
  padding: 25px 30px;
  line-height: 2;
  font-size: 1.05rem;
}

/* 事業内容 */

.company-table .row:nth-child(5) dd {
  background: #fffdf7;
}

.company-image {
  position: relative;
  display: inline-block;
}

.company-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 中央テキスト */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  color: #fff;
  font-size: 100px;
  font-weight: bold;
  letter-spacing: 2px;

  /* 見やすくする */
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 6px;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .company-table .row {
    flex-direction: column;
  }

  .company-table dt {
    width: 100%;
    margin-bottom: 5px;
  }

  .company-table dd {
    width: 100%;
  }
}

.access-wrapper {
    text-align: center;
}

.access-point {
    display: inline-block;

    padding: 12px 20px;

    background: #fff8f0;
    border: 2px solid #ffb74d;
    border-radius: 30px;

    color: #e67e22;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 30px;

    box-shadow: 0 4px 10px rgba(255,183,77,.2);
}
/* =========================================
   関連会社
========================================= */

.l_flex ul{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    padding:0;
    margin:0;
    list-style:none;
}

.l_flex li{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.l_flex li:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/* タイトル */

.l_flex h4{
    margin:0;
    padding:18px;
    text-align:center;
    color:#fff;
    font-size:1.4rem;
    font-weight:700;
}

.l_flex h4.or{
    background:#f5a65b;
}

.l_flex h4.bl{
    background:#69b8d6;
}

.l_flex h4.pk{
    background:#d88cb4;
}

/* 画像 */

.l_flex picture{
    display:block;
    overflow:hidden;
}

.l_flex picture img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.l_flex li:hover picture img{
    transform:scale(1.05);
}

/* テキスト */

.l_flex .txt{
    padding:25px;
    flex:1;
}

.l_flex .add{
    font-weight:700;
    margin-bottom:15px;
    line-height:1.9;
}

.l_flex .txt p{
    margin:0;
    line-height:1.8;
}

/* ボタン */

.l_flex .btn{
    padding:0 25px 15px;
}

.l_flex .btn a{
    display:block;
    text-align:center;
    text-decoration:none;
    color:#fff;
    padding:14px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn_or{
    background:#f5a65b;
}

.btn_bl{
    background:#69b8d6;
}

.btn_pk{
    background:#d88cb4;
}

.l_flex .btn a:hover{
    opacity:.85;
}

/* 注釈 */

.kome{
    text-align:center;
    font-size:.85rem;
    color:#777;
    margin:0 0 20px;
}

/* スマホ */

@media (max-width: 768px) {

  /* 全体余白 */
  .company-wrap {
    margin: 30px auto;
    padding: 0 15px;
  }

  /* セクションタイトル */
  .section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .section-title::after {
    width: 120px;
  }

  /* ページタイトル */
  .company-page-title {
    padding: 40px 10px 30px;
  }

  .company-page-title h1 {
    font-size: 22px;
  }

  /* サブタイトル */
  .company-sub-title span {
    font-size: 18px;
    padding: 10px 20px;
  }

  /* テーブル */
  .company-table .row {
    grid-template-columns: 1fr;
  }

  .company-table dt {
    padding: 15px;
    font-size: 14px;
    border-right: none;
  }

  .company-table dd {
    padding: 15px;
    font-size: 14px;
  }

  /* 画像上テキスト（最重要修正） */
  .overlay-text {
    font-size: 40px;
    padding: 6px 12px;
  }

  /* 関連会社カード */
  .l_flex ul {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .l_flex picture img {
    height: auto;
  }

  /* アクセスポイント */
  .access-point {
    font-size: 1.1rem;
    padding: 10px 16px;
  }
}