/* 基本的なリセット */
body, h1, h2, h3, p, ul, li, nav {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fdfaff; /* 明るい背景色 */
}

/* ヘッダー */
header {
    background-color: #8E82E6; /* 可愛らしい紫 */
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.app-title {
    font-size: 28px;
    font-weight: 700;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #FFD6F6; /* ホバー時の色をピンクに */
}

/* ヒーローセクション */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/gohobiroulette/hero_background_placeholder.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    min-height: 350px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
}

/* 各コンテンツセクション */
.content-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section h2 {
    font-size: 32px;
    color: #FF6B81; /* 明るいピンク */
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.content-section h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #FF6B81;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.content-section p, .content-section ul li {
    font-size: 16px;
    color: #555;
}

.content-section ul {
    list-style-position: inside;
    padding-left: 0;
}

/* FAQセクション */
.faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-left: 5px solid #FFC371; /* オレンジのアクセント */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #FF6B81;
    font-size: 20px;
    margin-bottom: 10px;
}

/* 背景色グレーのセクション */
.grey-bg {
    background-color: #f7f9fc;
}

/* フッター */
footer {
    background-color: #8E82E6; /* ヘッダーと同じ紫 */
    color: #fff;
    text-align: center;
    padding: 25px 0;
    font-size: 14px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    .app-title {
        margin-bottom: 10px;
    }
    header nav ul {
        flex-direction: column;
        align-items: center;
        padding-left: 0;
    }
    header nav ul li {
        margin: 5px 0;
        margin-left: 0;
    }
    .hero-content h2 {
        font-size: 32px;
    }
}