@charset "UTF-8";
/* CSS Document */

/* ベース設定 */
:root {
    --primary-color: #006400; /* 既存サイトに寄せた深緑 */
    --accent-color: #d4edda;  /* 薄い緑（背景用） */
    --text-color: #333333;
    --white: #ffffff;
}

.modern-content-wrapper {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9fdf9; /* ほんのり緑がかった白 */
}

/* ヒーローセクション（タイトル周り） */
.hero-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color), #004d00);
    color: var(--white);
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.hero-header p {
    font-size: 1rem;
    opacity: 0.9;
}

/* セクション共通 */
.info-section {
    background: var(--white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-color);
}

.info-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* テーブルスタイル（モダン化） */
.modern-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.modern-table th, .modern-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.modern-table th {
    background-color: var(--accent-color);
    color: var(--primary-color);
    width: 30%;
    font-weight: bold;
}

/* 電話誘導エリア（最重要） */
.contact-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
    border-radius: 12px;
    margin-top: 50px;
}

.contact-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.phone-number {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.phone-number:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    background-color: #f0f0f0;
}

.contact-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 10px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .modern-content-wrapper { padding: 10px; }
    .hero-header { padding: 40px 15px; }
    .info-section { padding: 20px; }
    .modern-table th, .modern-table td { display: block; width: 100%; }
    .modern-table th { border-bottom: none; }
    .phone-number { font-size: 1.5rem; padding: 12px 25px; width: 100%; box-sizing: border-box;}
}