/* 基本スタイル */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 85%;
    margin: 0 auto;
    max-width: 1200px;
}

/* ヘッダー */
header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    margin: 0;
    font-size: 24px;
    color: #007bff;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline-block;
    margin-left: 20px;
}

header nav a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
}

/* メインコンテンツ */
main section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.hero {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero h2 {
    font-size: 42px;
    margin-top: 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* 事業内容 */
.service-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.service-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    flex-basis: 30%;
    text-align: center;
}

/* 会社概要ページ（ここから追記） */
.profile-table {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
}

.profile-table dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    border-bottom: 1px solid #ddd;
}

.profile-table dt {
    flex-basis: 30%;
    padding: 20px;
    background-color: #f9f9f9;
    font-weight: bold;
    box-sizing: border-box;
}

.profile-table dd {
    flex-basis: 70%;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    line-height: 1.6;
}
/* （ここまで追記） */

/* お問い合わせフォーム */
#contact-form form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* フッター */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* フッター（ここから追記） */
footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

footer .footer-links li {
    display: inline-block;
    margin: 0 10px;
}

footer .footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

footer .footer-links a:hover {
    text-decoration: underline;
}
/* （ここまで追記） */