/* 全体のスタイル */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

/* ヘッダー */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #749fcc;
    padding: 15px 20px;
    color: white;
}

.logo {
    max-height: 50px;
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* メインビジュアル */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #007BFF, #0056b3);
    color: white;
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffcc00;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #ff9900;
}

/* 会社概要 */
.company-info {
    padding: 40px 20px;
    background-color: white;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* 事業内容リスト */
.business-list {
    list-style: none;
    padding: 0;
}

.business-list li {
    font-weight: bold;
    padding-left: 20px;
    position: relative;
}

.business-list li::before {
    content: "✔";
    color: #007BFF;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* お問い合わせ */
.contact {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.contact-button:hover {
    background-color: #0056b3;
}

/* フッター */
.footer {
    text-align: center;
    padding: 15px;
    background-color: #749fcc;
    color: white;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero p {
        font-size: 16px;
    }

    .company-info {
        padding: 30px 15px;
        margin: 10px;
    }
}

/* 事業内容全体を少し右へ */
.business-item {
    margin-left: 20px;
}

/* 2行目以降を2文字分インデント */
.business-item p {
    text-indent: 1em;
}

/* 事業内容全体の中央配置 */
.business {
    max-width: 900px;  /* 横幅を制限 */
    margin: 0 auto;    /* 水平中央配置 */
    padding: 40px 20px;
}

/* 各大項目の左端を統一（h2） */
.business h2 {
    text-align: left;
    padding-left: 10px;
    border-left: 5px solid #007BFF; /* 左にアクセント */
}

/* 本文（p）のテキストを中央配置 */
.business-item p {
    text-align: center;
    text-indent: 0; /* インデント解除 */
}

/* ✔マーク付きリストの調整 */
.check-list {
    list-style: none;
    padding-left: 10px; /* 余白を減らして、リスト全体を左に */
}

.check-list li {
    padding-left: 25px; /* ✔マークとテキストの距離を短く */
    position: relative;
}

/* ✔マーク（またはリストマーカー）の位置調整 */
.check-list li::before {
    content: "✔";
    color: #007BFF;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 事業内容全体の中央配置 */
.business {
    max-width: 900px;  /* 横幅を制限 */
    margin: 0 auto;    /* 水平中央配置 */
    padding: 40px 20px;
}

/* 大項目（h2）の左揃え & チェックマーク削除 */
.business h2 {
    text-align: left;
    padding-left: 10px;
    border-left: 5px solid #007BFF; /* 左にアクセント */
    position: relative;
}

/* 大項目のチェックマークを削除 */
.business h2::before {
    content: none !important; /* ✔マークを削除 */
}

/* 2行目の本文（p）を1文字分右にずらす */
.business-item p {
    text-align: left;
    margin-left: 0.5em; /* 1文字分の余白 */
}

/* 小項目（水色✔リスト）の左余白を増やして、2文字分右に */
.check-list {
    list-style: none;
    padding-left: 2em; /* 2文字分右にずらす */
}

.check-list li {
    padding-left: 25px; /* ✔マークとテキストの距離を調整 */
    position: relative;
}

/* ✔マークの位置調整 */
.check-list li::before {
    content: "✔";
    color: #007BFF;
    font-weight: bold;
    position: absolute;
    left: 0;
}
