@charset "utf-8";

/* ==============================================================================
form
================================================================================= */

/* ==============================================================================
form_area
================================================================================= */
#form_area {
  max-width:1090px;
  margin:0 auto 80px;
  padding:0 30px;
}
#form_area .ttl_lead {
  margin-bottom:20px;
  text-align:center;
  font-size:22px;
  font-weight:bold;
}
#form_area .txt_sub {
  margin-bottom:50px;
  text-align:center;
}
#form_area .form_supp {
  margin:0 auto 50px;
  text-align:center;
}
#form_area .form_supp .att {
  margin:30px 0;
  color:#004077;
}
#form_area .bt_entry {
  text-align:center;
}
#form_area .bt_entry li,
#form_area .bt_entry button {
  display:inline-block;
}
#form_area .bt_entry li {
  padding:0 5px;
}
#form_area .bt_entry span {
  position:relative;
  display:inline-block;
  width:300px;
  padding:0 20px;
  line-height:44px;
  background:#004077;
  color:#fff;
  font-size:26px;
  border-radius:5px;
  cursor:pointer;
}
#form_area .bt_entry span:hover {
  background:#055a8e;
}
#form_area .form_btn span {
  width:250px;
  font-size:20px;
}
#form_area .bt_back .form_btn span:after,
#form_area .bt_next .form_btn span:after {
  content:"<";
  display:block;
  position:absolute;
  top:50%;
  left:17px;
  margin-top:-1.1em;  
}
#form_area .bt_next .form_btn span:after {
  content:">";
  left:auto;
  right:17px;
}

#form_area .bt_entry .submit[disabled="disabled"] span {
  cursor:default;
}
#form_area .bt_entry .submit[disabled="disabled"] span {
  background:#bbb;
}


/* スマホサイズ調整----------------------------　*/
@media only screen and (max-width:768px) {
#form_area {
  margin:0 auto 40px;
  padding:0;
}

#form_area .txt_lead {
  margin:25px 15px 10px 15px;
  text-align:left;
  font-size:18px;
  font-weight:bold;
}
#form_area .txt_sub {
  margin:0 15px 10px 15px;
  text-align:left;
  font-size:14px;
}
#form_area .form_supp {
  margin:0 10px 30px;
  text-align:left;
  font-size:14px;
}
#form_area .form_supp .att {
  margin:15px 0;
}
#form_area button.form_btn {
  width:300px;
  margin:0 auto;
}
#form_area .bt_entry {
  padding:0 10px;
}
#form_area .bt_entry li + li {
  margin-top:15px;
}
#form_area .bt_entry button {
  font-size:22px;
}
}


/* ================================================================================
フォームパーツ
================================================================================= */
#form_area input[type="text"],
#form_area input[type="email"],
#form_area input[type="tel"],
#form_area button,
#form_area textarea {
  width:100%;
  max-width:430px;
  margin:0;
  padding:5px 10px;
  background:#fff;
  border:1px solid #777;
  outline:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  font-size:15px;
  box-sizing:border-box;
  -webkit-box-sizing:border-box;
  font-size:16px;
}
#form_area button {
  background-color:transparent;
  border:none;
  cursor:pointer;
  outline:none;
  padding:0;
  appearance:none;
}
#form_area textarea {
  min-height:100px;
}
#form_area :placeholder-shown {
  color:#777;
  line-height:1;
}
#form_area ::-webkit-input-placeholder {
  color:#999;
}
#form_area :-moz-placeholder {
  color:#999;
}
#form_area ::-moz-placeholder {
  color:#999;
}
#form_area :-ms-input-placeholder {
  color:#999;
}
#form_area .placeholder {
  color:#999;
}


/* スマホサイズ調整----------------------------　*/
@media only screen and (max-width:768px) {
#form_area input[type="text"],
#form_area input[type="email"],
#form_area input[type="tel"],
#form_area textarea {
  max-width:100%;
}
}

/* ================================================================================
select (selectordie.js)
================================================================================= */
#select_year .sod_select,
#select_year .sod_select .sod_list_wrapper {
  width:170px;
}

/* スマホサイズ調整----------------------------　*/
@media only screen and (max-width:768px) {
.sod_select {
  display:block;
  width:100%;
}
.sod_select .sod_list_wrapper {
  width:100%;
}
.sod_select + .sod_select {
  margin:10px 0 0 0;
}
}


/* ================================================================================
input = radio
================================================================================= */
#form_area input[type="radio"] {
  display:none;
}
#form_area input[type="radio"] + label {
  display:inline-block;
  position:relative;
  cursor:pointer;
  margin-left:20px;
  padding:10px 20px;
  border-radius:2px;
  color:#3e4956;
  font-size:14px;
  text-align:center;
  line-height:1;
}
#form_area input[type="radio"] + label:before {
  position:absolute;
  content:"";
  top:50%;
  left:-9px;
  width:18px;
  height:18px;
  margin-top:-9px;
  border:1px solid #999;
  background:#fff;
  border-radius:50%;
}
#form_area input[type="radio"]:checked + label:after {
  position:absolute;
  content:"";
  top:50%;
  left:-7px;
  width:16px;
  height:16px;
  margin-top:-7px;
  border-radius:50%;
  background:#a12a5e;
}


/* ================================================================================
input = checkbox
================================================================================= */
#form_area input[type="checkbox"] {
  display:none;
}
#form_area input[type="checkbox"] + label {
  display:inline-block;
  position:relative;
  cursor:pointer;
  margin-left:20px;
  padding:10px 20px;
  color:#3e4956;
  font-size:14px;
  text-align:center;
  line-height:1;
}
#form_area input[type="checkbox"] + label:before {
  position:absolute;
  content:"";
  top:50%;
  left:-7px;
  width:14px;
  height:14px;
  margin-top:-9px;
  border:1px solid #999;
  background:#fff;
}
#form_area input[type="checkbox"]:checked + label:after {
  position:absolute;
  content:"";
  top:50%;
  left:-5px;
  width:16px;
  height:16px;
  margin-top:-12px;
  background:url(../../common/img/icon_check.png) no-repeat;
  background-size:16px 16px;
}


/* ================================================================================
エントリーフォーム
================================================================================= */

/* テーブル設定 ---------------*/
#form_area .table_sets {
  width:100%;
  max-width:880px;
  margin:15px auto 40px;
  vertical-align:top;
  text-align:left;
  font-size:15px;
}
#form_area .table_sets th,
#form_area .table_sets td {
  padding:15px 10px;
  vertical-align:top;
}
#form_area .table_sets th {
  width:340px;
  padding-top:20px;
}
#form_area .icon_required {
  color:#004077;
  margin-left:1em;
}
#form_area td .supp {
  margin-top:10px;
  padding:0 10px;
  font-size:13px;
  line-height:1.4;
}

/* お名前・ふりがな ---------------*/
#form_area .table_sets .name_set {
  display:table;
  width:100%;
}
#form_area .table_sets .name_set li {
  display:table-cell;
}
#form_area .table_sets .name_set li:first-child {
  width:230px;
}
#form_area .table_sets .name_set input {
  width:200px;
}
#form_area .table_sets .name_set span {
  display:inline-block;
  width:2em;
  padding-right:8px;
  text-align:right;
}

/* 郵便番号 ---------------*/
#form_area .zip_address td input {
  display:block;
}
#form_area .zip_address td input:nth-child(1) {
  width:165px;
}
#form_area .zip_address td input:nth-child(2) {
  margin:20px 0;
}
#form_area .zip_address td input:nth-child(3) {
  margin:20px 0;
}

/* 住所 ---------------*/
#form_area .table_sets .tr_add td input {
  margin-top:12px;
  width:100%;
}

/* 性別 ---------------*/
#form_area .table_sets .btn_set {
}
#form_area .table_sets .btn_set li {
  display:inline-block;
}

/* テキストエリアのサイズ拡大 ---------------*/
#form_area .table_sets textarea.large {
  min-height:250px;
}

/* スマホサイズ調整----------------------------　*/
@media only screen and (max-width:768px) {
#form_area .table_sets {
  margin:15px auto 40px;
}
#form_area .table_sets tbody,
#form_area .table_sets tr {
  display:block;
  width:100%;
}
#form_area .table_sets th,
#form_area .table_sets td {
  display:block;
  width:100%;
  max-width:100%;
  padding:15px 25px;
  box-sizing:border-box;
  -webkit-box-sizing:border-box;
}
#form_area .table_sets tr:nth-child(odd) th,
#form_area .table_sets tr:nth-child(odd) td {
  background:#f7f7f7;
}
#form_area .table_sets th {
  font-size:14px;
  padding-bottom:0;
  background:#fff;
}
#form_area .table_sets td {
  padding-top:10px;
  padding-bottom:20px;
}
#form_area .table_sets .name_set li {
  display:block;
}
#form_area .table_sets .name_set li:first-child {
  display:block;
  width:100%;
  margin-bottom:15px;
}
#form_area .table_sets .name_set input {
  width:100%;
}
#form_area .table_sets textarea.large {
  min-height:150px;
}
}


/* ================================================================================
ご利用規約
================================================================================= */
#form_area .privacy_policy {
  width:100%;
  max-width:430px;
}
#form_area .privacy_policy .detail {
  max-width:560px;
  height:200px;
  margin:10px 0;
  padding:15px;
  border:1px solid #999;
  overflow:auto;
  font-size:12px;
}
#form_area .privacy_policy .detail dt {
  margin-top:1em;
  font-weight:bold;
}
#form_area .privacy_policy .detail address {
  margin-top:1em;
}


/* ================================================================================
完了・エラー画面設定
================================================================================= */
.form_sets #form_area {
  max-width:1280px;
  min-height:400px;
  margin:0 auto 50px;
  text-align:center;
}
.form_sets .txt_box {
  padding:50px 15px;
}
.form_sets .txt_bold {
  margin-bottom:10px;
  font-size:24px;
}
.form_sets .form_table {
  width:100%;
  max-width:760px;
  margin:0 auto 60px;
  text-align:left;
}
.form_sets .form_table th,
.form_sets .form_table td {
  border:1px solid #ccc;
  padding:8px 20px;
}
.form_sets .form_table th {
  width:180px;
  background:#f5f5f5;
}
.form_sets .postmail {
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  max-width:1280px;
  margin:0 auto;
  color:#fff;
  padding-left:10px;
  font-size:12px;
}
.postmail a {
  color:#fff;
}

/* スマホサイズ調整----------------------------　*/
@media only screen and (max-width:768px) {
.form_sets #form_area {
  min-height:auto;
}
.form_sets .txt_box {
  padding:25px 15px;
  font-size:14px;
}
.form_sets .txt_bold {
  font-size:20px;
}
.form_sets .form_table {
  margin:0 auto 30px;
}
.form_sets .form_table tbody,
.form_sets .form_table tr {
  display:block;
  width:100%;
}
.form_sets .form_table th,
.form_sets .form_table td {
  display:block;
  width:100%;
  max-width:100%;
  padding:10px 25px;
  border:none;
  box-sizing:border-box;
  -webkit-box-sizing:border-box;
  font-size:14px;
}
.form_sets .form_table tr:nth-child(odd) th,
.form_sets .form_table tr:nth-child(odd) td {
  background:#f7f7f7;
}
.form_sets .form_table th {
  padding-bottom:0;
  background:#fff;
  font-weight:bold;
}
.form_sets .form_table td {
  padding-top:5px;
  padding-bottom:10px;
}
.form_sets .postmail {
  position:static;
  margin:0 auto;
  padding:5px;
  font-size:12px;
  text-align:center;
  color:#231815;
  border-top:1px solid #ccc;
}
.form_sets .postmail a {
  color:#231815;
}
}

