/* プレスキット専用スタイル */
section {
    padding: 30px 120px;
    text-align: center;
}

/* ヘッダーセクション */
.press-kit-header {
    padding: 120px 60px 60px;
    text-align: center;
}

.header-logo {
    margin-bottom: 40px;
}

.header-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.press-kit-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.press-kit-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ホームに戻るボタン */
.back-to-home {
    padding: 40px 60px;
    text-align: center;
}

/* プレスキットグリッド */
.press-kit-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
}

/* プレスキットアイテム */
.press-kit-item {
    position: relative;
}

.press-kit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.press-kit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    /* background: linear-gradient(90deg, #4CAF50, #2196F3, #9C27B0, #FF9800); */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.press-kit-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.press-kit-card:hover::before {
    opacity: 1;
}

/* プレスキットアイコン */
.press-kit-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.press-kit-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    transition: all 0.3s ease;
}

.press-kit-card:hover .press-kit-icon {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.press-kit-card:hover .press-kit-icon svg {
    transform: scale(1.1);
}

/* カードのコンテンツ部分 */
.press-kit-content {
    flex-grow: 1;
    text-align: center;
}

/* プレスキットカードタイトル */
.press-kit-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* プレスキットカード説明 */
.press-kit-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 0;
}

/* プレスキットボタン */
.press-kit-btn {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    text-decoration: none;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.press-kit-btn:hover {
    background: white;
    color: #2a5d5a;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* 連絡先情報 */
.contact-info {
    text-align: center;
}

.contact-info p {
    margin-bottom: 4px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #66BB6A;
    text-decoration: underline;
}

/* レスポンシブデザイン */
@media (max-width: 1200px) {
    .press-kit-header {
        padding: 100px 40px 50px;
    }
    
    .press-kit-title {
        font-size: 2.5rem;
    }
    
    .press-kit-grid {
        gap: 30px;
        padding: 40px;
    }
    
    .header-logo img {
        max-width: 300px;
    }
}

@media (max-width: 720px) {
    section {
        padding: 30px 20px;
        text-align: center;
    }

    .press-kit-header {
        padding: 80px 20px 40px;
    }
    
    .press-kit-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .press-kit-description {
        font-size: 1rem;
    }
    
    .press-kit-grid {
        gap: 25px;
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .press-kit-card {
        padding: 25px 20px;
    }
    
    .back-to-home {
        padding: 30px 20px;
    }
    
    .header-logo img {
        max-width: 250px;
    }
    
    .press-kit-icon {
        width: 60px;
        height: 60px;
    }
    
    .press-kit-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* 特別な効果 */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.press-kit-card:nth-child(even):hover {
    animation: float 2s ease-in-out infinite;
} 