@charset "utf-8";
/*===============================================*
 * 
 * ■media query
 * 
 *===============================================*/
html {
	height: inherit;
	min-height: 100% !important;
}
body {
	height: 100%;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
header {
	position:relative;
}
main {
	max-height:inherit;
	height:100%;
	flex: 1;
}
footer {
	height:60px !important;
}
/*--------------------------------*
 * main_box
 *--------------------------------*/
.main_box {
	height:100%;
	max-height:100%;
	min-width: 100%;
	margin-top:0;
	color:#fff;
	display:flex;
	justify-content:center;
}
/*--------------------------------*
 * selectlanguage
 *--------------------------------*/
.selectlanguage {
	margin-top:30px;
	background-image:url("/img/index/planet.webp");
	background-repeat:no-repeat;
	background-position:center;
	background-size:contain;
	aspect-ratio: 1 / 1;
	height:790px;
	width:700px;
}
.selectlanguage dl{
	height:100%;
	width:100%;
}
.selectlanguage dt {
	margin-top:20px;
	text-align:center;
}
.selectlanguage dd {
	text-align:center;
	margin-top: 34px;
	background-image:url("/img/index/louisa01.webp");
	background-repeat:no-repeat;
	background-position:center 96px;
	background-size:500px;
	height: 550px;
}
.selectlanguage_text {
	width:50%;
}
ul.buttons {
	margin:2px auto 0;
	display:flex;
	justify-content:center;
	align-items:center;
	gap:30px;
	width:80%;

}
.buttons li{
	width:50%;
}
.buttons li img{
	width:90%;
}
.buttons li a{
	display:block;
}
@media screen and (max-width: 768px) {
	.selectlanguage {
		width:100%;
		height:100%;
	}
	.selectlanguage img{
		width:100%;
	}
	.selectlanguage_text {
		width:70% !important;
	}
	ul.buttons {
		width:100%;
		gap:0;
	}
}