/* リセットと基本スタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* コンテナ */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    min-height: 100vh;
}

/* ヘッダー */
header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

header h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.1em;
    color: #666;
}

nav {
    text-align: left;
    margin-bottom: 20px;
}

nav a {
    color: #3498db;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

/* メインコンテンツ */
main {
    padding: 40px 0;
}

.content {
    line-height: 1.8;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

h3 {
    font-size: 1.3em;
    color: #34495e;
    margin: 20px 0 10px;
}

p {
    margin-bottom: 15px;
}

/* リンク */
a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* リスト */
ul, ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
}

/* ダウンロードセクション */
.download {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.download p {
    font-size: 1.2em;
    color: #666;
}

/* FAQ */
.faq h3 {
    color: #2c3e50;
    margin-top: 25px;
}

.faq p {
    margin-left: 20px;
    color: #555;
}

/* 機能リスト */
.feature-list h3 {
    color: #2c3e50;
    margin-top: 20px;
}

.feature-list p {
    margin-left: 20px;
    color: #555;
}

/* トラブルシューティング */
.troubleshooting h3 {
    color: #e74c3c;
    margin-top: 20px;
}

/* アプリ情報 */
.app-info {
    list-style: none;
    margin-left: 0;
}

.app-info li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* フッター */
footer {
    text-align: center;
    padding: 40px 0 20px;
    border-top: 1px solid #e0e0e0;
    color: #666;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    main {
        padding: 20px 0;
    }
}

/* 最終更新日 */
.last-update {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}