@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W0);
  font-weight: 100;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W1);
  font-weight: 200;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W2);
  font-weight: 300;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W3);
  font-weight: 400;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W4);
  font-weight: 500;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W5);
  font-weight: 600;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W6);
  font-weight: 700;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W7);
  font-weight: 800;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W8);
  font-weight: 900;
}
@font-face {
  font-family: "Hiragino Sans W9";
  src: local(HiraginoSans-W9);
  font-weight: 900;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
img {
  width: 100%;
}
html {
  scroll-behavior: smooth;
}
body {
  color: #fff;
  font-family: "Hiragino Sans", sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-y: scroll;
}
.sa {
  opacity: 0;
  transition: all 1.0s ease;
  transform: translate(0, 40px);
}
.sa2 {
  transform: translate(0, 80px);
}
.sa.show{
  opacity: 1!important;
  -webkit-transform: none;
  transform: none;
}


/* ヘッダー */
.ly_header {
  position: relative;
}
.ly_headerInner {
  position: relative;
}
.bl_headerLogo01 {
  width: clamp(100px, 15vw, 150px);
  max-width: 100%;
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 10;
}
.bl_headerLogo01 a {
  display: block;
}
.bl_headerLogo01 {
  display: block;
}
.bl_headerLogo01.hidden {
  display: none;
}
.bl_menu {
  width: 64px;
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 11;
}
.bl_menuLogo01 {
  width: clamp(100px, 15vw, 150px);
  max-width: 100%;
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 11;
}
.bl_menuLogo01 a {
  display: block;
}
.bl_menuLogo01 {
  display: block;
}
.bl_menuLogo01.hidden {
  display: none;
}
/* ハンバーガーメニュー */
.toggle {
  position: relative;
  appearance: none;
  display: block;
  z-index: 2;
  width: 64px;
  height: 64px;
  cursor: pointer;
}
.toggle > span.bl_menu_line,
.toggle::before,
.toggle::after {
  display: block;
  position: absolute;
  background-color: #000000;
  width: 64px;
  height: 6px;
  border-radius: 2px;
}
.toggle > span.bl_menu_line {
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
  will-change: opacity;
}
.toggle > span.bl_menu_text {
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: #000000;
  font-size: 16px;
}
.toggle > span.bl_menu_text::before {
  content: "MENU";
  display: block;
}
.toggle::before,
.toggle::after {
  content: "";
  transition: 0.3s ease;
}
.toggle::before {
  top: 10px;
}
.toggle::after {
  bottom: 10px;
}
.toggle[aria-expanded="true"] > span.bl_menu_line {
  opacity: 0;
}
.toggle[aria-expanded="true"] > span.bl_menu_text::before {
  content: "CLOSE";
  display: block;
}
.toggle[aria-expanded="true"]::before {
  animation: 0.3s ease line1 forwards;
}
.toggle[aria-expanded="true"]::after {
  animation: 0.3s ease line2 forwards;
}
.toggle.-close::before {
  animation: 0.3s ease closeLine1 forwards;
}
.toggle.-close::after {
  animation: 0.3s ease closeLine2 forwards;
}

@keyframes line1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(19px) rotate(0);
  }
  100% {
    transform: translateY(19px) rotate(45deg);
  }
}
@keyframes line2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-19px) rotate(0);
  }
  100% {
    transform: translateY(-19px) rotate(-45deg);
  }
}
@keyframes closeLine1 {
  0% {
    transform: translateY(19px) rotate(45deg);
  }
  50% {
    transform: translateY(19px) rotate(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes closeLine2 {
  0% {
    transform: translateY(-19px) rotate(-45deg);
  }
  50% {
    transform: translateY(-19px) rotate(0);
  }
  100% {
    transform: translateY(0);
  }
}

.bl_menu_List[aria-hidden="true"] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}
.bl_menu_List[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: 0.3s ease;
}

.bl_menu_List {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #000000;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  padding: 300px 40px 0;
  /* overflow-y: scroll; */
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
}
.bl_menu_List li + li {
  margin-top: 20px;
}
.bl_menu_List li a {
  display: block;
}

/* メインロゴ */
.bl_headerLogo02 {
  width: 560px;
  max-width: 100%;
  margin: auto;
  position: fixed;
  position: absolute;
  top: 5.2vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  width: 33.333%;
}

/* メインビジュアル */
.bl_mainImg {
  position: relative;
}
.bl_mainImg_back {
  position: relative;
}
.bl_mainImg_park {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

/* セクション　MEASPARK */
.ly_main {
  padding: 600px 0 230px;
}
.ly_inner {
  width: 1200px;
  max-width: 100%;
  margin: auto;
  padding: 0 40px;
  padding: 0 6%;
}
.el_mainLogo {
  width: 500px;
  max-width: 100%;
  margin: auto;
}
/* .el_mainLogo + .bl_textContent {
  margin-top: 100px;
} */
.bl_textContent p {
  font-weight: 400;
  font-size: clamp(2.5rem, 0.4rem + 4.8vw, 4rem);
  font-size: 2.09vw;
  line-height: 1.4;
  /*line-height: 90px;
  line-height: clamp(2.5rem, -1.875rem + 10vw, 5.625rem);*/
  letter-spacing: 0.08em;
  color: #70dfdf;
}
.bl_textContent p + p {
  margin-top: 1em;
}

/* アニメコント */
.ly_anime {
  padding: 60px 0;
  padding: 7.8125vw 0 6.25vw 0;
}
.ly_anime {
  background: #70dfdf;
  background: url(images/animecomte.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}

.el_h2title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  /*font-size: clamp(2.5rem, 1.955rem + 2.73vw, 4rem);*/
  font-size: 2.5vw;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-align: center;
}
.el_h2title + * {
  margin-top: 60px;
}
.bl_movieContent_movie {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  margin: auto;
}
.bl_movieContent_movie + .bl_movieContent_caption {
  margin-top: 20px;
  color: #FFF;
}
.bl_movieContent_caption {
  font-style: normal;
  font-weight: 600;
  /*font-size: clamp(2.25rem, 2.159rem + 0.45vw, 2.5rem);*/
  font-size: clamp(2rem, 2rem, 2.5rem);
  line-height: 72px;
  letter-spacing: 0.08em;
  color: #000000;
  text-align: center;
}

.bl_movieContent_caption + .bl_movieContent_circle {
  margin-top: 20px;
}

/* スライダー */
.swiper {
  width: 100%;
  height: 100%;
  padding: 0 20px clamp(80px, 10vw, 110px);
}

.swiper-pagination-bullet {
  border-radius: 0;
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, clamp(60px, 11vw, 154px))
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, clamp(6px, 6vw, 6px))
  );
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 20px);
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.3;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}

/* フッター */
.ly_footer {
  padding: 100px 0;
  padding-bottom: 0;
}
.bl_footerimg01 {
  width: 180px;
  max-width: 100%;
  margin: auto;
  padding-bottom: 6vw;
}
.bl_footerimg01 + .bl_footerimg02 {
  margin-top: 100px;
}
.bl_footerimg02 {
  width: clamp(300px, 30vw, 320px);
  max-width: 100%;
  margin: auto;
}
.bl_footerimg02 + .bl_footerimg03 {
  margin-top: 80px;
}
.bl_footerimg03 + .bl_footerColumn {
  margin-top: 150px;
}
.bl_footerimg03 {
  width: 1164px;
  max-width: 100%;
  border: 1px solid #001a39;
  margin: 120px auto 0;
  padding: 40px;
  padding: 70px 40px 50px 25px;
  padding: 3.6458vw 2.083vw 2.604vw 1.3020vw;
  background-image: url(images/img_recruit.png);
  background-position: center center;
  background-size:cover;
  background-repeat: no-repeat;
      background-repeat: no-repeat;
    background-position: center right 22%;
    background-size: auto 100%;
}
.bl_footerimg03_text {
  font-weight: 600;
  font-size: 32px;
  font-size:1.666vw;
  line-height: 24px;
  color: #001a39;
  text-align: center;
  padding-bottom: 1rem;
  line-height: 1;
}
.bl_footerimg03_text + .bl_footerimg03_btn {
  margin-top: 1.041vw;
}
.bl_footerimg03_btn {
  width: 200px;
  max-width: 100%;
  margin: auto;
}
.bl_footerimg03_btn a {
  display: block;
  padding: 0.520vw;
  font-weight: 500;
  font-size: 0.9375vw;
  line-height: 2;
  text-align: center;
  color: #ffffff;
  background-color: #001a39;
}
.bl_footerimg03 + .bl_footerColumn {
  margin-top: 135px;
}
.bl_footerColumn{
     padding-top: 8.33334vw;
    padding-left: 7.29166vw;
    padding-right: 7.29166vw;
    padding-bottom: 3.3854vw;
}
.bl_footerColumn_copyright {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #001a39;
}
.bl_footerColumn_rule {
  display: flex;
}
.bl_footerColumn_rule span {
  display: block;
  color: #001a39;
}
.bl_footerColumn_rule a {
  display: block;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  color: #001a39;
}

/* ----------------------------
  ここからPC幅
---------------------------- */
@media screen and (min-width: 1600px) {
  .bl_textContent {
    margin-top: 8.4375vw;
  }
}

@media screen and (min-width: 768px) {
  .hp_sp {
    display: none !important;
  }
  a {
    transition: 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
  }
  .bl_headerLogo02 {
    width: clamp(380px, 38.7%, 647px);
  }
  /* フッター */
  .bl_footerimg03 {
    width: 1164px;
    max-width: 100%;
    margin: auto;
    width: 60.625%;
  }
  .bl_footerimg03 a {
    display: block;
  }
  .bl_footerColumn {
    display: flex;
    justify-content: space-between;
  }
}

/* ----------------------------
  ここから SP幅
---------------------------- */
@media not screen and (min-width: 768px) {
  .hp_pc {
    display: none !important;
  }

  /* ヘッダー */
  .bl_headerLogo01 {
    width: clamp(80px, 20%, 100px);
    top: 20px;
    left: 20px;
  }
  .bl_menu {
    width: 40px;
    top: 20px;
    right: 20px;
  }
  .bl_menuLogo01 {
    width: clamp(80px, 20%, 100px);
    top: 20px;
    left: 20px;
  }
  /* ハンバーガーメニュー */
  .toggle {
    width: 40px;
    height: 40px;
  }
  .toggle > span.bl_menu_line,
  .toggle::before,
  .toggle::after {
    width: 40px;
    height: 3px;
  }
  .toggle > span.bl_menu_line {
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s ease;
    will-change: opacity;
  }
  .toggle > span.bl_menu_text {
    bottom: -20px;
    font-size: 12px;
  }
  .toggle::before {
    top: 5px;
  }
  .toggle::after {
    bottom: 5px;
  }

  @keyframes line1 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(14px) rotate(0);
    }
    100% {
      transform: translateY(14px) rotate(45deg);
    }
  }
  @keyframes line2 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-14px) rotate(0);
    }
    100% {
      transform: translateY(-14px) rotate(-45deg);
    }
  }
  @keyframes closeLine1 {
    0% {
      transform: translateY(14px) rotate(45deg);
    }
    50% {
      transform: translateY(14px) rotate(0);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes closeLine2 {
    0% {
      transform: translateY(-19px) rotate(-45deg);
    }
    50% {
      transform: translateY(-19px) rotate(0);
    }
    100% {
      transform: translateY(0);
    }
  }
  .bl_menu_List {
    padding: 280px 20px 0;
    font-size: clamp(1.25rem, 0.32rem + 4.65vw, 2.5rem);
  }

  .bl_menu_List li + li {
    margin-top: 20px;
  }
  .bl_menu_List li a {
    display: block;
  }

  /* メインロゴ */
  .bl_headerLogo02 {
    width: 340px;
    width: clamp(280px, 55%, 340px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
    padding: 0 20px;
    top: 35vw;
    width: 85%;
  }

  /* セクション　MEASPARK */
  .ly_main {
    padding: 400px 0 clamp(90px, 20%, 180px);
    padding-top: 95vw;
  }
  .ly_inner {
    width: 1200px;
    max-width: 100%;
    margin: auto;
    padding: 0 20px;
    padding: 0 6%;
  }
  .el_mainLogo {
    width: 500px;
    max-width: 100%;
    margin: auto;
  }
  .bl_textContent p {
    font-size: clamp(1.25rem, 0.32rem + 4.65vw, 2.5rem);
    line-height: clamp(1.75rem, 0.448rem + 6.51vw, 3.5rem);
    /* letter-spacing: 0.08em; */
  }
  .bl_textContent p + p {
    margin-top: 1em;
  }

  /* アニメコント */
  .ly_anime {
    padding: clamp(90px, 20%, 180px) 0;
    padding: 20vw 0;
  }
  .el_h2title {
    font-size: clamp(1.25rem, 0.32rem + 4.65vw, 2.5rem);
    line-height: clamp(1.75rem, 0.448rem + 6.51vw, 3.5rem);
    letter-spacing: 0.08em;
  }
  .el_h2title + * {
    margin-top: 40px;
  }
  .bl_movieContent_movie + .bl_movieContent_caption {
    margin-top: 10px;
  }
  .bl_movieContent_caption {
    font-size: clamp(1.125rem, 0.288rem + 4.19vw, 2.25rem);
    line-height: clamp(2.25rem, 0.576rem + 8.37vw, 4.5rem);
    letter-spacing: 0.08em;
  }
  .bl_movieContent_caption + .bl_movieContent_circle {
    margin-top: 10px;
  }
  .bl_movieContent_circle {
    gap: 20px;
  }
  .bl_movieContent_circle p {
    width: clamp(30px, 10%, 60px);
  }

  /* スライダー */
  .swiper {
    padding: 0 20px 80px;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
  }
  .swiper-pagination-bullet {
    border-radius: 0;
    bottom: 4vw;
    width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, clamp(60px, 11vw, 154px))
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, clamp(6px, 6vw, 6px))
  );
}
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 15px);
  }
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 35px;
  }

  /* フッター */
  .ly_footer {
    padding: clamp(100px, 20%, 200px) 0;
  }
  .bl_footerimg01 {
    width: clamp(132px, 35%, 264px);
    padding-bottom: 6vw;
  }
  .bl_footerimg01 + .bl_footerimg02 {
    margin-top: clamp(60px, 20%, 120px);
  }
  .bl_footerimg02 {
    width: 471px;
  }
  .bl_footerimg03 {
        margin-top: clamp(60px, 20%, 120px);
    /* padding: 20px; */
    width: 91%;
    padding: 2.7rem 0 2.4rem 0;
  }
  .bl_footerimg03_text {
    font-size:4.266vw;
    line-height: 1.75;
  }
  .bl_footerimg03_text + .bl_footerimg03_btn {
    margin-top: 1.041vw;
  }
  .bl_footerimg03_btn {
    width: 80%;
    max-width: 100%;
    margin: auto;
  }
  .bl_footerimg03_btn a {
    display: block;
    padding: 10px;
    font-size: clamp(0.75rem, 0.564rem + 0.93vw, 1rem);
    line-height: clamp(0.875rem, 0.596rem + 1.4vw, 1.25rem);
    padding: 1.4em 0 1.2em;
  }
  .bl_footerColumn {
    display: flex;
    flex-direction: column-reverse;
  }
  .bl_footerColumn_rule {
    justify-content: center;
  }
  .bl_footerColumn_rule span {
    display: block;
    color: #001a39;
  }
  .bl_footerColumn_rule a {
    display: block;
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    color: #001a39;
  }
  .bl_footerColumn_copyright {
    text-align: center;
    margin-top: 30px;
  }
  .bl_footerimg03 + .bl_footerColumn {
    margin-top: 150px;
    margin-top: clamp(75px, 20%, 150px);
  }

  .ly_anime {
    background-size: cover;
  }
}

small{
  font-size: 12px;
}
.p-scroll{
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: flex;
  flex-flow: column;
  align-items: center;
  z-index: 99999;
}
.p-scroll .p-scroll__text{
  text-align: center;
  color: #FFF;
  -webkit-transform: rotate(90deg) translate(0%, 100%);
  transform: rotate(90deg) translate(0%, 100%);
  position: absolute;
  left: 0.75em;
  color: #70dfdf;
  display: inline-block;
    /* text-transform: uppercase; */
    /* text-decoration: none; */
    writing-mode: vertical-lr;
    /* width: 10em; */
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 12px;
    height: 9em;
    top: -8.5em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.p-scroll .p-scroll__line{
  position: relative;
  display: block;
  background-color: rgba(200, 200, 200, 0.4);
  height: 88px;
  width: 1px;
}

.p-scroll .p-scroll__line::before{
      content: ' ';
      -webkit-animation: scrollAnim 2s linear 0s normal none infinite running;
      animation: scrollAnim 2s linear 0s normal none infinite running;
      background-color: #70dfdf;
      display: block;
      width: 1px;
      height: 0;
      position: absolute;
      left: 0;
      top: 0;
}

@media screen and (max-width:767px) {
  .p-scroll{
    bottom: -6vw;
  }
  .p-scroll .p-scroll__text{
    height: 22vw;
    top: -22vw;
  }
  .p-scroll .p-scroll__line{
    height: 20vw;
  }
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
    height: 0;
  }
  30% {
    opacity: 1;
    height: 100%;
  }
  60% {
    opacity: 0;
    height: 100%;
  }
  100% {
    opacity: 0;
    height: 0;
  }
}

/*loading*/
#wrap {
  opacity: 0;
}

#wrap.top-page {
  opacity: 1;
}

.load {
  position: fixed;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  -webkit-transition: 1s;
  transition: 1s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.load .layer {
  width: 100vw;
  height: 100vh;
  background: #001A39;
  -webkit-transition: .7s;
  transition: .7s;
  z-index: 2;
  position: absolute;
}

.load .layer span {
  width: 3.5vw;
  height: 3.5vw;
  border-radius: 100%;
  border: 10px solid #fff;
  border-top-color: rgba(0, 0, 0, 0.3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1.5vw;
  margin-left: -1.5vw;
  animation: loading .8s ease-in-out infinite;
  -webkit-animation: loading .8s ease-in-out infinite;
}

@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@media screen and (max-width: 768px) {
  .load .layer span {
    width: 15vw;
    height: 15vw;
    margin-top: -5.5vw;
    margin-left: -5.5vw;
    border: 5px solid #fff;
    border-top-color: rgba(0, 0, 0, 0.3);
  }
}
