/*
Theme Name: LAW Child
Theme URI: https://soudamso.com/
Description: 早田経営支援オフィスの子テーマ
Author: Your Name
Author URI: https://soudamso.com/
Template: law_tcd031
Version: 1.0.0
*/
/* =========================================================
   人材採用サービスLP専用カスタムCSS (law-child) - !important 適用版
   ========================================================= */

/* =========================================================
   LP最終デザインCSS (law-child) - コントラスト調整済み
   ========================================================= */

/* カラーパレット (野暮ったさを排除し、青系の落ち着いた濃淡で統一) */
:root {
    --color-primary: #333a45; /* ダークチャコール (濃さを緩和) */
    --color-accent: #8da4b7;  /* 非常に淡いアッシュブルー (アクセント) */
    --color-light-gray: #f9fafb; /* 非常に淡い背景色 */
    --color-text: #222;
}

/* ベーススタイル */
.lp-section-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

body {
    background-color: var(--color-light-gray);
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    margin: 0;
    padding: 0;
}

/* -----------------------
   1. LPヘッダーエリア (シックなネイビー)
   ----------------------- */
.lp-header-area {
    background-image: linear-gradient(rgba(51, 58, 69, 0.85), rgba(51, 58, 69, 0.85)), url('https://placehold.co/1200x350/333a45/ffffff?text=TRUSTED+BUSINESS+PARTNER');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
}
.lp-header-area h1 {
    font-size: 2.5rem;
}

/* -----------------------
   2. LPコンテンツの装飾
   ----------------------- */
.lp-catch {
    background-color: white;
    padding: 50px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: -80px; /* ヘッダー画像に重ねる */
    position: relative;
    z-index: 10;
}
.lp-main-title {
    font-size: 36px;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 900;
}
.lp-sub-catch {
    font-size: 20px;
    text-align: center;
    color: #555;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--color-primary);
}
.lp-section-title {
    font-size: 28px;
    color: var(--color-primary);
    border-left: 8px solid var(--color-accent); /* アクセントカラーを適用 */
    padding-left: 20px;
    margin: 60px 0 35px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* 課題とリスト */
.lp-list li {
    background: white;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    list-style: none;
    padding-left: 40px;
    position: relative;
    font-size: 17px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    /* border-left: 5px solid var(--color-accent); ★縁取り削除★ */
}
.lp-list li::before {
    content: "✔";
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 16px;
    color: var(--color-accent);
}

/* 選ばれる理由カード (高さ調整済み) */
.lp-reason-grid {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
    align-items: stretch;
}
.lp-reason-card {
    flex: 1 1 calc(33.333% - 25px);
    border: none;
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: flex; 
    flex-direction: column; 
}

/* ★★★ ズレ解消のための最終調整 CSS ★★★ */
.lp-reason-title-container {
    height: 90px; 
    line-height: 1.25; 
    margin-bottom: 25px; 
    position: relative; 
    overflow: hidden; 
}
.lp-reason-title-container::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -15px; 
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
}
/* ★★★ ズレ解消のための最終調整 CSS 終了 ★★★ */

.lp-reason-card h3 {
    color: var(--color-accent);
    font-size: 22px;
    margin-top: 0;
    font-weight: 800;
}
.lp-reason-card p {
    flex-grow: 1; 
}
.future-note {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
    padding-top: 8px;
    border-top: 1px dotted #ccc;
    text-align: right;
}

/* サービスの流れ (フローを視覚的に強化) */
.lp-flow-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}
.lp-flow-step {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    border-left: 8px solid var(--color-accent); /* アクセントカラーの縦線 */
}
.lp-flow-step strong {
    display: block;
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 5px;
    font-weight: 800;
}
.lp-flow-step span {
    font-size: 15px;
    color: #555;
    margin-top: 5px;
    display: block;
}
.lp-flow-time {
    background-color: var(--color-accent);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

/* 料金体系 (濃い色で安定感) */
.lp-pricing {
    text-align: center;
    background: var(--color-primary);
    padding: 50px 30px;
    border-radius: 12px;
    /* border: 5px solid var(--color-accent); ★縁取り削除★ */
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    margin-top: 60px;
}
/* CTAボタン (シックなアクセントカラーへ変更) */
.lp-cta-button {
    display: inline-block;
    background-color: var(--color-accent);
    color: white !important;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 35px;
    box-shadow: 0 6px 0 #58677c;
    transition: transform 0.2s, box-shadow 0.2s;
}
.lp-cta-button:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #58677c;
}