@charset "utf-8";
/**
 * worldLists
 */
/* item */
.worldLists__item {
	display: flex;
	gap: 40px;
}
.worldLists__item:not(:first-child) {
	margin-top: 60px;
}
@media screen and (max-width:767px){
	.worldLists__item {
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 0;
	}
	.worldLists__item:not(:first-child) {
		margin-top: 8vw;
	}
}

/* thumb */
.worldLists__thumbWrap {
	flex: none;
	width: 39.16666vw;
	max-width: 480px;
	aspect-ratio: 48 / 27;
	position: relative;
	z-index: 1;
}
@media screen and (max-width:767px){
	.worldLists__thumbWrap {
		width: 100%;
	}
}
.worldLists__thumb {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 0;

}
/* deco */
.worldLists__thumbWrap:before {
	content: "";
	border: 1px solid #fff;
	box-sizing: border-box;
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.worldLists__thumbWrap:after {
	content: "";
	background: url(../img/common/deco/deco_frame3.svg) no-repeat center / 100%;
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}

/* text */
.worldLists__title {
	font-size: min(1.66666vw, 20px);
	margin-top: -0.5em;
}
.worldLists__text {
	font-size: min(1.33333vw, 16px);
	line-height: 2;
	margin-top: 20px;
}
@media screen and (max-width:767px){
	.worldLists__title {
		font-size: 3.73333vw;
		margin-top: 2vw;
	}
	.worldLists__text {
		font-size: 3.2vw;
		margin-top: 2vw;
	}
}
