@charset "utf-8";

/* ===== fv ====== */

.fv {
  height: 100vh;
}

.fv__inner {
  position: relative;
  height: 100%;
}

.fv__ttl {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: #fff;
  font-weight: 700;
  line-height: 2;
  text-shadow: 1px 1px 4px rgba(0,0,0,.4);
}

.video {
  width: 100%;
  height: 100%;
}

.video__item {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== works ====== */

.works {
  max-width: 1920px;
  margin: 93px auto 0;
}

.works__content {
  position: relative;
}

.works__content .pic {
  max-width: 1210px;
  width: 100%;
  margin-left: auto;
  position: relative;
}

.works__content .pic img {
  width: 100%;
}

.works__content .info {
  position: absolute;
  top: 50%;
  left: -346px;
  transform: translateY(-50%);
  text-align: center;
}

.works__content .info .info__txt {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  margin-top: 41px;
  color: #005497;
}


@media (max-width: 1580px) {

  .works__content .pic {
    max-width: 1100px;
  }
}

@media (max-width: 1480px) {

  .works__content .pic {
    max-width: 1000px;
  }
}

@media (max-width: 1380px) {

  .works__content .pic {
    max-width: 900px;
  }
}

@media (max-width: 1280px) {

  .works__content .pic {
    max-width: 800px;
  }
}

@media (max-width: 1180px) {

  .works__content .pic {
    max-width: 700px;
  }
}

/* ===== message ====== */

.message {
  padding: 41px 0 80px;
  margin-top: 100px;
  background-color: #e9f4fc;
}

.message__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.message .ttl,
.message .sub-ttl {
  text-align: center;
}

.message .content {
  margin-top: 43px;
  position: relative;
}

.message .content .pic {
  width: 678px;
  height: 547px;
}

.message .content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message .txt-box {
  position: absolute;
  bottom: -20px;
  left: 500px;
  width: 700px;
  padding: 40px 50px 50px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 16%);
  background-color: rgba(255, 255, 255, 70%);
  -webkit-backdrop-filter: brightness(96%) blur(15px);
  backdrop-filter: brightness(96%) blur(15px);
}

.message .txt-box p {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
}

.message .txt-box p + p {
  text-align: right;
  margin-top: 30px;
}

@media (max-width: 1279px) {

  .message .txt-box {
    left: 350px;
  }
}

/* ===== persons ====== */

.persons {
  margin-top: 123px;
}

.persons .ttl-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.persons .ttl,
.persons .sub-ttl {
  line-height: 1.6;
}

.persons .sub-ttl {
  margin-top: -5px;
}

.persons .content {
  display: flex;
  justify-content: center;
  max-width: 1920px;
  margin: 42px auto 0;
}

.persons .top-buyer,
.persons .top-interview {
  position: relative;
  width: 100%;
}

.persons .top-buyer.hover::before,
.persons .top-interview.hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 40%);
  pointer-events: none;
}

.persons .top-buyer img,
.persons .top-interview img {
  width: 100%;
}

.persons .top-buyer p,
.persons .top-interview p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.2rem;
  color: #fff;
  font-weight: 700;
  pointer-events: none;
}

/* ===== training ====== */

.training {
  margin-top: 113px;
}

.training__inner {
  max-width: 1014px;
  margin: 0 auto;
}

.training .ttl,
.training .sub-ttl {
  text-align: center;
}

.training .content {
  margin-top: 43px;
  position: relative;
}

.training .content .pic {
  max-width: 829px;
  margin-left: auto;
}

.training .content .info {
  position: absolute;
  bottom: -34px;
  left: 0;
}

/* --- flowAnime start --- */
.bg .bg-wrap {
  position: relative;
  display: inline-block;
  width: 518px;
  padding: 45px 20px 40px;
}

.bg .bg-wrap.flowTrigger::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: rgba(0, 0, 0, 16%);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 16%);
  background-color: rgba(0, 0, 0, 70%);
  -webkit-backdrop-filter: brightness(96%) blur(15px);
  backdrop-filter: brightness(96%) blur(15px);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}

.bg .bg-wrap h3 {
  color: #fff;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.bg .bg-wrap p {
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 44px;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}
 
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
/* --- flowAnime end --- */

.training__btn {
  display: flex;
  justify-content: center;
  margin-top: 94px;
}

/* ===== top-job  ====== */

.top-job {
  background-image: url(../img/top/top06.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 41px 0 50px;
  margin-top: 100px;
}

.top-job .ttl,
.top-job .sub-ttl {
  text-align: center;
}

.top-job__txt {
  margin-top: 43px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
}

.top-job__btn {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* ==========================================
/* tablet
/* ========================================== */

@media (max-width: 1080px) {

/* ===== fv ====== */

.fv {
  margin-top: 57px;
}

.fv__ttl {
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  width: 100%;
  text-align: center;
}

/* ===== works ====== */

.works {
  margin: 50px auto 0;
}

.works__content {
  position: static;
}

.works__content .pic {
  margin-left: 0;
  position: static;
  max-width: none;
}

.works__content .pic img {
  width: 100%;
}

.works__content .info {
  position: static;
  transform: translateY(0);
  text-align: center;
  width: 100%;
  margin-top: 10px;
}

.works__content .info .info__txt {
  margin-top: 18px;
}

/* ===== message ====== */

.message {
  padding: 40px 0 328px;
  margin-top: 70px;
  background-color: #e9f4fc;
}

.message__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.message .ttl,
.message .sub-ttl {
  text-align: center;
}

.message .content {
  margin-top: 32px;
  position: relative;
}

.message .content .pic {
  width: 700px;
  height: auto;
  margin: 0 auto;
}

.message .txt-box {
  position: absolute;
  bottom: -253px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  padding: 30px 20px 32px;
}

.message .txt-box p + p {
  margin-top: 24px;
}

/* ===== persons ====== */

.persons {
  margin-top: 78px;
}

.persons .content {
  flex-direction: column;
  max-width: 700px;
  margin: 31px auto 0;
}
	
.persons .top-buyer.hover::before,
.persons .top-interview.hover::before {
  content: none;
}

.persons .top-buyer p,
.persons .top-interview p {
  font-size: 2.6rem;
}

/* ===== training ====== */

.training {
  margin-top: 79px;
}

.training .content {
  margin-top: 42px;
}

.training .content .pic {
  max-width: 700px;
  margin: 0 auto;
}
.training .content .pic img {
  width: 100%;
}

.training .content .info {
  position: absolute;
  bottom: -203px;
  left: 50%;
  transform: translateX(-50%);
}

/* --- flowAnime start --- */
.bg .bg-wrap {
  position: relative;
  display: inline-block;
  width: 600px;
  padding: 35px 23px 30px
}

.bg .bg-wrap p {
  margin-top: 23px;
  line-height: 1.7;
}

/* --- flowAnime end --- */

.training__btn {
  margin-top: 243px;
}

/* ===== top-job  ====== */

.top-job {
  background-image: url(../img/top/top06-sp.png);
  background-image: image-set(
    url(../img/top/top06-sp.png) 1x,
    url(../img/top/top06-sp@2x.png) 2x
  );
  background-image: -webkit-image-set(
    url(../img/top/top06-sp.png) 1x,
    url(../img/top/top06-sp@2x.png) 2x
  );
  padding: 40px 0 31px;
  margin-top: 70px;
}

.top-job__txt {
  margin: 22px auto 0;
  text-align: left;
  width: 365px;
}

.top-job__btn {
  margin-top: 35px;
}
}

/* ==========================================
/* sp
/* ========================================== */

@media (max-width: 767px) {

/* ===== fv ====== */

.fv {
  height: 300px;
}

.fv__ttl {
  font-size: 2rem;
  line-height: 1.4;
}

/* ===== works ====== */

.works__content .info {
  margin-top: 10px;
}

.works__content .info .info__txt {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 18px;
}

/* ===== message ====== */

.message {
  padding: 40px 0 337px;
}

.message .content .pic {
  width: 355px;
}

.message .txt-box {
  bottom: -306px;
  width: 335px;
}

.message .txt-box p {
  font-size: 1.4rem;
  line-height: 1.8;
}

.message .txt-box p + p {
  margin-top: 24px;
}

@media (max-width: 359px) {

  .message {
    padding: 40px 0 345px;
  }

  .message .content .pic {
    width: 310px;
  }

  .message .txt-box {
    bottom: -314px;
    width: 300px;
    padding: 20px 15px 25px;
  }
}

/* ===== persons ====== */

.persons {
  margin-top: 70px;
}

.persons .top-buyer p,
.persons .top-interview p {
  font-size: 1.8rem;
}

/* ===== training ====== */

.training {
  margin-top: 71px;
}

.training .content .pic {
  max-width: 500px;
  width: 100%;
  height: 208px;
  margin: 0 auto;
}
.training .content .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.training .content .info {
  bottom: -210px;
}

/* --- flowAnime start --- */
.bg .bg-wrap {
  width: 355px;
}

.bg .bg-wrap h3 {
  font-size: 1.8rem;
  line-height: 1.7;
}

.bg .bg-wrap p {
  font-size: 1.4rem;
  margin-top: 23px;
}

/* --- flowAnime end --- */

.training__btn {
  margin-top: 250px;
}

@media (max-width: 359px) {

  .bg .bg-wrap {
    width: 310px;
    padding: 20px 15px 25px;
  }
}

/* ===== top-job  ====== */

.top-job {
  padding: 30px 0 31px;
}

.top-job__txt {
  font-size: 1.4rem;
  line-height: 1.7;
  width: 308px;
}

.top-job__btn {
  margin-top: 35px;
}
}