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

/*** top ***/
.top {
  height: 600px;
  background-image: url("../images/contact/main_visual.jpg");
  background-position: right 0px top 0px;
  background-size: 1016px 600px;
  background-repeat: no-repeat;
  color: #333;
  margin-bottom: 200px;
  text-align: left;
}
.top-text {
  width: 100%;
  padding: 260px 0 0 50px;
}
.top-text h1 {
  font-size: 6.6rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.025rem;
  margin-bottom: 35px;
  background-color: #fff;
  width: 450px;
  padding: 10px 10px 15px 30px;
}
@media(max-width: 768px) {
  .top {
    height: 490px;
    background-position:center;
    background-size: cover;
    margin-bottom: 100px;
  }
  .top-text {
    padding: 190px 0 0;
  }
  .top-text h1 {
    font-size: 2.4rem;
    width: 200px;
    margin-bottom: 40px;
    padding: 15px 10px 20px 30px;
  }
}

/*** contact ***/
.contact {
  width: 100%;
  margin-bottom: 200px;
}
.contact-wrapper {
  width: 100%;
  text-align: center;
}
.contact-title {
  font-size: 4.8rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1rem;
  margin-bottom: 10px;
}
.contact-separator {
  font-size: 2.4rem;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 117px;
}
.contact-form {
  width: 61.1%;
  margin: 0 auto;
}
.contact-form-text {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.input-name {
  display: inline-block;
  float: left;
  width: 45.4%;
  height: 90px;
  border-width: 0 0 1px 0;
  border-color: #000;
  font-family: 'Shippori Mincho', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  padding: 3px 3px 3px 12px;
  margin-bottom: 70px;
}
.input-email {
  display: inline-block;
  float: right;
  width: 45.4%;
  height: 90px;
  border-width: 0 0 1px 0;
  border-color: #000;
  font-family: 'Shippori Mincho', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  padding: 3px 3px 3px 12px;
  margin-bottom: 70px;
}
.contact-form-textarea {
  text-align: center;
}
.input-textarea {
  display: block;
  clear: both;
  width: 100%;
  height: 220px;
  border-width: 0 0 1px 0;
  border-color: #000;
  font-family: 'Shippori Mincho', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 5px 5px 5px 12px;
  margin: 0 auto 100px;
}
.input-name:hover, .input-email:hover, .input-textarea:hover {
  border-color: #333;
  border-width: 1px;
}
.input-name:focus, .input-email:focus, .input-textarea:focus {
  outline: none;
}
.form-btn {
  width: 270px;
  display: inline-block;
  padding: 25px 80px;
	color: #000;
  background-color: #fff;
	font-weight: 400;
  font-size: 2.4rem;
  font-family: 'Shippori Mincho', serif;
  text-decoration: none;
	transition: 0.3s;
  position: relative; /* z-indexのために設定 */
  z-index: 10;
  border: 1px solid #000;
  margin: 0 auto;
}
.form-btn:hover {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
}
@media(max-width: 768px) {
  .contact {
    margin-bottom: 150px;
  }
  .contact-title {
    font-size: 2.4rem;
    margin-bottom: 60px;    
  }
  .contact-separator {
    display: none;
  }
  .contact-form {
    width: 100%;
    margin: 0;
    padding: 0 24px;
  }
  .input-name {
    float: none;
    width: 100%;
    height: 60px;
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
  .input-email {
    float: none;
    width: 100%;
    height: 60px;
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
  .input-textarea {
    clear: none;
    height: 180px;
    font-size: 1.6rem;
    margin: 0 0 80px;
  }
  .form-btn {
    width: 231px;
    display: inline-block;
    padding: 20px 30px;
    font-size: 1.6rem;
    margin: 0;
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
  }
  .form-btn:hover {
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
  }
  
}





