@charset "UTF-8";
/* VARIABLE*/
/* MIXIN*/
/* forms */
::placeholder {
  color: #ddd;
}

input, textarea {
  background: #fff;
  width: 100%;
  border: 1px solid #1a1a1a;
  padding: 5px;
}

input[type="submit"] {
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #fff;
  padding: 15px;
}

input[type="reset"] {
  border: 1px solid #1a1a1a;
  background: #fff;
  color: #1a1a1a;
  padding: 15px;
}

input[type="radio"], input[type="checkbox"] {
  display: none;
}

/* radio */
.input-radio label {
  display: inline-block;
  margin: 0 10px 10px 0;
}

.input-radio label:last-child {
  margin: 0;
}

.input-radio span {
  position: relative;
  padding-left: 35px;
}

.input-radio span::before {
  background: #fff;
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #1a1a1a;
  border-radius: 50%;
  margin: auto;
}

.input-radio input:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin: 3px 0 0 5px;
  width: 10px;
  height: 10px;
  background: #1a1a1a;
  border-radius: 50%;
}

.input-radio input:checked + span {
  color: #1a1a1a;
}

.input-radio input:checked + span::before {
  border: 1px solid #1a1a1a;
  background: #fff;
}

/* checkbox */
.input-checkbox label {
  display: inline-block;
  margin: 0 10px 10px 0;
}

.input-checkbox label:last-child {
  margin: 0;
}

.input-checkbox span {
  position: relative;
  padding-left: 20px;
}

.input-checkbox span::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #1a1a1a;
  -webkit-transition: all 300ms 0s ease;
  transition: all 300ms 0s ease;
}

.input-checkbox input:checked + span::before {
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.input-checkbox input:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin: 3px 0 0 5px;
  width: 4px;
  height: 8px;
  transform: rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.input-checkbox input:checked + span {
  color: #1a1a1a;
}

/* select */
select {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 5px;
  border-radius: 0;
  background: transparent;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  border: 1px solid #ccc;
}

.select-wrapper::before,
.select-wrapper::after {
  content: '';
  position: absolute;
  z-index: 0;
  right: 0;
  margin: auto 8px auto 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #ccc transparent transparent transparent;
}

.select-wrapper::before {
  top: 0;
  margin: 10px 10px 0 0;
  transform: rotate(180deg);
}

.select-wrapper::after {
  bottom: 0;
  margin: 0 10px 10px 0;
}

/* input-file */
.input-file input[type="file"] {
  border: none;
  font-size: 12px;
  font-size: 1.2rem;
}

/* upload original */
/*.input-file input[type="file"] {
  display: none;
}

.original_btn {
  padding: 3px;
  background: #ccc;
}

.icon {
  display: inline-block;
  margin: 0 0 0 15px;
}

.icon.select {
  background: $form_color;
  color: #fff;
}

.filename {
  display: inline-block;
}*/
/* submit */
.submit-wrapper {
  letter-spacing: -.4em;
}

.submit-wrapper input {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
  width: 47.5%;
  margin-right: 5%;
}

.submit-wrapper input:last-child {
  margin-right: 0;
}

dt.required::after {
  font-size: 10px;
  display: inline-block;
  vertical-align: middle;
  content: '●';
}

.error {
  color: red;
  margin-top: 10px;
}

#entry-confirm .submit-wrapper .btn-submit {
  width: 47.5%;
}

#entry-complete .form-wrapper {
  padding-bottom: 50px;
}
#entry-complete h1 {
  font-weight: bold;
  margin-bottom: 30px;
}
#entry-complete h1 span {
  display: inline-block;
}
#entry-complete .link-wrapper {
  font-weight: bold;
  margin-top: 50px;
}
#entry-complete .link-wrapper::after {
  content: "";
  background: url(../images/common/arrow_black.svg) center no-repeat;
  display: inline-block;
  vertical-align: middle;
  width: 7.5px;
  height: 15px;
}

/********** SP **********/
@media screen and (max-width: 900px) {
  .entry-method p {
    margin-bottom: 20px;
  }
  .entry-method > div {
    margin-bottom: 60px;
  }
  .entry-method dt {
    font-weight: bold;
    width: 100%;
    margin-bottom: 10px;
  }
  .entry-method dt span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #f6df34));
    background: linear-gradient(transparent 60%, #f6df34 60%);
  }
  .entry-method .tel dd {
    font-weight: bold;
  }
  .entry-method .tel dd a {
    font-size: 24px;
  }
  .entry-method .tel dd .notes {
    font-size: 11px;
    font-weight: normal;
	  display: block;
  }
  .entry-method .form dd {
    font-size: 11px;
    line-height: 1.82;
  }

  .form-wrapper {
    background: #f6df34;
    padding: 50px 0 0;
    margin-bottom: 60px;
  }
  .form-wrapper .g {
    margin-bottom: 25px;
  }
  .form-wrapper .g.Flex {
    align-items: center;
  }
  .form-wrapper .g.Flex.ai-start {
    align-items: flex-start;
  }
  .form-wrapper dt {
    font-weight: bold;
    width: 200px;
  }
  .form-wrapper dt .notes {
    font-size: 12px;
    font-weight: normal;
  }
  .form-wrapper dd {
    width: calc(100% - 200px);
  }
  .form-wrapper .input-radio label {
    margin-right: 50px;
  }
  .form-wrapper .submit-wrapper .btn-submit {
    font-weight: bold;
    width: 100%;
  }

  .input-radio input:checked + span::after {
    margin: 1px 0 0 5px;
  }

  #privacy {
    font-size: 11px;
    padding: 0 10px;
  }
  #privacy h1 {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  #privacy div {
    line-height: 1.82;
  }
}
/********** PC **********/
@media screen and (min-width: 900px) {
  .entry-method p {
    margin-bottom: 20px;
  }
  .entry-method > div {
    margin-bottom: 60px;
  }
  .entry-method dt {
    font-size: 20px;
    font-weight: bold;
  }
  .entry-method dt span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #f6df34));
    background: linear-gradient(transparent 60%, #f6df34 60%);
  }
  .entry-method .tel dd {
    font-weight: bold;
    transform: translate(0, -9px);
  }
  .entry-method .tel dd a {
    font-size: 38px;
  }
  .entry-method .tel dd .notes {
    font-size: 15px;
    font-weight: normal;
	  display: block;
  }
  .entry-method .form dt {
    width: 100%;
    margin-bottom: 30px;
  }
  .entry-method .form dd {
    line-height: 1.82;
  }

  .form-wrapper {
    background: #f6df34;
    padding: 50px 0 0;
    margin-bottom: 60px;
  }
  .form-wrapper .g {
    margin-bottom: 40px;
  }
  .form-wrapper .g.Flex {
    align-items: center;
  }
  .form-wrapper .g.Flex.ai-start {
    align-items: flex-start;
  }
  .form-wrapper dt {
    font-weight: bold;
    text-align: right;
    width: 180px;
  }
  .form-wrapper dt .notes {
    font-size: 12px;
    font-weight: normal;
  }
  .form-wrapper dd {
    width: calc(100% - 230px);
  }
  .form-wrapper .occupation .input-radio label {
    margin-right: 35px;
    margin-bottom: 25px;
  }
  .form-wrapper .status .input-radio label {
    margin-bottom: 0;
  }
  .form-wrapper .submit-wrapper .btn-submit {
    font-size: 20px;
    font-weight: bold;
    width: 100%;
  }

  #privacy {
    width: 600px;
    margin: 0 auto;
    padding: 0 10px;
  }
  #privacy h1 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  #privacy div {
    line-height: 1.82;
  }
}
@media screen and (max-width: 767px) {
  .form-wrapper .Flex.ai-start {
    align-items: flex-start;
  }
  .form-wrapper dt {
    width: 100%;
    margin-bottom: 10px;
  }
  .form-wrapper dd {
    width: 100%;
  }
}
