@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, *::before, *::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  word-break: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: baseline;
  background: transparent;
}

html, body {
  overflow-x: hidden;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

li {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, picture {
  vertical-align: middle;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

br {
  line-height: 0;
}

/* safariでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
}

/* -----------------------------------------------------
	basic
----------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 3.64583vw;
  }
}

main {
  width: 100%;
  background: #fffff9;
  position: relative;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .inner {
    max-width: 100%;
    padding: 0 10.41667vw;
  }
}

a {
  opacity: 1;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  text-decoration: none;
}

a img {
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

a img:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  a img:hover {
    opacity: 1;
  }
}

/* -----------------------------------------------------
	header
----------------------------------------------------- */
header {
  background: #fff;
  padding: 8px 16px;
}

@media screen and (max-width: 768px) {
  header {
    padding: 2.08333vw 5.20833vw;
  }
}

header .site_logo {
  font-size: 100%;
  line-height: 1;
}

header .site_logo img {
  width: 64px;
}

@media screen and (max-width: 768px) {
  header .site_logo img {
    width: 8.33333vw;
  }
}

/* -----------------------------------------------------
	footer
----------------------------------------------------- */
footer {
  background: #f2db7d;
}

footer p {
  color: #fb6c01;
  line-height: 80px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  footer p {
    font-size: 2.60417vw;
    line-height: 10.41667vw;
  }
}

footer #totop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  footer #totop {
    right: 3.125vw;
    bottom: 3.125vw;
  }
}

footer #totop img {
  width: 88px;
}

@media screen and (max-width: 768px) {
  footer #totop img {
    width: 14.58333vw;
  }
}

/* -----------------------------------------------------
	br
----------------------------------------------------- */
br.pc {
  display: block;
}

@media screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
}

br.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  br.sp {
    display: block;
  }
}

input[type="text"], input[type="button"], input[type="file"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

input[type="text"] {
  background: #fff;
  border: 3px solid #8e8e8e;
}

@media screen and (max-width: 768px) {
  input[type="text"] {
    border: 0.52083vw solid #8e8e8e;
  }
}

input[type="text"]::-webkit-input-placeholder {
  color: #8e8e8e;
}

input[type="text"]:-ms-input-placeholder {
  color: #8e8e8e;
}

input[type="text"]::-ms-input-placeholder {
  color: #8e8e8e;
}

input[type="text"]::placeholder {
  color: #8e8e8e;
}

input[type="text"], select {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.0rem;
  line-height: 56px;
  width: calc(100% - 38px);
  padding: 0 16px;
}

@media screen and (max-width: 768px) {
  input[type="text"], select {
    font-size: 3.64583vw;
    line-height: 11.45833vw;
    width: calc(100% - 5.20833vw);
    padding: 0 2.08333vw;
  }
}

.ttl_img {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .ttl_img {
    margin-bottom: 5.20833vw;
  }
}

.ttl_img img {
  width: 300px;
}

@media screen and (max-width: 768px) {
  .ttl_img img {
    width: 39.0625vw;
  }
}

.input_ttl {
  background: #fb6c01;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .input_ttl {
    font-size: 4.16667vw;
    line-height: 9.375vw;
    margin-bottom: 7.29167vw;
  }
}

.lead_text {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .lead_text {
    font-size: 3.64583vw;
    margin-bottom: 5.20833vw;
  }
}

/* -----------------------------------------------------
  kv
----------------------------------------------------- */
.kv {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .kv {
    margin-bottom: 10.41667vw;
  }
}

.kv img {
  width: 100%;
}

/* -----------------------------------------------------
	form_item
----------------------------------------------------- */
.form_item dl dt p + p {
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .form_item dl dt p + p {
    margin-top: 1.04167vw;
  }
}

.form_item dl dt .item {
  font-size: 2.0rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .form_item dl dt .item {
    font-size: 4.16667vw;
  }
}

.form_item dl dt .item span {
  padding-right: 56px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .form_item dl dt .item span {
    padding-right: 10.41667vw;
  }
}

.form_item dl dt .item span.req::after {
  content: '必須';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #ca000b;
  font-size: 1.4rem;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .form_item dl dt .item span.req::after {
    font-size: 2.60417vw;
    padding: 1.04167vw 1.5625vw;
    border-radius: 1.04167vw;
  }
}

.form_item dl dd {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .form_item dl dd {
    margin-top: 3.125vw;
  }
}

.form_item dl dd .select {
  width: 320px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .form_item dl dd .select {
    width: 100%;
  }
}

.form_item dl dd .select::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 10px;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #000 transparent transparent transparent;
}

@media screen and (max-width: 768px) {
  .form_item dl dd .select::after {
    right: 3.125vw;
    width: 4.16667vw;
    height: 2.60417vw;
    border-width: 2.60417vw 2.08333vw 0 2.08333vw;
  }
}

.form_item dl dd .select select {
  color: #000;
  background: #fff;
  border: 3px solid #8e8e8e;
  height: 64px;
  padding: 0 16px;
}

@media screen and (max-width: 768px) {
  .form_item dl dd .select select {
    border: 0.52083vw solid #8e8e8e;
    height: 12.5vw;
    padding: 0 3.125vw;
  }
}

.form_item dl dd .file_select {
  width: 320px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .form_item dl dd .file_select {
    width: 100%;
  }
}

.form_item dl dd .file_select::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 22%;
  right: 20px;
  width: 20px;
  height: 19px;
  background: url(../img/icon_upload.png) right center/contain no-repeat;
}

@media screen and (max-width: 768px) {
  .form_item dl dd .file_select::after {
    top: 4.55729vw;
    right: inherit;
    left: 39.0625vw;
    width: 3.38542vw;
    height: 3.25521vw;
  }
}

.form_item dl dd .file_select input {
  font-size: 2.0rem;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .form_item dl dd .file_select input {
    font-size: 3.64583vw;
  }
}

.form_item dl dd .file_select .btn_upload::file-selector-button {
  display: block;
  width: 320px;
  line-height: 56px;
  background: #fff;
  border: 3px solid #8e8e8e;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .form_item dl dd .file_select .btn_upload::file-selector-button {
    width: 45.57292vw;
    line-height: 11.45833vw;
    border: 0.52083vw solid #8e8e8e;
    margin-bottom: 1.04167vw;
  }
}

.form_item dl dd .file_select .btn_upload::file-selector-button:hover {
  cursor: pointer;
}

.form_item dl dd .file_select + .file_select {
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .form_item dl dd .file_select + .file_select {
    margin-top: 5.20833vw;
  }
}

.form_item dl dd .col1 li + li {
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .form_item dl dd .col1 li + li {
    margin-top: 5.20833vw;
  }
}

.form_item dl dd .col2 {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
}

@media screen and (max-width: 768px) {
  .form_item dl dd .col2 {
    display: block;
  }
}

.form_item dl dd .col2 li {
  width: calc(50% - 16px);
}

@media screen and (max-width: 768px) {
  .form_item dl dd .col2 li {
    width: 100%;
  }
  .form_item dl dd .col2 li + li {
    margin-top: 3.125vw;
  }
}

.form_item dl dd .error {
  margin-top: 16px;
  color: #ca000b;
}

@media screen and (max-width: 768px) {
  .form_item dl dd .error {
    margin-top: 3.125vw;
  }
}

.form_item dl dd .cap {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .form_item dl dd .cap {
    margin-top: 3.125vw;
  }
}

.form_item dl dd .note {
  margin-top: 16px;
}

.form_item dl dd .note li {
  text-indent: -1em;
  margin-left: 1em;
}

.form_item dl dd p + p, .form_item dl dd p + ul {
  margin-top: 0 !important;
}

.form_item dl + dl {
  border-top: 1px dashed #8e8e8e;
  margin-top: 40px;
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .form_item dl + dl {
    border-top: 0.39063vw dashed #8e8e8e;
    margin-top: 7.29167vw;
    padding-top: 7.29167vw;
  }
}

.form_item select {
  width: 100%;
}

.form_item.confirm dl {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
}

@media screen and (max-width: 768px) {
  .form_item.confirm dl {
    display: block;
  }
}

.form_item.confirm dl dt {
  width: 40%;
}

@media screen and (max-width: 768px) {
  .form_item.confirm dl dt {
    width: 100%;
  }
}

.form_item.confirm dl dd {
  width: 60%;
  margin-top: 0;
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .form_item.confirm dl dd {
    width: 100%;
    margin-top: 3.125vw;
    font-size: 4.16667vw;
  }
}

.form_item.confirm dl dd a {
  text-decoration: underline;
}

.form_item.complete {
  text-align: center;
}

.form_item.complete .complete_ttl {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .form_item.complete .complete_ttl {
    font-size: 5.20833vw;
    margin-bottom: 5.20833vw;
  }
}

.form_item.complete .text p {
  font-size: 2.0rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .form_item.complete .text p {
    font-size: 3.90625vw;
  }
}

/* -----------------------------------------------------
	terms
----------------------------------------------------- */
.terms {
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .terms {
    margin-top: 12.5vw;
  }
}

.terms .terms_ttl {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .terms .terms_ttl {
    font-size: 5.20833vw;
    margin-bottom: 3.125vw;
  }
}

.terms .terms_wrap {
  background: #fff;
  border: 3px solid #8e8e8e;
  padding: 40px 24px 40px 40px;
}

@media screen and (max-width: 768px) {
  .terms .terms_wrap {
    border: 0.52083vw solid #8e8e8e;
    padding: 5.20833vw 3.125vw 5.20833vw 5.20833vw;
  }
}

.terms .terms_wrap .terms_inner {
  max-height: 400px;
  overflow-y: scroll;
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  .terms .terms_wrap .terms_inner {
    max-height: 72.91667vw;
    padding-right: 3.125vw;
  }
}

.terms .terms_wrap .terms_inner h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 24px 0 4px;
}

@media screen and (max-width: 768px) {
  .terms .terms_wrap .terms_inner h4 {
    font-size: 3.90625vw;
    margin: 5.20833vw 0 1.04167vw;
  }
}

.terms .terms_wrap .terms_inner h4 + .disc, .terms .terms_wrap .terms_inner h4 + .note, .terms .terms_wrap .terms_inner h4 + .bra_num, .terms .terms_wrap .terms_inner h4 + .num {
  margin-top: 0;
}

.terms .terms_wrap .terms_inner a {
  color: #fb6c01;
}

.terms .terms_wrap .terms_inner .disc {
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .terms .terms_wrap .terms_inner .disc {
    margin-top: 2.08333vw;
  }
}

.terms .terms_wrap .terms_inner .disc li {
  list-style: disc;
  margin-left: 1.5em;
}

.terms .terms_wrap .terms_inner .disc li .note {
  margin-top: 0;
}

.terms .terms_wrap .terms_inner .disc li .note li {
  list-style: none;
}

.terms .terms_wrap .terms_inner .note {
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .terms .terms_wrap .terms_inner .note {
    margin-top: 2.08333vw;
  }
}

.terms .terms_wrap .terms_inner .note li {
  text-indent: -1em;
  margin-left: 1em;
}

.terms .terms_wrap .terms_inner .note li .note li {
  text-indent: -1em;
  margin-left: 1em;
}

.terms .terms_wrap .terms_inner .bra_num li {
  list-style: none;
  text-indent: -1.5em;
  margin-left: 1.5em;
}

.terms .terms_wrap .terms_inner .num li {
  list-style: none;
  text-indent: -1em;
  margin-left: 1em;
}

.terms .terms_wrap .terms_inner p + p {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .terms .terms_wrap .terms_inner p + p {
    margin-top: 3.125vw;
  }
}

.terms .agree_text {
  text-align: center;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .terms .agree_text {
    margin-top: 3.125vw;
  }
}

/* -----------------------------------------------------
	btn_area
----------------------------------------------------- */
.btn_area {
  margin: 80px auto 120px;
}

@media screen and (max-width: 768px) {
  .btn_area {
    margin: 7.29167vw auto 20.83333vw;
  }
}

.btn_area ul {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
}

@media screen and (max-width: 768px) {
  .btn_area ul {
    display: block;
  }
}

.btn_area ul li {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .btn_area ul li {
    max-width: 67.70833vw;
  }
}

.btn_area ul li a, .btn_area ul li input[type="button"] {
  display: block;
  width: 100%;
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  line-height: 80px;
  border-radius: 50vh;
  background: #FF7700;
  background: -webkit-gradient(linear, left bottom, left top, from(#ff7700), to(#eb2c00));
  background: -webkit-linear-gradient(bottom, #ff7700 0%, #eb2c00 100%);
  background: -o-linear-gradient(bottom, #ff7700 0%, #eb2c00 100%);
  background: linear-gradient(0deg, #ff7700 0%, #eb2c00 100%);
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  position: relative;
}

@media screen and (max-width: 768px) {
  .btn_area ul li a, .btn_area ul li input[type="button"] {
    font-size: 4.16667vw;
    line-height: 15.625vw;
  }
}

.btn_area ul li a::after, .btn_area ul li input[type="button"]::after {
  content: '';
  position: absolute;
  right: 40px;
  top: 50%;
  display: block;
  width: 16px;
  height: 16px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media screen and (max-width: 768px) {
  .btn_area ul li a::after, .btn_area ul li input[type="button"]::after {
    width: 3.125vw;
    height: 3.125vw;
    border-top: 0.52083vw solid #fff;
    border-right: 0.52083vw solid #fff;
    right: 7.29167vw;
  }
}

.btn_area ul li a.back, .btn_area ul li input[type="button"].back {
  background: #fff;
  border: 2px solid #fb6c01;
  color: #fb6c01;
}

.btn_area ul li a.back::after, .btn_area ul li input[type="button"].back::after {
  left: 40px;
  border-color: #fb6c01;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  -ms-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}

@media screen and (max-width: 768px) {
  .btn_area ul li a.back::after, .btn_area ul li input[type="button"].back::after {
    left: 7.29167vw;
  }
}

.btn_area ul li a:hover, .btn_area ul li input[type="button"]:hover {
  opacity: .7;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .btn_area ul li a:hover, .btn_area ul li input[type="button"]:hover {
    opacity: 1;
  }
}

.btn_area ul li + li {
  margin-left: 40px;
}

@media screen and (max-width: 768px) {
  .btn_area ul li + li {
    margin: 5.20833vw auto;
  }
}
