@charset "UTF-8";
/* ============================================================
// casestudy.scss
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// 次の案件へ進んだ事例
------------------------------------------------------------ */
.case-section__inner {
  max-width: 1050px;
  margin-inline: auto;
}

.case-study__grid {
  display: flex;
  gap: clamp(20px, 1.2121212121vw + 15.4545454545px, 30px);
}
@media screen and (max-width: 767px) {
  .case-study__grid {
    flex-direction: column;
  }
}

.case-card {
  flex: 1;
  background: #fff;
  border: 1px solid #2d8bea;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(45, 139, 234, 0.15);
  cursor: default;
}
.case-card__head {
  margin-bottom: 20px;
  padding-inline: clamp(0px, 3.6363636364vw + -13.6363636364px, 30px);
  padding-bottom: 15px;
  border-bottom: 1px solid #2d8bea;
}
.case-card__label {
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.case-card__name {
  font-size: 18px;
  font-weight: 700;
  color: #2d8bea;
}
.case-card__step {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding: 10px;
}
.case-card__step--gray {
  background: rgba(153, 153, 153, 0.1);
}
.case-card__step-tag {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  width: 60px;
}
.case-card__step-tag--before {
  color: #999;
}
.case-card__step-tag--learn {
  color: #333;
}
.case-card__step-tag--select {
  color: #28a745;
}
.case-card__step-text {
  font-size: 15px;
}
.case-card__after {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 6px;
  margin-top: 20px;
  background-color: rgba(34, 140, 204, 0.1);
}
.case-card__after-tag {
  flex-shrink: 0;
  width: 60px;
  font-size: 15px;
  font-weight: 700;
  color: #2d8bea;
}
.case-card__after-text {
  font-size: 18px;
  font-weight: 700;
  color: #2d8bea;
  line-height: 1.6;
}

/* ------------------------------------------------------------
// 年収アップのイメージ
------------------------------------------------------------ */
.case-study-grid {
  display: flex;
  gap: clamp(20px, 1.2121212121vw + 15.4545454545px, 30px);
  width: 100%;
  max-width: 1050px;
  margin-inline: auto;
}
@media screen and (max-width: 991px) {
  .case-study-grid {
    flex-direction: column;
  }
}

.case-study-card {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #2d8bea;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(45, 139, 234, 0.15);
  cursor: default;
}
.case-study-card__head {
  margin-bottom: 20px;
  padding-inline: clamp(0px, 3.6363636364vw + -13.6363636364px, 30px);
  padding-bottom: 15px;
  border-bottom: 1px solid #2d8bea;
}
.case-study-card__id {
  font-weight: 700;
  margin-bottom: 4px;
}
.case-study-card__title {
  font-size: clamp(18px, 0.2424242424vw + 17.0909090909px, 20px);
  font-weight: 700;
  color: #2d8bea;
}
.case-study-card__step-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}
.case-study-card__highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 0.3636363636vw + 10.6363636364px, 15px);
  background-color: rgba(34, 140, 204, 0.1);
  padding: clamp(12px, 0.9696969697vw + 8.3636363636px, 20px) clamp(10px, 1.2121212121vw + 5.4545454545px, 20px);
  border-radius: 6px;
  margin-bottom: 20px;
}
.case-study-card__before {
  font-size: clamp(14px, 0.2424242424vw + 13.0909090909px, 16px);
  font-weight: 700;
}
.case-study-card__arrow {
  font-size: clamp(13px, 0.1212121212vw + 12.5454545455px, 14px);
  font-weight: 700;
  color: #2d8bea;
  padding-top: 2px;
}
.case-study-card__after {
  font-size: clamp(16px, 0.9696969697vw + 12.3636363636px, 24px);
  font-weight: 700;
  color: #2d8bea;
}
.case-study-card__text {
  font-weight: 500;
}

.case-study-note {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-top: 30px;
}