@charset "UTF-8";
/*------------page-title--------------*/
.page-title {
  width: 100vw;
  background: url(../img/page-title-bg.png) no-repeat;
  background-size: cover;
  border-bottom: #ccc solid 1px;
}
.page-title .page-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../img/page-title-contact.png) no-repeat;
  background-size: 280px;
  background-position: center center;
}
.page-title .page-title-container img {
  margin-top: 160px;
  width: 46px;
  height: auto;
}
.page-title .page-title-container h2 {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 64px;
  padding-top: 16px;
}
.page-title .page-title-container p {
  color: #888;
  font-size: 16px;
  margin-bottom: 120px;
}

/*------------form--------------*/
.contact-form {
  max-width: 1100px;
  margin: 100px auto;
  padding: 90px 150px;
  border: 1px solid #ccc;
}

.form-text {
  margin-bottom: 70px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
  max-width: 560px;
  padding: 10px;
  margin-bottom: 40px;
  border: none;
  border-radius: 4px;
  background: #f8f8f8;
}

.contact-form textarea {
  max-width: 760px;
  height: 240px;
  resize: vertical;
}

.contact-form select {
  width: 100%;
  max-width: 560px;
  padding: 14px;
  margin-bottom: 40px;
  border: none;
  border-radius: 4px;
  background: #f8f8f8;
  font-size: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* ブラウザ標準の矢印を消す */
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

.file-input {
  width: 100%;
  position: relative;
  display: inline-block;
  border-bottom: 1px solid #ccc;
  padding: 30px 0;
}
.file-input p {
  font-weight: 400;
}

/* 実際のinputは非表示 */
.file-input input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* 見た目用のボタン */
.file-input label {
  display: inline-block;
  padding: 8px 36px;
  background-color: #333;
  color: #eee;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.file-input label:hover {
  background-color: #82A2DB;
  /* ホバー時の色 */
}

/* 選択中のファイル名 */
.file-name {
  margin-left: 10px;
  font-size: 14px;
  color: #333;
}

.note {
  font-size: 12px;
  color: #555;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #ccc;
  /* margin-bottom: 30px; */
}

.privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.privacy a {
  color: #82A2DB;
  text-decoration: underline;
  display: inline;
}

.contact-form .send-btn {
  display: flex;
  justify-content: center;
}
.contact-form .send-btn button {
  background: #82A2DB;
  color: #fff;
  border: none;
  padding: 16px 100px;
  font-size: 16px;
  border-radius: 100px;
  cursor: none;
}

.contact-form button:hover {
  background: #333;
}

/*----------------------------responsive--------------------------*/
@media screen and (max-width: 760px) {
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
  .break {
    flex-basis: 100%;
  }
  /*------------mv--------------*/
  .contact-form {
    padding: 0 30px 90px;
    border: none;
  }
}/*# sourceMappingURL=contact.css.map */