/* 検索フォームのデザイン */
.search-section {
    background: linear-gradient(135deg, #ff6600, #ff3300);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* 各選択メニュー */
select, button {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 18px;
    transition: 0.3s;
}

/* ボタンのデザイン */
button {
    background-color: #222;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    border: 2px solid #ff6600;
}

button:hover {
    background-color: #ff6600;
    transform: scale(1.05);
}






/* 検索結果カードのデザイン */
.result-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-card h3 {
    color: #ff6600;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.result-card:hover {
    transform: scale(1.05);
}





/* フェードインアニメーション */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-card {
    animation: fadeIn 0.5s ease-in-out;
}