/* Googleフォント設定 */
body {
    font-family: 'M PLUS 1p', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffcccc; /* 全体の背景色 */
    color: #333;
}

/* ヘッダー */
.header {
    width: 100%; /* 横幅いっぱいに広げる */
    background-color: #ff7b8a; /* 背景色 */
    padding: 60px 0; /* 高さを調整 */
}

.header-content {
    max-width: 800px; /* コンテンツの横幅制限 */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.header-text {
    flex: 1;
    margin-right: 20px;
}

.header h1 {
    font-size: 2.8rem; /* ヘッダーのタイトルを大きく */
    font-weight: bold;
    margin: 10px 0 0;
    color: #fff;
}

.header h2 {
    font-size: 1.5rem; /* サブタイトルも少し大きく */
    margin: 0;
    font-weight: bold;
    color: #fff;
}

.header-subtext {
    font-size: 1rem; /* 小さな文字も少し大きく */
    margin-top: 15px;
    line-height: 1.8; /* 行間を少し広げる */
    color: #fff;
}

.header-image {
    flex-shrink: 0;
}

.header-image img {
    max-width: 180px; /* 画像を少し大きく */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* コンテンツ */
.content {
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
}

.content-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.content ul li {
    margin-bottom: 30px; /* 各ゲームのタイトルとボタンの間隔を広げる */
}

.content ul li strong {
    color: #ff6666;
    font-size: 1.2rem;
    display: block; /* タイトルを独立したブロックに */
    margin-bottom: 10px; /* ボタンとの間隔を調整 */
}

/* リンクのスタイリング */
.content ul li ul li a {
    text-decoration: none;
    color: #fa4f70; /* リンクの色 */
    font-weight: bold;
    padding: 8px 12px; /* ボタン風の余白 */
    border: 1px solid #fa4f70;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    display: inline-block; /* ボタンの見た目を維持 */
}

.content ul li ul li a:hover {
    background-color: #fa4f70;
    color: #fff;
}

/* フッター */
.footer {
    width: 100%; /* 横幅いっぱいに広げる */
    background-color: #ff7b8a; /* 背景色 */
    padding: 20px 0;
    color: #fff;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.footer p {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer ul {
    list-style-type: disc;
    padding-left: 20px;
}

.footer ul li {
    margin-bottom: 5px;
}

/* フッターの住所部分 */
.footer-address {
    text-align: center; /* 中央揃え */
    background-color: #fa4f70; /* 新しい背景色 */
    padding: 10px;
    border-radius: 0; /* 左右と下の背景色を断ち切りにする */
    color: #fff; /* 白い文字 */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    .header-text {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .header-image img {
        max-width: 120px;
    }
    .header h1 {
        font-size: 2rem;
    }
    .header h2 {
        font-size: 1.3rem;
    }
    .footer {
        font-size: 0.85rem;
    }
}
