@charset "UTF-8";

/* ============================================================
   会社概要ページ（overview.html）専用スタイル
   ============================================================ */

/* 全体コンテナ */
.overview-section {
    padding: 60px 20px;
    background-color: #fcfcfc;
}

.overview-inner {
    max-width: 800px;
    margin: 0 auto;
}

/* ページタイトル */
.page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #333333; /* 深いネイビーのアクセントライン */
    letter-spacing: 0.05em;
}

/* 会社概要テーブル */
.overview-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.overview-table th,
.overview-table td {
    padding: 20px 24px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 左側：項目見出し */
.overview-table th {
    background: linear-gradient(to right, #555555, #3a3a3a); 
    color: #fff;
    width: 25%;
    text-align: center;
    font-weight: 700;
    white-space: nowrap;
}

/* 右側：内容 */
.overview-table td {
    color: #333;
    text-align: left;
    vertical-align: middle;
}

/* 事業内容のリストスタイル */
.overview-table td ul {
    margin: 0;
    padding-left: 20px;
}

.overview-table td ul li {
    list-style-type: disc;
    margin-bottom: 4px;
}

.overview-table td ul li:last-child {
    margin-bottom: 0;
}

/* -------------------------------------------
   レスポンシブ（スマホ表示の最適化）
   ------------------------------------------- */
@media screen and (max-width: 640px) {
    .page-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    /* テーブルを縦並びのカード風に変形 */
    .overview-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    }

    .overview-table th,
    .overview-table td {
        display: block;
        width: 100% !important;
        border: none;
        box-sizing: border-box;
    }

    .overview-table th {
        text-align: left;
        padding: 12px 16px;
    }

    .overview-table td {
        padding: 16px;
        border-top: 1px solid #eee;
    }
}