@charset "utf-8";
/*-----------------------------------------------
 * CharaVisual
-------------------------------------------------*/
.visualLists{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: min(calc(40 / var(--vw-min) * 100vw), 40px);
	column-gap: min(calc(40 / var(--vw-min) * 100vw), 40px);
}
.visualList{
	width: 100%;
}
.visualList__btn{
	display: block;
	width: 100%;
	text-align: unset;
	line-height: 2;
	color: var(--color-black);
	pointer-events: none;
}
.visualList__image{
	display: block;
	width: 100%;
	padding-top: 141.4063%;
	overflow: hidden;
	position: relative;
	background-color: var(--color-white);
	pointer-events: auto;
}
.visualList__image--bg{
	position: absolute;
	inset: 0;
	filter: blur(8px);
	opacity: 40%;
}
.visualList__image--bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.visualList__image--thumb{
	position: absolute;
	inset: 0;
	z-index: 1;
}
.visualList__image--thumb img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.visualList__image:after{
	content: '';
	position: absolute;
	inset: 0;
	border: 1px solid var(--color-main);
	z-index: 1;
}

.visualList__title{
	display: inline-block;
	padding-top: 0.75em;
	line-height: 1.5;
	pointer-events: auto;
}

@media screen and (max-width:768px){
	.visualLists{
		gap: calc(48 / var(--vw-min) * 100vw);
	}
}

@media screen and (hover:hover) and (pointer: fine){
	.visualList__image--thumb img{
		transition: transform .3s ease, filter .3s ease;
	}
	.visualList__btn:hover .visualList__image--thumb img{
		transform: scale(102%);
		filter: brightness(110%);
	}
}


/* Animation */
.visualLists{
	opacity: 0;
	transition: opacity .4s ease;
	opacity: 0;
}
body.--is-loaded .visualLists{
	opacity: 1;
	transition-delay: .4s;
}




/**
* VisualModal
**/
#visualModal .oneModalIn__cont{
	display: flex;
	align-items: center;
	min-height: 100vh;
}
.visualModal__cont{
	width: 50.3661%;
	min-width: min(760px, 100%);
	margin: 0 auto;
}
.visualModal__image{
	width: 100%;
}
.visualModal__image img{
	width: 100%;
}
.visualModal__text{
	text-align: center;
	padding-top: 1em;
}

@media screen and (max-width:768px){
	.visualModal__cont{
		width: 100%;
		min-width: 100%;
	}
}