#key-visual {
  width: 100%;
  height: 100vh;
  margin-bottom: 17.3vw;
  padding-bottom: 5.3vw;
  position: relative;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  #key-visual {
    padding-bottom: 55px;
    margin-bottom: 0;
  }
}

#key-visual .page-ttl {
  width: 75%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  #key-visual .page-ttl {
    width: 390px;
  }
}

#key-visual .page-hero {
  height: 100%;
  overflow: hidden;
  position: relative;
}

#key-visual .page-hero .mainSlider {
  width: 100%;
  height: 100%;
  position: relative;
}

#key-visual .page-hero .mainSlider .slide-item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 2s, -webkit-transform 7.5s linear;
  transition: opacity 2s, -webkit-transform 7.5s linear;
  transition: opacity 2s, transform 7.5s linear;
  transition: opacity 2s, transform 7.5s linear, -webkit-transform 7.5s linear;
}

#key-visual .page-hero .mainSlider .slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#key-visual .page-hero .mainSlider .slide-item.img01 {
  opacity: 1;
}

#key-visual .page-hero .mainSlider .slide-item.active {
  opacity: 1;
}

#key-visual .page-hero .mainSlider .slide-item.move {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

#key-visual .page-hero .mainSlider .img02, #key-visual .page-hero .mainSlider .img04 {
  -webkit-transform: scale(1.2) translate(0);
          transform: scale(1.2) translate(0);
}

#key-visual .page-hero .mainSlider .img02.move {
  -webkit-transform: scale(1.2) translate(40px, 40px);
          transform: scale(1.2) translate(40px, 40px);
}

#key-visual .page-hero .mainSlider .img04.move {
  -webkit-transform: scale(1.2) translate(-40px, -40px);
          transform: scale(1.2) translate(-40px, -40px);
}

#key-visual .side-popup {
  background-color: #1D1A1F;
  width: 67%;
  position: absolute;
  right: -100%;
  bottom: 0;
  -webkit-transition: right 0.5s 0.2s ease;
  transition: right 0.5s 0.2s ease;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  #key-visual .side-popup {
    width: 530px;
    height: 160px;
  }
}

#key-visual .side-popup__img {
  max-width: 400px;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}

#key-visual .side-popup__img img {
  display: block;
}

#key-visual .side-popup__txt {
  color: #fff;
  font-size: 3.7vw;
  font-weight: bold;
  line-height: 1;
  margin-top: 3vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 768px) {
  #key-visual .side-popup__txt {
    display: block;
    font-size: 18px;
    position: absolute;
    top: 60px;
    left: 375px;
    margin-top: 0;
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
    transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  }
}

#key-visual .side-popup__txt .arrow {
  width: 17.8vw;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

@media screen and (min-width: 768px) {
  #key-visual .side-popup__txt .arrow {
    margin-top: 12px;
    width: 132px;
  }
}

#key-visual .side-popup > a {
  display: block;
  position: relative;
  padding: 3.2vw;
}

@media screen and (min-width: 768px) {
  #key-visual .side-popup > a {
    padding: 25px;
  }
}

@media screen and (min-width: 768px) and (hover: hover) {
  #key-visual .side-popup > a:hover .side-popup__img {
    opacity: 0.8;
  }
  #key-visual .side-popup > a:hover .side-popup__txt {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  #key-visual .side-popup > a:hover .arrow {
    -webkit-transform: translate(6px, 0);
            transform: translate(6px, 0);
  }
}

#key-visual .side-popup.is-show {
  right: 0;
}

@-webkit-keyframes mainScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes mainScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@-webkit-keyframes translateR {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transform: translate(20px, 20px);
            transform: translate(20px, 20px);
  }
}

@keyframes translateR {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transform: translate(20px, 20px);
            transform: translate(20px, 20px);
  }
}

@-webkit-keyframes translateL {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transform: translate(-20px, -20px);
            transform: translate(-20px, -20px);
  }
}

@keyframes translateL {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transform: translate(-20px, -20px);
            transform: translate(-20px, -20px);
  }
}

#main-content:after {
  content: "";
  width: 380px;
  height: 336px;
  background: url(../image/home/logo_bg.png) center no-repeat;
  background-size: 200px auto;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -2;
}

@media screen and (min-width: 768px) {
  #main-content:after {
    background-size: 380px auto;
    left: calc(50% + 100px);
  }
}

#content {
  position: relative;
}

#content:before {
  content: "";
  display: block;
  background-color: #fff;
  width: 100%;
  height: 100px;
  position: absolute;
  top: -80px;
  left: 0;
  z-index: 0;
}

/*-- member ---------------------------------- */
#member {
  background-color: #F1F4F6;
  padding-top: 21.3vw;
  padding-bottom: 12.5vw;
  margin-bottom: 53.3vw;
  position: relative;
}

@media screen and (min-width: 768px) {
  #member {
    padding-top: 85px;
    padding-bottom: 60px;
    margin-top: 70px;
    margin-bottom: 0;
  }
}

#member::before, #member:after {
  content: "";
  display: block;
  position: absolute;
}

#member::before {
  width: 1px;
  height: 75px;
  top: -30px;
  left: 50%;
  background-color: rgba(112, 112, 112, 0.5);
}

@media screen and (min-width: 768px) {
  #member::before {
    height: 350px;
    top: 85px;
    left: calc(50% - 588px);
  }
}

#member:after {
  content: "";
  display: block;
  width: 92px;
  height: 10px;
  background: url(../image/home/txt_recruitment_sp.svg) center no-repeat;
  top: 18px;
  left: calc(50% + 15px);
}

@media screen and (min-width: 768px) {
  #member:after {
    width: 10px;
    height: 110px;
    background: url(../image/home/txt_recruitment.svg) center no-repeat;
    top: 445px;
    left: calc(50% - 591px);
  }
}

#member .section__head {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5.3vw;
}

@media screen and (min-width: 768px) {
  #member .section__head {
    padding: 0 40px;
  }
}

#member .section__txt {
  padding: 0 5.3vw;
  margin-bottom: 8vw;
}

@media screen and (min-width: 768px) {
  #member .section__txt {
    width: 520px;
    margin: 0 auto 70px;
    padding: 0 40px;
  }
}

#member .member__grid {
  max-width: 944px;
  margin: 0 auto 14vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 768px) {
  #member .member__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 50px;
  }
}

#member .member__video-inline {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 5.3vw;
}

@media screen and (min-width: 768px) {
  #member .member__video-inline {
    padding: 0 40px;
  }
}

#member .grid__item {
  width: 100%;
  padding: 0 5.3vw 0 17.3vw;
  position: relative;
}

@media screen and (min-width: 768px) {
  #member .grid__item {
    width: calc(25% - 44px);
    margin: 0 22px;
    padding: 15px 0;
    border-top: 2px solid #EAEAEA;
  }
}

#member .grid__item + .grid__item {
  margin-top: 8vw;
}

@media screen and (min-width: 768px) {
  #member .grid__item + .grid__item {
    margin-top: 0;
  }
}

#member .grid__item:before {
  content: "";
  display: block;
  width: 2px;
  height: 35px;
  background-color: #EAEAEA;
  position: absolute;
  top: 0;
  left: 5.3vw;
}

@media screen and (min-width: 768px) {
  #member .grid__item:before {
    content: none;
  }
}

#member .grid__num {
  font-size: 8vw;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 10.6vw;
}

@media screen and (min-width: 768px) {
  #member .grid__num {
    font-size: 40px;
    text-align: center;
    position: static;
  }
}

#member .grid__ttl {
  font-size: 4.2vw;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  margin: 2vw 0 5.3vw;
}

@media screen and (min-width: 768px) {
  #member .grid__ttl {
    font-size: 19px;
    text-align: center;
    margin: 15px 0 25px;
  }
}

#member .grid__txt {
  line-height: 2;
}

/*-- interview ---------------------------------- */
#interview {
  padding-bottom: 50vw;
  position: relative;
}

@media screen and (min-width: 768px) {
  #interview {
    padding-top: 330px;
    padding-bottom: 0;
  }
}

#interview .section-inner {
  padding-top: 1px;
}

@media screen and (min-width: 768px) {
  #interview .section-inner {
    max-width: 1280px;
    padding: 0 40px;
    margin: 0 auto;
  }
}

#interview .interview__media {
  width: 89%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  #interview .interview__media {
    width: calc(50% - 40px);
    height: auto;
    max-width: 600px;
    top: 330px;
    right: 50%;
    left: auto;
    margin-left: 40px;
  }
}

@media screen and (min-width: 1280px) {
  #interview .interview__media {
    width: 600px;
  }
}

#interview .interview__media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  #interview .interview__media.item--movie:before {
    width: 70px;
    height: 70px;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
  }
  #interview .interview__media.item--movie:after {
    background-size: 23px auto;
    width: 26px;
    height: 26px;
    top: calc(50% - 13px);
    left: calc(50% - 10px);
  }
}

#interview .interview__box {
  width: 95%;
  margin-top: 12vw;
  margin-left: auto;
  padding: 42.5vw 5.3vw 14.6vw 8.3vw;
  background-color: #2D2D2D;
}

@media screen and (min-width: 768px) {
  #interview .interview__box {
    width: 70%;
    max-width: 850px;
    margin-top: 60px;
    padding: 120px 12.5% 180px 19.5%;
  }
}

@media screen and (min-width: 768px) {
  #interview .interview__box {
    padding: 7.3% 7% 9% 19.5%;
  }
}

@media screen and (min-width: 1280px) {
  #interview .interview__box {
    padding: 120px 12.5% 180px 19.5%;
  }
}

#interview .interview__ttl {
  color: #fff;
  font-size: 5.6vw;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.35;
  margin-bottom: 12.5vw;
}

@media screen and (min-width: 768px) {
  #interview .interview__ttl {
    font-size: 40px;
    padding-left: 10%;
    margin-bottom: 28%;
  }
}

@media screen and (min-width: 768px) {
  #interview .interview__ttl {
    font-size: 3vw;
  }
}

@media screen and (min-width: 1280px) {
  #interview .interview__ttl {
    font-size: 40px;
  }
}

#interview .interview__sub-ttl {
  color: #fff;
  font-size: 3.7vw;
  font-weight: bold;
  line-height: 1;
  text-align: right;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  #interview .interview__sub-ttl {
    font-size: 20px;
  }
}

#interview .interview__sub-ttl:before {
  content: "";
  display: block;
  height: 1px;
  width: calc(100% - 14em);
  background-color: #707070;
  position: absolute;
  top: 50%;
  right: 13.5em;
}

/*-- flow ---------------------------------- */
#flow {
  padding-bottom: 53.3vw;
  background-size: cover;
  position: relative;
}

@media screen and (min-width: 768px) {
  #flow {
    margin-top: 390px;
    padding-bottom: 230px;
  }
}

#flow .section-inner {
  max-width: 1280px;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  #flow .section-inner {
    padding: 0 40px;
    margin: 0 auto;
    position: relative;
  }
}

#flow .section-inner:before {
  content: "";
  display: block;
  width: 100%;
  height: 590px;
  background-color: #F1F4F6;
  position: absolute;
  top: 28vw;
  left: 5.3vw;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  #flow .section-inner:before {
    top: 0;
    left: 23%;
  }
}

#flow .flow__img {
  width: 85%;
  height: auto;
  margin-left: auto;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  #flow .flow__img {
    position: absolute;
    top: 70px;
    right: 0;
    width: 50%;
    height: 520px;
  }
}

#flow .flow__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

@media screen and (min-width: 768px) {
  #flow .flow__box {
    width: 59%;
    max-width: 705px;
  }
}

#flow .flow__box .section__head {
  margin: 6.6vw 0 6.6vw 12vw;
  text-align: left;
}

@media screen and (min-width: 768px) {
  #flow .flow__box .section__head {
    padding-top: 105px;
    margin: 0 0 60px;
    text-align: center;
  }
}

#flow .flow__list {
  color: #fff;
  background: url(../image/home/flow_bg.jpg) no-repeat;
  background-size: cover;
  width: 95%;
  margin-right: auto;
  padding: 2.3vw 12.5vw 13vw;
}

@media screen and (min-width: 768px) {
  #flow .flow__list {
    width: auto;
    margin: auto;
    padding: 40px 26% 80px 16%;
  }
}

@media screen and (min-width: 1280px) {
  #flow .flow__list {
    padding: 40px 175px 80px 150px;
  }
}

#flow .flow__list .list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7vw 0 3vw;
  position: relative;
}

@media screen and (min-width: 768px) {
  #flow .flow__list .list__item {
    padding: 25px 0;
  }
}

#flow .flow__list .list__item:after {
  content: "";
  width: calc(100% - 12vw);
  height: 1px;
  background-color: #707070;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (min-width: 768px) {
  #flow .flow__list .list__item:after {
    width: calc(100% - 50px);
  }
}

#flow .flow__list .list__num {
  font-size: 8vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  #flow .flow__list .list__num {
    font-size: 40px;
  }
}

#flow .flow__list .list__txt {
  font-size: 3.7vw;
  font-weight: bold;
  margin-left: 9vw;
}

@media screen and (min-width: 768px) {
  #flow .flow__list .list__txt {
    font-size: 20px;
    padding: 0 20px;
    margin-left: 20px;
  }
}

@media screen and (min-width: 1280px) {
  #flow .flow__list .list__txt {
    padding: 0 10px 0 35px;
  }
}

#flow .flow__list .list__txt .icon {
  margin-left: 0.5em;
}

@media (hover: hover) {
  #flow a {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  #flow a:hover {
    opacity: 0.7;
  }
}

/*-- online ---------------------------------- */
#online {
  padding-top: 13.3vw;
  padding-bottom: 53.3vw;
  background: url(../image/home/online_bg_sp.jpg) bottom center no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  #online {
    background: url(../image/home/online_bg.jpg) bottom center no-repeat;
    background-size: cover;
    padding-top: 90px;
    padding-bottom: 300px;
  }
}

#online .section__head {
  margin-bottom: 10.6vw;
}

@media screen and (min-width: 768px) {
  #online .section__head {
    margin-bottom: 50px;
  }
}

#online .section__txt {
  margin-bottom: 13.3vw;
  padding: 0 5.3vw;
}

@media screen and (min-width: 768px) {
  #online .section__txt {
    font-weight: normal;
    width: 450px;
    margin: 0 auto 45px;
    padding: 0;
  }
}

/*-- news ---------------------------------- */
#news {
  padding-top: 24vw;
  padding-bottom: 24vw;
}

@media screen and (min-width: 768px) {
  #news {
    padding-top: 120px;
    padding-bottom: 150px;
  }
}

#news .section-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 5.3vw;
}

@media screen and (min-width: 768px) {
  #news .section-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 40px;
  }
}

#news .news__ttl-wrap {
  color: #fff;
  background-color: #2D2D2D;
  position: relative;
  width: 75%;
  padding: 9.6vw 13vw 0;
}

@media screen and (min-width: 768px) {
  #news .news__ttl-wrap {
    width: 285px;
    padding: 45px 45px 30px;
  }
}

#news .news__ttl-wrap:after {
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  background-color: #707070;
  position: absolute;
  top: 13.3vw;
  left: 41.3vw;
}

@media screen and (min-width: 768px) {
  #news .news__ttl-wrap:after {
    top: 60px;
    left: 185px;
  }
}

#news .news__ttl {
  width: 22.6vw;
  margin-bottom: 7vw;
}

@media screen and (min-width: 768px) {
  #news .news__ttl {
    width: 113px;
    margin-bottom: 80px;
  }
}

#news .news__list {
  background-color: #fff;
  padding: 12vw 0 0;
}

@media screen and (min-width: 768px) {
  #news .news__list {
    padding: 50px 0 20px 80px;
  }
}

#news .news__list .list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  #news .news__list .list__item {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    min-height: 3.5em;
  }
}

#news .news__list .list__item + .list__item {
  margin-top: 21px;
}

#news .news__list .list__date {
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
}

#news .news__list .list__label {
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  background-color: #2D2D2D;
  padding: 5px 10px;
  margin-right: 15px;
  white-space: nowrap;
  min-width: calc(8em + 20px);
}

#news .news__list .list__ttl {
  width: 100%;
  line-height: 1.8;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  #news .news__list .list__ttl {
    width: auto;
    margin-top: 0;
  }
}

#news .news__list .list__ttl a:hover {
  text-decoration: underline;
}

#news .news__btn {
  -webkit-transform: translateY(5vw);
          transform: translateY(5vw);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 100px;
}

@media screen and (min-width: 768px) {
  #news .news__btn {
    padding-right: 0;
    padding-left: 30px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-transform: none;
            transform: none;
  }
}
