@charset "UTF-8";
/**
 * index.scss (70ok1)
 * 共通設定を読み込み、このLP専用のstyle.scssを統合してコンパイルするファイル
 */
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 {
  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%;
  }
}

.header {
  background: #FFF;
  position: relative;
}
@media (max-width: 767px) {
  .header {
    position: sticky;
    top: 0;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-inner {
    max-width: 76.5625vw;
  }
}
@media (max-width: 767px) {
  .header-inner {
    padding: 2.0512820513vw 3.8461538462vw;
  }
}

.header-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-col {
    padding: 0.625vw 4.6875vw;
  }
}
@media (max-width: 767px) {
  .header-col {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .header-col:nth-child(1) {
    flex-wrap: wrap;
  }
}

.header-col:nth-child(1) span {
  font-size: 12px;
  color: #07080c;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-col:nth-child(1) span {
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header-col:nth-child(1) span {
    width: 100%;
    order: 1;
    font-size: 2.5641025641vw;
  }
}

.header-logo {
  width: 90px;
  height: auto;
  margin-right: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-logo {
    width: 7.03125vw;
    margin-right: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header-logo {
    order: 2;
    width: 23.0769230769vw;
    margin-right: 0;
  }
}

.header-link {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  text-decoration-line: underline;
  margin-right: 26px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-link {
    font-size: 0.9375vw;
    margin-right: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .header-link {
    display: none;
  }
}

.header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  background: #1E1F25;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 1;
  border-radius: 4px;
  width: 200px;
  height: 38px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-btn {
    font-size: 1.25vw;
    width: 15.625vw;
    height: 2.96875vw;
  }
}
@media (max-width: 767px) {
  .header-btn {
    font-size: 3.5897435897vw;
    width: 39.2307692308vw;
    height: 10vw;
  }
}
.header-btn--darkbrawn {
  background-color: #503A27;
}

/*
 * サイト共通部品 @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;
  }
}

.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;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff;
}

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;
  }
}

section {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  section {
    padding: 60px 0;
  }
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: bold;
}
.section-title.text-white {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.header-btn--register {
  width: 180px;
  height: 38px;
  background: linear-gradient(90deg, #004198 0%, #0051bd 100%);
  border-radius: 0;
  border: none;
  color: #ffd502 !important;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0.48px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-btn--register:hover {
  opacity: 0.8;
}

.btn-visual {
  position: relative;
  display: block;
  width: 518px;
  height: 128px;
  margin: 0 auto;
  transition: transform 0.3s, opacity 0.3s;
}
.btn-visual:hover {
  opacity: 0.9;
  transform: translateY(2px);
}
.btn-visual .btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.btn-visual .btn-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: auto;
}
.btn-visual .btn-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
  z-index: 2;
  width: auto;
}
@media screen and (max-width: 767px) {
  .btn-visual {
    transform: scale(0.7);
    transform-origin: center top;
    margin-bottom: -40px;
  }
}

.mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .mv {
    width: 100%;
    aspect-ratio: 1920/620;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    width: 100%;
    height: auto;
  }
}
.mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .mv::after {
    background: linear-gradient(to bottom, rgba(10, 1, 38, 0) 70%, #0a0126 100%);
  }
}
.mv .mv-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.mv .mv-slider .slick-list,
.mv .mv-slider .slick-track {
  height: 100%;
}
.mv .mv-slider .mv-slide-item {
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: var(--bg-pc);
}
@media screen and (min-width: 768px) {
  .mv .mv-slider .mv-slide-item {
    background-size: 100% auto;
  }
}
@media screen and (max-width: 767px) {
  .mv .mv-slider .mv-slide-item {
    background-image: var(--bg-sp);
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}
.mv .mv-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .mv .mv-content {
    position: relative;
    height: auto;
    padding-bottom: 12px;
    padding-top: 14.667vw;
  }
}
.mv .mv-content .mv-content-inner {
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv .mv-content {
    padding-top: 4.708vw;
  }
  .mv .mv-content .mv-logo {
    margin: 0 auto;
    line-height: 1;
  }
  .mv .mv-content .mv-logo img {
    width: 22vw;
    height: auto;
  }
  .mv .mv-content .mv-copy-main {
    margin-top: 3.875vw;
    align-self: stretch;
    color: #fff;
    text-align: center;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.8);
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 1.757vw;
    font-weight: 700;
    line-height: 100%;
  }
  .mv .mv-content .mv-copy-sub {
    margin-top: 1.042vw;
    align-self: stretch;
    color: #fff;
    text-align: center;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.8);
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 2.754vw;
    font-weight: 700;
    line-height: 100%;
  }
  .mv .mv-content .mv-cta {
    position: absolute;
    bottom: calc(8% + 0.5vw);
    left: 0;
    width: 100%;
    z-index: 10;
  }
  .mv .mv-content .mv-cta .btn-visual {
    width: 518px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 518/128;
    margin-bottom: 0;
    transform: none;
    transition: transform 0.3s, opacity 0.3s;
  }
  .mv .mv-content .mv-cta .btn-visual.is-sp {
    display: none;
  }
  .mv .mv-content .mv-cta .btn-visual.is-pc {
    display: block;
  }
  .mv .mv-content .mv-cta .btn-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .mv .mv-content .mv-cta .btn-visual:hover {
    transform: translateY(2px);
    opacity: 0.9;
  }
  .mv .mv-content .mv-copyright {
    position: absolute;
    bottom: 1.042vw;
    right: 1.042vw;
    display: flex;
    align-items: center;
    gap: 0.26vw;
  }
  .mv .mv-content .mv-copyright .copy-mark {
    color: #fff;
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 1.146vw;
    font-weight: 400;
    line-height: 0.8;
  }
  .mv .mv-content .mv-copyright .copy-text {
    color: #fff;
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 0.781vw;
    font-weight: 400;
    line-height: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .mv .mv-content .mv-logo {
    margin: 0 auto;
  }
  .mv .mv-content .mv-logo img {
    width: 48.122vw;
    height: auto;
  }
  .mv .mv-content .mv-copy-main {
    margin-top: 5.333vw;
    align-self: stretch;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1.5px 5px rgba(0, 0, 0, 0.8);
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 4.267vw;
    font-weight: 700;
    line-height: 1.4;
    padding: 0;
  }
  .mv .mv-content .mv-copy-sub {
    margin-top: 1.6vw;
    align-self: stretch;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1.5px 5px rgba(0, 0, 0, 0.8);
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 6.667vw;
    font-weight: 700;
    line-height: 1.4;
    padding: 0;
  }
  .mv .mv-content .mv-cta {
    position: relative;
    margin-top: 3.4vw;
    width: 100%;
  }
  .mv .mv-content .mv-cta .btn-visual {
    width: 82vw;
    height: auto;
    aspect-ratio: 518/128;
    transform: none;
    margin: 0 auto;
  }
  .mv .mv-content .mv-cta .btn-visual.is-pc {
    display: none;
  }
  .mv .mv-content .mv-cta .btn-visual .btn-bg {
    width: 100%;
    height: 100%;
  }
  .mv .mv-content .mv-cta .btn-visual .btn-text {
    width: 40%;
    height: auto;
  }
  .mv .mv-content .mv-cta .btn-visual .btn-arrow {
    width: 4%;
    height: auto;
    right: 11.5%;
  }
  .mv .mv-content .mv-cta .btn-visual.is-sp {
    display: block;
    width: 75vw;
    margin: 0 auto;
    height: auto;
    transform: none;
  }
  .mv .mv-content .mv-cta .btn-visual.is-sp img {
    display: block;
    width: 100%;
    height: auto;
  }
  .mv .mv-content .mv-copyright {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 9.333vw;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5vw;
    padding-right: 4.267vw;
  }
  .mv .mv-content .mv-copyright .copy-mark {
    color: #fff;
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    text-align: center;
    font-size: 4.533vw;
    font-weight: 400;
    line-height: 0.8;
    transform: translateY(1px);
  }
  .mv .mv-content .mv-copyright .copy-text {
    color: #fff;
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    text-align: center;
    font-size: 2.667vw;
    font-weight: 400;
    line-height: 0.8;
  }
}

.intro {
  width: 100%;
  background: linear-gradient(180deg, #0a0126 0%, #000 100%);
  padding: 56px 0;
  color: #fff;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .intro {
    padding: 43px 0;
  }
}
.intro .intro-inner {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .intro .intro-inner {
    padding: 0 20px;
  }
}
.intro .intro-head {
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .intro .intro-head {
    line-height: 1;
  }
}
.intro .intro-head .text-sm {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .intro .intro-head .text-sm {
    font-size: 14px;
    line-height: 1.2;
  }
}
.intro .intro-head .text-lg {
  font-size: 26px;
  display: inline-block;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .intro .intro-head .text-lg {
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
.intro .intro-line {
  margin-top: 28px;
  width: 100%;
  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%, #370587 100%);
}
@media screen and (max-width: 767px) {
  .intro .intro-line {
    margin-top: 24px !important;
  }
}
.intro .intro-text {
  margin-top: 40px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .intro .intro-text {
    margin-top: 24px;
    width: 335px;
    color: #fff;
    font-family: "Hiragino Kaku Gothic W3 JIS2004", "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    text-align: justify;
  }
  .intro .intro-text:nth-of-type(2) {
    margin-top: 21px;
  }
}
.intro .intro-image {
  margin-top: 30px;
  width: 498px;
  height: 280px;
}
.intro .intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .intro .intro-image {
    width: 100%;
    height: auto;
    aspect-ratio: 249/140;
    margin-top: 21px !important;
  }
}
.intro .intro-cta {
  margin-top: 16px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .intro .intro-cta {
    margin-top: 3px;
  }
}
.intro .intro-cta .btn-visual.is-sp {
  display: none;
}
.intro .intro-cta .btn-visual.is-pc {
  display: block;
}
.intro .intro-cta .btn-visual.is-pc img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .intro .intro-cta .btn-visual.is-pc {
    display: none;
  }
  .intro .intro-cta .btn-visual.is-sp {
    display: block;
    width: 75vw;
    height: auto;
    margin: 0 auto;
    transform: none;
    margin-bottom: 0;
  }
  .intro .intro-cta .btn-visual.is-sp img {
    display: block;
    width: 100%;
    height: 100%;
  }
}

.job-list {
  width: 100%;
  padding: 0;
  background: url("../img/job-examples_bg.webp") no-repeat center top/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .job-list {
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .job-list {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}
.job-list .content-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.job-list .section-title-area {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .job-list .section-title-area {
    margin-bottom: 30px !important;
  }
}
.job-list .section-title-area .title-jp {
  position: relative;
  z-index: 2;
  align-self: stretch;
  text-align: center;
  margin: 0;
  background: var(--ST6_LP-ST6_text_silver, linear-gradient(180deg, #feffff 12.5%, #a9b1c7 49.64%, #cccdd4 87.5%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media screen and (min-width: 768px) {
  .job-list .section-title-area .title-jp {
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .job-list .section-title-area .title-jp {
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
}
.job-list .job-slider {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .job-list .job-slider {
    overflow: visible;
  }
  .job-list .job-slider .job-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    grid-auto-rows: 1fr;
  }
  .job-list .job-slider .swiper-slide {
    width: auto !important;
    height: auto !important;
    height: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .job-list .job-slider {
    padding-bottom: 0;
    position: relative;
  }
  .job-list .job-slider .job-grid-wrapper {
    display: flex;
    gap: 0;
  }
  .job-list .job-slider .swiper-slide.job-item {
    width: 65vw;
    flex-shrink: 0;
  }
  .job-list .job-slider .job-nav-area {
    margin-top: 20px;
    width: 100%;
    padding: 0 48px;
    box-sizing: border-box;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
    gap: 10px;
  }
  .job-list .job-slider .job-nav-area .job-scrollbar {
    flex: none;
    width: 160px;
    height: 4px;
    background: #501772;
    border-radius: 4px;
    margin: 0 auto;
    opacity: 1 !important;
    position: relative;
  }
  .job-list .job-slider .job-nav-area .job-scrollbar .swiper-scrollbar-drag {
    background: #ca6eff;
    height: 100%;
    border-radius: 4px;
    position: relative;
  }
  .job-list .job-slider .job-nav-area .job-nav-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    cursor: pointer;
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
    display: block;
  }
  .job-list .job-slider .job-nav-area .job-nav-btn img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.job-list .job-item {
  width: 100%;
}
.job-list .job-item .job-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  aspect-ratio: 230/262;
  border: 1.5px solid #f8afff;
  background: linear-gradient(180deg, #88109b 0%, #390688 100%);
  box-sizing: border-box;
  border-radius: 0px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .job-list .job-item .job-card:hover {
    transform: translateY(-5px);
    opacity: 1;
    z-index: 2;
    box-shadow: 0 0 24px 0 #eb14ff;
  }
  .job-list .job-item .job-card:hover::after {
    opacity: 0.4;
  }
}
@media screen and (max-width: 767px) {
  .job-list .job-item .job-card:active {
    transform: none;
    background: #c52bc9;
    box-shadow: 0 0 24px 0 #eb14ff;
  }
}
.job-list .job-item .job-card > div {
  width: 100%;
  flex-shrink: 0;
  flex-grow: 0;
}
.job-list .job-item .job-card .card-header {
  position: relative;
  height: 18.3%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.job-list .job-item .job-card .card-header .header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.job-list .job-item .job-card .card-header .header-text {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .job-list .job-item .job-card .card-header .header-text {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
  }
}
.job-list .job-item .job-card .card-image {
  height: 27.5%;
  background: #ccc;
}
.job-list .job-item .job-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.job-list .job-item .job-card .card-desc {
  height: 34.4%;
  background: linear-gradient(90deg, #201b5f 0%, #5921a6 100%);
  padding: 0 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.job-list .job-item .job-card .card-desc .desc-text {
  color: #fff;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .job-list .job-item .job-card .card-desc .desc-text {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
  }
}
.job-list .job-item .job-card .card-footer {
  height: 19.8%;
  background: linear-gradient(90deg, #dfc7ef 0%, #f1ddff 100%);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.job-list .job-item .job-card .card-footer .footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0;
}
.job-list .job-item .job-card .card-footer .footer-row > div {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .job-list .job-item .job-card .card-footer .footer-row > div {
    flex-shrink: 0;
  }
}
.job-list .job-item .job-card .card-footer .footer-icon-box {
  position: relative;
  width: 21%;
  aspect-ratio: 49/26;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .job-list .job-item .job-card .card-footer .footer-icon-box {
    width: 50px;
    height: 34px;
    min-width: 50px;
    flex: 0 0 50px;
    aspect-ratio: auto;
    margin-left: 0;
    margin-right: 4px;
  }
}
.job-list .job-item .job-card .card-footer .footer-icon-box .icon-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.job-list .job-item .job-card .card-footer .footer-icon-box .icon-chars {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0px;
  align-items: center;
  justify-content: center;
}
.job-list .job-item .job-card .card-footer .footer-icon-box .icon-chars img {
  height: 35%;
  width: auto;
}
@media screen and (max-width: 767px) {
  .job-list .job-item .job-card .card-footer .footer-icon-box .icon-chars img {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .job-list .job-item .job-card .card-footer .footer-icon-box .icon-chars img:nth-child(1) {
    width: 17px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .job-list .job-item .job-card .card-footer .footer-icon-box .icon-chars img:nth-child(2) {
    width: 18px;
    height: auto;
  }
}
.job-list .job-item .job-card .card-footer .footer-chevrons {
  display: flex;
  gap: 0;
  height: 50%;
  margin-left: -1.5%;
}
@media screen and (max-width: 767px) {
  .job-list .job-item .job-card .card-footer .footer-chevrons {
    height: 30px;
    margin-left: -10px;
    align-items: center;
  }
}
.job-list .job-item .job-card .card-footer .footer-chevrons img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 767px) {
  .job-list .job-item .job-card .card-footer .footer-chevrons img {
    width: 14px;
    height: 27px;
  }
}
.job-list .job-item .job-card .card-footer .footer-chevrons img:nth-child(2) {
  margin-left: -15%;
}
@media screen and (max-width: 767px) {
  .job-list .job-item .job-card .card-footer .footer-chevrons img:nth-child(2) {
    margin-left: -7px;
  }
}
.job-list .job-item .job-card .card-footer .footer-salary {
  display: flex;
  align-items: center;
  margin-left: 1%;
  margin-left: -3px;
  gap: 0px;
  color: #5b0096;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .job-list .job-item .job-card .card-footer .footer-salary {
    margin-left: 2px;
    align-items: baseline;
  }
}
.job-list .job-item .job-card .card-footer .footer-salary .tilde {
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1.3vw, 18px);
  font-weight: 800;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 767px) {
  .job-list .job-item .job-card .card-footer .footer-salary .tilde {
    font-size: 22px;
    text-align: center;
    line-height: 100%;
    top: -8px;
  }
}
.job-list .job-item .job-card .card-footer .footer-salary .num {
  font-family: "din-2014-narrow", sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
  position: relative;
  top: -0.5px;
  line-height: 100%;
}
.job-list .job-item .job-card .card-footer .footer-salary .num.is-narrow {
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .job-list .job-item .job-card .card-footer .footer-salary .num {
    font-size: 45px;
    text-align: center;
  }
  .job-list .job-item .job-card .card-footer .footer-salary .num.is-narrow {
    letter-spacing: -0.02em;
  }
}
.job-list .job-item .job-card .card-footer .footer-salary .unit {
  font-family: "din-2014-narrow", sans-serif;
  font-size: clamp(12px, 1.3vw, 18px);
  font-weight: 800;
  position: relative;
  top: 3px;
  margin-left: 0px;
}
@media screen and (max-width: 767px) {
  .job-list .job-item .job-card .card-footer .footer-salary .unit {
    font-size: 22px;
    text-align: center;
    line-height: 100%;
    top: -2px;
  }
}
.job-list .job-item:nth-child(8) .card-header .header-text {
  font-size: 16px !important;
}
@media screen and (max-width: 767px) {
  .job-list .job-item:nth-child(8) .card-header .header-text {
    font-size: 18px !important;
  }
}
.job-list .job-action-area {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .job-list .job-action-area {
    margin-top: 20px !important;
  }
}
.job-list .job-action-area .btn-visual.is-sp {
  display: none;
}
.job-list .job-action-area .btn-visual.is-pc {
  display: block;
}
.job-list .job-action-area .btn-visual.is-pc img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .job-list .job-action-area .btn-visual.is-pc {
    display: none;
  }
  .job-list .job-action-area .btn-visual.is-sp {
    display: block;
    width: 75vw;
    flex-shrink: 0;
    height: auto;
    aspect-ratio: auto;
    transform: none;
    margin: 0 auto;
  }
  .job-list .job-action-area .btn-visual.is-sp img {
    display: block;
    width: 100%;
    height: auto;
  }
}
.job-list .job-action-area .job-note {
  margin-top: -10px;
  width: 249px;
  color: #c8b2d6;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .job-list .job-action-area .job-note {
    margin-top: -5px !important;
    font-size: 10px;
    width: 75vw;
    margin-left: auto;
    margin-right: auto;
  }
}

.support {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%), url("../img/image210.webp") 0px -0.129px/100% 100.017% no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #feffff;
}
@media screen and (min-width: 768px) {
  .support {
    height: auto;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 180px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .support {
    width: 100%;
    height: auto;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%), url("../img/image210.webp") no-repeat;
    background-position: -1779.081px -0.14px;
    background-size: 718.688% 100.017%;
    padding-bottom: 100px;
    position: relative;
  }
}
.support .support-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.support .support-inner .char-image-area {
  position: absolute;
  z-index: 5;
  width: 550px;
  height: auto;
  aspect-ratio: 15/16;
}
@media screen and (min-width: 768px) {
  .support .support-inner .char-image-area {
    top: 754px;
    left: 50%;
    margin-left: 130px;
  }
}
.support .support-inner .char-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .support .support-inner .char-image-area {
    display: block;
    width: 297px;
    height: 484px;
    aspect-ratio: 27/44;
    z-index: 5;
    position: absolute;
    top: auto;
    bottom: -80px;
    right: -80px;
  }
  .support .support-inner .char-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
}
.support .support-lead-top {
  align-self: stretch;
  text-align: center;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  color: #feffff;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .support .support-lead-top {
    text-shadow: 0 2px 14px rgba(185, 0, 255, 0.8);
  }
}
@media screen and (max-width: 767px) {
  .support .support-lead-top {
    color: #feffff;
    text-align: center;
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 8px;
    text-shadow: 0 2px 14px rgba(185, 0, 255, 0.8);
  }
}
.support .support-main-title {
  align-self: stretch;
  text-align: center;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  color: #feffff;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .support .support-main-title {
    text-shadow: 0 2px 14px rgba(185, 0, 255, 0.8);
  }
}
@media screen and (max-width: 767px) {
  .support .support-main-title {
    color: #feffff;
    text-align: center;
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-shadow: 0 2px 14px rgba(185, 0, 255, 0.8);
  }
}
.support .support-main-title .text-sm {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .support .support-main-title .text-sm {
    color: #feffff;
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
  }
}
.support .support-line {
  margin-top: 40px;
  width: 920px;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .support .support-line {
    margin-top: 16px;
    width: 335px;
    height: 20px;
  }
}
.support .support-line img {
  width: 100%;
  height: 100%;
}
.support .support-merit-head {
  margin-top: 54px;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 100%;
  background: linear-gradient(180deg, #feffff 12.5%, #a9b1c7 49.64%, #cccdd4 87.5%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .support .support-merit-head {
    filter: drop-shadow(0 2px 4px #000);
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  .support .support-merit-head {
    margin-top: 36px;
    text-align: center;
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    filter: drop-shadow(0 2px 4px #000);
  }
}
.support .support-desc {
  margin-top: 24px;
  text-align: center;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .support .support-desc {
    filter: drop-shadow(0 2px 4px #000);
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  .support .support-desc {
    margin-top: 16px;
    text-align: center;
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    filter: drop-shadow(0 2px 4px #000);
  }
}
.support .support-desc .highlight {
  color: #e6a3ff;
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .support .support-desc .highlight {
    color: #e6a3ff;
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
  }
}
.support .support-merit-boxes {
  margin-top: 40px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .support .support-merit-boxes {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
  }
  .support .support-merit-boxes::before {
    content: "";
    position: absolute;
    width: 1920px;
    height: 551px;
    background: url("../img/merit-back-line.webp") no-repeat center;
    background-size: contain;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .support .support-merit-boxes {
    margin-top: 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .support .merit-box + .merit-box {
    margin-left: -40px;
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .support .merit-box {
    margin-bottom: -50px;
    transform: scale(0.9);
    transform-origin: center top;
  }
}
.support .merit-box-1 {
  position: relative;
  width: 380px;
  height: 320px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='380' height='320' viewBox='0 0 380 320' fill='none'%3E%3Cg filter='url(%23filter0_d_68_26116)'%3E%3Cpath d='M50 26H350L330 286H30L50 26Z' fill='url(%23paint0_linear_68_26116)'/%3E%3Cpath d='M349.461 26.5L329.537 285.5H30.5391L50.4629 26.5H349.461Z' stroke='%23802DA5'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_68_26116' x='0' y='0' width='380' height='320' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='4'/%3E%3CfeGaussianBlur stdDeviation='15'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_68_26116'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_68_26116' result='shape'/%3E%3C/filter%3E%3ClinearGradient id='paint0_linear_68_26116' x1='180' y1='26' x2='180' y2='286' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23625A66'/%3E%3Cstop offset='1' stop-color='%23111111'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.support .merit-box-1 .merit-title {
  position: absolute;
  top: 44px;
  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;
}
.support .merit-box-1 .merit-title .lg {
  font-size: 20px;
}
.support .merit-box-1 .merit-line {
  position: absolute;
  top: 108px;
  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%);
}
.support .merit-box-1 .merit-content {
  position: absolute;
  top: 109px;
  width: 100%;
  padding-top: 19px;
  display: flex;
  justify-content: center;
}
.support .merit-box-1 .merit-content .merit-number {
  line-height: 0.8;
  letter-spacing: -2px;
  display: flex;
  align-items: baseline;
  position: relative;
  width: auto;
}
.support .merit-box-1 .merit-content .merit-number .num {
  color: #e6a3ff;
  font-family: "din-2014-narrow", sans-serif;
  font-size: 100px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.support .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: 5px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .support .merit-box-1 .merit-content .merit-number .unit {
    font-size: 55px;
    margin-left: -2px;
    top: -5px;
  }
}
.support .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) {
  .support .merit-box-1 .merit-content .merit-number .unit-text {
    top: -5px;
    margin-left: 0px;
  }
}
.support .merit-box-1 .merit-content .merit-number .merit-arrow-bg {
  position: absolute;
  z-index: 1;
  width: 94px;
  height: 101px;
  transform: none;
  right: -25px;
  bottom: -15px;
  pointer-events: none;
}
.support .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: right;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
}
.support .merit-box-1 .merit-bottom-banner {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 226px;
  height: 40px;
  background: linear-gradient(90deg, #efdafd 0%, #e7b8ff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #5b0096;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.support .merit-box-1 .merit-bottom-banner .divider-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
}
.support .merit-box-1 .merit-bottom-banner svg {
  flex-shrink: 0;
}
.support .merit-box-2 {
  position: relative;
  width: 380px;
  height: 320px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='380' height='320' viewBox='0 0 380 320' fill='none'%3E%3Cg filter='url(%23filter0_d_68_26134)'%3E%3Cpath d='M50 26H350L330 286H30L50 26Z' fill='url(%23paint0_linear_68_26134)'/%3E%3Cpath d='M349.461 26.5L329.537 285.5H30.5391L50.4629 26.5H349.461Z' stroke='%23802DA5'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_68_26134' x='0' y='0' width='380' height='320' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='4'/%3E%3CfeGaussianBlur stdDeviation='15'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_68_26134'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_68_26134' result='shape'/%3E%3C/filter%3E%3ClinearGradient id='paint0_linear_68_26134' x1='180' y1='26' x2='180' y2='286' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23625A66'/%3E%3Cstop offset='1' stop-color='%23111111'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.support .merit-box-2 .merit-title {
  position: absolute;
  top: 44px;
  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;
}
.support .merit-box-2 .merit-title .lg {
  font-size: 20px;
}
.support .merit-box-2 .merit-line {
  position: absolute;
  top: 108px;
  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%);
}
.support .merit-box-2 .merit-content-list {
  position: absolute;
  top: 134px;
  width: fit-content;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.support .merit-box-2 .merit-content-list .list-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.support .merit-box-2 .merit-content-list .list-item-group {
  display: flex;
  align-items: center;
}
.support .merit-box-2 .merit-content-list .list-icon {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  flex-shrink: 0;
}
.support .merit-box-2 .merit-content-list .list-text {
  color: #e6a3ff;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.support .merit-box-2 .merit-content-list .list-text .sm {
  font-size: 13px;
}
.support .merit-box-2 .merit-content-list .spacer-16 {
  width: 16px;
}
.support .merit-box-2 .merit-bottom-banner {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 176px;
  height: 40px;
  background: linear-gradient(90deg, #efdafd 0%, #e7b8ff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #5b0096;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.support .merit-box-2 .merit-bottom-banner .divider-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
}
.support .merit-box-3 {
  position: relative;
  width: 380px;
  height: 320px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='380' height='320' viewBox='0 0 380 320' fill='none'%3E%3Cg filter='url(%23filter0_d_68_26159)'%3E%3Cpath d='M50 26H350L330 286H30L50 26Z' fill='url(%23paint0_linear_68_26159)'/%3E%3Cpath d='M349.461 26.5L329.537 285.5H30.5391L50.4629 26.5H349.461Z' stroke='%23802DA5'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_68_26159' x='0' y='0' width='380' height='320' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='4'/%3E%3CfeGaussianBlur stdDeviation='15'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_68_26159'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_68_26159' result='shape'/%3E%3C/filter%3E%3ClinearGradient id='paint0_linear_68_26159' x1='180' y1='26' x2='180' y2='286' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23625A66'/%3E%3Cstop offset='1' stop-color='%23111111'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.support .merit-box-3 .merit-title {
  position: absolute;
  top: 44px;
  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;
}
.support .merit-box-3 .merit-title .lg {
  font-size: 20px;
}
.support .merit-box-3 .merit-line {
  position: absolute;
  top: 108px;
  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%);
}
.support .merit-box-3 .merit-content-3 {
  position: absolute;
  top: 109px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.support .merit-box-3 .merit-content-3 .desc-text {
  margin-top: 17px;
  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;
}
.support .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;
}
.support .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;
}
.support .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;
}
.support .merit-box-3 .merit-content-3 .point-banner .point-text .lg {
  font-size: 12px;
  letter-spacing: 0.72px;
}
.support .merit-box-3 .merit-bottom-banner {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 226px;
  height: 40px;
  background: linear-gradient(90deg, #efdafd 0%, #e7b8ff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #5b0096;
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.support .merit-box-3 .merit-bottom-banner .divider-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
}
.support .support-arrow-down {
  margin-top: 3px;
  margin-left: auto;
  margin-right: auto;
  width: 170px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .support .support-arrow-down {
    margin-top: 10px;
    width: 130px;
    height: auto;
    position: relative;
    z-index: 5;
  }
}
.support .support-arrow-down img {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.support .support-form-box {
  margin-top: 15px;
  width: 980px;
  height: 371px;
  background: var(--ST6_form, linear-gradient(270deg, #cb2ccc 0%, #370587 100%));
  box-shadow: 0 14px 30px 0 rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .support .support-form-box {
    margin-top: 5px;
    width: 335px;
    height: 296px;
    padding: 0;
  }
}
.support .support-form-box .form-deco-area,
.support .support-form-box .form-title,
.support .support-form-box .form-subtitle,
.support .support-form-box .form-btn-group {
  position: relative;
  z-index: 9;
}
.support .support-form-box .form-deco-area {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .support .support-form-box .form-deco-area {
    margin-top: 15px;
    z-index: 4;
    position: relative;
  }
}
.support .support-form-box .form-deco-area .deco-line {
  width: 200px;
  height: 2px;
  opacity: 0.7;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 50%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 767px) {
  .support .support-form-box .form-deco-area .deco-line {
    display: none;
  }
}
.support .support-form-box .form-deco-area .label-text {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .support .support-form-box .form-deco-area .label-text {
    width: 160px;
    height: auto;
    padding-top: 0;
    background: none;
  }
}
.support .support-form-box .form-deco-area .label-text .label-svg-img {
  display: block;
  width: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .support .support-form-box .form-deco-area .label-text .label-svg-img {
    width: 100%;
    height: auto;
  }
}
.support .support-form-box .form-deco-area .label-text .is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .support .support-form-box .form-deco-area .label-text .is-pc {
    display: none;
  }
}
.support .support-form-box .form-deco-area .label-text .is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .support .support-form-box .form-deco-area .label-text .is-sp {
    display: block;
  }
}
.support .support-form-box .form-title {
  margin-top: 24px;
  align-self: stretch;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(48, 9, 93, 0.6);
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .support .support-form-box .form-title {
    margin-top: 15.5px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(48, 9, 93, 0.6);
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
}
.support .support-form-box .form-subtitle {
  margin-top: 24px;
  align-self: stretch;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(48, 9, 93, 0.6);
  font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .support .support-form-box .form-subtitle {
    margin-top: 16px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(48, 9, 93, 0.6);
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
}
.support .support-form-box .form-btn-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .support .support-form-box .form-btn-group {
    flex-direction: column;
    align-items: center;
    margin-top: 14px;
    width: 100%;
    z-index: 10;
  }
}
.support .support-form-box .form-btn-group .form-btn {
  width: 320px;
  height: 72px;
  margin: 0;
  overflow: visible;
  transition: transform 0.3s, opacity 0.3s;
}
.support .support-form-box .form-btn-group .form-btn:hover {
  transform: translateY(2px);
  opacity: 0.8;
}
.support .support-form-box .form-btn-group .form-btn img {
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1.65);
  transform-origin: center center;
}
@media screen and (max-width: 767px) {
  .support .support-form-box .form-btn-group .form-btn {
    width: 80vw;
    max-width: none;
    height: auto;
    aspect-ratio: 518/128;
    transform: none;
    margin: 0;
  }
  .support .support-form-box .form-btn-group .form-btn img {
    display: block;
    width: 100%;
    height: auto;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .support .support-form-box .form-btn-group .form-btn + .form-btn {
    margin-top: -45px;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.section-divider {
  width: 100%;
  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%, #370587 100%);
  box-shadow: 0 0 34px 0 #f8b4ff;
  position: relative;
  z-index: 1;
}/*# sourceMappingURL=index.css.map */