@charset "UTF-8";
.h-con .nav .nav-contents .list-About {
  border-bottom: 1px solid white;
}
.h-con .nav .nav-contents .list-About:hover::after {
  display: none;
}
.h-con .nav .nav-contents .list-TOP {
  border-bottom: none;
}
.h-con .nav .nav-contents .list-TOP {
  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%に戻す */
}

@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: #ffffff;
  }
  #navArea .h-nav .inner ul li.list-About a {
    color: #ff0000;
  }
}
.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 {
  line-height: 1;
  font-size: 55px;
  padding: 0 10px 5px 10px;
}

.About .conteiner .About__con {
  padding: 80px 0;
}
.About .conteiner .About__con .main-text h2 {
  font-size: clamp(1.438rem, 1.295rem + 0.3vw, 1.563rem);
  padding-bottom: 5px;
}
.About .conteiner .About__con .main-text p {
  font-size: clamp(0.75rem, 0.608rem + 0.3vw, 0.875rem);
  font-weight: bold;
  padding-left: 40px;
}
.About .conteiner .About__con .sub-text {
  text-align: center;
  padding-top: 35px;
  padding-bottom: 45px;
  margin-right: 0;
  font-weight: bold;
}
.About .conteiner .About__con .sub-text .br1 {
  display: none;
}
.About .conteiner .About__con .text {
  justify-content: center;
}
.About .conteiner .About__con .text p {
  width: 100%;
  margin-right: 0;
}
.About .conteiner .About__con .text p span {
  display: block;
}
.About .conteiner .About__con .text p .text2 {
  margin: 20px 0;
}

@media screen and (max-width: 767px) {
  .About .conteiner .About__con {
    padding-top: 70px;
  }
  .About .conteiner .About__con .main-text h2 {
    font-size: clamp(0.7rem, 1.123rem + 0.15vw, 1.438rem);
    letter-spacing: 5px;
  }
  .About .conteiner .About__con .main-text p {
    font-size: clamp(0.688rem, 0.643rem + 0.22vw, 0.75rem);
  }
  .About .conteiner .About__con .sub-text {
    padding-bottom: 50px;
  }
  .About .conteiner .About__con .sub-text .br1 {
    display: block;
  }
  .About .conteiner .About__con .sub-text span {
    display: none;
  }
}
.C-Profile {
  background-color: rgb(48, 48, 48);
}
.C-Profile .conteiner {
  width: min(100%, 1000px);
}
.C-Profile .conteiner .C-P__con .con-text {
  color: white;
}
.C-Profile .conteiner .C-P__con .con-text .main-text {
  padding-top: 80px;
  padding-bottom: 10px;
}
.C-Profile .conteiner .C-P__con .con-text .main-text h2 {
  font-size: clamp(1.438rem, 1.295rem + 0.3vw, 1.563rem);
  padding-bottom: 2px;
  letter-spacing: 8px;
}
.C-Profile .conteiner .C-P__con .con-text .main-text p {
  font-size: clamp(0.75rem, 0.608rem + 0.3vw, 0.875rem);
}
.C-Profile .conteiner .C-P__con .con-text .data-list {
  font-size: 18px;
  padding-bottom: 80px;
}
.C-Profile .conteiner .C-P__con .con-text .data-list dl .data-con {
  display: flex;
}
.C-Profile .conteiner .C-P__con .con-text .data-list dl .data-con dt {
  width: 30%;
  box-sizing: border-box;
  border-bottom: 1px solid rgb(71, 71, 71);
  margin-right: 10%;
  padding: 25px 0;
}
.C-Profile .conteiner .C-P__con .con-text .data-list dl .data-con dd {
  width: 70%;
  box-sizing: border-box;
  border-bottom: 1px solid rgb(71, 71, 71);
  margin-right: 1%;
  padding: 25px 0;
}
.C-Profile .conteiner .C-P__con .con-text .data-list dl .data-con dd a {
  border-bottom: 1px solid white;
}

@media screen and (max-width: 767px) {
  .C-Profile .conteiner .C-P__con .con-text .main-text {
    padding-bottom: 25px;
  }
  .C-Profile .conteiner .C-P__con .con-text .main-text h2 {
    font-size: clamp(0.7rem, 1.123rem + 0.15vw, 1.438rem);
    letter-spacing: 5px;
  }
  .C-Profile .conteiner .C-P__con .con-text .main-text p {
    font-size: clamp(0.688rem, 0.643rem + 0.22vw, 0.75rem);
  }
  .C-Profile .conteiner .C-P__con .con-text .data-list {
    font-size: clamp(0.875rem, 0.741rem + 0.67vw, 1.063rem);
  }
  .C-Profile .conteiner .C-P__con .con-text .data-list dl .data-con {
    flex-direction: column;
  }
  .C-Profile .conteiner .C-P__con .con-text .data-list dl .data-con dt {
    border-bottom: none;
    padding-bottom: 0;
  }
  .C-Profile .conteiner .C-P__con .con-text .data-list dl .data-con dd {
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.Greeting {
  background-image: url(../img/GREETING.svg);
  background-size: 70% auto;
  background-repeat: no-repeat;
  background-position: 37% 22%;
  background-color: white;
}
.Greeting .conteiner .gre-con {
  width: min(100%, 1000px);
  margin: auto;
}
.Greeting .conteiner .gre-con .main-text h2 {
  font-size: clamp(1.875rem, 1.733rem + 0.3vw, 2rem);
  padding-top: 220px;
}
.Greeting .conteiner .gre-con .text {
  font-size: clamp(1rem, 0.858rem + 0.3vw, 1.125rem);
  letter-spacing: 8px;
  padding-top: 25px;
}
.Greeting .conteiner .gre-con .text .text-1 {
  padding-bottom: 18px;
}
.Greeting .conteiner .gre-con .text .text-3 {
  padding-bottom: 20px;
}
.Greeting .conteiner .gre-con .text .text-name {
  padding-bottom: 80px;
}

@media screen and (max-width: 1023px) {
  .Greeting {
    background-position: 5% 27.5%;
    background-size: 90% auto;
  }
}
@media screen and (max-width: 767px) {
  .Greeting {
    background-position: 5% 7%;
    background-size: 90% auto;
  }
  .Greeting .conteiner .gre-con .main-text h2 {
    font-size: clamp(1rem, 0.821rem + 0.89vw, 1.25rem);
    padding-top: 70px;
  }
  .Greeting .conteiner .gre-con .text {
    font-size: clamp(1rem, 0.9rem + 0.45vw, 1.2rem);
  }
  .Greeting .conteiner .gre-con .text .text-name {
    padding-bottom: 70px;
  }
}/*# sourceMappingURL=about.css.map */