@charset "UTF-8";
/*-- foundation --*/
/*-- global直下 --*/
/*-- settingフォルダ --*/
/*-- mixinフォルダ --*/
/*****Case.01 min-width
.elements {
  @include mq {
    color:red;
  }
  @include mq(L) {
    color:red;
  }
}
--------outpu↓--------

@media screen and (min-width: 768px) {
  .elements {
    color:red;
  }
}
@media screen and (min-width: 1024px) {
 .elements {
    color:red;
 }
}

#############################################

/*****Case.02 max-width
.elements {
  @include mq(S, max) {
    color:red;
  }
  @include mq(L, max, true) {
    color:red;
  }
}
--------outpu↓--------

@media screen and (max-width: 600px) {
  .elements {
    color:red;
  }
}
@media screen and (max-width: 1024px) {
 .elements {
   color:red;
 }
}

#############################################

/*****Case.03 min and max
.elements {
  @include mq {
    color:red;

    @include g.mq(L, max, true) {
      color:red;
    }

  }
}
--------outpu↓--------

@media screen and (min-width: 768px) {
  .elements {
    color:red;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .elements {
    color:red;
  }
}
*/
/*-- mixinフォルダ --*/
/*-- mixinフォルダ --*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  animation: fadeIn 1.5s ease 0s 1 normal;
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img,
video {
  width: 100%;
  height: auto;
  vertical-align: top;
}

@media screen and (max-width: 600px) {
  .video {
    display: none;
  }
}
.video-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .video-sp {
    display: block;
  }
}
.video_wrapper {
  padding: 85px 0 2em 0;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .video_wrapper {
    padding: 52px 0 0px 0;
  }
}
.video_wrapper video {
  width: 100%;
}

/*-- layout --*/
/*-- component --*/
/*-- project --*/
.p-newgrad {
  background-color: #fff;
  font-size: clamp(0.875rem, 1.8333333333vw, 1.375rem);
}
.p-newgrad_header_entry_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 170px;
  height: 60px;
  line-height: 1em;
  font-size: 20px;
  font-weight: bold;
  color: #fff !important;
  background-color: #00aff0;
  margin: auto;
  margin-right: 20px;
  margin-left: auto;
  border-radius: 5px;
  letter-spacing: 2px;
}
@media screen and (max-width: 834px) {
  .p-newgrad_header_entry_btn {
    display: none;
  }
}
.p-newgrad_header_entry_btn.--open {
  margin-left: 0;
  background-color: #8ccb00;
}
.p-newgrad_header_entry_btn_subttl {
  display: block;
  font-size: 0.65em;
}
.p-newgrad_header_menu {
  height: 100svh;
  position: relative;
}
.p-newgrad_header_menu_announce {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.25rem, 6.6666666667vw, 5rem);
  color: #00aff0;
}
.p-newgrad_hero {
  margin-bottom: 130px;
}
@media screen and (max-width: 600px) {
  .p-newgrad_hero {
    margin-bottom: 0px;
  }
}
.p-newgrad_hero_wrap {
  position: relative;
}
.p-newgrad_hero_bg-1 {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 1;
  transition: opacity 3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .p-newgrad_hero_bg-1 {
    height: calc(100svh - 70px);
  }
}
.p-newgrad_hero_bg-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  object-fit: cover;
  opacity: 1;
  z-index: 1;
}
.p-newgrad_hero_copy {
  max-width: 85%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media screen and (max-width: 1280px) {
  .p-newgrad_hero_copy {
    max-width: 90%;
  }
}
.p-newgrad_hero_copy.animate {
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}
.p-newgrad_hero_entry {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-newgrad_hero_entry {
    display: block;
  }
}
.p-newgrad_message {
  background-color: #fff;
}
.p-newgrad_message_wrap {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .p-newgrad_message_wrap {
    display: block;
  }
}
.p-newgrad_message_cts {
  font-size: clamp(0.875rem, 1.8333333333vw, 2rem);
  line-height: 2em;
  font-weight: bold;
  max-width: 45%;
  margin: auto;
  margin-top: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 120px;
}
@media screen and (max-width: 1280px) {
  .p-newgrad_message_cts {
    max-width: 40%;
  }
}
@media screen and (max-width: 600px) {
  .p-newgrad_message_cts {
    max-width: 85%;
    margin-bottom: 60px;
    line-height: 2em;
  }
}
.p-newgrad_message_copy {
  max-width: 90%;
  margin: auto;
  color: #00aff0;
  font-size: clamp(1.125rem, 3.5vw, 2.625rem);
  letter-spacing: 0em;
  line-height: 1.75em;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 90px;
}
@media screen and (max-width: 600px) {
  .p-newgrad_message_copy {
    margin-bottom: 60px;
  }
}
.p-newgrad_message_deco-img {
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 600px) {
  .p-newgrad_message_deco-left {
    display: none;
  }
}
.p-newgrad_message_deco-left-img {
  height: 75%;
  margin-top: 5%;
  width: auto;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1280px) {
  .p-newgrad_message_deco-left-img {
    height: 60%;
    margin-top: 10%;
  }
}
@media screen and (max-width: 1024px) {
  .p-newgrad_message_deco-left-img {
    height: 60%;
    margin-top: 10%;
  }
}
@media screen and (max-width: 600px) {
  .p-newgrad_message_deco-right {
    display: none;
  }
}
.p-newgrad_message_deco-right-img {
  height: 75%;
  width: auto;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1280px) {
  .p-newgrad_message_deco-right-img {
    height: 55%;
  }
}
@media screen and (max-width: 1024px) {
  .p-newgrad_message_deco-right-img {
    height: 55%;
    top: 5%;
  }
}
.p-newgrad_message_deco-sp {
  grid-area: message_deco_sp;
  display: none;
}
@media screen and (max-width: 600px) {
  .p-newgrad_message_deco-sp {
    display: block;
    margin-bottom: 60px;
  }
}
.p-newgrad_message_logo-img {
  display: block;
  max-width: 187px;
  margin: auto;
  margin-bottom: 90px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .p-newgrad_message_logo-img {
    max-width: 120px;
    margin-bottom: 60px;
  }
}
.p-newgrad_message-adjust-p {
  display: none;
}
@media screen and (min-width: 1700px) {
  .p-newgrad_message-adjust-p {
    display: inline;
  }
}
.p-newgrad_intro {
  background-color: #c6f0ff;
  padding: 100px 0;
  line-height: 1.75em;
}
@media screen and (max-width: 600px) {
  .p-newgrad_intro {
    padding: 60px 0;
  }
}
.p-newgrad_intro_wrap {
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .p-newgrad_intro_wrap {
    margin: auto 60px 60px 60px;
  }
}
@media screen and (max-width: 600px) {
  .p-newgrad_intro_wrap {
    max-width: 85%;
    margin: auto;
  }
}
.p-newgrad_intro_wrap > p {
  font-size: clamp(0.875rem, 1.8333333333vw, 1.375rem);
  font-weight: bold;
  line-height: 1.75em;
  padding: 0 2em;
  margin-bottom: 90px;
}
@media screen and (max-width: 600px) {
  .p-newgrad_intro_wrap > p {
    padding: 0;
    margin-bottom: 60px;
  }
}
.p-newgrad_intro_video_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  margin: auto;
  text-align: center;
  text-transform: uppercase;
  gap: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .p-newgrad_intro_video_list {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.p-newgrad_intro_video_frame {
  aspect-ratio: 3/2;
  margin-bottom: 20px;
}
.p-newgrad_intro_video_frame > iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.p-newgrad_intro_video_en {
  font-size: clamp(1.375rem, 2.0833333333vw, 1.5625rem);
  letter-spacing: 0.02em;
  font-weight: bold;
}
.p-newgrad_intro_video_jp {
  font-size: clamp(0.6875rem, 1.1666666667vw, 0.875rem);
}
.p-newgrad_entry {
  text-align: center;
  color: #fff;
  background-color: #00aff0;
  padding: 90px 0;
  font-size: clamp(1.125rem, 1.9166666667vw, 1.4375rem);
}
@media screen and (max-width: 600px) {
  .p-newgrad_entry {
    padding: 30px 0;
  }
}
.p-newgrad_entry_button {
  font-size: clamp(2.5rem, 5.8333333333vw, 4.375rem);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15em;
}
.p-newgrad_entry_button-icon {
  height: 1em;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-newgrad_entry_button-icon > img {
  width: auto;
  height: 0.5em;
}
.p-newgrad_entry_subttl {
  font-size: clamp(1rem, 3.5vw, 2.625rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
}
.p-newgrad_entry_subttl > span {
  font-size: clamp(0.625rem, 2.0833333333vw, 1.5625rem);
}
.p-newgrad_entry.--open {
  background-color: #8ccb00;
}
@media screen and (max-width: 600px) {
  .p-newgrad_entry.--open {
    margin-bottom: 70px;
  }
}
.p-newgrad_footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: transparent !important;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .p-newgrad_footer {
    display: block;
  }
}
.p-newgrad_footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-newgrad_footer-nav__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1em;
  font-size: 20px;
  font-weight: bold;
  color: #fff !important;
  background-color: #00aff0;
  letter-spacing: 2px;
  padding: 0.75em 0;
  max-height: 70px;
}
.p-newgrad_footer-nav__item.--open {
  background-color: #8ccb00;
}
.p-newgrad_footer-nav__item_subttl {
  display: block;
  font-size: 0.65em;
}

@keyframes popup {
  0% {
    opacity: 0;
    transform: scale(0.8) translate(-60%, -60%);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
}
#header {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: top 0.3s, opacity 0.5s;
  z-index: 1000;
  pointer-events: none;
}

#header.is-visible {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

/*-- utility --*/
.u-grp {
  display: inline-block;
}

/*
 * object/utility/_display.scss
 */
.u-pc-only {
  display: block;
}
@media screen and (max-width: 834px) {
  .u-pc-only {
    display: none;
  }
}

.u-tb-only {
  display: none;
}
@media screen and (max-width: 834px) {
  .u-tb-only {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .u-tb-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .u-sp-only {
    display: block;
  }
}
.u-sp-none {
  display: block;
}
@media screen and (max-width: 600px) {
  .u-sp-none {
    display: none;
  }
}

.u-objectFitImg {
  object-fit: cover;
  font-family: "object-fit: cover;";
}

/*
* object/utility/_position.scss
*/
/*
 * object/utility/_dimension.scss
 */
.u-marker {
  color: #00aff0;
}

/*
 * object/utility/_clearfix.scss
 */
.u-cf:before,
.u-cf:after {
  content: "";
  display: table;
}

.u-cf:after {
  clear: both;
}

.u-cf {
  *zoom: 1;
}

.u-clear {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}/*# sourceMappingURL=recruit.css.map */