.form-title h2 {
  text-align: center;
  padding: 20px 0;
}

form {
  margin: 0 auto;
  background: #fff;
  padding: 16px;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.radio-btn label {
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width:768px) {
  label {
    margin-bottom: -10px;
    padding: 5px 0px;
  }
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: solid 1px #575757;
  border-radius: 5px;
  box-sizing: border-box;
}

input[type="radio"] {
  margin-right: 5px;
}

.form-radio {
  margin: 10px 0;
}

textarea {
  resize: vertical;
}

input[type="submit"] {
  padding: 8px 20px;
  background-color: #efefef;
  color: #000;
  border: solid 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 35%;
}
input[type="submit"]:hover {
  background-color: #1c1c1c;
  color: #fff;
}

span.required {
  background: #42b7ef;
  padding: 5px 10px;
  margin-left: 5px;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  form {
  }
}

input[type="text"]:disabled,
input[type="email"]:disabled,
textarea:disabled,
select:disabled {
  background-color: #b9b9b9;
  color: #888;
}

/* confirm.php */
.form-container {
  padding: 30px 0;
}

.form-container label {
  display: block;
  margin-bottom: 5px;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-container input[type="submit"] {
  background-color: #efefef;
  color: #000;
  border: solid 1px #000;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
}

.form-container input[type="submit"]:hover {
  background-color: #575757;
  color: #fff;
}

.success-message {
  color: #4caf50;
  font-weight: bold;
}

@media (max-width: 600px) {
  .form-container {
    max-width: 100%;
  }
}

.formTable {
  width: 100%;
  border-spacing: 8px;
  margin: 0 auto;
}

.formTable tr {}

.formTable th {
  padding: 1.4em;
  position: relative;
  width: 30%;
  font-weight: normal;
  background: #efefef;
  text-align: left;
}

.formTable td {
  width: 70%;
  font-size: 16px;
}

.formTable th,
.formTable td {
  background: white;
  border: 1px none #ccc;
  padding: 10px;
}

.form-submit {
  text-align: center;
  margin: 30px 0;
}

@media screen and (max-width:572px) {
  #formWrap {
    width: 95%;
    margin: 0 auto;
  }

  table.formTable th,
  table.formTable td {
    width: auto;
    display: block;
  }

  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
  }

  input[type="phone"] {
    width: 100%;
  }

  input[type="email"] {
    width: 100%;
  }

  input[type="text"],
  textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }

  input[type="submit"],
  input[type="reset"],
  input[type="button"] {
    display: block;
    width: 100%;
    height: 40px;
  }

}

/* placeholder */
::placeholder {
  color: #999;
  opacity: 1;
}

:focus::placeholder {
  opacity: 0.5;
}

/* 0914 */
.form-area {
  color: #000;
  text-shadow: 0 0 BLACK;
}
@media screen and (min-width: 560px) {
  .form-area {
    padding: 2em;
    background: rgb(110, 150, 212);
    padding-bottom: 4em;
    width: 85%;
    margin: 0 auto;
  }
}

.form-ex {
  margin: 16px 0;
  line-height: 1.7;
}


/* ------------------------------------------------
共通調整
-----------------------------------------------*/
.top_50 {
  margin-top: 50px;
}
.top_80 {
  margin-top: 80px;
}

/* ------------------------------------------------
確認、完了ページ
-----------------------------------------------*/
.low-mv {
  position: relative;
  overflow: hidden;
}
.low-mv img {
  object-fit: cover;
  width: 100%;
}
.low-mv .low-title {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.low-mv .low-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-shadow: 0 0 8px #515151;
  color: #fff;
}
.low-mv .low-title h3 {
  color: #ffffff;
  font-weight: bold;
  text-shadow: 0 0 10px #6d6d6d;
}
@media screen and (max-width: 768px) {
  .low-mv {

  }
  .low-mv img {
    height: 100%;
  }
  .low-mv .low-title h2 {
    font-size: 24px;
  }
  .low-mv .low-title h3 {

  }
}

/* ------------------------------------------------
確認ページの表
-----------------------------------------------*/
.confirm-table {

}
.confirm-table tbody {

}
.confirm-table tbody tr {

}
.confirm-table tbody tr th {

}
.confirm-table tbody tr td {

}
.confirm-btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.confirm-btn form {
  background: none;
  width: 100%;
}
.confirm-btn form input[type="submit"] {
  width: 95%;
}
.submit-back {
  opacity: .6;
}
.submit-back:hover {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .confirm-btn {
    display: block;
  }
}



.confirmation {

}
.confirmation h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.confirmation form {
  background: none;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .confirmation form {
    margin-bottom: 20px;
  }
}
.confirmation .formTable {

}
.confirmation .formTable tr {
  display: flex;
  margin-bottom: 6px;
}
.confirmation .formTable tr th {
  text-align: center;
  font-weight: bold;
  background: #6e96d4;
}
.confirmation .formTable tr td {
  text-align: left;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .confirmation .formTable tr {
    display: block;
    margin-bottom: 12px;
  }
}

.accepted {
  text-align: center;
}
.accepted h2 {
  font-size: 26px;
  margin-bottom: 20px;
}
.accepted p {
  line-height: 2;
}
.accepted a {
  background: #fff;
  padding: 6px 25px;
  font-weight: bold;
  color: #575757;
  border: solid 2px #575757;
  border-radius: 6px;
  margin-top: 20px;
}
.accepted a:hover {
  background: #575757;
  color: #fff;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}
.contact .innar {
}
.contact .read{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.contact table{ width: 100%; }
.contact th {
    width: 25%;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    padding: 17px;
    vertical-align: top;
    position: relative;
}
.contact td {
  width: 75%;
  padding: 10px;
  padding-left: 30px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
}
.contact .radio-btn {
  display: flex;
}
.contact .radio-btn label {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
@media screen and (max-width: 600px) {
  .contact .radio-btn {
    padding: 14px 10px;
  }
}
.contact th::after {
  display: inline-block;
  width: 50%;
  max-width: 60px;
  background: #999999;
  color: #fff;
  font-size: 13px;
  line-height: 12px;
  text-align: center;
  border-radius: 2px;
  position: absolute;
  top: 16px;
  right: 0;
  margin: auto;
  height: 22px;
  margin-left: 18px;
  padding-top: 6px;
  margin-right: 12px;
}
.contact .form__required::after { content: "必須"; background: #42b7ef; }
.contact td p{ margin: 10px; }

.confirm {
  padding: 2em;
  background: #fff2e2;
  padding-bottom: 4em;
}
.confirm .innar {
  padding: 0 1em;
  max-width: 1000px;
  margin: 1em auto 0;
  line-height: 2rem;
}
.confirm .read{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.confirm table{ width: 100%; }
.confirm th {
  font-size: 16px;
  vertical-align: top;
  padding: 1.4em;
  position: relative;
  width: 30%;
  font-weight: normal;
  background: #efefef;
  text-align: left;
  border: 1px solid #ccc;
}
.confirm td {
  width: 75%;
  padding: 10px;
  padding-left: 30px;
  font-size: 14px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
}
.confirm th::after {
  display: inline-block;
  width: 50%;
  max-width: 60px;
  background: #999999;
  color: #fff;
  font-size: 13px;
  line-height: 12px;
  text-align: center;
  border-radius: 2px;
  position: absolute;
  top: 16px;
  right: 0;
  margin: auto;
  height: 22px;
  margin-left: 18px;
  padding-top: 6px;
  margin-right: 12px;
}
.confirm .form__required::after {
  content: "必須";
  background: #42b7ef;
  margin-top: 8px;
}
.confirm td p{ margin: 10px; }

.thanks {
  padding: 2em;
  background: #fff2e2;
  padding-bottom: 4em;
}
.thanks .innar {
  padding: 0 1em;
  max-width: 1000px;
  margin: 1em auto 0;
  line-height: 2rem;
}

input[type="text"],
textarea,
input[type="number"],
input[type="tel"],
input[type="email"] {
    border-radius: 4px;
    padding: 6px 10px;
    background: #eeeeee;
    border: solid 1px #575757;
    font-size: 14px;
}
input::placeholder {
    color: #959392;
    font-size: 13px;
    font-weight: 100;
    letter-spacing: 0.2rem;
}
select{
    width: 50%;
    border-radius: 4px;
    height: 50px;
    font-size: 14px;
    background: #eeeeee;
    border: solid 1px #575757;
    padding: 0 4px;
    margin: 5px 0;
}
input[type="email"] {
  width: 100%;
  margin-bottom: 5px;
  margin-top: 5px;
}
input[type="tel"] { margin-right: 1em; width: 100%;}
input[type="text"] {
  width: 100%;
  margin-bottom: 5px;
  margin-top: 5px;
}
textarea { width: 100%; resize: auto; }
.form_btn{ max-width: 310px; margin: 30px auto; }
.form_btn input {
    color: #575757;
    background: #efefef;
    border: none;
    border-radius: 4px;
    position: relative;
    display: block;
    padding: 8px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    width: 100%;
    border: solid 1px;
}
.form_btn input:hover{ color: #fff; background-color: #575757; }
.form_btn input.not_approval { background-color: #e5e5e5; color: #000; }
.form_btn input.not_approval:hover{ background-color: #e5e5e5; }

.innerlist_addressnumber input{ width: 26%; }
.addressnum_btn{
    background: #05adbe;
    border-radius: 4px;
    padding: 10px;
    color: #fff;
    text-align: center;
}
.privacy__box{
	height: 250px;
	border: solid 1px #ccc;
	padding: 30px;
	overflow-y: scroll;
}

.privacy__box h4{
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.privacy__box h5{ margin: 30px 0 10px; font-weight: bold; }
.contact td .privacy__box p{ margin: 0; margin-bottom: 20px; }
.privacy__box .txt_r{ text-align: right; }
.privacy__box dl{
	display: flex;
	border-bottom: solid 1px #ccc;
}
.privacy__box dl:last-child{ border: none; }
.privacy__box dt{
	width: 35%;
	text-align: center;
	padding: 10px 20px;
	background: #f2f2f2;
}
.privacy__box dd{ width: 65%; padding: 10px 20px; }

.consent_area{ text-align: center; }
.consent_area label{ vertical-align: middle; }
.consent_area .yes__label{ margin-right: 20px; }
.consent_area label input{ margin-right: 10px; }

.subhead{
  background: url(../img/common/img_01.jpg) no-repeat 50% 50% / cover;
  padding: 120px 0;
  margin-bottom: 0px;
}
.subhead .tit {
  color: #000;
  text-shadow: 1px 1px 2px #a7a7a7;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.subhead .tit span {
  color: #fff;
}


/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
  #formWrap {
    width: 100%;
    margin: 0 auto;
  }
  table.formTable th, table.formTable td {
    width: auto;
    display: block;
  }
  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
  }
  input[type="tel"] {
    width: 92%;
  }
  input[type="email"] {
    width: 100%;
  }
  input[type="text"], textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }
  input[type="submit"], input[type="reset"], input[type="button"] {
    display: block;
    width: 100%;
    height: 40px;
  }
  .confirm {
    padding: 1em;
  }
  .confirm th {
    width: 87%;
  }
  .confirm td {
    width: 100%;
    margin-bottom: 6px;
  }
  #page-top {
    bottom: 0;
  }
  #page-top a {
    padding: 10px 16px;
  }
  .banner{
    position: absolute;
    bottom: -23%;
    left: 0px;
    z-index: 10;
    display: flex;
    padding: 0 4px;
    width: 98%;
  }
  .banner li {
    width: 50%;
  }
  .banner li img {
    border: unset;
  }
  h2#d3 {
    margin-top: 20px;
  }
}