/* 基本設定 */
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.8em; /* 行間を広めに設定して可読性を向上 */
}

/* 全体のコンテナ */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 垂直方向の中央揃え */
}

/* ロゴ */
.logo-area {
    margin-bottom: 60px;
}

.logo-img {
    max-width: 250px;
    height: auto;
}

/* 本文エリア */
.content {
    margin-bottom: 80px;
}

.content p {
    margin-bottom: 2.5em;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

/* 会社名の強調（赤色リンク風） */
.highlight {
    color: #bf2228; /* 画像のロゴ色に合わせた赤 */
    font-weight: bold;
    text-decoration: none;
}

/* フッター */
.footer {
    margin-top: auto; /* 下部に固定 */
    padding-bottom: 40px;
}

.footer p {
    font-size: 0.85rem;
    color: #888888;
}

/* レスポンシブ対応（スマホ表示） */
@media (max-width: 768px) {
    .container {
        padding: 60px 20px;
    }
    .content p {
        font-size: 0.95rem;
        text-align: left; /* スマホでは左揃えの方が見やすい場合があるため */
        /*display: inline-block;  中央寄せの中での左揃え */
        text-align: justify;
    }
}