@charset "UTF-8";
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*--------------------------------------
	 common
---------------------------------------*/
html {
  height: 100%;
  font-size: 10px;
  line-height: 1.5;
}

body {
  width: 100%;
  color: #333;
  font-family: "Noto Sans JP", "メイリオ", sans-serif;
  font-weight: 400;
  text-align: justify;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  flex-direction: column;
  background-color: #fff;
  position: relative;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.1em;
}

a {
  color: #2891EC;
  text-decoration: none;
  transition: color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}
a.hover {
  color: #2891EC;
  text-decoration: none;
}

img {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

input, textarea, select, button {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}
@media only screen and (max-width: 768px) {
  input, textarea, select, button {
    font-size: 1.6rem;
  }
}

input[type="text"],
input[type="email"],
textarea {
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-appearance: none;
}

button,
input[type="button"],
input[type="image"],
input[type="submit"],
input[type="reset"] {
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

strong {
  font-weight: bold;
}

/*--------------------------------------
	 general class
---------------------------------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.inline-block {
  display: inline-block;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

article {
  font-size: 1.6rem;
}

.fadein {
  transform: translate(0, 100px);
  transition: transform 500ms cubic-bezier(0.23, 1, 0.32, 1), opacity 500ms cubic-bezier(0.23, 1, 0.32, 1);
}
.fadein.scrollin {
  transform: translate(0, 0);
}

@media only screen and (max-width: 767px) {
  .hidden_sp {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .hidden_pc {
    display: none !important;
  }
}
.mainSection {
  transition: filter 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width: 767px) {
  .mainSection.blur {
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }
}

.form_btnArea {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.form_btnArea .btn {
  color: #fff;
  align-items: center;
  position: relative;
  transition: color 0.5s cubic-bezier(0.23, 1, 0.32, 1), fill 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width: 767px) {
  .form_btnArea .btn {
    min-width: 150px;
    padding: 14px 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .form_btnArea .btn {
    min-width: 200px;
    padding: 16px 10px;
  }
}
.form_btnArea .btn::before {
  content: "";
  width: 0;
  height: 100%;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.form_btnArea .btn.hover::before {
  width: 100%;
}
.form_btnArea .btn.submitBtn, .form_btnArea .btn.closeBtn {
  padding-right: 28px;
  background-color: #2891EC;
  border: 1px solid #2891EC;
}
.form_btnArea .btn.submitBtn.hover, .form_btnArea .btn.closeBtn.hover {
  color: #2891EC;
}
.form_btnArea .btn.backBtn {
  padding-left: 28px;
  background-color: #777;
  border: 1px solid #777;
}
.form_btnArea .btn.backBtn.hover {
  color: #777;
}
.form_btnArea .btn + .btn {
  margin-left: 10px;
}
.form_btnArea .btn .btn_txt {
  font-weight: bold;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .form_btnArea .btn .btn_txt {
    padding: 14px 10px;
    font-size: 1.4rem;
  }
  .form_btnArea .btn .btn_txt .small {
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 768px) {
  .form_btnArea .btn .btn_txt {
    padding: 16px 10px;
    font-size: 1.6rem;
  }
  .form_btnArea .btn .btn_txt .small {
    font-size: 1.2rem;
  }
}
.form_btnArea .btn .icon-button_close,
.form_btnArea .btn .icon-button_arrow_left,
.form_btnArea .btn .icon-button_arrow_right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .form_btnArea .btn .icon-button_close,
  .form_btnArea .btn .icon-button_arrow_left,
  .form_btnArea .btn .icon-button_arrow_right {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .form_btnArea .btn .icon-button_close,
  .form_btnArea .btn .icon-button_arrow_left,
  .form_btnArea .btn .icon-button_arrow_right {
    font-size: 1.6rem;
  }
}
.form_btnArea .btn .icon-button_arrow_left {
  left: 10px;
}
.form_btnArea .btn .icon-button_close,
.form_btnArea .btn .icon-button_arrow_right {
  right: 10px;
}
