/* 基本設定 */
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

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

/* ヘッダー */
header {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    width: 60px;
    height: 60px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    font-size: 10px;
    font-weight: bold;
}

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

/* メインビジュアル */
.main-visual {
    width: 100%;
    height: 400px;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #666;
}

/* セクション共通 */
.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

/* STORY・ABOUT共通の枠 */
.info-frame {
    border: 3px solid #ccc;
    border-radius: 50px;
    padding: 60px 40px;
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    text-align: center; /* 中身をすべて中央揃えに */
}

.info-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.info-content p {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}

/* スマホ用調整 */
@media (max-width: 768px) {
    .info-frame {
        padding: 30px 20px;
        border-radius: 30px;
    }
}

/* NEWS / STORY ボックス */
.news-box, .story-box, .about-box {
    border: 3px solid #ccc;
    border-radius: 40px;
    padding: 40px;
    background: #fff;
}

.news-list {
    list-style: none;
    padding: 0;
}

.news-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.news-list span {
    margin-right: 20px;
}

/* PRODUCT INFO / CHARACTER */
.product-info, .char-detail {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #eee;
    padding: 30px;
    border-radius: 30px;
}

.image-placeholder, .char-visual {
    width: 200px;
    height: 250px;
    background: #ccc;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* キャラクター スライダー部分 */
.char-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.char-thumb {
    width: 100px;
    height: 150px;
    background: #ccc;
    border-radius: 10px;
}

/* フッター */
footer {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid #ccc;
    margin-top: 50px;
    color: #666;
}



/* NEWSページ専用 */
.news-frame,about-frame {
    border: 3px solid #ccc;
    border-radius: 50px;
    padding: 60px 40px;
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.news-full-list,about-full-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-full-list,about-full-list li {
    display: flex;
    gap: 30px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.news-full-list .date {
    font-weight: bold;
    flex-shrink: 0;
}

/* GALLERYページ専用 */
.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.gallery-image-large {
    width: 700px; /* ワイヤーフレームに合わせた横長サイズ */
    max-width: 100%;
    height: 350px;
    background: #ccc;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #666;
}

/* レスポンシブ調整（スマホで見るとき） */
@media (max-width: 768px) {
    .gallery-image-large {
        width: 100%;
        height: 200px;
        border-radius: 20px;
    }
    
    .news-frame {
        padding: 30px 20px;
    }
}