@charset "UTF-8";
#visual {
  position: relative;
  min-height: 600px;
  padding: 160px 0 0;
  background-color: #fff;
  height: 100svh;
  background: url(/assets/image/top/visual-bg.webp) no-repeat center center/cover;
}
#visual::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  #visual {
    padding: calc(62px + 5svh) 0 0;
  }
}
#visual .visual-frame {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#visual .visual-frame img {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right bottom;
     object-position: right bottom;
}
#visual .visual-inner {
  margin: 0 auto;
  position: relative;
  height: 100%;
}
#visual .visual-content {
  position: relative;
  z-index: 2;
  height: 100%;
}
#visual .visual-title {
  font-weight: 500;
  font-size: clamp(4.8rem, -2.276rem + 9.2vw, 9.5rem);
  line-height: 1.2;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #visual .visual-title {
    font-size: 7.8vw;
  }
}
#visual .visual-subtitle {
  font-weight: 500;
  font-size: clamp(1.8rem, 0.864rem + 1.2vw, 2.4rem);
  line-height: 2;
  margin-bottom: 76px;
}
@media screen and (max-width: 767px) {
  #visual .visual-subtitle {
    margin-bottom: 20px;
  }
}
#visual .visual-text {
  font-weight: 400;
  font-size: clamp(1.3rem, 0.52rem + 1vw, 1.8rem);
}
#visual .visual-text p {
  margin-bottom: 8px;
}
#visual .visual-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
  z-index: 1;
  line-height: 0;
  aspect-ratio: 1970/1249;
  max-width: 1080px;
  height: auto;
  z-index: 1;
  /*
  //visual.webpでマスク
  mask-image: url(/assets/image/top/visual-mask.png);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  */
}
#visual .visual-image video {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  #visual .visual-image {
    width: 100%;
  }
}
#visual .visual-image .vis {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  line-height: 0;
}
#visual .visual-image .vis img {
  width: 100%;
  height: 100%;
}
#visual .visual-image .vis.active {
  opacity: 1;
}
#visual .visual-job {
  position: fixed;
  right: 0;
  bottom: 7%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #visual .visual-job {
    bottom: 90px;
  }
}
#visual .visual-job a {
  background: linear-gradient(90deg, #008F86, #00BFB3);
  padding: 28px 42px;
  display: flex;
  align-items: center;
  border-radius: 50px 0 0 50px;
  color: #fff;
  font-weight: 500;
  gap: 50px;
  transform: translateX(10%);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
#visual .visual-job a:hover {
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  #visual .visual-job a {
    font-size: 1.5rem;
    padding: 16px 42px 16px 24px;
    gap: 20px;
  }
}
#visual .visual-job a .icon {
  display: block;
  line-height: 0;
}

#concept {
  padding: 180px 0 200px;
}
@media screen and (max-width: 767px) {
  #concept {
    padding: 40px 0;
  }
}
#concept h2 {
  font-weight: 500;
  font-size: clamp(1.8rem, 0.864rem + 1.2vw, 2.4rem);
  margin-bottom: 30px;
}
#concept .concept-layout {
  display: flex;
  gap: 2%;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #concept .concept-layout {
    display: block;
  }
}
#concept .concept-text {
  font-weight: 400;
  font-size: clamp(1.4rem, 1.088rem + 0.4vw, 1.6rem);
  color: #2b3a42;
}
@media screen and (max-width: 767px) {
  #concept .concept-text {
    width: 100%;
  }
}
#concept .concept-text h2 {
  text-align: center;
}
#concept .concept-text p {
  line-height: 2.5;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #concept .concept-text p {
    white-space: normal;
  }
}
#concept .concept-movie {
  width: 60%;
  position: relative;
}
@media screen and (max-width: 767px) {
  #concept .concept-movie {
    width: 100%;
  }
}
#concept .concept-movie .image {
  overflow: hidden;
  display: block;
  line-height: 0;
  border-radius: 8px;
}
#concept .concept-movie img {
  width: 100%;
  height: auto;
  display: block;
}
#concept .concept-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  cursor: pointer;
}
#concept .concept-play img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}
#concept .concept-play p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 0.688rem + 0.4vw, 1.2rem);
  color: #fff;
}
@media screen and (max-width: 767px) {
  #concept {
    padding: 40px 0;
  }
  #concept .concept-content {
    flex-direction: column;
  }
  #concept .concept-text {
    width: 100%;
    margin-bottom: 30px;
  }
  #concept .concept-movie {
    width: 100%;
  }
}

#future .future-block {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 5%;
  padding: 26px;
}
@media screen and (max-width: 767px) {
  #future .future-block {
    flex-direction: column;
  }
}
#future .future-block::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 1;
  border-radius: 200px 10px 200px 10px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #future .future-block::before {
    border-radius: 50px 10px 50px 10px;
  }
}
#future .future-block.rev::before {
  border-radius: 10px 200px 10px 200px;
}
@media screen and (max-width: 767px) {
  #future .future-block.rev::before {
    border-radius: 10px 50px 10px 50px;
  }
}
#future .future-block .plus {
  position: absolute;
}
#future .future-block .plus.plus1 {
  top: 0;
  transform: translateY(-50%);
  right: 5%;
  width: 16%;
}
#future .future-block .plus.plus2 {
  bottom: -15px;
  left: 20%;
  width: 8%;
}
#future .future-block .plus.plus3 {
  top: -15px;
  left: 30%;
  width: 5%;
}
#future .future-block .plus.plus4 {
  bottom: -20px;
  left: 25%;
  width: 7%;
}
#future .future-block .plus.plus5 {
  top: 10%;
  left: 20%;
  width: 4%;
}
#future .future-block .plus.plus6 {
  bottom: 10%;
  left: 10%;
  width: 4%;
}
#future .future-block .plus.plus7 {
  bottom: -5%;
  right: 5%;
  width: 4%;
}
#future .future-block .text {
  width: 50.5%;
  padding-left: 8%;
  font-weight: 500;
  font-size: clamp(1.4rem, 0.776rem + 0.8vw, 1.8rem);
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  #future .future-block .text {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}
#future .future-block .image {
  width: 44.5%;
}
@media screen and (max-width: 767px) {
  #future .future-block .image {
    width: 100%;
  }
}
#future .future-block#future-block-1 {
  height: 540px;
}
@media screen and (max-width: 767px) {
  #future .future-block#future-block-1 {
    height: auto;
  }
}
#future .future-block#future-block-1 .text {
  white-space: nowrap;
}
@media screen and (max-width: 860px) {
  #future .future-block#future-block-1 .text {
    white-space: normal;
  }
}
#future .future-block#future-block-1 .image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#future .future-block#future-block-1 .image p {
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}
#future .future-block#future-block-1 .image .round {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 11px solid #00BFB4;
  border-radius: 50%;
  width: 230px;
  height: 230px;
  color: #00BFB4;
  font-weight: bold;
}
#future .future-block#future-block-1 .image .round .year {
  font-size: clamp(2rem, 1.688rem + 0.4vw, 2.2rem);
  position: relative;
  border-bottom: 1px solid #00BFB4;
  padding: 0 5px 10px;
  line-height: 1.5;
}
#future .future-block#future-block-1 .image .round .amount {
  font-size: clamp(2.4rem, 2.088rem + 0.4vw, 2.6rem);
}
#future .future-block#future-block-1 .image .round .amount b {
  font-size: clamp(3.2rem, 2.576rem + 0.8vw, 3.6rem);
}
#future .future-block#future-block-1 .line {
  position: absolute;
  top: 50%;
}
#future .future-block#future-block-2 .image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#future .future-block#future-block-2 .image .round2 {
  background-color: #00BFB4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 11px solid #00BFB4;
  border-radius: 50%;
  max-width: 480px;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  font-weight: bold;
}
#future .future-block#future-block-2 .image .round2 .year {
  font-size: clamp(3rem, 2.064rem + 1.2vw, 3.6rem);
  position: relative;
  border-bottom: 1px solid #fff;
  padding: 0 5px 10px;
  line-height: 1.5;
  margin-bottom: 30px;
}
#future .future-block#future-block-2 .image .round2 .amount {
  font-size: clamp(3.6rem, 2.976rem + 0.8vw, 4rem);
  line-height: 1;
}
#future .future-block#future-block-2 .image .round2 .amount b {
  font-size: clamp(6rem, 4.44rem + 2vw, 7rem);
}
#future .future-block#future-block-2 .image .note {
  font-size: clamp(1.2rem, 0.888rem + 0.4vw, 1.4rem);
  color: #fff;
  text-align: center;
  margin-top: 10px;
}
#future .future-block#future-block-3 {
  padding-block: 100px;
  flex-wrap: wrap;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  #future .future-block#future-block-3 {
    padding: 40px 1%;
  }
}
#future .future-block#future-block-3 .text {
  width: 55%;
}
@media screen and (max-width: 767px) {
  #future .future-block#future-block-3 .text {
    width: 100%;
  }
}
#future .future-block#future-block-3 .image {
  width: 40%;
  padding-right: 5%;
}
#future .future-block#future-block-3 .image p {
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}
#future .future-block#future-block-3 .image p.note {
  text-align: right;
  font-size: clamp(1rem, 0.688rem + 0.4vw, 1.2rem);
  line-height: 1.6;
}
#future .future-block#future-block-3 .last-text {
  width: 100%;
  margin-top: 50px;
}
#future .future-block#future-block-3 .last-text p {
  text-align: center;
}
#future .future-block#future-block-3 .last-text .first {
  font-size: clamp(1.8rem, 1.488rem + 0.4vw, 2rem);
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #future .future-block#future-block-3 .last-text .first {
    margin-bottom: 20px;
  }
}
#future .future-block#future-block-3 .last-text .second {
  font-size: clamp(3rem, 1.44rem + 2vw, 4rem);
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #future .future-block#future-block-3 .last-text .second {
    font-size: 2rem;
  }
}
#future .future-block#future-block-3 .last-text .third {
  font-size: clamp(1.4rem, 1.088rem + 0.4vw, 1.6rem);
  font-weight: 500;
}

#cando {
  padding: 0px 0 0;
  position: relative;
  top: 30px;
}
@media screen and (max-width: 767px) {
  #cando {
    padding: 40px 0;
  }
}
#cando .inner {
  max-width: calc(1360px + 6%);
  margin: 0 auto;
  padding: 0 3%;
  text-align: center;
}
#cando .cando-title {
  position: relative;
  font-weight: 700;
  font-size: clamp(2.6rem, 1.664rem + 1.2vw, 3.2rem);
  padding-block: 60px 80px;
  background: url(/assets/image/top/arrow.svg) no-repeat center center;
  background-size: auto 100%;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #cando .cando-title {
    font-size: 5vw;
    line-height: 1.5;
    margin-bottom: 30px;
    padding-block: 40px 50px;
  }
}
#cando .cando-content {
  font-weight: 500;
  font-size: clamp(1.4rem, 0.776rem + 0.8vw, 1.8rem);
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #cando .cando-content {
    margin-bottom: 30px;
  }
}
#cando .cando-content p {
  margin-bottom: 10px;
}

.to-content {
  padding: 120px 0 60px;
}
@media screen and (max-width: 767px) {
  .to-content {
    padding: 60px 0;
  }
}
.to-content .career-layout {
  display: flex;
  gap: 5%;
  margin-bottom: 80px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .to-content .career-layout {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.to-content .career-heading {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .to-content .career-heading {
    width: 100% !important;
    margin-bottom: 40px;
  }
}
.to-content .career-heading .career-pill {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .to-content .career-heading .career-pill {
    margin-bottom: 20px;
  }
}
.to-content .career-heading .career-pill span {
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  border-radius: 100px;
  background: #00BFB4;
  color: #fff;
  font-weight: 600;
  font-size: clamp(1.4rem, 1.088rem + 0.4vw, 1.6rem);
  line-height: 1;
}
.to-content .career-heading .career-title {
  font-weight: 700;
  font-size: clamp(3rem, 1.752rem + 1.6vw, 3.8rem);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .to-content .career-heading .career-title {
    font-size: 2.5rem;
    white-space: wrap;
  }
}
.to-content .career-card {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .to-content .career-card {
    width: 100% !important;
  }
}
.to-content .career-card picture {
  overflow: hidden;
  display: block;
  line-height: 0;
  border-radius: 8px;
}
.to-content .career-card-label {
  position: absolute;
  top: 0;
  left: 18px;
  transform: translateY(-50%);
  padding: 9px 16px;
  border-radius: 999px;
  background: #140B42;
  color: #fff;
  font-weight: 500;
  font-size: clamp(1.2rem, 0.888rem + 0.4vw, 1.4rem);
  line-height: 1.2;
  z-index: 2;
}
.to-content .career-card-copy {
  position: absolute;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.2rem, 0.108rem + 1.4vw, 1.9rem);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .to-content .career-card-copy {
    font-size: 1.5rem;
  }
}
.to-content .career-card-copy span {
  display: inline-block;
  background-color: #00BFB4;
  margin: 5px;
  padding: 5px;
}
@media screen and (max-width: 767px) {
  .to-content .career-card-copy span {
    margin: 4px;
  }
}
.to-content .career-card-copy.vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (max-width: 767px) {
  .to-content .career-card-copy.vertical {
    writing-mode: horizontal-tb;
  }
}

#career {
  background-color: #FBFBFB;
}
#career .career-heading {
  padding-left: 5%;
  width: 45%;
}
@media screen and (max-width: 767px) {
  #career .career-heading {
    padding-left: 0;
  }
}
#career .card1 {
  width: 55%;
}
@media screen and (max-width: 767px) {
  #career .card1 {
    margin-bottom: 100px;
  }
}
#career .card1 picture {
  display: block;
  width: 90%;
}
#career .card1 .career-card-copy {
  top: 20px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #career .card1 .career-card-copy {
    top: auto;
    bottom: 0;
    transform: translateY(50%);
  }
}
#career .card2 {
  width: 45%;
}
@media screen and (max-width: 767px) {
  #career .card2 {
    margin-bottom: 100px;
  }
}
#career .card2 picture {
  display: block;
  width: 90%;
  margin-left: auto;
}
#career .card2 .career-card-label {
  left: calc(10% + 15px);
}
#career .card2 .career-card-copy {
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}
#career .card3 {
  width: 55%;
}
@media screen and (max-width: 767px) {
  #career .card3 {
    width: 90%;
  }
}
#career .card3 picture {
  display: block;
  width: 65%;
}
@media screen and (max-width: 767px) {
  #career .card3 picture {
    width: 100%;
  }
}
#career .card3 .career-card-copy {
  right: 0;
  top: 15%;
}
@media screen and (max-width: 767px) {
  #career .card3 .career-card-copy {
    top: auto;
    bottom: 0;
    transform: translateY(50%);
  }
}
#beginner .career-layout.rev {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  #beginner .career-layout.rev {
    flex-direction: column;
  }
}
#beginner .career-heading {
  padding-left: 5%;
  width: 55%;
}
@media screen and (max-width: 767px) {
  #beginner .career-heading {
    width: 100%;
    padding-left: 0;
  }
}
#beginner .career-pill span {
  background-color: #008F86;
}
#beginner .career-card-copy span {
  background-color: #008F86;
}
#beginner .card1 {
  width: 45%;
}
@media screen and (max-width: 767px) {
  #beginner .card1 {
    width: 90%;
    margin-bottom: 100px;
  }
}
#beginner .card1 picture {
  display: block;
  width: 90%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  #beginner .card1 picture {
    width: 100%;
    margin-left: 0;
  }
}
#beginner .card1 .career-card-label {
  left: calc(10% + 15px);
}
#beginner .card1 .career-card-copy {
  top: 20px;
  right: -57px;
}
@media screen and (max-width: 767px) {
  #beginner .card1 .career-card-copy {
    top: auto;
    bottom: 0;
    transform: translateY(50%);
    right: 5px;
  }
}
#beginner .card2 {
  width: 45%;
}
@media screen and (max-width: 767px) {
  #beginner .card2 {
    width: 90%;
    margin-bottom: 100px;
  }
}
#beginner .card2 picture {
  display: block;
  width: 90%;
  margin-left: auto;
}
#beginner .card2 .career-card-label {
  left: calc(10% + 15px);
}
#beginner .card2 .career-card-copy {
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}
@media screen and (max-width: 767px) {
  #beginner .card2 .career-card-copy {
    top: auto;
    bottom: 0;
    transform: translateY(50%);
  }
}
#beginner .card3 {
  width: 55%;
}
#beginner .card3 picture {
  display: block;
  width: 90%;
}
#beginner .card3 .career-card-copy {
  right: 0;
  top: 30px;
}
@media screen and (max-width: 767px) {
  #beginner .card3 .career-card-copy {
    top: auto;
    bottom: 0;
    transform: translateY(50%);
  }
}

.round-bg {
  background-color: #FBFBFB;
  border-radius: 300px 0 0 0;
  padding-block: 200px;
}
@media screen and (max-width: 767px) {
  .round-bg {
    border-radius: 50px 0 0 0;
    padding-block: 80px;
  }
}

#learn {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #learn {
    margin-bottom: 0px;
  }
}
#learn .learn-layout {
  display: flex;
  gap: 5%;
}
#learn .learn-layout .learn-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #learn .learn-layout .learn-text {
    width: 100%;
  }
}
#learn .learn-layout .learn-text .learn-title-sub {
  font-weight: 500;
  font-size: clamp(1.6rem, 0.976rem + 0.8vw, 2rem);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
#learn .learn-layout .learn-text .learn-title-sub::after {
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 1px;
  background-color: #140B42;
  left: 0;
  bottom: 0;
}
#learn .learn-layout .learn-text .learn-title {
  font-weight: 700;
  font-size: clamp(2rem, 0.908rem + 1.4vw, 2.7rem);
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #learn .learn-layout .learn-text .learn-title {
    margin-bottom: 20px;
  }
}
#learn .learn-layout .learn-text p {
  flex: 1;
}
@media screen and (max-width: 767px) {
  #learn .learn-layout .learn-text p {
    margin-bottom: 30px;
  }
}
#learn .learn-layout .learn-text .learn-links {
  display: flex;
  gap: 5%;
}
#learn .learn-layout .learn-text .learn-links .learn-link {
  width: 50%;
}
#learn .learn-layout .learn-text .learn-links .learn-link picture {
  display: block;
  line-height: 0;
  overflow: hidden;
  border-radius: 8px;
}
#learn .learn-layout .learn-links {
  display: flex;
  gap: 5%;
}
#company h2 {
  font-weight: 700;
  font-size: clamp(2rem, 0.908rem + 1.4vw, 2.7rem);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CAC9D4;
}
#company .company-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
#company .company-image {
  position: relative;
}
#company .company-image .image {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}
#company .company-image img {
  width: 100%;
  height: auto;
  display: block;
}
#company .company-label {
  font-weight: 500;
  font-size: clamp(1.2rem, 0.576rem + 0.8vw, 1.6rem);
  margin-top: 15px;
}
#company a[target=_blank] p.company-label::after {
  right: 12px;
  content: "";
  background: url(/assets/image/blank.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
  width: 14px;
  aspect-ratio: 9/7;
  height: auto;
  border: none;
  transform: none;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  #company {
    padding: 40px 0;
  }
  #company .company-images {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

a.coming {
  pointer-events: none;
  filter: grayscale(100%);
}