/* CSS Document */
@font-face {
    font-family: "BebasNeue";
    src: url('asset/font/BebasNeue.otf');
}
body {
	font-family: "BebasNeue", Helvetica, Arial, sans-serif;
	background-color: #fff;
	color: #000;
}
h1 {
	color: #d82c37;
	font-size: 44px;
	line-height: 46px;
	margin: 0px;
	letter-spacing: -0.07em;
}
h2 {
	font-size: 31px;
	line-height: 33px;
	margin: 0px;
	letter-spacing: -0.07em;
}
h3 {
	font-size: 25px;
	line-height: 27px;
	margin: 0px;
	letter-spacing: -0.07em;
}
p {
	font-size: 14px;
	line-height: 16px;
	margin-top: 50px;
	margin-bottom: 50px;
	text-align: center; 
}
.flex-container {
	height: 100%;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-item {
  width: 60%;

}
img {
	width: 100%;
	height: auto;
}

@media only screen and (max-width: 1000px) {
  .flex-item {
    width: 100%;
  }
}