.joho{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
}

.joho-comment{
    text-align: center;
    font-size: 15px;
    margin-bottom: 40px;
}

input{
    border: none;
    text-align: center;
    width: 400px;
    border-radius: 3px;
    padding: 15px 20px;
    font-size: 16px;
    color: #20204e;
    flex-grow:1;
}

.comment{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.search-page{
    width: min(1100px, 92%);
    margin: 40px auto 80px;
}

.search-title{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.search-form-outline{
    background: #f8f8f8;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.search-row{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.search-item label{
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.search-item input,
.search-item select{
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 15px;
    text-align: left;
}

.search-actions{
    display: flex;
    gap: 10px;
}

.search-button,
.reset-button{
    height: 42px;
    padding: 0 18px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 10px 26px rgba(32, 32, 78, 0.06);
}

.search-button{
    background: #20204e;
    color: #fff;
}

.reset-button{
    background: #e9e9e9;
    color: #333;
}

.search-result-head{
    margin-bottom: 16px;
}

.result-count{
    font-size: 15px;
    color: #555;
}

.no-result{
    padding: 24px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    color: #666;
}

.company-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.company-card{
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.company-card-link{
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.company-image img{
    display: block;
    width: 50%;
    object-fit: cover;
}

.company-card-body{
    padding: 18px;
}

.company-meta{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.region-tag,
.industry-tag{
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.region-tag{
    background: #f1f1f1;
    color: #333;
}

.industry-tag{
    color: #fff;
}

.company-name{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.company-address{
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.7;
}

.company-profile{
    font-size: 14px;
    color: #444;
    line-height: 1.8;
}

@media (max-width: 768px){
    .search-row{
        grid-template-columns: 1fr;
    }

    .company-grid{
        grid-template-columns: 1fr;
    }
}
