@charset "UTF-8";
/*メインビジュアル*/
.heroImageWrapper {
  overflow: hidden;
  width: 100%;
}

.heroImage {
  position: relative;
  padding: 100px 0 100px;
}

.heroImage__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(/img/top/img_main-visual.jpg) 0 0/cover no-repeat;
}

.heroImage__ttl {
  width: 32.5vw;
  margin-bottom: .36vw;
}

.heroImage__ttl > img {
  width: 100%;
}

.heroImage__txt {
  font-size: .94vw;
  line-height: 1.67;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .heroImage__ttl {
    width: 46.5vw;
  }
  .heroImage__txt {
    font-size: 1.88vw;
  }
}

@media screen and (max-width: 640px) {
  .heroImage {
    padding: 128px 0 142px;
  }
  .heroImage__img {
    background: url(/img/top/img_main-visual--sp.jpg) 0 0/cover no-repeat;
  }
  .heroImage__ttl {
    width: calc(100% - 26px);
    margin: 0 0 4px 5px;
  }
  .heroImage__txt {
    font-size: 12px;
    line-height: 1.58;
    margin-left: 5px;
  }
}

/*スクロール*/
.scrollWrapper {
  margin-top: 100px;
  position: relative;
}

.scroll {
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: right top;
  width: 314px;
  line-height: 139px;
  text-align: right;
  padding-right: 100px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
}

.scroll__box {
  line-height: 1em;
  height: 1em;
  overflow: hidden;
  display: inline-block;
  color: #fff;
  letter-spacing: 0em;
}

.scroll__txt {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  transition-property: transform, opacity;
  transition-duration: .2s;
  transition-timing-function: ease;
  transform: translateY(2.5em);
  opacity: 0;
}

.scrollLine {
  display: inline-block;
  vertical-align: middle;
  width: 112px;
  height: 1px;
  margin-top: -.3em;
  background-color: #fff;
  transition-property: transform;
  transition-duration: .4s;
  transition-timing-function: cubic-bezier(1, -0.005, 0, 1.005);
  transform: scaleX(0);
}

.scroll--on .scrollLine {
  transform: scaleX(1);
  transform-origin: left;
}

.scroll--on .scroll__txt {
  transform: translateY(0em);
  opacity: 1;
}

.scroll--off .scrollLine {
  transform: scaleX(0);
  transform-origin: right;
}

.scroll--off .scroll__txt {
  transform: translateY(-2.5em);
  opacity: 0;
}

.scroll--reset .scrollLine,
.scroll--reset .scroll__txt {
  transition-duration: 0s;
  transition-delay: 0s !important;
}

.scrollBg {
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: right top;
  width: 314px;
  height: 139px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  mix-blend-mode: multiply;
}

.scrollBg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #31c2eb;
  background: -moz-linear-gradient(left, #31c2eb 0%, #0065a9 100%);
  background: -webkit-linear-gradient(left, #31c2eb 0%, #0065a9 100%);
  background: linear-gradient(to right, #31c2eb 0%, #0065a9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#31c2eb', endColorstr='#0065a9',GradientType=1 );
}

@media screen and (max-width: 640px) {
  .scrollWrapper {
    margin-top: 50px;
  }
  .scroll {
    width: 188px;
    line-height: 75px;
    padding-right: 50px;
  }
  .scroll__txt {
    font-size: 11px;
  }
  .scrollLine {
    width: 70px;
    margin-top: -.45em;
  }
  .scrollBg {
    width: 188px;
    height: 75px;
  }
}

/*共通段落レイアウト*/
.contantBlock {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  width: calc(100% - 60px);
  margin: 138px 0 0 auto;
}

.contantBlock--people {
  flex-flow: row-reverse;
  margin-left: 0;
  margin-right: auto;
  margin-top: 170px;
}

.contantBlock__box {
  width: calc(100% - 50vw - 94px);
}

.contantBlock__box--people {
  width: calc(100% - 50vw - 10.4%);
}

.contantBlock__img {
  width: 50vw;
  position: relative;
}

.contantBlock__img::after {
  content: "";
  display: inline-block;
  width: 146px;
  height: 300px;
  position: absolute;
  top: -145px;
  right: 0;
  mix-blend-mode: multiply;
  background: #31c2eb;
  background: -moz-linear-gradient(top, #31c2eb 0%, #0065a9 100%);
  background: -webkit-linear-gradient(top, #31c2eb 0%, #0065a9 100%);
  background: linear-gradient(to bottom, #31c2eb 0%, #0065a9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#31c2eb', endColorstr='#0065a9',GradientType=0 );
}

.contantBlock__img--people::after {
  width: 283px;
  height: 273px;
  z-index: -1;
  top: -48px;
  right: -58px;
}

@media screen and (max-width: 1280px) {
  .contantBlock {
    width: 100%;
    display: block;
    margin-top: 22vw;
    padding: 0;
  }
  .contantBlock__box {
    padding: 0 60px;
    box-sizing: border-box;
    width: 100%;
  }
  .contantBlock__img {
    width: 100%;
    margin-top: 100px;
  }
  .contantBlock__img::after {
    width: 146px;
    height: 300px;
    top: -145px;
    right: 0;
  }
  .contantBlock__img--people::after {
    width: 283px;
    height: 273px;
    top: -48px;
    right: -58px;
  }
}

@media screen and (max-width: 640px) {
  .contantBlock {
    margin-top: 20px;
  }
  .contantBlock + .contantBlock {
    margin-top: 108px;
  }
  .contantBlock__box {
    padding: 0 15px;
  }
  .contantBlock__img {
    margin-top: 35px;
  }
  .contantBlock__img::after {
    width: 72px;
    height: 150px;
    top: -72px;
    right: 0;
  }
  .contantBlock__img--people::after {
    width: 141px;
    height: 136px;
    top: -54px;
    right: -29px;
  }
}

/*概要ブロック*/
.outlineHead__txt {
  font-size: 80px;
  color: #0065A9;
  font-weight: bold;
  line-height: .75;
}

.outlineHead__ttl {
  font-size: 16px;
  font-weight: bold;
  color: #81939F;
  line-height: 1.5;
  margin-top: 18px;
}

.outlineBlock__ttl {
  font-size: 32px;
  line-height: 1.68;
  font-weight: bold;
  margin-top: 41px;
}

.outlineBlock__txt {
  font-size: 16px;
  line-height: 2;
  margin: 22px 0 0;
}

.c-transition__btn--outline {
  margin-top: 60px;
  display: inline-block;
}

@media screen and (max-width: 640px) {
  .outlineHead__txt {
    font-size: 60px;
    transition-delay: 0s;
  }
  .outlineHead__ttl {
    font-size: 13px;
    margin-top: 17px;
    transition-delay: 0s;
  }
  .outlineBlock__ttl {
    font-size: 23px;
    line-height: 1.65;
    margin-top: 20px;
    transition-delay: 0s;
  }
  .outlineBlock__txt {
    font-size: 13px;
    margin-top: 13px;
    transition-delay: 0s;
  }
  .c-transition__btn--outline {
    margin-top: 12px;
    transition-delay: 0s;
  }
}

/*アバウト*/
.aboutBlock {
  width: calc(100% - 60px);
  margin-right: auto;
  display: flex;
  flex-flow: row-reverse;
  align-items: center;
  justify-content: space-between;
  margin-top: 130px;
}

.aboutBlock__img {
  width: 50vw;
  position: relative;
}

@keyframes floatMock {
  0% {
    transform: translate(0px, 0px);
  }
  45% {
    transform: translate(-6px, -40px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

.aboutMock {
  width: 39.9vw;
  position: absolute;
  top: -6vw;
  right: 10px;
}

.aboutMock > img {
  display: inline-block;
}

.aboutBlock__box {
  width: calc(50vw - 60px);
  padding-left: 60px;
  box-sizing: border-box;
}

@media screen and (max-width: 1440px) {
  .aboutBlock__box {
    padding: 0 0 0 5vw;
    width: 50vw;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 1280px) {
  .aboutBlock {
    display: block;
    width: 100%;
  }
  .aboutBlock__img {
    width: 100%;
    margin-top: 108px;
  }
  .aboutMock {
    max-width: 800px;
    width: calc(100% - 175px);
    top: -9vw;
    left: 4vw;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .aboutBlock__box {
    width: 100%;
    padding: 0 60px;
  }
}

@media screen and (max-width: 640px) {
  .aboutBlock {
    margin-top: 62px;
    overflow: hidden;
    padding-bottom: 20.57vw;
  }
  .aboutMock {
    width: calc(100% - 70px);
    top: -70px;
    right: -65px;
    transition-delay: 0s;
  }
  .aboutBlock__box {
    width: 100%;
    padding: 0 15px;
  }
}

/*カルチャー*/
.cultureImage {
  width: 100%;
  height: 27.34vw;
  position: relative;
  margin-top: 178px;
}

.cultureImage--pc {
  display: block;
}

.cultureImage--mobile {
  display: none;
}

.cultureImageObject {
  display: inline-block;
  width: 146px;
  height: 300px;
  position: absolute;
  top: -150px;
  right: 0;
  z-index: 1;
  mix-blend-mode: multiply;
  transform: scaleX(-1);
}

.cultureImageObject::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #31c2eb;
  background: -moz-linear-gradient(left, #31c2eb 0%, #0065a9 100%);
  background: -webkit-linear-gradient(left, #31c2eb 0%, #0065a9 100%);
  background: linear-gradient(to right, #31c2eb 0%, #0065a9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#31c2eb', endColorstr='#0065a9',GradientType=1 );
}

.cultureImageInner {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.cultureImage__box {
  width: calc(100% - 162px);
  height: 140%;
  background: url(/img/top/img_culture-image@2x.jpg) 0 0/cover no-repeat;
  margin-left: auto;
}

@media screen and (max-width: 1280px) {
  .cultureImage {
    width: 100%;
    height: 30vw;
    margin-top: 70px;
  }
  .cultureImage--pc {
    display: none;
  }
  .cultureImage--mobile {
    display: block;
  }
  .cultureImageObject {
    width: 90px;
    height: 200px;
    top: -100px;
  }
  .cultureImage__box {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .cultureImage {
    height: 200px;
    margin-top: -30px;
  }
  .cultureImageObject {
    width: 45px;
    height: 100px;
    top: 0;
    bottom: auto;
  }
}

/*ピープル*/
.peopleBlock__img {
  width: 50vw;
  position: relative;
}

.peopleObject {
  width: 14.58vw;
  height: 14.21vw;
  position: absolute;
  top: -5vw;
  left: 28.74vw;
  transform: rotate(90deg);
  background: #31c2eb;
  background: -moz-linear-gradient(left, #31c2eb 0%, #0065a9 100%);
  background: -webkit-linear-gradient(left, #31c2eb 0%, #0065a9 100%);
  background: linear-gradient(to right, #31c2eb 0%, #0065a9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#31c2eb', endColorstr='#0065a9',GradientType=1 );
}

.peopleTmb {
  width: 39.84vw;
  height: 32.07vw;
  overflow: hidden;
}

.peopleTmb__box {
  width: 100%;
  height: 140%;
  background: url(/img/top/tmb_people1.jpg) center center/cover no-repeat;
}

.peopleTmb__box--tb {
  display: none;
}

.peopleTmb__box--sp {
  display: none;
}

.peopleTmb__box--pc {
  display: block;
}

@media screen and (max-width: 1280px) {
  .peopleBlock__img {
    width: 100%;
    margin-top: 84px;
  }
  .peopleObject {
    width: 240px;
    height: 232px;
    top: -64px;
    left: auto;
    right: 60px;
  }
  .peopleTmb {
    width: calc(100% - 92px);
    height: 32.07vw;
  }
  .peopleTmb__box--pc {
    display: none;
  }
  .peopleTmb__box--sp {
    display: none;
  }
  .peopleTmb__box--tb {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .peopleObject {
    width: 120px;
    height: 116px;
    top: -32px;
    right: 15px;
  }
  .peopleTmb {
    width: calc(100% - 47px);
    height: 270px;
  }
  .peopleTmb__box--pc {
    display: none;
  }
  .peopleTmb__box--tb {
    display: none;
  }
  .peopleTmb__box--sp {
    display: block;
  }
}

/*データ*/
.dataBlock {
  margin: 142px 0 0;
}

.dataBlockBody {
  width: 100%;
  max-width: 1560px;
  padding: 0 60px;
  box-sizing: border-box;
  margin: 0 auto;
  height: 425px;
  position: relative;
  overflow: hidden;
}

.dataBlockHead {
  width: 437px;
  color: #fff;
  padding: 51px 0 53px;
  position: absolute;
  top: 0;
  left: 60px;
  text-align: center;
  z-index: 1;
  background: #31c2eb;
  background: -moz-linear-gradient(left, #31c2eb 0%, #0065a9 100%);
  background: -webkit-linear-gradient(left, #31c2eb 0%, #0065a9 100%);
  background: linear-gradient(to right, #31c2eb 0%, #0065a9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#31c2eb', endColorstr='#0065a9',GradientType=1 );
}

.dataBlockHead__txt {
  font-size: 90px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 4px;
}

.dataBlockHead__ttl {
  font-size: 15px;
  line-height: 1.5;
}

.dataBlockBody__img {
  width: 100%;
  height: 100%;
  background: url(/img/top/img_data-block-body@2x.jpg) center center/cover no-repeat;
}

.dataBlockBody__box {
  width: 296px;
  height: 111px;
  position: absolute;
  right: 60px;
  bottom: 0;
  z-index: 1;
  background-color: #fff;
}

.c-transition__btn--data {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-transition__btn--data .c-transition__icon {
  transform: rotate(180deg) translateY(0em);
}

@media screen and (max-width: 1280px) {
  .dataBlock {
    margin-top: -60px;
    padding-top: 109px;
  }
  .dataBlockHead {
    width: 460px;
    text-align: left;
    padding: 50px 60px 53px;
    box-sizing: border-box;
  }
  .dataBlockBody {
    width: 100%;
    height: 40vw;
  }
}

@media screen and (max-width: 1024px) {
  .dataBlockHead {
    width: 270px;
    text-align: center;
    padding: 30px 40px 33px;
  }
  .dataBlockBody__box {
    width: 216px;
  }
  .dataBlockHead__txt {
    font-size: 74px;
  }
  .dataBlockHead__ttl {
    font-size: 12px;
  }
}

@media screen and (max-width: 640px) {
  .dataBlock {
    margin: 0 0 60px;
    padding-top: 77px;
  }
  .dataBlockBody {
    padding: 0;
  }
  .dataBlockHead {
    width: 281px;
    text-align: left;
    padding: 40px 0 40px 60px;
    left: 0;
  }
  .dataBlockHead__txt {
    font-size: 60px;
    margin-bottom: 3px;
  }
  .dataBlockHead__ttl {
    font-size: 13px;
  }
  .dataBlockBody {
    width: 100%;
    height: 110.93vw;
    background-color: #D4E3EE;
  }
  .dataBlockBody__img {
    background: url(/img/top/img_data-block-body--sp@2x.png) center 140px/cover repeat-y;
    height: 100%;
  }
  .dataBlockBody__box {
    width: 198px;
    height: 93px;
  }
  .c-transition__btn--data .c-transition__txt {
    margin-right: 7px;
  }
  .dataBlockBody__box {
    right: 0;
  }
}

/*リーズン*/
.reasonBlock {
  position: relative;
  height: 52.6vw;
}

.reasonContents {
  width: 520px;
  position: absolute;
  top: 14.58vw;
  left: 31.35vw;
  z-index: 1;
}

.reasonContentsHead {
  margin-bottom: 48px;
}

.reasonContentsHead__txt {
  font-size: 23px;
  line-height: 1.5;
  color: #81939F;
  margin-bottom: 14px;
}

.reasonContentsHead__ttl {
  font-size: 71px;
  font-weight: bold;
  line-height: 1;
  color: #0065A9;
}

.reasonContentsBody__ttl {
  font-size: 26px;
  line-height: 1.69;
  margin-bottom: 14px;
  font-weight: bold;
}

.reasonContentsBody__txt {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
}

.reason__img {
  position: absolute;
}

.reason__img--1 {
  width: 21.97vw;
  top: 7.45vw;
  left: 0;
  transition-delay: .6s;
}

.reason__img--1 > span {
  display: block;
  width: 8.54vw;
  height: 8.54vw;
  position: absolute;
  right: -2.7vw;
  bottom: -10vw;
  transform: rotate(90deg);
  mix-blend-mode: multiply;
  z-index: 1;
}

.reason__img--1 > span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #31c2eb;
  background: -moz-linear-gradient(left, #31c2eb 0%, #0065a9 100%);
  background: -webkit-linear-gradient(left, #31c2eb 0%, #0065a9 100%);
  background: linear-gradient(to right, #31c2eb 0%, #0065a9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#31c2eb', endColorstr='#0065a9',GradientType=1 );
}

.reason__img--2 {
  width: 17.55vw;
  top: 6.92vw;
  right: 23.85vw;
  transition-delay: .7s;
}

.reason__img--3 {
  width: 15.98vw;
  top: 11.08vw;
  right: 0;
  transition-delay: .8s;
}

.reason__img--3 > span {
  display: block;
  width: 8.54vw;
  height: 8.54vw;
  position: absolute;
  top: 12vw;
  left: -5vw;
  margin: auto;
  transform: rotate(90deg);
  mix-blend-mode: multiply;
  z-index: -1;
}

.reason__img--3 > span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #31c2eb;
  background: -moz-linear-gradient(left, #31c2eb 0%, #0065a9 100%);
  background: -webkit-linear-gradient(left, #31c2eb 0%, #0065a9 100%);
  background: linear-gradient(to right, #31c2eb 0%, #0065a9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#31c2eb', endColorstr='#0065a9',GradientType=1 );
}

.reason__img--4 {
  width: 26.4vw;
  top: 27.03vw;
  right: 5.36vw;
  transition-delay: .9s;
}

.reasonBgTxt {
  display: flex;
  width: 100%;
  height: 15.84vw;
  font-size: 20.83vw;
  white-space: nowrap;
  position: absolute;
  bottom: 3.91vw;
  left: 0;
  z-index: -1;
}

.slick-slide {
  width: 120vw !important;
  height: 13vw;
}

.reasonBgTxt__item {
  padding: 0 5vw;
  box-sizing: border-box;
}

.reasonBgTxt__item > span {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/img/top/bg_reason-txt@2x.png) 0 0/100% no-repeat;
}

@media screen and (max-width: 1024px) {
  .reasonBlock {
    position: relative;
    height: 110vw;
  }
  .reasonContents {
    width: 100%;
    top: 32vw;
    left: 0;
    padding: 0 140px;
    box-sizing: border-box;
  }
  .reason__img--1 {
    width: 24vw;
    top: -1.85vw;
    left: 0;
  }
  .reason__img--2 {
    width: 27vw;
    top: 8vw;
    right: 60px;
  }
  .reason__img--3 {
    width: 24vw;
    top: 71vw;
    right: 0;
  }
  .reason__img--4 {
    width: 34vw;
    top: 87vw;
    right: 5.36vw;
  }
  .reasonBgTxt {
    bottom: 28vw;
  }
}

@media screen and (max-width: 640px) {
  .reasonBlock {
    height: auto;
    padding: 282px 0 320px;
  }
  .reasonContents {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    padding: 0 45px;
  }
  .reasonContentsHead {
    text-align: center;
    margin-bottom: 20px;
  }
  .reasonContentsHead__txt {
    font-size: 15px;
    margin-bottom: 9px;
    transition-delay: 0s;
  }
  .reasonContentsHead__ttl {
    font-size: 48px;
    transition-delay: 0s;
  }
  .reasonContentsBody__ttl {
    font-size: 21px;
    margin-bottom: 12px;
    line-height: 1.57;
    transition-delay: 0s;
  }
  .reasonContentsBody__txt {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 17px;
    transition-delay: 0s;
  }
  .c-transition__btn--reason {
    transition-delay: 0s;
  }
  .reason__img--1 {
    width: 158px;
    top: -280px;
  }
  .reason__img--1 > span {
    width: 62px;
    height: 62px;
    right: -18px;
    bottom: -325px;
  }
  .reason__img--2 {
    width: 138px;
    top: 10px;
    right: 15px;
  }
  .reason__img--3 {
    width: 133px;
    top: auto;
    bottom: 380px;
  }
  .reason__img--3 > span {
    width: 62px;
    height: 62px;
    top: 250px;
    left: -62px;
  }
  .reason__img--4 {
    width: 220px;
    top: auto;
    right: 110px;
    bottom: 360px;
  }
  .reasonBgTxt {
    height: 30vw;
    bottom: 334px;
  }
  .slick-slide {
    width: 250vw !important;
    height: 30vw;
  }
}
