@charset "UTF-8";

/* 共通 */
.main-nav {
    display: none;
}

.m_title {
	background-color: var(--assort-color);
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: 40px;
	font-weight: bold;
}

/* gallery */
.gallery {
	padding: 80px 0;
}
.gallery .title {
	color: var(--assort-color);
	font-family: "Jost", sans-serif;
	font-size: 40px;
	font-weight: bold;
}
.gallery .title span{
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	display: block;

}

.gallery-wrapper {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}


.lineup-title-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.gallery .wrapper_grid1 {
    margin-top: 100px;
}

.gallery .wrapper_grid1 .item {
    width: calc(100%/5);

}

.gallery .wrapper_grid1 img{
    width: 100%;
    aspect-ratio: 1/1;
}

.gallery .wrapper_grid2 .item {
    width: calc(100%/5);

}

.gallery .wrapper_grid2 img{
    width: 100%;
    aspect-ratio: 1/1;
}

.lineup-title-image{
    margin-top: 2em;
}


/* lux-arcus */
.brand-gallery {
    padding: 80px 0;
}

.brand-gallery h2 img {
    width: 100%;
    height: auto;
}

.brand-gallery-text {
    margin: 60px auto 0;
    color: var(--assort-color);
    border: 1px solid var(--assort-color);
    padding: 2em;
    max-width: 900px;
    font-size: 18px;
}
.brand-gallery-text p span {
    border-bottom: 1px solid var(--assort-color);
    color: var(--assort-color);
    margin-top: .5em;
    margin-bottom: 1em;
    display: inline-block;
    font-weight: bold;
}


/* brand-item */
.brand-item {
	padding: 80px 0;
}
.brand-item .title {
	background-color: var(--assort-color);
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: 40px;
	font-weight: bold;
}
.brand-item .title span{
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	display: block;

}

.brand-item-wrapper {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

/* ここから */




@media (max-width: 900px) {
    .gallery .wrapper_grid1, 
    .gallery .wrapper_grid2 {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .gallery .wrapper_grid1 .item {
        width: calc(100%/2);
    
    }
    
    .gallery .wrapper_grid1 img{
        aspect-ratio: 1/1;
        height: auto;
    }
    
    .gallery .wrapper_grid2 .item {
        width: calc(100%/2);
    
    }

    .gallery .wrapper_grid2 img{
        aspect-ratio: 1/1;
        height: auto;
    }

.lineup-title-image{
    width: 40%;
}

}

