@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
/* fonts */
/*
min-font-size ($font_size, $min_font_size)

$font_size (vw):     可変フォントサイズ
$min_font_size (px): 最小フォントサイズ
*/
/*
max-font-size ($font_size, $max_font_size)

$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/*
@mixin clamp-font-size ($min_font_size, $font_size, $max_font_size)

$min_font_size (px): 最小フォントサイズ
$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* #Typography
----------------------------------------------------------------- */
body,
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7320644217vw;
}
@media screen and (min-width: 1366px) {
  body,
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 900px ) {
  body,
  html {
    font-size: 2.6666666667vw;
  }
}

b,
strong,
.bold {
  font-weight: 700;
}

/* #base
----------------------------------------------------------------- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body * {
  box-sizing: border-box;
}

svg {
  width: 100%;
  height: auto;
}

img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

a {
  display: block;
}

ul li {
  list-style: none;
}

/* #wrapper
----------------------------------------------------------------- */
.l-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  backface-visibility: hidden;
}
/* #Container
----------------------------------------------------------------- */
.container {
  max-width: 1050px;
  width: 100rem;
  margin-left: auto;
  margin-right: auto;
}

.mv-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* #l-header
----------------------------------------------------------------- */
.l-header {
  width: 100dvw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateY(0%);
  transition: transform 0.3s ease-in-out;
}
.l-header.is-hide {
  transform: translateY(-100%);
}
.l-header__inner {
  width: 136.6rem;
  margin-left: auto;
  margin-right: auto;
  height: 10.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 3.6rem;
}
@media screen and (max-width: 900px ) {
  .l-header__inner {
    width: 37.5rem;
  }
}
@media screen and (max-width: 900px ) {
  .l-header__inner {
    height: 5.8rem;
    padding-inline: 1.6rem;
  }
}
.l-header__logo {
  display: block;
  width: 15.2rem;
  height: auto;
}
@media screen and (max-width: 900px ) {
  .l-header__logo {
    width: 7.3rem;
  }
}
.l-header__button {
  width: 28.7rem;
  height: 5.7rem;
  display: grid;
  place-content: center;
  border-radius: 1.2rem;
  border: 2px solid #1e46aa;
  color: #1e46aa;
  background: transparent;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
  transition: all 0.3s;
}
.l-header__button:hover {
  background: #1e46aa;
  color: #ffffff;
}
@media screen and (max-width: 900px ) {
  .l-header__button {
    width: 13rem;
    height: 2.2rem;
    border-radius: 0.5rem;
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
  }
}

/* #l-main
----------------------------------------------------------------- */
.l-main {
  width: 100dvw;
}
.l-main__bg {
  width: 100%;
  background: #c4dfff;
}
/* #l-footer
----------------------------------------------------------------- */
.l-footer {
  width: 100dvw;
}
.l-footer__inner {
  padding-block: 6.5rem;
}
@media screen and (max-width: 900px ) {
  .l-footer__inner {
    padding-block: 2.5rem;
  }
}
.l-footer__logo {
  display: block;
  width: 19.4rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 900px ) {
  .l-footer__logo {
    width: 9.5rem;
  }
}
.l-footer__text {
  text-align: center;
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.3043478261;
  letter-spacing: 0em;
  font-weight: 600;
  margin-top: 1.5rem;
  color: #143278;
}
@media screen and (max-width: 900px ) {
  .l-footer__text {
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 1.3333333333;
    letter-spacing: 0em;
    font-weight: 600;
    margin-top: 1rem;
  }
}
.l-footer__text a {
  display: inline-block;
}
.l-footer__list {
  margin-top: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
@media screen and (max-width: 900px ) {
  .l-footer__list {
    margin-top: 1.7rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.l-footer__item a {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.4782608696;
  letter-spacing: 0em;
  font-weight: 500;
  color: #143278;
  opacity: 1;
  transition: all 0.3s;
}
.l-footer__item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 900px ) {
  .l-footer__item a {
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 1.4444444444;
    letter-spacing: 0em;
    font-weight: 500;
  }
}
.l-footer__copy {
  text-align: center;
  margin-top: 4.4rem;
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.2608695652;
  letter-spacing: 0em;
  font-weight: 600;
  color: #143278;
}
@media screen and (max-width: 900px ) {
  .l-footer__copy {
    margin-top: 1.5rem;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.2307692308;
    letter-spacing: 0em;
    font-weight: 600;
  }
}

/* #c-gotop
----------------------------------------------------------------- */
.c-gotop {
  display: none;
  width: 5rem;
  height: 5rem;
  position: fixed;
  right: 4rem;
  bottom: 17.6rem;
  transition: transform 0.3s;
  transform: translateY(0);
  box-shadow: 0 0.35rem 1rem 0 rgba(20, 50, 120, 0.3);
  border-radius: 100%;
  z-index: 200;
}
@media screen and (max-width: 900px ) {
  .c-gotop {
    right: 2rem;
    bottom: 10rem;
  }
}
.c-gotop:hover {
  transform: translateY(-1rem);
}

/* #c-soon
----------------------------------------------------------------- */
.c-soon {
  margin-inline: auto;
  margin-top: 6rem;
  width: 23.8rem;
}
@media screen and (max-width: 900px ) {
  .c-soon {
    margin-top: 4rem;
    width: 18.5rem;
  }
}

/* #c-hover
----------------------------------------------------------------- */
.c-hoverZoom {
  transform-origin: center;
  transform: scale(1);
  transition: transform 0.9s cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.c-hoverZoom:hover {
  transform: scale(1.05);
}

/* #c-buttons
----------------------------------------------------------------- */
.c-buttons p {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6428571429;
  letter-spacing: 0em;
  font-weight: 400;
}
.c-buttons__button {
  width: 26.4rem;
  height: 5.7rem;
  border-radius: 100vmax;
  margin-top: 0.8rem;
  margin-inline: auto;
  display: grid;
  place-content: center;
  color: #ffffff;
  background: #464343;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.1428571429;
  letter-spacing: 0em;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.3s;
}
.c-buttons__button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 900px ) {
  .c-buttons__button {
    width: 25rem;
    height: 4.7rem;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2.25;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.c-buttons__button:last-child {
  background: #f07882;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  letter-spacing: 0em;
  font-weight: 700;
  margin-top: 1.2rem;
}
@media screen and (max-width: 900px ) {
  .c-buttons__button:last-child {
    margin-top: 1rem;
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 1.4210526316;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.c-buttons__button--inactive {
  pointer-events: none;
}

/* #c-cta
----------------------------------------------------------------- */
.c-cta__button {
  display: grid;
  place-content: center;
  width: 62.1rem;
  height: 8.7rem;
  border-radius: 100vmax;
  background: #ffb91e;
  color: #143278;
  font-size: 39px;
  font-size: 3.9rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
  margin-inline: auto;
  box-shadow: 0.2rem 0.2rem 0.4rem rgba(20, 50, 120, 0.45);
  transition: all 0.3s;
}
.c-cta__button:hover {
  background: #1e46aa;
  color: #ffb91e;
}
@media screen and (max-width: 900px ) {
  .c-cta__button {
    width: 29.6rem;
    height: 4.1rem;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
  }
}
.c-cta__text {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 400;
  color: #143278;
}
@media screen and (max-width: 900px ) {
  .c-cta__text {
    margin-top: 1.2rem;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.3846153846;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
.c-cta__text a {
  font-weight: 900;
  display: inline-block;
  text-decoration: underline;
  opacity: 1;
  transition: all 0.3s;
}
.c-cta__text a:hover {
  opacity: 0.7;
}
.c-title {
  text-align: center;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 700;
  color: #1e46aa;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-bottom: max(7px, 0.7rem) solid #1e46aa;
}
@media screen and (max-width: 900px ) {
  .c-title {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.3571428571;
    letter-spacing: 0em;
    font-weight: 700;
  }
}

/* #js-scrollEffect
----------------------------------------------------------------- */
.js-scrollEffect--fadeInUp,
.js-loadEffect--fadeInUp {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.1s;
}
.js-scrollEffect--fadeInUp.action,
.js-loadEffect--fadeInUp.action {
  opacity: 1 !important;
  transform: translateY(0);
}
.js-scrollEffect--fadeInSlide,
.js-loadEffect--fadeInSlide {
  will-change: opacity, transform;
  opacity: 0;
  transform: translate(-1rem, -1rem);
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.js-scrollEffect--fadeInSlide.action,
.js-loadEffect--fadeInSlide.action {
  opacity: 1 !important;
  transform: translate(0, 0);
}
.js-scrollEffect--fadeIn,
.js-loadEffect--fadeIn {
  will-change: opacity;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.76, 0.05, 0.86, 0.06);
  transition-delay: 0.1s;
}
.js-scrollEffect--fadeIn.action,
.js-loadEffect--fadeIn.action {
  opacity: 1 !important;
}
.js-scrollEffect--slideIn,
.js-loadEffect--slideIn {
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  transition: clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.js-scrollEffect--slideIn.action,
.js-loadEffect--slideIn.action {
  clip-path: inset(0 0 0 0);
}
.js-scrollEffect--slideIn2,
.js-loadEffect--slideIn2 {
  clip-path: polygon(0 0, 0 0%, 0% 0);
  will-change: clip-path;
  transition: clip-path 1.1s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.js-scrollEffect--slideIn2.action,
.js-loadEffect--slideIn2.action {
  clip-path: polygon(0 0, 0 200%, 200% 0);
}
.js-scrollEffect--bounceInDown,
.js-loadEffect--bounceInDown {
  opacity: 0;
  transform: translate3d(0, -6rem, 0) scaleY(1.2);
}
.js-scrollEffect--bounceInDown.action,
.js-loadEffect--bounceInDown.action {
  animation: bounceInDown 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -6rem, 0) scaleY(1.2);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 1rem, 0) scaleY(0.9);
  }
  75% {
    opacity: 1;
    transform: translate3d(0, -1rem, 0) scaleY(0.95);
  }
  90% {
    opacity: 1;
    transform: translate3d(0, 0.5rem, 0) scaleY(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleY(1);
  }
}
/* #p-mv
----------------------------------------------------------------- */
.p-mv {
  width: 100dvw;
  background: #ffffff;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.p-mv__inner {
  width: 136.6rem;
  margin-left: auto;
  margin-right: auto;
  padding-block: 7.4rem 3.8rem;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 900px ) {
  .p-mv__inner {
    width: 37.5rem;
  }
}
@media screen and (max-width: 900px ) {
  .p-mv__inner {
    padding-block: 7.2rem 2.4rem;
  }
}
.p-mv__inner:before {
  content: "";
  display: block;
  width: 147.7rem;
  height: 62.4rem;
  background: url(../images/mv_bg.png) no-repeat center center/cover;
  position: absolute;
  top: 5.8rem;
  left: -2.4rem;
  z-index: -1;
}
@media screen and (max-width: 900px ) {
  .p-mv__inner:before {
    width: 38.3rem;
    height: 36.6rem;
    top: 6rem;
    left: 0.1rem;
    background: url(../images/mv_bg_sp.png) no-repeat center center/cover;
  }
}
.p-mv__title {
  width: 64rem;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.6rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__title {
    width: 31.4rem;
    row-gap: 1rem;
  }
}
.p-mv__title span {
  text-align: center;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.4210526316;
  letter-spacing: 0em;
  font-weight: 800;
  color: #143278;
}
@media screen and (max-width: 900px ) {
  .p-mv__title span {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4285714286;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.p-mv__subtitle {
  width: 81.9rem;
  height: auto;
  margin-top: 2rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__subtitle {
    width: 31.7rem;
    margin-top: 1.5rem;
  }
}
.p-mv__cta {
  margin-top: 2.4rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__cta {
    margin-top: 1.6rem;
  }
  .p-mv__cta .c-cta__button {
    width: 32.7rem;
    height: 4.6rem;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
  }
}
.p-mv__deco01 {
  width: 18rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 12.8rem;
  left: 14.4rem;
  pointer-events: none;
}
@media screen and (max-width: 900px ) {
  .p-mv__deco01 {
    width: 6.7rem;
    top: 8.7rem;
    left: 2rem;
  }
}
.p-mv__deco02 {
  width: 17.1rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 52.1rem;
  right: 16.9rem;
  pointer-events: none;
  transform: rotate(15deg);
}
@media screen and (max-width: 900px ) {
  .p-mv__deco02 {
    width: 6.8rem;
    top: 22.5rem;
    right: 1.57rem;
  }
}

/* #p-intro
----------------------------------------------------------------- */
.p-intro {
  width: 100dvw;
}
.p-intro__inner {
  width: 136.6rem;
  margin-left: auto;
  margin-right: auto;
  padding-block: 11rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 900px ) {
  .p-intro__inner {
    width: 37.5rem;
  }
}
@media screen and (max-width: 900px ) {
  .p-intro__inner {
    padding-block: 1.8rem 4.5rem;
  }
}
.p-intro__inner:before {
  content: "";
  display: block;
  width: 152rem;
  height: 140.3rem;
  background: url(../images/intro_bg.png) no-repeat center center/cover;
  position: absolute;
  top: -3.6rem;
  left: -8.6rem;
  z-index: -1;
}
@media screen and (max-width: 900px ) {
  .p-intro__inner:before {
    width: 48.6rem;
    height: 111.2rem;
    top: 3rem;
    left: -5.4rem;
    background: url(../images/intro_bg_sp.png) no-repeat center center/cover;
  }
}
.p-intro__content {
  width: 114rem;
  height: auto;
  margin-inline: auto;
  background: #ffffff;
  border-radius: 2.5rem;
  padding-block: 6.5rem 7rem;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-intro__content {
    width: 34.3rem;
    border-radius: 1rem;
    padding-block: 3.2rem 5rem;
  }
}
.p-intro__title {
  text-align: center;
  font-size: 80px;
  font-size: 8rem;
  line-height: 1.225;
  letter-spacing: 0em;
  font-weight: 900;
  color: #1e46aa;
}
@media screen and (max-width: 900px ) {
  .p-intro__title {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: 900;
    color: #143278;
  }
}
.p-intro__image {
  margin-top: 5rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 900px ) {
  .p-intro__image {
    margin-top: 2.1rem;
  }
}
.p-intro__cta {
  margin-top: 6.5rem;
}
@media screen and (max-width: 900px ) {
  .p-intro__cta {
    margin-top: 1.6rem;
  }
}
.p-intro__deco {
  width: 21.4rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 7.1rem;
  bottom: 3.2rem;
  pointer-events: none;
}
@media screen and (max-width: 900px ) {
  .p-intro__deco {
    width: 6.1rem;
    left: 1rem;
    bottom: -6.5rem;
  }
}

/* #p-about
----------------------------------------------------------------- */
.p-about {
  width: 100dvw;
}
.p-about__inner {
  width: 136.6rem;
  margin-left: auto;
  margin-right: auto;
  padding-block: 11rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 900px ) {
  .p-about__inner {
    width: 37.5rem;
  }
}
@media screen and (max-width: 900px ) {
  .p-about__inner {
    padding-block: 4.5rem;
  }
}
.p-about__inner:before {
  content: "";
  display: block;
  width: 151.3rem;
  height: 87.8rem;
  background: url(../images/about_bg.png) no-repeat center center/cover;
  position: absolute;
  top: 8.6rem;
  left: -7.8rem;
  z-index: -1;
}
@media screen and (max-width: 900px ) {
  .p-about__inner:before {
    width: 52.9rem;
    height: 94.7rem;
    top: -2rem;
    left: -9.6rem;
    background: url(../images/about_bg_sp.png) no-repeat center center/cover;
  }
}
.p-about__content {
  width: 114rem;
  height: auto;
  margin-inline: auto;
  background: #ffffff;
  border-radius: 2.5rem;
  padding-block: 6.5rem 7rem;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-about__content {
    width: 34.3rem;
    border-radius: 1rem;
    padding-block: 2.1rem 3.5rem;
  }
}
.p-about__title {
  text-align: center;
  font-size: 80px;
  font-size: 8rem;
  line-height: 1.225;
  letter-spacing: 0em;
  font-weight: 900;
  color: #143278;
}
@media screen and (max-width: 900px ) {
  .p-about__title {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: 900;
  }
}
.p-about__image {
  margin-top: 5rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 900px ) {
  .p-about__image {
    margin-top: 1.8rem;
  }
}
.p-about__text {
  text-align: center;
  color: #143278;
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.7391304348;
  letter-spacing: 0em;
  font-weight: 600;
  margin-top: 3.6rem;
}
@media screen and (max-width: 900px ) {
  .p-about__text {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.4705882353;
    letter-spacing: -0.02em;
    font-weight: 600;
    margin-top: 3rem;
  }
}
.p-about__cta {
  margin-top: 3.6rem;
}
@media screen and (max-width: 900px ) {
  .p-about__cta {
    margin-top: 2.2rem;
  }
}
.p-about__deco {
  width: 22.8rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: 5.8rem;
  bottom: 1.5rem;
  pointer-events: none;
}
@media screen and (max-width: 900px ) {
  .p-about__deco {
    display: none;
  }
}

/* #p-lineup
----------------------------------------------------------------- */
.p-lineup {
  width: 100dvw;
}
.p-lineup__inner {
  width: 136.6rem;
  margin-left: auto;
  margin-right: auto;
  padding-block: 11rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 900px ) {
  .p-lineup__inner {
    width: 37.5rem;
  }
}
@media screen and (max-width: 900px ) {
  .p-lineup__inner {
    padding-block: 4.5rem;
  }
}
.p-lineup__inner:before {
  content: "";
  display: block;
  width: 162.7rem;
  height: 329.4rem;
  background: url(../images/lineup_bg.png) no-repeat center center/cover;
  position: absolute;
  top: -1.6rem;
  left: -11rem;
  z-index: -1;
}
@media screen and (max-width: 900px ) {
  .p-lineup__inner:before {
    width: 54rem;
    height: 249.5rem;
    top: 0rem;
    left: -7rem;
    background: url(../images/lineup_bg_sp.png) no-repeat center center/cover;
  }
}
.p-lineup__title {
  text-align: center;
  font-size: 80px;
  font-size: 8rem;
  line-height: 1.225;
  letter-spacing: 0em;
  font-weight: 900;
  color: #143278;
}
@media screen and (max-width: 900px ) {
  .p-lineup__title {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: 900;
  }
}
.p-lineup__text {
  text-align: center;
  color: #143278;
  font-size: 20px;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 2.5rem;
}
@media screen and (max-width: 900px ) {
  .p-lineup__text {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.6923076923;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
.p-lineup__images {
  margin-top: 6.3rem;
  width: 114rem;
  height: auto;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  row-gap: 5rem;
}
@media screen and (max-width: 900px ) {
  .p-lineup__images {
    margin-top: 5rem;
    width: 32.7rem;
    row-gap: 4rem;
  }
}
.p-lineup__image {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  background: #c6c6c6;
  overflow: hidden;
}
@media screen and (max-width: 900px ) {
  .p-lineup__image {
    border-radius: 0.8rem;
  }
}
.p-lineup__deco {
  width: 18.7rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 4.6rem;
  top: 1.6rem;
  pointer-events: none;
}
@media screen and (max-width: 900px ) {
  .p-lineup__deco {
    display: none;
  }
}
.p-lineup__cta {
  margin-top: 5rem;
}
@media screen and (max-width: 900px ) {
  .p-lineup__cta {
    margin-top: 0.5rem;
  }
}

/* #p-info
----------------------------------------------------------------- */
.p-info__inner {
  width: 136.6rem;
  margin-left: auto;
  margin-right: auto;
  padding-block: 11rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 900px ) {
  .p-info__inner {
    width: 37.5rem;
  }
}
@media screen and (max-width: 900px ) {
  .p-info__inner {
    padding-block: 4.5rem;
  }
}
.p-info__inner:before {
  content: "";
  display: block;
  width: 129.6rem;
  height: 17.9rem;
  background: url(../images/info_bg.png) no-repeat center center/cover;
  position: absolute;
  top: -1.6rem;
  left: -4rem;
  z-index: -1;
}
@media screen and (max-width: 900px ) {
  .p-info__inner:before {
    width: 49.9rem;
    height: 60.7rem;
    top: 0rem;
    left: -8.1rem;
    background: url(../images/info_bg_sp.png) no-repeat center center/cover;
  }
}
.p-info__title {
  text-align: center;
  font-size: 80px;
  font-size: 8rem;
  line-height: 1.225;
  letter-spacing: 0em;
  font-weight: 900;
  color: #143278;
}
@media screen and (max-width: 900px ) {
  .p-info__title {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: 900;
  }
}
.p-info__content {
  width: 114rem;
  height: auto;
  margin-inline: auto;
  background: #ffffff;
  border-radius: 2.5rem;
  padding-block: 6rem 6.5rem;
  margin-top: 6rem;
}
@media screen and (max-width: 900px ) {
  .p-info__content {
    width: 34.3rem;
    border-radius: 1rem;
    padding-block: 3rem;
    margin-top: 1.3rem;
  }
}
.p-info__list {
  width: 92rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 900px ) {
  .p-info__list {
    width: 29.5rem;
  }
}
.p-info__item {
  width: 100%;
  display: grid;
  grid-template-columns: 31.2rem 1fr;
  border-bottom: 2px solid #143278;
  padding-block: 1.5rem;
}
@media screen and (max-width: 900px ) {
  .p-info__item {
    display: block;
    padding-block: 1.5rem 1rem;
  }
}
.p-info__item dt {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.4666666667;
  letter-spacing: 0em;
  font-weight: 700;
  color: #143278;
}
@media screen and (max-width: 900px ) {
  .p-info__item dt {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.p-info__item dd {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.4666666667;
  letter-spacing: 0em;
  font-weight: 500;
  color: #143278;
}
@media screen and (max-width: 900px ) {
  .p-info__item dd {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
    font-weight: 500;
  }
}
.p-info__address {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.7142857143;
  letter-spacing: 0em;
  font-weight: 300;
  color: #143278;
}
@media screen and (max-width: 900px ) {
  .p-info__address {
    flex-direction: column-reverse;
    align-items: flex-start;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.4615384615;
    letter-spacing: 0em;
    font-weight: 400;
    row-gap: 0.5rem;
  }
}
.p-info__address a {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  width: 13rem;
  height: 2.7rem;
  background: #143278;
  border-radius: 0.4rem;
  color: #ffffff;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 500;
  transition: all 0.3s;
}
@media screen and (max-width: 900px ) {
  .p-info__address a {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 500;
    width: 11rem;
    height: 2.4rem;
    border-radius: 0.3rem;
  }
}
.p-info__address a svg {
  width: 1.3rem;
}
.p-info__address a svg path {
  stroke: #ffffff;
}
.p-info__address a:hover {
  background: #1e46aa;
}
.p-info__deco {
  width: 19.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 15.5rem;
  top: 4rem;
  pointer-events: none;
}
@media screen and (max-width: 900px ) {
  .p-info__deco {
    width: 6.2rem;
    left: 5.1rem;
    top: 0rem;
  }
}

/* #p-qa
----------------------------------------------------------------- */
.p-qa__inner {
  width: 136.6rem;
  margin-left: auto;
  margin-right: auto;
  padding-block: 11rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 900px ) {
  .p-qa__inner {
    width: 37.5rem;
  }
}
@media screen and (max-width: 900px ) {
  .p-qa__inner {
    padding-block: 4.5rem;
  }
}
.p-qa__inner:before {
  content: "";
  display: block;
  width: 128.4rem;
  height: 18rem;
  background: url(../images/qa_bg.png) no-repeat center center/cover;
  position: absolute;
  top: 1rem;
  right: -9.4rem;
  z-index: -1;
}
@media screen and (max-width: 900px ) {
  .p-qa__inner:before {
    width: 38.6rem;
    height: 11.1rem;
    top: 0rem;
    right: -5.9rem;
    background: url(../images/qa_bg_sp.png) no-repeat center center/cover;
  }
}
.p-qa__title {
  text-align: center;
  font-size: 80px;
  font-size: 8rem;
  line-height: 1.225;
  letter-spacing: 0em;
  font-weight: 900;
  color: #143278;
}
@media screen and (max-width: 900px ) {
  .p-qa__title {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: 900;
  }
}
.p-qa__list {
  width: 114rem;
  height: auto;
  margin-inline: auto;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}
@media screen and (max-width: 900px ) {
  .p-qa__list {
    width: 32.7rem;
    margin-top: 0.5rem;
    row-gap: 1.5rem;
  }
}
.p-qa__item {
  width: 100%;
}
.p-qa__item:last-child dd p {
  padding-bottom: 0;
}
.p-qa__item dt {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.4666666667;
  letter-spacing: 0em;
  font-weight: 700;
  color: #143278;
  padding-block: 1.5rem;
  border-bottom: 3px solid #143278;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
@media screen and (max-width: 900px ) {
  .p-qa__item dt {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.4444444444;
    letter-spacing: 0em;
    font-weight: 700;
    padding-block: 1.3rem;
    align-items: flex-start;
  }
}
.p-qa__item dt span {
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-qa__item dt span {
    width: 2.2rem;
    height: 2.2rem;
    margin-top: 0.5rem;
  }
}
.p-qa__item dt span:before, .p-qa__item dt span:after {
  content: "";
  display: block;
  width: 3.8rem;
  height: 3px;
  background: #143278;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 900px ) {
  .p-qa__item dt span:before, .p-qa__item dt span:after {
    width: 2.2rem;
    height: 3px;
  }
}
.p-qa__item dt span:after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 1;
  transition: opacity 0.3s;
}
.p-qa__item dt.is-open span:after {
  opacity: 0;
}
.p-qa__item dd {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.4666666667;
  letter-spacing: 0em;
  font-weight: 500;
  color: #143278;
  transition: all 0.6s;
}
@media screen and (max-width: 900px ) {
  .p-qa__item dd {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.4444444444;
    letter-spacing: 0em;
    font-weight: 500;
  }
}
.p-qa__item dd p {
  padding-block: 5rem;
}
@media screen and (max-width: 900px ) {
  .p-qa__item dd p {
    padding-block: 2.5rem 0.5rem;
  }
}
.p-qa__cta {
  margin-top: 22.3rem;
}
.p-qa__deco {
  width: 18.7rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: 13.4rem;
  top: -3rem;
  pointer-events: none;
}
@media screen and (max-width: 900px ) {
  .p-qa__deco {
    width: 6.5rem;
    right: 3.8rem;
    top: 0rem;
  }
}

/* #p-end
----------------------------------------------------------------- */
.p-end__inner {
  width: 136.6rem;
  margin-left: auto;
  margin-right: auto;
  padding-block: 11rem 18.5rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 900px ) {
  .p-end__inner {
    width: 37.5rem;
  }
}
@media screen and (max-width: 900px ) {
  .p-end__inner {
    padding-block: 8rem 7rem;
  }
}
.p-end__inner:before {
  content: "";
  display: block;
  width: 130.9rem;
  height: 52.7rem;
  background: url(../images/end_bg.png) no-repeat center center/cover;
  position: absolute;
  top: -6rem;
  left: -7.2rem;
  z-index: -1;
}
@media screen and (max-width: 900px ) {
  .p-end__inner:before {
    width: 44.4rem;
    height: 22.5rem;
    top: 0rem;
    left: -4.6rem;
    background: url(../images/end_bg_sp.png) no-repeat center center/cover;
  }
}
.p-end__cta .c-cta__button {
  width: 88.9rem;
  height: 12.5rem;
  font-size: 57px;
  font-size: 5.7rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
}
@media screen and (max-width: 900px ) {
  .p-end__cta .c-cta__button {
    width: 32.7rem;
    height: 4.6rem;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
  }
}
.p-end__cta .c-cta__text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 2.4rem;
}
@media screen and (max-width: 900px ) {
  .p-end__cta .c-cta__text {
    margin-top: 1.6rem;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.3846153846;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
.p-end__deco {
  width: 18.7rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 4.8rem;
  top: 2.4rem;
  pointer-events: none;
}
@media screen and (max-width: 900px ) {
  .p-end__deco {
    width: 6.2rem;
    left: 3.7rem;
    top: 1.4rem;
  }
}

/* #p-sponsor
----------------------------------------------------------------- */
.p-sponsor__inner {
  width: 136.6rem;
  margin-left: auto;
  margin-right: auto;
  padding-block: 6.5rem 0;
}
@media screen and (max-width: 900px ) {
  .p-sponsor__inner {
    width: 37.5rem;
  }
}
@media screen and (max-width: 900px ) {
  .p-sponsor__inner {
    padding-block: 2.5rem 0;
  }
}
.p-sponsor__text {
  text-align: center;
  color: #143278;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2727272727;
  letter-spacing: 0em;
  font-weight: 500;
  margin-top: 2rem;
}
@media screen and (max-width: 900px ) {
  .p-sponsor__text {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.3846153846;
    letter-spacing: 0em;
    font-weight: 500;
    font-feature-settings: "palt";
    margin-top: 1.2rem;
  }
}
.p-sponsor__title {
  text-align: center;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 700;
  color: #143278;
}
@media screen and (max-width: 900px ) {
  .p-sponsor__title {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.4615384615;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.p-sponsor__list {
  width: 87.8rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  row-gap: 6rem;
}
@media screen and (max-width: 900px ) {
  .p-sponsor__list {
    width: 32.7rem;
    margin-top: 1.9rem;
    row-gap: 3rem;
  }
}
.p-sponsor__item {
  display: flex;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
@media screen and (max-width: 900px ) {
  .p-sponsor__item {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.p-sponsor__item dt {
  width: 12rem;
  flex-shrink: 0;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.24;
  letter-spacing: 0em;
  font-weight: 700;
  color: #143278;
}
@media screen and (max-width: 900px ) {
  .p-sponsor__item dt {
    width: 4rem;
    font-size: 8px;
    font-size: 0.8rem;
    line-height: 1.25;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
/* #pcsp
----------------------------------------------------------------- */
@media screen and (min-width: 901px) {
  .u-pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 900px) {
  .u-spNone {
    display: none !important;
  }
}
/* ==========================================================================
 #Foundation
========================================================================== */
/* ==========================================================================
 #Layout
========================================================================== */
/* ==========================================================================
 #Component
========================================================================== */
/* ==========================================================================
 #Project
========================================================================== */
/* ==========================================================================
 #Utility
========================================================================== */