@charset "utf-8";

.cont_img{
  overflow: hidden;
}

.cont .container {
  padding-bottom: 140px;
}

.cont .container article {
  padding-top: 60px;
}

.container article .lead p {
  margin-top: 0;
}

@media only screen and (max-width: 1040px) {

}

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

form {
  margin: 0px;
  text-align: left;
  margin-top: 60px;
}

fieldset {
  padding: 0px;
  border: none;
}

input[type=text],
textarea {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* shadow none */
}

input,
textarea,
select {
  line-height: 130%;
  padding: 10px;
  font-weight: normal;
  border: none;
  border-radius: 5px;
  background-color: #f5f5f5;
  border: none;
}

textarea {
  border: none;
  background-color: #f5f5f5;
}

select {
  height: 40px;
  background: #f5f5f5;
  padding: 0 10px;
}

input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #f5f5f5 inset;
}

input[type="radio"] {
  width: auto !important;
  margin-left: 2px;
  margin-right: 3px;
}

input:hover,
select:hover,
input:focus,
select:focus {
  background-color: #f5f5f5;
  outline: none;
}

input[type="checkbox"]:hover,
input[type="checkbox"]:focus {
  background-color: #ddd;
}

textarea:hover,
textarea:focus {
  background-color: #f5f5f5;
  outline: none;
}

:placeholder-shown {
  color: #565656;
}

::-webkit-input-placeholder {
  color: #c3c3c3;
}

:-moz-placeholder {
  color: #c3c3c3;
}

::-moz-placeholder {
  color: #c3c3c3;
}

:-ms-input-placeholder {
  color: #c3c3c3;
}

label.error {
  font-size: 12px;
  font-weight: 400;
  color: #df2500;
  display: inline-block;
  line-height: 1.2;
  padding-top: 6px;
}

.required {
  color: #e93a3a;
  font-size: 15px;
  margin-left: 5px;
  display: inline-block;
}

@media only screen and (max-width: 1040px) {

  input,
  textarea,
  select {
    line-height: 90%;
  }
}

/*============================
entry
============================*/

#entry p span a {
  display: block;
  padding-top: 10px;
  color: #006fc3;
}

.formTable {
  width: 100%;
}

.formTable tr {
  display: flex;
  margin-bottom: 22px;
}

.formTable th {
  width: 200px;
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.formTable td {
  font-weight: 500;
  font-size: 15px;
  flex: 1;
  width: 100%;
  display: block;
}

.formTable td span {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 1040px) {
  .formTable td span {
    display: block;
  }
}

.formTable td span:nth-of-type(n+2) {
  margin-top: 10px;
}

.formTable td li {
  display: flex;
  align-items: center;
}

.formTable td li:nth-of-type(n+2) {
  margin-top: 5px;
}

.formTable input:not([type="checkbox"]),
.formTable textarea {
  width: 100%;
}

.checkbox {
  appearance: none;
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border-radius: 2px;
  background-color: #dddddd;
  cursor: pointer;
}

.checkbox:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  width: 14px;
  height: 5px;
  border-bottom: 1.5px solid #222;
  border-left: 1.5px solid #222;
  transform: rotate(-45deg);
}

/*ボタン*/

#form .formBtn {
  padding-top: 20px;
}

#confirm .link {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

#form .link li,
#confirm .link li {
  width: 320px;
  border-bottom: 0;
}

.formBtn li {
  position: relative;
  margin: 0 auto;
}

#confirm .formBtn li {
  margin: 0 20px;
}

.link li input {
  display: block;
  line-height: inherit;
  width: 100%;
  padding: 13px 0;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  color: #fff;
  border: none;
  border-radius: 30px;
  background-color: #ffa70d;
  position: relative;
}

.formBtn li::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 24px;
  z-index: 10;
}

.formBtn li.btn01::before {
  border-color: #111;
}

.formBtn li::after{
  display: none;
}

/* privacy */

#privacy {
  margin-top: 30px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

#privacy a {
  border-bottom: 1px solid #000;
}

@media only screen and (max-width: 1040px) {
  form {
    margin-top: 10px;
    padding: 0;
  }

  .formTable {
    width: 100%;
  }

  .formTable tr:first-child {
    border-top: none;
  }

  .formTable tr {
    padding: 0;
    margin-bottom: 20px;
    display: block;
  }

  .formTable tr:last-child {
    border: none;
  }

  .formTable th {
    width: 100%;
    padding: 0;
    vertical-align: inherit;
    background: none;
    display: block;
    padding-bottom: 5px;
    position: relative;
  }

  .formTable th::before {
    content: '■';
  }

  .formTable td {
    padding: 0;
    width: 100%;
    display: block;
  }

  input#zip {
    width: 200px !important;
  }

  .formTable td p:first-child {
    padding-top: 0;
  }

  .formTable textarea {
    width: 100%;
  }

  #confirm .link {
    display: block;
  }

  #confirm .formBtn li {
    margin: 0;
  }

  #form .link li,
  #confirm .link li {
    width: 100%;
    border-bottom: 0;
  }

  /* privacy */
  #privacy {
    margin-top: 20px;
    font-size: 15px;
  }
}

/*============================
confirm
============================*/

#confirm .formTable tr {
  padding-bottom: 20px;
  border-bottom: 1px solid #111;
}

#confirm form {
  padding: 0;
}

#confirm .formBtn li.editBtn input {
  color: #111;
  border: 1px solid #111;
  background-color: #fff;
}

#confirm .formBtn li.editBtn::before {
  border-color: #111;
}

@media only screen and (max-width: 1040px) {
  #confirm form {
    padding: 10px 20px 30px;
    background-color: #f5f5f5;
  }
  
  #confirm .formTable tr{
    margin-bottom: 0;
  }

  #confirm .formTable tr {
    padding: 12px 0;
  }

  #confirm .submitBtn.btn02 {
    margin-top: 20px;
  }
}
