@charset "UTF-8";
/* Scss Document */
/* CSS Document */
/*------------------------------mixin font------------------------------*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2"), url("../font/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2"), url("../font/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../font/NotoSansJP-Black.woff2") format("woff2"), url("../font/NotoSansJP-Black.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/OpenSans-Bold.woff2") format("woff2"), url("../font/OpenSans-Bold.woff") format("woff");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/BarlowCondensed-Bold.woff2") format("woff2"), url("../font/BarlowCondensed-Bold.woff") format("woff");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/BarlowCondensed-Medium.woff2") format("woff2"), url("../font/BarlowCondensed-Medium.woff") format("woff");
}
/*------------------------------mixin bg------------------------------*/
/*------------------------------mixin flex------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 0.694444444vw;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 2.56vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #222;
  line-height: 1.6;
  counter-reset: benefit_number;
}

picture {
  display: block;
}

img, source {
  width: 100%;
  height: auto;
}

.wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

main {
  flex: 1;
  width: 100%;
  padding: 0 !important;
}

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

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

.bold {
  font-weight: 700;
}

.open-sans {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.cormorant-garamond {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.blue {
  color: #0056CC;
}

.d-blue {
  color: #002F6F;
}

.orange {
  color: #FF9B14;
}

.yellow {
  color: #FFF717;
}

.box {
  display: none;
}

.pc_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .pc_flex {
    flex-direction: column;
  }
}

/* -------------------- ▼ファーストビュー // #fv -------------------- */
#fv {
  margin-top: 0;
}

/* -------------------- ▲ ファーストビュー // #fv -------------------- */
/* -------------------- ▼導線バナー // #bnr_area -------------------- */
#bnr_area {
  padding: 6rem 5rem;
}
#bnr_area .bnr_wrap {
  grid-template-columns: repeat(3, 1fr);
}

/* -------------------- ▲ 導線バナー // #bnr_area -------------------- */
/* ---------------- ▼ 申し込みの流れ ---------------- */
#flow ul li {
  margin-bottom: 1rem;
  height: 30rem;
  border-radius: 1rem;
  border: 2px solid rgb(48, 73, 121);
  background: rgb(235, 243, 255);
}
#flow ul li .top {
  background: rgb(48, 73, 121);
  color: rgb(235, 243, 255);
}
#flow ul li .bottom figure.wide {
  width: 16rem;
}
#flow ul.cp-list li {
  border: 2px solid rgb(255, 136, 0);
  background: rgb(255, 242, 229);
}
#flow ul.cp-list li .top {
  color: rgb(255, 255, 255);
  background: rgb(255, 136, 0);
}
#flow #cp-flow {
  padding: 5rem 0 0;
  scroll-margin-top: 32rem;
}
#flow #cp-flow h3.cp-title {
  position: relative;
  margin: 0;
  font-weight: 700;
  font-size: 3rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: rgb(255, 136, 0);
}
@media only screen and (max-width: 768px) {
  #flow #cp-flow h3.cp-title {
    font-size: 3rem;
  }
}
#flow #cp-flow h3.cp-title::before {
  content: "";
  display: block;
  position: absolute;
  width: calc((100% - 60rem) / 2);
  height: 1px;
  left: 0;
  top: 3rem;
  border: 1px solid rgb(0, 47, 111);
}
@media only screen and (max-width: 768px) {
  #flow #cp-flow h3.cp-title::before {
    display: none;
  }
}
#flow #cp-flow h3.cp-title::after {
  content: "";
  display: block;
  position: absolute;
  width: calc((100% - 60rem) / 2);
  height: 1px;
  right: 0;
  top: 3rem;
  border: 1px solid rgb(0, 47, 111);
}
@media only screen and (max-width: 768px) {
  #flow #cp-flow h3.cp-title::after {
    display: none;
  }
}
#flow #cp-flow span.notion {
  font-size: 1.2rem;
  margin: 1rem 0 0;
}
#flow #cp-flow span.notion a {
  text-decoration: underline;
}

/* ---------------- ▲ 申し込みの流れ ---------------- */
/* ▲ TOPページ end ▲ *//*# sourceMappingURL=gw-cp.css.map */