@charset "UTF-8";
/* 下線がうにょんってなって、うにょんってなるアニメーション */
@-webkit-keyframes linkborder {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    background-color: #333641;
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    background-color: #333641;
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  50.1% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    background-color: #0439bf;
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    background-color: #0439bf;
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
@keyframes linkborder {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    background-color: #333641;
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    background-color: #333641;
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  50.1% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    background-color: #0439bf;
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    background-color: #0439bf;
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
/* 回転のアニメーション */
@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  99.9%, to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  99.9%, to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* 矢印が行って帰るアニメーション */
@-webkit-keyframes c-link {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  50.1% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@keyframes c-link {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  50.1% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
/* 矢印が行って帰るアニメーション */
@-webkit-keyframes c-link2 {
  0% {
    background-size: 100% 1px;
    background-position: right 0 bottom 0;
  }
  49% {
    background-size: 0% 1px;
    background-position: right 0 bottom 0;
  }
  50% {
    background-size: 0% 1px;
    background-position: left 0 bottom 0;
  }
  100% {
    background-size: 100% 1px;
    background-position: left 0 bottom 0;
  }
}
@keyframes c-link2 {
  0% {
    background-size: 100% 1px;
    background-position: right 0 bottom 0;
  }
  49% {
    background-size: 0% 1px;
    background-position: right 0 bottom 0;
  }
  50% {
    background-size: 0% 1px;
    background-position: left 0 bottom 0;
  }
  100% {
    background-size: 100% 1px;
    background-position: left 0 bottom 0;
  }
}
/* 矢印が行って帰るアニメーション */
@-webkit-keyframes c-arrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    opacity: 0;
  }
  50.1% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes c-arrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    opacity: 0;
  }
  50.1% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
*[data-san=fade] {
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
*[data-san=fade].is-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

*[data-san=ttl] span {
  opacity: 0;
  -webkit-transform: translateY(2em);
          transform: translateY(2em);
  -webkit-transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
*[data-san=ttl].is-active span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

*[data-san=subline] {
  opacity: 0;
  -webkit-transform: translateY(2em);
          transform: translateY(2em);
  -webkit-transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
*[data-san=subline]::before {
  -webkit-transform: translateY(-2em) scaleX(0);
          transform: translateY(-2em) scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
*[data-san=subline].is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
*[data-san=subline].is-active::before {
  -webkit-transform: translateY(0) scaleX(1);
          transform: translateY(0) scaleX(1);
}

/* テキストスライドのアニメーション */
@-webkit-keyframes scrolltext {
  0% {
    background-position: 0;
  }
  100% {
    background-position: -3939px;
  }
}
@keyframes scrolltext {
  0% {
    background-position: 0;
  }
  100% {
    background-position: -3939px;
  }
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.mv__swiper .swiper-slide-active img,
.mv__swiper .swiper-slide-duplicate-active img,
.mv__swiper .swiper-slide-prev img {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
          animation: zoomUp 10s linear 0s 1 normal both;
  display: block;
}
.mv__swiper .slide-img img {
  display: block;
}

/* ==============================
		about.scss
================================= */
.wrapper, .footer {
  background-color: #f0f2f5;
}

.about__content {
  margin: 52px 0 30px;
  position: relative;
  overflow-x: hidden;
}
.about__content::before {
  content: "";
  position: absolute;
  top: 330px;
  left: 0;
  z-index: 0;
  width: 526px;
  height: 353px;
  background-repeat: no-repeat;
  background-image: url("../img/about/bg-r.png");
  background-repeat: no-repeat;
}
@media screen and (max-width: 992px) {
  .about__content::before {
    display: none;
  }
}
.about__content::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 0;
  width: 428px;
  height: 453px;
  background-repeat: no-repeat;
  background-image: url("../img/about/bg-l.png");
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .about__content::after {
    width: 60%;
    background-size: contain;
  }
}
.about__content .about__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .about__content .about__container {
    padding: 0 24px;
  }
}
.about__content .about__headline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.675;
}
@media screen and (max-width: 768px) {
  .about__content .about__headline {
    font-size: 23px;
  }
}
.about__content .about__headline span {
  display: block;
  color: #0439bf;
}
.about__content .about__text {
  margin: 26px 0 122px;
  font-size: 16px;
  line-height: 2.75;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about__content .about__text {
    font-size: 14px;
    line-height: 2;
    text-align: left;
    margin: 26px 0 32px;
  }
}
@media screen and (max-width: 768px) {
  .about__content .about__text br {
    display: none;
  }
}
.about__content .about__network {
  text-align: center;
  padding: 0 0 90px;
}
@media screen and (max-width: 768px) {
  .about__content .about__network {
    padding: 0 0 30px;
  }
}
.about__content .about__service {
  padding: 135px 0 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__content .about__service {
    padding: 30px 0 30px;
  }
}
.about__content .about__service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 255px;
  background-image: url(../img/about/text-bg.svg);
  background-size: 3144px 255px;
  -webkit-animation: bgscroll 80s linear infinite;
          animation: bgscroll 80s linear infinite;
  background-repeat: repeat no-repeat;
}
@-webkit-keyframes bgscroll {
  0% {
    background-position: 3144px 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes bgscroll {
  0% {
    background-position: 3144px 0;
  }
  100% {
    background-position: 0 0;
  }
}
.about__content .about__service .about__service__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  counter-reset: li var(--before-count, 0);
}
.about__content .about__service .about__service__item {
  counter-increment: li;
  width: calc(100% / 4 - 30px);
  border-top: 1px solid #dcdee6;
  border-right: 1px solid #dcdee6;
  position: relative;
  padding: 62px 20px 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .about__content .about__service .about__service__item {
    width: calc(100% / 2 - 10px);
    padding: 32px 10px 24px;
  }
}
.about__content .about__service .about__service__item::before {
  content: "0" counter(li);
  position: absolute;
  left: 0;
  top: 5px;
  color: #0439bf;
  font-family: "Syncopate", sans-serif;
}
.about__content .about__service .about__service__item.top {
  width: calc(100% / 3 - 30px);
  padding: 62px 20px 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .about__content .about__service .about__service__item.top {
    width: 100%;
    padding: 32px 10px 24px;
  }
}
.about__content .about__service .about__service__item .about__service__item__figure {
  text-align: center;
}
.about__content .about__service .about__service__item .about__service__item__figure figcaption {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .about__content .about__service .about__service__item .about__service__item__figure figcaption {
    font-size: 14px;
    line-height: 1.6;
  }
}
.about__content .about__innovation {
  margin-top: 144px;
}
.about__content .about__innovation .about__innovation__headline {
  font-size: 28px;
  font-family: "Syncopate", sans-serif;
  color: #0439bf;
  text-transform: uppercase;
  line-height: 1.1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .about__content .about__innovation .about__innovation__headline {
    font-size: 20px;
  }
}
.about__content .about__innovation .about__innovation__headline span {
  display: inline-block;
  position: relative;
}
.about__content .about__innovation .about__innovation__headline span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #0439bf;
}
.about__content .about__innovation .about__innovation__steps {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 34px;
  width: 100%;
}
@media screen and (max-width: 1120px) {
  .about__content .about__innovation .about__innovation__steps {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.about__content .about__innovation .about__innovation__list {
  counter-reset: li var(--before-count, 0);
  position: relative;
  width: calc(100% - 270px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1120px) {
  .about__content .about__innovation .about__innovation__list {
    width: calc(100%);
  }
}
@media screen and (max-width: 768px) {
  .about__content .about__innovation .about__innovation__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.about__content .about__innovation .about__innovation__list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 0;
  display: block;
  width: calc( 100% - 20px);
  height: 3px;
  background-color: #0439bf;
}
@media screen and (max-width: 768px) {
  .about__content .about__innovation .about__innovation__list::before {
    top: 10px;
    left: 50%;
    width: 3px;
    height: calc(100% - 20px);
  }
}
.about__content .about__innovation .about__innovation__list li {
  padding-left: 0;
  counter-increment: li;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 170px;
  height: 170px;
  background-color: #fff;
  border: 1px solid #0439bf;
  border-radius: 50%;
  color: #0439bf;
  font-weight: 700;
  line-height: 1.375;
  text-align: center;
}
@media screen and (max-width: 1120px) {
  .about__content .about__innovation .about__innovation__list li {
    width: calc(20vw - 30px);
    height: calc(20vw - 30px);
  }
}
@media screen and (max-width: 768px) {
  .about__content .about__innovation .about__innovation__list li {
    width: calc(30vw - 30px);
    height: calc(30vw - 30px);
  }
  .about__content .about__innovation .about__innovation__list li:not(:last-child) {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 549px) {
  .about__content .about__innovation .about__innovation__list li {
    width: calc(60vw - 30px);
    height: calc(60vw - 30px);
  }
}
.about__content .about__innovation .about__innovation__list li::before {
  content: "STEP 0" counter(li);
  position: absolute;
  top: 38px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 11px;
  font-family: "Syncopate", sans-serif;
  color: #0439bf;
  text-transform: uppercase;
  opacity: 0.5;
  line-height: 1;
  letter-spacing: -0.02em;
}
.about__content .about__innovation .about__innovation__list li p {
  margin-top: 10px;
}
.about__content .about__innovation .about__innovation__figure {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 270px;
  padding-left: 45px;
  margin: 0;
}
@media screen and (max-width: 1120px) {
  .about__content .about__innovation .about__innovation__figure {
    padding-left: 0;
    padding-top: 45px;
    margin-top: 32px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.about__content .about__innovation .about__innovation__figure::before {
  content: "";
  position: absolute;
  top: calc(50% - 13px);
  left: 10px;
  z-index: 0;
  display: block;
  width: 30px;
  height: 23px;
  background-image: url("../img/about/about-arrow.svg");
  background-repeat: no-repeat;
}
@media screen and (max-width: 1120px) {
  .about__content .about__innovation .about__innovation__figure::before {
    top: 0;
    left: calc(50% - 13px);
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
}

.c-next-pager {
  margin-top: 120px;
}

.report__content__loop {
  position: absolute;
  top: 490px;
  left: 0;
  z-index: -3;
  width: 100%;
  height: 255px;
  background-image: url(../img/home/bg_text.svg);
  background-size: 5510px 255px;
  -webkit-animation: bgscroll 80s linear infinite;
          animation: bgscroll 80s linear infinite;
  background-repeat: repeat no-repeat;
}

@keyframes bgscroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 5510px 0;
  }
}