@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap');

html {
  font-size: 10px;
  /* overflow-x: hidden; */
}

/* html.fixed {
  overflow: hidden;
  height: 100%;
} */

@media screen and (max-width: 1440px) {
  html {
    font-size: 0.694444vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 2.6643vw;
  }
}

:root {
  --bs-body-color: #000000;
  --bs-body-bg: #fff;
  --bs-font: "Noto Sans JP", sans-serif;
  --bs-body-font-family: var(--bs-font);
  --bs-num-font: "Oswald", sans-serif;
  --bs-body-font-size-pc: 1.6rem;
  --bs-body-font-size-sp: 1.4rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.75;
  --bs-body-letter-spacing: 0; 
  --bs-black: #332828;
  --bs-key-color: #DA6272;
  --bs-btn-color: #6272DA;
}

body {
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size-pc);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  letter-spacing: var(--bs-body-letter-spacing);
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

section {
  padding: 10rem 0;
  overflow: hidden;
}

img {
  zoom: normal;
}

a {
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}

/* common */
.num {
  font-family: var(--bs-num-font);
}

.section-ttl {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 108rem;
  font-size: 3.2rem;
  font-weight: bold;
  margin: 0 auto 6rem;
  position: relative;
}

.section-ttl::before {
  content: "";
  width: 100%;
  height: 0.3rem;
  background: var(--bs-key-color);
  position: absolute;
  top: 50%;
  left: -110rem;
}

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

.content-width {
  width: 108rem;
  margin: 0 auto;
}

.subpage section {
  padding: 8rem 0 10rem;
}

.intro {
  width: 108rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  body {
    font-size: var(--bs-body-font-size-sp);
  }

  section {
    padding: 6rem 0;
  }

  .section-ttl {
    width: 90%;
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
  }

  .section-ttl::before {
    height: 0.15rem;
    left: -33rem;
  }

  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }

  .subpage section {
    padding: 4rem 0 6rem;
  }

  .content-width {
    width: 90%;
  }

  .intro {
    width: 90%;
  }

}


/* header */
.header {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  background:#fff;
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 6rem;
  padding: 0px 3rem;
}

.header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4rem;
}

.header-link {
  transition: 0.3s all ease;
}

.header-link:hover {
  color: var(--bs-btn-color);
}

.header-item.contact .header-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 16rem;
  height: 4rem;
  background: var(--bs-btn-color);
  border: 0.2rem solid var(--bs-btn-color);
  color: #fff;
  transition: 0.3s all ease;
}

.header-item.contact .header-link:hover {
  background:#fff;
  color: var(--bs-btn-color);
}

.header-menu {
  display: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 20px;
  cursor: pointer;
  z-index: 999;
}

.menu-bar {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.subpage.is-active .menu-bar {
  background-color: #fff;
}

.header-menu:hover .menu-bar:nth-child(2) {
  left: 15px;
}

.menu-bar:nth-child(1) {
  top: 10px;
}

.menu-bar:nth-child(2) {
  top: 20px;
}

.menu-bar:nth-child(3) {
  top: 30px;
}

.header-menu.is-active .menu-bar:nth-child(1) {
  top: 20px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header-menu.is-active .menu-bar:nth-child(2) {
  left: 30px;
  opacity: 0;
}

.header-menu.is-active .menu-bar:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body.is-active {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .header-menu {
    top: 2rem;
    right: 2rem;
  }

  .header-nav {
    width: 100vw;
    height: 100vh;
    background: #fff;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
  }

  .header-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .header-item {
    margin: 20px 10px;
  }

  .header-item.contact .header-link  {
    width: auto;
    height: auto;
    background: none;
    border: none;
    color: var(--bs-body-color)
  }

  .header-menu {
    display: block;
  }
}


/* mv */
.mv {
  width: 100%;
  height: 60rem;
  margin: 10rem auto 0;
  position: relative;
}

.mv-img {
  width: calc(100% - 57.5rem);
  height: 100%;
  background: url(../img/TOP.jpeg);
  background-position: 50%;
  background-size: cover;
}

.mv-content {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto 0 18rem;
}

.mv-outer {
  position:relative;
  width: 39.5rem;
}

.mv-black { 
  width: 100%;
  height: 100%;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  white-space: pre;
}

.mv-white {
  position: absolute;
  top: 0;
  left: 39.6rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mv-white::after {
  position: absolute;
  left: -39.6rem;
  top: 0;
  content: "外国人材とともに、\A強い現場と組織を育てる\A支援・定着・キャリア構築を担う\A人材育成プログラム";
  white-space: pre;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #fff;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .mv {
    height: 48rem;
  }

  .mv-content {
    margin: 0 auto;
    padding-left: 2rem;
  }

  .mv-outer {
    width: 14.2rem;
  }

  .mv-black,
  .mv-white::after {
    font-size: 2.2rem;
  }

  .mv-white {
    left: 14.2rem;
    width: calc(100% + 6.2rem);
  }

  .mv-white::after {
    left: -14.2rem;
  }

  .mv-img {
    width: calc(100% - 14.2rem);
  }
}


/* problem */
.problem .section-ttl {
  color: var(--bs-key-color);
  margin-bottom: 2rem;
}

.problem-list {
  width: 88rem;
  margin: 6rem auto 0;
}

.problem-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
  height: 21rem;
  margin-bottom: 4rem;
  padding: 3rem 4rem;
  border: 2px solid var(--bs-key-color);
}

.problem-item:last-child {
  margin-bottom: 0;
}

.problem-img {
  width: 20rem;
}

.problem-dsc {
  width: calc(100% - 6rem);
}

.problem-dsc h3 {
  font-size: 2rem;
  font-weight: bold;
}

.problem-txt {
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .problem .section-ttl {
    margin-bottom: 1rem;
  }
  
  .problem-list {
    width: 90%;
    margin: 3rem auto 0;    
  }

  .problem-item {
    height: auto;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
  }

  .problem-img {
    width: 15rem;
  }

  .problem-dsc {
    width: 100%;
  }

  .problem-dsc h3 {
    font-size: 1.6rem;
  }

}


/* feature */
.feature {
  position: relative;
  background: var(--bs-key-color);
}

.feature .section-ttl,
.feature .intro {
  color: #fff;
}

.feature .section-ttl {
  margin-bottom: 2rem;
}

.feature .section-ttl::before {
  background: #fff;
}

.feature-list {
  width: 88rem;
  margin: 6rem auto 0;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;  
  width: 100%;
  padding: 3rem 4rem;
  background: #fff;
  margin-bottom: 4rem;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-item-ttl {
  margin-bottom: 2rem;
  font-size: 2.1rem;
  font-weight: bold;
}

.feature-num {
  width: 11.3rem;
  font-size: 10rem;
  font-weight: 300;
  color: var(--bs-key-color);
  line-height: 1;
}

.feature-dsc {
  width: calc(100% - 11.3rem);
}

@media screen and (max-width: 768px) {
  .feature .section-ttl {
    margin-bottom: 2rem;
  }

  .feature-list {
    width: 90%;
    margin: 3rem auto 0;
  }

  .feature-item {
    width: 100%;
    padding: 2rem;
    align-items: flex-start;    
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .feature-num {
    width: 5rem;
    font-size: 5rem;
  }

  .feature-dsc {
    width: calc(100% - 5rem);
  }

  .feature-item-ttl {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

}


/* curriculum */
.curriculum.section {
  padding: 0 0 10rem;
}

.curriculum-list {
  width: 100%;
}

.curriculum-item {
  display: flex;
  align-items: center;
  width: 100%;
  height: 44.8rem;
}

.curriculum-item:first-child {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 70%, rgba(248, 224, 227, 0.6) 70%);
}

.curriculum-item:nth-child(2) {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 70%, rgba(252, 235, 200, 0.6) 70%);
}

.curriculum-item:nth-child(3) {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 70%, rgba(205, 243, 229, 0.6) 70%);
}

.curriculum-item:last-child {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 70%, rgba(220, 216, 255, 0.6) 70%);
}

.curriculum-wrap {
  display: flex;
  align-items: center;
  width: 108rem;
  margin: 0 auto;
  position: relative;
}

.curriculum-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 54.3rem;
  height: 16.8rem;
  padding: 3rem;
  color: var(--bs-black);
  font-size: 2rem;
  font-weight: bold;
  background: #F9F7F7;
  transition: 0.3s all ease;
  position: relative;
  z-index: 2;
}

.curriculum-btn:hover  {
  transform: translate3d(0, 0.4rem, 0);
}

.curriculum-btn .arrow {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 0.2rem;
  margin-top: 0.71rem;
  border-radius: 9999px;
}

.curriculum-btn .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.21rem);
  right: 0;
  width: 1.2rem;
  height: 0.2rem;
  border-radius: 9999px;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.1rem) 50%;
}

.curriculum-item:first-child .curriculum-btn .arrow,
.curriculum-item:first-child .curriculum-btn .arrow::before {
  background-color: var(--bs-key-color);
}

.curriculum-item:nth-child(2) .curriculum-btn .arrow,
.curriculum-item:nth-child(2) .curriculum-btn .arrow::before {
  background-color: #F5BC48;
}

.curriculum-item:nth-child(3) .curriculum-btn .arrow,
.curriculum-item:nth-child(3) .curriculum-btn .arrow::before {
  background-color: #58D6A8;
}

.curriculum-item:last-child .curriculum-btn .arrow,
.curriculum-item:last-child .curriculum-btn .arrow::before {
  background-color: #523EFF;
}

.curriculum-img {
  width: 72rem;
  height: 28.8rem;
  object-fit: cover;
  object-position: 50%;
  position: absolute;
  left: 36rem;
}

@media screen and (max-width: 768px) {
  .curriculum.section {
    padding: 0 0 6rem;
  }

  .curriculum-item {
    width: 100%;
    height: 28rem;
  }

  .curriculum-item:first-child {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(248, 224, 227, 0.6) 0%);
  }

  .curriculum-item:nth-child(2) {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(252, 235, 200, 0.6) 0%);
  }

  .curriculum-item:nth-child(3) {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(205, 243, 229, 0.6) 0%);
  }

  .curriculum-item:last-child {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(220, 216, 255, 0.6) 0%);
  }  

  .curriculum-wrap {
    width: 100%;
    padding-left: 2rem;
  }

  .curriculum-btn {
    width: 30rem;
    height: 15rem;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    background: #fff;
  }

  .curriculum-btn .arrow {
    /* margin-left: 2rem; */
  }

  .curriculum-img {
    width: 24rem;
    height: 28rem;    
    right: 0;
    left: unset;
  }
}

/* contact */
.contact.section {
  padding: 2rem 0 10rem;
}

.contact .section-ttl {
  justify-content: center;
  color: var(--bs-key-color);
}

.contact .section-ttl::before {
  left: -70rem;
}

.contact .section-ttl::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  background: var(--bs-key-color);
  position: absolute;
  top: 50%;
  right: -70rem;
}

.contact .contact-wrap {
  width: 58rem;
  margin: 0 auto; 
  padding-bottom: 3.2rem;
}

.contact .table_contact {
  width: 100%;
}

.contact .table_contact th {
  display: block;
  width: 100%;
  text-align: left;
}

.contact .table_contact td {
  display: block;
  width: 100%;
  padding: 1rem 0 3rem;
  text-align: left;
}

.contact .table_contact .required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.5rem;
  color: #fff;
  background: var(--bs-key-color);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.2em;
  width: 5rem;
  height: 2rem;
  vertical-align: middle;
}

.contact .table_contact .ttl {
  display: inline-block;
  vertical-align: middle;
}

.contact .table_contact input[type=text],
.contact .table_contact input[type=email],
.contact .table_contact input[type=tel] {
  background: #F4F4F4;
  width: 100%;
  line-height: 1.4;
  padding: 1.7rem 2rem;
  outline: none;
}

.contact .foot {
  padding: 1rem 0 4rem;
  text-align: center;
}

.contact .foot.bottom {
  padding: 4rem 0 0;
}

.contact .foot a {
  text-decoration: underline;
  transition: 0.3s all ease;
}

.contact .foot a:hover {
  opacity: 0.7;
}

.contact .btn {
  display: block;
  width: 28rem;
  line-height: 7rem;
  margin: 0 auto;
  background: var(--bs-btn-color);
  border: 0.2rem solid var(--bs-btn-color);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  transition: 0.3s all ease;
  text-align: center;
  letter-spacing: 0.1em;
}

.contact .btn:hover {
  background: #fff;
  color: var(--bs-btn-color);
}

@media screen and (max-width: 768px) {
  .contact.section {
    padding: 0 0 6rem;
  }

  .contact .section-ttl {
    padding: 0;
    margin-bottom: 3rem;
  }

  .contact .section-ttl::before {
    left: -26rem;
  }

  .contact .section-ttl::after {
    right: -26rem;
    height: 0.15rem;
  }

  .contact .contact-wrap {
    width: 90%;
    padding-bottom: 2rem;
  }

  .contact .table_contact .required {
    font-size: 1rem;
    width: 4rem;
    height: 2rem;
    margin-left: 1rem;
  }

  .contact .table_contact td {
    padding: 0.5rem 0 2rem;
  }

  .contact .table_contact input[type=text],
  .contact .table_contact input[type=email],
  .contact .table_contact input[type=tel] {
    padding: 1rem;
  }

  .contact .btn {
    width: 22rem;
    line-height: 5rem;
    font-size: 1.6rem;
  }

  .contact .foot {
    padding: 1.2rem 0 2.4rem;
    text-align: left;
  }
  
  .contact .foot.bottom {
    padding: 2.4rem 0 0;
  }
}

/* -----------------------
お問い合わせ確認・送信画面
----------------------- */
.subpage .contact .section-ttl {
  margin: 4rem auto 6rem;
}

.subpage .contact .section-ttl::before,
.subpage .contact .section-ttl::after {
  display: none;
}

.subpage .table_contact {
  margin-bottom: 4rem;
}

.subpage .table_contact td {
  display: flex;
  align-items: center;
  width: 100%;
  height: 5.6rem;
  margin: 1rem 0 3rem;
  padding: 0 2rem;
  background: #F4F4F4;
  width: 100%;
  line-height: 1.4;
  outline: none;
}

.subpage .btn_confirm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.subpage .btn.back {
  text-align: center;
  background: #D9D9D9;
  border: none;
  color: var(--bs-black);
}

.subpage.mail .btn.back-top {
  display: block;
  margin: 10rem auto 0;
  border: 0.2rem solid currentColor;
  background: #fff;
  color: var(--bs-btn-color);
  text-align: center;
}

.subpage.mail .btn.back-top:hover {
  color: #fff;
  background: var(--bs-btn-color);
}

.subpage.mail .contact-wrap p {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .subpage.confirm section,
  .subpage.mail section {
    padding: 8rem 0;
  }

  .subpage .table_contact {
    margin-bottom: 3rem;
  }

  .subpage .table_contact td {
    height: 4rem;
    margin: 0.5rem 0 2rem;
    padding: 1rem;
  }

  .subpage .btn_confirm {
    flex-direction: column;
    gap: 2rem;
  }

  .subpage.mail .contact-wrap p {
    width: 90%;
    margin: 0 auto;
  }
}

/* footer */
.footer {
  background: var(--bs-key-color);
  color: #fff;
  padding: 6rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  width: 108rem;
  margin: 0 auto;
}

.company-info .name {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: bold;
}

.company-info .address,
.company-info .dtl {
  font-size: 1.4rem;
}

.company-info .dtl {
  margin-top: 3rem;
}

.footer-item {
  margin-bottom: 2rem;
}

.footer-item:last-child {
  margin-bottom: 0;
}

.footer-link {
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.footer-link:hover {
  opacity: 0.6;
}

.copyright {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 12rem;
  padding-top: 2rem;
  border-top: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 4rem 0 1.5rem;
  }

  .footer-content {
    width: 90%;
    flex-direction: column;
  }

  .company-info .address, .company-info .dtl {
    font-size: 1.2rem;
  }

  .company-info .dtl {
    margin-top: 2rem;
  }

  .footer-list {
    margin-top: 6rem;
  }
  
  .footer-item {
      margin-bottom: 1rem;
  }

  .copyright {
    padding-top: 1.5rem;
    margin-top: 4rem;
  }
}


/* privacy */
.subpage .privacy {
  padding: 20rem 0 10rem;
}

.subpage .privacy .section-ttl {
  font-size: 4rem;
  color: var(--bs-key-color);
}

.subpage .privacy .section-ttl::before {
  display: none;
}

.subpage .privacy .privacy-intro,
.subpage .privacy .privacy-content {
  margin-bottom: 8rem;
}

.subpage .privacy .privacy-content:last-child {
  margin-bottom: 0;
}

.subpage .privacy h2 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.subpage .privacy p {
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .subpage .privacy {
    padding: 12rem 0 6rem;
  }

  .subpage .privacy .section-ttl {
    width: 100%;
    margin-bottom: 4rem;
    padding-left: 0;
    font-size: 2.1rem;
  }

  .subpage .privacy .privacy-intro,
  .subpage .privacy .privacy-content {
    margin-bottom: 4rem;
  }

  .subpage .privacy h2 {
    font-size: 2rem;
  }  
}

/* curriculum subpage */
.subpage .curriculum-mv {
  width: 100%;
  height: 30rem;
  margin-top: 10rem;
  position: relative;
}

.subpage .curriculum-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;  
}

.subpage .curriculum-img img,
.subpage .curriculum-content img {
  width: 100%;
  height: 30rem;  
  object-fit: cover;
  object-position: 50%;
}

.subpage .curriculum-mv-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.subpage .curriculum-mv-content::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
}

.subpage .curriculum-mv-txt,
.subpage .curriculum-mv-ttl {
  text-align: center;
  position: relative;
  z-index: 2;
}

.subpage .curriculum-mv-txt {
  font-size: 2rem;
  font-weight: bold;
  color: var(--bs-key-color);
  margin-bottom: 0;
}

.subpage .curriculum-mv-ttl {
  font-size: 4rem;
  font-weight: bold;
}

.subpage .curriculum-content {
  margin-bottom: 10rem;
}

.subpage .curriculum-content .section-ttl {
  color: var(--bs-key-color);
  margin: 0 auto 2rem;
}

.subpage .sub-curriculum .sub-curriculum-ttl {
  font-size: 3.2rem;
  font-weight: bold;
  height: 33rem;
  padding-top: 8rem;
  text-align: center;
  position: relative;
  z-index: -1;
}

.subpage.start-up .sub-curriculum .sub-curriculum-ttl {
  background: #F8E0E3;
}

.subpage.specified-skilled-worker .sub-curriculum .sub-curriculum-ttl {
  background: #FCEBC8;
}

.subpage.compliance .sub-curriculum .sub-curriculum-ttl {
  background: #CDF3E5;
}

.subpage.career .sub-curriculum .sub-curriculum-ttl {
  background: #DCD8FF;
}

.sub-curriculum-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 108rem;
  margin: -15.8rem auto 10rem;
}

.sub-curriculum-item:last-child {
  margin: -15.8rem auto 0;
}

.sub-curriculum-item li {
  width: 33.33%;
  padding: 2rem;
  border: 1px solid #E0DEDE;
  background: #fff;
}

.sub-curriculum-item li:nth-child(n+2) {
  border-top: 1px solid #E0DEDE;
  border-left: none;
  border-bottom: 1px solid #E0DEDE;
  border-right: 1px solid #E0DEDE;
}

.sub-curriculum-item li:nth-child(n+5) {
  border-top: none;
  border-left: none;
  border-bottom: 1px solid #E0DEDE;
  border-right: 1px solid #E0DEDE;
}

.sub-curriculum-item li:nth-child(4),
.sub-curriculum-item li:nth-child(7) {
  border-top: none;
  border-left: 1px solid #E0DEDE;
  border-bottom: 1px solid #E0DEDE;
  border-right: 1px solid #E0DEDE;
}

.sub-curriculum-item li h3 {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  font-weight: bold;
  border-bottom: 1px solid var(--bs-key-color);
}

.sub-curriculum-item li h3 i {
  font-size: 3.1rem;
  color: var(--bs-key-color);  
}

.subpage.specified-skilled-worker .sub-curriculum-item li h3 {
  border-bottom: 1px solid #F5BC48;
}

.subpage.specified-skilled-worker .sub-curriculum-item li h3 i {
  color: #F5BC48;
}

.subpage.compliance .sub-curriculum-item li h3 {
  border-bottom: 1px solid #58D6A8;
}

.subpage.compliance .sub-curriculum-item li h3 i {
  color: #58D6A8;
}

.subpage.career .sub-curriculum-item li h3 {
  border-bottom: 1px solid #523EFF;
}

.subpage.career .sub-curriculum-item li h3 i {
  color: #523EFF;
}


.sub-curriculum-item dd {
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 768px) {
  .subpage .curriculum-mv {
    height: 18rem;
    margin-top: 8rem;
  }

  .subpage .curriculum-img img,
  .subpage .curriculum-content img{
    height: 18rem;
  }

  .subpage .curriculum-mv-txt {
    font-size: 1.4rem;
  }

  .subpage .curriculum-mv-ttl {
    font-size: 2.1rem;
  }

  .subpage .curriculum-content {
    margin-bottom: 4rem;
  }

  .subpage .sub-curriculum .sub-curriculum-ttl {
    font-size: 2rem;
    height: 18rem;
    padding-top: 4rem;
  }

  .sub-curriculum-item {
    flex-direction: column;
    width: 90%;
    margin: -8.5rem auto 6rem;
  }

  .sub-curriculum-item:last-child {
    margin: -8.5rem auto 0;
  }

  .sub-curriculum-item li {
    width: 100%;
    padding: 1.5rem;
  }

  .sub-curriculum-item li h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sub-curriculum-item li:nth-child(n+2) {
    border-top: none;
    border-left: 1px solid #E0DEDE;
    border-bottom: 1px solid #E0DEDE;
    border-right: 1px solid #E0DEDE;
  }

  .sub-curriculum-item li:nth-child(n+5),
  .sub-curriculum-item li:nth-child(4),
  .sub-curriculum-item li:nth-child(7) {
    border-top: none;
    border-left: 1px solid #E0DEDE;
    border-bottom: 1px solid #E0DEDE;
    border-right: 1px solid #E0DEDE;
  }

}