@charset "UTF-8";

html {
  font-size: 16px;
  /*ゴシック */
  font-family: "Zen Old Mincho", serif;
  color: #665c5c;
  font-weight: 400;
  letter-spacing: 1.45;
}

/* コンテンツ幅 */
.inner {
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.inner.type2 {
  max-width: 850px;
}

/* セクション間 */

section {
  padding: 100px 0;
  position: relative;
}

.section_title_big {
  top: 245px;
  left: -167px;
  width: 439px;
  height: 200px;
  position: absolute;
  font-size: 120px;
  line-height: 200px;
  color: #fff;
  transform: rotate(90deg);
}

/* section_title */

.section_title_en {
  font-size: 36px;
  font-weight: 900;
  line-height: 52px;
  background: linear-gradient(to top, #fbeef3, #e887a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.section_title_ja {
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
}

/* btn */

.btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  padding: 9px 0 11px;
  width: 160px;
  border-radius: 21px;
  border: 1px solid #665c5c;
  position: relative;
  text-align: center;
  margin-top: 50px;
  transition: all 0.3s ease;
}

.btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 16px;
  right: 14px;
  width: 4px;
  height: 8px;
  background-image: url(../../images/btn_arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.submit {
  line-height: 40px;
  font-weight: 900;
  color: #fff;
  background-color: #e887a5;
  border: 1px solid #e887a5;
  width: 240px;
  border-radius: 100px;
  text-align: center;
  display: block;
  margin: 15px auto 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* スマホのみ表示 */
.sp_only {
  display: none;
}

@media screen and (min-width: 768px) {
  .btn:hover {
    opacity: 0.7;
  }

  .submit:hover {
    color: #e887a5;
    background-color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }

  /* セクション間 */

  section {
    padding: 80px 0;
  }

  .section_title_big {
    display: none;
  }

  /* section_title */

  .section_title_en {
    font-size: 32px;
    line-height: 40px;
  }

  .section_title_ja {
    font-size: 15px;
    margin-top: 6px;
  }

  /* btn */

  .btn {
    margin-top: 30px;
  }
}
