/* Reset CSS */

* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 -moz-box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

body {
 font-family: 'Noto Sans', sans-serif;
 font-weight: 400;
 font-size: 17px;
 line-height: 1.2;
 color: #373737;
 text-align: left;
 background: #fff;
}

#content {
 float: left;
 width: 100%;
 margin: 85px 0 20px 0;
}

.container {
 max-width: 365px;
 margin: 0 auto;
}

.wrapper {
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 float: left;
 width: 100%;
}

a:link,
a:visited,
a:hover {
 font-family: 'Noto Sans', sans-serif;
 font-weight: 400;
 font-size: 17px;
 line-height: 1.2;
 color: #373737;
 text-decoration: none;
 -webkit-transition: 0.2s ease-in-out;
 -moz-transition: 0.2s ease-in-out;
 -o-transition: 0.2s ease-in-out;
 transition: 0.2s ease-in-out;
}

a:hover {
 color: #da1c26;
}


/*  */

.logo {
 display: flex;
 justify-content: center;
 float: left;
 width: 100%;
}

.logo img {
 width: 269px;
 height: 269px;
}

.line {
 float: left;
 width: 100%;
 height: 1px;
 margin: 40px 0 30px 0;
 border-top: 1px solid #9b9b9b;
}

.comming_soon {
 float: left;
 width: 100%;
 margin: 0 0 23px 0;
 font-weight: 700;
 font-size: 22px;
 letter-spacing: 0.12em;
 color: #da1c26;
 text-align: center;
}

.comming_soon p {
 margin: 0 0 10px 0;
}

.phone {
 display: flex;
 align-items: center;
 float: left;
 width: 225px;
 margin: 0 0 20px 0;
}

.phone img {
 width: 20px;
 height: 20px;
 margin: 0 13px 0 0;
}

.mail {
 display: flex;
 align-items: center;
 float: left;
 width: 225px;
}

.mail img {
 width: 20px;
 height: 16px;
 margin: 0 13px 0 0;
}

@media screen and (max-width:1200px) {
 .wrapper {
  padding: 0 2%;
 }
}

@media screen and (max-width:950px) {
 .wrapper {
  padding: 0 2.5%;
 }
}

@media screen and (max-width:676px) {
 .wrapper {
  padding: 0 3%;
 }
}

@media screen and (max-width:550px) {
 body {
  font-size: 15px;
 }
 a:link,
 a:visited,
 a:hover {
  font-size: 15px;
 }
 .wrapper {
  padding: 0 4%;
 }
 .logo img {
  width: 180px;
  height: 180px;
 }
 .comming_soon {
  font-size: 18px;
 }
}