@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;
}

input, button, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body {
  min-width: 1024px;
  word-wrap: break-word;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}

a {
  text-decoration: none;
  color: #184976;
}

a:focus {
  outline: none;
}

.logo-area {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 100;
  width: 18%;
}
@media screen and (max-width: 767px) {
  .logo-area {
    top: 20px;
    left: 20px;
  }
}
.logo-area .logo {
  width: 100%;
  height: 100%;
  max-height: 45px;
  fill: #fff;
}
@media screen and (max-width: 767px) {
  .logo-area .logo {
    width: 100px;
    height: auto;
  }
}

#header.scroll {
  position: fixed;
  width: 100%;
  height: 75px;
  background: #1B2E40;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  #header.scroll {
    height: 65px;
  }
}
#header.scroll .logo-area {
  top: 20px;
  width: 15%;
}
@media screen and (max-width: 767px) {
  #header.scroll .logo-area {
    top: 20px;
    left: 20px;
  }
}
#header.scroll .logo-area .logo {
  max-height: 35px;
}
@media screen and (max-width: 767px) {
  #header.scroll .logo-area .logo {
    width: 100px;
  }
}

.btn {
  transition: all 0.5s;
  width: 214px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.2em;
}
.btn:hover {
  letter-spacing: 0.4em;
}
.btn a {
  display: block;
  width: 100%;
  padding: 16px 0px;
  font-size: 24px;
  text-decoration: none;
  color: #FF6D94;
  border-radius: 5px;
  border: solid 2px #FF6D94;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .btn a {
    font-size: 16px;
  }
}

.box {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100vh;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.box__ttl {
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .box__ttl {
    margin-bottom: 20px;
  }
}
.box__ttl .ttl {
  width: 45%;
  fill: #fff;
}
@media screen and (max-width: 767px) {
  .box__ttl .ttl {
    width: 280px;
  }
}
.box__text {
  margin-bottom: 80px;
  color: #fff;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .box__text {
    margin: 0 20px 40px;
    font-size: 12px;
    text-align: left;
  }
}

.slider {
  display: none;
}
.slider.slick-initialized {
  display: block;
}
.slider .kv {
  position: relative;
  width: 100%;
  height: 100vh;
}
.slider .kv .ttl {
  fill: #fff;
}
.slider .kv--1 {
  background: url(../img/kv1.png) no-repeat;
  background-size: cover;
}
.slider .kv--2 {
  background: url(../img/kv2.png) no-repeat;
  background-size: cover;
}
.slider .kv--4 {
  background: url(../img/kv4.png) no-repeat;
  background-size: cover;
}

.wrap {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap {
    width: auto;
    margin: 0 20px;
  }
}

.sec {
  padding: 100px 0 120px;
}
.sec--light {
  background: #FBFBFB;
}
.sec--base {
  background: #1B2E40;
}
@media screen and (max-width: 767px) {
  .sec {
    padding: 50px 0 60px;
  }
}

.sec-ttl {
  margin-bottom: 50px;
  font-size: 50px;
  font-weight: bold;
  color: #1B2E40;
  letter-spacing: 0.2em;
  text-align: center;
}
.sec-ttl--white {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sec-ttl {
    font-size: 30px;
  }
}

.sec-block {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .sec-block {
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .sec-block__img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.sec-block__text {
  margin: 0 0 0 40px;
}
.sec-block__text__ttl {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.sec-block__text__ttl .fs-small {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .sec-block__text__ttl {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .sec-block__text__ttl .fs-small {
    font-size: 12px;
  }
}
.sec-block__text__text {
  margin-bottom: 1em;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec-block__text__text {
    font-size: 14px;
  }
}
.sec-block__text__text--list {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 0;
}
.sec-block__text__text--list dt {
  width: 4em;
}
.sec-block__text__text .fs-small {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .sec-block__text {
    margin: 0px;
  }
}
@media screen and (max-width: 767px) {
  .sec-block:nth-of-type(even) {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.sec-block:nth-of-type(even) .sec-block__text {
  margin: 0 40px 0 0;
}
@media screen and (max-width: 767px) {
  .sec-block:nth-of-type(even) .sec-block__text {
    margin: 0px;
  }
}

.table {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 767px) {
  .table {
    display: block;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.table:last-of-type {
  margin: 0;
  padding: 0;
  border: none;
}
.table__ttl {
  width: 34%;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .table__ttl {
    width: 100%;
    margin-bottom: 20px;
  }
}
.table__text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .table__text {
    font-size: 14px;
  }
}
.table__content {
  margin-bottom: 20px;
}
.table__content__ttl {
  font-weight: bold;
}
.table__content__list {
  position: relative;
  padding-left: 1em;
}
.table__content__list:before {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  margin: auto;
  content: "●";
  font-size: 10px;
  line-height: 25px;
}
.table__content:last-of-type {
  margin-bottom: 0;
}

.form-area .form {
  width: 770px;
  margin: 0 auto;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .form-area .form {
    width: 100%;
  }
}
.form-area .form__ttl {
  padding: 10px 0 20px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  vertical-align: top;
  color: #fff;
}
.form-area .form__ttl .compulsory {
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  font-weight: normal;
  color: #FF6D94;
}
@media screen and (max-width: 767px) {
  .form-area .form__ttl {
    display: block;
    width: 100%;
    padding-bottom: 10px;
    font-size: 16px;
  }
}
.form-area .form__text {
  width: 64%;
  padding-bottom: 20px;
  vertical-align: middle;
}
.form-area .form__text input, .form-area .form__text textarea {
  box-sizing: border-box;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  border: solid 1px #ccc;
  background: #fff;
}
.form-area .form__text textarea {
  line-height: 1.6;
}
.form-area .form__text .size1 {
  width: 100%;
}
.form-area .form__text .size2 {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .form-area .form__text {
    display: block;
    width: 100%;
  }
  .form-area .form__text input, .form-area .form__text textarea {
    padding: 10px;
  }
  .form-area .form__text .size2 {
    width: 100%;
  }
}
.form-area .btn .btn-inner {
  display: block;
  transition: all 0.5s;
  margin-top: 40px;
  width: 100%;
  padding: 10px;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.2em;
  border-radius: 5px;
  text-align: center;
  border: none;
  background: #FF6D94;
  border: solid 2px #FF6D94;
}
.form-area .btn .btn-inner:hover {
  cursor: pointer;
  color: #FF6D94;
  background: #fff;
  border: solid 2px #FF6D94;
}
@media screen and (max-width: 767px) {
  .form-area .btn .btn-inner {
    font-size: 16px;
  }
}

.form-confirm {
  color: #fff;
}

.error_text {
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.5;
}

.complete-text {
  color: #fff;
}

.btntop {
  position: fixed;
  right: 60px;
  width: 60px;
  height: 60px;
  background: #1B2E40;
  border-radius: 50%;
  opacity: 0.7;
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.btntop .top-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  fill: #fff;
}
@media screen and (max-width: 767px) {
  .btntop {
    right: 10px;
    width: 44px;
    height: 44px;
    opacity: 0.4;
  }
  .btntop .top-icon {
    width: 10px;
  }
}
.btntop:hover {
  cursor: pointer;
  opacity: 0.4;
}

.footer {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
