@charset "UTF-8";
/* ==================================================
	common
================================================== */
/* elements
-------------------------------------------------- */
form {
  display: inline;
}

label {
  vertical-align: middle;
}

input,
select, optgroup, option,
textarea {
  box-sizing: border-box;
  margin: 0;
  font-family: "Helvetica Neue",Helvetica,Arial,Verdana,Roboto,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","游ゴシック","Yu Gothic","游ゴシック体",YuGothic,"ＭＳ Ｐゴシック",sans-serif;
  font-weight: normal;
}
/* ▽ SP layout ========== */
/* @media only screen and (max-width: 639px) {
  input,
  select, optgroup, option,
  textarea {
    font-size: 1.6rem;
  }
} */
/* ========== end △ */
input[type=text] {
  width: 100%;
  padding: 3px 5px;
  border: 1px solid #000;
    height: 40px;
}
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 640px) {
  input[type=text] {
    width: 100%;
  }
}
/* ========== end △ */
input[type="email"] {
  width: 100%;
    height: 40px;
}
input[type="password"] {
  width: 100%;
    height: 40px;
}
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 640px) {
  input[type="email"] {
    width: 100%;
  }
}
/* ========== end △ */
input[type="radio"] {
  margin-right: 0.3em;
}
input[type="checkbox"] {
  margin-right: 0.3em;
}
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
}

textarea {
  width: 100%;
  height: 8em;
  padding: 3px 5px;
  resize: none;
  overflow: hidden;
}

/* ==================================================
	contact input
================================================== */
/* common
-------------------------------------------------- */
.form_content_style .dl_table_style > dl > dt {
  min-width: 200px;
}
.form_content_style .dl_table_style > dl > dd {
  vertical-align: middle;
}

/* radio / checkbox button list */
.form_content_style .btn_list li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
  vertical-align: top;
}
.form_content_style .btn_list li.other {
  width: 100%;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .form_content_style .btn_list li.other input[type="text"] {
    margin-top: 5px;
  }
}
/* ========== end △ */
.form_content_style .age input {
  width: 5em;
}
.form_content_style .zip .zip_code input {
  width: 10em;
}
.form_content_style .zip dl dt, .form_content_style .zip dl dd {
  margin-top: 5px;
}

/* icon 必須 / 任意 */
.form_content_style .required, .form_content_style .any {
  position: relative;
}
.form_content_style .required::before, .form_content_style .any::before {
  float: right;
  display: inline-block;
  padding: 0 5px;
  color: #fff;
    font-size: 13px;
}
.form_content_style .required::before {
  content: "必須";
  background-color: #f33737;
}
.form_content_style .any::before {
  content: "任意";
  background-color: #3878d7;
}

/* 同意テキスト */
body.form .consent_txt {
  margin-top: 30px;
  text-align: center;
  line-height: 1.8;
}

/* submit buttons
-------------------------------------------------- */
body.form .form_submit_btn {
  text-align: center;
}
/* body.form .form_submit_btn input {
  display: inline-block;
  width: 100%;
  margin-top: 25px;
  padding: 10px 0;
  border-radius: 5px;
  background-color: #333;
  color: #fff;
  font-size: 1.6rem;
  transition: all 0.2s ease;
} */
/* ▽ PC-TAB layout ========== */
/* @media print, screen and (min-width: 640px) {
  body.form .form_submit_btn input {
    width: 40%;
    margin-right: 10px;
    margin-left: 10px;
  }
} */
/* ========== end △ */
body.form .form_submit_btn.back:not(.white) {
  background-color: #000;
    color: #fff;
}
body.form .form_submit_btn.back.green {
  background-color: #057867;
    color: #fff;
    border-color: #057867;
}

body.form .form_submit_btn.back:not(.white) input{
    color: #fff;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 1024px) {
  body.form .form_submit_btn input:hover {
    background-color: #057867;
      color: #fff;
  }
    body.form .form_submit_btn:hover{
        opacity: 0.8;
    }
}
/* ========== end △ */
body.form .form_submit_btn .btn_style {
  width: 40%;
}
body.form .form_submit_btn .btn_style a {
  padding: 12px 0;
  font-size: 1.6rem;
  font-weight: normal;
}

/* error message
-------------------------------------------------- */
body.form .error_txt {
  margin: 50px 10px;
  color: #ff3b30;
  font-weight: bold;
  text-align: center;
}
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 640px) {
  body.form .error_txt {
    margin: 100px 0;
  }
}
/* ========== end △ */
/* completion message
-------------------------------------------------- */
body.form .completion_txt {
  margin: 50px 10px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
}
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 640px) {
  body.form .completion_txt {
    margin: 100px 0;
  }
}
/* ========== end △ */

.dl_table_style{
    margin-bottom: 40px;
}
.form_submit_btn {
    text-align: center;
    text-decoration: none;
    display: inline-block;
    position: relative;
    border: 2px solid #1C1C1C;
    width: 300px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    border-radius: 100px;
    background: #fff;
    color: #1C1C1C;
    margin: 10px;
}
.form_submit_btn .arrow{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
}
.form_submit_btn.back input, 
.form_submit_btn.back a{
    padding-left: 33px;
    padding-right: 0;
}
.form_submit_btn.back .arrow{
    right: auto;
    left: 10px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
.form_submit_btn input,
.form_submit_btn a {
    text-align: center;
    text-decoration: none;
    display: block;
    width: 100%;
    font-size: 16px;
    position: relative;
    border: none;
    background: none;
    outline: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    height: 55px;
    border-radius: 100px;
    color: #1C1C1C;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    padding-right: 33px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Noto Sans JP', "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, "Sawarabi Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

@media screen and (min-width: 768px) {

    .form_submit_btn input:hover,
    .form_submit_btn a:hover {
        background: #1C1C1C;
        color: #fff;
    }
}
@media screen and (max-width: 767px) {
    .form_submit_btn{
        width: 270px;
    }
    .form_submit_btn input, .form_submit_btn a{
        font-size: 14px;
    }
}
