@charset "UTF-8";

html {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 2.416vw; /* 1remを10px */
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ====================================================================
# Common
==================================================================== */
body {
  color: #221916;
}

main {
  background-color: #fff;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none !important;
  }
}

.md-show {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .md-show {
    display: block !important;
  }
}

@media screen and (max-width: 1024px) {
  .lg-none {
    display: none;
  }
}

.lg-show {
  display: none;
}

@media screen and (max-width: 1024px) {
  .lg-show {
    display: block;
  }
}

.inner {
  width: 100%;
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;

}

@media screen and (max-width: 768px) {
  .inner {
    max-width: 600px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section-head {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .section-head {
    display: block;
  }
}

.section-head__main {
  margin-right: 20px;
  flex: 1;
}

.section-head__title {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: 70px;
  display: inline-block;
  background: linear-gradient(90deg, #0d57be 0%, #b5e039 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
  .section-head__title {
    font-size: 38px;
  }
}

.section-head__subtitle {
  font-size: 22px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
  color: #131930;
}

@media screen and (max-width: 768px) {
  .section-head__subtitle {
    font-size: 1.6rem;
  }
}

.section-head__content {
  flex: 1;
}

.section-head__heading {
  font-size: 26px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
  display: inline-block;
  background: linear-gradient(90deg, #0d57be 0%, #29a7bd 47%, #77c61d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
  .section-head__heading {
    margin-top: 30px;
    font-size: 22px;
  }
}

.section-head__description {
  margin-top: 22px;
  font-size: 16px;
  font-weight: 300;
  line-height: 220%;
  letter-spacing: 0.05em;
  color: #131930;
}

@media screen and (max-width: 768px) {
  .section-head__description {
    margin-top: 20px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 160%;
  }
}

/* ====================================================================
# Styles
==================================================================== */
/* header
------------------------------------------------------------- */
.header {
  height: 60px;
  background-color: #00122c;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .header {
    height: 50px;
    position: initial;
  }
}

.header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  .header__inner {
    justify-content: center;
    padding-left: initial;
  }
}

.header__logo {
  max-width: 176px;
  max-height: 30px;
}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 162px;
  }
}

.header__nav {
  margin-left: auto;
  height: inherit;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
}

@media screen and (max-width: 1024px) {
  .header__item:not(:last-child) {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__link {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  padding: 0 13px;
}

@media screen and (max-width: 768px) {
  .header__link {
    font-size: 14px;
  }
}

.header__link.header__link--contact {
  background-color: #ef1b57;
  color: #fff;
  font-weight: 700;
  padding: 0 24px;
  filter: brightness(1);
  transition: filter 0.3s ease;
}

.header__link.header__link--contact:hover {
  filter: brightness(1.5);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .header__link.header__link--contact {
    padding: 10px;
  }
}

.header__name {
  display: flex;
}

.header__name span {
  width: 10rem;
  display: flex;
  margin-left: 14px;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  gap: 0.3em;
  color: white;
}

.header__name span img {
  width: 40px;
  height: auto;
}

.header__name span:before {
  white-space: pre;
  content: "受講者に\A選ばれて";
  display: inline-block;
  color: #f4dab5;
  font-weight: bold;
  line-height: 1.3em;
}

@media screen and (max-width: 768px) {
  .header__name span {
    width: 32px;
    margin-left: 5px;
  }
  .header__name span:before {
    display: none;
  }
}

/* mv
------------------------------------------------------------- */
.mv {
  margin-top: 60px;
  background-color: #f7fafd;
  padding-top: 20px;
  padding-bottom: 33px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .mv {
    padding-top: 40px;
  }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .copy__lead span {
    font-size: 3vw;
  }
  .copy__main {
    font-size: 5.3vw !important;
  }
  .copy__main span {
    font-size: 1em !important;
  }
}

@media screen and (max-width: 768px) {
  .mv {
    margin-top: initial;
    padding-top: 22px;
  }
}

@media screen and (max-width: 768px) {
  .floatingCTA {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
}

.copy {
  width: inherit;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 2rem;
}

@media screen and (max-width: 768px) {
  .copy {
    width: 100%;
    margin: 0 auto;
    align-items: center;
    padding: 0;
  }
}

.copy__lead {
  font-size: 23px;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .copy__lead {
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .copy__lead {
    font-size: min(5.33vw, 30px);
  }
}

.copy__lead span {
  border-bottom: 1px solid;
  position: relative;
}

.copy__main {
  font-size: 52px;
  margin-top: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .copy__main {
    font-size: min(8.47vw, 47px);
    text-align: center;
    letter-spacing: -0.03em;
    margin-top: 3vw;
  }
}

.copy__main span {
  font-size: 48px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.04em;
  color: #fff;
  background-color: #00122c;
  padding: 0 14px;
  margin-right: 6px;
}

@media screen and (max-width: 768px) {
  .copy__main span {
    font-size: 1.02em;
    display: inline-block;
    margin-right: 0;
  }
}

.mv__rate-wrap {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.mv__rate {
  max-width: min(14.55vw, 149px);
  display: flex;
  gap: 10px;
  flex-direction: row;
  align-items: center;
  transform: translateY(-20px);
}

.mv__badge-3 {
  position: absolute;
  width: 180px;
  bottom: 30px;
  right: 30px;
}

@media screen and (max-width: 768px) {
  .mv__rate {
    width: 100%;
    max-width: none;
    display: flex;
    gap: 0;
    flex-direction: row;
    align-items: center;
    transform: none;
    justify-content: space-around;
    margin-top: 3vw;
  }
  .mv__rate img {
    max-width: none;
    width: 30% !important;
  }
}

.mv__career-changes {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.mv__promotion {
  max-width: 520px;
  margin-top: 24px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .mv__promotion {
    margin-top: 12px;
  }
}

.mv__promotion-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .mv__promotion-text {
    display: inline-block;
    text-align: center;
    line-height: 160%;
    position: relative;
  }
}

.mv__promotion-text::before,
.mv__promotion-text::after {
  background-color: #00122c;
  /* 線の色 */
  border-radius: 5px;
  /* 線の両端を丸く */
  content: "";
  height: 2px;
  /* 線の高さ */
  width: 19px;
  /* 線の長さ */
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .mv__promotion-text::before,
  .mv__promotion-text::after {
    position: absolute;
    width: 40px;
  }
}

.mv__promotion-text::before {
  margin-right: 2px;
  /* 文字との余白 */
  transform: rotate(60deg);
  /* 傾ける */
}

@media screen and (max-width: 768px) {
  .mv__promotion-text::before {
    top: 60%;
    left: -34px;
  }
}

.mv__promotion-text::after {
  margin-left: 2px;
  /* 文字との余白 */
  transform: rotate(-60deg);
  /* 傾ける */
}

@media screen and (max-width: 768px) {
  .mv__promotion-text::after {
    top: 60%;
    right: -30px;
  }
}

.mv__promotion-highlight {
  color: #e71651;
  font-size: 17px;
  letter-spacing: 0;
  position: relative;
}

.mv__promotion-highlight::after {
  content: "※3";
  font-size: 10px;
  font-weight: 500;
  position: absolute;
  top: -15px;
  right: -6px;
  color: #221916;
}

@media screen and (max-width: 768px) {
  .mv__promotion-highlight::after {
    top: 10px;
  }
}

.mv__din-font {
  font-family: "din-2014-narrow", sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
}

.mv__link {
  height: 75px;
}

.mv__button {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.08em;
  display: block;
  text-align: center;
  margin-top: 8px;
  margin-right: auto;
  margin-left: auto;
  padding: 22px 0;
  width: 400px;
  border-radius: 100vh;
  border-bottom: 5px solid #830025;
  background: linear-gradient(#ef1b57, #c9063d);
  transition: all 0.2s;
  position: relative;
}

.mv__button:hover {
  border: 1px solid;
  transform: translateY(4px);
  filter: brightness(1.2);
  opacity: 1;
}

.mv__button::after {
  content: url(../images/btn-arrow.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

@media screen and (max-width: 768px) {
  .mv__button {
    width: 100%;
    font-size: min(4.57vw, 16px);
  }
}

.mv__annotations {
  margin-top: 10px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .mv__annotations {
    width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .mv__annotations {
    width: 100%;
  }
}

.mv__annotation {
  font-size: 10px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0;
  text-indent: -2em;
  padding-left: 2em;
}

@media screen and (max-width: 768px) {
  .mv__annotation {
    font-size: 9.5px;
  }
}

.mv__sp {
  margin-top: 13px;
  display: none;
}

@media screen and (max-width: 768px) {
  .mv__sp {
    display: block;
  }
}

.mv__tab {
  display: none;
}

@media screen and (max-width: 1024px) {
  .mv__tab {
    margin-top: 40px;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .mv__tab {
    display: none;
  }
}

/* business
------------------------------------------------------------- */
.business {
  margin-top: 4rem;
  background-color: #062044;
}

h2.section-title {
  text-align: center;
  color: #fff;
  font-size: 28px;
  line-height: 160%;
  letter-spacing: 0.05em;
}

.business__wrapper {
  padding: 40px 0 60px;
}

@media screen and (max-width: 768px) {
  .business__wrapper {
    padding: 30px 0 40px;
  }
}

/* スライダー全体 */
.slider-wrapper {
  /* スライドのグループを横並び */
  display: flex;
  /* はみ出たスライドを隠す */
  overflow: hidden;
  margin-top: 27px;
}

/* スライド7枚のグループ */
.slider {
  -webkit-animation: scroll-left 30s infinite linear 0.5s both;
  animation: scroll-left 30s infinite linear 0.5s both;
  display: flex;
  align-items: center;
}

/* スライド */
.slide {
  margin-right: 12px;
  width: 14.2857142857vw;
  max-height: 130px;
}

@media screen and (max-width: 768px) {
  .slide {
    width: 33.3333333333vw;
  }
}

/* スライドの画像 */
.slide img {
  display: block;
  max-height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

/* CSSアニメーション */
@-webkit-keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@-webkit-keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

/* change
------------------------------------------------------------- */
.change {
  background-color: #f9faff;
}

.change__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

@media screen and (max-width: 768px) {
  .change__inner {
    display: block;
  }
}

.change__text {
  margin-right: 20px;
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  .change__text {
    margin-right: 0;
  }
}

.change__quote {
  font-size: 43px;
  color: #131930;
  font-weight: 200;
  line-height: 220%;
  letter-spacing: 0.13em;
}

@media screen and (max-width: 1024px) {
  .change__quote {
    font-size: 30px;
  }
}

@media screen and (max-width: 768px) {
  .change__quote {
    padding-top: 40px;
    font-size: 20px;
    text-align: center;
  }
}

.change__description {
  margin-top: 46px;
  font-size: 22px;
  color: #131930;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 1024px) {
  .change__description {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .change__description {
    font-size: 14px;
    text-align: center;
  }
}

.change__image {
  margin-right: calc(50% - 50vw);
}

@media screen and (max-width: 768px) {
  .change__image {
    margin-top: 40px;
    margin-left: calc(50% - 50vw);
  }
}

.change__image img {
  max-width: 100%;
  height: auto;
}

/* reason
------------------------------------------------------------- */
.reason {
  padding-top: 68.35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width:1024px) {
  .reason {
    padding-top: 4.747vw;
  }
}
.reason .title {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.reason .popup{
  font-size: 51.78px;
  color: #092041;
  font-weight: bold;
  line-height: 63%;
}
@media screen and (max-width:1024px) {
  .reason .popup{
    font-size: 3.596vw;
  }
}
@media screen and (max-width:768px) {
  .reason .popup{
    font-size: 5.333vw;
  }
}
.reason p {
  font-size: 72.49px;
  color: #092041;
  font-weight: bold;
  line-height: 70%;
}
@media screen and (max-width:1024px) {
  .reason p {
    font-size: 5.034vw;
  }
}
@media screen and (max-width:768px) {
  .reason p {
    font-size: 7.467vw;
  }
}
.reason .sp_note {
  display: none;
}
@media screen and (max-width:768px) {
  .reason .sp_note {
    display: inline;
    font-size: 3.2vw;
    line-height: 160%;
    font-weight: normal;
    width: 78.4vw;
    text-align: left;
    margin-top: 5.536vw;
    color: #000000;
  }
}
.reason p small{
  font-size: 30px;
  vertical-align: text-top;
}
@media screen and (max-width:1024px) {
  .reason p small{
    font-size: 2.083vw;
  }
}
@media screen and (max-width:768px) {
  .reason p small{
    font-size: 3.083vw;
  }
}
.reason .pink_number {
  font-size: 102.19px;
  font-weight: bold;
  color: #EF1B57;
  font-family: 'Urbanist';
}
@media screen and (max-width:1024px) {
  .reason .pink_number {
    font-size: 7.097vw;
  }
}
@media screen and (max-width:768px) {
  .reason .pink_number {
    font-size: 10.525vw;
  }
}
.reason .pink_number small {
  font-size: 76.64px;
}
@media screen and (max-width:1024px) {
  .reason .pink_number small {
    font-size: 5.322vw;
  }
}
@media screen and (max-width:768px) {
  .reason .pink_number small {
    font-size: 7.893vw;
  }
}
.reason .reason_content {
    max-width: 1440px;
    width: 100%;
}
.reason .reason_content div:nth-of-type(1) {
    padding-left: 180px;
    padding-top: 87px;
    padding-bottom: 20px;
}
@media screen and (max-width:1024px) {
  .reason .reason_content div:nth-of-type(1) {
    padding-left: 12.5vw;
    padding-top: 6.042vw;
    padding-bottom: 1.389vw;
  }
}
@media screen and (max-width:768px) {
  .reason .reason_content div:nth-of-type(1) {
    padding-left: 5.333vw;
    padding-top: 1.867vw;
    padding-bottom: 0;
  }
}
.reason .reason_content div:nth-of-type(2){
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.reason .reason_content div .title_gradient{
  font-size: 60px;
  line-height: 75px;
  background: linear-gradient(90deg, #0D57BE 0%, #B5E039 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width:1024px) {
  .reason .reason_content div .title_gradient{
    font-size: 4.167vw;
    line-height: 5.208vw;
  }
}
@media screen and (max-width:768px) {
  .reason .reason_content div .title_gradient{
    font-size: 5.867vw;
    line-height: 142%;
    letter-spacing: 0.333vw;
    background: linear-gradient(90deg,rgba(13, 87, 190, 1) 0%, rgba(41, 167, 189, 1) 40%, rgba(119, 198, 29, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.reason .reason_content div .supports {
  width: 683px;
  height: auto;
  padding: 0;
}
@media screen and (max-width:1024px) {
  .reason .reason_content div .supports {
    width: 47.431vw;
  }
}
@media screen and (max-width:768px) {
  .reason .reason_content div .supports {
    width: 95%;
  }
}
.reason .reason_content .triangle {
  position: relative;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width:1024px) {
  .reason .reason_content .triangle {
    margin-top: 2.083vw;
    margin-bottom: 2.778vw;
  }
}
@media screen and (max-width:768px) {
  .reason .reason_content .triangle {
    margin-top: 0.083vw;
    margin-bottom: 4.778vw;
  }
}
.reason .reason_content .triangle img {
  width: 359.64px;
  height: auto;
}
@media screen and (max-width:1024px) {
  .reason .reason_content .triangle img {
    width: 24.975vw;
  }
}
@media screen and (max-width:768px) {
  .reason .reason_content .triangle img {
    width: 33.975vw;
  }
}
.reason .reason_content .triangle p {
  font-size: 37.88px;
  font-weight: bold;
  color: #FFFFFF;
  position: absolute;
  top: 18px;
  left: 35%;
}
@media screen and (max-width:1024px) {
  .reason .reason_content .triangle p {
    font-size: 2.631vw;
    top: 1.25vw;
  }
}
@media screen and (max-width:768px) {
  .reason .reason_content .triangle p {
    font-size: 4vw;
    top: 1.9vw;
    font-weight: 500;
    left: 33%;
  }
}
.reason .reason_content .result {
  display: flex;
  gap: 55px;
  flex-direction: row;
}
@media screen and (max-width:1024px) {
  .reason .reason_content .result {
    gap: 3.819vw;
  }
}
@media screen and (max-width:768px) {
  .reason .reason_content .result {
    gap: 4.661vw;
  }
}
.reason .reason_content .result img{
  width: 283.7px;
  height: auto;
}
@media screen and (max-width:1024px) {
  .reason .reason_content .result img{
    width: 19.701vw;
  }
}
@media screen and (max-width:768px) {
  .reason .reason_content .result img{
    width: 24.139vw;
  }
}
.development_experience {
  padding: 81px 0;
  display: flex;
  flex-direction: column;
  gap: 70px;
  color: #131930;
  align-items: center;
}
@media screen and (max-width:1170px) {
  .development_experience {
    padding: 5.625vw 0;
    gap: 4.861vw;
  }
}
@media screen and (max-width:768px) {
  .development_experience {
    padding:  9.6vw 0;
  }
}
.development_experience .development_experience_wrapper {
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media screen and (max-width:1170px) {
  .development_experience .development_experience_wrapper {
    gap: 4.861vw;
  }
}
@media screen and (max-width:768px) {
  .development_experience .development_experience_wrapper {
    max-width: 89.333vw;
    gap: 0;
  }
}
.development_experience .title{
  background: linear-gradient(90deg, #0D57BE 0%, #B5E039 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.development_experience .title span{
  font-size: 48px;
  font-weight: bold;
  line-height: 160%;
  letter-spacing: 2px;
  background: linear-gradient(90deg, rgba(13, 87, 190, 1) 0%, rgba(41, 167, 189, 1) 40%, rgba(119, 198, 29, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width:1170px) {
  .development_experience .title span{
    font-size: 3.333vw;
  }
}
@media screen and (max-width:768px) {
  .development_experience .title span{
    font-size: 3.923vw;
  }
}
.development_experience .title p{
  font-size: 60px;
  font-weight: bold;
  line-height: 75px;
  letter-spacing: 2px;
}
@media screen and (max-width:1170px) {
  .development_experience .title p{
    font-size: 4.167vw;
    line-height: 5.208vw;
  }
}
@media screen and (max-width:768px) {
  .development_experience .title p{
    font-size: 5.867vw;
    background: linear-gradient(90deg, rgba(13, 87, 190, 1) 0%, rgba(41, 167, 189, 1) 40%, rgba(119, 198, 29, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 142%;
  }
}
.development_experience .development_example {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1080px;
}
@media screen and (max-width:1170px) {
  .development_experience .development_example {
    gap: 5.556vw;
    max-width: 75vw;
  }
}
@media screen and (max-width:768px) {
  .development_experience .development_example {
    max-width: unset;
    margin-top: 1.867vw;
    margin-bottom: 8vw;
  }
}
.development_experience .development_example .block {
  background-color: #F9FAFF;
  padding: 44px 68px 44px 40px;
  width: 100%;
  display: flex;
  gap: 89px;
}
@media screen and (max-width:1170px) {
  .development_experience .development_example .block {
    padding: 3.056vw 4.722vw 3.056vw 2.778vw;
    gap: 6.181vw;
  }
}
@media screen and (max-width:768px) {
  .development_experience .development_example .block {
    flex-direction: column;
    padding: 5.333vw 8vw 9.333vw 7.733vw;
    gap: 5.333vw;
  }
}
.development_experience .development_example .block:nth-of-type(2) {
  gap: 74px;
}
@media screen and (max-width:1170px) {
  .development_experience .development_example .block:nth-of-type(2) {
    gap: 5.139vw;
  }
}
.development_experience .block_text {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
@media screen and (max-width:1170px) {
  .development_experience .block_text {
    gap: 1.597vw;
  }
}
@media screen and (max-width:768px) {
  .development_experience .block_text {
    gap: 5.333vw;
  }
}
.development_experience h5{
  font-size: 40px;
  line-height: 156%;
  border-left: #B5E039 solid 15px;
  padding-left: 23px;
  margin: 0;
}
@media screen and (max-width:1170px) {
  .development_experience h5{
    font-size: 2.778vw;
    border-left: #B5E039 solid 1.042vw;
    padding-left: 1.597vw;
  }
}
@media screen and (max-width:768px) {
  .development_experience h5{
    font-size: 4.8vw;
    padding-left: 3.2vw;
    border-left: #B5E039 solid 2.4vw;
  }
}
.development_experience .block_text p{
  font-size: 16px;
  line-height: 220%;
  max-width: 504px;
}
@media screen and (max-width:1170px) {
  .development_experience .block_text p{
    font-size: 1.111vw;
  }
}
@media screen and (max-width:768px) {
  .development_experience .block_text p{
    font-size: 3.733vw;
    line-height: 196%;
  }
}
.development_experience .block_text span {
  font-size: 14px;
  line-height: 160%;
  font-weight: normal;
}
@media screen and (max-width:1170px) {
  .development_experience .block_text span {
    font-size: 0.972vw;
  }
}
@media screen and (max-width:768px) {
  .development_experience .block_text span {
    display: none;
  }
}
@media screen and (max-width:768px) {
  .development_experience .block_image {
    display: flex;
  }
}
@media screen and (max-width:768px) {
  .development_experience .development_example .block:nth-of-type(2) .block_image{
    justify-content: right;
  }
}
.development_experience .block_image .block_spnote{
  display: none;
}
@media screen and (max-width:768px) {
  .development_experience .block_image .block_spnote{
    display: inline;
    font-size: 3.733vw;
    line-height: 160%;
    width: 36.8vw;
  }
}
.development_experience .block_image img{
  width: 379px;
  height: auto;
  filter: none;
}
@media screen and (max-width:1170px) {
  .development_experience .block_image img{
    width: 26.319vw;
  }
}
@media screen and (max-width:768px) {
  .development_experience .block_image img{
   width: 40.267vw; 
   margin-top: -9.333vw;
  }
}
.development_experience .mv__link {
  height: 87px;
}
@media screen and (max-width:1170px) {
  .development_experience .mv__link {
    height: 7.042vw;
  }
}
@media screen and (max-width:768px) {
  .development_experience .mv__link {
    height: 15.667vw;
  }
}
.development_experience .mv__button {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.08em;
  display: flex;
  padding-top: 24px;
  width: 634px;
  height: 100%;
  border-radius: 100vh;
  border-bottom: 5px solid #830025;
  background: linear-gradient(#ef1b57, #c9063d);
  transition: all 0.2s;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width:1170px) {
  .development_experience .mv__button {
    font-size: 2.222vw;
    width: 44.028vw;
    border-bottom: 0.347vw solid #830025;
    gap: 2.083vw;
  }
}
@media screen and (max-width:768px) {
  .development_experience .mv__button {
    padding: 5.744vw 2.667vw;
    border-bottom: 1.347vw solid #830025;
  }
}
.development_experience .mv__button:hover {
  border: 1px solid;
  transform: translateY(4px);
  filter: brightness(1.2);
  opacity: 1;
}

.development_experience .mv__button::after {
  content: '';
  background-image: url('../images/btn-arrow.svg');
  background-size: cover;
  width: 14.23px;
  height: 23.77px;
  position: absolute;
  top: 37%;
  right: 20px;
  transform: none;
}
@media screen and (max-width:1170px) {
  .development_experience .mv__button::after {
    right: 1.389vw;
    width: 0.988vw;
    height: 1.651vw;
    top: 41%;
  }
}
@media screen and (max-width:768px) {
  .development_experience .mv__button::after {
    content: '';
    background-image: url('../images/btn-arrow.svg');
    background-size: cover;
    position: absolute;
    top: 37%;
    right: 2.389vw;
    width: 2.5vw;
    height: 4.3vw;
  }
}

@media screen and (max-width: 768px) {
  .development_experience .mv__button {
    width: 100%;
    font-size: 4.267vw;
    align-items: center;
    position: relative
  }
}
.roadmap {
  background-color: #F9FAFF;
  border: solid 1px;
  border-color: rgb(0 0 26 / 10%);
  padding: 64px 0 95px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width:1170px) {
  .roadmap {
    padding: 4.444vw 0 6.597vw 0;
  }
}
@media screen and (max-width:768px) {
  .roadmap {
    padding: 8.533vw 7.2vw 9.867vw;
  }
}
.roadmap div {
  max-width: 1090px;
  width: 100%;
}
@media screen and (max-width:1170px) {
  .roadmap .roadmap_wrapper_pc {
    max-width: 75.694vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap .roadmap_wrapper_pc {
    max-width: unset;
  }
}
/* .roadmap .roadmap_wrapper_sp {
  display: none;
} */

.roadmap_wrapper_pc .title {
    background: linear-gradient(90deg, #0D57BE 0%, #B5E039 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 60px;
    line-height: 75px;
    font-family: 'Josefin Sans';
    font-weight: bold;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .title {
    font-size: 4.167vw;
    line-height: 5.208vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap .roadmap_wrapper_pc .title {
    font-size: 5.867vw;
    line-height: 142%;
    letter-spacing: 0.267vw;
  }
}
.roadmap_wrapper_pc .map {
  display: flex;
  flex-direction: column;
  gap: 75.15px;
  margin-top: 50px;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .map {
    gap: 5.219vw;
    margin-top: 3.472vw;
  }
}
.roadmap_wrapper_pc .map_supports {
  display: flex;
  gap: 162.93px;
  justify-content: center;
  flex-direction: row;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .map_supports {
    gap: 11.315vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .map_supports {
    display: none;
  }
}
.roadmap_wrapper_pc .support_box {
  display: flex;
  flex-direction: column;
  gap: 23.7px;
  padding: 24px;
  max-width: 294.07px;
  border-radius: 36.88px;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .support_box {
    gap: 1.646vw;
    padding: 1.667vw;
    max-width: 20.422vw;
    border-radius: 2.561vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .support_box {
    z-index: 1;
    max-width: 38.422vw;
    margin-top: 1.6vw;
  }
}
.roadmap_wrapper_pc .support_box.study_support {
  background: linear-gradient(180deg, rgba(13, 87, 190, 1) 0%, rgba(41, 167, 189, 1) 40%, rgba(119, 198, 29, 1) 100%);
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .support_box.study_support {
    background: unset;
  }
}
.roadmap_wrapper_pc .support_box.career_support {
  background: linear-gradient(180deg, rgba(215, 67, 104, 1) 0%, rgba(227, 113, 33, 1) 100%);
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .support_box.career_support {
    background: unset;
  }
}
.roadmap_wrapper_pc .support_box .top {
  display: flex;
  gap: 19px;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .support_box .top {
    gap: 1.319vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .support_box.career_support .top {
    justify-content: center;
  }
}
.roadmap_wrapper_pc .support_box h5 {
  font-size: 33.85px;
  color: #FFFFFF;
  margin: 0;
  line-height: 115%;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .support_box h5 {
    font-size: 2.351vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .support_box h5 {
    font-size: 4vw;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .map_supports_sp .title_career {
    background: linear-gradient(180deg, rgba(215, 67, 104, 1) 0%, rgba(227, 113, 33, 1) 100%);
    text-align: center;
  }
  .map_supports_sp .title_support {
    background: linear-gradient(180deg, #0D57BE 0%, #B5E039 100%);
  }
}
.roadmap_wrapper_pc .support_box img {
  width: 91px;
  height: 65.23px;
  filter: none;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .support_box img {
    width: 6.319vw;
    height: 4.53vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .support_box img {
      width: 9.319vw;
      height: 8.53vw;
  }
}
.roadmap_wrapper_pc .checks p {
  font-size: 17.17px;
  color: #FFFFFF;
  line-height: 150%;
  font-weight: 400;
  display: flex;
  align-items: center;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .checks p {
    font-size: 1.192vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .checks p {
    font-size: 2.667vw;
    font-weight: 600;
    color: #131930;
  }
  .roadmap_wrapper_pc .checks p:nth-child(1) {
    margin-bottom: 1.333vw;
    width: 38vw;
  }
}
.roadmap_wrapper_pc .checks p::before {
  background-image: url('../images/roadmap_chack.svg');
  background-size: contain;
  display: block;
  content: '';
  width: 25.75px;
  height: 25.75px;
  margin-right: 3px;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .checks p::before {
    width: 1.788vw;
    height: 1.788vw;
    margin-right: 0.208vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .checks p::before {
    width: 4vw;
    height: 4vw;
    margin-right: 1.208vw;
  }
}
.roadmap_wrapper_pc .map_arrows {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .map_arrows {
    position: relative;
  }
  .roadmap_wrapper_pc .map_arrows::after {
    background-image: url('../images/roadmap_greyarrow_sp.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    content: '';
    width: 44.645vw;
    height: 153.139vw;
    position: absolute;
    top: 10.4vw;
  }
}
.roadmap_wrapper_pc .map_process {
  display: flex;
  flex-direction: row;
  gap: 69px;
  justify-content: center;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .map_process {
    gap: 4.792vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .map_process {
    gap: 13.067vw;
  }
}
.roadmap_wrapper_pc .map_process .border_gradient{
  align-items: center;
  max-width: 387px;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .map_process .border_gradient{
    max-width: 26.875vw;
  }
}
.roadmap_wrapper_pc .map_process .study_process {
  gap: 67px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .map_process .study_process {
    gap: 4.653vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .map_process .study_process {
    gap: 9.333vw;
  }
}
.roadmap_wrapper_pc .map_process .study_process::after {
  display: block;
  content: '';
  background-image: url('../images/study_process_arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 384.42px;
  height: 714px;
  left: 2%;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .map_process .study_process::after {
    width: 26.696vw;
    height: 49.583vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .map_process .study_process::after {
    display: none;
  }
}
.roadmap_wrapper_pc .map_process .career_process::after {
  display: block;
  content: '';
  background-image: url('../images/career_process_arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 384.42px;
  height: 714px;
  right: 0%;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .map_process .career_process::after {
    width: 26.696vw;
    height: 49.583vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .map_process .career_process::after {
    display: none;
  }
}
.roadmap_wrapper_pc .map_process .career_process {
  gap: 46px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .map_process .career_process {
   gap: 3.194vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .map_process .career_process {
   gap: 6.4vw;
  }
}
.roadmap_wrapper_pc .no_color {
  max-width: 904px;
  width: 100%;
  background-color: #FFFFFF;
  border: #00122C 1.86px solid;
  border-radius: 9.41px;
  padding: 22px 0;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 27.87px;
  line-height: 150%;
  font-weight: bold;
  color: #00122C;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .no_color {
    max-width: 62.778vw;
    border: #00122C 0.129vw solid;
    border-radius: 0.653vw;
    padding: 1.528vw 0;
    font-size: 1.935vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .no_color {
    width: 78.4vw;
    max-width: unset;
    padding: 3.733vw 0;
    font-size: 4vw;
    border-radius: 1.6vw;
    z-index: 1;
    border: #00122C 0.267vw solid;
  }
}
.roadmap_wrapper_pc .no_color::after {
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  content: '';
  width: 73.99px;
  height: 73.99px;
  position: absolute;
  right: 37px;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .no_color::after {
    width: 5.138vw;
    height: 5.138vw;
    right: 2.569vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .no_color::after {
    width: 10.621vw;
    height: 10.621vw;
  }
}
.roadmap_wrapper_pc .interview_process {
  margin-bottom: 25.69px;
  position: relative;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .interview_process {
    margin-bottom: 1.784vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .interview_process {
    margin-bottom: 11.2vw;
  }
}
.roadmap_wrapper_pc .start::after {
  background-image: url('../images/roadmap_couseling_icon.svg');
}
.roadmap_wrapper_pc .interview_process::after {
  background-image: url('../images/roadmap_interview_icon.svg');
}
.roadmap_wrapper_pc .end_process::after {
  background-image: url('../images/roadmap_result_icon.svg');
}
 .map_supports_sp {
  display: none;
 }
@media screen and (max-width:768px) {
  .map_supports_sp {
    display: flex;
    gap: 7.467vw;
    justify-content: center;
    flex-direction: row;
  }
}
.roadmap_wrapper_pc .border_gradient div{
  width: 100%;
  border-radius: 11.43px;
  padding: 26.68px 0;
  font-size: 28.58px;
  line-height: 150%;
  font-weight: bold;
  text-align: center;
  z-index: 1;
  background-color: #FFFFFF;
  border: 5px solid transparent;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .border_gradient div{
    border-radius: 0.794vw;
    padding: 1.853vw 0;
    font-size: 1.985vw;
    border: 0.347vw solid transparent;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .border_gradient div{
    width: 32.8vw;
    max-width: unset;
    padding: 3.733vw 0;
    font-size: 4vw;
    border-radius: 1.6vw;
    border: 0.8vw solid transparent;
  }
}
.roadmap_wrapper_pc .border_gradient div:nth-of-type(1){
  margin-top: 52px;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .border_gradient div:nth-of-type(1){
    margin-top: 3.611vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .border_gradient div:nth-of-type(1){
    margin-top: 6.4vw;
  }
}
.roadmap_wrapper_pc .border_gradient div:nth-of-type(3){
  margin-bottom: 52.64px;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .border_gradient div:nth-of-type(3){
    margin-bottom: 3.656vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .border_gradient div:nth-of-type(3){
    margin-bottom: 10.4vw;
  }
}
.roadmap_wrapper_pc .study_process div {
  background: linear-gradient(white, white) padding-box, linear-gradient(to bottom, #0D57BE, #29A7BD, #77C61D) border-box;
  position: relative;
}
.roadmap_wrapper_pc .study_process div::before {
  position: absolute;
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  width: 116.24px;
  height: 41.92px;
  top: -22%;
  left: -16%;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .study_process div::before {
    width: 30.997vw;
    height: 2.911vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .study_process div::before {
    background-size: contain;
      background-repeat: no-repeat;
      width: 16.267vw;
      height: 5.867vw;
      position: absolute;
      content: '';
      top: -3.2vw;
      left: -4vw;
  }
}
.roadmap_wrapper_pc .study_process div:nth-of-type(1)::before {
  background-image: url('../images/fst_month_roadmap.svg');
}
.roadmap_wrapper_pc .study_process div:nth-of-type(2)::before {
  background-image: url('../images/scnd_month_roadmap.svg');
}
.roadmap_wrapper_pc .study_process div:nth-of-type(3)::before {
  background-image: url('../images/thd_month_roadmap.svg');
}
.roadmap_wrapper_pc .interview_process::before {
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  content: '';
  background-image: url('../images/fourth_month_roadmap.svg');
  width: 116.24px;
  height: 41.92px;
  top: -22%;
  left: -5%;
}
@media screen and (max-width:1170px) {
  .roadmap_wrapper_pc .interview_process::before {
    width: 30.997vw;
    height: 2.911vw;
  }
}
@media screen and (max-width:768px) {
  .roadmap_wrapper_pc .interview_process::before {
    width: 16.267vw;
    height: 5.867vw;
    top: -3.2vw;
    left: -4vw;
    
  }
}
.roadmap_wrapper_pc .study_process div p {
  background: linear-gradient(180deg, #0D57BE 0%, #B5E039 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.roadmap_wrapper_pc .career_process div {
  background: linear-gradient(white, white) padding-box, linear-gradient(to bottom, #D74368, #E37121) border-box;

}
.roadmap_wrapper_pc .career_process div p {
  background: linear-gradient(180deg, #D74368 0%, #E37121 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.number {
  position: absolute;
  width: 55px;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .number {
    width: 14.9333333vw;
  }
}

.flex-column-pc {
  display: flex;
  flex-direction: column;
  gap: 96px;
  margin-top: 86px;
}
.flex-column-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .flex-column-sp {
    display: flex;
    flex-direction: column;
    gap: 17.6vw;
    margin-top: 9.33333333vw;
  }
  .flex-column-pc {
    display: none;
  }
}



/* voice
------------------------------------------------------------- */
.voice {
  background-color: #062044;
  padding: 80px 0;
}
.voice .inner {
  max-width: fit-content;
}

@media screen and (max-width: 768px) {
  .voice {
    padding: 5rem 0;
  }
  .voice .inner {
    padding: 0 5.6vw;
  }
}

.voice__title-wrap {
  text-align: center;
  position: relative;
  margin-bottom: 52px;
}

.swiper.voice_wrapper {
  margin: 0 -342px;
}
@media screen and (max-width: 1440px) {
  .swiper.voice_wrapper {
    margin: 0  -23.8vw;
  }
}
@media screen and (max-width: 769px) {
  .swiper.voice_wrapper {
    margin: 0 -25.75vw;
  }
}
@media screen and (max-width: 768px) {
  .swiper.voice_wrapper {
    margin: 0;
  }
}
.swiper.voice_wrapper .swiper-wrapper .swiper-slide {
  width: 516px;
}
@media screen and (max-width: 1440px) {
  .swiper.voice_wrapper .swiper-wrapper .swiper-slide {
    width: 35.833vw;
  }
}
@media screen and (max-width: 768px) {
  /* .swiper.voice_wrapper .swiper-wrapper .swiper-slide {
    max-width: unset;
    width: 88.8vw !important;
  }
  .swiper.voice_wrapper .swiper-wrapper {
    width: 88.8vw !important;
  } */
}

.swiper.voice_wrapper .swiper-wrapper .swiper-slide .card{
  /* width: 516px;   */
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  min-height: 566px ;
}
@media screen and (max-width: 768px) {
  .swiper.voice_wrapper .swiper-wrapper .swiper-slide .card{
    min-height: 121.067vw;
  }
}

.swiper.voice_wrapper .swiper-wrapper .swiper-slide .card .text {
  padding: 20px 30px 30px;
  height: 222px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 29px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .swiper.voice_wrapper .swiper-wrapper .swiper-slide .card .text {
    padding: 2.933vw 3.733vw 3.733vw;
    height: 61.867vw;
    gap: 13vw;
    justify-content: space-between;
  }
}

.swiper.voice_wrapper .swiper-wrapper .swiper-slide .card img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .swiper.voice_wrapper .swiper-wrapper .swiper-slide .card img {
    margin-bottom: 0;
    box-shadow: none;
  }
}

.swiper.voice_wrapper .swiper-wrapper .swiper-slide .card .btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 20px;
  /* margin: 30px 0 54px; */
}
.swiper.voice_wrapper .swiper-wrapper .swiper-slide .card .btn p {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .swiper.voice_wrapper .swiper-wrapper .swiper-slide .card .btn p {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 425px) {
  .swiper.voice_wrapper .swiper-wrapper .swiper-slide .card .btn p {
    font-size: 3.2vw;
  }
}

.swiper.voice_wrapper .card .btn #btn_group {
  display: none;

}
.swiper.voice_wrapper .card .text .voice_text {
  font-size: 14px;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .swiper.voice_wrapper .card .text .voice_text {
    font-size: 3.733vw;
    line-height: 150%;
  }
}
.swiper.voice_wrapper .card .text #voice_text {
  display: none;
}
.swiper.voice_wrapper .card .text #voice_text_closed {
  display: block;
}
.swiper.voice_wrapper .card .text .btn p {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}
.swiper.voice_wrapper .card .text .voice_text span {
  font-weight: bold;
  text-decoration: underline #B5E039 5px;
  text-underline-offset: 0px;
  -webkit-text-decoration-line: underline;
  -webkit-text-decoration-color: #B5E039;
  text-decoration-thickness: 5px;
}

.swiper.voice_wrapper .btn a {
  color: #fff;
  font-size: 14.35px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.08em;
  display: block;
  text-align: center;
  margin-top: 8px;
  margin-right: auto;
  margin-left: auto;
  padding: 19.33px 8.97px;
  width: 305px;
  border-radius: 100vh;
  border-bottom: 5px solid #830025;
  background: linear-gradient(#ef1b57, #c9063d);
  transition: all 0.2s;
  position: relative;
  display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 768px) {
  .swiper.voice_wrapper .btn a {
    width: 54vw;
    font-size: 2.827vw;
    padding: 3.155vw 2.392vw;
  }
}
@media screen and (max-width: 425px) {
  .swiper.voice_wrapper .btn a {
    width: 76vw;
    font-size: 3.827vw;
    padding: 5.155vw 2.392vw;
  }
}
.swiper.voice_wrapper .btn a::after {
  content: '';
  display: block;
  background-image: url('../images/voice_cta_triangle.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 6.88px;
  height: 13.36px;
  right: 19px;
  position: absolute;
}
.swiper.voice_wrapper .btn .toggle_btn {
  font-size: 14px;
  line-height: 196%;
  color: #062044;
  text-decoration: underline;
  /* margin-top: 22px; */
}
@media screen and (max-width: 768px) {
  .swiper.voice_wrapper .btn .toggle_btn {
    font-size: 3.733vw;
  }
}
.voice-pagination {
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .voice-pagination {
    margin-top: 6.667vw;
  }
}
.voice-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: #D9D9D9;
}
.voice-pagination .swiper-pagination-bullet-active {
  background-color: #1068E1;
}

.voice__title-wrap::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #fff;
  width: 55px;
  height: 25px;
  top: 97%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 8px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media screen and (max-width: 768px) {
  .voice__title-wrap::before {
    width: 27px;
    height: 11px;
  }
}

.voice__title {
  color: #131930;
  font-size: 38px;
  font-weight: 800;
  line-height: 150%;
  letter-spacing: 0.05em;
  background-color: #fff;
  display: inline-block;
  text-align: center;
  padding: 30px 102px;
  border-radius: 8px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .voice__title {
    font-size: 20px;
    padding: 15px 47px;
  }
}

.voice__title::before,
.voice__title::after {
  position: absolute;
  display: inline-block;
  content: "";
  background: url(../images/voice-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 23px;
  height: 23px;
}

@media screen and (max-width: 768px) {
  .voice__title::before,
  .voice__title::after {
    width: 12px;
    height: 11px;
  }
}

.voice__title::before {
  top: 21px;
  left: 74px;
}

@media screen and (max-width: 768px) {
  .voice__title::before {
    top: 12px;
    left: 36px;
  }
}

.voice__title::after {
  top: 56px;
  right: 62px;
}

@media screen and (max-width: 768px) {
  .voice__title::after {
    top: 34px;
    right: 32px;
  }
}

.voice__cards {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: top;
}

@media screen and (max-width: 768px) {
  .voice__cards {
    display: block;
  }
}

.voice__card {
  background-color: #fff;
  border-radius: 8px;
  max-width: 516px;
  height: 640px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .voice__card {
    height: auto;
  }
  .voice__cards {
    overflow: visible;
  }
}

.voice__heading {
  background-color: #b5e039;
  border-radius: 8px 8px 0 0;
  padding: 26px 0;
  text-align: center;
  color: #221916;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .voice__heading {
    font-size: 1.8rem;
    padding: 2rem 0;
  }
}

.voice__contents {
  padding: 17px 31px 51px;
}

@media screen and (max-width: 767px) {
  .voice__text__hidden {
    font-size: 1.6rem;
    line-height: 160%;
    font-weight: 400;
    display: none;
  }
  .voice__cards .voise__card___switch {
    margin-top: 1rem;
    display: block;
    text-align: center;
    font-size: 1.6rem;
    text-decoration: underline;
    color: #062044;
  }

  .voice__contents {
    padding: 1.4rem 2rem 3rem;
  }

  .voice__image,
  .career-support-voice__img img {
    box-shadow: none !important;
    margin-bottom: 0 !important;
  }
}

.voice__lead {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.voice__quote {
  color: #ef1b57;
  width: 300px;
  font-size: 26px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 767px) {
  .voice__quote {
    font-size: 1.8rem;
    font-weight: 700;
  }
}

.voice__graduate {
  width: 120px;
}

.voice__name {
  text-align: center;
}

.voice__text {
  margin-top: 17px;
  font-size: 16px;
  font-weight: 300;
  line-height: 200%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .voice__text {
    margin-top: 17px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.05em;
  }
}

.voice__text span {
  background: linear-gradient(transparent 40%, #fdf62b 60%);
}

/* ====================================================================
# job change
==================================================================== */
.job-change {
  padding-top: 60px;
  padding-bottom: 0;
  border: 20px solid #b5e039;
}

@media screen and (max-width: 768px) {
  .job-change {
    border: 1rem solid #b5e039;
    padding-top: 0;
    padding-bottom: 5rem;
  }

  .job-change .inner {
    padding: 3rem 3rem 0;
  }

  .curriculum__inner.inner {
    padding-top: 5rem;
  }

  .curriculum,
  .support,
  .career,
  .career-support-voice {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .curriculum__text__open,
  .curriculum__text__close {
    display: inline-block;
    width: 100%;
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    margin-top: 1.8rem;
  }

  .curriculum__text__open img,
  .curriculum__text__close img {
    width: 2rem;
    height: auto;
    display: inline;
    vertical-align: middle;
    margin-right: 0.5rem;
  }

  .curriculum__text__close img {
    transform: rotate(180deg);
  }

  .curriculum__image {
    margin-top: 1.8rem !important;
  }

  .curriculum__box.opened .curriculum__text__open {
    display: none;
  }

  .curriculum__box:not(.opened) .curriculum__text__close {
    display: none;
  }

  .career-support-voice {
    padding-top: 5rem !important;
  }

  .support-details {
    margin-top: 4rem !important;
    gap: 4rem !important;
  }

  .support-detail__text,
  .career-support__text,
  .curriculum__text {
    font-weight: 400 !important;
    line-height: 160% !important;
  }

  .support-detail__switch {
    font-weight: 400 !important;
  }

  .swiper-pagination-voices {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 1.6rem;
  }
}

/* success rate
------------------------------------------------------------- */
.success-rate {
  text-align: center;
}

.success-rate__title {
  color: #00122c;
  font-size: 48px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  .success-rate__title {
    font-size: 29px;
  }
}

.success-rate__highlight {
  font-family: "Urbanist", sans-serif;
  color: #ef1b57;
  font-size: 64px;
}

@media screen and (max-width: 768px) {
  .success-rate__highlight {
    font-size: 39px;
  }
}

.success-rate__highlight.success-rate__highlight--small {
  font-size: 48px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .success-rate__highlight.success-rate__highlight--small {
    font-size: 29px;
  }
}

.success-rate__highlight--small::after {
  content: "※";
  color: #221916;
  font-size: 12px;
  font-weight: 300;
  position: absolute;
  bottom: 40%;
  left: 90%;
}

.success-rate__note {
  margin-top: 25px;
  color: #221916;
  font-size: 12px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0;
}

.success-rate__features {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

@media screen and (max-width: 1024px) {
  .success-rate__features {
    display: block;
    margin-top: 20px;
  }
}

.feature {
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 2px 7px rgba(54, 73, 111, 0.25);
  padding: 14px 19px 11px;
  position: relative;
}

.feature:not(:first-child) {
  margin-left: 20px;
}

@media screen and (max-width: 1024px) {
  .feature:not(:first-child) {
    margin-top: 30px;
    margin-left: 0;
  }
}

.feature__title > a {
  display: block;
  color: #00122c;
  font-size: 28px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1024px) {
  .feature__title > a {
    font-size: 18px;
  }
}

.feature__title > a > img {
  margin-top: 6px;
}

/* curriculum
------------------------------------------------------------- */
.curriculum {
  padding-top: 100px;
}

.curriculum__content {
  margin-top: 70px;
}

.curriculum__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9faff;
  padding: 40px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .curriculum__box {
    display: block;
    padding: 40px 20px;
  }
}

.curriculum__box:last-child {
  margin-top: 80px;
}

.curriculum__main {
  width: 50.4%;
}

@media screen and (max-width: 768px) {
  .curriculum__main {
    width: 100%;
  }
}

.curriculum__title {
  color: #131930;
  font-size: 40px;
  font-weight: 800;
  line-height: 156%;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 28px;
}

@media screen and (max-width: 768px) {
  .curriculum__title {
    font-size: 28px;
    padding-left: 20px;
  }
}

.curriculum__title::before {
  display: inline-block;
  content: "";
  background-color: #b5e039;
  width: 15px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 768px) {
  .curriculum__title::before {
    width: 8px;
    height: 43px;
  }
}

.curriculum__title::after {
  display: inline-block;
  content: "";
  background: url(../images/pickup-flag.png);
  width: 138px;
  height: 63px;
  position: absolute;
  left: 40px;
  bottom: 110%;
}

.curriculum__text {
  color: #131930;
  font-size: 16px;
  font-weight: 300;
  line-height: 220%;
  letter-spacing: 0.05em;
  margin-top: 23px;
}

.curriculum__text span {
  font-size: 14px;
}

.curriculum__image {
  width: 45.7%;
}

@media screen and (max-width: 768px) {
  .curriculum__image {
    width: 100%;
    margin-top: 48px;
  }
}

/* support
------------------------------------------------------------- */
.support {
  margin-top: 80px;
  padding: 97px 0;
  background-color: #f9faff;
}

@media screen and (max-width: 768px) {
  .support {
    padding: 5rem 0;
    background-color: #EEEFF6;
  }
}

.support-details {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(487px, 1fr));
  gap: 106px;
}

@media screen and (max-width: 1024px) {
  .support-details {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 62px;
  }
}

.support-detail__icon {
  width: 105px;
  height: 98px;
}

@media screen and (max-width: 768px) {
  .support-detail__icon {
    width: 61px;
    height: 60px;
  }
}

.support-detail__title {
  margin-top: 20px;
  color: #131930;
  font-size: 32px;
  font-weight: 800;
  line-height: 160%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .support-detail__title {
    font-size: 20px;
  }
}

.support-detail__wrap {
  background-color: #fff;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .support-detail__wrap {
    padding: 23px;
  }
}

.support-detail__image {
  margin-top: 20px;
}

.support-detail__description {
  font-size: 30px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .support-detail__description {
    font-size: 20px;
  }
}

.support-detail__description.support-detail__description--first {
  color: #0c846d;
}

.support-detail__description.support-detail__description--second {
  color: #0c5d85;
}

.support-detail__description.support-detail__description--third {
  color: #2d8a37;
}

.support-detail__description.support-detail__description--fourth {
  color: #bd9d1d;
}

.support-detail__accordion {
  margin-top: 24px;
  display: none;
}

.support-detail__text {
  color: #131930;
  font-size: 16px;
  font-weight: 300;
  line-height: 210%;
  letter-spacing: 0.05em;
}

.support-detail__switch {
  margin-top: 24px;
  text-align: center;
  cursor: pointer;
  text-decoration: underline;
  color: #408bd1;
  font-size: 16px;
  font-weight: 300;
  line-height: 210%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .support-detail__switch {
    margin-top: 14px;
  }
}

.support-detail__switch.active {
  color: #767676;
}

/* career
------------------------------------------------------------- */
.career {
  padding-top: 140px;
}

@media screen and (max-width: 768px) {
  .career {
    padding-top: 80px;
  }
}

.career-support {
  margin-top: 54px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.career-support__item {
  background-color: #f9faff;
  border-radius: 11px;
  box-shadow: 5px 6px #dee1ed;
  padding: 30px;
  height: 100%;
}

.career-support__item.career-support__item--first {
  max-width: 477px;
  width: 100%;
  margin-right: 33px;
}

.career-support__item.career-support__item--second {
  max-width: 560px;
  width: 100%;
}

.career-support__item.career-support__item--third {
  max-width: 290px;
  width: 100%;
  margin-right: 42px;
}

.career-support__item.career-support__item--fourth {
  max-width: 577px;
  width: 100%;
  margin-right: 62px;
}

.career-support__item.career-support__item--fifth {
  max-width: 430px;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .career-support__item.career-support__item--first,
  .career-support__item.career-support__item--second,
  .career-support__item.career-support__item--third,
  .career-support__item.career-support__item--fourth,
  .career-support__item.career-support__item--fifth {
    max-width: 100%;
    margin-top: 50px;
    margin-right: 0;
  }
}

.career-support__title {
  color: #131930;
  font-size: 30px;
  font-weight: 800;
  line-height: 180%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1024px) {
  .career-support__title {
    font-size: 22px;
  }
}

.career-support__text {
  color: #131930;
  font-size: 16px;
  font-weight: 300;
  line-height: 210%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1024px) {
  .career-support__text {
    font-size: 16px;
    margin-top: 12px;
  }
}

.career-support__text span {
  color: #ef1b57;
  font-weight: 700;
}

.career-support__image {
  max-width: 465px;
  margin-top: 70px;
  padding-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .career-support__image {
    display: none;
  }
}

.career-support__image-lg {
  display: none;
}

@media screen and (max-width: 1024px) {
  .career-support__image-lg {
    width: 340px;
    margin: 0 auto;
    padding-bottom: 0;
    display: block;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1159px) {
  /* for middle size */
  .career-support {
    justify-content: center;
  }

  .career-support__item.career-support__item--first {
    max-width: 400px;
    margin-right: 30px;
  }

  .career-support__item.career-support__item--second {
    max-width: 500px;
  }

  .career-support__item.career-support__item--third {
    max-width: 290px;
  }

  .career-support__item.career-support__item--fourth {
    max-width: 520px;
    margin-right: 30px;
  }

  .career-support__item.career-support__item--fifth {
    max-width: 380px;
  }
}

/* career support voice
------------------------------------------------------------- */
.career-support-voice {
  margin-top: 54px;
}

@media screen and (max-width: 768px) {
  .career-support-voice {
    margin-top: 130px;
  }
  .career-support-voice__title {
    font-size: 1.8rem !important;
  }
}

.career-support-voice__wrap {
  text-align: center;
}

.career-support-voice__title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.05em;
  background-color: #00122c;
  text-align: center;
  display: inline-block;
  padding: 7px 38px;
  position: relative;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.career-support-voice__title::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #00122c;
  width: 30px;
  height: 15px;
  top: 88%;
  left: 50%;
  transform: translate(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.career-support-voice__items .swiper-wrapper {
  margin-top: 31px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .career-support-voice__items .swiper-wrapper {
    display: flex;
    gap: 0;
    height: auto !important;
  }
}

.career-support-voice__items .swiper-wrapper .career-support-voice__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 30px 20px;
}

@media screen and (max-width: 768px) {
  .career-support-voice__items .swiper-wrapper .career-support-voice__item {
    display: flex;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: auto !important;
  }
}

.career-support-voice__img {
  width: 76px;
  margin-right: 12px;
}

.career-support-voice__content {
  max-width: 388px;
  width: 100%;
}

.career-support-voice__category {
  color: #4170d5;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .career-support-voice__category {
    margin-top: 10px;
  }
}

.career-support-voice__category.career-support-voice__category--woman {
  color: #ff6449;
}

.career-support-voice__text {
  margin-top: 25px;
  color: #131930;
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .career-support-voice__text {
    margin-top: 15px;
    font-weight: 400 !important;
    line-height: 160% !important;
  }

  .swiper-pagination-career-support {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
  }
}

/* course list
------------------------------------------------------------- */
.course-list {
  padding: 80px;
}

@media screen and (max-width: 768px) {
  .course-list {
    padding: 21.33vw 0;
  }
}

.course-list .sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  .course-list .sp_only {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .course-list__inner {
    max-width: 97.3vw;
  }
}

.course-list__head {
  text-align: center;
  padding-bottom: 13.33vw;
}

@media screen and (min-width: 768px) {
  .course-list__head {
    padding-bottom: 0;
  }
}

.course-list__img {
  max-width: 330px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .course-list__img {
    max-width: 88vw;
    margin: 0 auto;
  }
}

.course-list__title {
  margin-top: 6px;
  color: #131930;
  font-size: 40px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .course-list__title {
    font-size: 8vw;
  }
}

.course-list__subtitle {
  margin-top: 30px;
  color: #131930;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .course-list__subtitle {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .course-list__subtitle {
    font-size: 3.73vw;
    line-height: 196%;
  }
}

.course-list__courses {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 12px;
}

@media screen and (max-width: 1024px) {
  .course-list__courses {
    gap: 50px;
  }
}

.course {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #beb6b6;
}

.course__head {
  background-color: #10457d;
  border-radius: 10px 10px 0 0;
  text-align: center;
  padding: 16px;
}

.course__title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0;
}

.recommendation {
  position: relative;
}

.recommendation::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 28px;
  width: 124px;
  height: 47px;
  background: url(../images/osusume.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.course__type {
  background-color: #fff;
  margin-top: 6px;
  padding: 2px 14px;
  display: inline-block;
  border-radius: 50px;
  color: #004da0;
  font-size: 12px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0;
}

.course__bk-white {
  background-color: #fff;
}

.course__bk-lightblue {
  background-color: #f0f6fc;
}

.course__definition {
  display: flex;
  align-items: center;
  padding: 16px;
  width: 100%;
}

.course__definition.course__definition-passive {
  padding: 26px 16px;
}

.course__definition:last-child {
  border-radius: 0 0 10px 10px;
}

.course__term {
  color: #10457d;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0;
  width: 67px;
  margin-right: 25px;
}

.course__description {
  color: #131930;
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0;
  width: calc(100% - 92px);
}

.course__description-list {
  list-style: none;
}

.course__description.course__description-active span {
  color: #ff006b;
  font-size: 16px;
  font-weight: 700;
}

.course-price__highlight {
  color: #ff006b;
}

.course-price__lead,
.regular__price-lead {
  border-radius: 50px;
  border: 1px solid;
  padding: 2px 10px;
  display: inline-block;
  font-weight: 500;
}

.course-price__txt {
  margin-top: 8px;
  font-weight: 700;
}

.course-price__price {
  font-weight: 700;
  font-size: 32px;
  display: flex;
  align-items: baseline;
  margin-top: 5px;
  line-height: 100%;
  letter-spacing: 0;
  font-family: "din-2014-narrow", sans-serif;
}

.course-price__price span {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
}

.course-price__real {
  font-size: 14px;
  font-weight: 500;
  writing-mode: vertical-rl;
  line-height: 100%;
  letter-spacing: 0;
  margin-right: 2px;
  font-family: "Noto Sans JP", sans-serif;
}

.regular {
  margin-top: 20px;
}

.regular__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.02em;
  padding-bottom: 8px;
}

.regular__price-wrap {
  margin-top: 6px;
}

.regular__price-wrap:last-child {
  margin-top: 17px;
}

.regular__price {
  margin-top: 9px;
  font-size: 13px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0;
}

.regular__price span {
  font-size: 24px;
  font-family: "din-2014-narrow", sans-serif;
}

.red_banner {
  background-image: url(../images/red_banner.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 487.6px;
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 70px auto 40px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .red_banner {
    max-width: 33.88vw;
    height: 5.27vw;
    margin: 6.03vw auto 2.77vw;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .red_banner {
    max-width: 53.184vw;
    height: 8.33vw;
    margin: 6.83vw auto 3.9vw;
  }
}
@media screen and (max-width: 767px) {
  .red_banner {
    max-width: 89.3vw;
    margin: 0 auto 7.272vw;
    height: 13.84vw;
  }
}

.red_banner p {
  color: #ffffff;
  font-size: 21.6px;
  line-height: 31.2px;
  font-weight: bold;
  letter-spacing: 0.6px;
  display: inline-flex;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .red_banner p {
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .red_banner p {
    font-size: 2.355vw;
  }
}

@media screen and (max-width: 767px) {
  .red_banner p {
    font-size: 3.957vw;
    line-height: 5.7vw;
    letter-spacing: 0.109vw;
  }
}

.red_banner p:before {
  content: "";
  display: block;
  background-image: url(../images/red_banner_icon.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  align-self: anchor-center;
  margin-right: 6px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .red_banner p:before {
    width: 1.94vw;
    height: 1.94vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .red_banner p:before {
    width: 2.99vw;
    height: 2.99vw;
    margin-right: 5px;
  }
}

@media screen and (max-width: 767px) {
  .red_banner p:before {
    width: 5vw;
    height: 5vw;
    margin-right: 1.098vw;
  }
}

.red_banner p small {
  font-size: 19.2px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .red_banner p small {
    font-size: 1.33vw;
  }
}

@media screen and (max-width: 767px) {
  .red_banner p small {
    font-size: 3.517vw;
  }
}

.course-table {
  width: 1100px;
  box-shadow: 5px 6px 10px -8px #333;
  border-collapse: collapse;
  border-spacing: 0;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table {
    width: 76.38vw;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table {
    width: 94.66vw;
    margin: 0 -80px;
  }
}

@media screen and (max-width: 767px) and (min-width: 0px) {
  .course-table {
    display: none;
    width: unset;
  }
}

.tablet_only {
  display: none;
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .tablet_only {
    display: block;
  }
}

.course-table thead th {
  border: 0;
  padding: 0;
}

.course-table thead td {
  border: 0;
  padding: 0;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table thead th {
    width: 22.68vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table thead th:not(:first-child) {
    width: 28.3vw;
  }
}

.course-table thead th:nth-child(2) .th {
  border-radius: 10px 0 0 0;
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table thead th:nth-child(2) .th a p {
    background-color: #019abe;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table thead th:nth-child(2) .th .big {
    filter: drop-shadow(1px 1px 1px #008ebe);
    text-shadow: 1px 1px 1px #008ebe;
    -webkit-text-stroke: 3px #008ebe;
    paint-order: stroke fill;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table thead th:nth-child(3) .th .big {
    filter: drop-shadow(1px 1px 1px #d7406d);
    text-shadow: 1px 1px 1px #d7406d;
    -webkit-text-stroke: 3px #d7406d;
    paint-order: stroke fill;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table thead th:nth-child(4) .th .big {
    filter: drop-shadow(1px 1px 1px #3a2385);
    text-shadow: 1px 1px 1px #3a2385;
    -webkit-text-stroke: 3px #3a2385;
    paint-order: stroke fill;
  }
}

.course-table thead th:nth-child(3) .th {
  background: linear-gradient(90deg, #d7406d, #e3731e);
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table thead th:nth-child(3) .th a p {
    background-color: #dc5351;
  }
}

.course-table thead th:nth-child(4) .th {
  background: linear-gradient(90deg, #3a2385, #1e7de3);
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table thead th:nth-child(4) .th a p {
    background-color: #2e4aae;
  }
}

.th {
  display: flex;
  background: linear-gradient(90deg, #008ebe, #00b1be);
  padding: 26px 20px;
  position: relative;
  width: 328px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .th {
    padding: 1.8vw 1.38vw;
    width: 22.68vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .th {
    width: 100%;
    padding: 1.82vw;
  }
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  th {
    width: 22.68vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  th:not(:first-child) {
    width: 28.3vw;
  }
}

.th > div {
  display: inline-grid;
  font-weight: normal;
  grid-gap: 3px;
  grid-template-rows: auto auto 30px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .th > div {
    z-index: 2;
    grid-gap: 3px;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .th > div {
    grid-gap: 0;
    z-index: 2;
  }
}

.th > div span {
  color: #ffffff;
  font-size: 14px;
  display: inline;
  font-weight: normal;
  text-align: start;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .th > div span {
    font-size: 0.97vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .th > div span:first-child {
    margin-bottom: 0.4vw;
    line-height: 140%;
    font-size: 1.56vw;
  }
}

.th > div span .under_bar {
  text-decoration: underline solid #ffffff;
  display: inline;
  font-weight: normal;
}

.th > div .big {
  font-size: 24px;
  font-weight: bold;
  display: inline;
  text-align: start;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .th > div .big {
    font-size: 1.66vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .th > div .big {
    margin-bottom: 1.56vw;
    font-size: 2.43vw;
  }
}

.th > div .big .small {
  font-size: 20px;
  display: inline;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .th > div .big .small {
    font-size: 1.388vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .th > div .big .small {
    font-size: 2.02vw;
  }
}

.th > div a {
  margin-top: 3px;
  justify-self: flex-start;
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .th > div a {
    z-index: 1;
  }
}

.th > div a p {
  font-size: 12px;
  color: #ffffff;
  border: 1px solid;
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding: 3px 23px;
  gap: 6px;
  display: inline-flex;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .th > div a p {
    font-size: 0.83vw;
    border-radius: 2.77vw;
    padding: 0.25vw 1.68vw;
    gap: 0.416vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .th > div a p {
    font-size: 1.5625vw;
    line-height: 136%;
    letter-spacing: 0;
    border-radius: 5.21vw;
    padding: 0.6vw 1.5625vw;
    gap: 0.78vw;
  }
}

.th > div a p:after {
  content: "";
  display: block;
  background-image: url(../images/white_arrow.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 5px;
  height: 9px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .th > div a p:after {
    width: 0.347vw;
    height: 0.625vw;
  }
}

.th img {
  height: auto;
  position: absolute;
  z-index: 1;
}

.th .bootcamp {
  width: 182px;
  top: -4px;
  right: -12px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .th .bootcamp {
    height: 13vw;
    max-width: 12.74vw;
    top: -0.4vw;
    right: -0.8vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .th .bootcamp {
    width: 21.66vw;
    height: 21vw;
  }
}

.th .parttime {
  width: 126px;
  top: -4px;
  right: -4px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .th .parttime {
    width: 10.069vw;
    top: -0.77vw;
    right: -0.5vw;
    height: 11.6vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .th .parttime {
    width: 16.41vw;
    top: -1.1vw;
    right: -2.3vw;
    scale: 94%;
    height: 19vw;
  }
}

.th .expert {
  width: 142px;
  top: -2px;
  right: -17px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .th .expert {
    height: 11.5vw;
    width: 11vw;
    top: -0.6vw;
    right: -1.94vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .th .expert {
    width: 17vw;
    top: -0.3vw;
    right: -1vw;
    height: 18vw;
    scale: 103%;
  }
}

.percent {
  background-color: #092041;
  position: relative;
  z-index: 1;
}

.percent span {
  color: #fff048;
  font-size: 14px;
  line-height: 160%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding: 15px 0;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .percent span {
    font-size: 0.97vw;
    padding: 1.041vw 0;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .percent span {
    padding: 1.5625vw 0;
    font-size: 1.54vw;
    letter-spacing: 0;
  }
}

.percent span p {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .percent span p {
    font-size: 1.25vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .percent span p {
    font-size: 1.983vw;
  }
}

.percent .triangle {
  position: absolute;
  display: inline-block;
  border-top: 100px solid #092041; /* 三角形の高さ */
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 8px solid #092041;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  left: 47%;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .percent .triangle {
    border-top: 6.94vw solid #092041; /* 三角形の高さ */
    border-left: 3.47vw solid transparent;
    border-right: 3.47vw solid transparent;
    border-top: 0.55vw solid #092041;
    border-left: 0.69vw solid transparent;
    border-right: 0.69vw solid transparent;
  }
}

.course-table tbody tr:nth-of-type(odd) th {
  background-color: #ececec;
  color: #00122c;
}

.course-table tbody tr:nth-of-type(odd) td {
  background-color: #f5f5f5;
}

.course-table tbody tr:nth-of-type(even) th {
  background-color: #f5f5f5;
  color: #00122c;
}

.course-table tbody tr:nth-of-type(even) td {
  background-color: #fcfcfc;
}

.course-table tbody tr:last-of-type th {
  border-radius: 0 0 0 10px;
}

.course-table tbody tr:first-child {
  border-bottom: 1px dashed #e3e3e3;
}

.course-table tbody tr:first-child th {
  background-color: #c30044;
  color: #ffffff;
  border-radius: 10px 0 0 0;
}

.course-table tbody tr:first-child td {
  background-color: #ffffff;
}

.course-table tbody tr:first-child td div {
  height: 120px;
  align-items: center;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:first-child td div {
    height: 8.33vw;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody tr:first-child td div {
    height: 11.718vw;
  }
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:nth-of-type(8) td img {
    width: 0.972vw;
    height: 0.972vw;
  }
  .course-table tbody tr:nth-of-type(8) td span {
    font-size: 0.972vw;
    margin-bottom: 7px;
  }
}

.course-table tbody tr:nth-of-type(n + 3) {
  border-top: 1px solid #e3e3e3;
}

.course-table tbody tr:nth-of-type(2) th {
  background-color: #c30044;
  color: #ffffff;
}

.course-table tbody tr:nth-of-type(2) td {
  background-color: #ffffff;
}

.course-table tbody tr:nth-of-type(2) td div {
  display: flex;
  flex-direction: column;
  height: 90px;
  padding: 0 17px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:nth-of-type(2) td div {
    height: 6.25vw;
    padding: 0 0.8vw;
  }
}

.course-table tbody tr:nth-of-type(2) td:nth-of-type(1) div {
  align-items: anchor-center;
  flex-direction: row;
  gap: 3px;
  .text_black {
    text-align: center;
  }
}
@media screen and (max-width: 1023px) {
  .course-table tbody tr:nth-of-type(2) td:nth-of-type(1) div {
    flex-direction: column;
  }
}

.course-table tbody tr:nth-of-type(2) td:not(:first-child) div .text_black {
  text-indent: -1.2em;
  padding-left: 1em;
}

.course-table tbody tr:nth-of-type(3) {
  height: 100px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:nth-of-type(3) {
    height: 6.94vw;
  }
}

.course-table tbody tr:nth-of-type(3) td {
  vertical-align: middle;
  justify-content: center;
}

.course-table tbody tr:nth-of-type(3) td .price_cell {
  vertical-align: middle;
  display: grid;
  gap: 12px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:nth-of-type(3) td .price_cell {
    gap: 0.83vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody tr:nth-of-type(3) td .price_cell {
    gap: 1.3vw;
  }
}

.course-table tbody tr:nth-of-type(3) td .price_cell div {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: normal;
}

.course-table tbody tr:nth-of-type(3) td .price_cell div span {
  color: #00122c;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:nth-of-type(3) td .price_cell div span {
    font-size: 0.97vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody tr:nth-of-type(3) td .price_cell div span {
    font-size: 1.56vw;
    display: inline-block;
    text-align: center;
  }
}

.course-table tbody tr:nth-of-type(3) td .price_cell div span:nth-child(1) {
  display: inline-flex;
  align-items: center;
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody tr:nth-of-type(3) td .price_cell div span:nth-child(1) {
    display: unset;
  }
}

.course-table tbody tr:nth-of-type(3) td .price_cell div span:nth-child(2) {
  align-self: end;
  font-weight: normal;
  padding-right: 22px;
  font-size: 12px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:nth-of-type(3) td .price_cell div span:nth-child(2) {
    padding-right: 1.527vw;
    font-size: 0.83vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody tr:nth-of-type(3) td .price_cell div span:nth-child(2) {
    font-size: 1.56vw;
    padding-right: 0;
    align-self: center;
  }
}

.course-table tbody tr:nth-of-type(3) td .price_cell div span p {
  color: #00122c;
  font-weight: normal;
  line-height: 125%;
}

.course-table tbody tr:nth-of-type(3) td .price_cell div span p small {
  color: #00122c;
  font-size: 10px;
  font-weight: normal;
  vertical-align: text-top;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:nth-of-type(3) td .price_cell div span p small {
    font-size: 0.694vw;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody tr:nth-of-type(3) td .price_cell div span p small {
    font-size: 0.8vw;
    vertical-align: super;
  }
}

.course-table tbody tr:nth-of-type(3) td .price_cell span {
  display: inline-flex;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: normal;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:nth-of-type(3) td .price_cell span {
    font-size: 0.972vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody tr:nth-of-type(3) td .price_cell span {
    font-size: 1.56vw;
    display: inline-block;
    text-align: center;
  }
}

.course-table tbody tr:nth-of-type(3) td .price_cell span p {
  color: #00122c;
  font-size: 14px;
  font-weight: normal;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:nth-of-type(3) td .price_cell span p {
    font-size: 0.972vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody tr:nth-of-type(3) td .price_cell span p {
    font-size: 1.56vw;
    text-align: center;
  }
}

.course-table tbody tr:nth-of-type(4) td:nth-of-type(1) .text_normal {
  color: #f30055;
  font-weight: bold;
}

.course-table tbody tr:nth-of-type(4) td div {
  height: 80px;
  align-items: center;
  flex-direction: column;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:nth-of-type(4) td div {
    height: 5.55vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody tr:nth-of-type(4) td div {
    height: 10.416vw;
  }
}

.course-table tbody tr:nth-of-type(4) td:nth-of-type(1) div .text_normal {
  align-items: center;
  text-align: center;
}

.course-table
  tbody
  tr:nth-of-type(4)
  td:nth-of-type(1)
  div
  .text_normal
  .yellow_marker {
  background: #ffeb33;
  display: inline;
}

.course-table tbody tr:nth-of-type(4) td:nth-of-type(1) div .text_normal small {
  font-size: 10px;
  vertical-align: super;
}

.course-table tbody tr:nth-of-type(5) td div {
  flex-direction: column;
  align-items: center;
  height: 80px;
  gap: 5px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:nth-of-type(5) td div {
    height: 5.55vw;
    gap: 0.347vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody tr:nth-of-type(5) td div {
    height: 10.416vw;
    gap: 1.3vw;
  }
}

.course-table tbody tr:nth-of-type(5) td:nth-of-type(1) div p {
  font-weight: bold;
}

.course-table tbody tr:nth-of-type(5) td:nth-of-type(2) div p {
  font-weight: bold;
}

.course-table tbody tr:nth-of-type(6) td:nth-of-type(1) div p {
  font-weight: bold;
}

.course-table tbody tr:nth-of-type(7) td:nth-of-type(2) div p {
  font-weight: bold;
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody tr:nth-of-type(5) td:not(:last-child) .text_normal {
    font-weight: bold;
  }
}

.course-table tbody tr:nth-of-type(6) td div {
  flex-direction: column;
  align-items: center;
  height: 80px;
  gap: 5px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:nth-of-type(6) td div {
    height: 5.55vw;
    gap: 0.347vw;
  }
}

.course-table tbody tr:nth-of-type(7) td div {
  flex-direction: column;
  align-items: center;
  height: 80px;
  gap: 5px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:nth-of-type(7) td div {
    height: 5.55vw;
    gap: 0.347vw;
  }
}

.course-table tbody tr:last-of-type {
  height: 314px;
  vertical-align: middle;
  padding-left: 36.83px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:last-of-type {
    height: 21.8vw;
    padding-left: 2.557vw;
  }
}

.course-table tbody tr:last-of-type td {
  vertical-align: middle;
  padding: 30px 0 30px 45px;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:last-of-type td {
    padding: 2.08vw 0 2.08vw 3.125vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody tr:last-of-type td {
    padding: 3.9vw 1.041vw;
  }
}

.course-table tbody tr:last-of-type td .support_list {
  width: 100%;
  max-width: 229px;
  height: auto;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr:last-of-type td .support_list {
    max-width: 15.9vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody tr:last-of-type td span {
    font-size: 12px;
    letter-spacing: 0;
  }
}

.course-table tbody tr th {
  font-size: 14px;
  letter-spacing: 1px;
  padding: 0 13px;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody tr th {
    font-size: 0.9vw;
    padding: 0 0.4vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody tr th {
    font-size: 1.5625vw;
    padding: 0;
    letter-spacing: -1px;
  }
}

.course-table tbody tr:nth-of-type(4) td div div {
  justify-content: unset;
}
.course-table tbody td div {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.course-table tbody td div p {
  color: #f30055;
}

.course-table tbody td div .vertical {
  font-size: 14px;
  line-height: 130%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody td div .vertical {
    font-size: 0.972vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody td div .vertical {
    font-size: 1.43vw;
    line-height: 120%;
    letter-spacing: 0;
  }
}

.course-table tbody td div .price {
  font-family: din-2014, sans-serif;
  font-weight: bold;
  font-size: 45px;
  line-height: 160%;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody td div .price {
    font-size: 3.125vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody td div .price {
    font-size: 4.16vw;
    line-height: 160%;
    letter-spacing: 0;
  }
}

.course-table tbody td div div {
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-self: anchor-center;
  padding: 0;
}

.course-table tbody td div div small,
span {
  line-height: 130%;
  font-weight: bold;
}

.course-table tbody td div div small {
  font-size: 12px;
  line-height: 100%;
  color: #f30055;
  align-self: baseline;
  vertical-align: super;
  /* koko */
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody td div div small {
    font-size: 0.83vw;
    /* koko */
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody td div div small {
    font-size: 1.17vw;
    font-weight: bold;
  }
}

.course-table
  tbody
  tr:nth-of-type(4)
  td:nth-of-type(1)
  div
  .text_normal
  span
  .yellow_marker {
  background: #ffeb33;
  display: inline;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table
    tbody
    tr:nth-of-type(4)
    td:nth-of-type(1)
    div
    .text_normal
    span
    .yellow_marker {
    background: #ffeb33;
    display: inline;
  }
}

.course-table
  tbody
  tr:nth-of-type(4)
  td:nth-of-type(1)
  div
  .text_normal
  span
  small {
  vertical-align: super;
  font-weight: normal;
}

.course-table tbody td div div span {
  font-size: 18px;
  display: flex;
  line-height: 100%;
  color: #f30055;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody td div div span {
    font-size: 1.25vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody td div div span {
    font-size: 1.735vw;
    letter-spacing: 0;
  }
}

/* 
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody tr:nth-of-type(4) td:nth-of-type(1) .text_normal div div .yellow_marker {

  }
} */

.course-table tbody td div div span p {
  font-size: 14px;
  align-self: end;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody td div div span p {
    font-size: 0.972vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody td div div span p {
    font-size: 1.3vw;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody td .text_together {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
}

.course-table tbody td div .text_black {
  font-size: 12px;
  color: #171717;
  font-weight: 500;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody td div .text_black {
    font-size: 0.83vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody td div .text_black {
    font-size: 1.5625vw;
  }
}

.course-table tbody td div .text_normal {
  font-size: 16px;
  line-height: 136%;
  color: #131930;
  font-weight: 500;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody td div .text_normal {
    font-size: 1.11vw;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody td div .text_normal {
    font-size: 1.5625vw;
    letter-spacing: 0;
  }
}

.course-table tbody td div .hukidasi {
  font-size: 12px;
  color: #131930;
  font-weight: 500;
  line-height: 136%;
  background-color: #ffeb33;
  border-radius: 17px;
  padding: 5px 17px;
  position: relative;
  display: flex;
  align-items: center;
}

.course-table tbody td div .clock:before {
  width: 11px;
  height: 12px;
  margin-bottom: 1px;
  margin-right: 2px;
  content: "";
  display: block;
  background-image: url(../images/icon_clock.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.course-table tbody td div .leaf:before {
  width: 12px;
  height: 12px;
  margin-bottom: 1px;
  margin-right: 2px;
  content: "";
  display: block;
  background-image: url(../images/icon_leaf.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.course-table tbody td div .study:before {
  width: 15px;
  height: 12px;
  margin-bottom: 1px;
  margin-right: 2px;
  content: "";
  display: block;
  background-image: url(../images/icon_study.svg);
  background-size: contain;
}

.course-table tbody td div .cup:before {
  width: 13px;
  height: 13px;
  margin-bottom: 1px;
  margin-right: 2px;
  content: "";
  display: block;
  background-image: url(../images/icon_cup.svg);
  background-size: contain;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody td div .hukidasi {
    font-size: 0.83vw;
    border-radius: 1.18vw;
    padding: 0.347vw 1.18vw;
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody td div .hukidasi {
    font-size: 1.3vw;
    border-radius: 2.21vw;
    padding: 0.78vw 1.69vw;
  }
}

.course-table tbody td div .hukidasi:after {
  content: "";
  display: inline-block;
  border-top: 12px solid #ffeb33;
  border-left: 15px solid transparent;
  border-right: -7px solid transparent;
  position: absolute;
  bottom: -19%;
  left: 43%;
}

@media screen and (max-width: 1160px) and (min-width: 1024px) {
  .course-table tbody td div .hukidasi:after {
    border-top: 0.83vw solid #ffeb33;
    border-left: 1.041vw solid transparent;
    border-right: -0.486vw solid transparent;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .course-table tbody td div .hukidasi:after {
    border-top: 0.91vw solid #ffeb33;
    border-left: 0.91vw solid transparent;
    border-right: 0px solid transparent;
    bottom: -25%;
    left: 45%;
  }
}

@media screen and (max-width: 767px) {
  .courses_tabs_content .sp_table tr td .yellow_wrapper .leaf:after {
    content: "";
    display: inline-block;
    border-top: 1.4vw solid #ffeb33;
    border-left: 1.8vw solid transparent;
    border-right: 0px solid transparent;
    bottom: 45%;
    left: 47%;
    position: absolute;
  }
}

@media screen and (max-width: 767px) {
  .courses_tabs_content .sp_table tr td .yellow_wrapper .cup:after {
    content: "";
    display: inline-block;
    border-top: 1.4vw solid #ffeb33;
    border-left: 1.8vw solid transparent;
    border-right: 0px solid transparent;
    bottom: 45%;
    left: 47%;
    position: absolute;
  }
}

@media screen and (max-width: 767px) {
  .courses_tabs_content .sp_table tr td .yellow_wrapper .study:after {
    content: "";
    display: inline-block;
    border-top: 1.4vw solid #ffeb33;
    border-left: 1.8vw solid transparent;
    border-right: 0px solid transparent;
    bottom: 45%;
    left: 47%;
    position: absolute;
  }
}

@media screen and (max-width: 767px) {
  .courses_tabs_content .sp_table tr td .yellow_wrapper .clock:after {
    content: "";
    display: inline-block;
    border-top: 1.4vw solid #ffeb33;
    border-left: 1.8vw solid transparent;
    border-right: 0px solid transparent;
    bottom: 45%;
    left: 47%;
    position: absolute;
  }
}

.sp_wrapper {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp_wrapper {
    display: block;
  }
}

.sp_wrapper .course_cards {
  width: 100%;
  margin: 0 auto;
}

.green-checkmark {
  color: #131930;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: anchor-center;
  gap: 2px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .green-checkmark {
    font-size: 3.73vw;
    gap: 0.53vw;
  }
}

.green-checkmark img {
  display: block;
  width: 14px;
  height: 14px;
}

@media screen and (max-width: 767px) {
  .green-checkmark img {
    width: 3.73vw;
    height: 3.73vw;
  }
}

.green-checkmark .scrum {
  color: #131930;
  font-size: 7px;
}

@media screen and (max-width: 767px) {
  .green-checkmark .scrum {
    font-size: 1.76vw;
  }
}

.grey-cross .scrum {
  color: #cccccc;
  font-size: 7px;
}

@media screen and (max-width: 767px) {
  .grey-cross .scrum {
    font-size: 1.76vw;
  }
}

.grey-cross {
  color: #cccccc;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .grey-cross {
    font-size: 3.73vw;
    gap: 0.53vw;
  }
}

.grey-cross img {
  display: block;
  width: 14px;
  height: 14px;
}

@media screen and (max-width: 767px) {
  .grey-cross img {
    width: 3.73vw;
    height: 3.73vw;
  }
}

/* <!-- sp CoursesCards start --> */
.sp_coursescards_wrapper {
  display: none;
}
.course_cards .course_card .colored_top div p {
  font-weight: 300;
}
.course_cards .course_card .colored_top div p .under_bar {
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .sp_coursescards_wrapper {
    display: flex;
    flex-direction: column;
    gap: 27px;
  }
  .course_cards {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
  }
  .course_cards .course_card {
    max-width: 89.3vw;
    width: 100%;
    box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.2), 0 3px 9px 0 rgba(0, 0, 0, 0.19);
    margin: 5.06vw auto 0;
    border-radius: 2.66vw;
  }
  .course_cards .course_card:first-child {
    margin: 0;
  }
  .course_cards .course_card .colored_top {
    width: 100%;
    border-radius: 2.66vw;
    position: relative;
  }
  .course_cards .course_card #bootcamp {
    background: linear-gradient(90deg, #008ebe, #00b1be);
  }
  .course_cards .course_card #parttime {
    background: linear-gradient(90deg, #d7406d, #e3731e);
  }
  .course_cards .course_card #expert {
    background: linear-gradient(90deg, #3a2385, #1e7de3);
  }
  .course_cards .course_card .colored_top div {
    display: flex;
    flex-direction: column;
    gap: 1.3vw;
    padding: 6.93vw 5.3vw;
    position: relative;
    letter-spacing: 0;
    margin-bottom: 5.9vw;
  }
  .course_cards .course_card .colored_top div img {
    display: block;
    position: absolute;
  }
  .course_cards .course_card #bootcamp div img {
    width: 49vw;
    height: 48vw;
    top: -4%;
    right: -5%;
  }
  .course_cards .course_card #parttime div img {
    width: 34vw;
    height: 42vw;
    right: -1%;
    top: -2%;
  }
  .course_cards .course_card #expert div img {
    width: 40vw;
    height: 43vw;
    top: -5%;
    right: -4%;
  }
  .course_cards .course_card .colored_top div p {
    color: #ffffff;
    font-size: 3.73vw;
    display: inline;
  }
  .course_cards .course_card .colored_top div p .under_bar {
    text-decoration: underline solid #ffffff;
    display: inline;
    text-underline-offset: 3px;
    font-weight: 200;
  }
  .course_cards .course_card .colored_top div .big {
    font-weight: bold;
    display: inline;
    font-size: 6.4vw;
    z-index: 2;
  }
  .course_cards .course_card .colored_top div .big .small {
    font-size: 5.3vw;
  }
  .course_cards .course_card .colored_top div a {
    margin-top: 0.8vw;
    z-index: 2;
  }
  .course_cards .course_card .colored_top div a p {
    font-size: 3.7vw;
    color: #ffffff;
    border: 0.3vw solid;
    border-radius: 10.6vw;
    display: flex;
    align-items: center;
    padding: 0.8vw 4.73vw;
    grid-gap: 1.6vw;
    gap: 1.6vw;
    display: inline-flex;
    font-weight: 400;
  }
  .course_cards .course_card .colored_top div a p:after {
    content: "";
    display: block;
    background-image: url(../images/white_arrow.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 1.647vw;
    height: 2.925vw;
  }
  .course_cards .course_card .colored_top .percent {
    background-color: #092041;
    position: relative;
    z-index: 1;
    padding: 0;
  }
  .course_cards .course_card .colored_top .percent p {
    color: #fff048;
    font-size: 3.73vw;
    line-height: 160%;
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding: 2.66vw 0;
  }
  .course_cards .course_card .colored_top .percent p span {
    font-size: 4.8vw;
    font-weight: bold;
  }
  .course_cards .course_card .colored_top .percent span {
    padding: 0;
  }
  .course_cards .course_card .colored_top .percent .triangle {
    position: absolute;
    display: inline-block;
    left: 47%;
    bottom: -11%;
    border-top: 1.6vw solid #092041;
    border-left: 2.13vw solid transparent;
    border-right: 2.13vw solid transparent;
    padding: 0;
    margin-bottom: 0 !important;
  }
  .course_cards .course_card .bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .course_cards .course_card .bottom .pink_text {
    display: flex;
    align-items: center;
    color: #f30055;
    gap: 1.06vw;
    position: relative;
  }
  .course_cards .course_card .bottom .pink_text div:nth-of-type(1) p {
    font-size: 3.2vw;
    font-weight: 500;
    line-height: 130%;
    text-align: center;
    letter-spacing: 0;
  }
  .course_cards .course_card .bottom .pink_text div:nth-of-type(2) p {
    font-size: 12vw;
    font-family: din-2014, sans-serif;
    font-weight: bold;
    line-height: 160%;
    letter-spacing: 0;
  }
  .course_cards .course_card .bottom .pink_text div:nth-of-type(3) {
    display: flex;
    flex-direction: column;
  }
  .course_cards .course_card .bottom .pink_text div:nth-of-type(3) small {
    font-size: 3.2vw;
    font-weight: bold;
    letter-spacing: 0;
  }
  .course_cards .course_card .bottom .pink_text div:nth-of-type(3) p {
    font-size: 4.8vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 109%;
  }
  .course_cards .course_card .bottom .pink_text div:nth-of-type(3) p span {
    font-size: 3.73vw;
  }
  .course_cards .course_card .bottom .pink_text:after {
    content: "";
    position: absolute;
    left: 7%;
    bottom: 0;
    height: 0.26vw;
    width: 86%;
    border-bottom: 1px solid #dbdbdb;
  }
  .course_cards .course_card .bottom .prices {
    margin: 0 6.53vw 0 12.26vw;
    padding: 5.33vw 0px;
  }
  .course_cards .course_card .bottom .prices .price {
    vertical-align: middle;
    display: grid;
    grid-gap: 3.2vw;
    gap: 3.2vw;
  }
  .course_cards .course_card .bottom .prices .price div {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: normal;
  }
  .course_cards .course_card .bottom .prices .price div p {
    color: #00122c;
    font-size: 3.73vw;
    font-weight: bold;
    align-items: end;
  }
  .course_cards .course_card .bottom .prices .price div p span {
    color: #00122c;
    font-weight: normal;
    line-height: 125%;
    padding-right: 0;
    margin-bottom: 1vw;
  }
  .course_cards .course_card .bottom .prices .price div p span small {
    color: #00122c;
    font-size: 2.66vw;
    font-weight: normal;
    vertical-align: text-top;
  }
  .course_cards .course_card .bottom .prices .price div span {
    align-self: end;
    font-weight: normal;
    padding-right: 5.86vw;
    font-size: 3.2vw;
    margin-top: -1vw;
  }
  .course_cards .course_card .bottom .prices .price p {
    display: inline-flex;
    font-size: 3.73vw;
    font-weight: bold;
    letter-spacing: normal;
  }
  .course_cards .course_card .bottom .prices .price p span {
    color: #00122c;
    font-size: 3.73vw;
    font-weight: normal;
  }
}

/* <!-- sp CoursesCards end  --> */

.course_tabs_title {
  font-size: 6.4vw;
  line-height: 8.53vw;
  letter-spacing: 0.36vw;
  font-weight: 500;
  color: #222222;
  text-align: center;
  margin: 8.2vw 0 5vw 0;
}

.course_tabs_tab {
  background-color: white;
}

.courses_tabs_active {
  background-color: pink;
}

.courses_tabs_content {
  display: none;
}

.courses_tabs_show {
  display: block;
}

.course_tabs {
  display: flex;
  align-items: center;
  max-width: 89.33vw;
  width: 100%;
  justify-content: space-around;
  margin: 0 auto;
}

.course_tabs_tab {
  font-size: 3.73vw;
  font-weight: normal;
  line-height: 140%;
  letter-spacing: 0.53vw;
  color: #cccccc;
  text-align: center;
  padding-bottom: 2.66vw;
  width: 100%;
  position: relative;
}

.course_tabs_tab:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.26vw;
  background-color: #cccccc;
  bottom: 0;
  left: 0%;
}

.courses_tabs_active.bootcamp {
  background: -webkit-linear-gradient(45deg, #008ebe, #00b1be);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.courses_tabs_active.bootcamp:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.8vw;
  background: linear-gradient(45deg, #008ebe, #00b1be);
  bottom: 0;
  left: 0%;
}

.courses_tabs_active.parttime {
  background: -webkit-linear-gradient(45deg, #d7406d, #e3731e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.courses_tabs_active.parttime:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.8vw;
  background: linear-gradient(45deg, #d7406d, #e3731e);
  bottom: 0;
  left: 0%;
}

.courses_tabs_active.expert {
  background: -webkit-linear-gradient(45deg, #3a2385, #1e7de3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.courses_tabs_active.expert:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.8vw;
  background: linear-gradient(45deg, #3a2385, #1e7de3);
  bottom: 0;
  left: 0%;
}

.courses_tabs_content .sp_table {
  display: block !important;
  width: 100% !important;
  max-width: 89.33vw;
  margin: 2.66vw auto 0;
  box-shadow: unset !important;
  border-spacing: 0;
}

.courses_tabs_content .sp_table tr td {
  width: 77%;
}

.courses_tabs_content .sp_table tr:nth-of-type(n + 2) th {
  border-top: 1px solid #e3e3e3;
}

.courses_tabs_content .sp_table tr:nth-of-type(n + 2) td {
  border-top: 1px solid #e3e3e3;
}

.courses_tabs_content .sp_table tr td .yellow_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.courses_tabs_content .sp_table tr td .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.courses_tabs_content .sp_table tr td .yellow_wrapper,
.wrapper .text_black,
.fukidasi {
  font-size: 4.26vw;
  line-height: 136%;
  font-weight: 400;
  letter-spacing: 0;
  color: #131930;
  text-align: center;
}

.courses_tabs_content .sp_table tr td .yellow_wrapper .bold_black {
  font-weight: bold;
}

.courses_tabs_content .sp_table tr td .yellow_wrapper .fukidasi {
  background-color: #ffeb33;
  font-size: 3vw;
  border-radius: 4.53vw;
  padding: 1.33vw 4.53vw;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .courses_tabs_content .sp_table tr td .yellow_wrapper,
  .wrapper .fukidasi {
    display: flex;
    gap: 1vw;
    position: relative;
  }
}

.courses_tabs_content .sp_table tr td .yellow_wrapper .clock:before {
  width: 2.93vw;
  height: 3.46vw;
  margin-bottom: 1px;
  margin-right: 2px;
  content: "";
  display: block;
  background-image: url(../images/icon_clock.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.courses_tabs_content .sp_table tr td .yellow_wrapper .cup:before {
  width: 3.46vw;
  height: 3.46vw;
  margin-bottom: 1px;
  margin-right: 2px;
  content: "";
  display: block;
  background-image: url(../images/icon_cup.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.courses_tabs_content .sp_table tr td .yellow_wrapper .leaf:before {
  width: 3.2vw;
  height: 3.2vw;
  margin-bottom: 1px;
  margin-right: 2px;
  content: "";
  display: block;
  background-image: url(../images/icon_leaf.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.courses_tabs_content .sp_table tr td .yellow_wrapper .study:before {
  width: 4vw;
  height: 3.2vw;
  margin-bottom: 1px;
  margin-right: 2px;
  content: "";
  display: block;
  background-image: url(../images/icon_study.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.courses_tabs_content .sp_table tr td .yellow_wrapper {
  padding: 4vw 0px;
}

.courses_tabs_content .sp_table tr td .wrapper {
  padding: 7.73vw 0;
}

.courses_tabs_content .sp_table tr th {
  height: 21.33vw;
  text-align: center;
  vertical-align: middle;
  width: 20.26vw;
  font-size: 3.2vw;
  color: #00122c;
  letter-spacing: 0;
  font-weight: bold;
}

.courses_tabs_content .sp_table tr:nth-of-type(odd) th {
  background: #f5f5f5;
}

.courses_tabs_content .sp_table tr:nth-of-type(odd) td {
  background: #fcfcfc;
}

.courses_tabs_content .sp_table tr:nth-of-type(even) th {
  background: #ececec;
}

.courses_tabs_content .sp_table tr:nth-of-type(even) td {
  background: #f5f5f5;
}

.courses_tabs_content .sp_table tr:nth-of-type(5) {
  height: 83.73vw;
}

.courses_tabs_content .sp_table tr:nth-of-type(5) th {
  border-radius: 0 0 0 2.6vw;
}

.courses_tabs_content .sp_table tr:nth-of-type(5) td {
  padding: 8vw 3vw 6vw;
}

.courses_tabs_content .sp_table tr:nth-of-type(5) td span {
  margin-bottom: 2.4vw;
}

.courses_tabs_content .sp_table tr td .guarantee_pink {
  font-size: 4.26vw;
  color: #f30055;
  line-height: 150%;
  letter-spacing: 0;
  font-weight: bold;
  text-align: center;
  padding: 4vw 0;
}

.courses_tabs_content .sp_table tr td .guarantee_highlight {
  background-color: #ffeb33;
  display: inline;
}

.courses_tabs_content .sp_table tr td .pink {
  font-size: 2.13vw;
  vertical-align: super;
}
@media screen and (max-width: 767px) {
  .courses_tabs_content .sp_table tr td .pink {
    font-weight: 500;
  }
}

.course-list__notes {
  max-width: 90%;
  margin: 0 auto;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .course-list__notes {
    text-align: right;
    margin-top: 20px;
  }
}

.course-list__note {
  color: #00122c;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-indent: -2em;
  padding-left: 2em;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .course-list__note {
    font-size: 1.16vw;
  }
}
@media screen and (max-width: 767px) {
  .course-list__note {
    font-size: 3.2vw;
    line-height: 4.26vw;
    letter-spacing: 0.26vw;
  }
}

/* cta
------------------------------------------------------------- */
.cta-first {
  background: url(../images/cta-first_bg.png);
}

.cta-second {
  background: url(../images/cta-second_bg.png);
}

.cta-first,
.cta-second {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .cta-first,
  .cta-second {
    background: #25a4df;
    background: linear-gradient(90deg, #83e4e1 0%, #25a4df 100%);
  }
}

.cta-first__img,
.cta-second__img {
  width: 269px;
}

.cta__text {
  max-width: 690px;
  margin-left: auto;
  padding-top: 194px;
  padding-bottom: 95px;
}

@media screen and (max-width: 768px) {
  .cta__text {
    padding-top: 50px;
    padding-bottom: 27px;
  }
}

.cta__description {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .cta__description {
    font-size: 22px;
    text-align: center;
  }
}

.cta__button {
  display: block;
  margin-top: 32px;
  max-width: 464px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  filter: brightness(1);
  transition: filter 0.3s ease;
}

@media screen and (max-width: 1024px) {
  .cta__button {
    margin-right: auto;
    margin-left: auto;
  }
}

.cta__button:hover {
  filter: brightness(1.5);
  opacity: 1;
}

.cta__button.cta__button--last {
  margin: 30px auto;
}

/* campers
------------------------------------------------------------- */
.campers {
  background: url(../images/campers_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding-top: 68px;
  padding-bottom: 57px;
}

@media screen and (max-width: 768px) {
  .campers {
    padding-top: 50px;
    background-position: -1300px center;
  }
}

.campers__title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media screen and (max-width: 1024px) {
  .campers__title {
    display: block;
  }
}

.campers__maintitle {
  max-width: 462px;
  margin-right: 100px;
}

@media screen and (max-width: 1024px) {
  .campers__maintitle {
    width: 242px;
    margin: 0 auto;
  }
}

.campers__head {
  color: #131930;
}

@media screen and (max-width: 1024px) {
  .campers__head {
    max-width: 543px;
    margin-right: auto;
    margin-left: auto;
  }
}

.campers__lead {
  font-size: 26px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1024px) {
  .campers__lead {
    font-size: 20px;
    margin-top: 34px;
  }
}

.campers__description {
  margin-top: 23px;
  font-size: 16px;
  font-weight: 300;
  line-height: 220%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1024px) {
  .campers__description {
    margin-top: 10px;
  }
}

.campers__details {
  margin-top: 75px;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .campers__details {
    display: block;
    margin-top: 0;
  }
}

.campers__details::before {
  content: "";
  position: absolute;
  width: 271px;
  height: 254px;
  right: 91%;
  top: -30px;
  background: url(../images/campers-coding-1.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .campers__details::before {
    display: none;
  }
}

.campers__details::after {
  content: "";
  position: absolute;
  width: 222px;
  height: 229px;
  left: 92%;
  bottom: -30px;
  background: url(../images/campers-coding-2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  .campers__details::after {
    display: none;
  }
}

.campers__detail {
  max-width: 543px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 100;
}

.campers__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0.05em;
  margin-top: 65px;
}

@media screen and (max-width: 768px) {
  .campers__text {
    line-height: 196%;
  }
}

.campers__activities {
  margin-top: 28px;
  padding: 27px 22px;
  border-radius: 6px;
  border: 1px solid #b6b6b6;
}

.campers__activities-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 160%;
  letter-spacing: 0.05em;
}

.campers__activities-list {
  color: #329879;
  font-size: 16px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .campers__activities-list {
    margin-top: 28px;
  }
}

.campers__activities-item {
  list-style: inside;
}

.campers__image {
  width: 510px;
}

/* tuition
------------------------------------------------------------- */
.tuition {
  background-color: #f9faff;
  padding: 130px 0;
}

@media screen and (max-width: 768px) {
  .tuition {
    padding-bottom: 60px;
  }
}

.tuition__title {
  text-align: center;
}

.tuition__maintitle {
  color: #131930;
  font-size: 40px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
  font-size: 26px;
}

.tuition__subtitle {
  margin-top: 15px;
  color: #131930;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .tuition__subtitle {
    font-size: 16px;
  }
}

.tuition__benefits {
  margin-top: 76px;
}

@media screen and (max-width: 768px) {
  .tuition__benefits {
    margin-top: 86px;
  }
}

.tuition__benefit {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .tuition__benefit {
    display: block;
  }
}

.tuition__benefit:nth-child(even) {
  flex-direction: row-reverse;
}

.tuition__benefit:not(:first-child) {
  margin-top: 160px;
}

@media screen and (max-width: 768px) {
  .tuition__benefit:not(:first-child) {
    margin-top: 80px;
  }
}

.tuition__detail {
  margin: auto 33px;
  max-width: 522px;
}

@media screen and (max-width: 768px) {
  .tuition__detail {
    margin: auto;
  }
}

.tuition__heading {
  color: #00122c;
  font-size: 36px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .tuition__heading {
    font-size: 20px;
  }
}

.tuition__text {
  margin-top: 29px;
  color: #131930;
  font-size: 16px;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .tuition__text {
    line-height: 196%;
  }
}

.tuition__text span {
  font-weight: 800;
  color: #ef1b57;
}

.tuition__picture {
  width: 100vw;
  margin-right: calc(50% - 50vw);
}

@media screen and (max-width: 768px) {
  .tuition__picture {
    width: auto;
    margin-right: 0;
    margin-top: 26px;
  }
}

.tuition__benefit:nth-child(even) .tuition__picture {
  margin-right: 0;
  margin-left: calc(50% - 50vw);
}

@media screen and (max-width: 768px) {
  .tuition__benefit:nth-child(even) .tuition__picture {
    margin-left: 0;
  }
}

/* reskilling
------------------------------------------------------------- */
.reskilling {
  background-color: #fff;
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .reskilling {
    padding: 40px 20px;
  }
}

.reskilling__img {
  max-width: 1000px;
  margin: 0 auto;
}

.reskilling__note {
  text-align: center;
  margin-top: 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.05em;
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width: 768px) {
  .reskilling__note {
    text-align: left;
  }
}

/* counseling
------------------------------------------------------------- */
.counseling {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f8f8f8;
}

@media screen and (max-width: 768px) {
  .counseling {
    padding-top: 60px;
  }
}

.counseling__title-wrap {
  text-align: center;
  @media (min-width: 769px) and (max-width: 1024px) {
    padding-inline: calc(100vw * (20 / 1024));
  }
}

.counseling__title {
  color: #00122c;
  font-size: 48px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.03em;
  display: inline-block;
  position: relative;
}

@media screen and (max-width: 768px) {
  .counseling__title {
    font-size: 30px;
  }
}

.counseling__title::before,
.counseling__title::after {
  display: inline-block;
  position: absolute;
  content: "";
  width: 2px;
  height: 50px;
  background-color: #00122c;
  top: 10px;
}

@media screen and (max-width: 1024px) {
  .counseling__title::before,
  .counseling__title::after {
    display: none;
  }
}

.counseling__title::before {
  rotate: -30deg;
  left: -37px;
}

.counseling__title::after {
  rotate: 30deg;
  right: -27px;
}

.counseling__highlight {
  font-family: "Urbanist", sans-serif;
  color: #ef1b57;
  font-size: 64px;
}

@media screen and (max-width: 768px) {
  .counseling__highlight {
    font-size: 39px;
  }
}

.counseling__highlight.counseling__highlight--small {
  font-size: 48px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .counseling__highlight.counseling__highlight--small {
    font-size: 30px;
  }
}

.counseling__highlight--small::after {
  content: "※";
  color: #221916;
  font-size: 12px;
  font-weight: 300;
  position: absolute;
  bottom: 40%;
  left: 90%;
}

.counseling__note {
  color: #00122c;
  font-size: 12px;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-align: right;
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width: 768px) {
  .counseling__note {
    margin-top: 16px;
    text-align: left;
  }
}

.counseling__head {
  margin-top: 60px;
  @media (min-width: 769px) and (max-width: 1280px) {
    width: calc(100vw * (1024 / 1280));
    margin-inline: auto;
  }
}

.counseling-detail {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .counseling-detail {
    margin-top: 90px;
  }
}

.counseling-detail__title {
  max-width: 900px;
  margin: 0 auto;
}

.counseling-detail__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 85px 40px;
  margin-top: 30px;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .counseling-detail__steps {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    padding: 0;
  }
}

.counseling-detail__step {
  background-color: #fff;
  box-shadow: 0 4px 40px rgba(51, 51, 51, 0.1);
  border-radius: 8px;
  position: relative;
  padding: 50px 60px 30px;
}

@media screen and (max-width: 768px) {
  .counseling-detail__step {
    padding: 50px 28px 20px;
  }
}

.counseling-detail__step-number {
  background-color: #223859;
  display: inline-block;
  padding: 16px 27px;
  border-radius: 100%;
  box-shadow: 0 4px 40px rgba(51, 51, 51, 0.1);
  font-family: "din-2014-narrow", sans-serif;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 92%;
}

.counseling-detail__step-title {
  color: #131930;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
}

.counseling-detail__step-title span {
  color: #83b812;
}

.counseling-detail__step-image {
  margin-top: 36px;
}

.counseling-voice {
  margin-top: 160px;
}

@media screen and (max-width: 768px) {
  .counseling-voice {
    margin-top: 136px;
  }
}

.counseling-voice__title {
  color: #131930;
  font-size: 40px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .counseling-voice__title {
    font-size: 24px;
  }
}

.counseling-voice__items {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.counseling-voice-item {
  box-shadow: 0 4px 40px rgba(51, 51, 51, 0.1);
  background-color: #fff;
  border-radius: 8px;
  padding: 32px 24px;
}

.counseling-voice-item__head {
  display: flex;
}

.counseling-voice-item__img {
  width: 80px;
  height: 80px;
  margin-right: 16px;
}

.counseling-voice-item__lead {
  width: 100%;
}

.counseling-voice-item__category {
  display: inline-block;
  background-color: #83b812;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 3px;
}

.counseling-voice-item__heading {
  margin-top: 8px;
  color: #131930;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
}

.counseling-voice-item__text {
  margin-top: 16px;
  color: #221916;
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0.05em;
}

/* flow
------------------------------------------------------------- */
.flow {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.flow__lead {
  text-align: center;
  color: #221916;
}

.flow__description {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0;
}

.flow__note {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .flow__note {
    text-align: left;
    text-indent: -1em;
    padding-left: 1em;
  }
}

.flow__faq-link {
  margin-top: 16px;
  background-color: #efefef;
  padding: 8px 135px;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .flow__faq-link {
    padding: 8px;
    display: block;
  }
}

.flow__faq-link a {
  color: #221916;
  text-decoration: underline;
}

.flow__title {
  text-align: center;
  margin-top: 40px;
  color: #131930;
  font-size: 40px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  .flow__title {
    font-size: 22px;
    margin-top: 49px;
  }
}

.flow__steps {
  margin-top: 24px;
  background-color: #fff;
  box-shadow: 0 4px 40px rgba(51, 51, 51, 0.1);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .flow__steps {
    display: block;
    box-shadow: none;
    padding: 0 5px;
    margin-top: 49px;
  }
}

.step {
  max-width: 272px;
  padding-right: 24px;
  padding-left: 24px;
  border-right: 1px dashed #999999;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .step {
    border-right: none;
    padding-right: 0;
    padding-left: 0;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1024px) {
  .step:not(:first-child) {
    margin-top: 80px;
  }
}

.step:first-child {
  padding-left: 0;
  max-width: 248px;
}

@media screen and (max-width: 1024px) {
  .step:first-child {
    max-width: 560px;
  }
}

.step:last-child {
  padding-right: 0;
  border-right: none;
  max-width: 248px;
}

@media screen and (max-width: 1024px) {
  .step:last-child {
    max-width: 100%;
    max-width: 560px;
  }
}

.step__number {
  font-family: "Urbanist", sans-serif;
  color: #221916;
  font-size: 54px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  padding-left: 25px;
}

.step__image {
  width: 140px;
  margin-top: 8px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .step__image {
    width: 180px;
  }
}

.step__title {
  text-align: center;
  margin-top: 48px;
  color: #131930;
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1024px) {
  .step__title {
    font-size: 20px;
    margin-top: 24px;
    text-align: left;
  }
}

.step__title span {
  font-size: 14px;
  font-weight: 300;
}

.step__text {
  margin-top: 16px;
  color: #221916;
  font-size: 16px;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 0.04em;
}

/* faq
------------------------------------------------------------- */
.faq {
  background-color: #fafafb;
  padding-top: 64px;
  padding-bottom: 64px;
}

.faq__inner.inner {
  max-width: 1050px;
}

.faq__title {
  text-align: center;
  color: #131930;
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0;
}

.faq__description {
  margin-top: 10px;
  text-align: center;
  color: #131930;
  font-size: 14px;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0;
}

.faq__items {
  margin-top: 24px;
}

.faq__item:not(:last-child) {
  border-bottom: 1px solid #c4c4c4;
}

.faq__question-wrap {
  display: flex;
  position: relative;
  cursor: pointer;
  padding: 30px 20px;
}

.faq__question-wrap::before,
.faq__question-wrap::after {
  position: absolute;
  width: 14px;
  height: 2px;
  right: 3px;
  top: 50%;
  content: "";
  background-color: #221916;
  transition: 0.3s transform, 0.3s opacity;
}

@media screen and (max-width: 768px) {
  .faq__question-wrap::before,
  .faq__question-wrap::after {
    right: 12px;
  }
}

.faq__question-wrap::before {
  transform: rotate(90deg);
}

.faq__question-wrap.is-open::before {
  transform: rotate(180deg);
}

.faq__question-wrap.is-open::after {
  opacity: 0;
}

.faq__question {
  color: #131930;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
  display: flex;
}

.faq__question::before {
  content: "Q";
  color: #83b812;
  margin-right: 8px;
}

.faq__answer {
  color: #131930;
  font-size: 16px;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: 0.03em;
  padding: 0 20px 30px 47px;
  position: relative;
  display: none;
}

.faq__answer::before {
  content: "A";
  color: #c4c4c4;
  font-weight: 700;
  margin-right: 8px;
  position: absolute;
  top: 0;
  left: 20px;
}

.faq__answer a {
  color: #131930;
  text-decoration: underline;
}

/* ====================================================================
# footer
==================================================================== */
.footer {
  background-color: #00122c;
  color: #fff;
}

.footer__logo {
  width: 176px;
  margin: 0 auto;
  padding-top: 26px;
  padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .footer__logo {
    padding-bottom: 26px;
  }
}

.footer__links {
  padding: 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer__links {
    text-align: left;
    padding: 20px;
  }
}

.footer__link-item {
  font-size: 14px;
  font-weight: 300;
}

.footer__link-item:not(:first-child) {
  margin-top: 5px;
}

.footer__link-item a {
  color: #fff;
}

.footer__copyright {
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
  text-align: center;
  display: block;
}

/* caution note
------------------------------------------------------------- */
.caution-note {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #ffe7e5;
}

.caution-note__text {
  text-align: center;
  color: #ef1b57;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  .caution-note {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .caution-note__text {
    font-size: 10px;
  }
}
.swiper_container {
  background: linear-gradient(90deg, #b5e039, #83e4e1, #25a4df 98%);
  padding-bottom: 78px;
  overflow: hidden;
}
.swiper_container .title {
  background-color: #ffffff;
  max-width: 650px;
  width: 100%;
  padding: 28px 46px;
  margin: 70px auto 70.64px;
  position: relative;
  border-radius: 7.07px;
}
.swiper_container .title .triangle {
  display: inline-block;
  border-top: 25px solid #ffffff;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  position: absolute;
  bottom: -19px;
  left: 44%;
}
.swiper_container .title::before {
  background-image: url("../images/swiper_sparkle.webp");
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 22.1px;
  height: 23.45px;
  top: 6px;
  left: 7px;
}
.swiper_container .title::after {
  background-image: url("../images/swiper_sparkle.webp");
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 22.1px;
  height: 23.45px;
  bottom: 10px;
  right: 8px;
}
.swiper_container .title p {
  font-size: 36px;
  line-height: 44.2px;
  color: #00122c;
  letter-spacing: 1.22px;
  font-weight: bolder;
  text-align: center;
}

.career-support-voice__items.swiper {
  width: auto !important;
  max-width: 1440px !important;
  overflow: hidden;
}

.career-support-voice__items.swiper .swiper-slide {
  width: auto;
  overflow: hidden;
}

.swiper img {
  width: 515.09px;
  height: auto;
}
.swiper-button-next {
  background-image: url("../images/next-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 36px;
  width: 100% !important;
  height: 60px !important;
  filter: drop-shadow(0px 0px 24px #000);
}
.swiper-button-prev {
  background-image: url("../images/prev-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 36px;
  width: 100% !important;
  height: 60px !important;
  filter: drop-shadow(0px 0px 24px #000);
}
.voice-swiper-prev, .voice-swiper-next {
  margin: 0 342px;
  margin-top: 10px !important;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
}
@media screen and (max-width: 1440px) {
  .voice-swiper-prev, .voice-swiper-next {
    margin: 0 34vw;
  }
}
@media screen and (max-width: 768px) {
  .voice-swiper-prev, .voice-swiper-next {
    margin: 0;
    margin-top: -5.333vw !important;
    width: 6.667vw !important;
    height: 6.667vw !important;
    min-width: 6.667vw !important;
    min-height: 6.667vw !important;
    right: -6vw !important;
  }
  .voice-swiper-next {
    right: -4vw !important;
  }
  .voice-swiper-prev {
    left: -4vw !important;
  }
}

@media screen and (min-width: 1301px) {
  .swiper.realvoice .swiper-button-prev {
    left: 50%;
    transform: translateX(-25vw);
  }

  .swiper.realvoice .swiper-button-next {
    left: 50%;
    transform: translateX(calc(25vw - 100%));
  }
}

.swiper.realvoice .swiper-slide img {
  filter: drop-shadow(0px 2px 10px #00000034);
}

@media screen and (max-width: 1300px) and (min-width: 769px) {
  .swiper_container {
    padding-bottom: 5.41vw;
  }
  .swiper_container .title {
    max-width: 49.13vw;
    padding: 1.94vw 4.19vw;
    margin: 4.86vw auto 4.9vw;
  }
  .swiper_container .title .triangle {
    border-top: 1.736vw solid #ffffff;
    border-left: 2.916vw solid transparent;
    border-right: 2.916vw solid transparent;
    bottom: -1.32vw;
    left: 45%;
  }
  .swiper_container .title p {
    font-size: 2.6vw;
    line-height: 3.069vw;
    letter-spacing: 0.08vw;
  }
  .swiper_container .title::before {
    width: 1.53vw;
    height: 1.63vw;
    top: 0.416vw;
    left: 0.55vw;
  }
  .swiper_container .title::after {
    width: 1.53vw;
    height: 1.63vw;
    bottom: 0.69vw;
    right: 0.416vw;
  }

  .swiper.realvoice {
    padding: 4.86vw 5.55vw !important;
    transform: scale(1.54);
  }

  .swiper.realvoice .swiper-button-prev {
    left: 50%;
    transform: translateX(-23vw);
  }

  .swiper.realvoice .swiper-button-next {
    left: 50%;
    transform: translateX(calc(23vw - 100%));
  }

  .swiper img {
    width: 35.77vw;
  }
}

@media screen and (max-width: 768px) {
  .swiper {
    width: 100%;
    max-width: 768px !important;
    overflow: visible !important;
    transform: scale(1) !important;
    padding: 0 !important;
  }
  .swiper_container {
    padding: 2rem;
  }
  .swiper-slide {
    box-shadow: unset;
    overflow: visible !important;
  }
  .swiper img {
    max-width: 89.33vw;
    width: 100%;
    height: auto;
    margin: 0 auto 6.6vw;
    box-shadow: 0 0 15px -10px rgba(0, 0, 0, 0.2),
      0 9px 30px 0 rgba(0, 0, 0, 0.19);
  }
  .swiper_container .title {
    border-radius: 1.045vw;
    max-width: 89.6vw;
    padding: 3.73vw 0;
    margin: 7vw auto;
  }
  .swiper_container .title .triangle {
    border-top: 3.736vw solid #ffffff;
    border-left: 4.916vw solid transparent;
    border-right: 4.916vw solid transparent;
    position: absolute;
    bottom: -2.32vw;
    left: 44%;
  }
  .swiper_container .title p {
    font-size: 5.33vw;
    line-height: 6.53vw;
    letter-spacing: 0.08vw;
  }
  .swiper_container .title::before {
    width: 3.2vw;
    height: 3.2vw;
    top: 0.416vw;
    left: 0.55vw;
  }
  .swiper_container .title::after {
    width: 3.2vw;
    height: 3.2vw;
    bottom: 0.69vw;
    right: 0.416vw;
  }
}

.is-sp {
  display: none;
}

.is-pc {
  display: none;
}

.benefits {
  background-color: #f7fafd;
}

@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
  .is-sp.flex {
    display: flex;
  }
  .is-sp.inline {
    display: inline-block;
  }

  .career-support-voice__items.swiper,
  .voice__cards.swiper {
    overflow: visible;
  }

  #career {
    overflow: hidden;
  }

  .swiper-pagination-voices
    .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background-color: #d9d9d9;
    opacity: 1;
  }

  #career .swiper-button-prev {
    left: 0 !important;
    width: 6vw !important;
    height: 6vw !important;
    max-width: none;
    transform: translateX(-1rem);
  }
  #career .swiper-button-next {
    right: 0 !important;
    width: 6vw !important;
    height: 6vw !important;
    max-width: none;
    transform: translateX(1rem);
  }

  .cta__button.cta__button--last {
    width: 85%;
    max-width: unset;
  }
}

@media screen and (min-width: 768px) {

  .is-pc {
    display: block;
  }
  .is-pc.flex {
    display: flex;
  }
  .is-pc.inline {
    display: inline-block;
  }
  .is-sp {
    display: none !important;
  }
  .career-support-voice__items .swiper-button-prev,
  .career-support-voice__items .swiper-button-next {
    display: none !important;
  }
}

.after-jobchange {
  padding-bottom: min(calc(100vw * (65 / 1440)), 65px);
  @media (max-width: 768px) {
    padding-bottom: calc(100vw * (40 / 375));
  }
}

.after-jobchange-title {
  position: relative;
  z-index: 1;
  .after-jobchange-title__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: center bottom;
  }
  .after-jobchange-title__body {
    display: block;
    width: max-content;
    margin-inline: auto;
    font-size: min(calc(100vw * (46 / 1440)), 46px);
    text-align: center;
    color: #fff;
    padding-block: min(calc(100vw * (30 / 1440)), 30px) min(calc(100vw * (60 / 1440)), 60px);
    @media (max-width: 768px) {
      font-size: calc(100vw * (18 / 375));
      padding-block: calc(100vw * (15 / 375)) calc(100vw * (15 / 375));
    }
  }
}

.after-jobchange-case {
  max-width: 1080px;
  margin: min(calc(100vw * (80 / 1440)), 80px) auto 0;
  width: min(calc(100vw * (1080 / 1280)), 1080px);
  display: flex;
  gap: min(calc(100vw * (13 / 1440)), 13px);
  @media (max-width: 768px) {
    flex-direction: column;
    gap: calc(100vw * (5 / 375));
    margin: calc(100vw * (15 / 375)) auto 0;
    width: calc(100vw * (335 / 375));
  }
  .after-jobchange-case__item {
    width: 100%;
    img {
      width: 100%;
      height: auto;
    }
  }
}

.after-jobchange-offer {
  margin: min(calc(100vw * (65 / 1440)), 65px) auto 0;
  width: min(calc(100vw * (1080 / 1280)), 1080px);
  @media (max-width: 768px) {
    width: 100%;
    margin: calc(100vw * (40 / 375)) auto 0;
  }
  .after-jobchange-offer__title {
    text-align: center;
    font-size: min(calc(100vw * (36 / 1440)), 36px);
    font-weight: 700;
    @media (max-width: 768px) {
      font-size: calc(100vw * (16 / 375));
    }
  }
  .after-jobchange-offer__items {
    display: flex;
    gap: min(calc(100vw * (10 / 1440)), 10px);
    margin-top: min(calc(100vw * (20 / 1440)), 20px);
    @media (max-width: 768px) {
      width: calc(100% - calc(100vw * (40 / 375)));
      margin-inline: auto;
    }
  }
  .after-jobchange-offer__item {
    width: 100%;
    flex-shrink: 1;
    @media (max-width: 768px) {
      flex-shrink: 0;
    }
  }
  .after-jobchange-offer__image {
    margin: 0;
    box-shadow: none;
  }
  .after-jobchange-offer__arrows {
    display: none;
    @media (max-width: 768px) {
      display: block;
    }
    .swiper-button-prev,
    .swiper-button-next {
      @media (max-width: 768px) {
        width: calc(100vw * (25 / 375)) !important;
        height: calc(100vw * (25 / 375)) !important;
        max-width: none;
      }
    }
    .swiper-button-prev {
      @media (max-width: 768px) {
        left: calc(100vw * (15 / 375));
      }
    }
    .swiper-button-next {
      @media (max-width: 768px) {
        right: calc(100vw * (15 / 375));
      }
    }
  }
}

.after-jobchange-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: max-content;
  margin: min(calc(100vw * (65 / 1440)), 65px) auto 0;
  background: linear-gradient(180deg, #ef1b57, #bc0035);
  box-shadow: 0 min(calc(100vw * (8 / 1440)), 8px) 0 #830025;
  color: #fff;
  padding: min(calc(100vw * (25 / 1440)), 25px) min(calc(100vw * (75 / 1440)), 75px);
  border-radius: 9999px;
  font-size: min(calc(100vw * (32 / 1440)), 32px);
  letter-spacing: 0.08em;
  line-height: 1;
  @media (max-width: 768px) {
    width: calc(100% - calc(100vw * (36 / 375)));
    margin: calc(100vw * (40 / 375)) auto 0;
    padding: calc(100vw * (20 / 375)) calc(100vw * (30 / 375));
    font-size: calc(100vw * (16 / 375));
    box-shadow: 0 calc(100vw * (5 / 375)) 0 #830025;
  }
  i {
    position: absolute;
    top: 0;
    right: min(calc(100vw * (32 / 1440)), 32px);
    bottom: 0;
    width: min(calc(100vw * (13 / 1440)), 13px);
    height: min(calc(100vw * (24 / 1440)), 24px);
    margin: auto;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 50%, 0% 100%);
    @media (max-width: 768px) {
      right: calc(100vw * (20 / 375));
      width: calc(100vw * (8 / 375));
      height: calc(100vw * (15 / 375));
    }
  }
}

#user_voices {
  background-image: url("../images/bg_user_voices.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: 80px;
  position: relative;
  overflow: hidden;

  @media (max-width: 768px) {
    background-image: url("../images/bg_user_voices_sp.png");
    padding-block: 40px 0;
  }

  .flex_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    max-width: 720px;
    margin-inline: auto;

    @media (max-width: 768px) {
      max-width: 100%;
    }
  }

  .main_title {
    font-size: 42.16px;
    font-weight: 800;
    line-height: 73px;
    color: #00122C;
    text-align: center;
  
    @media (max-width: 768px) {
      font-size: 32.58px;
      line-height: initial;
    }
  
    .bold {
      font-size: 50.19px;
  
      @media (max-width: 768px) {
        font-size: 38.78px;
      }
  
      &.gradation {
        background: linear-gradient(90deg, #0D57BE, #B5E039 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
  
        @media (max-width: 768px) {
          line-height: initial;
          margin-top: 20px;
        }

        &::after {
          content: "";
          display: block;
          background-image: url("../images/decoration.svg");
          background-size: contain;
          background-repeat: no-repeat;
          width: 20.5px;
          height: auto;
          aspect-ratio: 1 / 1;
          position: absolute;
          top: 0;
          right: 0;
          transform: translateX(100%);
      
          @media (max-width: 768px) {
            width: 15.84px;
          }
        }
      }
    }
  
    .sp_only {
      display: none;
  
      @media (max-width: 768px) {
        display: block;
      }
    }
  
    &::after {
      content: "";
      display: block;
      background-image: url("../images/user_voices.png");
      background-size: contain;
      background-repeat: no-repeat;
      width: auto;
      height: 26px;
      aspect-ratio: 103 / 13;
      margin-top: 4px;
      margin-inline: auto;
  
      @media (max-width: 768px) {
        background-image: url("../images/user_voices_sp.png");
        height: 20px;
        aspect-ratio: 159 / 20;
        margin-top: 14px;
      }
    }
  }

  .emblem_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;

    @media (max-width: 768px) {
      padding-inline: 20px;
    }

    .emblem_img {
      width: 100%;
      height: auto;
      aspect-ratio: 717.5 / 163.86;

      @media (max-width: 768px) {
        aspect-ratio: 347.7 / 91.88;
      }
    }

    .notes {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;

      @media (max-width: 768px) {
        gap: 6px;
      }

      p {
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
        color: #4A4A4A;

        @media (max-width: 768px) {
          font-size: 12px;
        }
      }
    }
  }

  .carousel_wrap {
    width: 100%;
    position: relative;
    
    .user_voice_card {
      height: auto;
      padding: 34px 24px;
      border: 1px solid #A7A05B;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      box-sizing: border-box;

      @media (max-width: 768px) {
        padding: 28px 18px;
      }

      .card_title {
        font-size: 20px;
        font-weight: bold;
        line-height: 1.6em;
        letter-spacing: 0.05em;
        color: #000000;

        @media (max-width: 768px) {
          font-size: 22px;
          line-height: 1.4em;
          letter-spacing: 0;
        }

        .highlight {
          color: #DB385A;
        }
      }

      .card_text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;

        p {
          font-size: 16px;
          font-weight: 400;
          line-height: 1.6em;
          letter-spacing: 0.05em;
          color: #333333;


          .bold {
            font-weight: 900;
          }
        }
      }
    }

    .carousel_prev,
    .carousel_next {
      width: 42.19px;
      aspect-ratio: 1 / 1;
      border-radius: 9999px;
      background: #D3CFAD;
      box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
      height: auto;
      position: absolute;
      top: 50%;
      z-index: 10;
      display: flex;
      align-items: center;

      @media (max-width: 768px) {
        width: 35.17px;
      }
    }

    .carousel_prev {
      left: 0;
      transform: translate(-32px, -50%);
      padding-left: 12.05px;

      @media (max-width: 768px) {
        left: 9px;
        transform: translate(0, -50%);
        padding-left: 10.05px;
      }

      &::after {
        content: "";
        display: block;
        clip-path: polygon(100% 0, 0 50%, 100% 100%);
        width: 13.26px;
        height: 20.29px;
        background-color: #6E6726;

        @media (max-width: 768px) {
          width: 11.05px;
          height: 17.3px;
        }
      }
    }

    .carousel_next {
      right: 0;
      transform: translate(32px, -50%);
      padding-left: 16.87px;

      @media (max-width: 768px) {
        right: 9.66px;
        transform: translate(0, -50%);
        padding-left: 14.07px;
      }

      &::after {
        content: "";
        display: block;
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        width: 13.26px;
        height: 20.29px;
        background-color: #6E6726;

        @media (max-width: 768px) {
          width: 11.05px;
          height: 17.3px;
        }
      }
    }

    .carousel_pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 32px;

      @media (max-width: 768px) {
        margin-top: 24px;
      }

      .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: #EDE9CA;
        border-radius: 9999px;
        margin-inline: 0;
        opacity: 1;
        transition: all 0.3s ease;

        &.swiper-pagination-bullet-active {
          background-color: #A7A05B;
        }
      }
    }
  }

  .user_wrap {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 1060.73px;
    height: 358.54px;
    overflow: hidden;
    pointer-events: none;

    @media (max-width: 768px) {
      position: initial;
      transform: initial;
      /* width: 350.06px;
      height: 165.03px; */
      width:  max(calc(100vw * (350.06 / 375)), 350.06px);
      height:  max(calc(100vw * (165.03 / 375)), 165.03px);
      margin-inline: auto;
    }
  }
}