
/***********
contact
************/

.contact{
  padding: 50px 0;
}

.contact-table {
  width: 100%;
}
.contact-table tr {
  border-bottom: 1px dotted #ccc;
}

.contact-table th {
  text-align: left;
  vertical-align: top;
  padding: 30px 15px 40px 0px;
  font-size: 1.16rem;
  font-weight: bold;
  width: 30%;
  position: relative;
}

.contact-table td {
  padding: 25px 20px 25px 10px;
  font-size: 1.16rem;
}

.contact-table-item:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 20px;
}

.contact-frame {
  margin: 30px 0;
  height: 200px;
  overflow: auto;
  border: 1px solid #ddd;
  background-color: #f6f6f6;
}
.contact-frame-inner {
  padding: 25px;
}

.contact-agreement {
  text-align: center;
  padding: 30px 0;
}
.contact-agreement-text {
  line-height: 1.8;
}

.contact-agreement-check {
  font-size: 1.39rem;
  font-weight: bold;
  line-height: 1.2;
  padding-top: 20px;
}

.contact-submit {
  text-align: center;
  padding: 40px 0;
}

.contact-submit-btn{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: Meiryo, sans-serif;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  max-width: 480px;
  padding: 20px 0;
  color: #fff;
  background-color: #000;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: none;
  position: relative;
  transition: all ease 0.2s;
}
.contact-submit-btn::after{
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  z-index: 9;
  right: 15px;
  top: 50%;
  margin-top: -6px;
  transform: rotate(45deg);
}

.contact-submit-btn:disabled{
  cursor:not-allowed;
  opacity: 0.2;
}
.contact-submit-btn:not(:disabled):hover {
  background-color: #e60012;
}

.contact-submit-btn-back{
  background-color: #eee;
  color: #aaa;
}
.contact-submit-btn-back:hover{
  background-color: #ddd;
  color: #888;
}
.contact-submit-btn-back::after{
  right: auto;
  left: 15px;
  border-color: #aaa;
  transform: rotate(225deg);
}

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

  .contact{
    padding: 20px 0;
    letter-spacing: 0;
  }

  .contact-table,
  .contact-table thead,
  .contact-table tbody,
  .contact-table tfoot,
  .contact-table tr,
  .contact-table th,
  .contact-table td {
    display: block;
    width: 100%;
  }
  .contact-table tr {
    border-bottom: 1px dotted #ccc;
    padding: 20px 0;
  }

  .contact-table th {
    padding: 0 0 15px 50px;
    font-size: 1.16rem;
  }

  .contact-table td {
    padding: 0;
    font-size: 1.08rem;
  }

  .contact-table-item:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: none;
    margin-bottom: 10px;
  }

  .contact-frame {
    margin: 15px 0;
    height: 120px;
    font-size: 0.85rem;
  }
  .contact-frame-inner {
    padding: 15px;
  }

  .contact-agreement {
    padding: 15px 0;
  }
  .contact-agreement-text {
    line-height: 1.5;
    font-size: 0.85rem;
  }

  .contact-agreement-check {
    font-size: 1.24rem;
    padding-top: 10px;
    letter-spacing: 0;
  }

  .contact-submit {
    text-align: center;
    padding: 20px 0 40px;
  }

}


/***********
input
************/

.input-icon {
  display: inline-block;
  width: 3.2em;
  padding: 5px 0px;
  font-size: 12px;
  border-radius: 3px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  position: absolute;
  right: 20px;
}

.input-icon.input-icon-required {
  background-color: #e60012;
  color: #fff;
}

.input-icon.input-icon-option {
  background-color: #ddd;
}
.is-completed .input-icon {
  background-color: #00e852;
  color: #fff;
}


.input-text,
.input-textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 0 10px;
  min-height: 50px;
  border: none;
  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid #ccc;
  font-family: Meiryo, sans-serif;
}
.input-text{
  line-height: 50px;
}
.input-textarea{
  padding: 5px 10px;
  line-height: 1.3;
}

.input-text:focus,
.input-textarea:focus {
  box-shadow: 0 0 6px #09f;
}

.input-file{
  background-color: #f0f0f0;
  padding: 20px 30px;
}

.input-select {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../../img/select_arrow.png) no-repeat right center;
  font-size: 16px;
  padding: 0 25px 0 10px;
  min-height: 50px;
  line-height: 50px;
  border: none;
  background-color: #fff;
  border: 2px solid #ccc;
  font-family: Meiryo, sans-serif;
}

.input-full {
  width: 100%;
  box-sizing: border-box;
}

.input-half {
  width: 70%;
  box-sizing: border-box;
}

.input-small {
  width: 130px;
  box-sizing: border-box;
}


.input-heading{
  display: block;
  background-color: #ccc;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  margin: 2px 0 0 2px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #888;
  z-index: 9;
}
.input-zip{
  width: 200px;
  padding-left: 65px;
}

.input-zip-btn{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  height: 42px;
  line-height: 40px;
  margin: 0;
  padding: 0 20px;
  border: 1px solid #ccc;
  background-color: #eee;
  font-size: 16px;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #000;
  text-decoration: none;
  vertical-align: middle;
  margin-left: 10px;
  cursor: pointer;
}
.input-zip-btn:hover{
  background-color: #ddd;
}


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

  .input-icon {
    width: 3.2em;
    font-size: 12px;
    right: auto;
    left: 0;
  }

  .input-text,
  .input-textarea {
    font-size: 16px;
    min-height: 44px;
  }
  .input-text{
    line-height: 1.5;
  }
  .input-textarea{
  }

  .input-select {
    min-height: 44px;
    line-height: 44px;
  }

  .input-full {
    width: 100%;
  }

  .input-half {
    width: 100%;
  }

  .input-small {
  }

  .input-heading{
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
  .input-zip{
    width: 180px;
    padding-left: 50px;
  }

  .input-zip-btn{
    padding: 0 15px;
  }

}

/***********
radio
************/

input[type=radio]{
  margin-right: 0.5em;
}
input[type=checkbox]{
  margin-right: 0.5em;
}

.input-choice {
}
.input-choice label {
  font-size: 1.16rem;
  font-weight: bold;
  line-height: 1.8;
  padding: 0.3em 0;
}

/***********
confirm
************/

.confirm{
}
.confirm-table {
  width: 100%;
  border: 1px solid #ccc;
}
.confirm-table tr {
  border: 1px solid #ccc;
}
.confirm-table th {
  background-color: #f0f0f0;
  padding: 15px 15px;
  text-align: left;
  vertical-align: top;
  width: 30%;
}
.confirm-table td {
  padding: 15px 15px;
  text-align: left;
  vertical-align: top;
}


.confirm-submit {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.confirm-submit li {
  width: 100%;
  text-align: center;
}



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

  .confirm-table {
    letter-spacing: 0;
    font-size: 93%;
  }
  .confirm-table tr {
  }
  .confirm-table th {
    padding: 12px 10px;
  }
  .confirm-table td {
    padding: 12px 10px;
  }

  .confirm-submit {
    padding: 20px 0;
  }
  .confirm-submit li:first-child {
  }
  .confirm-submit li:last-child {
  }

}
















