@charset "UTF-8";
/* ============================================================
// index.scss
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// hero
------------------------------------------------------------ */
.hero {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 640px;
  margin-top: 100px;
  padding-top: clamp(0px, 27.7777777778vw + -213.3333333333px, 120px);
  background-color: #f2f2f2;
}
@media screen and (max-width: 991px) {
  .hero {
    margin-top: 80px;
  }
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  height: 100%;
  z-index: 1;
}
.hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__bg-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 clamp(20px, 9.2592592593vw + -51.1111111111px, 60px);
  color: #fff;
}
.hero__head-text {
  font-size: clamp(30px, 4.6296296296vw + -5.5555555556px, 50px);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  margin-bottom: 4px;
}
.hero__head-text--blue {
  color: #2d8bea;
}
.hero__body-text {
  font-size: clamp(16px, 0.462962963vw + 12.4444444444px, 18px);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: clamp(40px, 2.4242424242vw + 30.9090909091px, 60px);
}
.hero__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 0.9259259259vw + 4.8888888889px, 16px);
}
.hero__item {
  text-align: center;
  min-width: clamp(160px, 4.6296296296vw + 124.4444444444px, 180px);
  padding: 16px 8px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}
.hero__item-title {
  font-size: clamp(16px, 0.2424242424vw + 15.0909090909px, 18px);
  font-weight: 700;
  color: #2d8bea;
}
@media screen and (max-width: 767px) {
  .hero__item {
    min-width: calc((100% - 12px) / 2);
  }
}

/* ------------------------------------------------------------
// 資格勉強で終わらせない。実務に直結するハンズオン研修。
------------------------------------------------------------ */
.training-container__inner {
  max-width: 944px;
  margin-inline: auto;
}
.training-container__list {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 2.3148148148vw + 22.2222222222px, 50px);
}
@media screen and (max-width: 767px) {
  .training-container__list {
    flex-direction: column;
    align-items: center;
  }
}

.training-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  background-color: #fff;
  border: 1px solid #2d8bea;
  border-radius: 12px;
  overflow: hidden;
}
.training-card__img-unit {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.training-card__img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.6s ease;
}
.training-card__img-link {
  display: block;
}
.training-card__img-link:hover .training-card__img {
  transform: scale(1.1);
}
.training-card__tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  z-index: 2;
}
.training-card__tags::after {
  content: "";
  width: 100%;
  order: 1;
}
.training-card__tag {
  order: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  min-height: 20px;
  padding: 3px 6px;
  border-radius: 6px;
  background-color: #2d8bea;
}
.training-card__badge {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #000;
  min-height: 20px;
  padding: 4px 10px;
  border-radius: 6px;
  background-color: #fff;
}
.training-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #2d8bea;
  padding-inline: 20px;
}
.training-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 10px 20px 20px;
}
.training-card__list {
  flex-grow: 1;
  margin: 0 0 20px 0;
}
.training-card__item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.training-card__item img {
  display: block;
  width: 14px;
  padding-top: 6px;
}
.training-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  width: 100%;
  max-width: 220px;
  margin-inline: auto;
  padding: 12px;
  background: #2d8bea;
  border-radius: 6px;
  transition: opacity 0.3s;
}
.training-card__btn img {
  width: 14px;
}
.training-card__btn:hover {
  opacity: 0.7;
}
.training-card__btn:hover img {
  opacity: 1;
}

/* ------------------------------------------------------------
// 学びを、次の案件につなげる。
------------------------------------------------------------ */
.career-section__inner {
  max-width: 1220px;
  margin-inline: auto;
}
.career-section__flex {
  display: flex;
  align-items: center;
  gap: clamp(20px, 9.2592592593vw + -51.1111111111px, 60px);
}
@media screen and (max-width: 991px) {
  .career-section__flex {
    flex-direction: column;
    gap: 40px;
  }
}
.career-section__content {
  flex: 1;
  max-width: 600px;
}
@media screen and (max-width: 960px) {
  .career-section__content {
    max-width: 100%;
  }
}
.career-section__head {
  margin-bottom: 36px;
}
.career-section__head-text {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .career-section__head-text {
    font-size: 28px;
  }
}
.career-section__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}
.career-section__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.career-section__item-num {
  flex-shrink: 0;
  width: 40px;
  height: auto;
  margin: 0;
  line-height: 0;
}
.career-section__item-num img {
  width: 100%;
  height: auto;
}
.career-section__item-body {
  flex: 1;
}
.career-section__item-title {
  font-size: 18px;
  font-weight: 700;
  color: #2b91d5;
  margin-block: 8px;
  line-height: 1.4;
}
.career-section__item-text {
  font-size: 15px;
}
.career-section__img {
  flex: 1;
}
@media screen and (max-width: 991px) {
  .career-section__img {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
  }
}

/* ------------------------------------------------------------
// どう変われるのかを、事例で見る。
------------------------------------------------------------ */
.interview-section__inner {
  max-width: 944px;
  margin-inline: auto;
}
.interview-section__list {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5.5555555556vw + -22.6666666667px, 44px);
}
@media screen and (max-width: 767px) {
  .interview-section__list {
    align-items: center;
    flex-direction: column;
  }
}

.interview-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 450px;
  padding: clamp(20px, 1.2121212121vw + 15.4545454545px, 30px);
  background-color: #fff;
  border: 1px solid #2d8bea;
  border-radius: 12px;
}
.interview-card__head {
  margin-bottom: 20px;
}
.interview-card__user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.interview-card__user-img {
  width: 60px;
  height: 60px;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
}
.interview-card__user-name {
  font-size: 15px;
  font-weight: 700;
}
.interview-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #2d8bea;
  line-height: 1.4;
  margin-bottom: 12px;
}
.interview-card__tags {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: #f2f2f2;
  padding: 4px 10px;
  border-radius: 4px;
}
.interview-card__tag {
  font-size: 10px;
  font-weight: 700;
}
.interview-card__tag-arrow {
  font-size: 10px;
  color: #b3b3b3;
}
.interview-card__body {
  flex-grow: 1;
  margin-bottom: 25px;
}
.interview-card__text {
  font-size: 16px;
  font-weight: 700;
}
.interview-card__foot {
  margin-top: auto;
}
.interview-card__link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 700;
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.interview-card__link-icon {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999999'%3E%3Cpath d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: background-image 0.3s ease;
}
.interview-card__link:hover {
  color: #2d8bea;
  transform: translateY(-2px);
}
.interview-card__link:hover .interview-card__link-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232d8bea'%3E%3Cpath d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z'/%3E%3C/svg%3E");
}