@charset "utf-8";
/* CSS Document */

body {
	margin: 0;
    color: #111111;
	font-size: 13px;
    letter-spacing: 1px;
}
.wrapper {
	position: relative;
	width: 100%;
	margin: 0px auto;
	
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	align-items: center;
    height: 100vh;
    overflow: hidden;
}
.wrapper .image {
	width: 50%;
}
.wrapper .image img {
	width: 100%;
	height: auto;
}
.wrapper .text_wrap {
	width: 40%;
    margin: 0 auto;
}
.wrapper .text_wrap .logo {
	width: 120px;
    margin: 0 auto 40px;
}
.wrapper .text_wrap .logo img {
	width: 100%;
	height: auto;
}
.wrapper .text_wrap .text {
	line-height: 2;
}
.wrapper .text_wrap .text a {
	color: #3E8CC4;
    font-weight: bold;
}
@media screen and (max-width:768px) {
	.wrapper {
		width: 100%;
		display: block;
        height: inherit;
        overflow-y: scroll;
	}
	.wrapper .image {
		width: 100%;
        display: none;
	}
	.wrapper .image img {
		width: 100%;
		height: auto;
	}
	.wrapper .text_wrap {
		width: 80%;
    	margin: 40px auto;
	}
	.wrapper .text_wrap .logo {
		width: 100px;
    	margin: 0 auto 30px;
	}
}