/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本設定 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: #444;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    min-height: 100vh;
}

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

/* ヘッダー */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    text-align: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d45087;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* メインビジュアル */
.hero {
    padding: 80px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d45087;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-item i {
    color: #d45087;
    font-size: 1.2rem;
}

.info-item span {
    font-weight: 500;
    color: #444;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #d45087, #ff6b6b);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(212, 80, 135, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 80, 135, 0.4);
}

.cta-button.line-button {
    background: linear-gradient(45deg, #00B900, #00D11A);
    box-shadow: 0 8px 25px rgba(0, 185, 0, 0.3);
}

.cta-button.line-button:hover {
    box-shadow: 0 12px 35px rgba(0, 185, 0, 0.4);
}

.cta-button i {
    font-size: 1.2rem;
}

/* セクション共通 */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #d45087;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #d45087, #ff6b6b);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* 映画セクション */
.movie-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.movie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.movie-poster {
    text-align: center;
}

.poster-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.movie-text h3 {
    font-size: 1.5rem;
    color: #d45087;
    margin-bottom: 20px;
    font-weight: 600;
}

.movie-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.movie-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ffecd2, #fcb69f);
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature i {
    color: #d45087;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: #444;
}

/* イベント詳細 */
.event-details {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.detail-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.detail-header i {
    color: #d45087;
    font-size: 1.5rem;
}

.detail-header h3 {
    font-size: 1.3rem;
    color: #444;
    font-weight: 600;
}

.detail-card ul {
    list-style: none;
}

.detail-card li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.detail-card li::before {
    content: '✓';
    color: #d45087;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* おすすめセクション */
.recommend-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.recommend-item {
    background: linear-gradient(45deg, #ffecd2, #fcb69f);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.recommend-item:hover {
    transform: translateY(-3px);
}

.recommend-item i {
    color: #d45087;
    font-size: 2rem;
    margin-bottom: 15px;
}

.recommend-item h4 {
    color: #444;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

/* フォーム */
.application-section, .contact-section {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.application-form, .contact-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.required {
    color: #ff6b6b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d45087;
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-text {
    flex: 1;
}

.privacy-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    line-height: 1.5;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #d45087, #ff6b6b);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 80, 135, 0.3);
}

.application-note {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #d45087;
}

.application-note h4 {
    color: #d45087;
    margin-bottom: 15px;
    font-weight: 600;
}

.application-note ol {
    padding-left: 20px;
    color: #555;
}

.application-note li {
    margin-bottom: 8px;
}

/* 主催者セクション */
.organizer-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

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

.organizer-card {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.organizer-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.organizer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d45087, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.organizer-icon i {
    color: white;
    font-size: 1.5rem;
}

.organizer-info h3 {
    font-size: 1.8rem;
    color: #d45087;
    font-weight: 700;
    margin-bottom: 5px;
}

.organizer-title {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.organizer-message {
    color: #555;
    line-height: 1.8;
}

.organizer-message p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.organizer-closing {
    font-weight: 600;
    color: #d45087;
    border-left: 4px solid #d45087;
    padding-left: 20px;
    margin-top: 25px;
}

/* お問い合わせ */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    height: fit-content;
}

.contact-info h4 {
    color: #d45087;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-methods {
    margin-top: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #555;
}

.contact-method i {
    color: #d45087;
    width: 20px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* フッター */
.footer {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    padding: 40px 0 20px;
    margin-top: 80px;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ecf0f1;
}

.footer-content p {
    color: #bdc3c7;
    margin-bottom: 5px;
}

.footer-info {
    margin-top: 20px;
}

.footer-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .movie-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .movie-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .poster-image {
        max-width: 250px;
    }
    
    .recommend-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .organizer-card {
        padding: 25px;
    }
    
    .organizer-header {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .organizer-icon {
        width: 50px;
        height: 50px;
    }
    
    .organizer-info h3 {
        font-size: 1.5rem;
    }
    
    .organizer-message p {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .contact-form,
    .contact-info {
        padding: 20px;
    }
    
    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .info-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .poster-image {
        max-width: 200px;
    }
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.detail-card,
.recommend-item {
    animation: fadeInUp 0.6s ease-out;
}

/* スクロールアニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* フォーカス時のアクセシビリティ */
*:focus {
    outline: 2px solid #d45087;
    outline-offset: 2px;
}

/* ホバー効果 */
a, button {
    transition: all 0.3s ease;
}

/* リンクスタイル */
.detail-card a {
    transition: all 0.3s ease;
}

.detail-card a:hover {
    color: #ff6b6b !important;
    text-decoration: underline !important;
}

.info-item a {
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: #ff6b6b !important;
    text-decoration: underline !important;
}

/* カスタムスクロールバー */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #d45087, #ff6b6b);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #c1407a, #ff5555);
}