
/*
*****************************************************************************************

バーチャル展示 トップ

*****************************************************************************************
*/

.exhibitor-search-form {
    position: sticky;
    top: calc(var(--header-height) * 1px);
    padding: 24px;
    margin: -24px;
    z-index: 1;
    background: #fff;
}

.exhibitor-search {
    display: flex;
    gap: 8px;

    .input-search {
        flex: 1 1 0;
    }

    .btn.btn {
        width: 6.5em;
        flex: 0 0 auto;
    }

    .input-search.blank + .reset-btn {
        display: none;
    }
    
}

.exhibitor-search-result {
    
}

.exhibitor-search-result-heading {
    display: none;
}

.exhibitor-list {
    --gap: 72px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 var(--gap);
}

.exhibitor-list-item {
    border-bottom: 1px solid var(--blue-border);
    flex: 0 0 auto;
    width: calc((100% - var(--gap)) / 2);
}

.exhibitor-list-item:nth-child(1),
.exhibitor-list-item:nth-child(2) {
    border-top: 1px solid var(--blue-border);
}

:where(.top-search-result) {

    .exhibitor-list-item {
        border-bottom: none;
    }

    .exhibitor-list-item:nth-child(1),
    .exhibitor-list-item:nth-child(2) {
        border-top: none;
    }

    .exhibitor-list-item:nth-child(n+2) + .exhibitor-list-item {
        border-top: 1px solid var(--blue-border);
    }

}

.top-search-exhibitor-list {
	margin: -32px 0;
}

.exhibitor-list-item__link {
    display: flex;
    text-decoration: none;
    padding: 36px 0;
    gap: 40px;
}

.exhibitor-list-item__col-text {
    flex: 1 1 0;
}

.exhibitor-list-item__col-img {
    flex: 0 1 auto;
    width: 128px;
    max-width: 100%;
}

.exhibitor-list-item__img {
    aspect-ratio: 1;
    object-fit: contain;
}

.exhibitor-list-item__title {
	font-size: var(--font-size-md);
    /* font-size: 1.7rem; */
	font-weight: bold;
    line-height: var(--line-height-md);
	color: var(--blue-dark);
	position: relative;
	padding-left: 24px;
	margin: 8px 0;
}

.exhibitor-list-item__title::before,
.exhibitor-list-item__title::after {
	content: '';
	display: block;
	width: 9px;
	aspect-ratio: 1;
	position: absolute;
	top: 1em;
}

.exhibitor-list-item__title::before {
	background: var(--red);
	left: 4px;
	translate: 0 -4px;
}

.exhibitor-list-item__title::after {
	background: var(--blue);
	left: 0;
	translate: 0 -7px;
}

.exhibitor-list-item__title:empty {
	display: none;
}


.exhibitor-list-item__name {
    font-size: var(--font-size-sm);
    font-weight: bold;
    color: var(--blue-highlight);
    margin: 12px 0 0;
}

@media (width <= 768px){

    .exhibitor-list-item {
        width: 100%;
    }

	.exhibitor-list-item__link {
        
    }

    .exhibitor-list-item__col-img {
        max-width: 25%;
    }

}