@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

input,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  color: #333;
}

.sec {
  padding: 2.55rem 0;
}

.inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

input[type="text"],
input[type="email"] {
  border: 1px solid #d5d5d5;
  width: 100%;
  padding: 0.4rem 0.37rem;
}

label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select {
  background: #f6f6f6 url(../img/sel_arw.png) 98% 50% no-repeat;
  background-size: 1.6rem auto;
  padding: 1.111rem 1.1rem;
  padding-right: 3.16rem;
  font-size: 1.222rem;
  border: 1px solid #d5d5d5;
  border-radius: 7px;
  line-height: 1.24;
  width: 100%;
  color: #333333;
}

@media (max-width: 767px) {
  .select {
    font-size: 0.88rem;
    background-size: 1.15rem auto;
    padding-right: 2.33rem;
  }
}

.red {
  color: red;
}

.site_ttl {
  font-size: 2.1rem;
  text-align: center;
  line-height: 1.18;
  margin-bottom: 2.88rem;
  background-color: #fba906;
  color: #ffffff;
  padding: 7px 0;
}

@media (max-width: 767px) {
  .site_ttl {
    font-size: 1.2rem;
    padding: 13px 0;
  }
}

.sec_ttl {
  font-size: 1.66rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #dcdcdc;
  font-weight: 600;
}

@media (max-width: 767px) {
  .sec_ttl {
    font-size: 1.32rem;
  }
}

.form_gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.11rem 0;
}

@media (max-width: 767px) {
  .form_gr {
    display: block;
  }
}

.form_left {
  width: 28%;
  font-weight: 600;
}

@media (max-width: 767px) {
  .form_left {
    width: 100%;
    margin-bottom: 0.8rem;
  }
}

.form_right {
  width: 75%;
}

@media (max-width: 767px) {
  .form_right {
    width: 100%;
  }
}

.form_col02,
.form_sub_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form_sub_col {
  width: 47%;
}

.form_sub_col label {
  margin-right: 0.222rem;
}

.btm_note {
  margin-top: 10px;
  line-height: 1.18;
  font-size: 0.88rem;
}

.agree_check_area {
  margin: 1.6rem 0 2.7rem;
}

.agree_check_area .agree_check {
  visibility: hidden;
  position: absolute;
}

.agree_check_area .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.agree_check_area .label .sq {
  width: 22px;
  height: 22px;
  border: 1px solid #d9d9d9;
  margin-right: 10px;
  position: relative;
}

.agree_check_area .label .sq::after {
  display: block;
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px #fff solid;
  border-bottom: 2px #fff solid;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 3px;
  left: 3px;
  opacity: 0;
}

.agree_check_area .agree_check:checked + .label .sq {
  background-color: #fe0000;
  border: 1px solid #fe0000;
}

.agree_check_area .agree_check:checked + .label .sq::after {
  opacity: 1;
}

.form_send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form_send .btn {
  background-color: #fe0000;
  color: #ffffff;
  text-align: center;
  margin: 0 5px;
  padding: 12px 0;
  width: 210px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.44rem;
}

.form_send .btn.--reset {
  background-color: #666;
}

@media (max-width: 767px) {
  .form_send .btn {
    font-size: 1.3rem;
  }
}
/*# sourceMappingURL=style.css.map */