/*--------------------------------------------------------------
LEGO® SERIOUS PLAY®ページ専用CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1. ヒーローセクション
--------------------------------------------------------------*/
.hero {
    background-color: #ffcc00;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 30px;
}

.hero .cta-button {
    margin-top: 40px;
    background-color: #e67e22;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 0 #b35400;
    transition: all 0.3s;
}

.hero .cta-button:hover {
    background-color: #d35400;
    transform: translateY(2px);
    box-shadow: 0 4px 0 #b35400;
}

/*--------------------------------------------------------------
2. こんなお悩みありませんか？（デザイン強化）
--------------------------------------------------------------*/
.problem-list {
    background-color: #fff;
    border: 8px solid #333;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: left;
    list-style: none;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

.problem-list li {
    padding: 10px 0;
    font-size: 1.2rem;
    border-bottom: 1px dashed #ccc;
    position: relative;
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-list li::before {
    content: "🧩";
    font-size: 1.4rem;
    margin-right: 10px;
    color: #e74c3c;
}

/*--------------------------------------------------------------
3. LEGO® SERIOUS PLAY® とは（3列レイアウト）
--------------------------------------------------------------*/
.features-grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-block {
    background-color: #fff;
    border: 8px solid #333;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.feature-block:hover {
    transform: translateY(-5px);
}

.feature-block img {
    max-width: 200px;
    margin-bottom: 20px;
}

/*--------------------------------------------------------------
4. お客様の声（Voice Cards）
--------------------------------------------------------------*/
.voice-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.voice-card {
    width: 300px;
    min-height: 320px;
    background-color: #fff;
    border: 8px solid #333;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 0 rgba(0, 0, 0, 0.3);
}

.voice-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.voice-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.voice-card p {
    font-size: 1rem;
    color: #333;
}

/*--------------------------------------------------------------
5. 料金プラン
--------------------------------------------------------------*/
.price-plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
}

@media (min-width: 1024px) {
    .price-plans {
        grid-template-columns: repeat(2, 1fr);
    }
}

.plan {
    background-color: #fff;
    border: 8px solid #333;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 0 rgba(0, 0, 0, 0.3);
}

.plan img {
    max-width: 200px;
    margin-bottom: 20px;
}

.plan h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.plan p {
    font-size: 1.1rem;
    color: #333;
}

/*--------------------------------------------------------------
6. FAQ アコーディオン
--------------------------------------------------------------*/
.faq-section {
    padding: 60px 20px;
}

.faq-item {
    margin-bottom: 20px;
    border: 8px solid #333;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

.faq-question {
    font-weight: bold;
    font-size: 1.2rem;
    padding: 20px;
    background-color: #ffcc00;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #ffb300;
}

.faq-answer {
    display: none;
    padding: 20px;
    background-color: #f9f9f9;
    line-height: 1.8;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/*--------------------------------------------------------------
7. 最後のCTA
--------------------------------------------------------------*/
.final-cta {
    padding: 80px 20px;
    text-align: center;
    background-color: #ffcc00;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.final-cta p {
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #333;
}

.final-cta .cta-button {
    margin: 20px 0 60px auto;
    background-color: #e67e22;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 0 #b35400;
    transition: all 0.3s;
}

.final-cta .cta-button:hover {
    background-color: #d35400;
    transform: translateY(2px);
    box-shadow: 0 4px 0 #b35400;
}

/*--------------------------------------------------------------
8. フッター
--------------------------------------------------------------*/
footer {
    background-color: #333;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-top: 8px solid #ffcc00;
    line-height: 2.5;
}