body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    background: #000;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* ウィンドウサイズいっぱい */
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover; /* 画像をウィンドウサイズにフィット */
}

.hero-text {
    font-size: 16px; /* フォントサイズを小さく */
    margin-top: 20px; /* hero.pngの下に配置 */
}

.section-title {
    font-size: 24px;
    margin: 20px 0;
}

.section-title.blue { color: #0099ff; }
.section-title.red { color: #ff3333; }
.section-title.yellow { color: #ffcc00; }
.section-title.pink { color: #ff66cc; }

.download-btn {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    margin: 20px 0;
    border-radius: 5px;
}

.sns-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.sns-footer img {
    width: 40%; /* サイズを小さく */
    max-width: 200px; /* 最大サイズ制限 */
}

footer {
    background: #000;
    padding: 10px;
    font-size: 14px;
}