/* ------------header------------*/
header {
  height: 70px;
}

.container {
  width: 1170px;
  margin: 0 auto;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  width: 50%;
}

.header-logo {
  height: 60px;
  float: left;
}

.header-left p {
  font-size: 15px;
  padding-top: 20px;
}

.header-right {
  display: flex;
  align-items: center;
  line-height: 70px;
}

header .nav-list {
  display: flex;
}

header .nav-list li {
  position: relative;
}

header .nav-list li a {
  font-size: 18px;
  padding: 0 30px 0;
}

.nav-btn a {
  display: block;
  background-color: #00b050;
  color: white;
}


/*------------top------------*/
.page-title {
  font-size: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.page-title h1 {
  transform: translate(-50%,-50%);
}

.top-wrapper {
  height: 600px;
  padding: 180 0 100px 0;
  background-image: url(../image/contact_header.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-rgba {
  height: 100%;
  background-color: rgba(255,255,255,0.5);
}

.key-massage h1 {
  font-size: 40px;
  line-height: 45px;
  margin-bottom: 40px;
  letter-spacing: 5px;
}

.key-massage h2 {
  font-size: 25px;
  margin-bottom: 60px;
  letter-spacing: 3px;
}

.key-massage a {
  padding: 15px;
  background-color: white;
  opacity: 0.8;
  font-size: 25px;
}

.key-massage span {
  color: #00b050;
}




/*------------tel------------*/
.heading {
  padding: 80px;
}

.heading h2 {
  font-size: 40px;
}

.heading p {
  font-size: 30px;
  color: #00b050;
}

.tel-wrapper {
  padding-bottom: 80px;
  text-align: center;

}

.tel-box {
  height: 80px;
  border: solid 1px black;
  padding: 10px;
  display: flex;
  justify-content: center;
}

.box-left {
  padding-right: 50px;
  font-size: 25px;
  line-height: 80px;
}

.box-right {
  display: flex;
  padding-left: 50px;
}

.box-right img {
  height: 70px;
}

.right-text {
  text-align: left;
  padding-top: 17px;
}

.box-right h3 {
  font-size: 25px;
}





/*------------form------------*/
.form-wrapper {
  text-align: center;
  font-size:20px;
}

.form-explain {
  padding-bottom: 80px;
}

form {
  width: 100%;
  margin:0 auto;
  padding-bottom: 80px;
}

.item {
  padding: 20px;
  display: flex;
  border-top: solid 1px black;
  justify-content: space-between;

}

.inputs {
  width: 70%;
}

input[type="text"],input[type="email"] {
  border: solid 1px #aaa;
  border-radius:5px;
  padding:10px;
  font-size: 15px;
}

textarea {
  border: solid 1px #aaa;
  border-radius:5px;
  padding: 10px;
  height: 160px;
  font-size: 15px;
}

.btn-area{
  text-align: center;
}

input[type="submit"]{
  background: #e0505c;
  border: none;
  color: white;
  font-size:17px;
  font-weight:bold;
  padding: 10px 20px;
  margin: 0 5px;
}



/*------------footer------------*/
footer {
  padding-top: 80px;
  border-top: solid 1px black;
}

footer .container {
  display: flex;
  justify-content: space-between;
  width: 1170px;
  margin: 0 auto 50px;
}

.footer-left {
  display: flex;
  text-align: left;
  font-size: 15px;
  line-height: 25px;
}

.footer-logo {
  margin-right: 10px;
}

.footer-logo img {
  height: 100px;
}

.footer-about {
  font-weight: bold;
  height: 100px;
}

.footer-right li {
  font-weight: bold;
  text-align: right;
  line-height: 30px;
}

.copy {
  padding: 20px;
  text-align: center;
  font-size: 15px;
  background-color: black;
  color: #fff;
}






