@charset "UTF-8";
.h-con .nav .nav-contents .list-TOP {
  border-bottom: none;
  position: relative; /* 疑似要素の基準点 */
}
.h-con .nav .nav-contents .list-TOP::after {
  content: "";
  position: absolute;
  bottom: 0; /* リンクの最下部に配置 */
  left: 0;
  width: 100%;
  height: 2px; /* 線の太さ（border-bottomの代わり） */
  background-color: #ffffff; /* 染まる色（青） */
  transform: scaleX(0); /* 1. 初期状態: 幅をゼロにして隠す */
  transform-origin: left; /* 2. 起点: 左端に固定 */
  /* transformのみをアニメーション対象にする */
  transition: transform 0.3s ease-out;
}
.h-con .nav .nav-contents .list-TOP:hover::after {
  transform: scaleX(1); /* 最終状態: 幅を100%に戻す */
}
.h-con .nav .nav-contents .list-Recruit {
  border-bottom: 1px solid;
}
.h-con .nav .nav-contents .list-Recruit:hover::after {
  display: none;
}

@media screen and (max-width: 767px) {
  #navArea {
    display: block;
  }
  #navArea .h-nav {
    right: -100vw;
    width: 80wv;
  }
  #navArea .h-nav .inner ul li a {
    color: rgb(255, 255, 255);
  }
  #navArea .h-nav .inner ul li.list-Recruit a {
    color: #ff0000;
  }
  #navArea .h-nav .inner ul li.list-TOP a {
    color: #ffffff;
  }
}
.MV {
  height: calc(40vh - 70px);
}
.MV #myCanvas3 {
  display: block; /* ブロック要素として表示し、マージンなどの問題を避ける */
  cursor: move; /* ユーザーが視点を動かせることがわかるようにカーソルを設定 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 30px;
  color: white;
  z-index: -1;
}
.MV .MV__con .MV__text .MV__main-text {
  font-size: 55px;
}

.Growth {
  background-color: white;
}
.Growth .conteiner {
  overflow: hidden;
}
.Growth .conteiner .rotate {
  align-items: center;
  display: flex;
  height: auto;
  justify-content: center;
  position: relative;
  width: auto;
}
.Growth .conteiner .rotate::before {
  animation: 50s 0s rotate linear infinite reverse;
  background: url("../img/back-circle-w.webp") center center/750px auto no-repeat;
  content: "";
  height: 1500px;
  position: absolute;
  top: 300px;
  width: 1600px;
  z-index: 0;
  pointer-events: none;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.Growth .conteiner .Growth__con .main-text {
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}
.Growth .conteiner .Growth__con .main-text p {
  padding-left: 0;
  border-bottom: none;
  padding-bottom: 0;
  font-size: 18px;
}
.Growth .conteiner .Growth__con .main-text .text-main {
  font-size: 25px;
  letter-spacing: 6px;
}
.Growth .conteiner .Growth__con .sub-text {
  padding: 50px 0;
  margin: auto;
  line-height: 1.5;
}
.Growth .conteiner .Growth__con .sub-text br:nth-of-type(1) {
  display: none;
}
.Growth .conteiner .Growth__con .main-con .con-up {
  display: flex;
}
.Growth .conteiner .Growth__con .main-con .con-up .up {
  width: 50%;
  display: flex;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 2%;
  box-sizing: border-box;
}
.Growth .conteiner .Growth__con .main-con .con-up .up .in-text {
  width: 50%;
  background-color: rgba(51, 50, 50, 0.5);
  color: white;
}
.Growth .conteiner .Growth__con .main-con .con-up .up .in-text .tittle {
  margin: 20px 0;
}
.Growth .conteiner .Growth__con .main-con .con-up .up .in-text p {
  padding: 0 10px;
  line-height: 1.7;
  text-align: left;
  padding-bottom: 20px;
}
.Growth .conteiner .Growth__con .main-con .con-up .up .in-others {
  width: 50%;
  height: auto;
}
.Growth .conteiner .Growth__con .main-con .con-up .up .in-others .ot-nam {
  color: white;
  font-size: 85px;
  font-weight: bold;
  margin-top: 75px;
  padding: 25px 0 35px 0;
}
.Growth .conteiner .Growth__con .main-con .con-up .up .in-others .ot-nam .step {
  font-size: 22px;
  padding-bottom: 20px;
}
.Growth .conteiner .Growth__con .main-con .con-up .up .in-others .ot-ph img {
  width: 100%;
}
.Growth .conteiner .Growth__con .main-con .con-up .up-01 {
  margin-right: 10px;
  padding: 60px 15px 35px 25px;
}
.Growth .conteiner .Growth__con .main-con .con-up .up-01 .in-others .ot-nam {
  display: flex;
  justify-content: right;
}
.Growth .conteiner .Growth__con .main-con .con-up .up-01 .in-others .ot-nam .ot-con .step {
  text-align: center;
}
.Growth .conteiner .Growth__con .main-con .con-up .up-01 .in-text {
  margin-right: 50px;
}
.Growth .conteiner .Growth__con .main-con .con-up .up-02 {
  margin-left: 10px;
  padding: 60px 25px 35px 15px;
}
.Growth .conteiner .Growth__con .main-con .con-up .up-02 .in-others .ot-nam {
  display: flex;
  justify-content: left;
}
.Growth .conteiner .Growth__con .main-con .con-up .up-02 .in-text {
  margin-left: 50px;
}
.Growth .conteiner .Growth__con .main-con .down-con {
  display: flex;
  padding-bottom: 80px;
}
.Growth .conteiner .Growth__con .main-con .down-con .up {
  width: 50%;
  box-sizing: border-box;
  border-radius: 2%;
  display: flex;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.5);
}
.Growth .conteiner .Growth__con .main-con .down-con .up .in-text {
  width: 50%;
  background-color: rgba(51, 50, 50, 0.5);
  color: white;
}
.Growth .conteiner .Growth__con .main-con .down-con .up .in-text .tittle {
  margin: 20px 0;
}
.Growth .conteiner .Growth__con .main-con .down-con .up .in-text p {
  padding: 0 10px;
  line-height: 1.7;
  text-align: left;
  padding-bottom: 20px;
}
.Growth .conteiner .Growth__con .main-con .down-con .up .in-others {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.Growth .conteiner .Growth__con .main-con .down-con .up .in-others .ot-nam {
  color: white;
  font-size: 85px;
  font-weight: bold;
  margin-bottom: 75px;
}
.Growth .conteiner .Growth__con .main-con .down-con .up .in-others .ot-nam .step {
  font-size: 22px;
  padding-bottom: 20px;
}
.Growth .conteiner .Growth__con .main-con .down-con .up .in-others .ot-ph img {
  width: 100%;
}
.Growth .conteiner .Growth__con .main-con .down-con .down-03 {
  margin-left: 10px;
  padding: 35px 25px 60px 15px;
}
.Growth .conteiner .Growth__con .main-con .down-con .down-03 .in-others .ot-nam {
  display: flex;
  justify-content: left;
}
.Growth .conteiner .Growth__con .main-con .down-con .down-03 .in-others .ot-nam .step {
  text-align: center;
}
.Growth .conteiner .Growth__con .main-con .down-con .down-03 .in-others .ot-nam .nam {
  text-align: center;
}
.Growth .conteiner .Growth__con .main-con .down-con .down-03 .in-text {
  margin-left: 50px;
}
.Growth .conteiner .Growth__con .main-con .down-con .down-04 {
  margin-right: 10px;
  padding: 35px 15px 60px 25px;
}
.Growth .conteiner .Growth__con .main-con .down-con .down-04 .in-others .ot-nam {
  display: flex;
  justify-content: right;
}
.Growth .conteiner .Growth__con .main-con .down-con .down-04 .in-others .ot-nam .ot-con .step {
  text-align: center;
}
.Growth .conteiner .Growth__con .main-con .down-con .down-04 .in-others .ot-nam .ot-con .nam {
  text-align: center;
}
.Growth .conteiner .Growth__con .main-con .down-con .down-04 .in-text {
  margin-right: 50px;
}
.Growth .conteiner .Growth__con .main-con .con-center {
  font-size: 40px;
  font-weight: bold;
  padding: 20px 0;
  margin: 120px 0;
}
.Growth .conteiner .Growth__con .main-con .con-center .line {
  display: flex;
  align-items: center;
  justify-content: center;
}
.Growth .conteiner .Growth__con .main-con .con-center .line .in-line {
  width: 20%;
  border-bottom: 2px solid;
}
.Growth .conteiner .Growth__con .main-con .con-center .line .R {
  margin-right: 20px;
}
.Growth .conteiner .Growth__con .main-con .con-center .line .L {
  margin-left: 10px;
}

@media screen and (max-width: 1023px) {
  .Growth .conteiner .rotate::before {
    top: 400px;
  }
  .Growth .conteiner .Growth__con .main-con .con-center {
    margin: 20px 0;
  }
  .Growth .conteiner .Growth__con .main-con .con-up {
    flex-direction: column;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up {
    width: 100%;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-01 {
    margin-right: 0;
    margin-bottom: 30px;
    flex-direction: row-reverse;
    padding: 20px 40px;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-01 .in-others {
    display: flex;
    flex-direction: column-reverse;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-01 .in-others .ot-nam {
    margin-top: 0;
    justify-content: left;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-01 .in-text {
    margin-right: 0;
    margin-left: 20px;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-02 {
    margin-left: 0;
    padding: 20px 40px;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-02 .in-others {
    display: flex;
    flex-wrap: wrap-reverse;
    flex-direction: row;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-02 .in-others .ot-nam {
    margin: 0;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-02 .in-others .ot-ph {
    width: 100%;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-02 .in-text {
    margin-right: 0;
    margin-left: 20px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con {
    flex-direction: column-reverse;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up {
    width: 100%;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-04 {
    margin-right: 0;
    margin-bottom: 30px;
    flex-direction: row-reverse;
    padding: 20px 40px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-04 .in-others {
    display: flex;
    flex-direction: column;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-04 .in-others .ot-nam {
    margin-top: 0;
    margin-bottom: 0;
    justify-content: left;
    padding: 25px 0 35px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-04 .in-text {
    margin-right: 0;
    margin-left: 20px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-03 {
    margin-left: 0;
    padding: 20px 40px;
    margin-bottom: 30px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-03 .in-others {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-03 .in-others .ot-nam {
    margin: 0;
    padding: 25px 0 35px 0;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-03 .in-others .ot-ph {
    width: 100%;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-03 .in-text {
    margin-right: 0;
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .Growth .conteiner {
    background-image: url(../img/vertical-line-w.webp);
    background-repeat: no-repeat;
    background-position: 50%;
    overflow: hidden; /* はみ出した文字を非表示にする */
    animation: scroll-background-y 10s linear infinite; /* 10秒かけて無限ループ */
  }
  .Growth .conteiner .rotate {
    display: none;
  }
  @keyframes scroll-background-y {
    0% {
      /* 始点: 背景画像を上端から表示 */
      background-position-y: 100%;
    }
    100% {
      /* 終点: 画像1枚分の高さを移動（100%） */
      /* 繰り返しているため、ここで切れ目なく次の画像セットへ移行する */
      background-position-y: 0%;
    }
  }
  .Growth .conteiner .Growth__con .main-text {
    width: 100%;
    align-items: start;
    padding-top: 70px;
  }
  .Growth .conteiner .Growth__con .main-text div {
    display: flex;
    border-bottom: 1px solid;
    justify-content: left;
    flex-direction: row-reverse;
  }
  .Growth .conteiner .Growth__con .main-text div .text-main {
    font-size: clamp(0.7rem, 1.123rem + 0.15vw, 1.438rem);
    letter-spacing: 5px;
  }
  .Growth .conteiner .Growth__con .main-text div .text-sub {
    font-size: clamp(0.688rem, 0.643rem + 0.22vw, 0.75rem);
    padding-left: 40px;
    padding-top: 7px;
  }
  .Growth .conteiner .Growth__con .main-text .text-main {
    border-bottom: none;
  }
  .Growth .conteiner .Growth__con .sub-text {
    padding-bottom: 40px;
    font-weight: bold;
  }
  .Growth .conteiner .Growth__con .sub-text span {
    display: none;
  }
  .Growth .conteiner .Growth__con .sub-text br:nth-of-type(1) {
    display: block;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up .in-text {
    width: 100%;
    margin-top: 20px;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up .in-others {
    width: 100%;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-01 {
    flex-wrap: wrap-reverse;
    padding: 0px 15px;
    padding-bottom: 50px;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-01 .in-text {
    margin-left: 0;
    margin-top: 10px;
    padding-bottom: 20px;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-01 .in-text .tittle {
    font-size: 24px;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-01 .in-others .ot-nam {
    justify-content: center;
    padding-top: 0px;
    padding-bottom: 5px;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-01 .in-others .ot-nam .ot-con .nam {
    font-size: clamp(1.875rem, -0.362rem + 11.19vw, 5rem);
    padding-bottom: 15px;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-01 .in-others .ot-nam .ot-con .step {
    font-size: clamp(0.995rem, 0.846rem + 0.89vw, 1.15rem);
    padding-bottom: 5px;
    margin-top: 10px;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-02 {
    flex-wrap: wrap;
    padding: 0px 15px;
    padding-bottom: 50px;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-02 .in-text {
    margin-left: 0;
    margin-top: 10px;
    padding-bottom: 20px;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-02 .in-text .tittle {
    font-size: 24px;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-02 .in-others {
    justify-content: center;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-02 .in-others .ot-nam {
    padding-top: 0px;
    padding-bottom: 5px;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-02 .in-others .ot-nam .ot-con .nam {
    font-size: clamp(1.875rem, -0.362rem + 11.19vw, 5rem);
    padding-bottom: 15px;
  }
  .Growth .conteiner .Growth__con .main-con .con-up .up.up-02 .in-others .ot-nam .ot-con .step {
    font-size: clamp(0.995rem, 0.846rem + 0.89vw, 1.15rem);
    padding-bottom: 5px;
    margin-top: 10px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up .in-text {
    width: 100%;
    margin-top: 20px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up .in-text .tittle {
    font-size: 24px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up .in-others {
    width: 100%;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-04 {
    flex-wrap: wrap-reverse;
    padding: 0px 15px;
    padding-bottom: 50px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-04 .in-text {
    margin-left: 0;
    margin-top: 10px;
    padding-bottom: 20px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-04 .in-others .ot-nam {
    justify-content: center;
    padding-top: 0px;
    padding-bottom: 5px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-04 .in-others .ot-nam .ot-con .nam {
    font-size: clamp(1.875rem, -0.362rem + 11.19vw, 5rem);
    padding-bottom: 15px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-04 .in-others .ot-nam .ot-con .step {
    font-size: clamp(0.995rem, 0.846rem + 0.89vw, 1.15rem);
    padding-bottom: 5px;
    margin-top: 10px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-03 {
    flex-wrap: wrap;
    padding: 0px 15px;
    padding-bottom: 50px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-03 .in-text {
    margin-left: 0;
    margin-top: 10px;
    padding-bottom: 20px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-03 .in-others {
    justify-content: center;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-03 .in-others .ot-nam {
    padding-top: 0px;
    padding-bottom: 5px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-03 .in-others .ot-nam .ot-con .nam {
    font-size: clamp(1.875rem, -0.362rem + 11.19vw, 5rem);
    padding-bottom: 15px;
  }
  .Growth .conteiner .Growth__con .main-con .down-con .up.down-03 .in-others .ot-nam .ot-con .step {
    font-size: clamp(0.995rem, 0.846rem + 0.89vw, 1.15rem);
    padding-bottom: 5px;
    margin-top: 10px;
  }
  .Growth .conteiner .Growth__con .main-con .con-center {
    font-size: clamp(0.9rem, 1.4rem + 1.3vw, 2.5rem);
  }
  .Growth .conteiner .Growth__con .main-con .con-center .line .in-line {
    width: 10%;
  }
}
.Curriculum .conteiner {
  overflow: hidden;
}
.Curriculum .conteiner .rotate {
  align-items: center;
  display: flex;
  height: auto;
  justify-content: center;
  position: relative;
  width: auto;
}
.Curriculum .conteiner .rotate::before {
  animation: 50s 0s rotate linear infinite;
  background: url("../img/back-circle.webp") center center/750px auto no-repeat;
  content: "";
  height: 1500px;
  position: absolute;
  top: -110px;
  width: 1600px;
  z-index: -1;
}
@keyframes rotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.Curriculum .conteiner .Curriculum__con {
  color: white;
  padding-bottom: 65px;
}
.Curriculum .conteiner .Curriculum__con .con-text .main-text {
  flex-flow: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 50px;
}
.Curriculum .conteiner .Curriculum__con .con-text .main-text p {
  padding-left: 0;
  border-bottom: none;
  padding-bottom: 0;
  font-size: 18px;
}
.Curriculum .conteiner .Curriculum__con .con-text .main-text .text-main {
  font-size: 25px;
  letter-spacing: 6px;
}
.Curriculum .conteiner .Curriculum__con .main-con .ul-con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.Curriculum .conteiner .Curriculum__con .main-con .ul-con .c-tittle {
  height: clamp(9.375rem, 2.58rem + 13.94vw, 15.125rem);
  background-image: url(../img/Lecturer.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 40px;
}
.Curriculum .conteiner .Curriculum__con .main-con .ul-con .c-text {
  height: clamp(9.375rem, 2.58rem + 13.94vw, 15.125rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}
.Curriculum .conteiner .Curriculum__con .main-con .ul-con .c-text.sp {
  display: none;
}
.Curriculum .conteiner .Curriculum__con .main-con .ul-con .ph-box {
  background-color: rgba(0, 0, 0, 0.35);
  padding-left: 10px;
  padding-right: 10px;
}
.Curriculum .conteiner .Curriculum__con .main-con .ul-con .ph-box .phase {
  letter-spacing: 2px;
}
.Curriculum .conteiner .Curriculum__con .main-con .ul-con li {
  flex: 1 0 auto;
  width: calc(50% - 20px);
  height: auto;
  margin-bottom: 15px;
}
.Curriculum .conteiner .Curriculum__con .main-con .ul-con li p {
  padding: 0 10px;
}
.Curriculum .conteiner .Curriculum__con .main-con .ul-con li ul {
  padding: 0 10px;
}
.Curriculum .conteiner .Curriculum__con .main-con .ul-con .ph-text {
  text-align: left;
  letter-spacing: 4px;
  line-height: 1.5;
}
.Curriculum .conteiner .Curriculum__con .main-con .ul-con .ph-box {
  padding-top: 25px;
  padding-bottom: 40px;
}
.Curriculum .conteiner .Curriculum__con .main-con .ul-con .ph-box .ph-tittle {
  font-size: 25px;
  font-weight: medium;
  margin: 15px 0;
}
.Curriculum .conteiner .Curriculum__con .main-con .ul-con .ph-box li {
  width: 100%;
  height: auto;
  margin-bottom: 0;
  text-align: left;
}
.Curriculum .conteiner .Curriculum__con .main-con .ul-con .c-text {
  padding: 0;
}

@media screen and (max-width: 767px) {
  .Curriculum .conteiner {
    background-image: url(../img/vertical-line.webp);
    background-repeat: no-repeat;
    background-position: 50%;
    overflow: hidden; /* はみ出した文字を非表示にする */
    animation: scroll-background-y 15s linear infinite; /* 10秒かけて無限ループ */
  }
  .Curriculum .conteiner .rotate {
    display: none;
  }
  @keyframes scroll-background-y {
    0% {
      /* 始点: 背景画像を上端から表示 */
      background-position-y: 100%;
    }
    100% {
      /* 終点: 画像1枚分の高さを移動（100%） */
      /* 繰り返しているため、ここで切れ目なく次の画像セットへ移行する */
      background-position-y: 0%;
    }
  }
  .Curriculum .conteiner .Curriculum__con .con-text .main-text {
    width: 100%;
    align-items: start;
  }
  .Curriculum .conteiner .Curriculum__con .con-text .main-text div {
    display: flex;
    border-bottom: 1px solid;
    justify-content: left;
    flex-direction: row-reverse;
  }
  .Curriculum .conteiner .Curriculum__con .con-text .main-text div .text-sub {
    font-size: clamp(0.688rem, 0.643rem + 0.22vw, 0.75rem);
    padding-top: 5px;
    padding-left: 40px;
  }
  .Curriculum .conteiner .Curriculum__con .con-text .main-text div .text-main {
    font-size: clamp(0.7rem, 1.123rem + 0.15vw, 1.438rem);
    letter-spacing: 5px;
  }
  .Curriculum .conteiner .Curriculum__con .con-text .main-text .text-main {
    border-bottom: none;
  }
  .Curriculum .conteiner .Curriculum__con .main-con .ul-con {
    flex-direction: column;
  }
  .Curriculum .conteiner .Curriculum__con .main-con .ul-con li {
    width: 100px;
    font-size: clamp(0.713rem, 0.869rem + 0.72vw, 1.012rem);
  }
  .Curriculum .conteiner .Curriculum__con .main-con .ul-con li.c-tittle {
    width: 100%;
    background-position: 50% 50%;
  }
  .Curriculum .conteiner .Curriculum__con .main-con .ul-con li.c-text {
    width: 100%;
    font-size: clamp(1.25rem, 1.171rem + 0.89vw, 1.5rem);
    display: none;
  }
  .Curriculum .conteiner .Curriculum__con .main-con .ul-con li.c-text.sp {
    display: flex;
    width: 100%;
    font-size: clamp(1.25rem, 1.171rem + 0.89vw, 1.5rem);
    margin-bottom: 30px;
  }
  .Curriculum .conteiner .Curriculum__con .main-con .ul-con li.ph-box {
    width: 100%;
  }
  .Curriculum .conteiner .Curriculum__con .main-con .ul-con li.ph-box .phase span {
    padding-left: 5px;
  }
  .Curriculum .conteiner .Curriculum__con .main-con .ul-con li.ph-box .ph-tittle {
    font-size: clamp(1.188rem, 0.964rem + 1.12vw, 1.5rem);
    font-weight: bold;
  }
}
.Project {
  background-color: white;
}
.Project .conteiner {
  overflow: hidden;
}
.Project .conteiner .rotate {
  align-items: center;
  display: flex;
  height: auto;
  justify-content: center;
  position: relative;
  width: auto;
}
.Project .conteiner .rotate::before {
  animation: 50s 0s rotate linear infinite reverse;
  background: url("../img/back-circle-w.webp") center center/750px auto no-repeat;
  content: "";
  height: 1500px;
  position: absolute;
  top: -120px;
  width: 1600px;
  z-index: 0;
  pointer-events: none;
}
@keyframes rotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.Project .conteiner .Project__con {
  color: rgb(0, 0, 0);
}
.Project .conteiner .Project__con .con-text .main-text {
  flex-flow: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 50px;
}
.Project .conteiner .Project__con .con-text .main-text p {
  padding-left: 0;
  border-bottom: none;
  padding-bottom: 0;
  font-size: 18px;
}
.Project .conteiner .Project__con .con-text .main-text .text-main {
  font-size: 25px;
  letter-spacing: 6px;
}
.Project .conteiner .Project__con .main-con .ul-con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.Project .conteiner .Project__con .main-con .ul-con .p-tittle {
  height: clamp(9.375rem, 2.58rem + 13.94vw, 15.125rem);
  background-image: url(../img/project.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.Project .conteiner .Project__con .main-con .ul-con .p-text {
  height: clamp(9.375rem, 2.58rem + 13.94vw, 15.125rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}
.Project .conteiner .Project__con .main-con .ul-con .p-text.sp {
  display: none;
}
.Project .conteiner .Project__con .main-con .ul-con .case-box {
  background-color: rgba(101, 101, 101, 0.35);
}
.Project .conteiner .Project__con .main-con .ul-con .case-box .case-content {
  text-align: left;
  margin-left: 10px;
  font-size: 20px;
}
.Project .conteiner .Project__con .main-con .ul-con .case-box ul li {
  font-size: clamp(0.969rem, 0.898rem + 0.15vw, 1.02rem);
}
.Project .conteiner .Project__con .main-con .ul-con li {
  flex: 1 0 auto;
  width: calc(50% - 20px);
  height: auto;
  margin-bottom: 15px;
}
.Project .conteiner .Project__con .main-con .ul-con li p {
  padding: 0 5px;
}
.Project .conteiner .Project__con .main-con .ul-con li ul {
  padding: 0 5px;
}
.Project .conteiner .Project__con .main-con .ul-con .case-text {
  text-align: left;
  letter-spacing: 4px;
  line-height: 1.5;
}
.Project .conteiner .Project__con .main-con .ul-con .case-box {
  padding-top: 25px;
  padding-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
}
.Project .conteiner .Project__con .main-con .ul-con .case-box.p-text {
  padding-top: 40px;
}
.Project .conteiner .Project__con .main-con .ul-con .case-box .case {
  letter-spacing: 2px;
}
.Project .conteiner .Project__con .main-con .ul-con .case-box .case-tittle {
  font-size: 25px;
  font-weight: bold;
  margin: 15px 0;
}
.Project .conteiner .Project__con .main-con .ul-con .case-box .case-content {
  text-align: center;
  margin-bottom: 10px;
}
.Project .conteiner .Project__con .main-con .ul-con .case-box ul {
  padding-left: 20px;
}
.Project .conteiner .Project__con .main-con .ul-con .case-box ul li {
  position: relative;
}
.Project .conteiner .Project__con .main-con .ul-con .case-box ul li::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  left: -12px;
  top: 0.6em;
  background-color: black;
  border-radius: 50%;
}
.Project .conteiner .Project__con .main-con .ul-con .case-box li {
  width: 100%;
  height: auto;
  margin-bottom: 0;
  text-align: left;
}
.Project .conteiner .Project__con .notes {
  text-align: left;
  margin-top: 10px;
  letter-spacing: 2px;
  margin-bottom: 80px;
}

@media screen and (max-width: 1023px) {
  .Project .conteiner .Project__con .main-con .ul-con .case-box ul li {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .Project .conteiner {
    background-image: url(../img/vertical-line-w.webp);
    background-repeat: no-repeat;
    background-position: 48%;
    overflow: hidden; /* はみ出した文字を非表示にする */
    animation: scroll-background-y 15s linear infinite; /* 10秒かけて無限ループ */
  }
  .Project .conteiner .rotate {
    display: none;
  }
  @keyframes scroll-background-y {
    0% {
      /* 始点: 背景画像を上端から表示 */
      background-position-y: 100%;
    }
    100% {
      /* 終点: 画像1枚分の高さを移動（100%） */
      /* 繰り返しているため、ここで切れ目なく次の画像セットへ移行する */
      background-position-y: 0%;
    }
  }
  .Project .conteiner .Project__con .con-text .main-text div {
    display: flex;
    flex-direction: row-reverse;
    border-bottom: 1px solid;
    justify-content: left;
  }
  .Project .conteiner .Project__con .con-text .main-text .text-main {
    font-size: clamp(0.7rem, 1.023rem + 0.15vw, 1.438rem);
    letter-spacing: 4px;
    border-bottom: none;
  }
  .Project .conteiner .Project__con .con-text .main-text .text-sub {
    font-size: clamp(0.688rem, 0.643rem + 0.22vw, 0.75rem);
    padding-top: 5px;
    padding-left: 40px;
  }
  .Project .conteiner .Project__con .main-con .ul-con {
    flex-direction: column;
  }
  .Project .conteiner .Project__con .main-con .ul-con li {
    width: 100px;
  }
  .Project .conteiner .Project__con .main-con .ul-con li.p-tittle {
    width: 100%;
    background-position: 50% 50%;
  }
  .Project .conteiner .Project__con .main-con .ul-con li.p-text {
    width: 100%;
    font-size: clamp(1.25rem, 1.171rem + 0.89vw, 1.5rem);
    padding-top: 40px;
    display: none;
  }
  .Project .conteiner .Project__con .main-con .ul-con li.p-text.sp {
    display: flex;
    width: 100%;
    font-size: clamp(1.25rem, 1.171rem + 0.89vw, 1.5rem);
    margin-bottom: 30px;
  }
  .Project .conteiner .Project__con .main-con .ul-con li.case-box {
    width: 100%;
    margin: auto;
  }
  .Project .conteiner .Project__con .main-con .ul-con li.case-box ul {
    padding-right: 10px;
  }
  .Project .conteiner .Project__con .main-con .ul-con li.case-box ul li {
    font-size: clamp(0.713rem, 0.869rem + 0.72vw, 1.012rem);
    margin-bottom: 10px;
  }
  .Project .conteiner .Project__con .main-con .ul-con li.case-box .case {
    font-size: 18px;
  }
  .Project .conteiner .Project__con .main-con .ul-con li.case-box .case span {
    padding-left: 5px;
  }
  .Project .conteiner .Project__con .main-con .ul-con li.case-box .case-tittle {
    font-size: clamp(1.188rem, 0.964rem + 1.12vw, 1.5rem);
  }
  .Project .conteiner .Project__con .main-con .ul-con li.case-box .case-content {
    text-align: center;
    margin-bottom: 10px;
  }
}
.conteiner {
  width: min(100%, 1200px);
  margin: auto;
  text-align: center;
}

footer .conteiner .f-con .f-con__R {
  text-align: left;
}

@media screen and (max-width: 767px) {
  footer .conteiner .f-con .f-con__R {
    text-align: center;
  }
}/*# sourceMappingURL=recruit.css.map */