@charset "UTF-8";

/* mv */
.mv {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88%;
  min-width: 750px;
  max-width: 1280px;
  height: 60vh;
  height: 60dvh;
  min-height: 400px;
  max-height: 600px;
  margin: 0 auto;
}

.mv__illust {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 420px) {
  .mv {
    width: 90%;
    min-width: auto;
    padding-top: 50px;
  }
}

/* campaign */
.campaign {
  margin-bottom: 20px;
  padding: 20px 0 0;
  background-image: url(../img/campaign_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
}

.campaign h2 {
  display: inline-block;
  position: relative;
  width: fit-content;
  margin: 0 auto 10px;
  background-image: url(../img/campaign_title-line.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  letter-spacing: normal;
  color: #fff000;
}

.campaign p {
  width: 60%;
  margin: 0 auto;
  color: #fff;
  padding-bottom: 15px;
}

.campaign .btn-bg {
  margin-bottom: 20px;
}

.campaign .btn-bg::after {
  content: none;
}

.campaign .btn-bg svg {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
}

.campaign .btn-bg svg path {
  fill: #0599d9;
}

.campaign .button:hover.btn-bg svg path {
  fill: #fff;
}

.period {
  padding: 10px 0;
  background-color: #00628d;
}

.period dl {
  gap: 10px;
}

.period dt {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 3px;
  background-color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0194d4;
}

.period dd {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}

.period dd span {
  font-size: 2.2rem;
}

@media (max-width: 420px) {
  .campaign {
    margin-bottom: 50px;
  }
  .campaign h2 {
    font-size: 2.4rem;
    background-image: none;
  }

  .campaign h2 span {
    background-image: url(../img/campaign_title-line.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
  }

  .campaign h2 span:nth-child(2) {
    background-size: 250%;
  }

  .campaign p {
    width: 95%;
  }

  .period dd {
    font-size: 2.8rem;
  }
  .period dd span {
    font-size: 2rem;
  }
}

/* strengths */
.strengths {
  margin-bottom: 50px;
}

.strengths > p {
  padding-bottom: 50px;
  text-align: center;
  font-size: 1.8rem;
}

.strengths-list {
  align-items: stretch;
  gap: 60px;
}

.strengths-item {
  display: grid;
  justify-content: center;
  align-items: start;
  grid-template-rows: auto auto 1fr;
  width: 26%;
  text-align: left;
}

.strengths-item figure {
  position: relative;
}

.strengths-item figure::after {
  display: inline-block;
  position: absolute;
  top: 0;
  left: -15px;
  transform: translateY(-50%);
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 6.6rem;
  letter-spacing: 0.05em;
  color: #0599d9;
}

.strengths-item:nth-child(1) figure::after {
  content: "01";
}
.strengths-item:nth-child(2) figure::after {
  content: "02";
}
.strengths-item:nth-child(3) figure::after {
  content: "03";
}

.strengths-item h3 {
  padding-bottom: 10px;
}

.strengths-item__inner-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  font-weight: 500;
}

.strengths-item__inner-item:not(:last-child) {
  margin-bottom: 15px;
}

.strengths-item__inner-item::before {
  content: "";
  display: inline-block;
  transform: translateY(10%);
  width: 20px;
  height: 20px;
  background-image: url(../img/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.strengths-item__inner-item p {
  display: inline-block;
  flex: 1;
}

@media (max-width: 420px) {
  .strengths {
    margin-bottom: 50px;
  }

  .strengths > p {
    font-size: 1.4rem;
  }

  .strengths-list {
    flex-direction: column;
    gap: 60px;
    width: 95%;
    margin: 0 auto;
  }

  .strengths-item {
    width: 100%;
  }
  .strengths-item figure::after {
    left: -10px;
    font-size: 5rem;
  }
}

/* course fee */
.course {
  padding: 50px 0;
  background-color: #e4f7ff;
}

.course-item {
  gap: 60px;
}

.course-item:first-child {
  flex-direction: row-reverse;
  margin-bottom: 100px;
}

.course-item__text-area {
  width: 50%;
}

.course-item__text-area h3 {
  margin-bottom: 25px;
  font-size: 3.2rem;
}

.course-item__text-area .button {
  margin: 25px 0 0 auto;
}

.course-item figure {
  width: 25%;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 420px) {
  .course {
    padding: 50px 0;
  }

  .course-item {
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
  }

  .course-item:first-child {
    margin-bottom: 50px;
    flex-direction: column;
  }

  .course-item figure {
    width: 100%;
  }

  .course-item__text-area {
    width: 100%;
  }

  .course-item__text-area h3 {
    font-size: 2.6rem;
  }
}

/* case study */
.case {
  position: relative;
  padding: 50px 0;
  background-color: #f7f7f7;
  overflow: hidden;
}

.case::before {
  content: "IMPRESSIVE SOLUTIONS THAT MOVE YOUR HEART";
  display: inline-block;
  position: absolute;
  bottom: -33px;
  left: 100%;
  width: max-content;
  font-family: "Mulish", sans-serif;
  font-weight: 900;
  font-size: 12.6rem;
  letter-spacing: 0.2em;
  color: #ededed;
  animation: flow-text 20s linear infinite;
}

@keyframes flow-text {
  100% {
    left: -300%;
  }
}

.case-list {
  gap: 5%;
  margin-bottom: 50px;
}

.case-item {
  width: 30%;
}

.case-item a {
  display: grid;
  justify-items: start;
  grid-auto-rows: auto 4em 3.5em auto;
  gap: 5px;
}

.case-item figure {
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
}

.case-item a figure img {
  aspect-ratio: 3/2;
  transition: transform 0.3s;
}

.case-item a:hover figure img {
  transform: scale(1.1);
}

.case-item h3 {
  padding-bottom: 5px;
  font-size: 2rem;
}

.case-item p {
  padding-bottom: 15px;
  font-weight: 400;
}

.type-list {
  justify-content: flex-start;
  gap: 10px;
}

.type,
.industries {
  display: inline-block;
  padding: 5px 10px;
  background-color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0599d9;
}

.case .button:hover.btn-bg::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media (max-width: 420px) {
  .case {
    padding: 50px 0;
  }

  .case-list {
    flex-direction: column;
    gap: 30px;
  }

  .case-item {
    width: 100%;
  }
}

/* flow */
.flow {
  margin: 50px auto;
}

.flow > p {
  margin-bottom: 60px;
  text-align: center;
  font-size: 1.8rem;
}

.flow-list {
  gap: 55px;
  margin: 0 auto 50px;
}

.flow-item {
  display: grid;
  grid-auto-flow: row;
  grid-auto-rows: auto auto 7rem;
  justify-content: center;
  align-items: start;
  gap: 10px;
  position: relative;
  width: 18%;
  text-align: center;
}

.flow-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 30%;
  right: -10%;
  transform: rotate(45deg);
  width: 20px;
  height: 20px;
  border-top: 2px solid #0599d9;
  border-right: 2px solid #0599d9;
}

.flow-item figure {
  position: relative;
}

.flow-item figure::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
  font-size: 4.6rem;
  font-weight: 700;
  color: #0599d9;
}

.flow-item:nth-child(1) figure::before {
  content: "01";
}

.flow-item:nth-child(2) figure::before {
  content: "02";
}

.flow-item:nth-child(3) figure::before {
  content: "03";
}

.flow-item:nth-child(4) figure::before {
  content: "04";
}

.flow-item figure img {
  width: 100%;
}

.flow__inner-list {
  margin: 0 auto;
}

.flow-item:last-child .flow__inner-list {
  opacity: 0;
}

/* .system {
  width: 60%;
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px 0;
  border-radius: 10px;
  background-color: #eef7fb;
}

.system h3,
.system > p {
  text-align: center;
}

.system-list {
  width: 70%;
  margin: 10px auto 0;
}

.system-item {
  font-size: 1.8rem;
  font-weight: 500;
}

.system-item:not(:last-child) {
  margin-bottom: 5px;
}

.system-item::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #0599d9;
} */

@media (max-width: 420px) {
  .flow {
    margin: 50px auto;
  }

  .flow > p {
    font-size: 1.4rem;
  }

  .flow__list-wrapper {
    overflow: scroll;
    padding: 10px;
  }

  .flow-list {
    flex-wrap: initial;
    gap: 1rem;
  }

  .flow-item {
    width: 70%;
  }

  .flow-item:not(:last-child)::after {
    width: 1.3rem;
    height: 1.3rem;
  }

  /*   .system {
    width: 95%;
    padding: 30px 20px;
  }

  .system-list {
    width: 100%;
  }

  .system-item {
    font-size: 1.6rem;
  } */

  .flow-item figure::before {
    font-size: 2rem;
  }

  .flow-item > h3 {
    font-size: 1.6rem;
  }

  .flow__inner-item {
    font-size: 1.2rem;
  }
}

/* news */
.news {
  padding: 50px 0;
  background-color: #f7f7f7;
}

.news-wrapper {
  gap: 60px;
  justify-content: space-between;
}

.news__title {
  width: fit-content;
}

.news__title .button {
  margin: 30px 0 0;
}

.news-list {
  flex: 1;
}

.news-item {
  justify-content: flex-start;
  gap: 5px;
  border-top: 1px solid #d7d7d7;
  padding: 20px 0;
}

.news-item:last-child {
  border-bottom: 1px solid #d7d7d7;
}

.news-data {
  width: 100%;
  justify-content: flex-start;
}

.date {
  width: fit-content;
  padding-right: 20px;
  font-weight: 300;
}

.category {
  width: fit-content;
  padding: 0 10px;
  border: 1px solid #d7d7d7;
  font-size: 1.4rem;
}

.news-item a {
  font-size: 1.8rem;
  font-weight: 400;
}

@media (max-width: 420px) {
  .news {
    padding: 50px 0;
  }

  .news-wrapper {
    gap: 20px;
    flex-direction: column;
  }

  .news-item a {
    font-size: 1.4rem;
  }
}

/* video */
.video {
  padding: 50px 0;
}

.video-link {
  position: relative;
  width: 70%;
  margin: 0 auto;
  overflow: hidden;
}

.video-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-image: url(../img/start_btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.video-link:hover::after {
  opacity: 0.4;
}

.video-link img {
  transition: transform 0.3s;
}

.video-link:hover img {
  transform: scale(1.1);
}

@media (max-width: 420px) {
  .video {
    padding: 50px 0;
  }

  .video-link {
    width: 100%;
  }

  .video-link::after {
    width: 50px;
    height: 50px;
  }
}

/* company, recruit */
.banner {
  position: relative;
  margin-bottom: 30px;
  padding: 100px 0;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: darken;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  transition: background 0.3s;
}

.banner.company {
  background-image: url(../img/company_bg.jpg);
}
.banner.recruit {
  background-image: url(../img/recruit_bg.jpg);
}

.banner:hover {
  background-size: 110%;
}

.banner__text-area {
  justify-content: space-between;
  gap: 80px;
  width: 90%;
  margin: 0 auto;
}

.banner__text-area p {
  flex: 1;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
}

.banner-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 20px;
  position: absolute;
  bottom: 30px;
  right: 5%;
  width: fit-content;
  color: #fff;
  transition: opacity 0.3s;
}

.banner:hover .banner-btn {
  opacity: 0.5;
}

.banner-btn::after {
  content: "";
  display: inline-block;
  transform: rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media (max-width: 420px) {
  .banner {
    padding: 30px 0;
  }

  .banner.company {
    background-image: url(../img/company_bg-sp.jpg);
  }

  .banner.recruit {
    background-image: url(../img/recruit_bg-sp.jpg);
  }

  .banner__text-area {
    justify-content: space-between;
    gap: 40px;
  }

  .banner__text-area p {
    flex: auto;
    font-size: 1.4rem;
    font-weight: 500;
  }

  .banner-btn {
    position: unset;
    margin: 0 5% 0 auto;
  }
}

/* mv fadeIn */
.parts {
  opacity: 0;
  transition: all 0.6s;
}

.mvEl {
  opacity: 0;
  transition: all 0.6s;
}

.parts.in {
  opacity: 1;
}

.mvEl.in {
  opacity: 1;
}

.lpBannerSec {
  padding-bottom: 60px;
}

.lpBannerSec__link--pc,
.lpBannerSec__link--sp {
  display: block;
  margin: auto;
  width: 90%;
  max-width: 1000px;
}

.lpBannerSec__link--sp {
  display: none;
}

.lpBannerSec__link-img {
  width: 100%;
}

@media (max-width: 420px) {
  .lpBannerSec__link--sp {
    display: block;
  }

  .lpBannerSec__link--pc {
    display: none;
  }
}
