@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
================================= */
body {
  background-color: #f0f2f5;
}

.matching-mv {
  background: #fff;
  height: 600px;
  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;
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .matching-mv {
    height: auto;
    padding: 120px 0 90px;
  }
}
.matching-mv figure {
  max-width: 740px;
  width: calc(100% - 20px);
}

.matching-about {
  padding: 42px 0 76px;
}
.matching-about .matching-about__inner {
  margin: 0 auto;
  max-width: 932px;
  padding: 0 16px;
}

.matching-info {
  background: #0439bf;
  color: #fff;
  padding: 42px 0 64px;
  position: relative;
}
.matching-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/home/mv.svg);
  background-size: cover;
  opacity: 0.35;
  background-repeat: no-repeat;
}
.matching-info .matching-info__inner {
  margin: 0 auto;
  max-width: 932px;
  padding: 0 16px;
  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-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.matching-info .matching-info__headline {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  position: relative;
  margin-bottom: 28px;
}
.matching-info .matching-info__headline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
}
.matching-info .c-btn span {
  padding: 30px 120px 30px 106px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.556;
  border-radius: 80px;
}
@media screen and (max-width: 768px) {
  .matching-info .c-btn span {
    font-size: 13px;
    padding: 22px 47px 22px 24px;
  }
}

.matching-archive {
  padding: 80px 0 10px;
}
.matching-archive .matching-archive__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 1310px;
  padding: 0 20px;
}
@media screen and (max-width: 992px) {
  .matching-archive .matching-archive__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.matching-archive .matching-archive__headline {
  width: 210px;
  border-right: 1px solid #dcdee6;
}
@media screen and (max-width: 992px) {
  .matching-archive .matching-archive__headline {
    width: 100%;
    border-right: none;
  }
}
.matching-archive .matching-archive__headline span {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #dcdee6;
  padding: 10px 14px 14px 0;
  position: relative;
}
.matching-archive .matching-archive__headline span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 30px;
  background-color: #0439bf;
}
.matching-archive .matching-archive__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 18px 0 10px 80px;
  width: calc( 100% - 210px );
}
@media screen and (max-width: 992px) {
  .matching-archive .matching-archive__list {
    width: 100%;
    padding: 18px 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .matching-archive .matching-archive__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.matching-archive li {
  max-width: calc(100% / 3 - 14px);
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .matching-archive li {
    max-width: 100%;
  }
}
.matching-archive li .c-btn span {
  padding: 19px 60Px 22px 24px;
  letter-spacing: 0;
  line-height: 1.3;
  display: inline-block;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.matching-archive li .c-btn span::before {
  left: 28px;
  width: calc(100% - 64px - 28px);
}
.matching-archive li:not(:nth-child(3n)) {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .matching-archive li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}

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

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

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