@charset "UTF-8";
/**
 * index.scss
 * このファイルではスタイリングしない
 * 他のSassファイルを呼び出してコンパイルさせるファイル
 */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

input, select {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all ease-in 0.2s;
}
a:hover {
  opacity: 0.7;
}

html {
  box-sizing: border-box;
}

*,
:after,
:before {
  box-sizing: inherit;
}

a,
button {
  outline: 0;
}

button {
  padding: 0;
  border: 0;
  background: 0 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

li,
ol,
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl,
p {
  margin: 0;
}

dl {
  padding: 0;
}

dd {
  margin: 0;
}

img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

em {
  font-style: normal;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.header {
  z-index: 10;
  width: 100%;
  background-color: #fff;
}
.header .header_inner {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .header .header_inner {
    padding: 10px 12px;
  }
}
.header .header_inner .header_logo-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.header .header_inner .header_logo-container .header_logo {
  margin-right: 15px;
  width: 100px;
}
.header .header_inner .header_logo-container .header_logo-text {
  font-size: 15px;
}
@media (max-width: 767px) {
  .header .header_inner .header_logo-container {
    align-items: start;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .header .header_inner .header_logo-container .header_logo-text {
    font-size: 10px;
    margin-bottom: 5px;
  }
}
.header .header_inner .header_link-container {
  align-items: center;
  display: flex;
  gap: 33px;
}
.header .header_inner .header_link-container .header_text-link {
  font-size: 13px;
}

.header_button:hover,
.support > a:hover,
.secret-btn:hover,
.entry_submit:hover {
  opacity: 0.75;
}

.header_button {
  background-color: #ffe400;
  color: #333;
  padding: 15px 30px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 5px;
  gap: 5px;
}
@media (max-width: 767px) {
  .header_button {
    padding: 15px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .header_button {
    font-size: 10px;
    padding: 10px;
  }
}
.header_button img {
  height: inherit;
  width: 8%;
}
.header_button a {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 7px;
}

@media (max-width: 767px) {
  .header_logo-container {
    flex-direction: column;
  }
}

body {
  margin: auto;
  color: #333;
  line-height: 1.5;
  overflow-wrap: break-word;
  overscroll-behavior-y: none;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  body {
    min-width: 0px;
  }
}

.main-content {
  overflow-x: hidden;
}

.content-inner {
  margin: auto;
  max-width: 1000px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .content-inner {
    padding: 0;
    width: 100%;
  }
}

footer {
  background-color: #fff;
}

.footer_inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner {
    padding: 30px 0;
    flex-direction: column;
  }
}
.footer_inner .footer_flex-container {
  align-items: center;
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container {
    flex-direction: column;
  }
}
.footer_inner .footer_flex-container .footer_link-list {
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container .footer_link-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer_inner .footer_flex-container .footer_link-list li a {
  font-size: 12px;
  text-decoration: underline;
}
.footer_inner .footer_flex-container .footer_link-list li a:last-child {
  width: 46%;
}
.footer_inner .footer_flex-container .footer_copyright {
  font-size: 10px;
}
.footer_inner .footer_privacy {
  margin-left: auto;
  width: 70px;
}
@media (max-width: 767px) {
  .footer_inner .footer_privacy {
    transform: translateY(-33%);
    position: absolute;
    right: 5%;
  }
}

.is-pc {
  display: block !important;
}
@media (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}

.blue-bg {
  background-color: #0156A0;
}

.green-bg {
  background-color: #484848;
}

.blue {
  color: #0156A0;
}

.green {
  color: #484848;
}

.w4 {
  font-weight: 400;
}

.w5 {
  font-weight: 500;
}

.w6 {
  font-weight: 600;
}

.w7 {
  font-weight: 700;
}

.w8 {
  font-weight: 800;
}

/*
 * サイト共通部品 @Component
 * ボタン周り
 * 接頭辞「c-」を使用した方が分かりやすいが、
 * これまでの管理上、接頭辞なしで運用中
 */
.footer {
  padding-bottom: 32px;
  background-color: #fff;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer {
    padding-bottom: 2.5vw;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 9.3333333333vw;
  }
}

.footer-inner {
  max-width: 1080px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-inner {
    max-width: 84.375vw;
  }
}
@media (max-width: 767px) {
  .footer-inner {
    display: block;
    position: relative;
    width: 100%;
    padding: 8.5333333333vw 0;
  }
}

.footer-col:nth-child(1) {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-col:nth-child(1) {
    margin-top: 2.5vw;
  }
}
@media (max-width: 767px) {
  .footer-col:nth-child(1) {
    margin-top: 0;
    display: block;
  }
}

@media (max-width: 767px) {
  .footer-col:nth-child(2) {
    position: absolute;
    top: 4.2666666667vw;
    right: 6.4vw;
  }
}

.footer-logo {
  width: 128px;
  height: auto;
  display: inline-block;
  margin-right: 48px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-logo {
    width: 10vw;
    margin-right: 3.75vw;
  }
}
@media (max-width: 767px) {
  .footer-logo {
    width: 26.9333333333vw;
    display: block;
    margin: 0 auto 0 6.4vw;
  }
}

.footer-nav-list {
  display: flex;
  gap: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-nav-list {
    gap: 1.875vw;
  }
}
@media (max-width: 767px) {
  .footer-nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4.2666666667vw 8vw;
    margin-top: 8vw;
  }
}

.footer-nav-item a {
  color: #07080C;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-nav-item a {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .footer-nav-item a {
    font-size: 3.2vw;
  }
}

.footer-icon-list {
  display: flex;
}

.footer-icon-list a img {
  width: 80px;
  height: auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-icon-list a img {
    width: 6.25vw;
  }
}
@media (max-width: 767px) {
  .footer-icon-list a img {
    width: 16vw;
  }
}

.footer-copyright {
  width: 100%;
  color: #666;
  font-size: 10px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  margin: 16px auto 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-copyright {
    font-size: 0.78125vw;
    margin: 1.25vw auto 0;
  }
}
@media (max-width: 767px) {
  .footer-copyright {
    display: block;
    text-align: center;
    font-size: 3.2vw;
    color: #666;
    padding: 1.0666666667vw;
    background-color: unset;
    margin-top: 0;
  }
}

.footer-privacymark {
  width: 72px;
  height: 72px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-privacymark {
    width: 5.625vw;
    height: 5.625vw;
  }
}
@media (max-width: 767px) {
  .footer-privacymark {
    width: 16vw;
    height: 16vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff;
  margin: 0;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.is-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}

.is-pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.header {
  width: 100%;
  background: #fff;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 8px 0 !important;
  }
}
.header .header-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
}
.header .header-col {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .header .header-col:first-child {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 4px;
  }
}
.header .header-col .header-logo {
  width: 100px;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .header .header-col .header-logo {
    width: 90px;
    height: 27.545px;
  }
}
.header .header-col span {
  color: #1a1a1a;
  font-family: "A P-OTF Gothic MB101 Pr6N";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .header .header-col span {
    color: #1a1a1a;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
  }
}
.header .header-btn-img {
  display: block;
  width: 180px;
  transition: opacity 0.3s;
}
.header .header-btn-img:hover {
  opacity: 0.8;
}
.header .header-btn-img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header .header-btn-img {
    width: 40vw;
    height: auto;
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
  }
  .header .header-btn-img img {
    width: auto;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}
.mv .mv-inner {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mv .mv-inner {
    height: 570px;
    aspect-ratio: 64/19;
  }
}
@media screen and (max-width: 767px) {
  .mv .mv-inner {
    height: 592px;
  }
}
.mv .mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.mv .mv-bg.is-pc {
  background-position: center top;
  background-size: 1920px 570px;
}
.mv .mv-bg.is-sp {
  width: 100%;
  height: 592px;
  aspect-ratio: 375/433;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 27.6%, rgba(0, 0, 0, 0.94) 80.6%), url("../img/mv_bg_sp.webp") lightgray -185.532px -5.927px/328.127% 100.014% no-repeat;
  background-position: center top;
  background-size: cover;
}
.mv .mv-content-pc {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.mv .mv-content-sp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.mv .mv-content-sp .sp-mv-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 188px;
}
.mv .mv-content-sp .sp-catch-main {
  color: #fff;
  text-align: center;
  text-shadow: 0 1.561px 4.684px rgba(0, 0, 0, 0.9);
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1.16px;
  margin-bottom: 5.35px;
  margin-top: 10px;
}
.mv .mv-content-sp .sp-logo-box {
  width: 327.6px;
  height: 36px;
  margin-bottom: 8px;
}
.mv .mv-content-sp .sp-logo-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mv .mv-content-sp .sp-catch-sub {
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic W3 JIS2004", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
  white-space: nowrap;
  margin-bottom: 12px;
}
.mv .mv-content-sp .sp-form-container {
  position: relative;
  width: 335px;
  height: 172px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(270deg, rgba(55, 5, 135, 0.7) 0%, rgba(187, 40, 196, 0.7) 100%), rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
}
.mv .mv-content-sp .sp-form-mask {
  position: absolute;
  top: -5px;
  left: -15px;
  width: 120px;
  height: auto;
  z-index: 1;
  fill: linear-gradient(346deg, #290039 16.18%, #6b0095 89.62%);
}
.mv .mv-content-sp .sp-badge-text {
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 2;
  text-align: center;
}
.mv .mv-content-sp .sp-badge-text .text-easy {
  color: #f5ff42;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}
.mv .mv-content-sp .sp-badge-text .text-time {
  color: #f5ff42;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
.mv .mv-content-sp .sp-badge-text .text-time .num {
  font-family: "agency-fb", sans-serif;
  font-size: 24px;
  font-weight: 900;
  margin-right: 1px;
}
.mv .mv-content-sp .sp-form-text-group {
  text-align: center;
  position: relative;
  z-index: 3;
}
.mv .mv-content-sp .text-regist {
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, #fec3ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mv .mv-content-sp .text-regist .row-1 {
  display: block;
  font-size: 16px;
  color: #fff;
  text-shadow: 0 2px 4px #4f0083;
  background: none;
  -webkit-text-fill-color: #fff;
  position: relative;
  top: 1.3333333333vw;
}
.mv .mv-content-sp .text-regist .row-2 {
  display: block;
  font-size: 20px;
  background: linear-gradient(180deg, #fff 0%, #fec3ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.mv .mv-content-sp .text-intent {
  margin-top: 12px;
  color: #fff;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.mv .mv-content-sp .sp-form-btns {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 3;
}
.mv .mv-content-sp .sp-form-btns .btn-item {
  display: block;
  width: 148px;
  height: 50px;
  position: relative;
}
.mv .mv-content-sp .sp-form-btns .btn-item::after {
  content: "";
  display: block;
  width: 196px;
  height: 98px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: -24px;
  left: -28px;
  pointer-events: none;
}
.mv .mv-content-sp .sp-form-btns .btn-item.sp-btn-now {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 39px;
  padding-right: 29px;
  text-decoration: none;
}
.mv .mv-content-sp .sp-form-btns .btn-item.sp-btn-now::after {
  background-image: url("../img/mv_cta_now_sp.png");
  z-index: 0;
}
.mv .mv-content-sp .sp-form-btns .btn-item.sp-btn-now .sp-btn-text {
  position: relative;
  z-index: 1;
  width: 100%;
  top: -3px;
  left: -5px;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  background: linear-gradient(90deg, #8f02c6 0%, #5a01df 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mv .mv-content-sp .sp-form-btns .btn-item.sp-btn-jobtype {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 23px;
  padding-right: 13px;
  text-decoration: none;
}
.mv .mv-content-sp .sp-form-btns .btn-item.sp-btn-jobtype::after {
  background-image: url("../img/mv_cta_jobtype_sp.png");
  z-index: 0;
}
.mv .mv-content-sp .sp-form-btns .btn-item.sp-btn-jobtype .sp-btn-text {
  position: relative;
  z-index: 1;
  width: 100%;
  top: -3px;
  left: -5px;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  background: linear-gradient(90deg, #8f02c6 0%, #5a01df 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mv .mv-text-group {
  position: absolute;
  top: 44px;
  left: 55vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 512px;
  margin-left: -26px;
}
.mv .mv-catch-main {
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1.36px;
  white-space: nowrap;
  margin-bottom: 16px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}
.mv .mv-logo-box {
  width: 418.6px;
  height: 46px;
  margin-bottom: 12px;
}
.mv .mv-logo-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mv .mv-catch-sub {
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  white-space: nowrap;
}
.mv .mv-form-container {
  position: absolute;
  top: 290px;
  left: 55vw;
  width: 512px;
  height: 218px;
  margin-left: -12px;
}
.mv .form-bg-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.mv .form-base-svg {
  position: absolute;
  top: -6px;
  left: -13px;
  width: 535px !important;
  height: 254px !important;
  max-width: none !important;
  z-index: 1;
}
.mv .form-mask-img {
  position: absolute;
  top: -2px;
  width: 130px;
  height: 150px;
  z-index: 2;
}
.mv .form-text-easy {
  position: absolute;
  top: 31px;
  left: 49px;
  z-index: 3;
  color: #f5ff42;
  text-align: center;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}
.mv .form-text-time {
  position: absolute;
  top: 48px;
  left: 46px;
  z-index: 3;
  color: #f5ff42;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}
.mv .form-text-time .num {
  font-family: "agency-fb", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  margin-right: 1px;
}
.mv .form-text-regist {
  position: absolute;
  top: 38px;
  left: 116px;
  z-index: 3;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  background: linear-gradient(180deg, #fff 0%, #fec3ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px #4f0083);
}
.mv .form-text-regist .char-no {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, #fec3ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mv .form-text-intent {
  position: absolute;
  top: 80px;
  left: 59px;
  width: 380px;
  text-align: center;
  z-index: 3;
  color: #fff;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.mv .form-btns {
  position: absolute;
  top: 124px;
  left: 40px;
  display: flex;
  gap: 12px;
  z-index: 4;
}
.mv .form-btns .btn-item {
  display: block;
  width: 210px;
  height: 56px;
  transition: transform 0.3s, opacity 0.3s;
  overflow: visible;
}
.mv .form-btns .btn-item:hover {
  transform: translateY(2px);
  opacity: 0.9;
}
.mv .form-btns .btn-item img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scale(1.85);
  transform-origin: center center;
}
.mv .form-btns .btn-item.btn-entry-now {
  width: 210px;
  height: 56px;
  position: relative;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.mv .form-btns .btn-item.btn-entry-now::after {
  content: "";
  display: block;
  width: 258px;
  height: 104px;
  background-image: url("../img/mv_cta_now_pc.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: -24px;
  left: -24px;
  pointer-events: none;
  z-index: 0;
}
.mv .form-btns .btn-item.btn-entry-now .btn-text {
  position: relative;
  z-index: 1;
  top: -2px;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  width: 100px;
  background: linear-gradient(90deg, #8f02c6 0%, #5a01df 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mv .form-btns .btn-item.btn-entry-now .btn-arrow {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 16px;
  width: 10px;
  height: 15px;
  pointer-events: none;
}
.mv .form-btns .btn-item.btn-entry-now .btn-arrow path {
  fill: #5b02df;
}
.mv .form-btns .btn-item.btn-entry-now:hover {
  transform: translateY(2px);
  opacity: 0.8;
}
.mv .form-btns .btn-item.btn-entry-jobtype {
  width: 210px;
  height: 56px;
  position: relative;
  transform: none;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.mv .form-btns .btn-item.btn-entry-jobtype::after {
  content: "";
  display: block;
  width: 258px;
  height: 104px;
  background-image: url("../img/mv_cta_now_pc.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: -24px;
  left: -24px;
  pointer-events: none;
  z-index: 0;
}
.mv .form-btns .btn-item.btn-entry-jobtype .btn-text {
  position: relative;
  z-index: 1;
  top: -2px;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  width: 140px;
  background: linear-gradient(90deg, #8f02c6 0%, #5a01df 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mv .form-btns .btn-item.btn-entry-jobtype .btn-arrow {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 16px;
  width: 10px;
  height: 15px;
  pointer-events: none;
}
.mv .form-btns .btn-item.btn-entry-jobtype .btn-arrow path {
  fill: #5b02df;
}
.mv .form-btns .btn-item.btn-entry-jobtype:hover {
  transform: translateY(2px);
  opacity: 0.8;
}

.section-divider {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: 2px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%), linear-gradient(90deg, #cb2ccb 0%, #6200ff 100%);
}

.intro {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}
.intro .intro-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.intro .intro-bg.is-pc {
  width: 1920px;
  height: 678px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.intro .intro-bg.is-sp {
  width: 100vw;
  height: 231.7333333333vw;
  background-image: url("../img/intro_bg_sp.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.intro .intro-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .intro .intro-inner {
    padding-top: 90px;
    padding-bottom: 160px;
  }
}
@media screen and (max-width: 767px) {
  .intro .intro-inner {
    padding-top: 13.3333333333vw;
    padding-bottom: 15.2vw;
  }
}
.intro .intro-headline {
  text-align: center;
  color: #fff;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
}
@media screen and (min-width: 768px) {
  .intro .intro-headline {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .intro .intro-headline {
    margin-bottom: 5.3333333333vw;
  }
}
.intro .intro-headline .text-upper {
  display: block;
}
@media screen and (min-width: 768px) {
  .intro .intro-headline .text-upper {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 1px 4px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .intro .intro-headline .text-upper {
    font-size: 4.8vw;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 1px 4px 8px rgba(0, 0, 0, 0.7);
  }
}
.intro .intro-headline .text-lower {
  display: block;
}
@media screen and (min-width: 768px) {
  .intro .intro-headline .text-lower {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: none;
    text-shadow: 1px 4px 8px rgba(0, 0, 0, 0.7);
  }
}
@media screen and (max-width: 767px) {
  .intro .intro-headline .text-lower {
    font-size: 6.9333333333vw;
    font-weight: 800;
    line-height: 1.3;
    margin-top: 1.3333333333vw;
    text-shadow: 1px 4px 8px rgba(0, 0, 0, 0.7);
  }
}
.intro .intro-content-row {
  display: flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .intro .intro-content-row {
    justify-content: center;
    gap: 22px;
    transform: translateX(-20px);
  }
}
@media screen and (max-width: 767px) {
  .intro .intro-content-row {
    flex-direction: column;
    align-items: center;
    gap: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .intro .intro-content-row .intro-box:nth-child(2) .box-text-area {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .intro .intro-content-row .intro-box:nth-child(1) .char-img {
    bottom: -15px !important;
    top: auto !important;
  }
  .intro .intro-content-row .intro-box:nth-child(2) .char-img {
    bottom: 215px !important;
    top: auto !important;
  }
  .intro .intro-content-row .intro-box:nth-child(3) .char-img {
    bottom: -15px !important;
    top: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .intro .intro-content-row {
    margin-top: 0;
  }
}
.intro .intro-box {
  position: relative;
  box-sizing: border-box;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .intro .intro-box {
    width: 312px;
    height: 290px;
    flex-shrink: 0;
    filter: drop-shadow(0 20px 15px rgba(209, 94, 255, 0.5));
  }
}
@media screen and (max-width: 767px) {
  .intro .intro-box {
    width: 89.3333333333vw;
    height: 53.6vw;
    aspect-ratio: 312/290;
    filter: drop-shadow(1px 3px 10px rgba(131, 94, 255, 0.6));
  }
}
.intro .intro-box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.intro .intro-box .box-bg.is-sp {
  -o-object-fit: contain;
     object-fit: contain;
}
.intro .intro-box .char-img {
  position: absolute;
  z-index: 2;
  width: 270px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  left: 33px;
  bottom: -20px;
  opacity: 0.62;
  mix-blend-mode: screen;
}
@media screen and (max-width: 767px) {
  .intro .intro-box .char-img {
    display: none;
  }
}
.intro .intro-box .pos-bottom-right {
  bottom: 0;
  right: 0;
}
.intro .intro-box .pos-top-right {
  top: 0;
  right: 0;
}
.intro .intro-box .pos-bottom-left {
  bottom: 0;
  left: 0;
}
.intro .intro-box .box-text-area {
  position: absolute;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .intro .intro-box .box-text-area {
    width: 272px;
    top: 20px !important;
    left: 20px !important;
  }
}
@media screen and (max-width: 767px) {
  .intro .intro-box .box-text-area {
    top: 6.4vw;
    left: 8.32vw;
    bottom: auto !important;
    width: auto;
  }
}
.intro .intro-box .box-title {
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .intro .intro-box .box-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .intro .intro-box .box-title {
    font-size: 5.3333333333vw;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2.6666666667vw;
  }
}
.intro .intro-box .box-title.gradient-purple {
  background-image: linear-gradient(90deg, #f5ff42 0%, #f585ff 100%);
}
.intro .intro-box .box-title.gradient-blue {
  background-image: linear-gradient(90deg, #f5ff42 0%, #85caff 100%);
}
@media screen and (min-width: 768px) {
  .intro .intro-box .box-line {
    width: 272px;
    height: 1px;
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 767px) {
  .intro .intro-box .box-line {
    width: 72.5333333333vw;
    height: 1px;
    margin-bottom: 3.7333333333vw;
  }
}
.intro .intro-box .box-line.purple-line {
  background: linear-gradient(90deg, #eaadff 0%, rgba(234, 173, 255, 0.5) 50%, rgba(234, 173, 255, 0) 100%);
}
.intro .intro-box .box-desc {
  color: #fff;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
}
@media screen and (min-width: 768px) {
  .intro .intro-box .box-desc {
    width: 272px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
  }
}
@media screen and (max-width: 767px) {
  .intro .intro-box .box-desc {
    width: 72.5333333333vw;
    font-size: 3.7333333333vw;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.5px;
    font-family: "Hiragino Kaku Gothic W3 JIS2004", sans-serif;
  }
}

.job {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}
.job .job-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.job .job-bg.is-pc {
  width: 1920px;
  height: 826px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: normal, normal, normal, overlay, normal;
  aspect-ratio: 40/17;
}
.job .job-bg.is-sp {
  width: 100%;
  height: 288.2666666667vw;
  background-image: url("../img/job_bg_sp.webp");
  background-position: top center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.job .job-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .job .job-inner {
    padding-bottom: 55px;
  }
}
@media screen and (max-width: 767px) {
  .job .job-inner {
    padding-bottom: 18.6666666667vw;
    padding-top: 2.6666666667vw;
  }
}
.job .job-title-decor {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .job .job-title-decor {
    top: 32px;
    width: 478.25px;
    height: 232.25px;
  }
}
@media screen and (max-width: 767px) {
  .job .job-title-decor {
    width: 89.3333333333vw;
    height: 48vw;
    top: 2.6666666667vw;
  }
}
.job .job-title-decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.job .job-headline {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .job .job-headline {
    padding-top: 114px;
    margin-bottom: 33px;
  }
}
@media screen and (max-width: 767px) {
  .job .job-headline {
    padding-top: 15.7333333333vw;
    margin-bottom: 8.6666666667vw;
  }
}
.job .job-headline .text-upper {
  display: block;
  font-weight: 800;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .job .job-headline .text-upper {
    font-size: 24px;
    text-shadow: 1px 4px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .job .job-headline .text-upper {
    font-size: 4.8vw;
    text-shadow: 1px 4px 8px rgba(0, 0, 0, 0.7);
  }
}
.job .job-headline .text-lower {
  display: block;
  font-weight: 800;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .job .job-headline .text-lower {
    font-size: 34px;
    text-shadow: 1px 4px 8px rgba(0, 0, 0, 0.7);
  }
}
@media screen and (max-width: 767px) {
  .job .job-headline .text-lower {
    font-size: 6.9333333333vw;
    text-shadow: 1px 4px 8px rgba(0, 0, 0, 0.7);
  }
}
.job .job-cases {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .job .job-cases {
    justify-content: center;
    right: 7px;
  }
}
@media screen and (max-width: 767px) {
  .job .job-cases {
    flex-direction: column;
    align-items: center;
    gap: 0.5333333333vw;
  }
}
.job .case-item {
  position: relative;
  flex-shrink: 0;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .job .case-item {
    width: 500px;
    height: 380px;
  }
}
@media screen and (max-width: 767px) {
  .job .case-item {
    width: 98.1333333333vw;
    height: 94.6666666667vw;
  }
}
.job .case-item:nth-child(1) {
  filter: drop-shadow(5px 6px 20px rgba(108, 0, 50, 0.65));
}
.job .case-item:nth-child(2) {
  filter: drop-shadow(5px 6px 20px rgba(0, 27, 108, 0.65));
}
.job .case-item .case-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .job .case-item .case-img {
    -o-object-position: left center;
       object-position: left center;
  }
}
@media screen and (max-width: 767px) {
  .job .case-item .case-img {
    -o-object-position: center;
       object-position: center;
  }
}
.job .case-item .case-text {
  position: absolute;
  z-index: 3;
  color: #fff;
  font-family: "Hiragino Kaku Gothic W3 JIS2004", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .job .case-item .case-text {
    top: 222px;
    left: 50px;
    width: 414px;
    height: 135px;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.5px;
  }
  .job .case-item .case-text .wide-text {
    letter-spacing: 0.07em;
  }
  .job .case-item .case-text .wide-text-2 {
    letter-spacing: 0.07em;
  }
  .job .case-item .case-text .wide-text-3 {
    letter-spacing: 0.085em;
  }
  .job .case-item .case-text .wide-text-4 {
    letter-spacing: 0.055em;
  }
}
@media screen and (max-width: 767px) {
  .job .case-item .case-text {
    top: 48vw;
    left: 13.7333333333vw;
    width: 72vw;
    height: auto;
    font-size: 3.84vw;
    line-height: 1.6;
  }
}
.job .case-item .highlight {
  color: #f6ff4f;
  font-weight: 400;
}
.job .case-item .case-note {
  position: absolute;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .job .case-item .case-note {
    top: 100%;
    right: 25px;
    margin-top: 10px;
    font-size: 10px;
    left: auto;
    font-style: normal;
  }
}
@media screen and (max-width: 767px) {
  .job .case-item .case-note {
    top: 98.5%;
    right: 45px;
    font-size: 2.6666666667vw;
  }
}
.job .job-cta {
  position: relative;
  z-index: 2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .job .job-cta {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .job .job-cta {
    margin-top: 8vw;
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
.job .job-cta .cta-btn {
  display: inline-block;
  transition: opacity 0.3s;
  position: relative;
}
.job .job-cta .cta-btn:hover {
  opacity: 0.8;
}
.job .job-cta .cta-btn img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .job .job-cta .cta-btn {
    width: 560px;
    height: auto;
  }
  .job .job-cta .cta-btn .cta-text {
    position: absolute;
    top: 42px;
    left: 54px;
    z-index: 1;
    width: 433px;
    height: 29px;
    font-family: "Hiragino Kaku Gothic StdN", sans-serif;
    font-size: 27px;
    font-style: normal;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, #8f02c6 0%, #5a01df 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .job .job-cta .cta-btn .cta-sub-text {
    position: absolute;
    z-index: 2;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 16px;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 8px #b273ff;
    font-family: "Hiragino Kaku Gothic StdN", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .job .job-cta .cta-btn {
    width: 89.3333333333vw;
    height: 18.6666666667vw;
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
  }
  .job .job-cta .cta-btn::after {
    content: "";
    display: block;
    width: 102.1333333333vw;
    height: 31.4666666667vw;
    background-image: url("../img/job_cta_sp.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: -6.4vw;
    left: -6.4vw;
    pointer-events: none;
    z-index: 0;
  }
  .job .job-cta .cta-btn .cta-text {
    position: absolute;
    z-index: 1;
    top: 3.4666666667vw;
    left: 29.8666666667vw;
    width: 42.6666666667vw;
    height: 11.7333333333vw;
    font-family: "Hiragino Kaku Gothic StdN", sans-serif;
    font-size: 5.3333333333vw;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    background: linear-gradient(90deg, #8f02c6 0%, #5a01df 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .job .job-cta .cta-btn .cta-badge {
    position: absolute;
    z-index: 1;
    top: 3.64vw;
    left: 4.5973333333vw;
    width: 13.0666666667vw;
    height: 10.6666666667vw;
    color: #fff;
    text-align: center;
    text-shadow: -1px 2px 4px #5f0bb3;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 4.8vw;
    font-style: normal;
    font-weight: 900;
    line-height: 1.1;
  }
  .job .job-cta .cta-btn .cta-badge .badge-upper {
    display: inline-block;
    position: relative;
    left: 6px;
  }
}

.section-divider-support {
  width: 100%;
  max-width: 1920px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%), linear-gradient(90deg, #cb2ccb 0%, #6200ff 100%);
}

.support-section {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .support-section {
    min-height: 622px;
    padding: 100px 0;
    gap: 10px;
    background-image: url("../img/support_bg_pc.webp");
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .support-section {
    height: 268.8vw;
    padding: 16vw 7.2vw;
    gap: 2.6666666667vw;
    background-image: url("../img/support_bg_sp.webp");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.support-section .support-container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .support-section .support-container {
    padding: 0;
  }
}
.support-section .support-heading {
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .support-section .support-heading {
    margin-bottom: 24px;
    font-size: 24px;
    text-shadow: 1px 4px 8px rgba(0, 0, 0, 0.7);
    font-style: normal;
    line-height: 160%;
  }
}
@media screen and (max-width: 767px) {
  .support-section .support-heading {
    margin-bottom: 6.4vw;
    font-size: 4.8vw;
    line-height: 1.3;
    text-shadow: 1px 4px 8px rgba(0, 0, 0, 0.7);
  }
}
.support-section .support-heading .highlight {
  display: block;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .support-section .support-heading .highlight {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .support-section .support-heading .highlight {
    font-size: 6.9333333333vw;
    line-height: 1.3;
  }
}
.support-section .support-decoration-line {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .support-section .support-decoration-line {
    margin-bottom: 5.3333333333vw;
  }
}
.support-section .support-decoration-line img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .support-section .support-decoration-line img {
    width: 773.333px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .support-section .support-decoration-line img {
    width: 85.6888vw;
    height: 3.7333333333vw;
  }
}

.support-merit-boxes {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .support-merit-boxes {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .support-merit-boxes {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10.6666666667vw;
  }
}

.merit-box {
  width: 312px;
  height: 240px;
  background: linear-gradient(90deg, #2a1356 0%, #2e252f 100%);
  flex-shrink: 0;
}
.merit-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #7222ce 0%, #9c08a3 100%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .merit-box + .merit-box {
    margin-left: 22px;
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .merit-box {
    width: 83.2vw;
    height: 58.6666666667vw;
    margin-bottom: 0;
    transform: none;
  }
}

.merit-box-1 {
  position: relative;
}
.merit-box-1 .merit-title {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.merit-box-1 .merit-title .lg {
  font-size: 20px;
}
.merit-box-1 .merit-line {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  margin: auto;
  width: 227px;
  height: 1px;
  background: linear-gradient(90deg, rgba(178, 144, 194, 0) 0%, #b290c2 50%, rgba(178, 144, 194, 0) 100%);
}
.merit-box-1 .merit-content {
  position: absolute;
  top: 80px;
  width: 100%;
  padding-top: 27px;
  display: flex;
  justify-content: center;
}
.merit-box-1 .merit-content .merit-number {
  line-height: 0.8;
  letter-spacing: -2px;
  display: flex;
  align-items: baseline;
  position: relative;
  width: auto;
}
@media screen and (max-width: 767px) {
  .merit-box-1 .merit-content .merit-number {
    gap: 1.0666666667vw;
  }
}
.merit-box-1 .merit-content .merit-number .num {
  color: #e6a3ff;
  font-family: "agency-fb", sans-serif;
  font-size: 100px;
  font-weight: 900;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .merit-box-1 .merit-content .merit-number .num {
    font-size: 21.3333333333vw;
  }
}
.merit-box-1 .merit-content .merit-number .unit {
  color: #e6a3ff;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 45px;
  font-weight: 700;
  letter-spacing: -0.9px;
  margin-left: 0px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .merit-box-1 .merit-content .merit-number .unit {
    font-size: 10.4vw;
    margin-left: -2px;
    top: -5px;
  }
}
.merit-box-1 .merit-content .merit-number .unit-text {
  color: #e6a3ff;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.56px;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .merit-box-1 .merit-content .merit-number .unit-text {
    top: -5px;
    margin-left: 0px;
    font-size: 7.4666666667vw;
  }
}
.merit-box-1 .merit-content .merit-number .merit-arrow-bg {
  position: absolute;
  z-index: 1;
  width: 88px;
  height: 81.9px;
  right: 0px;
  bottom: 5px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .merit-box-1 .merit-content .merit-number .merit-arrow-bg {
    bottom: 1px;
    right: -35px;
    z-index: 1;
    height: 71.9px;
  }
}
.merit-box-1 .merit-content .merit-note {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 15px auto 0;
  width: 227px;
  color: #ccc;
  text-align: center;
  font-family: "Hiragino Kaku Gothic W3 JIS2004", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
}

.merit-box-2 {
  position: relative;
}
.merit-box-2 .merit-title {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.merit-box-2 .merit-title .lg {
  font-size: 20px;
}
.merit-box-2 .merit-line {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  margin: auto;
  width: 227px;
  height: 1px;
  background: linear-gradient(90deg, rgba(178, 144, 194, 0) 0%, #b290c2 50%, rgba(178, 144, 194, 0) 100%);
}
.merit-box-2 .merit-content-list {
  position: absolute;
  top: 110px;
  width: -moz-fit-content;
  width: fit-content;
  transform: scale(0.9);
  transform-origin: left top;
  left: 25px;
  right: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.merit-box-2 .merit-content-list .list-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.merit-box-2 .merit-content-list .list-item-group {
  display: flex;
  align-items: center;
}
.merit-box-2 .merit-content-list .list-icon {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  flex-shrink: 0;
}
.merit-box-2 .merit-content-list .list-text {
  color: #e6a3ff;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.merit-box-2 .merit-content-list .list-text .sm {
  font-size: 13px;
}
.merit-box-2 .merit-content-list .spacer-16 {
  width: 16px;
}

.merit-box-3 {
  position: relative;
}
.merit-box-3 .merit-title {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.merit-box-3 .merit-title .lg {
  font-size: 20px;
}
.merit-box-3 .merit-line {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  margin: auto;
  width: 227px;
  height: 1px;
  background: linear-gradient(90deg, rgba(178, 144, 194, 0) 0%, #b290c2 50%, rgba(178, 144, 194, 0) 100%);
}
.merit-box-3 .merit-content-3 {
  position: absolute;
  top: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.merit-box-3 .merit-content-3 .chat-bg-icon {
  position: absolute;
  top: 25.85px;
  right: 23px;
  width: 133px;
  height: 118px;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='133' height='118' viewBox='0 0 133 118' fill='none'%3E%3Cpath opacity='0.34' d='M120.344 44.2539C127.194 44.2542 132.762 50.1801 132.762 57.4961V88.0439C132.762 95.341 127.194 101.304 120.228 101.304H117.757V118.01L102.094 101.304H62.2031C55.3525 101.304 49.7853 95.3421 49.7852 88.0439V75.9805H86.7764C98.1081 75.9805 107.314 66.1318 107.314 54.0322V44.2549H120.344V44.2539ZM86.668 0C95.3045 2.20871e-05 102.337 7.52516 102.337 16.7852V54.1631C102.337 63.4063 95.3045 70.9492 86.668 70.9492H38.1719L18.3174 92.1953V73.6035L18.167 70.9473H15.6846C7.04807 70.9472 0 63.404 0 54.1621V16.7852C7.20939e-05 7.52521 7.04811 9.44539e-05 15.6846 0H86.668Z' fill='url(%23paint0_linear_92_5754)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_92_5754' x1='38.7081' y1='-32.6104' x2='38.7081' y2='159.775' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FF69F2'/%3E%3Cstop offset='1' stop-color='%23FF69F2' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .merit-box-3 .merit-content-3 .chat-bg-icon {
    width: 125px;
    height: 111px;
    top: 25.85px;
    right: 15px;
  }
}
.merit-box-3 .merit-content-3 .desc-text {
  margin-top: 45px;
  color: #e6a3ff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  z-index: 5 !important;
}
@media screen and (max-width: 767px) {
  .merit-box-3 .merit-content-3 .desc-text {
    font-size: 18px;
    z-index: 5 !important;
  }
}
.merit-box-3 .merit-content-3 .point-banner {
  margin-top: 10px;
  width: 260px;
  height: 43px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='43' viewBox='0 0 260 43' fill='none'%3E%3Cpath d='M0 1.46783e-05H260L260 43.0001H0V1.46783e-05Z' fill='url(%23paint0_linear_68_26174)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_68_26174' x1='1.39464e-07' y1='21.4472' x2='275.029' y2='21.4472' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%236213E1' stop-opacity='0'/%3E%3Cstop offset='0.5' stop-color='%23862EA8'/%3E%3Cstop offset='1' stop-color='%236213E1' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  transform: scale(0.9);
}
.merit-box-3 .merit-content-3 .point-banner .point-badge {
  position: absolute;
  top: 12px;
  left: 52px;
  width: 56px;
  height: 19px;
  border: 0.5px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: "din-2014-narrow", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.merit-box-3 .merit-content-3 .point-banner .point-text {
  position: absolute;
  left: 120px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  text-align: left;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.6px;
}
.merit-box-3 .merit-content-3 .point-banner .point-text .lg {
  font-size: 12px;
  letter-spacing: 0.72px;
}

.merit-bottom-banner {
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: auto;
  width: 232px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' width='232' height='40' viewBox='0 0 232 40' fill='none'%3E%3Cpath d='M6 0H232L226 40H0L6 0Z' fill='url(%23paint0_linear_92_5718)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_92_5718' x1='0' y1='20' x2='226' y2='20' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23EFDAFD'/%3E%3Cstop offset='1' stop-color='%23E7B8FF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #5b0096;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.merit-bottom-banner .divider-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.merit-box-2 .merit-bottom-banner {
  width: 172px;
  height: 40px;
}

.entry-arrow-divider {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 0;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .entry-arrow-divider img {
    width: 100px;
    height: 73px;
    margin-top: -35px;
  }
}
@media screen and (max-width: 767px) {
  .entry-arrow-divider img {
    width: 21.4656vw;
    height: auto;
    position: absolute;
    bottom: -7.5162666667vw;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 7.4666666667vw;
    display: block;
  }
}

.entry {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  margin-top: -1px;
}
.entry .entry-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.entry .entry-bg.is-pc {
  width: 1920px;
  height: 565px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.entry .entry-bg.is-sp {
  width: 100%;
  height: 100%;
  background-image: url("../img/entry_bg_sp.webp");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
.entry .entry-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .entry .entry-inner {
    padding-top: 97px;
    padding-bottom: 97px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .entry .entry-inner {
    padding: 16vw 5.3333333333vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.entry .entry-form-box {
  position: relative;
  box-shadow: 0 14px 30px 0 rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .entry .entry-form-box {
    width: 980px;
    height: 371px;
  }
}
@media screen and (max-width: 767px) {
  .entry .entry-form-box {
    width: 89.3333333333vw;
    height: 76.2666666667vw;
  }
}
.entry .form-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.58;
}
@media screen and (min-width: 768px) {
  .entry .form-box-bg {
    background: linear-gradient(270deg, #cb2ccc 0%, #370587 100%);
  }
}
@media screen and (max-width: 767px) {
  .entry .form-box-bg {
    background: linear-gradient(180deg, #cb2ccc 0%, #370587 100%);
  }
}
.entry .form-box-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .entry .form-box-content {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .entry .form-box-content {
    padding-top: 5.3333333333vw;
  }
}
.entry .entry-label {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .entry .entry-label {
    width: 203px;
    height: 43px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .entry .entry-label {
    width: 42.6666666667vw;
    height: 8.5333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.entry .entry-text-main {
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .entry .entry-text-main {
    font-size: 38px;
    text-shadow: 0 2px 4px rgba(48, 9, 93, 0.6);
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .entry .entry-text-main {
    font-size: 6.4vw;
    text-shadow: none;
    margin-bottom: 3.2vw;
  }
}
.entry .entry-text-sub {
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .entry .entry-text-sub {
    font-size: 20px;
    text-shadow: 0 2px 4px rgba(48, 9, 93, 0.6);
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .entry .entry-text-sub {
    font-size: 4.2666666667vw;
    text-shadow: none;
    margin-bottom: 5.3333333333vw;
  }
}
.entry .entry-btns {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .entry .entry-btns {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .entry .entry-btns {
    flex-direction: column;
    align-items: center;
    gap: 2.6666666667vw;
  }
}
.entry .entry-btns .entry-btn-item {
  display: block;
  transition: opacity 0.3s, transform 0.3s;
  position: relative;
}
.entry .entry-btns .entry-btn-item:hover {
  opacity: 0.8;
  transform: translateY(2px);
}
.entry .entry-btns .entry-btn-item img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .entry .entry-btns .entry-btn-item img {
    transform: scale(1.8);
  }
}
@media screen and (min-width: 768px) {
  .entry .entry-btns .entry-btn-item {
    width: 320px;
    height: 72px;
    position: relative;
    transform: none;
  }
  .entry .entry-btns .entry-btn-item::after {
    content: "";
    display: block;
    width: 368px;
    height: 120px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: -24px;
    left: -24px;
    pointer-events: none;
  }
  .entry .entry-btns .entry-btn-item:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
@media screen and (min-width: 768px) {
  .entry .entry-btns .entry-btn-item.entry-btn-now {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }
  .entry .entry-btns .entry-btn-item.entry-btn-now::after {
    background-image: url("../img/entry_cta_now_pc.png");
    z-index: 0;
  }
  .entry .entry-btns .entry-btn-item.entry-btn-now .entry-btn-text {
    position: relative;
    z-index: 1;
    top: -2px;
    font-family: "Hiragino Kaku Gothic StdN", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    width: 100px;
    background: linear-gradient(90deg, #8f02c6 0%, #5a01df 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .entry .entry-btns .entry-btn-item.entry-btn-now {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 27.4666666667vw;
    text-decoration: none;
  }
  .entry .entry-btns .entry-btn-item.entry-btn-now::after {
    background-image: url("../img/entry_cta_now_sp.png");
    z-index: 0;
  }
  .entry .entry-btns .entry-btn-item.entry-btn-now .entry-btn-text {
    position: relative;
    z-index: 1;
    top: -2px;
    width: 24vw;
    font-family: "Hiragino Kaku Gothic StdN", sans-serif;
    font-size: 4.8vw;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    background: linear-gradient(90deg, #8f02c6 0%, #5a01df 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media screen and (min-width: 768px) {
  .entry .entry-btns .entry-btn-item.entry-btn-jobtype {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }
  .entry .entry-btns .entry-btn-item.entry-btn-jobtype::after {
    background-image: url("../img/entry_cta_now_pc.png");
    z-index: 0;
  }
  .entry .entry-btns .entry-btn-item.entry-btn-jobtype .entry-btn-text {
    position: relative;
    z-index: 1;
    top: -2px;
    font-family: "Hiragino Kaku Gothic StdN", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    width: 140px;
    background: linear-gradient(90deg, #8f02c6 0%, #5a01df 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .entry .entry-btns .entry-btn-item.entry-btn-jobtype {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 22.6666666667vw;
    text-decoration: none;
  }
  .entry .entry-btns .entry-btn-item.entry-btn-jobtype::after {
    background-image: url("../img/entry_cta_now_sp.png");
    z-index: 0;
  }
  .entry .entry-btns .entry-btn-item.entry-btn-jobtype .entry-btn-text {
    position: relative;
    z-index: 1;
    top: -2px;
    width: 33.6vw;
    font-family: "Hiragino Kaku Gothic StdN", sans-serif;
    font-size: 4.8vw;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    background: linear-gradient(90deg, #8f02c6 0%, #5a01df 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .entry .entry-btns .entry-btn-item {
    width: 78.6666666667vw;
    height: 14.9333333333vw;
    margin: 0;
    padding: 0;
    transform: none;
  }
  .entry .entry-btns .entry-btn-item img {
    display: none !important;
  }
  .entry .entry-btns .entry-btn-item::after {
    content: "";
    display: block;
    width: 91.4666666667vw;
    height: 27.7333333333vw;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: -6.4vw;
    left: -6.4vw;
    pointer-events: none;
  }
  .entry .entry-btns .entry-btn-item.entry-btn-now::after {
    background-image: url("../img/entry_cta_now_sp.png");
  }
}/*# sourceMappingURL=index.css.map */