@charset "UTF-8";
.text-right {
  text-align: right;
}

.text-white {
  color: #fff;
}

.section-title.text-white::after {
  background-color: #fff;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #070707;
  font-family: "Noto Serif", serif, "Noto Sans JP", sans-serif;
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

.section-wrapper {
  padding: 0 0 70px;
}

.section-title {
  max-width: 1220px;
  font-size: 6rem;
  font-style: italic;
  margin: 0 auto 70px;
  padding: 0 20px;
}

.section-title::after {
  content: "";
  background-color: #282f35;
  width: 200px;
  display: inline-block;
  height: 5px;
  margin-left: 30px;
  vertical-align: middle;
}

.section-inner {
  max-width: 1100px;
  padding: 0 50px;
  margin: 0 auto;
}

.section-bottom {
  max-width: 1200px;
  font-size: 9rem;
  opacity: 7%;
  margin: 0 auto;
}

.submit-btn {
  width: 235px;
  margin: 0 auto 70px;
  height: 59px;
  border-radius: 30px;
  display: block;
  background-color: #f7d43f;
  line-height: 60px;
  text-align: center;
  box-shadow: 0 0 6px #1b1310;
  text-decoration: none;
  transition: 0.3s;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
.submit-btn a {
  color: #171717;
}
.submit-btn:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.sp-br {
  display: none;
}

/*-------------------*/
/*--header
/*-------------------*/
.header {
  position: absolute;
  width: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 19px 30px;
  color: #fff;
  transition: 0.3s;
}
.header .header-inner {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
}
.header .header-inner .header-nav-list {
  display: flex;
}
.header .header-inner .header-nav-list__header-nav-item {
  margin-left: 30px;
  color: #fff;
}
.header .header-inner .header-nav-list__header-nav-item:last-of-type {
  margin-right: 0;
}
.header .header-inner .header-nav-list__header-nav-item a {
  color: #fff;
}
.header .hamberger-btn {
  display: none;
}

.fixed {
  position: fixed;
  background-color: #282f35;
  padding: 30px;
  width: 100%;
  transition: 0.3s;
}

/*-------------------*/
/*--page-title
/*-------------------*/
.page-title-wrapper {
  height: 453px;
  position: relative;
  background-image: url(../img/contact-page-bgi@2x.jpg);
  background-size: cover;
  background-position: center;
  margin-bottom: 100px;
}
.page-title-wrapper__title {
  padding-top: 186px;
  text-align: center;
  font-size: 6rem;
  font-weight: bold;
  font-style: italic;
  color: #fff;
}

/*-------------------*/
/*--form
/*-------------------*/
.form-list {
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 50px;
}
.form-list .form-item {
  margin-bottom: 25px;
}
.form-list .form-item .input-text {
  padding: 0 8px;
  line-height: 30px;
}
.form-list .checkbox-list {
  display: flex;
  margin-bottom: 25px;
}
.form-list .checkbox-list .checkbox-item__checkbox {
  border: 1px solid #141414;
  width: 10px;
  height: 10px;
  margin-right: 10px;
}
.form-list .checkbox-list .checkbox-item__checkbox:checked {
  background-color: #333;
}
.form-list .checkbox-list .checkbox-item {
  margin-right: 20px;
}
.form-list .checkbox-list .checkbox-item__checkbox, .form-list .checkbox-list .checkbox-item__checkbox label {
  cursor: pointer;
}
.form-list .form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input,
textarea {
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: 1px solid #141414;
  width: 100%;
  color: #171717;
}

textarea {
  padding: 0 8px;
  line-height: 30px;
  height: 170px;
}

/*-------------------*/
/*--footer
/*-------------------*/
.footer-text {
  text-align: center;
  padding: 30px 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: #282f35;
}

/*----------------------------------------------------------*/
/*--レスポンシブ（width:750）
/*----------------------------------------------------------*/
@media screen and (max-width: 768px) {
  /*-------------------*/
  /*--base-sp
  /*-------------------*/
  .section-wrapper {
    padding: 0 0 40px;
  }
  .section-title {
    font-size: 3rem;
    padding: 0 4vw;
    margin-bottom: 50px;
  }
  .section-title::after {
    width: 90px;
  }
  .section-inner {
    padding: 0 4vw;
  }
  .section-bottom {
    font-size: 4rem;
    padding: 0 4vw;
  }
  .link-btn {
    margin-bottom: 40px;
  }
  /*-------------------*/
  /*--header-sp
  /*-------------------*/
  .header {
    padding: 30px 4vw;
  }
  .header .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #282f35;
  }
  .header .header-nav-list {
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header .header-nav-list__header-nav-item {
    margin: 0 0 30px;
  }
  .header .hamberger-btn {
    display: block;
    position: absolute;
    top: 0;
    right: 4vw;
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 20px;
    border-radius: 5px;
  }
  .header .hamberger-btn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 100%;
    margin-bottom: 10px;
  }
  .header .hamberger-btn span:nth-of-type(1) {
    top: 0;
  }
  .header .hamberger-btn span:nth-of-type(2) {
    top: 10px;
  }
  .header .hamberger-btn span:nth-of-type(3) {
    top: 20px;
  }
  .header .hamberger-btn.active span:nth-of-type(1) {
    top: 0px;
    left: 0px;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
  }
  .header .hamberger-btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header .hamberger-btn.active span:nth-of-type(3) {
    top: 0px;
    left: 0px;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
  }
  .header .hamberger-btn.active span:nth-of-type(1) {
    top: 0px;
    left: 0px;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
  }
  .header .hamberger-btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header .hamberger-btn.active span:nth-of-type(3) {
    top: 12px;
    left: 0px;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
  }
  body .noScroll {
    overflow: hidden;
  }
  /*-------------------*/
  /*--form-sp
  /*-------------------*/
  .form-list .checkbox-list {
    display: block;
    margin-right: 0;
  }
}
/*# sourceMappingURL=contact.css.map */