/* 素材ライブラリページのスタイル */

/* ヒーロー調整 */
.materials-hero {
    height: 60vh;
}

.materials-hero .hero-title {
    font-size: 3.5rem;
}

.materials-hero .hero-subtitle {
    font-size: 1.4rem;
}

/* 準備中メッセージ */
.coming-soon {
    text-align: center;
    padding: 5rem 1rem;
}

.coming-soon h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.coming-soon p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #555;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .materials-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .materials-hero .hero-subtitle {
        font-size: 1.1rem;
    }
}