/* 基本リセットとフォント */
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #fcf4f5; /* 非常に明るいピンク系の背景 */
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
    text-align: center;
}

/* メインカラー: 濃いピンク */
/* アクセントカラー: 明るいピンク/マゼンタ */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #c2185b; /* 濃いピンク (メインカラー) */
    border-bottom: 3px solid #ff4081; /* 明るいピンク (アクセントカラー) */
    display: inline-block;
    padding-bottom: 5px;
}

/* ヘッダー */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
}

.logo a {
    display: block;
    line-height: 1.2;
    color: #c2185b; /* 濃いピンク */
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.logo-sub {
    font-size: 1rem;
    font-weight: 400;
    display: block;
}

.nav-list {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.nav-link {
    display: block;
    padding: 10px 15px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ff4081; /* 明るいピンク */
}

/* ヒーローセクション */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-image-placeholder {
    background-color: #f8bbd0; /* 非常に明るいピンク */
    background-image: url('placeholder-bg.jpg'); /* 実際の背景画像を指定 */
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 20px;
}

.hero-date {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-theme {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.hero-catch {
    font-size: 1.2rem;
    margin-top: 15px;
}

/* カードセクション */
.info-cards-section {
    padding: 40px 0;
    background-color: #fff;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.info-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 5px solid;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* カードボーダーの色をピンク系のバリエーションに変更 */
.announce-card { border-color: #ff4081; } /* お知らせ: マゼンタ */
.plan-card { border-color: #c2185b; } /* 企画一覧: 濃いピンク */
.pamphlet-card { border-color: #f48fb1; } /* パンフレット: 薄いピンク */

.info-card h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.info-card p {
    margin: 0;
    color: #666;
}

.info-card .arrow {
    display: block;
    margin-top: 15px;
    font-size: 1.5rem;
    text-align: right;
    font-weight: 700;
}

/* キャラクターセクション */
.character-section {
    background-color: #ffebee; /* 非常に明るい赤/ピンクの背景色 */
}

.character-layout {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 40px;
}

.character-text-content {
    flex: 1;
}

.character-image-placeholder {
    width: 250px;
    height: 250px;
    background-color: #f48fb1; /* 薄いピンク */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

/* フッター */
.footer {
    background-color: #c2185b; /* 濃いピンク (メインカラー) */
    color: white;
    padding: 40px 0 20px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    gap: 40px;
    text-align: left;
}

.sns-area, .contact-area {
    flex: 1;
}

.footer h4 {
    font-size: 1.2rem;
    border-left: 3px solid #ff4081; /* 明るいピンク */
    padding-left: 10px;
}

.sns-links a {
    display: inline-block;
    background-color: #ff4081; /* 明るいピンク */
    color: white;
    padding: 8px 15px;
    margin-right: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.sns-links a:hover {
    background-color: #c2185b;
}

.contact-area ul {
    list-style: none;
    padding: 0;
}

.contact-area li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
}

.copyright {
    margin-bottom: 5px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
    }

    .nav-list {
        padding-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        padding: 5px 10px;
        font-size: 0.9rem;
    }

    .hero-theme {
        font-size: 3rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .character-layout {
        flex-direction: column;
        text-align: center;
    }

    .character-image-placeholder {
        order: -1; /* 画像を上に配置 */
        margin-bottom: 20px;
    }

    .footer-top {
        flex-direction: column;
    }
}

/* style.css に追記 */
.pdf-viewer-container iframe {
    /* 画面の85%の高さを確保し、縦長になっても見やすくする */
    height: 85vh !important; 
    width: 100%;
}