@charset "utf-8";
/* CSS Document */
* {margin: 0;padding: 0;font-size: 10px;line-height: 1;list-style: none;box-sizing: border-box;z-index: 0;}

html,body {
	width: 100%;
}

.outer {
	background: #c4c4c4;
}
.inner {
	width: 100%;
	padding: 50px;
	margin: 0 auto;
}
.mainImage {
	margin-bottom: 100px;
	text-align: center;
}
.mainImage > img {
	max-width: 100%;
	text-align: center;
}
.linkWrap {
	max-width: 1260px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
}
.linkBtn {
	position: relative;
	max-width: 30%;
	line-height: 0;
}
.linkBtn > a {
	position: relative;
	z-index: 100;
}
.linkBtn:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: solid 1px #333333;
	transition: all 0.3s;
}
.linkBtn:hover:after {
	top: 7px;
	right: 7px;
}
.linkBtn:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: solid 1px #333333;
	transition: all 0.3s;
}
.linkBtn:hover:before {
	top: -7px;
	right: -7px;
}
.linkBtn img {
	width: 100%;
}
.notPenguin {
	position: fixed;
	bottom: 230px;
	right: 50px;
	width: 110px;
	z-index: 100;
}
.notPenguin > img {
	max-width: 100%;
}
@media screen and (max-width: 768px){
	.inner {
		padding: 50px 0;
	}
	.linkWrap {
		justify-content: center;
	}
	.linkBtn {
		margin: 20px 0;
		min-width: 70%;
		width: 70%;
	}
	.linkBtn img {
		width: 100%;
	}
	.notPenguin {
		position: fixed;
		bottom: 20px;
		right: 20px;
		width: 80px;
	}
}