/* ----------------------------------------
Functions CSS
---------------------------------------- */
.d-pc {
  display: inline-block;
}

@media (max-width: 767px) {
  .d-pc {
    display: none;
  }
}

.d-sp {
  display: none;
}

@media (max-width: 767px) {
  .d-sp {
    display: inline-block;
  }
}

/* ----------------------------------------
Base CSS
---------------------------------------- */
html {
  scroll-behavior: smooth;
  font-size: calc(100vw / 136.6);
}

@media (min-width: 1366px) {
  html {
    font-size: 62.5%;
  }
}

@media (max-width: 767px) {
  html {
    font-size: calc(100vw / 75);
  }
}

body {
  font-family: sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.75;
  color: #000;
  background-color: #fff;
}

@media (max-width: 767px) {
  body {
    font-size: 2.4rem;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

a:hover {
  opacity: .7;
}

/* ----------------------------------------
Component CSS
---------------------------------------- */
.wrapper {
  position: relative;
  overflow-x: hidden;
}

.container {
  max-width: 100rem;
  padding: 0 3rem;
  margin: 0 auto;
}

.cta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 92.5rem;
  height: 47rem;
  background: url("../images/cta-bg.png") center/cover;
  margin-left: auto;
}

@media (max-width: 767px) {
  .cta {
    width: 76.8rem;
    height: 61.8rem;
    background: url("../images/cta-bg_sp.png") center/cover;
    padding-top: 7rem;
    margin: 0 -3rem;
  }
}

.cta__copy {
  position: absolute;
  top: -3rem;
  left: -4rem;
  width: 17.9rem;
}

@media (max-width: 767px) {
  .cta__copy {
    left: 0rem;
    width: 20rem;
    height: 20rem;
  }
}

.cta .entry,
.cta .demand,
.cta .contact {
  display: block;
  width: 71rem;
  border-radius: 3.4rem;
  -webkit-box-shadow: 0.5rem 0.5rem 0.5rem rgba(3, 13, 40, 0.25);
          box-shadow: 0.5rem 0.5rem 0.5rem rgba(3, 13, 40, 0.25);
  margin: 0 auto;
}

@media (max-width: 767px) {
  .cta .entry,
  .cta .demand,
  .cta .contact {
    width: 61rem;
    border-radius: 4.4rem;
    -webkit-box-shadow: 0.5rem 0.5rem 0.5rem rgba(3, 13, 40, 0.5);
            box-shadow: 0.5rem 0.5rem 0.5rem rgba(3, 13, 40, 0.5);
  }
}

.cta .entry:not(:last-child),
.cta .demand:not(:last-child),
.cta .contact:not(:last-child) {
  margin-bottom: 1.7rem;
}

.page-top {
  display: none;
  position: fixed;
  z-index: 10;
  bottom: 19.7rem;
  right: 0;
  width: 8rem;
  -webkit-box-shadow: 0.6rem 0.6rem 0.6rem rgba(3, 13, 40, 0.5);
          box-shadow: 0.6rem 0.6rem 0.6rem rgba(3, 13, 40, 0.5);
}

@media (max-width: 767px) {
  .page-top {
    display: block;
  }
}

.page-top a {
  display: block;
}

.animate__animated {
  visibility: hidden;
}

.animate__animated.animate__fadeInLeft, .animate__animated.animate__fadeInRight {
  visibility: visible;
}

/* ----------------------------------------
Header CSS
---------------------------------------- */
.header {
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
  height: 6.6rem;
  background-color: rgba(36, 125, 255, 0.2);
}

@media (max-width: 767px) {
  .header {
    top: initial;
    bottom: 0;
    height: 15rem;
    background-color: rgba(255, 255, 255, 0.65);
  }
}

.header .container {
  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;
  height: 100%;
}

.header__logo {
  width: 8.3rem;
  margin-left: -3.3rem;
}

@media (max-width: 767px) {
  .header__logo {
    display: none;
  }
}

.header__logo a {
  display: block;
}

.header__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__btn-wrap .contact,
.header__btn-wrap .entry {
  display: block;
  border-radius: 1.6rem;
  -webkit-box-shadow: 0.6rem 0.6rem 0.3rem rgba(3, 13, 40, 0.5);
          box-shadow: 0.6rem 0.6rem 0.3rem rgba(3, 13, 40, 0.5);
}

@media (max-width: 767px) {
  .header__btn-wrap .contact,
  .header__btn-wrap .entry {
    border-radius: 5rem;
    -webkit-box-shadow: 0.7rem 0.7rem 0.7rem rgba(3, 13, 40, 0.5);
            box-shadow: 0.7rem 0.7rem 0.7rem rgba(3, 13, 40, 0.5);
  }
}

.header__btn-wrap .contact {
  width: 21rem;
  margin-right: 1.4rem;
}

@media (max-width: 767px) {
  .header__btn-wrap .contact {
    width: 33.9rem;
  }
}

.header__btn-wrap .entry {
  width: 23rem;
}

@media (max-width: 767px) {
  .header__btn-wrap .entry {
    width: 33.9rem;
  }
}

/* ----------------------------------------
First View CSS
---------------------------------------- */
.fv {
  background: url("../images/fv-bg.jpg") center/cover;
  padding: 12.4rem 0 4rem;
}

@media (max-width: 767px) {
  .fv {
    background: url("../images/fv-bg_sp.jpg") center/cover;
    padding: 8.1rem 0 4.6rem;
  }
}

.fv .container {
  position: relative;
}

.fv__copy {
  width: 61.8rem;
  margin-top: -1.5rem;
  margin-left: -3rem;
  margin-bottom: -3rem;
}

@media (max-width: 767px) {
  .fv__copy {
    width: 43.8rem;
    margin-left: -2rem;
  }
}

.fv__text {
  width: 59rem;
  margin-left: 3rem;
}

@media (max-width: 767px) {
  .fv__text {
    width: 39.7rem;
    margin-left: -1rem;
  }
}

.fv__img {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 51.4rem;
  margin-top: -5rem;
  margin-right: -10rem;
}

@media (max-width: 767px) {
  .fv__img {
    top: 0;
    width: 49.5rem;
    margin-right: -7rem;
  }
}

.fv__btn-wrap {
  position: relative;
  z-index: 2;
  padding-left: 7.1rem;
}

@media (max-width: 767px) {
  .fv__btn-wrap {
    padding-left: 0;
    margin-bottom: 2rem;
  }
}

.fv__btn-wrap .contact,
.fv__btn-wrap .entry {
  display: block;
  width: 36rem;
  border-radius: 2.4rem;
  -webkit-box-shadow: 1rem 1rem 0.4rem rgba(3, 13, 40, 0.5);
          box-shadow: 1rem 1rem 0.4rem rgba(3, 13, 40, 0.5);
}

@media (max-width: 767px) {
  .fv__btn-wrap .contact,
  .fv__btn-wrap .entry {
    width: 65rem;
    border-radius: 4.4rem;
    -webkit-box-shadow: 1.8rem 1.8rem 0.9rem rgba(3, 13, 40, 0.5);
            box-shadow: 1.8rem 1.8rem 0.9rem rgba(3, 13, 40, 0.5);
    margin: 0 auto;
  }
}

.fv__btn-wrap .contact {
  margin-bottom: 1.1rem;
}

@media (max-width: 767px) {
  .fv__btn-wrap .contact {
    margin-bottom: 1.8rem;
  }
}

.fv__bottom {
  position: relative;
  z-index: 1;
  margin-left: -3rem;
  margin-right: -5rem;
  margin-top: -11rem;
  margin-bottom: -3rem;
}

@media (max-width: 767px) {
  .fv__bottom {
    margin: 0 -6rem;
  }
}

/* ----------------------------------------
Campaign CSS
---------------------------------------- */
.campaign {
  background: url("../images/campaign-bg.jpg") center/cover;
  padding: 6.1rem 0 7rem;
}

@media (max-width: 767px) {
  .campaign {
    background: url("../images/campaign-bg_sp.jpg") center/cover;
    padding: 5.8rem 0 6.8rem;
  }
}

.campaign__lead {
  width: 51.6rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .campaign__lead {
    width: 100%;
  }
}

.campaign__heading {
  margin: 0 -2.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 767px) {
  .campaign__heading {
    margin: 0;
    margin-bottom: 10rem;
  }
}

.campaign .cta {
  margin-bottom: -7rem;
}

/* ----------------------------------------
About CSS
---------------------------------------- */
.about {
  background: url("../images/about-bg.png") repeat-x center 5rem/contain;
  padding: 8.5rem 0 6.3rem;
}

@media (max-width: 767px) {
  .about {
    background: none;
    padding: 3rem 0 3.4rem;
  }
}

.about__lead {
  width: 89.2rem;
  margin: 0 auto;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .about__lead {
    width: calc(100% + 6rem);
    margin: 0 -3rem;
    margin-bottom: 1.8rem;
  }
}

.about__heading {
  margin: 0 -14rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .about__heading {
    margin: 0 -3rem;
    margin-bottom: 3rem;
  }
}

.about__head-bottom {
  margin-bottom: 8.5rem;
}

.about__title-01, .about__title-02 {
  position: relative;
  z-index: 1;
}

.about__title-01 {
  width: 51.3rem;
  margin-left: -9.5rem;
  margin-bottom: -13rem;
}

@media (max-width: 767px) {
  .about__title-01 {
    margin-left: -1rem;
    margin-bottom: -15rem;
  }
}

.about__title-02 {
  width: 78.3rem;
  margin-left: auto;
  margin-right: -17rem;
  margin-bottom: -12rem;
}

@media (max-width: 767px) {
  .about__title-02 {
    width: 47rem;
    margin-right: 0;
    margin-bottom: -22rem;
  }
}

.about__text-01 {
  width: 145.7rem;
  margin-left: -53rem;
}

@media (max-width: 767px) {
  .about__text-01 {
    width: 62.7rem;
    margin-left: -3rem;
    margin-bottom: 3rem;
  }
}

.about__text-02 {
  width: 119rem;
  margin-left: 28rem;
  margin-right: -53rem;
}

@media (max-width: 767px) {
  .about__text-02 {
    width: 62.7rem;
    margin-left: auto;
    margin-right: -3rem;
  }
}

.about__img {
  margin-left: -27rem;
  margin-right: -10rem;
  margin-bottom: -12rem;
}

@media (max-width: 767px) {
  .about__img {
    width: 95.8rem;
    margin: 0;
    margin-left: -24.5rem;
    margin-bottom: 3rem;
  }
}

.about__bottom {
  width: 125.7rem;
  height: 87.8rem;
  text-align: center;
  background: url("../images/about-bottom-bg.png") center/cover;
  margin: 0 -16rem;
  margin-top: 1rem;
  margin-bottom: -3rem;
}

@media (max-width: 767px) {
  .about__bottom {
    width: 74.4rem;
    height: 98.5rem;
    background: url("../images/about-bottom-bg_sp.png") center/cover;
    margin: 0;
    margin-left: -2rem;
    margin-bottom: -3rem;
  }
}

.about__bottom img {
  width: 89.8rem;
  margin-top: 38rem;
}

@media (max-width: 767px) {
  .about__bottom img {
    width: 61.9rem;
    margin-top: 57.9rem;
  }
}

/* ----------------------------------------
Offer CSS
---------------------------------------- */
.offer {
  background: url("../images/offer-bg.jpg") center/cover;
  padding: 6.2rem 0 8.3rem;
}

@media (max-width: 767px) {
  .offer {
    background: url("../images/offer-bg_sp.jpg") center/cover;
    padding: 4.6rem 0 8.4rem;
  }
}

.offer__lead {
  width: 62.7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .offer__lead {
    width: 100%;
  }
}

.offer__heading {
  width: 61.6rem;
  margin: 0 auto;
  margin-bottom: 8rem;
}

@media (max-width: 767px) {
  .offer__heading {
    width: 100%;
    margin-bottom: 10rem;
  }
}

.offer__text {
  width: 46rem;
  margin-left: auto;
  margin-bottom: -11rem;
}

@media (max-width: 767px) {
  .offer__text {
    width: 26.6rem;
    margin-bottom: -20rem;
  }
}

.offer__img {
  margin-left: -2.5rem;
  margin-right: -18.5rem;
  margin-bottom: -10rem;
}

@media (max-width: 767px) {
  .offer__img {
    margin: 0 -3rem;
  }
}

/* ----------------------------------------
Banner CSS
---------------------------------------- */
.banner {
  position: relative;
  z-index: 1;
  background: url("../images/banner-bg.jpg") center/cover;
  padding: 1.8rem 0 4.8rem;
  -webkit-box-shadow: 1.2rem 1.2rem 0.6rem rgba(3, 13, 40, 0.5);
          box-shadow: 1.2rem 1.2rem 0.6rem rgba(3, 13, 40, 0.5);
}

@media (max-width: 767px) {
  .banner {
    background: url("../images/banner-bg.jpg") center/cover;
    padding: 2.4rem 0;
    -webkit-box-shadow: 0 0.5rem 0.5rem rgba(3, 13, 40, 0.5);
            box-shadow: 0 0.5rem 0.5rem rgba(3, 13, 40, 0.5);
  }
}

.banner .container {
  position: relative;
}

.banner .float-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .banner .float-block {
    display: block;
  }
}

.banner .float-block .text-wrap {
  padding-left: 2.4rem;
}

@media (max-width: 767px) {
  .banner .float-block .text-wrap {
    padding-left: 0;
  }
}

.banner__img {
  width: 59.9rem;
  margin-left: -23.5rem;
}

@media (max-width: 767px) {
  .banner__img {
    width: 65.1rem;
    margin: 0 auto;
  }
}

.banner__copy {
  position: absolute;
  bottom: -1.5rem;
  right: -4rem;
  width: 20rem;
}

@media (max-width: 767px) {
  .banner__copy {
    bottom: 0;
    right: 1.5rem;
    width: 23rem;
  }
}

.banner__heading {
  width: 52.2rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .banner__heading {
    width: 57.1rem;
    margin-left: -1rem;
    margin-bottom: 1.5rem;
  }
}

.banner__text {
  width: 43.1rem;
}

@media (max-width: 767px) {
  .banner__text {
    width: 48.4rem;
  }
}

/* ----------------------------------------
Point CSS
---------------------------------------- */
.point {
  background-color: #eef2f7;
  padding-bottom: 2rem;
}

.point__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 12.8rem;
  background: url("../images/point-head-bg.png") center/cover;
  margin: 0 calc(50% - 50vw);
}

@media (max-width: 767px) {
  .point__heading {
    height: 15rem;
    background: url("../images/point-head-bg_sp.png") center/cover;
  }
}

.point__heading img {
  width: 62.2rem;
}

@media (max-width: 767px) {
  .point__heading img {
    width: 50rem;
  }
}

.point__list li {
  height: 48rem;
  margin: 0 calc(50% - 50vw);
}

@media (max-width: 767px) {
  .point__list li {
    height: 105.8rem;
  }
}

.point__list li .container {
  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;
  height: 100%;
}

@media (max-width: 767px) {
  .point__list li .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.point__list li:nth-of-type(even) .container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .point__list li:nth-of-type(even) .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.point__list li:first-child, .point__list li:nth-of-type(4) {
  background-color: #247dff;
}

.point__list li:nth-of-type(2), .point__list li:nth-of-type(5) {
  background-color: #1055b4;
}

.point__list li:nth-of-type(3), .point__list li:last-child {
  background-color: #eef2f7;
}

@media (max-width: 767px) {
  .point__list li:last-child {
    height: 84rem;
  }
}

.point__title {
  margin-left: -1rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .point__title {
    margin-left: 0;
    width: 100% !important;
    margin-bottom: 3rem;
  }
}

.point__title--01 {
  width: 34.1rem;
}

.point__title--02 {
  width: 50.9rem;
}

.point__title--03 {
  width: 47.2rem;
}

.point__title--04 {
  width: 39.8rem;
}

.point__title--05 {
  width: 39.7rem;
}

.point__title--06 {
  width: 49.3rem;
}

@media (max-width: 767px) {
  .point__text {
    width: 100% !important;
  }
}

.point__text--01 {
  width: 46.7rem;
}

.point__text--02 {
  width: 46.7rem;
}

.point__text--03 {
  width: 44.8rem;
}

.point__text--04 {
  width: 44.4rem;
}

.point__text--05 {
  width: 45.2rem;
}

.point__text--06 {
  width: 43.8rem;
}

.point__img {
  margin-bottom: -7rem;
}

@media (max-width: 767px) {
  .point__img {
    width: 100% !important;
    margin: 0 !important;
    margin-bottom: 3rem !important;
  }
}

.point__img--01 {
  width: 45.9rem;
  margin-left: -3rem;
}

.point__img--02 {
  width: 42.5rem;
  margin-right: -3rem;
}

.point__img--03 {
  width: 49.8rem;
  margin-left: -8rem;
}

.point__img--04 {
  width: 45rem;
  margin-right: -3rem;
}

.point__img--05 {
  width: 50.3rem;
  margin-left: -8rem;
}

.point__img--06 {
  width: 49.4rem;
  margin-right: -6rem;
}

/* ----------------------------------------
Case CSS
---------------------------------------- */
.case {
  background: #eef2f7 url("../images/case-bg.png") center/cover;
  padding: 2rem 0 10rem;
}

@media (max-width: 767px) {
  .case {
    background: #eef2f7 url("../images/case-bg_sp.png") center/cover;
    padding: 0 0 35rem;
  }
}

.case__heading {
  margin: 0 -1rem;
}

@media (max-width: 767px) {
  .case__heading {
    margin: 0;
    -webkit-transform: translateY(-5rem);
            transform: translateY(-5rem);
    margin-bottom: -5rem;
  }
}

@media (max-width: 767px) {
  .case__img {
    margin-left: -1rem;
    margin-right: -4rem;
  }
}

/* ----------------------------------------
Difference CSS
---------------------------------------- */
.diff {
  background: url("../images/diff-bg.jpg") center/cover;
  padding: 6.4rem 0 9.5rem;
}

@media (max-width: 767px) {
  .diff {
    padding: 5.9rem 0 8.3rem;
  }
}

.diff__img {
  margin-left: -4.5rem;
  margin-right: -7.5rem;
  margin-top: -1.5rem;
}

@media (max-width: 767px) {
  .diff__img {
    margin-left: -1rem;
    margin-right: -3rem;
  }
}

.diff__heading {
  width: 54.3rem;
  margin: 0 auto;
  margin-bottom: 7rem;
}

@media (max-width: 767px) {
  .diff__heading {
    width: 60rem;
    margin-right: 0;
    margin-bottom: 10rem;
  }
}

.diff .cta {
  margin-bottom: -7rem;
}

/* ----------------------------------------
Flow CSS
---------------------------------------- */
.flow {
  background: url("../images/flow-bg.jpg") center/cover;
  padding: 5.4rem 0 6.5rem;
}

@media (max-width: 767px) {
  .flow {
    background: url("../images/flow-bg_sp.jpg") center/cover;
    padding: 7.4rem 0 8.2rem;
  }
}

.flow__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48.3rem;
  height: 15.2rem;
  background: url("../images/flow-head-bg.png") center/cover;
  margin: 0 auto;
  margin-top: -5rem;
}

@media (max-width: 767px) {
  .flow__heading {
    width: 100%;
    height: 26.2rem;
    background: url("../images/flow-head-bg_sp.png") center/cover;
    margin-top: -7rem;
  }
}

.flow__heading img {
  width: 40.8rem;
}

@media (max-width: 767px) {
  .flow__heading img {
    width: 56rem;
  }
}

.flow__list {
  margin-top: -2rem;
  margin-bottom: -4rem;
}

@media (max-width: 767px) {
  .flow__list {
    margin-bottom: -6rem;
  }
}

.flow__list li {
  width: 80rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .flow__list li {
    width: calc(100% + 8rem);
    margin-left: -2rem;
    margin-right: -6rem;
  }
}

.flow__list li:not(:first-child) {
  margin-top: -3rem;
}

/* ----------------------------------------
Seminar CSS
---------------------------------------- */
.seminar {
  background: url("../images/seminar-bg.png") no-repeat center top/contain;
  padding: 5.4rem 0 10.4rem;
}

@media (max-width: 767px) {
  .seminar {
    padding: 10rem 0 6.4rem;
    background: url("../images/seminar-bg.png") no-repeat center top/cover;
  }
}

.seminar .container {
  position: relative;
}

.seminar__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48.3rem;
  height: 15.2rem;
  background: url("../images/seminar-head-bg.png") center/cover;
  margin: 0 auto;
  margin-top: -5rem;
}

@media (max-width: 767px) {
  .seminar__heading {
    width: 57.1rem;
    height: 22.1rem;
    background: url("../images/seminar-head-bg_sp.png") center/cover;
    margin-top: -6rem;
  }
}

.seminar__heading img {
  width: 24.4rem;
}

@media (max-width: 767px) {
  .seminar__heading img {
    width: 35.2rem;
  }
}

.seminar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1rem;
  margin-bottom: 10rem;
}

.seminar__list li {
  width: calc((100% / 3) + 3.9rem);
  padding: 0 1rem;
  margin-left: -1rem;
  margin-right: -3rem;
}

@media (max-width: 767px) {
  .seminar__list li {
    width: calc(50% + 3.9rem);
    margin-left: -1rem;
    margin-right: -3rem;
  }
}

.seminar__list li:nth-child(-n + 3) {
  margin-bottom: -1rem;
}

.seminar__img {
  position: absolute;
  bottom: 7.2rem;
  left: -53rem;
  width: 105rem;
}

@media (max-width: 767px) {
  .seminar__img {
    position: static;
    width: calc(100% + 6rem);
    margin: 0 -3rem;
  }
}

.seminar__bottom {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 64.5rem;
  height: 41rem;
  background: url("../images/seminar-bottom.png?ver=1.1") center/cover;
  padding: 9.4rem 0 4.5rem;
  margin-left: auto;
  margin-right: -3rem;
}

@media (max-width: 767px) {
  .seminar__bottom {
    width: 100%;
    height: 91.6rem;
    background: url("../images/seminar-bottom_sp.png") center/cover;
    padding: 33rem 0 5.7rem;
    margin: 0;
    margin-top: -9.2rem;
  }
}

.seminar__title {
  width: 59.9rem;
  margin-top: -1rem;
}

@media (max-width: 767px) {
  .seminar__title {
    width: 55.3rem;
    padding-left: 2rem;
    margin-right: auto;
  }
}

.seminar__btn {
  display: block;
  width: 40.4rem;
  border-radius: 2.75rem;
  -webkit-box-shadow: 1.1rem 1.1rem 0.6rem rgba(3, 13, 40, 0.5);
          box-shadow: 1.1rem 1.1rem 0.6rem rgba(3, 13, 40, 0.5);
}

@media (max-width: 767px) {
  .seminar__btn {
    width: 61rem;
    border-radius: 4.4rem;
    -webkit-box-shadow: 1.7rem 1.7rem 0.9rem rgba(3, 13, 40, 0.5);
            box-shadow: 1.7rem 1.7rem 0.9rem rgba(3, 13, 40, 0.5);
  }
}

/* ----------------------------------------
FAQ CSS
---------------------------------------- */
.faq {
  background: url("../images/faq-bg.jpg") center/cover;
  padding: 8rem 0 7.4rem;
}

@media (max-width: 767px) {
  .faq {
    background: url("../images/faq-bg_sp.jpg") center/cover;
    padding: 7rem 0 3rem;
  }
}

.faq__heading {
  width: 27.4rem;
  margin: 0 auto;
  margin-top: -1rem;
  margin-bottom: 3.4rem;
}

@media (max-width: 767px) {
  .faq__heading {
    width: 34.7rem;
    margin-bottom: 10rem;
  }
}

.faq__list {
  width: 82.8rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .faq__list {
    width: 100%;
  }
}

.faq__list li:not(:last-child) {
  margin-bottom: 5rem;
}

/* ----------------------------------------
Footer CSS
---------------------------------------- */
.footer {
  height: 5.2rem;
}

@media (max-width: 767px) {
  .footer {
    height: auto;
    padding-bottom: 15rem;
  }
}

.footer .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .footer .container {
    display: block;
  }
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .footer__list {
    display: block;
    margin: 0 -3rem;
  }
}

.footer__list li {
  padding: 0 2.5rem;
}

@media (max-width: 767px) {
  .footer__list li {
    padding: 0;
  }
}

.footer__list li .contact,
.footer__list li .info,
.footer__list li .privacy-policy {
  display: block;
  font-size: 0;
}

@media (max-width: 767px) {
  .footer__list li .contact,
  .footer__list li .info,
  .footer__list li .privacy-policy {
    position: relative;
    width: 100% !important;
    text-align: center;
    padding: 2.5rem 0;
  }
  .footer__list li .contact::after,
  .footer__list li .info::after,
  .footer__list li .privacy-policy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #0a386b;
  }
}

.footer__list li .contact {
  width: 8.2rem;
}

@media (max-width: 767px) {
  .footer__list li .contact img {
    width: 19.3rem;
  }
}

.footer__list li .info {
  width: 7rem;
}

@media (max-width: 767px) {
  .footer__list li .info img {
    width: 16.3rem;
  }
}

.footer__list li .privacy-policy {
  width: 13.7rem;
}

@media (max-width: 767px) {
  .footer__list li .privacy-policy img {
    width: 32.3rem;
  }
}

.footer__list li:not(:last-child) {
  position: relative;
}

.footer__list li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 1.3rem;
  background-color: #0a386b;
}

@media (max-width: 767px) {
  .footer__list li:not(:last-child)::after {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */