@charset "UTF-8";
/* CSS Document */
/* Hero Section */
.hero {
  padding: 10rem 0 0rem;
  position: relative;
  overflow: hidden;
}

.hero_container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  margin-left: 8%;
}
.hero_content {
  margin-right: 5%;
  flex-shrink: 0;
}

.hero_content h1 {
  font-size: clamp(6rem, 8vw, 12rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.3rem;
}

.hero_visual {
  position: relative;
  width: 100%;
  max-width: calc(100vw - 10%);
  margin-right: 0 !important;
  height: auto;
  align-self: flex-end; /* visualのみ下揃え */
}

.hero_illustration {
  width: 100%;
}

.hero_visual .hero-person-01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero_visual .hero-person-02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero_visual .hero-person-03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero_catchphrase {
  position: absolute;
  top: 13%;
  left: 38%;
  writing-mode: vertical-rl;
  font-size: clamp(0.6rem, 1vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.2rem;
}

@keyframes typingCursor {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hero_container {
    align-items: center;
  }
  .hero_content .hero-copy-div {
    font-size: 28px;
  }
  .hero_content h1 {
    font-size: clamp(4rem, 5vw, 5rem);
    transition: 0.2s ease;
    line-height: 1;
  }
}
@media (min-width: 1400px) {
  .hero {
    padding: 7rem 0 1rem;
  }
  .hero_content {
    margin-right: 4%;
    position: relative;
    margin-top: 7rem;
    margin-bottom: 3rem;
  }
  .hero_visual {
    max-width: 950px;
    margin-right: 0;
    align-self: flex-end; /* visualのみ下揃え */
  }

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

  .hero_catchphrase {
    top: 11%;
    left: 38%;
  }
}
@media (min-width: 1600px) {
  .hero {
    padding: 6.5rem 0 4rem;
  }
  .hero_content {
    margin-top: 10rem;
    margin-right: 3%;
  }
  .hero_visual {
    max-width: 1200px;
  }

  .hero_catchphrase {
    top: 10%;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 9rem 0rem 5rem;
  }
  .hero_container {
    grid-template-columns: 1fr;
    align-items: baseline;
    margin-left: 5%;
  }
  .hero_content {
    margin-right: 0%;
  }
  .hero_content .hero-copy-div {
    font-size: clamp(2rem, 1vw, 4rem);
  }
  .hero_content .hero-copy-div.--div-top {
    margin-bottom: -0rem;
  }
  .hero_content .hero-copy-div.--div-bottom {
    margin-top: -0rem;
  }
  .hero_content h1 {
    font-size: clamp(5rem, 2vw, 6rem);
    line-height: 1;
  }

  .hero_visual {
    position: relative;
    width: 100%;
    margin-right: 0%;
    margin-top: 10px;
    height: auto;
    align-self: flex-end; /* visualのみ下揃え */
    max-width: calc(100vw - 5%);
  }

  .hero_illustration {
    width: 160%;
  }

  .hero_visual .hero-person-01 {
    position: absolute;
    width: 160%;
  }
  .hero_visual .hero-person-02 {
    display: none;
  }
  .hero_visual .hero-person-03 {
    width: 160%;
  }

  .hero_catchphrase {
    top: 17%;
    right: 10%;
    font-size: clamp(15px, 2vw, 2rem);
    letter-spacing: 0.1rem;
    line-height: 1;
  }
  .hero_catchphrase p {
    line-height: 1.5;
  }
}
@media (max-width: 380px) {
  .hero_visual {
    height: 460px;
  }
  .hero_content h1 {
    font-size: 4.5rem;
  }
}
/* News Section */
.news {
  padding: 6rem 0;
  background: white;
}
.news .container {
  display: flex;
  align-items: flex-start;
}
.news_header {
  align-items: center;
  margin-right: 10%;
}

.news_title {
  font-size: 2.5rem;
  display: block;
  letter-spacing: 0.1rem;
  margin-bottom: -0.5rem;
}

.news_list {
  width: 100%;
}
.accordion-news {
  max-width: 900px;
  margin-bottom: 1.5%;
  border-radius: 25px;
  background-color: #f2f2f2;
  align-items: center;
}

.accordion-news summary {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.8em 5em 0.8em 2em;
  background-position: right calc(2em - 7px) center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.accordion-news summary::-webkit-details-marker {
  display: none;
}

.accordion-news summary::after {
  content: "";
  position: absolute;
  right: calc(1em - 7px);
  top: 50%;
  transform: translateY(-50%);
  width: 45px; /* 矢印画像のサイズに合わせて調整 */
  height: 45px;
  background-image: url("/assets/img/new-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.accordion-news[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.accordion-news .news_detail {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1rem 3rem 1.5rem;
  transition: transform 0.5s, opacity 0.5s;
  font-size: 15px;
}

.accordion-news[open] .news_detail {
  transform: none;
  opacity: 1;
}
.news_title_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-right: 2rem;
}
.news_date {
  font-size: 1rem;
  color: var(--link-color);
  min-width: 100px;
  margin-right: 7%;
}

.news_content {
  font-size: 1rem;
  letter-spacing: 0.03rem;
  font-weight: 500;
}
.news_detail a {
  color: #0f64cb;
  text-decoration: underline;
}
/* カテゴリ */
/* カテゴリ別のスタイル設定 */
.news_category {
  color: #fff;
  padding: 7px 12px;
  border-radius: 14px;
  font-size: 14px;
  margin-right: 1rem;
  white-space: nowrap;
  font-weight: 500;
  display: inline-block;
  width: 100px;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 1;
}

/* カテゴリ別の色設定 */
.news_category[data-category="更新情報"] {
  background-color: #b6bab1;
}

.news_category[data-category="募集中"] {
  background-color: var(--link-color);
}

.news_category[data-category="募集終了"] {
  background-color: #4c82af;
}

/* ローディング表示 */
.news .loading {
  text-align: center;
  padding: 2rem;
  color: #666;
}
/* エラー表示 */
.error {
  text-align: center;
  padding: 2rem;
  color: #d32f2f;
  background-color: #ffebee;
  border-radius: 4px;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .news {
    padding: 0rem 0;
    padding-bottom: 6rem;
  }
  .news .container {
    display: block;
  }
  .news_header {
    margin-right: 0%;
    margin-bottom: 8%;
  }

  .news_list {
    width: 100%;
  }
  .accordion-news {
    margin-bottom: 3%;
  }

  .accordion-news summary {
    display: block;
    padding: 1em 4em 1em 2em;
  }

  .accordion-news summary::after {
    right: calc(1.5em - 7px);
    width: 36px;
    height: 36px;
  }
  .news_title_block {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-right: 0rem;
    margin-bottom: 0.8rem;
  }
  .accordion-news .news_detail {
    padding: 0 2em 1.5em;
    font-size: 15px;
  }

  .news_date {
    font-size: var(--font-sm);
    margin-right: 0%;
  }
  .news_category {
    padding: 5px 10px 3px;
    font-size: 12px;
    margin-right: 0rem;
    width: 100px;
    text-align: center;
    letter-spacing: 0.1rem;
    line-height: 1;
  }
  .news_content {
    font-size: 16px;
    letter-spacing: 0.03rem;
  }
}
@media (max-width: 380px) {
  .news {
    padding-bottom: 5rem;
  }
}
/* about Section */
.about {
  padding: 8rem 0;
  background: linear-gradient(to right, #f2f4f8, #f8ddd8);
}

.about .container {
  display: flex;
  align-items: flex-start;
}

.about .section-text-box {
  margin: 10% 0 8% 0;
}
.about .section-text-box p {
  margin-bottom: 3%;
  line-height: 2;
  text-align: justify;
}
.about .section-text-box p:first-child {
  font-weight: 600;
  font-size: var(--font-lg);
}
.about .figure-dounut {
  right: min(2%, calc(100vw - 98vw));
  bottom: 0px;
  z-index: 2;
}
@media (max-width: 768px) {
  .about {
    padding: 6rem 0 8rem;
  }

  .about .container {
    display: block;
  }

  .about .section-text-box {
    margin: 10% 0 35% 0;
    position: relative;
    z-index: 2;
  }
  .about .section-text-box p {
    margin-bottom: 5%;
  }

  .about .figure-dounut {
    right: 2%;
    bottom: 1.5%;
    z-index: 2;
  }
  .about .figure-dounut img {
    width: 60px;
  }
}

.about-1 {
  bottom: 18%;
}
.about-2 {
  bottom: 50%;
  left: 25%;
  z-index: 3;
}
@media (max-width: 768px) {
  .about-1 {
    width: 200px;
    bottom: 10%;
    left: -50px;
  }
  .about-2 {
    width: 60px;
    bottom: 85%;
    left: 75%;
  }
}

/* Features Section */
.features {
  background: linear-gradient(to right, #f2f4f8, #f8ddd8);
}
.feature_title {
  position: relative;
}
.features .feature_title h3 {
  font-size: clamp(10rem, 20vw, 17rem);
  color: #fff;
  font-family: "Century Gothic", CenturyGothic, "Jost", sans-serif;
  margin-left: -1.5rem;
  position: relative;
  z-index: 1; /* 背景として */
}
.feature_title p {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  margin: 0;
  margin-left: 7%;
  width: 100%;
  font-size: var(--font-base);
  line-height: 2;
  letter-spacing: 0.05rem;
}
.features .container {
  padding: 0 2rem 8rem 2rem;
  max-width: 1300px;
}
.features_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: -5%;
}

.features_item {
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.features_icon {
  width: 100%;
  height: 250px;
  background: var(--link-color);
  border-radius: 200px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
}
.features_icon .feature-icon-hand {
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: 56% 61%; /* 右端を支点に */
  animation: handSwing 1.6s cubic-bezier(0.38, -0.09, 0, 0.8) infinite alternate;
}
@keyframes handSwing {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-18deg);
  }
}
.features_icon .feature-icon-hand.feature-2-icon-hand {
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: 27% 38%; /* 右端を支点に */
  animation: handSwing2 2s cubic-bezier(0.39, 0.58, 0.57, 1) infinite alternate;
}
@keyframes handSwing2 {
  0% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-8deg);
  }
}
.features_icon .feature-icon-pc {
  position: absolute;
  z-index: 1;
}

.features_icon .feature-icon-up-hand {
  position: absolute;
  z-index: 1;
  left: 0%;
  transform-origin: 50% 0%; /* 上端中央を支点に */
  animation: upHandSwing 1.4s cubic-bezier(0.61, -0.35, 0, 0.43) infinite
    alternate;
}

@keyframes upHandSwing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(4deg);
  }
}

.features_icon .feature-icon-under-hand {
  position: absolute;
  z-index: 1;
  bottom: 0px;
  left: 0%;
  transform-origin: 0% 100%; /* 左端下を支点に */
  animation: underHandSwing 1.4s cubic-bezier(0.61, -0.35, 0, 0.43) infinite
    alternate;
}

@keyframes underHandSwing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(2deg);
  }
}
.features_icon .feature-icon-black {
  position: absolute;
  z-index: 2;
}
.features-card-title-box {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-lg);
  margin-bottom: 1rem;
  align-items: center;
  width: 100%;
  max-width: 300px;
}
.feature-number-title-box {
  display: flex;
  align-items: flex-start;
}
.feature-number {
  font-size: var(--font-sm);
  color: var(--link-color);
  margin-right: 10px;
}
.feature-card-title {
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
.feature-card-arrow {
  width: 30px;
  transform: rotate(270deg);
  transition: transform 0.4s ease;
}
.feature-card-arrow img {
  transition: transform 0.4s ease;
}
.features_item:hover .feature-card-arrow img {
  animation: arrowBounce 0.6s ease-in-out;
}
@keyframes arrowBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}
.features_description {
  line-height: 1.9;
  margin-left: 1.8rem;
  text-align: justify;
}
@media (max-width: 768px) {
  .features .container {
    padding: 9rem 1.5rem 5rem 1.5rem;
  }
  .features_icon {
    max-width: 400px;
  }

  .features .feature_title h3 {
    font-size: clamp(12rem, 25vw, 17rem);
    width: 100vw;
    margin-left: -1rem;
    line-height: 0.9;
  }
  .features_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10rem;
    margin-top: -5%;
  }
  .features_grid > :nth-child(3) {
    margin-top: -3rem;
  }
}
@media (max-width: 380px) {
  .features .feature_title h3 {
    font-size: clamp(11.5rem, 20vw, 17rem);
  }
  .features_grid {
    gap: 9rem;
  }
}
/* Courses Section */
.courses {
  padding: 8rem 0;
  background: linear-gradient(to right, #f2f4f8, #f8ddd8);
  display: grid;
  grid-template-columns: 1fr;
  max-width: 100vw;
  position: relative;
}
.courses .container {
  display: flex;
}

.courses .section-text-box {
  margin: 10% 0;
}

/*==カード==*/
.course_item {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: flex-end;
  background: #fff;
  transition: all 0.8s ease-out;
  border-radius: 20px;
  box-shadow: 0px -2px 2px 0px rgba(88, 76, 69, 0.1);
  margin: 0 auto;
  padding: 4% 6% 5%;
}

.course_title_visual_box {
  display: flex;
}
@media (max-width: 768px) {
  .courses {
    padding: 3rem 0;
  }
  .courses .section-text-box {
    margin: 10% 0;
  }

  .course_title_visual_box {
    display: block;
  }
}

.course_content {
  margin-right: 6%;
}
@media (max-width: 768px) {
  .course_content {
    margin-right: 0;
  }
}
.course_number {
  font-size: 25px;
  color: var(--link-color);
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  display: inline-flex;
  align-items: center;
}

.course_number::after {
  content: "";
  display: inline-block;
  width: 200px;
  height: 1px;
  background: var(--link-color);
  margin-left: 1rem;
  margin-top: 0;
}
@media (max-width: 768px) {
  .course_number {
    margin-bottom: 0.5rem;
    line-height: 1;
    font-size: 19px;
  }

  .course_number::after {
    width: 80px;
  }
}
.course_title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--link-color);
}
.course_title span {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #252525;
  line-height: 1.8;
}
.course_subtitle {
  font-size: var(--font-base);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .course_title {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .course_subtitle {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 14px;
  }
}

.course_visual {
  position: relative;
  width: 100%;
  height: 200px;
  background-image: url("/assets/img/cource-card-1_sp.webp");
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .course_visual {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 120px;
    background-position: bottom;
    background-size: cover;
    border-radius: 12px;
  }
}
@media (max-width: 380px) {
  .course_visual {
    height: 80px;
  }
}
.course_highlight {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.8rem;
  letter-spacing: 0.08rem;
}

.course_tags {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.course_tag {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--link-color);
  color: var(--link-color);
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.course_description {
  line-height: 1.5;
  margin-bottom: 3rem;
  list-style: circle;
  margin-left: 10px;
}
.course_description.sp-only {
  display: none;
}
.course_description li {
  margin-bottom: 0.5rem;
}
.course_button {
  display: inline-flex;
  align-items: center;
  color: white;
  background-color: #232323;
  padding: 0.7rem 1rem 0.7rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 270px;
  justify-content: space-between;
}

.course_button::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("/assets/img/white-arrow.svg");
  background-size: 35px 35px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.course_button:hover::after {
  animation: arrowMoveX 0.6s ease-in-out;
}
@keyframes arrowMoveX {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(12px);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .courses .container {
    display: block;
  }
  .course_item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    min-height: auto;
    margin-bottom: 8rem;
    transform: none;
  }
  .course_item:nth-child(even) .course_content,
  .course_item:nth-child(even) .course_visual,
  .course_item:nth-child(even) .course_info {
    order: unset;
  }
  .course_highlight {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 1rem;
    letter-spacing: 0.09rem;
  }

  .course_tags {
    display: flex;
    margin-bottom: 1rem;
  }
  .course_tag {
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    font-size: 14px;
  }

  .course_description {
    display: none;
  }
  .course_description.sp-only {
    display: block;
    font-size: 13px;
    margin-bottom: 1.5rem;
    list-style: circle;
    margin-left: 10px;
  }
  .course_button {
    padding: 0.8rem 1rem 0.8rem 2rem;
    width: 100%;
  }
}
.p-home-about__card {
  transform: scale(1);
  opacity: 1 !important;
  transition: transform 0.1s linear, opacity 0.1s linear; /* 滑らかに変化 */
  will-change: transform, opacity; /* ハードウェアアクセラレーション */
  position: sticky;
  z-index: 2;
  max-width: 1200px;
  height: auto;
  &.card1 {
    top: calc(var(--header-height) + 5%);
    z-index: 1;
  }
  &.card2 {
    top: calc(var(--header-height) + 5%);
    z-index: -1;
    opacity: 0;
    height: 700px;
    pointer-events: none; /* 追加 */
  }
  &.card3 {
    top: calc(var(--header-height) + 6%);
    z-index: 2;
  }
}

.card2 .course_item {
  display: none;
}

@media (max-width: 768px) {
  .p-home-about__card {
    height: auto; /* 内容に応じた高さ */
    &.card1,
    &.card2,
    &.card3 {
      top: calc(var(--header-height) + 5%);
    }
  }
  .p-home-about__card {
    & .course_item {
      padding: 6% 6% 8%;
    }
  }
}
@media (max-width: 389px) {
  .course_item {
    gap: 1rem;
  }
  .course_number {
    font-size: 20px;
  }
  .course_title {
    font-size: 1.5rem;
  }
  .course_subtitle {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0.7rem;
  }
  .course_info {
    width: 100%;
  }
  .course_content {
    margin-right: 0%;
  }
  .course_tag {
    padding: 0.3rem 0.5rem;
    font-size: 13px;
  }
  .course_description {
    display: none;
  }
  .course_button {
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    width: 100%;
  }

  .p-home-about__card {
    & .course_item {
      padding: 5% 5% 8%;
    }
  }
}

.courses .courses-1 {
  width: 150px;
  top: 40%;
  left: 25%;
}
.courses .courses-2 {
  width: 300px;
  top: 61%;
  left: 5%;
}
.courses .courses-3 {
  right: 3%;
  bottom: 0;
}
@media (max-width: 768px) {
  .courses .courses-1 {
    width: 60px;
    top: 2%;
    left: 65%;
  }
  .courses .courses-2 {
    width: 300px;
    top: 13%;
    left: 5%;
  }
  .courses .courses-3 {
    width: 200px;
    right: 3%;
    bottom: 2%;
  }
}
.courses .container,
.courses .card-list {
  margin: 0 auto;
  z-index: 1;
}

/* Sticky要素の親コンテナを制約 */
.card-wrapper {
  min-height: 100vh;
}
.card-list {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  margin-top: 50px;
}
.card-wrapper .spacer {
  width: 100%;
  height: 100vh;
}
.p-home-about__card .course_item {
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .card-list {
    margin-top: 0px;
  }
}
/* Support Section */
.support {
  padding: 5rem 0 10rem 0;
  background: linear-gradient(to right, #f2f4f8, #f8ddd8);
}
.support .section-title-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: 10rem;
}

.support .section-text-box {
  margin: 10% 0 1% 0;
}
.support_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9rem;
  margin-top: 4rem;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

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

.support_icon {
  max-width: 400px;
  width: 100%;
}
.support .content-title-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.content-title-box .content-number {
  margin-top: 1rem;
  margin-right: 4%;
  font-weight: 600;
  color: var(--link-color);
}
.support .content_title {
  font-family: "Century Gothic", CenturyGothic, "Jost", sans-serif;
  letter-spacing: 0.2rem;
  font-size: 40px;
  font-weight: 700;
}
.support .content_title .content-subtitle {
  display: block;
  font-size: 18px;
  letter-spacing: 0.08rem;
  margin-top: -0.5rem;
  font-weight: 500;
}
.support_description {
  line-height: 1.9;
  margin-bottom: 3rem;
  max-width: 500px;
  color: #232323;
  margin-left: 2.7rem;
}
.support_content {
  display: flex;
  flex-direction: column;
  margin-left: 5%;
}
.support_content .course_button {
  align-self: flex-end; /* ボタンのみ右端に配置 */
}
@media (min-width: 1400px) {
  .support {
    padding: 8rem 0 8rem;
  }
}
@media (max-width: 768px) {
  .support {
    padding: 3rem 0 8rem;
  }
  .support .section-title-box {
    display: block;
    margin-bottom: 4rem;
  }
  .support .section-text-box {
    margin: 10% 0 0% 0;
  }
  .support_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8rem;
    margin-top: 0rem;
  }

  .support_item {
    display: block;
    align-items: center;
  }

  .support_icon {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  .support .content-title-box {
    margin-bottom: 1rem;
  }
  .content-title-box .content-number {
    margin-top: 1rem;
    margin-right: 3%;
  }
  .support .content_title {
    font-family: "Century Gothic", CenturyGothic, "Jost", sans-serif;
    letter-spacing: 0.2rem;
    font-size: 28px;
  }
  .support .content_title .content-subtitle {
    font-size: 16px;
    letter-spacing: 0.08rem;
  }
  .support_description {
    line-height: 1.8;
    max-width: 500px;
    margin: 0 1.5rem 2rem;
    text-align: justify;
  }
  .support_content {
    display: flex;
    flex-direction: column;
    margin-left: 0;
  }
  .support_content .course_button {
    align-self: flex-end; /* ボタンのみ右端に配置 */
  }
}
@media (max-width: 387px) {
  .support {
    padding: 3rem 0 8rem;
  }
  .support .content_title {
    font-size: 25px;
  }
  .support .content_title .content-subtitle {
    font-size: 14px;
  }
  .support_description {
    line-height: 1.7;
    max-width: 500px;
  }
}

/* Hiring Section */
.hiring {
  padding: 15rem 0 8rem 0;
  background: linear-gradient(to right, #f2f4f8, #d8e9f8);
}
.hiring .section-title-box {
  display: flex;
  margin-bottom: 10rem;
}

.hiring .section-text-box {
  margin: 10% 0 1% 0;
}

.hiring .support_item {
  flex-direction: row-reverse; /* 左右を反転 */
}

.hiring .content-title-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.hiring .content-title-box .content-number {
  margin-top: 1rem;
  margin-right: 4%;
  font-weight: 600;
  color: var(--link-color);
}
.hiring .content_title {
  font-family: "Century Gothic", CenturyGothic, "Jost", sans-serif;
  letter-spacing: 0.2rem;
  font-size: 40px;
  font-weight: 700;
}
.hiring .content_title .content-subtitle {
  display: block;
  font-size: 18px;
  letter-spacing: 0.08rem;
  margin-top: -0.5rem;
  font-weight: 500;
}
.hiring .support_content {
  margin-left: 0;
  margin-right: 5%;
}
.hiring .hiring::before {
  content: "";
  position: absolute;
  right: clamp(-8%, -4vw, 0%); /* 安全な右端位置 */
  top: clamp(-5%, -1vh, 2%);
  width: clamp(120px, 20vw, 250px);
  height: clamp(120px, 20vw, 250px);
  background-image: url("/assets/img/recruit-figure-1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 1;
}

.hiring::after {
  content: "";
  position: absolute;
  right: clamp(1%, 3vw, 5%);
  top: clamp(20%, 25vh, 30%);
  width: clamp(50px, 8vw, 100px);
  height: clamp(50px, 8vw, 100px);
  background-image: url("/assets/img/recruit-figure-2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 1;
}
@media (max-width: 768px) {
  .hiring {
    padding: 8rem 0 8rem 0;
  }
  .hiring .section-title-box {
    display: block;
    margin-bottom: 6rem;
  }
  .hiring .content_title {
    font-size: 38px;
  }
}
@media (max-width: 390px) {
  .hiring .content_title {
    font-size: 30px;
  }
  .hiring .content_title .content-subtitle {
    font-size: 14px;
  }
}
/* Contact Section */
.hero,
.about,
.features,
.support,
.hiring {
  overflow: hidden;
  max-width: 100vw;
}
.courses {
  max-width: 100vw; /* overflowは設定しない */
}

.hero-person-01,
.hero-person-02,
.hero-person-03 {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.hero-person-01.is-animated,
.hero-person-02.is-animated,
.hero-person-03.is-animated {
  opacity: 1;
  transform: translateY(0);
}
.hero_illustration {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero_illustration.is-animated {
  opacity: 1;
  transform: translateY(0);
}
