/* ヒーローセクションのカスタマイズ */
.hero-section {
    background-color: #e6f7e6; /* メインカラーに合わせた明るい背景 */
    padding: 80px 0;
    text-align: center;
}
.hero-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* 角を少し丸く */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.hero-section h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.hero-section p.lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 40px;
}

/* 課題解決セクションのカスタマイズ */
.problem-section {
    padding: 60px 0;
    background-color: #fff; /* 白い背景でメリハリ */
}
.problem-card {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    height: 100%; /* カードの高さを揃える */
    transition: transform 0.2s ease-in-out; /* ホバーエフェクト */
}
.problem-card:hover {
    transform: translateY(-5px);
}
.problem-card .icon-circle {
    font-size: 2.5rem;
    color: var(--bs-primary);
    background-color: #f0fdf0; /* アイコン背景 */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.problem-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 15px;
}
.problem-card p {
    color: #666;
    line-height: 1.6;
}

/* 使い方ガイドセクションのカスタマイズ */
.guide-section {
    padding: 60px 0;
    background-color: #fff
}

.step-item {
    background-color: #fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    height: 100%;
}
.step-item .step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--bs-primary);
    margin-bottom: 10px;
}
.step-item .step-icon {
    font-size: 3.5rem;
    color: var(--bs-primary);
    margin-bottom: 20px;
}
.step-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.step-item p {
    font-size: 1rem;
    color: #6c757d;
}
.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ced4da;
    height: 100%;
}
@media (max-width: 767.98px) {
    .step-arrow {
        height: auto;
        font-size: 2rem;
        padding: 20px 0;
    }
}
