@charset "UTF-8";
/*$c-main: #213a70;*/
/* CSS Document */
* {
  zoom: 1;
}

.clearfix:after,
.cf:after {
  content: "";
  display: block;
  clear: both;
}

html {
  font-size: 16px;
}

.page-wrap p,
.page-wrap div,
.page-wrap h1,
.page-wrap h2,
.page-wrap h3,
.page-wrap h4,
.page-wrap h5,
.page-wrap h6,
.page-wrap ul,
.page-wrap li,
.page-wrap dl,
.page-wrap dt,
.page-wrap dd,
.page-wrap body {
  font-family: "Helvetica Neue", Arial, YakuHanJPs_Narrow, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

.page-wrap .mincho {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, serif;
}

.page-wrap p {
  line-height: 1.8em;
  letter-spacing: 0.05em;
}

.page-wrap ul {
  list-style: none;
}

.page-wrap {
  z-index: 10;
}

.page-wrap hr {
  border-top: solid 3px #dcdddd;
  margin: 0;
}

/*-------- img hover ---------*/
.page-wrap img {
  border: none;
}

.page-wrap a:hover img {
  opacity: 0.8;
}

/*----------------------------*/
.page-wrap a:link {
  text-decoration: none;
}

.page-wrap a:visited {
  text-decoration: none;
}

.page-wrap a:hover {
  text-decoration: none;
}

.page-wrap a:active {
  text-decoration: none;
}

/*----------------------------*/
/* ▼PC▼ */
#mbs_common_footerwrap,
#mbs_common_headerwrap2014 {
  display: block;
}

#globalsp_navigation,
#globalsp_footer {
  display: none;
}

.sp_only {
  display: none;
}

.xs_only {
  display: none;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ▲PC▲ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ▼Smartphone▼ */
@media screen and (max-width: 812px) {
  #mbs_common_footerwrap,
  #mbs_common_headerwrap2014 {
    display: none;
  }
  #globalsp_navigation,
  #globalsp_footer {
    display: block;
  }
  html {
    min-width: 100%;
    font-size: 14px;
  }
  body {
    min-width: 100% !important;
  }
  .page-wrap {
    position: relative;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  br.sp_only {
    display: inline;
  }
}
/* ▲Smartphone▲ */
@media screen and (max-width: 580px) {
  .xs_only {
    display: block;
  }
  br.xs_only {
    display: inline;
  }
}
.mark-window {
  display: inline-block;
  margin-left: 0.3em;
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 500;
}
.mark-window::after {
  content: "launch";
  vertical-align: -2px;
}

.youtube-movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #ef6800;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
body {
  background: #ef6800; /*遷移アニメーションと同じ色を指定*/
}

body.appear {
  background: #fff; /*画面を開いた後の背景色を指定*/
}

.splashbg {
  z-index: 9999998;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-width: 100vh; /*開始はボーダーの太さは0*/
  border-style: solid;
  border-color: #ef6800; /*拡大する四角の色*/
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes backBoxAnime {
  99.9% {
    /*アニメーション終了ぎりぎりまで*/
    z-index: 9999999;
    border-width: 0px; /*開始はボーダーの太さは0*/
  }
  100% {
    z-index: -1; /*最背面に*/
    border-width: 0px; /*終了はボーダーの太さは0*/
  }
}

@keyframes backBoxAnime {
  99.9% {
    /*アニメーション終了ぎりぎりまで*/
    z-index: 9999999;
    border-width: 0px; /*開始はボーダーの太さは0*/
  }
  100% {
    z-index: -1; /*最背面に*/
    border-width: 0px; /*終了はボーダーの太さは0*/
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#pagewrap {
  position: relative;
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #pagewrap {
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-wrap .p-index-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url(../../images/lp/lp-pc-bg.png);
  background-position: center;
  background-size: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
}
.page-wrap .p-index-pc {
  width: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 600px) {
  .page-wrap .p-index-pc {
    display: none;
  }
}
.page-wrap .p-index-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.page-wrap .p-index-lp {
  max-width: 600px;
  margin: 0 auto;
  overflow-y: scroll;
  max-height: 100vh;
  border-left: 10px solid white;
}
.page-wrap .p-index-lp::-webkit-scrollbar {
  width: 10px !important;
}
.page-wrap .p-index-lp::-webkit-scrollbar-track {
  background-color: white !important;
}
.page-wrap .p-index-lp::-webkit-scrollbar-thumb {
  background-color: #ef6800 !important;
  border-radius: 5px !important;
}
@media (max-width: 600px) {
  .page-wrap .p-index-lp {
    border-left: unset;
    width: 100%;
    overflow-y: auto;
    max-height: unset;
  }
}
.page-wrap .p-index-lp img {
  width: 100%;
}
.page-wrap .p-index-aside {
  position: sticky;
  top: 0;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 700px;
  margin: 0 auto;
  gap: 5px;
}
.page-wrap .p-index-aside__logo {
  width: 70%;
}
.page-wrap .p-index-aside__text {
  width: 80%;
}
.page-wrap .p-index-aside__link {
  margin: 20px auto;
}
.page-wrap .p-index-aside__btn {
  display: block;
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(0.875rem, 0.781rem + 0.25vw, 1rem);
  font-weight: bold;
  padding: 15px 50px 15px 40px;
  color: black;
  background-color: #F5B817;
  border-radius: 30px;
  position: relative;
  -webkit-box-shadow: 7px 10px 3px -5px rgba(0, 0, 0, 0.2784313725);
          box-shadow: 7px 10px 3px -5px rgba(0, 0, 0, 0.2784313725);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.page-wrap .p-index-aside__btn::before {
  content: "chevron_right";
  font-family: "Material Icons";
  display: block;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #222222;
  font-size: 1em;
  line-height: 1.1em;
  height: 1em;
  width: 1em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
.page-wrap .p-index-aside__btn:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
.page-wrap .lp-header {
  background-color: #C71F1F;
  padding: 10px;
  z-index: 5;
  position: sticky;
  top: 0;
}
.page-wrap .lp-header__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-height: 50px;
}
.page-wrap .lp-header__logo--img {
  display: block;
  max-width: 50px;
}
.page-wrap .lp-header__logo--img img {
  width: 100%;
}
.page-wrap .lp-header__btn {
  padding: 5px 25px 5px 20px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  border: 3px solid #F5B817;
  border-radius: 20px;
  position: relative;
  margin: 0 0 0 auto;
  -webkit-box-shadow: 7px 10px 3px -5px rgba(0, 0, 0, 0.2784313725);
          box-shadow: 7px 10px 3px -5px rgba(0, 0, 0, 0.2784313725);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.page-wrap .lp-header__btn::before {
  content: "chevron_right";
  font-family: "Material Icons";
  display: block;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #F5B817;
  font-size: 10px;
  line-height: 1.1em;
  height: 1em;
  width: 1em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.page-wrap .lp-header__btn:hover {
  color: white;
  background-color: #F5B817;
  -webkit-box-shadow: 7px 10px 3px -5px rgba(0, 0, 0, 0.6588235294);
          box-shadow: 7px 10px 3px -5px rgba(0, 0, 0, 0.6588235294);
}
.page-wrap .lp-header__btn:hover::before {
  color: #c71f1f;
}
.page-wrap .lp-header__text {
  max-width: 90%;
  margin: 0 auto;
}
.page-wrap .lp-wrap {
  background-color: black;
}
.page-wrap .lp-wrap img {
  width: 100%;
  max-width: 600px;
}
.page-wrap .lp-wrap__contents {
  position: relative;
}
.page-wrap .lp-wrap__contents--image {
  margin-top: -30px;
}
.page-wrap .lp-wrap__contents--z-index {
  position: relative;
  z-index: 3;
}
.page-wrap .lp-wrap__intro {
  padding: 70px 0 0;
  margin: -40px auto;
  z-index: 3;
  position: relative;
  background-image: url(../../images/lp/lp-intro-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 600px) {
  .page-wrap .lp-wrap__intro {
    padding: 40px 0 0;
    margin: -30px auto;
    background-size: cover;
  }
}
.page-wrap .lp-wrap__intro .lp-link {
  padding: 0;
  margin: 10px auto;
}
.page-wrap .lp-wrap__conductor {
  padding: 0px 10px 10%;
  position: relative;
  z-index: 3;
  margin-top: -25%;
  overflow: hidden;
}
.page-wrap .lp-wrap__conductor::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #002D78;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  -webkit-clip-path: polygon(0 121px, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 121px, 100% 0%, 100% 100%, 0% 100%);
}
.page-wrap .lp-wrap__conductor::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  border-style: solid;
  border-width: 0 0 125px 600px;
  border-color: transparent transparent black transparent;
}
.page-wrap .lp-wrap__conductor--message {
  padding: 40px 20px 30px;
  max-width: 80%;
  margin: 0 auto;
  background-color: #FFF6E0;
  border: 2px solid #F5B817;
  border-radius: 10px;
  font-weight: bold;
}
.page-wrap .lp-wrap__conductor--message .message-head {
  text-align: center;
  padding-bottom: 20px;
  font-size: 1.2rem;
  line-height: 1.6;
}
.page-wrap .lp-wrap__conductor--message .message-p {
  font-size: clamp(0.875rem, 0.75rem + 0.67vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0px;
}
.page-wrap .lp-wrap__conductor--message .message-last {
  padding-top: 1rem;
  text-align: end;
}
.page-wrap .lp-wrap__conductor--image {
  margin-top: -15%;
}
.page-wrap .lp-wrap__conductor--text {
  margin-top: -18%;
  position: relative;
  z-index: 3;
}
.page-wrap .lp-wrap__info {
  z-index: 2;
  position: relative;
  margin-top: -50px;
}
.page-wrap .lp-wrap__info--text {
  width: 80%;
  margin: 0 auto;
  padding: 10px;
  border: 5px solid #F5B817;
  position: relative;
}
.page-wrap .lp-wrap__info--text p {
  line-height: 1.4;
  font-size: 14px;
  padding: 20px 40px;
  border: 2px solid #F5B817;
  color: #D2A634;
}
.page-wrap .lp-wrap__info--text p span {
  padding-left: 1rem;
  position: relative;
  display: block;
}
.page-wrap .lp-wrap__info--text p span::before {
  position: absolute;
  content: "※";
  left: 0;
}
.page-wrap .lp-wrap__daiku-step {
  margin-top: -30px;
  padding-bottom: 40px;
  z-index: 1;
  position: relative;
  background-image: url(../../images/lp/lp-info-daiku-bg.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}
.page-wrap .lp-wrap__daiku-step--con {
  max-width: 80%;
  margin: 0 auto;
}
.page-wrap .lp-wrap__daiku-step--youtube {
  border: 5px solid #D6C100;
  margin: 10px auto;
}
.page-wrap .lp-wrap__daiku-step--link {
  margin: -20% auto -5%;
}
.page-wrap .lp-wrap__footer {
  max-width: 150px;
  width: 90%;
  margin: 0 auto;
  padding: 40px 20px;
}
.page-wrap .lp-wrap__footer img {
  width: 100%;
}
.page-wrap .lp-link {
  padding: 20px;
  margin: 20px auto;
}
.page-wrap .lp-link__btn {
  display: block;
  width: 70%;
  max-width: 190px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.125rem, 1.031rem + 0.25vw, 1.25rem);
  font-weight: bold;
  padding: 3% 4% 3% 3%;
  color: white;
  border: 3px solid #F5B817;
  background-color: #c71f1f;
  border-radius: 30px;
  position: relative;
  -webkit-box-shadow: 7px 10px 3px -5px rgba(0, 0, 0, 0.2784313725);
          box-shadow: 7px 10px 3px -5px rgba(0, 0, 0, 0.2784313725);
  -webkit-transition: 300ms;
  transition: 300ms;
}
@media (max-width: 600px) {
  .page-wrap .lp-link__btn {
    font-size: clamp(0.875rem, 0.656rem + 1.25vw, 1.125rem);
  }
}
.page-wrap .lp-link__btn::before {
  content: "chevron_right";
  font-family: "Material Icons";
  display: block;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #F5B817;
  font-size: 1em;
  line-height: 1.1em;
  height: 1em;
  width: 1em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.page-wrap .lp-link__btn:hover {
  color: white;
  background-color: #F5B817;
  -webkit-box-shadow: 7px 10px 3px -5px rgba(0, 0, 0, 0.6588235294);
          box-shadow: 7px 10px 3px -5px rgba(0, 0, 0, 0.6588235294);
}
.page-wrap .lp-link__btn:hover::before {
  color: #c71f1f;
}
.page-wrap .lp-link__text {
  min-width: 300px;
  width: 80%;
  max-width: 400px;
  margin: 0 auto -20px;
  padding-top: 60px;
}/*# sourceMappingURL=style.css.map */