﻿/* -----------------------------------------------------------------------------
**
** カンタン検索 PC
**
----------------------------------------------------------------------------- */
.genre-easy-search-container {
    width: 100%;
    padding: 20px 0;
    background-color: var(--tr-white);
    margin: 0;
    box-sizing: border-box;
}

.easy-search-title {
    text-align: center;
    margin-bottom: 30px;
}

.easy-search-title h2 {
    font-size: 16px;
    font-weight: bold;
    color: var(--tr-black);
    margin-bottom: 8px;
    display: inline-block;
    position: relative;
}

.easy-search-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 3px;
    background-color: var(--tr-red);
}

.search-type-menu {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--tr-black);
    min-width: 140px;
}

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--tr-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: background-color 0.3s ease;
}

.icon-circle img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.search-type-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--tr-black);
    margin-bottom: 4px;
    text-align: center;
    position: relative;
    padding-bottom: 2px;
}

.search-type-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--tr-black);
    transition: width 0.3s ease;
}

.search-type:hover .search-type-title::after {
    width: 100%;
}

.search-type-subtitle {
    font-size: 12px;
    color: var(--tr-deep-gray);
    text-align: center;
    line-height: 1.4;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .search-type-menu {
        gap: 15px;
    }

    .search-type {
        min-width: 100px;
    }

    .icon-circle {
        width: 90px;
        height: 90px;
    }

        .icon-circle img {
            width: 45px;
            height: 45px;
        }

    .search-type-title {
        font-size: 14px;
    }

    .search-type-subtitle {
        font-size: 11px;
    }
}