/* ==========================================================================
   会社概要（company）専用スタイル - 視認性重視（box-shadowなし）
   ========================================================================== */


.company-lp {
    color: #333;
    line-height: 2.2; /* 文字が大きいため行間も広めに設定 */
    font-size: 1.4rem; /* 基本サイズを1.4rem以上に固定 */
}

/* 970px幅コンテナ */
.lp-inner {
    max-width: 970px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 全幅背景セクション */
.lp-full-bg {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    padding: 120px 0;
}

/* セクションの見出し */
.lp-sec-title {
    font-size: 3.2rem;
    color: #004a99;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 900;
    position: relative;
    padding-bottom: 30px;
}
.lp-sec-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background: #ff8c00; /* アクセントカラーのオレンジ */
}

/* メッセージエリア - 影の代わりにボーダーを使用 */
.lp-msg-card {
    background: #f4f7f9;
    padding: 50px;
}

/* 強み・事業内容カード - 影の代わりに背景色と下線を使用 */
.lp-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.lp-grid-item {
    flex: 1;
    min-width: calc(50% - 20px);
    background: #f4f7f9;
    padding: 50px;
}
.lp-grid-item h4 {
    font-size: 1.8rem;
    color: #004a99;
    margin-bottom: 25px;
    font-weight: 900;
}

/* 会社情報テーブル */
.lp-info-table {
    width: 100%;
    margin: 60px 0;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1.5rem;
}
.lp-info-table th {
    width: 300px;
    padding: 35px;
    background-color: #004a99;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: left;
    font-weight: 700;
}
.lp-info-table td {
    padding: 35px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    border-left: 1px solid #eee;
}
.lp-info-table tr:last-child th { border-bottom: none; }
.lp-info-table tr:first-child td { border-top: 1px solid #eee; }

/* CTAボタン */
.lp-cta-btn {
    display: inline-block;
    background: #ff8c00;
    color: #fff !important;
    padding: 35px 120px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 2rem;
    text-decoration: none;
    transition: 0.3s;
}
.lp-cta-btn:hover {
    background: #e67e00;
    text-decoration: none;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .company-lp { font-size: 1.2rem; }
    .lp-grid-item { min-width: 100%; padding: 40px; }
    .lp-info-table th, .lp-info-table td { display: block; width: 100%; padding: 25px; }
    .lp-info-table td { border-top: none; }
    .lp-sec-title { font-size: 2.4rem; }
}