/* 検索画面用セクション */
.search-main {
    max-width: 900px;
    margin: 48px auto 80px auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.search-title {
    font-size: 2rem;
    color: var(--main-orange-dark);
    margin-bottom: 32px;
    text-align: center;
}
.search-sections {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 28px;
    width: 100%;
    max-width: 520px;
    min-height: 340px;
}
.search-pop {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(255,152,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 12px 24px 12px;
    text-decoration: none;
    color: var(--main-black);
    font-size: 1.1rem;
    font-weight: bold;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    min-width: 0;
    min-height: 120px;
    text-align: center;
}
.search-pop i {
    font-size: 2.4em;
    margin-bottom: 14px;
    color: var(--main-orange-dark);
    transition: color 0.2s, transform 0.2s;
}
.search-pop:hover, .search-pop:focus {
    background: #fff3e0;
    box-shadow: 0 4px 16px rgba(255,152,0,0.18);
    transform: translateY(-4px) scale(1.04);
    color: var(--main-orange-dark);
}
.search-pop:hover i, .search-pop:focus i {
    color: orange;
    transform: scale(1.15) rotate(-8deg);
}
.search-pop span {
    display: block;
    margin-top: 8px;
    font-size: 1.2rem;
    line-height: 1.4;
}
.search-pop span strong {
    color: var(--main-orange-dark);
    font-weight: 700;
}
.search-pop span small {
    display: block;
    font-size: 0.9rem;
    color: var(--main-gray);
    margin-top: 4px;
} 