@charset "UTF-8";
/* オレンジフォーム SP PC用 */
/*-------------------------
contact.php pc
main
---------------------------*/
.main_title_wrap_form {
  width: 100%;
  margin: 0px auto 0px;
  background-color: #888;
  padding: 32px 0 20px;
  height: auto;
}

.main_title_form {
  width: min(92%, 1000px);
  margin: 0px auto 96px;
  font-size: 1.6875rem;
  letter-spacing: 1px;
  color: #fff;
  text-align: left;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.main_title_form .wb01 {
  font-weight: 700;
}

.title_en_form {
  width: min(92%, 1000px);
  margin: 0px auto;
  font-size: 1rem;
  letter-spacing: 1px;
  color: #fff;
  text-align: left;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  position: relative;
}
.title_en_form::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  display: block;
  width: 60px;
  height: 2px;
  background-color: #fff;
}

.form_outer {
  width: 100%;
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form_outer .form_in {
  width: min(100%, 800px);
  margin: 0 auto;
  background: #effcfd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2%;
}

.form_table {
  width: 100%;
}

.form_table tbody {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.form_table tbody tr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: #fff;
  font-size: 0.9375rem;
  color: #333;
}
.form_table tbody tr:first-child {
  background: transparent;
  margin-bottom: 10px;
}
.form_table tbody tr:first-child th {
  width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 15px;
  font-size: 1.25rem;
  color: #1fb7dc;
  font-weight: 600;
  letter-spacing: 1px;
  background: transparent;
}
.form_table tbody tr th {
  width: min(32%, 200px);
  min-width: 190px;
  text-align: left;
  background: #1fb7dc;
  padding: 6px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.form_table tbody tr th span {
  color: #fff;
  font-size: 0.625rem;
  margin-left: 5px;
  background: red;
  border-radius: 5px;
  padding: 0 3px;
}
.form_table tbody tr td {
  width: 100%;
  padding: 6px 10px;
  font-size: 0.9375rem;
}
.form_table tbody tr td input[type=text],
.form_table tbody tr td input[type=email],
.form_table tbody tr td textarea,
.form_table tbody tr td select {
  padding: 5px 8px;
  border: 1px solid #333;
  border-radius: 3px;
}
.form_table tbody tr:nth-child(2) td input[type=text] {
  max-width: 25%;
}
.form_table tbody tr:nth-child(3) td input[type=text] {
  max-width: 25%;
}
.form_table tbody tr:nth-child(4) td input[type=text] {
  width: 100%;
}
.form_table tbody tr:nth-child(5) td label {
  padding: 0 5px;
}
.form_table tbody tr:nth-child(6) td {
  word-spacing: 5px;
  /* 単語と単語の間を広げる */
}
.form_table tbody tr:nth-child(6) td select {
  min-width: 30px;
  max-width: 120px;
  font-size: 14px;
}
.form_table tbody tr:nth-child(7) td input[type=text] {
  max-width: 25%;
}
.form_table tbody tr:nth-child(9) td input[type=text] {
  width: 100%;
}
.form_table tbody tr:nth-child(10) td input[type=text] {
  width: 100%;
}
.form_table tbody tr:nth-child(11) td textarea#free1 {
  width: 100%;
  height: 200px;
  /* 高さを広げる（お好みで） */
  resize: vertical;
  /* ユーザーが縦方向だけリサイズできる */
}
.form_table tbody tr:nth-child(12) td label {
  padding: 0 5px;
}

.form_outer .form_in input[type=button] {
  display: block;
  margin: 80px auto 40px;
  padding: 12px 50px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #ff9900, #ff6600);
  /* オレンジ系 */
  border: none;
  border-radius: 6px;
  /* 角丸 */
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.form_outer .form_in input[type=button]:hover { /* hoverしたときの演出 */
  background: linear-gradient(135deg, #ff6600, #ff3300);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}
.form_outer .form_in input[type=button]:active { /* 押したときの演出 */
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.copy_right {
  color: #999;
  font-size: 12px;
  text-align: center;
  margin: 25px 0;
}
.copy_right a {
  color: #999;
}

/* ここからplaceholderカラー設定 */
.form_table td input::-webkit-input-placeholder, .form_table td textarea::-webkit-input-placeholder {
  color: #aaa;
}
.form_table td input::-moz-placeholder, .form_table td textarea::-moz-placeholder {
  color: #aaa;
}
.form_table td input:-ms-input-placeholder, .form_table td textarea:-ms-input-placeholder {
  color: #aaa;
}
.form_table td input::-ms-input-placeholder, .form_table td textarea::-ms-input-placeholder {
  color: #aaa;
}
.form_table td input::placeholder,
.form_table td textarea::placeholder {
  color: #aaa;
}

/*-------------------------
contact.php sp
main
---------------------------*/
@media screen and (max-width: 768px) {
  .main_common.contact {
    margin-top: 100px;
  }
  .form_outer {
    width: 100%;
    margin: 0px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .form_outer .form_in {
    width: min(100%, 800px);
    margin: 0 auto;
    background: #effcfd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0%;
  }
  .form_table tbody {
    gap: 30px;
  }
  .form_table tbody tr {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form_table tbody tr th {
    width: 100%;
    text-align: left;
    padding: 6px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .form_table tbody tr td {
    width: 100%;
    padding: 10px 15px;
    font-size: 0.875rem;
  }
  .form_table tbody tr:nth-child(6) td {
    word-spacing: 3px;
    /* 単語と単語の間を広げる */
  }
  .form_table tbody tr:nth-child(6) td select {
    min-width: 30px;
    max-width: 120px;
    font-size: 0.875rem;
  }
  /* ここからiphone対策スタイル */
  /* iPhone入力時のズレ・ズーム防止用 */
  .form_table td input[type=text],
  .form_table td textarea,
  .form_table td select {
    font-size: 1rem; /* iOSズーム防止 */
    line-height: 24px;
    height: 38px;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transform: translateZ(0);
            transform: translateZ(0); /* 再描画リセット */
    vertical-align: middle;
    background-clip: padding-box;
  }
  /* iPhone selectデザイン統一 */
  .form_table td select {
    background-color: #fff; /* 背景色 */
    color: #333; /* 文字色 */
    -webkit-appearance: menulist-button; /* 矢印残す指定 */
  }
  /* iOSで入力中に位置が動くのを防止 */
  .form_table td {
    position: relative;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    will-change: transform;
  }
  /* Safari独自対策：フォーム全体を固定高さに近づける */
  @supports (-webkit-touch-callout: none) {
    .form_table td input[type=text] {
      -webkit-transition: none !important;
      transition: none !important;
    }
  }
  /* ここまでiphone対策スタイル */
}/*# sourceMappingURL=orange_form.css.map */