@charset "UTF-8";
.h-con {
  height: 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.5;
}
.h-con .logo {
  width: 50px;
  height: auto;
  margin-left: 45px;
}
.h-con .logo .logo-ph a img {
  width: 100%;
  transition: transform 1s ease-in-out;
}
.h-con .logo .logo-ph:hover img {
  cursor: none;
  opacity: 0.6;
}
.h-con .logo .logo-ph.js-rotated img {
  transform: rotateZ(360deg);
}
.h-con .logo .logo-text {
  width: 90%;
  margin: auto;
}
.h-con .logo .logo-text img {
  height: 100%;
  padding-bottom: 5px;
}
.h-con .nav {
  color: white;
}
.h-con .nav .nav-contents {
  display: flex;
  margin-right: 45px;
  gap: 40px;
}
.h-con .nav .nav-contents .list-TOP {
  border-bottom: 1px solid white;
}
.h-con .nav .nav-contents .list-About {
  position: relative; /* 疑似要素の基準点 */
}
.h-con .nav .nav-contents .list-About::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-About:hover::after {
  transform: scaleX(1); /* 最終状態: 幅を100%に戻す */
}
.h-con .nav .nav-contents .list-Service {
  position: relative; /* 疑似要素の基準点 */
}
.h-con .nav .nav-contents .list-Service::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-Service:hover::after {
  transform: scaleX(1); /* 最終状態: 幅を100%に戻す */
}
.h-con .nav .nav-contents .list-Recruit {
  position: relative; /* 疑似要素の基準点 */
}
.h-con .nav .nav-contents .list-Recruit::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-Recruit:hover::after {
  transform: scaleX(1); /* 最終状態: 幅を100%に戻す */
}
.h-con .nav .nav-contents .list-Contact {
  position: relative; /* 疑似要素の基準点 */
}
.h-con .nav .nav-contents .list-Contact::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-Contact:hover::after {
  transform: scaleX(1); /* 最終状態: 幅を100%に戻す */
}

@media screen and (max-width: 767px) {
  .h-con nav {
    display: none;
  }
  .h-con .logo {
    margin-left: 20px;
  }
}
#navArea {
  display: none;
}
#navArea .h-nav {
  display: block;
  position: fixed;
  top: 0;
  right: -330px;
  bottom: 0;
  width: 300px;
  background: #515151;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 3;
  opacity: 1;
}
#navArea .h-nav .inner {
  padding: 50px 25px;
}
#navArea .h-nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#navArea .h-nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #ffffff;
}
#navArea .h-nav .inner ul li a {
  display: block;
  color: #9a4141;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
#navArea .h-nav .inner ul li a:hover {
  background: #000000;
}

@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-TOP a {
    color: #ff0000;
  }
  #navArea .toggle_btn {
    display: block;
    position: fixed;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
  }
  #navArea .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 4px;
    transition: all 0.5s;
  }
  #navArea .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  #navArea .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  #navArea .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  #navArea #mask {
    transition: all 0.5s;
  }
  #navArea.open .h-nav {
    right: 0px;
    opacity: 1;
  }
  #navArea.open .toggle_btn span {
    background-color: #fff;
  }
  #navArea.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }
  #navArea.open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  #navArea.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
  }
  #navArea.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #cecece;
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
  }
}
.MV {
  height: calc(100vh - 85px);
  width: 100%;
  position: relative;
  overflow-x: hidden;
  z-index: 0;
}
.MV #myCanvas {
  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 {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.MV .MV__con .MV__text {
  text-align: center;
}
.MV .MV__con .MV__text .MV__main-text {
  font-weight: bold;
  font-size: 96px;
  letter-spacing: 1.25rem;
  margin-right: -1.25rem;
  line-height: 1.5;
  color: white;
}
.MV .MV__con .MV__text .MV__sub-text {
  color: white;
}

@media screen and (max-width: 767px) {
  .MV {
    height: calc(100vh - 160px);
  }
}
.About {
  margin: auto;
  background-color: white;
}
.About .conteiner {
  overflow: hidden;
}
.About .conteiner .rotate {
  align-items: center;
  display: flex;
  height: auto;
  justify-content: center;
  position: relative;
  width: auto;
}
.About .conteiner .rotate::before {
  animation: 50s 0s rotate linear infinite;
  background: url("../img/back-circle-w.webp") center center/1600px auto no-repeat;
  content: "";
  height: 1600px;
  left: -30px;
  position: absolute;
  top: -500px;
  width: 1600px;
  z-index: 0;
  pointer-events: none;
}
@keyframes rotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.About .conteiner .About__con {
  width: min(100%, 1000px);
  margin: auto;
  padding: 120px 0;
}
.About .conteiner .About__con .main-text h2 {
  letter-spacing: 8px;
}
.About .conteiner .About__con .sub-text {
  line-height: 1.5;
}
.About .conteiner .About__con .sub-text ul li br {
  display: none;
}
.About .conteiner .About__con .text {
  display: flex;
  justify-content: right;
}
.About .conteiner .About__con .text p {
  width: 85%;
  margin-right: 30px;
  font-size: 18px;
  line-height: 1.5;
}
.About .conteiner .About__con .view-more {
  width: 100%;
  margin-top: 35px;
  display: flex;
  justify-content: right;
}
.About .conteiner .About__con .view-more a {
  width: 280px;
  height: 50px;
  font-size: 20px;
  color: rgb(255, 255, 255);
  background-color: black;
  transition: background-position 0.8s;
  background-size: 200% 100%;
  background-image: linear-gradient(90deg, rgb(0, 0, 0) 50%, rgb(255, 255, 255) 50%);
  background-position: 0% 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  box-shadow: 10px 10px rgb(195, 195, 195);
}
.About .conteiner .About__con .view-more a:hover {
  color: black;
  background-position: -100% 0%;
}

@media screen and (max-width: 1023px) {
  .About .conteiner .About__con .view-more {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .About .conteiner {
    width: auto;
    padding: 0 20px;
  }
  .About .conteiner .About__con .main-text p {
    font-weight: bold;
    padding-left: 40px;
  }
  .About .conteiner .About__con .sub-text {
    margin-right: 0;
    font-weight: bold;
    padding-top: 50px;
  }
  .About .conteiner .About__con .sub-text ul {
    text-align: center;
  }
  .About .conteiner .About__con .sub-text ul li br {
    display: block;
  }
  .About .conteiner .About__con .sub-text ul li span {
    display: none;
  }
  .About .conteiner .About__con .text ul {
    margin: auto;
    width: 100vw;
  }
  .About .conteiner .About__con .text li br {
    display: none;
  }
  .About .conteiner .About__con .view-more {
    justify-content: center;
  }
  .About .conteiner .About__con .view-more a {
    width: 70vw;
  }
}
.Service {
  background-color: rgb(48, 48, 48);
  color: rgb(255, 255, 255);
}
.Service h3 {
  font-size: 24px;
  text-align: center;
  margin: 25px 0;
}
.Service p {
  font-size: 16px;
}
.Service .text-con {
  box-sizing: border-box;
  width: 50%;
}
.Service .ph-con {
  box-sizing: border-box;
  width: 50%;
  padding-left: 30px;
}
.Service .ph-con .ph {
  width: 100%;
  height: 250px;
}
.Service .ph-con .ph img {
  /* 領域いっぱいに広げ、アスペクト比を保ちつつトリミング */
  width: 100%; /* 親要素 (.ph) の幅いっぱい */
  height: 100%; /* 親要素 (.ph) の高さいっぱい */
  object-fit: cover; /* アスペクト比を維持し、領域を完全に覆う (はみ出し部分を切り取る) */
}
.Service .conteiner {
  width: min(100%, 1100px);
  margin: auto;
  overflow: hidden;
}
.Service .conteiner .rotate {
  align-items: center;
  display: flex;
  height: auto;
  position: relative;
  justify-content: center;
  width: auto;
}
.Service .conteiner .rotate::before {
  animation: 50s 0s rotate linear infinite reverse;
  background: url("../img/back-circle.webp") center center/1650px auto no-repeat;
  content: "";
  height: 1600px;
  right: -40px;
  position: absolute;
  top: -150px;
  width: 1600px;
  z-index: 0;
  pointer-events: none;
}
@keyframes rotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.Service .conteiner .Service__con {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.Service .conteiner .Service__con .con-text {
  width: min(100%, 1000px);
  margin: auto;
  text-align: right;
}
.Service .conteiner .Service__con .con-text .main-text {
  justify-content: right;
}
.Service .conteiner .Service__con .con-text .main-text p {
  padding-left: 0;
  padding-right: 60px;
}
.Service .conteiner .Service__con .con-text .main-text h2 {
  letter-spacing: 8px;
}
.Service .conteiner .Service__con .con-text .sub-text {
  margin-right: 0;
}
.Service .conteiner .Service__con .ses-con {
  width: min(100%, 1100px);
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.Service .conteiner .Service__con .ses-con .text-con .sp {
  display: none;
}
.Service .conteiner .Service__con .ses-con .text-con h3 span {
  font-size: 20px;
}
.Service .conteiner .Service__con .web-con {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}
.Service .conteiner .Service__con .view-more {
  width: 100%;
  margin-top: 35px;
  display: flex;
}
.Service .conteiner .Service__con .view-more a {
  width: 280px;
  height: 50px;
  font-size: 20px;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  transition: background-position 0.8s;
  background-size: 200% 100%;
  background-image: linear-gradient(90deg, rgb(255, 255, 255) 50%, rgb(0, 0, 0) 50%);
  background-position: 0% 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  box-shadow: 10px 10px rgb(195, 195, 195);
}
.Service .conteiner .Service__con .view-more a:hover {
  color: rgb(255, 255, 255);
  background-position: 100% 0%;
}

@media screen and (max-width: 1023px) {
  .Service p {
    padding: 0 30px;
  }
  .Service .conteiner .ph-con {
    width: 100%;
    height: auto;
    padding-left: 0;
  }
  .Service .conteiner .ph-con .ph {
    height: 400px;
  }
  .Service .conteiner .ph-con .ph img {
    max-width: 100%;
  }
  .Service .conteiner .text-con {
    width: 100%;
  }
  .Service .conteiner .Service__con .ses-con {
    flex-direction: column-reverse;
  }
  .Service .conteiner .Service__con .web-con {
    flex-direction: column-reverse;
  }
  .Service .conteiner .Service__con .view-more {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .Service {
    overflow: hidden;
  }
  .Service p {
    padding: 0;
  }
  .Service .conteiner {
    overflow: hidden;
  }
  .Service .conteiner .text-con {
    width: 100%;
  }
  .Service .conteiner .ph-con {
    width: 100%;
    padding-left: 0;
  }
  .Service .conteiner .ph-con .ph {
    width: 100%;
    height: auto;
  }
  .Service .conteiner .ph-con .ph img {
    max-width: 100%;
    height: auto;
  }
  .Service .conteiner .Service__con .con-text {
    text-align: center;
  }
  .Service .conteiner .Service__con .con-text .main-text {
    justify-content: left;
    flex-direction: row-reverse;
    margin-bottom: 50px;
  }
  .Service .conteiner .Service__con .con-text .main-text p {
    padding-right: 0;
    padding-left: 40px;
  }
  .Service .conteiner .Service__con .con-text .sub-text {
    padding-bottom: 30px;
    padding-top: 0;
  }
  .Service .conteiner .Service__con .ses-con {
    flex-direction: column-reverse;
  }
  .Service .conteiner .Service__con .ses-con .text-con h3 {
    width: 100%;
    font-size: clamp(1.3rem, 1.2rem + 0.4vw, 1.5rem);
    margin-top: 20px;
    margin-bottom: 10px;
    display: block;
  }
  .Service .conteiner .Service__con .ses-con .text-con h3 span {
    font-size: clamp(0.675rem, 0.8rem + 0.4vw, 1rem);
  }
  .Service .conteiner .Service__con .ses-con .text-con h3.sp {
    display: none;
  }
  .Service .conteiner .Service__con .ses-con .text-con h3.sp span {
    font-size: 18px;
  }
  .Service .conteiner .Service__con .web-con {
    flex-direction: column-reverse;
  }
  .Service .conteiner .Service__con .web-con .text-con h3 {
    font-size: clamp(1rem, 1.2rem + 0.4vw, 1.5rem);
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .Service .conteiner .Service__con .eng-con .text-con h3 {
    font-size: clamp(1rem, 1.2rem + 0.4vw, 1.5rem);
  }
  .Service .conteiner .Service__con .view-more {
    justify-content: center;
  }
  .Service .conteiner .Service__con .view-more a {
    width: 70vw;
  }
}
.Recruit {
  overflow: hidden;
  background-color: white;
}
.Recruit .conteiner {
  padding: 0;
}
.Recruit .conteiner .scroll-container {
  display: none;
}
.Recruit .conteiner .rotate {
  align-items: center;
  display: flex;
  height: auto;
  justify-content: center;
  position: relative;
  width: auto;
}
.Recruit .conteiner .rotate::before {
  animation: 50s 0s rotate linear infinite;
  background: url("../img/back-circle-w.webp") center center/1500px auto no-repeat;
  content: "";
  height: 1500px;
  position: absolute;
  top: 70px;
  width: 1600px;
  z-index: 0;
  pointer-events: none;
}
@keyframes rotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.Recruit .conteiner .Rec-con {
  width: min(100%, 1200px);
  margin: auto;
  padding-top: 120px;
  padding-left: 20px;
  padding-right: 20px;
}
.Recruit .conteiner .Rec-con .text-main {
  text-align: center;
}
.Recruit .conteiner .Rec-con .text-main h2 {
  font-size: clamp(2.563rem, 1.178rem + 2.16vw, 3.125rem);
  text-align: center;
  display: inline-block;
  padding-bottom: 5px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 8px;
}
.Recruit .conteiner .Rec-con .text-main.sp-n {
  width: auto;
}
.Recruit .conteiner .Rec-con .text-main.sp-n h2 {
  border-bottom: 1px solid;
}
.Recruit .conteiner .Rec-con .r-sp {
  display: none;
}
.Recruit .conteiner .Rec-con .main-text {
  justify-content: center;
  width: min(100%, 1000px);
  margin: auto;
}
.Recruit .conteiner .Rec-con .main-text .text-sub {
  font-size: clamp(1.25rem, 0.635rem + 0.96vw, 1.5rem);
  padding: 0;
  margin-bottom: 5px;
  border-bottom: none;
  font-weight: bold;
}
.Recruit .conteiner .Rec-con .text-main {
  width: min(100%, 1000px);
  margin: auto;
}
.Recruit .conteiner .Rec-con .sub-text {
  font-size: clamp(1.375rem, 0.452rem + 1.44vw, 1.75rem);
  width: min(100%, 1000px);
  margin: auto;
  text-align: center;
  line-height: 1.5;
}
.Recruit .conteiner .Rec-con .view-more {
  width: 100%;
  margin-top: 35px;
  margin-bottom: 120px;
  display: flex;
  justify-content: center;
}
.Recruit .conteiner .Rec-con .view-more a {
  width: 280px;
  height: 50px;
  font-size: 20px;
  color: rgb(255, 255, 255);
  background-color: black;
  transition: background-position 0.8s;
  background-size: 200% 100%;
  background-image: linear-gradient(90deg, rgb(0, 0, 0) 50%, rgb(255, 255, 255) 50%);
  background-position: 0% 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  box-shadow: 10px 10px rgb(195, 195, 195);
}
.Recruit .conteiner .Rec-con .view-more a:hover {
  color: black;
  background-position: -100% 0%;
}
.Recruit .conteiner .Rec-con .root {
  width: 100%;
}
.Recruit .conteiner .Rec-con .root .root-con {
  width: 100%;
  display: flex;
  gap: 35px;
  justify-content: center;
}
.Recruit .conteiner .Rec-con .root .root-con .step-nam {
  text-align: center;
}
.Recruit .conteiner .Rec-con .root .root-con .step-nam .nam {
  font-size: 30px;
  padding-bottom: 0px;
  font-weight: bold;
}
.Recruit .conteiner .Rec-con .root .root-con .step-nam .step {
  font-size: 10px;
  margin-top: 10px;
}
.Recruit .conteiner .Rec-con .root .root-con img {
  width: 100%;
  padding: 10px;
}
.Recruit .conteiner .Rec-con .root .root-con li {
  flex: 0 1 auto;
  width: 26%;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: 65px;
  margin-bottom: 60px;
  border-radius: 3%;
}
.Recruit .conteiner .Rec-con .root .root-con li .list-text {
  color: white;
  background-color: rgba(51, 50, 50, 0.5);
  margin: 0px 10px;
  margin-bottom: 10px;
  text-align: center;
}
.Recruit .conteiner .Rec-con .root .root-con li .list-text .tittle {
  font-size: 20px;
  font-weight: bold;
  padding-top: 15px;
}
.Recruit .conteiner .Rec-con .root .root-con li .list-text .li__main-text {
  font-size: 16px;
  padding: 15px 10px 20px 10px;
  text-align: left;
}
.Recruit .conteiner .Rec-con .signboard .sign-con {
  display: flex;
  justify-content: space-between;
}
.Recruit .conteiner .Rec-con .signboard .sign-con li {
  width: min(100%, 570px);
  height: 250px;
}
.Recruit .conteiner .Rec-con .signboard .sign-con p {
  color: rgba(0, 0, 0, 0);
}
.Recruit .conteiner .Rec-con .signboard .sign-con .curriculum {
  background-image: url(../img/Lecturer.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.Recruit .conteiner .Rec-con .signboard .sign-con .project {
  background-image: url(../img/project.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 30px;
}

@media screen and (max-width: 1023px) {
  .Recruit .conteiner .Rec-con .root {
    width: min(100%, 1000px);
  }
  .Recruit .conteiner .Rec-con .root .root-con {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0;
  }
  .Recruit .conteiner .Rec-con .root .root-con li {
    width: 40%;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .Recruit {
    background-image: url(../img/vertical-line-w.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20% auto;
    overflow: hidden; /* はみ出した文字を非表示にする */
    animation: scroll-background-y 15s linear infinite; /* 10秒かけて無限ループ */
    transform: translateZ(0);
  }
  @keyframes scroll-background-y {
    0% {
      /* 始点: 背景画像を上端から表示 */
      background-position-y: 100%;
    }
    100% {
      /* 終点: 画像1枚分の高さを移動（100%） */
      /* 繰り返しているため、ここで切れ目なく次の画像セットへ移行する */
      background-position-y: 0%;
    }
  }
  .Recruit .conteiner {
    width: auto;
    padding: 0 0px;
  }
  .Recruit .conteiner .rotate {
    display: none;
  }
  .Recruit .conteiner .Rec-con {
    padding-left: 0;
    padding-right: 0;
  }
  .Recruit .conteiner .Rec-con .root {
    width: 100%;
  }
  .Recruit .conteiner .Rec-con .root .root-con {
    flex-flow: column;
    padding: 0 20px;
  }
  .Recruit .conteiner .Rec-con .root .root-con li {
    width: 70vw;
    margin: 15px auto;
  }
  .Recruit .conteiner .Rec-con .main-text .text-sub {
    font-size: clamp(1.063rem, 0.961rem + 0.45vw, 1.25rem);
    margin-bottom: 0;
  }
  .Recruit .conteiner .Rec-con .main-text.sp-n {
    display: none;
  }
  .Recruit .conteiner .Rec-con .r-sp {
    margin-left: 20px;
    display: block;
    display: flex;
    flex-direction: row-reverse;
    justify-content: left;
  }
  .Recruit .conteiner .Rec-con .r-sp .main-text {
    flex-direction: row-reverse;
    border-bottom: 1px solid;
    width: auto;
    align-items: center;
    margin: 0;
    margin-bottom: 50px;
  }
  .Recruit .conteiner .Rec-con .r-sp .main-text P {
    padding-top: 5px;
  }
  .Recruit .conteiner .Rec-con .r-sp .main-text h2 {
    margin-right: 40px;
  }
  .Recruit .conteiner .Rec-con .text-main {
    width: auto;
    border-bottom: none;
    margin: 0;
  }
  .Recruit .conteiner .Rec-con .text-main h2 {
    font-size: clamp(1.875rem, 1.536rem + 1.51vw, 2.5rem);
  }
  .Recruit .conteiner .Rec-con .text-main.sp-n {
    display: none;
  }
  .Recruit .conteiner .Rec-con .sub-text {
    padding: 0 20px;
    padding-bottom: 10px;
  }
  .Recruit .conteiner .Rec-con .sub-text p {
    font-size: clamp(1.375rem, 0.452rem + 1.44vw, 1.75rem);
  }
  .Recruit .conteiner .Rec-con .signboard {
    margin: auto;
  }
  .Recruit .conteiner .Rec-con .signboard .sign-con {
    flex-flow: column;
  }
  .Recruit .conteiner .Rec-con .signboard .sign-con .curriculum {
    width: 100%;
    margin: auto;
    background-size: cover;
    background-position: 50% 50%;
    margin-bottom: 20px;
    margin-top: 35px;
  }
  .Recruit .conteiner .Rec-con .signboard .sign-con .project {
    width: 100%;
    margin-left: 0;
    margin: auto;
    background-size: cover;
    background-position: 50% 50%;
  }
  .Recruit .conteiner .Rec-con .signboard .sign-con li {
    height: clamp(9.375rem, 7.102rem + 11.36vw, 15.625rem);
  }
  .Recruit .conteiner .Rec-con .root .root-con li {
    width: 100%;
  }
  .Recruit .conteiner .Rec-con .root .root-con .step-nam .nam {
    font-size: 30px;
  }
  .Recruit .conteiner .Rec-con .root .root-con .step-nam .step {
    font-size: clamp(0.625rem, 0.446rem + 0.89vw, 0.875rem);
  }
  .Recruit .conteiner .Rec-con .root .root-con .list-text .li__main-text {
    font-size: 16px;
  }
  .Recruit .conteiner .Rec-con .view-more {
    justify-content: center;
  }
  .Recruit .conteiner .Rec-con .view-more a {
    width: 70%;
  }
}
.Contact {
  width: 100%;
  height: 100%;
  padding-top: 45px;
  padding-bottom: 85px;
  position: relative;
  z-index: 0;
}
.Contact #myCanvas2 {
  display: block; /* ブロック要素として表示し、マージンなどの問題を避ける */
  cursor: move; /* ユーザーが視点を動かせることがわかるようにカーソルを設定 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 30px;
  color: white;
  z-index: -5;
}
.Contact .conteiner {
  color: white;
}
.Contact .conteiner .main-text {
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.Contact .conteiner .main-text .text-main {
  border-bottom: none;
}
.Contact .conteiner .sub-text {
  text-align: center;
  margin: 0;
}
.Contact .view-more {
  width: 100%;
  display: flex;
  justify-content: center;
}
.Contact .view-more .v-con {
  width: 280px;
  height: 50px;
  margin-top: 35px;
  padding-bottom: 85px;
}
.Contact .view-more .v-con a {
  width: 280px;
  height: 50px;
  font-size: 20px;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  transition: background-position 0.8s;
  background-size: 100% 200%;
  background-image: linear-gradient(180deg, rgb(255, 255, 255) 50%, rgb(0, 0, 0) 50%);
  background-position: 0% 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  box-shadow: 10px 10px rgb(195, 195, 195);
}
.Contact .view-more .v-con:hover a {
  color: rgb(255, 255, 255);
  background-position: 0% -100%;
}

@media screen and (max-width: 767px) {
  .Contact {
    padding-bottom: 50px;
    border-bottom: none;
  }
  .Contact .conteiner .main-text .sub-text {
    font-weight: normal;
  }
  .Contact #myCanvas2 {
    height: 100%;
  }
  .Contact .view-more .v-con {
    width: 70%;
  }
  .Contact .view-more .v-con a {
    width: auto;
  }
}
.f-con {
  width: min(100%, 1000px);
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}
.f-con .f-con__L {
  width: 50%;
}
.f-con .f-con__L address {
  display: flex;
  justify-content: space-between;
}
.f-con .f-con__L address iframe {
  filter: grayscale(1);
  width: 45%;
  height: 120px;
}
.f-con .f-con__L address .l-con {
  text-align: left;
}
.f-con .f-con__L address .l-con p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.f-con .f-con__L address .l-con ul li {
  font-size: 16px;
}
.f-con .f-con__L address .l-con ul .mail a {
  border-bottom: 1px solid rgb(197, 197, 197);
}
.f-con .f-con__R {
  display: flex;
}
.f-con .f-con__R .L-side h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: normal;
}
.f-con .f-con__R .L-side ul li a {
  position: relative; /* 疑似要素の基準点 */
}
.f-con .f-con__R .L-side ul li a::after {
  content: "";
  position: absolute;
  bottom: 0; /* リンクの最下部に配置 */
  left: 0;
  width: 100%;
  height: 2px; /* 線の太さ（border-bottomの代わり） */
  background-color: rgb(48, 48, 48); /* 染まる色（青） */
  transform: scaleX(0); /* 1. 初期状態: 幅をゼロにして隠す */
  transform-origin: left; /* 2. 起点: 左端に固定 */
  /* transformのみをアニメーション対象にする */
  transition: transform 0.3s ease-out;
}
.f-con .f-con__R .L-side ul li a:hover::after {
  transform: scaleX(1); /* 最終状態: 幅を100%に戻す */
}
.f-con .f-con__R .sp-L-side {
  display: none;
}
.f-con .f-con__R .R-side {
  margin-top: 36px;
}
.f-con .f-con__R .R-side ul li a {
  position: relative; /* 疑似要素の基準点 */
}
.f-con .f-con__R .R-side ul li a::after {
  content: "";
  position: absolute;
  bottom: 0; /* リンクの最下部に配置 */
  left: 0;
  width: 100%;
  height: 2px; /* 線の太さ（border-bottomの代わり） */
  background-color: rgb(48, 48, 48); /* 染まる色（青） */
  transform: scaleX(0); /* 1. 初期状態: 幅をゼロにして隠す */
  transform-origin: left; /* 2. 起点: 左端に固定 */
  /* transformのみをアニメーション対象にする */
  transition: transform 0.3s ease-out;
}
.f-con .f-con__R .R-side ul li a:hover::after {
  transform: scaleX(1); /* 最終状態: 幅を100%に戻す */
}

.f-cp {
  text-align: center;
  padding-bottom: 30px;
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  .f-con {
    flex-flow: column-reverse;
  }
  .f-con .f-con__L {
    margin: auto;
    width: 80%;
  }
  .f-con .f-con__L address {
    width: 100%;
    flex-flow: column;
    text-align: center;
    margin: auto;
  }
  .f-con .f-con__L address .l-con .in-con {
    width: 100%;
    margin: auto;
    text-align: center;
  }
  .f-con .f-con__L address .l-con .in-con p {
    text-align: center;
    font-size: 22px;
    margin-top: 20px;
  }
  .f-con .f-con__L address .l-con .in-con .ul {
    display: flex;
    justify-content: center;
  }
  .f-con .f-con__L address .l-con .in-con ul {
    width: auto;
    text-align: left;
  }
  .f-con .f-con__L address .l-con .in-con ul li {
    font-size: 18px;
    padding-bottom: 5px;
  }
  .f-con .f-con__L address iframe {
    width: 60%;
    margin: auto;
    padding-top: 25px;
    margin-bottom: 80px;
  }
  .f-con .f-con__R {
    width: 80%;
    flex-flow: column;
    margin: auto;
    text-align: center;
  }
  .f-con .f-con__R .L-side {
    display: none;
  }
  .f-con .f-con__R .R-side {
    margin-top: 0;
  }
  .f-con .f-con__R .R-side ul li {
    margin-bottom: 10px;
  }
  .f-con .f-con__R .R-side ul li:nth-child(1) {
    margin-top: 10px;
  }
  .f-con .f-con__R .R-side ul li:nth-child(3) {
    margin-bottom: 0;
  }
  .f-con .f-con__R .sp-L-side {
    display: block;
    font-size: clamp(1.125rem, 1.036rem + 0.45vw, 1.25rem);
  }
  .f-con .f-con__R .sp-L-side h4 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
  }
  .f-con .f-con__R .sp-L-side ul {
    margin-bottom: 10px;
  }
  .f-con .f-con__R .sp-L-side .service-toggle-section div {
    display: flex;
    justify-content: center;
  }
  .f-con .f-con__R .sp-L-side .service-toggle-section div .service-heading.open .toggle-icon {
    transform: rotate(180deg);
  }
  .f-con .f-con__R .sp-L-side .service-toggle-section .service-menu-list {
    width: 300px;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-left: clamp(5rem, 4.105rem + 4.47vw, 6.25rem);
    margin: auto;
  }
  .f-con .f-con__R .sp-L-side .service-toggle-section .service-menu-list.hidden {
    display: none;
  }
  .f-con .f-con__R .sp-L-side .service-toggle-section .service-menu-list li {
    font-size: clamp(0.875rem, 0.79rem + 0.45vw, 1rem);
    margin-bottom: 10px;
  }
  .f-con .f-con__R .sp-L-side .service-toggle-section .service-menu-list li:nth-child(1) {
    margin-top: 10px;
  }
  .f-cp {
    padding-top: 0;
  }
}
body {
  width: 100%;
  height: auto;
  line-height: 1.5;
  font-family: "Noto Serif JP", sans-serif;
  background-color: rgb(48, 48, 48);
  margin: auto;
  overflow-x: hidden;
}

header {
  background-color: rgb(48, 48, 48);
  height: 85px;
  position: sticky;
  top: 0;
  z-index: 8;
  transition: opacity 0.5s ease-in-out;
}

main .main-text {
  line-height: 1.5;
}
main .main-text .text-main {
  font-size: clamp(2.563rem, 1.178rem + 2.16vw, 3.125rem);
  border-bottom: 1px solid;
  letter-spacing: 1.5px;
}
main .main-text .text-sub {
  font-size: clamp(1.25rem, 0.635rem + 0.96vw, 1.5rem);
  padding-bottom: 8px;
  border-bottom: 1px solid;
  padding-left: 60px;
}
main .sub-text {
  font-size: clamp(1.375rem, 0.452rem + 1.44vw, 1.75rem);
  padding-top: 25px;
  padding-bottom: 35px;
  margin-right: 65px;
}
main .text ul li {
  font-size: 18px;
}
main .text ul li:nth-child(2) {
  margin: 10px 0;
}
main .text ul li:nth-child(3) {
  margin-bottom: 10px;
}
main .conteiner {
  width: min(100%, 1200px);
  padding: 0 20px;
  margin: auto;
}
main .main-text {
  display: flex;
  align-items: end;
}

footer {
  background-color: rgb(238, 238, 238);
}

@media screen and (max-width: 1023px) {
  main {
    width: 100%;
  }
  main .text-con {
    width: 100%;
  }
  main .ph-con {
    width: 100%;
  }
  main .ph-con .ph {
    max-width: 100%;
    margin: auto;
  }
  footer .f-con {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  header {
    margin: auto;
    background-color: rgba(48, 48, 48, 0.5);
  }
  header.is-stuck .h-con .logo {
    text-shadow: 0px 0px 5px #000000;
  }
  main {
    width: 100vw;
  }
  main .conteiner {
    padding: 0 20px;
  }
  main .main-text .text-main {
    font-size: clamp(1.875rem, 1.536rem + 1.51vw, 2.5rem);
  }
  main .main-text .text-sub {
    font-size: clamp(1.063rem, 0.961rem + 0.45vw, 1.25rem);
  }
  main .sub-text {
    font-size: clamp(1.25rem, 1.161rem + 0.45vw, 1.375rem);
    margin: auto;
  }
  main .text ul li {
    font-size: clamp(1rem, 0.911rem + 0.45vw, 1.125rem);
  }
  footer .f-con {
    padding-top: 50px;
  }
}/*# sourceMappingURL=style.css.map */