

/*********************************************************** small screen */
	#MainContent {
		width: 100%;
		padding: 50px 0px;
	}

	.MenuBox {
		width: calc((100% / 1) - 100px);
		margin: 0px auto 30px auto;
	}

	.MenuBoxImage {
		height: calc(100vw * 350 / 600);
	}

	.MenuBoxImageMobileFront {
		display: block;
	}

	.MenuBoxTitle {
		text-align: center;
	}

	.MenuBoxText {
		text-align: center;
	}

/*********************************************************** medium screen */
@media screen and (min-width: 800px) {
	#MainContent {
		width: calc(100% - 100px - 20px);
		padding: 30px 10px 30px 10px;
	}

	.MenuBox {
		width: calc((100% / 2) - 20px);
		margin: 0px 10px 30px 10px;
	}

	.MenuBoxImage {
		height: calc((100vw - 100px - 50px - 30px - 30px) / 2 * 400 / 600);
	}

	.MenuBoxImageMobileFront {
		display: none;
	}

	.MenuBoxTitle {
		text-align: left;
	}

	.MenuBoxText {
		text-align: left;
	}
}

/*********************************************************** large screen */
@media screen and (min-width: 1120px) {
	#MainContent {
		width: calc(100% - 100px - 20px);
		padding: 30px 10px 30px 10px;
	}

	.MenuBox {
		width: calc((100% / 3) - 20px);
		margin: 0px 10px 30px 10px;
	}

	.MenuBoxImage {
		height: calc(300px * 490 / 600);
	}

	.MenuBoxImageMobileFront {
		display: none;
	}

	.MenuBoxTitle {
		text-align: left;
	}

	.MenuBoxText {
		text-align: left;
	}
}


/*********************************************************** Main Content */
#BottomBackground {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgb(26, 25, 23);
}

#MainContent {
	position: relative;
	top: 0px;
	left: 0px;
	background: rgb(17, 16, 15);
	margin: auto;

	display: flex;
	flex-wrap: wrap;
}

.MenuBox {
	position: relative;
	top: 0px;
	left: 0px;
	display: inline-block;
	cursor: pointer;
}

.MenuBoxImage {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	/*background: rgb(50, 50, 50);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;*/

	overflow: hidden;
}

.MenuBoxImageInner {
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background: rgb(50, 50, 50);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	transform: scale(1.01);
	
	-webkit-transition: transform 0.8s;
	transition: transform 0.8s;
}

.MenuBoxImageMobileFront {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	/*background: rgb(193, 176, 137);*/

	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 5px solid rgb(193, 176, 137);

	pointer-events: none;
}

.MenuBoxImageFront {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	/*background: rgb(193, 176, 137);*/

	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /*border: 5px solid rgb(193, 176, 137);*/
	border-width: 5px;
	border-style: solid;
	border-color: transparent;

	pointer-events: none;

	-webkit-transition: border-color 0.8s;
}
.MenuBox:hover > .MenuBoxImage > .MenuBoxImageFront {
	border-color: rgb(193, 176, 137);
}
.MenuBox:hover > .MenuBoxImage > .MenuBoxImageInner {
	transform: scale(1.05);
}
.MenuBox:hover > .MenuBoxInfo > .MenuBoxReadMore {
	text-decoration: underline;
}

.MenuBoxInfo {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	margin: auto;
}

.MenuBoxTitle {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	font-size: 15px;
	line-height: 15px;
}

.MenuBoxText {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	font-size: 14px;
	line-height: 14px;
}

.MenuBoxLine {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	Height: 1px;
	Background: rgb(101, 87, 75);
}

.MenuBoxReadMore {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	font-size: 15px;
	line-height: 15px;
	text-decoration: none;
	text-align: left;

	display: inline-block;

	padding: 8px 0px 15px 0px;

	-webkit-transition: text-decoration 0.1s;
	transition: text-decoration 0.1s;
}
/*.MenuBoxReadMore:hover {
	text-decoration: underline;
}*/

.MenuBoxReadMoreArrow {
	position: absolute;
	bottom: 12px;
	right: 0px;
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("assets/images/common/download-arrow-24-24.png")
}