@charset "UTF-8";
/* CSS Document */
.section-contact {
  padding-top: 110px;
}
.section-contact__top {
  padding: 0px 45px 60px;
}
.section-contact__title {
  max-width: 300px;
  margin: 0 auto;
  position: relative;
}
.section-contact__title img {
  width: 80%;
}
.section-contact__title h2 {
  font-size: 4.0rem;
  font-family: Cormorant Garamond;
  color: #9CA2A8;
  font-weight: 300;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-contact__top p {
  padding-top: 30px;
  text-align: left;
  font-size: 1.6rem;
  line-height: 2.5;
  max-width: 420px;
  margin: 0 auto;
}
@media(min-width: 1045px){
  .section-contact {
    padding-top: 150px;
    position: relative;
  }
  .section-contact__title{
    margin: 0 0 0 45px;
    text-align: left;
    max-width: 400px;
  }
  .section-contact__title h2 {
    font-size: 5.0rem;
    left: 45%;
  }
  .section-contact__wrap {
    display: grid;
    margin: 0 auto;
    max-width: 930px;
    grid-template-areas: "sub1 side" "sub2 side";
    grid-template-rows: 250px 600px;
    grid-template-columns: 465px 465px;
    gap: 70px;
  }
  .section-contact__top {
    grid-area: sub1;
  }
  .form {
    grid-area: side;
    padding: 0;
    width: 90%;
  }
  .section-instagram {
    grid-area: sub2;
    height: 400px;
  }
}
  
form {
  text-align: left;
  padding: 0 45px 70px;
  max-width: 545px;
  margin: 0 auto;
}
label {
  font-family: Cormorant Garamond;
  font-size: 2.0rem;
  color: #5A5E62;
}
input {
  width: 100%;
  height: 40px;
  max-width: 545px;
  border: solid 0.5px #707070;
}
form p {
  margin-bottom: 30px;
}
select {
  display: block;
  width: 100%;
  max-width: 545px;
  height: 40px;
  border: solid 0.5px #707070;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

textarea {
  display: block;
  width: 100%;
  max-width: 545px;
  height: 400px;
  border: solid 0.5px #707070;
}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
    color: #C7C7C7;
    font-family: hiragino YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
input :-moz-placeholder,textarea :-moz-placeholder {
    color: #C7C7C7;
    font-family: hiragino YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
input ::-moz-placeholder,textarea ::-moz-placeholder {
    color: #C7C7C7;
    font-family: hiragino YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
input:-ms-input-placeholder,textarea:-ms-input-placeholder {
    color: #C7C7C7;
    font-family: hiragino YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
button {
  padding: 15px 40px;
  border: solid 0.5px #707070;
  background-color: #fff;
  color: #5A5E62;
  border-radius: 100px;
  font-size: 2.5rem;
  font-family: Cormorant Garamond;
  width: 200px;
  max-width: 200px;
}
.section-instagram {
  padding:0 0 30px;
  margin: 0 auto 60px;
  background-color: #F8F8F8;
  position: relative;
  max-width: 450px;
}
.section-instagram__contents {
  padding: 0 20px;
}
.section-instagram h2 {
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  font-size: 3.4rem;
  font-weight: 100;
  color: #9CA2A8;
  font-family: Cormorant Garamond;
}
.section-instagram__description {
  padding-top: 40px;
}
.section-instagram p {
  margin-bottom: 20px;
  text-align: left;
}
.section-instagram__link {
  color: #5A5E62;
  font-size: 2.0rem;
  font-family: Cormorant Garamond;
  text-align: left;
  width: 240px;
  position: relative;
}
.btnarrow4 {
  padding: 15px 25px;
  border: solid 0.5px #707070;
  border-radius: 100px;
  background-color: #fff;
  width: 180px;
  margin-left: auto;
  margin-bottom: 30px;
  font-family: Cormorant Garamond;
  text-decoration: none;
  color: #5A5E62;
  text-align: left;
  display: inline-block;
  outline: none;
  position: relative;
}
/*矢印と下線の形状*/
.btnarrow4::before {
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: 10px;
  left: 15%;
  /*下線の形状*/
  width: 70%;
  height: 0.5px;
  background: #333;
  /*アニメーションの指定*/
  transition: all .3s;
}
.btnarrow4::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: 14px;
  right: 25px;
  /*矢印の形状*/
  width: 15px;
  height: 0.5px;
  background: #333;
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all .3s;
}
/*hoverした際の移動*/
.btnarrow4:hover::before {
  left: 20%;
}
.btnarrow4:hover::after {
  right: 8%;
}
.btnarrow4:hover {
  opacity: 0.5;
}