@charset "UTF-8";
a {
  text-decoration: none;
  transition: all 0s ease;
}

.button_view {
  font-family: din-2014, sans-serif;
}
.button_view img {
  padding-left: 10px;
  padding-bottom: 2px;
}

p {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.all_button {
  width: 100%;
  max-width: 1440px;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
  background-color: #124CB4;
  display: block;
  padding: 32px 0px;
  box-sizing: border-box;
  font-size: min(1vw, 15px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 3px !important;
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
}
@media screen and (max-width: 767px) {
  .all_button {
    font-size: 10px;
    margin-top: 0px;
    padding: 20px 0px;
    font-size: 13px;
  }
}

.side {
  position: absolute;
  top: 100px;
  bottom: 0; /* ← これで上から下まで */
  width: 6px;
  z-index: 10;
  background-image: url(../img/pat_side.png);
  background-size: 100%;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .side {
    top: 40px;
    width: 5px;
  }
}

.side.left {
  left: 0;
}

.side.right {
  right: 0;
}

.wrapper {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}

.kv {
  height: 100vh;
  width: 100%;
  background: none;
  background-color: #000;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .kv {
    flex-direction: column;
  }
}
.kv .kv_left {
  width: 40%;
  height: 100%;
  padding-top: 80px;
  background-color: #000000;
  box-sizing: border-box;
  padding-left: 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  .kv .kv_left {
    width: 100%;
    height: 60%;
    padding-top: 40px;
  }
}
.kv .kv_left .sub_title {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .kv .kv_left .sub_title {
    width: 70%;
  }
}
.kv .kv_left .logo {
  width: 65%;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .kv .kv_left .logo {
    width: 50%;
    padding-left: 8px;
  }
}
.kv .kv_left .body_title {
  width: 90%;
}
.kv .kv_left .kv_time {
  width: 70%;
  padding-left: 8px;
  padding-top: 12px;
}
@media screen and (max-width: 767px) {
  .kv .kv_left .kv_time {
    width: 70%;
    padding-left: 8px;
    padding-top: 4px;
  }
}
.kv .kv_right {
  width: 60%;
  height: 100%;
  display: block;
  position: relative;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .kv .kv_right {
    width: 100%;
    height: 40%;
  }
}
.kv .kv_right {
  /* 動画読み込み中のローディング（背景は黒） */
}
.kv .kv_right .kv_video_loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}
.kv .kv_right .kv_video_loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.kv .kv_right .kv_video_loading_inner {
  text-align: center;
}
.kv .kv_right .kv_video_loading_spinner {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: kv-video-loading-spin 0.8s linear infinite;
}
@keyframes kv-video-loading-spin {
  to {
    transform: rotate(360deg);
  }
}
.kv .kv_right .kv_gradation {
  width: 20%;
  position: absolute;
  top: 0;
  left: -2px;
  height: 100%;
}
.kv .kv_right .kv_gradation_sp {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 20%;
}
.kv .kv_right .kv_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* スクロール中のタップで全画面にならないようにする */
  pointer-events: none;
}

.sec {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.sec_kv {
  display: flex;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background-image: url(../img/pat_line.png);
  background-size: 30px 30px;
}
@media screen and (max-width: 767px) {
  .sec_kv {
    flex-direction: column;
  }
}
.sec_kv .title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.sec_kv .title h2 {
  font-size: 48px;
  font-family: "Staatliches", cursive;
  font-weight: 200;
  color: #124CB4;
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  .sec_kv .title h2 {
    font-size: 36px;
  }
}
.sec_kv .title a {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  background-color: #c9c9c9;
  text-decoration: none;
  border-radius: 3px;
  padding: 3px 10px 2px 8px;
  line-height: 1.2;
}
.sec_kv .title a:hover {
  background-color: #124CB4;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sec_kv .title a {
    font-size: 12px;
  }
}
.sec_kv .news {
  width: 55%;
  padding: 20px;
  padding-left: 40px;
  padding-top: 60px;
  padding-bottom: 30px;
  box-sizing: border-box;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .sec_kv .news {
    width: 100%;
    padding: 24px;
    padding-bottom: 40px;
    padding-top: 40px;
    border: none;
    border-bottom: 1px solid #fff;
  }
}
.sec_kv .news .news_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .sec_kv .news .news_list {
    gap: 10px;
  }
}
.sec_kv .news .news_list .news_item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
  border-left: 3px solid #fff;
  padding-left: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  box-sizing: border-box;
  padding-right: 10px;
}
.sec_kv .news .news_list .news_item:hover {
  background-color: #124CB4;
}
@media screen and (max-width: 767px) {
  .sec_kv .news .news_list .news_item {
    padding-left: 10px;
    padding-right: 10px;
    border-left: 2px solid #fff;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.sec_kv .news .news_list .news_item .news_item_left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.sec_kv .news .news_list .news_item .news_item_left .news_item_date {
  font-size: 13px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.2;
  font-family: din-2014, sans-serif;
}
@media screen and (max-width: 767px) {
  .sec_kv .news .news_list .news_item .news_item_left .news_item_date {
    font-size: 10px;
  }
}
.sec_kv .news .news_list .news_item .news_item_left .news_item_date .news_new {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #000;
  background: #F5521E;
  padding: 2px 6px;
  margin-right: 3px;
  vertical-align: middle;
  position: relative;
  bottom: 1px;
}
@media screen and (max-width: 767px) {
  .sec_kv .news .news_list .news_item .news_item_left .news_item_date .news_new {
    font-size: 9px;
    padding: 1px 4px;
    margin-right: 4px;
  }
}
.sec_kv .news .news_list .news_item .news_item_left .news_item_title {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  text-wrap-mode: wrap;
}
@media screen and (max-width: 767px) {
  .sec_kv .news .news_list .news_item .news_item_left .news_item_title {
    font-size: 12px;
  }
}
.sec_kv .news .news_list .news_item .news_item_left .news_item_title p {
  margin: 0;
  line-height: 1.4;
}
.sec_kv .news .news_list .news_item img {
  width: 120px;
}
@media screen and (max-width: 767px) {
  .sec_kv .news .news_list .news_item img {
    width: 60px;
    height: 40px;
  }
}
.sec_kv .message {
  width: 45%;
  padding: 40px;
  padding-right: 60px;
  padding-left: 30px;
  padding-top: 60px;
  padding-bottom: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_kv .message {
    width: 100%;
    padding: 24px;
    padding-top: 40px;
    padding-bottom: 0px;
    border: none;
    border-bottom: 1px solid #fff;
  }
}
.sec_kv .message .message_bg {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  z-index: 10;
}
.sec_kv .message .message_items_wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 420px;
  min-height: 420px;
  max-height: 420px;
  overflow-y: hidden;
  overflow-x: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .sec_kv .message .message_items_wrap {
    height: 350px;
    min-height: 300px;
    max-height: 400px;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}
.sec_kv .message .message_item {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.sec_kv .message .message_item .message_item_name {
  font-size: 12px;
  font-weight: 500;
  color: #000;
  background-color: #D9D9D9;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 2px 8px;
}
@media screen and (max-width: 767px) {
  .sec_kv .message .message_item .message_item_name {
    font-size: 10px;
    padding: 1px 4px;
  }
}
.sec_kv .message .message_item .message_item_text_wrap {
  box-sizing: border-box;
  padding: 16px 20px;
  color: #D9D9D9;
  width: 100%;
  position: relative;
  /* 枠: 外側に1pxはみ出した同じ形（#D9D9D9） */
}
.sec_kv .message .message_item .message_item_text_wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: #D9D9D9;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  z-index: 0;
}
.sec_kv .message .message_item .message_item_text_wrap {
  /* 内側: 1px内側の同じ形（#000）で枠だけ見せる */
}
.sec_kv .message .message_item .message_item_text_wrap::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: rgba(0, 0, 0, 0.9);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .sec_kv .message .message_item .message_item_text_wrap {
    padding: 10px 12px;
  }
}
.sec_kv .message .message_item .message_item_text_wrap .message_item_text {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
  clip-path: inherit;
}
@media screen and (max-width: 767px) {
  .sec_kv .message .message_item .message_item_text_wrap .message_item_text {
    font-size: 12px;
  }
}

.whats_wrap {
  width: 100%;
  background-image: url(../img/bg_mv01.png);
  background-size: cover;
  box-sizing: border-box;
  padding: 120px 0 160px;
}
@media screen and (max-width: 767px) {
  .whats_wrap {
    background: rgba(0, 0, 0, 0.9);
    background-image: url(../img/bg_mv01@sp.png);
    padding: 40px 0 40px;
    background-position: center bottom;
    background-size: cover;
  }
}
.whats_wrap .whats {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .whats_wrap .whats {
    gap: 10px;
    padding: 40px 0 40px;
  }
}
.whats_wrap .whats .whats_image_01 {
  position: absolute;
  right: 0;
  bottom: -12%;
  width: 47%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .whats_wrap .whats .whats_image_01 {
    right: 0%;
    top: 0%;
    width: 40%;
  }
}
.whats_wrap .whats .whats_image_02 {
  position: absolute;
  right: 24%;
  top: 3%;
  width: 12%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .whats_wrap .whats .whats_image_02 {
    right: 0%;
    top: auto;
    bottom: 0%;
    width: 27%;
  }
}
.whats_wrap .whats .whats_title {
  display: flex;
  flex-direction: column;
}
.whats_wrap .whats .whats_title h7 {
  font-size: 16px;
  font-weight: 600;
  color: #F5521E;
}
@media screen and (max-width: 767px) {
  .whats_wrap .whats .whats_title h7 {
    font-size: 12px;
  }
}
.whats_wrap .whats .whats_title h6 {
  font-size: 40px;
  font-weight: 600;
  color: #F5521E;
  font-family: "Staatliches", cursive;
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  .whats_wrap .whats .whats_title h6 {
    font-size: 36px;
  }
}
.whats_wrap .whats .whats_content {
  z-index: 100;
}
.whats_wrap .whats .whats_content h5 {
  font-size: 2vw;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .whats_wrap .whats .whats_content h5 {
    font-size: 5.6vw;
    margin-top: 10px;
  }
}
.whats_wrap .whats .whats_content p {
  font-size: min(1.2vw, 18px);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 1px;
  margin-top: 60px;
  margin-bottom: 40px;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .whats_wrap .whats .whats_content p {
    font-size: 13px;
    letter-spacing: 0px;
    margin-top: 40px;
    width: 100%;
  }
}

.mission_wrap {
  width: 100%;
  box-sizing: border-box;
  padding: 120px 0 160px;
  background-image: url(../img/pat_line.png);
  background-size: 30px 30px;
}
.mission_wrap .mission {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission {
    width: 100%;
    padding: 40px 0 40px;
  }
}
.mission_wrap .mission .mission_title {
  text-align: center;
}
.mission_wrap .mission .mission_title h2 {
  font-size: 64px;
  font-weight: 600;
  color: #124CB4;
  letter-spacing: 3px;
  font-family: "Staatliches", cursive;
  line-height: 1.2;
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_title h2 {
    font-size: 36px;
  }
}
.mission_wrap .mission .mission_title p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 1px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_title p {
    font-size: 13px;
  }
}
.mission_wrap .mission .mission_line {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_line {
    display: none;
  }
}
.mission_wrap .mission .mission_line img {
  width: 100%;
}
.mission_wrap .mission .mission_content {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_content {
    flex-direction: column;
  }
}
.mission_wrap .mission .mission_content .mission_content_item {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_content .mission_content_item {
    width: 90%;
    padding-top: 40px;
    margin: 0 auto;
  }
}
.mission_wrap .mission .mission_content .mission_content_item .mission_content_item_title p {
  text-align: center;
  color: #F5521E;
  font-family: din-2014, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_content .mission_content_item .mission_content_item_title p {
    font-size: 15px;
  }
}
.mission_wrap .mission .mission_content .mission_content_item .mission_content_item_title h3 {
  text-align: center;
  font-size: 32px;
  letter-spacing: 3px;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 12px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_content .mission_content_item .mission_content_item_title h3 {
    font-size: 24px;
    margin-top: 4px;
  }
}
.mission_wrap .mission .mission_content .mission_content_item p {
  font-size: 21px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 0;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_content .mission_content_item p {
    font-size: 15px;
    margin-top: 6px;
  }
}
.mission_wrap .mission .mission_content .mission_content_item .mission_movie {
  margin-top: 32px;
  position: relative;
}
.mission_wrap .mission .mission_content .mission_content_item .mission_movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.mission_wrap .mission .mission_content .mission_content_item .mission_movie .copyright {
  font-size: 9px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: left;
  text-align-last: left;
  position: absolute;
  bottom: -12px;
  right: 0;
  opacity: 0.5;
}
.mission_wrap .mission .mission_content .mission_content_item .mission_desc {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}
.mission_wrap .mission .mission_content .mission_content_item .mission_desc .mission_desc_item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.mission_wrap .mission .mission_content .mission_content_item .mission_desc .mission_desc_item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 1px;
  margin-bottom: 0;
  text-align: left;
  text-align-last: left;
  margin-top: 10px;
}
.mission_wrap .mission .mission_content .mission_content_item .mission_desc .mission_desc_item p:first-child {
  font-family: din-2014, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #F5521E;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_content .mission_content_item .mission_desc .mission_desc_item p {
    font-size: 11px;
    margin-top: 6px;
    line-height: 1.25;
  }
}
.mission_wrap .mission .mission_schedule {
  margin: 0 auto;
  margin-top: 120px;
  margin-bottom: 200px;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_schedule {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-top: 100px;
  }
}
.mission_wrap .mission .mission_schedule .mission_schedule_title {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_schedule .mission_schedule_title {
    margin-top: 20px;
  }
}
.mission_wrap .mission .mission_schedule .mission_schedule_title p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 1px;
  margin-bottom: 0;
  color: #F5521E;
  font-family: "Staatliches", cursive;
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_schedule .mission_schedule_title p {
    font-size: 15px;
  }
}
.mission_wrap .mission .mission_schedule .mission_schedule_title h3 {
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_schedule .mission_schedule_title h3 {
    font-size: 20px;
  }
}
.mission_wrap .mission .mission_schedule .mission_schedule_content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_schedule .mission_schedule_content {
    margin-top: 20px;
    flex-direction: column-reverse;
  }
}
.mission_wrap .mission .mission_schedule .mission_schedule_content .mission_schedule_left {
  width: 70%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_schedule .mission_schedule_content .mission_schedule_left {
    width: 100%;
  }
}
.mission_wrap .mission .mission_schedule .mission_schedule_content .mission_schedule_left .mission_schedule_left_item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background-color: rgba(26, 26, 26, 0.8);
  padding: 20px;
  box-sizing: border-box;
}
.mission_wrap .mission .mission_schedule .mission_schedule_content .mission_schedule_left .mission_schedule_left_item.active {
  background-color: #F5521E;
}
.mission_wrap .mission .mission_schedule .mission_schedule_content .mission_schedule_left .mission_schedule_left_item.active p {
  color: #fff !important;
}
.mission_wrap .mission .mission_schedule .mission_schedule_content .mission_schedule_left .mission_schedule_left_item:hover {
  opacity: 0.8;
  cursor: pointer;
}
.mission_wrap .mission .mission_schedule .mission_schedule_content .mission_schedule_left .mission_schedule_left_item p {
  font-size: min(1.1vw, 16px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 1px;
}
.mission_wrap .mission .mission_schedule .mission_schedule_content .mission_schedule_left .mission_schedule_left_item p:first-child {
  font-family: din-2014, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #F5521E;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_schedule .mission_schedule_content .mission_schedule_left .mission_schedule_left_item p {
    font-size: 14px;
  }
}
.mission_wrap .mission .mission_schedule .mission_schedule_content .mission_schedule_right {
  width: 30%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_schedule .mission_schedule_content .mission_schedule_right {
    width: 100%;
  }
}
.mission_wrap .mission .mission_schedule .mission_schedule_content .mission_schedule_right .lottie {
  width: 100%;
  height: 100%;
  min-height: 360px;
  background-color: rgba(26, 26, 26, 0.8);
}
@media screen and (max-width: 767px) {
  .mission_wrap .mission .mission_schedule .mission_schedule_content .mission_schedule_right .lottie {
    box-sizing: border-box;
    padding: 20px;
  }
}
.mission_wrap .mission .mission_schedule .mission_schedule_content .mission_schedule_right .lottie .lottie__canvas {
  width: 100%;
  height: 100%;
  min-height: 360px;
}
.mission_wrap .mission .mission_schedule .all_button {
  width: 100%;
  max-width: 1440px;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
  background-color: #124CB4;
  display: block;
  padding: 32px 0px;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
}

.manager_wrap {
  width: 100%;
  box-sizing: border-box;
  padding: 120px 0 120px;
  background-color: #CACED1;
}
@media screen and (max-width: 767px) {
  .manager_wrap {
    padding: 80px 0;
  }
}
.manager_wrap .manager {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .manager_wrap .manager {
    flex-direction: column;
  }
}
.manager_wrap .manager hr {
  width: 100%;
  margin: 0 auto;
  height: 1px;
  border: none;
  border-top: 1px dashed #000;
}
.manager_wrap .manager .manager_content {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .manager_wrap .manager .manager_content {
    width: 100%;
  }
}
.manager_wrap .manager .manager_content h2 {
  font-size: 54px;
  font-weight: 600;
  color: #124CB4;
  line-height: 1.2;
  font-family: "Staatliches", cursive;
  margin-bottom: 20px;
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  .manager_wrap .manager .manager_content h2 {
    font-size: 40px;
  }
}
.manager_wrap .manager .manager_content_inner {
  box-sizing: border-box;
  padding: 40px;
  color: #000;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 48px 100%, 0 calc(100% - 48px));
}
@media screen and (max-width: 767px) {
  .manager_wrap .manager .manager_content_inner {
    padding: 20px;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  }
}
.manager_wrap .manager .manager_content_inner {
  /* 枠: 外側に1pxはみ出した同じ形（#000） */
}
.manager_wrap .manager .manager_content_inner::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: #000;
  clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 48px 100%, 0 calc(100% - 48px));
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .manager_wrap .manager .manager_content_inner::before {
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  }
}
.manager_wrap .manager .manager_content_inner {
  /* 内側: 1px内側の同じ形（#d9d9d9）で枠だけ見せる */
}
.manager_wrap .manager .manager_content_inner::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #d9d9d9;
  clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 48px 100%, 0 calc(100% - 48px));
}
@media screen and (max-width: 767px) {
  .manager_wrap .manager .manager_content_inner::after {
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  }
}
.manager_wrap .manager .manager_content_inner::after {
  z-index: 0;
}
.manager_wrap .manager .manager_content_inner > * {
  position: relative;
  z-index: 1;
}
.manager_wrap .manager .manager_content_inner h2 {
  font-size: 21px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
  font-family: "Staatliches", cursive;
  margin-bottom: 30px;
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  .manager_wrap .manager .manager_content_inner h2 {
    font-size: 20px;
  }
}
.manager_wrap .manager .manager_content_inner .manager_profile {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .manager_wrap .manager .manager_content_inner .manager_profile {
    gap: 10px;
  }
}
.manager_wrap .manager .manager_content_inner .manager_profile img {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .manager_wrap .manager .manager_content_inner .manager_profile img {
    width: 120px;
  }
}
.manager_wrap .manager .manager_content_inner .manager_profile .profile_name_wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .manager_wrap .manager .manager_content_inner .manager_profile .profile_name_wrap {
    gap: 6px;
  }
}
.manager_wrap .manager .manager_content_inner .manager_profile .profile_name {
  font-size: 14px;
  font-weight: 300;
  color: #000;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  gap: 4px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .manager_wrap .manager .manager_content_inner .manager_profile .profile_name {
    gap: 6px;
    font-weight: 500;
  }
}
.manager_wrap .manager .manager_content_inner .manager_profile .profile_name p {
  font-size: 21px;
}
@media screen and (max-width: 767px) {
  .manager_wrap .manager .manager_content_inner .manager_profile .profile_name p {
    font-size: 18px;
  }
}
.manager_wrap .manager .manager_content_inner .manager_profile .profile_name p:first-child {
  font-size: 12px;
  font-weight: 300;
  color: #000;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .manager_wrap .manager .manager_content_inner .manager_profile .profile_name p:first-child {
    font-size: 10px;
    line-height: 1.25;
  }
}
.manager_wrap .manager .manager_content_inner .manager_text {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 300;
  color: #000;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .manager_wrap .manager .manager_content_inner .manager_text {
    font-size: 14px;
  }
}
.manager_wrap .manager .manager_content_inner a {
  font-size: 11px;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  font-family: "IBM Plex Mono", monospace;
  background-color: #fff;
  padding: 2px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
  display: inline-block;
}

.probe_wrap {
  width: 100%;
  box-sizing: border-box;
  padding: 80px 0 160px;
}
@media screen and (max-width: 767px) {
  .probe_wrap {
    padding: 80px 0;
  }
}
.probe_wrap .probe {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .probe_wrap .probe {
    flex-direction: column;
  }
}
.probe_wrap .probe .probe_left {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .probe_wrap .probe .probe_left {
    width: 100%;
  }
}
.probe_wrap .probe .probe_left h8 {
  font-size: 12px;
  font-weight: 500;
  color: #F5521E;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 20px;
}
.probe_wrap .probe .probe_left h6 {
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  font-family: "Staatliches", cursive;
  margin-bottom: 40px;
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  .probe_wrap .probe .probe_left h6 {
    margin-bottom: 20px;
    font-size: 50px;
  }
}
.probe_wrap .probe .probe_left h7 {
  font-size: min(2.4vw, 42px);
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .probe_wrap .probe .probe_left h7 {
    font-size: 5.2vw;
  }
}
.probe_wrap .probe .probe_left p {
  margin-top: 32px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 1px;
  margin-bottom: 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .probe_wrap .probe .probe_left p {
    margin-top: 20px;
    font-size: 13px;
  }
}
.probe_wrap .probe .probe_right {
  width: 50%;
  padding-left: 80px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .probe_wrap .probe .probe_right {
    width: 80%;
    margin: 10px auto 0;
    padding-left: 0;
  }
}
.probe_wrap .probe .probe_right .probe_mmx_images {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 520px;
  position: relative;
  top: -30px;
}
@media screen and (max-width: 767px) {
  .probe_wrap .probe .probe_right .probe_mmx_images {
    top: 0;
  }
}
.probe_wrap .probe .probe_right .probe_mmx_images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.probe_wrap .probe .probe_right .probe_mmx_images .separation_mmx_03 {
  z-index: 1;
  transform: translateY(var(--offset-03, 0));
}
.probe_wrap .probe .probe_right .probe_mmx_images .separation_mmx_02 {
  z-index: 2;
  top: -27px;
}
.probe_wrap .probe .probe_right .probe_mmx_images .separation_mmx_01 {
  z-index: 3;
  transform: translateY(var(--offset-01, 0));
}
.probe_wrap .button {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

.instruments_wrap {
  width: 100%;
  box-sizing: border-box;
  padding: 120px 0 160px;
}
@media screen and (max-width: 767px) {
  .instruments_wrap {
    padding: 80px 0;
  }
}
.instruments_wrap .instruments {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .instruments_wrap .instruments {
    flex-direction: column;
  }
}
.instruments_wrap .instruments .instruments_title {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 20px;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .instruments_wrap .instruments .instruments_title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.instruments_wrap .instruments .instruments_title h7 {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  color: #F5521E;
}
@media screen and (max-width: 767px) {
  .instruments_wrap .instruments .instruments_title h7 {
    font-size: 15px;
  }
}
.instruments_wrap .instruments .instruments_title h6 {
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  font-family: "Staatliches", cursive;
  font-weight: 100;
  line-height: 0.9;
  margin-right: 0px;
}
@media screen and (max-width: 767px) {
  .instruments_wrap .instruments .instruments_title h6 {
    font-size: 32px;
  }
}
.instruments_wrap .instruments .instruments_title p {
  font-size: 16px;
  width: 80%;
  padding-bottom: 8px;
  font-weight: 300;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .instruments_wrap .instruments .instruments_title p {
    width: 100%;
    font-size: 13px;
    font-weight: 300;
  }
}
.instruments_wrap .instruments .instruments_images {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}
.instruments_wrap .instruments .instruments_images .instruments_images_track {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: max-content;
  animation: instruments_scroll 60s linear infinite;
}
@media screen and (max-width: 767px) {
  .instruments_wrap .instruments .instruments_images .instruments_images_track {
    gap: 10px;
  }
}
.instruments_wrap .instruments .instruments_images .instruments_images_item {
  flex-shrink: 0;
  width: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .instruments_wrap .instruments .instruments_images .instruments_images_item {
    width: 200px;
  }
}
.instruments_wrap .instruments .instruments_images .instruments_images_item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .instruments_wrap .instruments .instruments_images .instruments_images_item img {
    height: 130px;
  }
}
.instruments_wrap .instruments .instruments_images .instruments_images_item .instruments_images_name {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #dcdcdc;
  line-height: 1.2;
  opacity: 0.7;
  font-family: "IBM Plex Mono", monospace;
  padding: 8px 0 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .instruments_wrap .instruments .instruments_images .instruments_images_item .instruments_images_name {
    font-size: 10px;
    padding: 6px 0 0;
  }
}
.instruments_wrap .button {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

@keyframes instruments_scroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.team_wrap {
  width: 100%;
  box-sizing: border-box;
  padding: 120px 0 160px;
}
@media screen and (max-width: 767px) {
  .team_wrap {
    padding: 80px 0 0px;
  }
}
.team_wrap .team {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.team_wrap .team .team_title {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 20px;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .team_wrap .team .team_title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.team_wrap .team .team_title h7 {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  color: #F5521E;
}
@media screen and (max-width: 767px) {
  .team_wrap .team .team_title h7 {
    font-size: 15px;
  }
}
.team_wrap .team .team_title h6 {
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  font-family: "Staatliches", cursive;
  font-weight: 100;
  line-height: 0.9;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .team_wrap .team .team_title h6 {
    font-size: 32px;
  }
}
.team_wrap .team .team_title p {
  font-size: 16px;
  width: 80%;
  padding-bottom: 8px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .team_wrap .team .team_title p {
    width: 100%;
    font-size: 13px;
    font-weight: 300;
  }
}
.team_wrap .team .team_all {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 30px;
}
.team_wrap .team .team_all img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team_wrap .team .international_team_list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 0px 80px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .team_wrap .team .international_team_list {
    padding: 0px 20px;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
  }
}
.team_wrap .team .international_team_list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .team_wrap .team .international_team_list a {
    width: 30%;
  }
}
.team_wrap .team .international_team_list a img {
  width: 100%;
  object-fit: cover;
}
.team_wrap .team .international_team_list a .international_team_name {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  padding: 8px 0 0;
}
@media screen and (max-width: 767px) {
  .team_wrap .team .international_team_list a .international_team_name {
    font-size: 10px;
    padding: 6px 0 0;
  }
}
.team_wrap .button {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .team_wrap .button {
    margin-top: 0px;
  }
}
/*# sourceMappingURL=new.css.map */