/* 基本設定 */
body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #333; 
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ヘッダー：ロゴの上の余白を確保 */
.l-header {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 5px; 
}

.p-logo img {
    height: clamp(25px, 3.5vw, 40px);
    width: auto;
}

/* 共通見出し */
.c-heading {
    text-align: center;
    font-size: clamp(1.4rem, 4vw, 2rem);
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 3px solid #007bff; 
    display: block; 
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* 各セクションの基本余白 */
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* 1. ファーストビュー */
.p-hero {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    justify-content: center; 
    gap: clamp(10px, 3vw, 40px); 
    padding: 15px 20px;
}

.p-hero__content {
    flex: 1;
    min-width: 300px;
}

.p-hero__main-copy {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem); 
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

.p-hero__image {
    flex: 1;
    text-align: center;
    min-width: 280px;
}

.p-hero__image img {
    max-width: 100%;
    height: auto;
}

/* 2. サービス紹介 */
.p-service-card {
    background-color: #fff;
    padding: 25px; 
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: left;
    max-width: 900px;
}

.p-service-card__title {
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 8px;
    margin-top: 0;
    margin-bottom: 15px;
}

.p-service-card__features li {
    margin-bottom: 6px;
    padding-left: 1.5em;
    position: relative;
    list-style: none;
}

.p-service-card__features li::before {
    content: "✓"; 
    color: #28a745; 
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 3. 会社概要（センタリング修正） */
.p-contact {
    border-top: 1px solid #eee;
    padding-top: 40px;
    padding-bottom: 40px;
}

.p-company-info {
    max-width: 500px; /* 横幅を少し絞ることで中央にまとまって見えるように */
    margin: 0 auto;
    text-align: left;
}

.p-company-info dl {
    margin: 0;
}

.p-company-info dt {
    font-weight: bold;
    float: left;
    width: 120px; /* ラベルの幅を固定 */
    clear: both;
}

.p-company-info dd {
    margin-left: 130px; /* dtの幅+余白 */
    margin-bottom: 12px;
}

/* フッター（余白追加） */
.l-footer {
    margin-top: 60px; /* 前のセクションとの間にスペースを空ける */
    text-align: center;
    padding: 30px 20px;
    background-color: #333;
    color: white;
    font-size: 0.85rem;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .p-hero {
        padding-top: 10px;
        gap: 20px;
    }
    .p-hero__main-copy {
        font-size: 1.5rem;
    }
    .p-company-info {
        max-width: 100%;
    }
    .p-company-info dt {
        float: none;
        width: auto;
    }
    .p-company-info dd {
        margin-left: 0;
        margin-bottom: 20px;
    }
}