@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.6613756614vw;
}
@media screen and (min-width: 1512px) {
  body,
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 900px ) {
  body,
  html {
    font-size: 2.5641025641vw;
  }
}

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

/* #header
----------------------------------------------------------------- */
.l-header {
  width: 100%;
  height: 8.8rem;
  position: fixed;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, transform 0.3s;
  transform: translateY(0);
}
@media screen and (max-width: 900px ) {
  .l-header {
    height: 6.7rem;
  }
}
.l-header.is-hide {
  transform: translateY(-100%) !important;
}
.l-header__inner {
  width: 100%;
  height: 100%;
  padding-inline: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 900px ) {
  .l-header__inner {
    width: 37rem;
    padding: 0;
    margin-inline: auto;
  }
}
.l-header__logos {
  display: flex;
  align-items: center;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
@media screen and (max-width: 900px ) {
  .l-header__logos {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.l-header__logo {
  display: block;
  width: 12.5rem;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 900px ) {
  .l-header__logo {
    width: 9rem;
  }
}
.l-header__logo02 {
  display: block;
  width: 15.4rem;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 900px ) {
  .l-header__logo02 {
    width: 10rem;
  }
}
.l-header__nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 900px ) {
  .l-header__nav {
    position: static;
    margin: 0;
  }
}
.l-header--awards .l-header__nav {
  display: none;
}

/* #footer
----------------------------------------------------------------- */
.l-footer {
  width: 100%;
  height: 20.4rem;
  background: #2864f0;
  padding-top: 3.3rem;
}
@media screen and (max-width: 900px ) {
  .l-footer {
    padding-top: 2.6rem;
  }
}
.l-footer__logo {
  display: block;
  width: 15.6rem;
  height: auto;
  margin-inline: auto;
  opacity: 1;
  transition: opacity 0.3s;
}
@media screen and (max-width: 900px ) {
  .l-footer__logo {
    width: 10.6rem;
  }
}
.l-footer__logo:hover {
  opacity: 0.8;
}
.l-footer__list {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 900px ) {
  .l-footer__list {
    margin-top: 2.5rem;
    flex-wrap: wrap;
    row-gap: 1rem;
    width: 23rem;
    margin-inline: auto;
  }
}
.l-footer__item {
  border-right: 1px solid #ffffff;
}
@media screen and (min-width: 901px ) {
  .l-footer__item:last-child {
    border-right: 0px solid #ffffff;
  }
}
@media screen and (max-width: 900px ) {
  .l-footer__item:nth-child(1) {
    border-left: 1px solid #ffffff;
  }
  .l-footer__item:nth-child(3) {
    border-left: 1px solid #ffffff;
  }
}
.l-footer__item a {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #ffffff;
  display: block;
  padding-inline: 1rem;
  opacity: 1;
  transition: opacity 0.3s;
}
.l-footer__item a:hover {
  opacity: 0.8;
}
.l-footer__copy {
  width: 100%;
  margin-top: 3rem;
  border-top: 1px solid #ffffff;
  text-align: center;
  padding-block: 2rem;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 400;
}
@media screen and (max-width: 900px ) {
  .l-footer__copy {
    margin-top: 2.6rem;
    padding-block: 1.7rem;
  }
}

/* #c-nav
----------------------------------------------------------------- */
.c-nav {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  border: 1px solid #ebf3ff;
  padding: 0.65rem;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 0.5rem;
}
@media screen and (max-width: 900px ) {
  .c-nav {
    padding: 0.5rem;
  }
}
.c-nav__list {
  -moz-column-gap: 0.65rem;
       column-gap: 0.65rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 900px ) {
  .c-nav__list {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}
.c-nav__item button {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 500;
  width: 10.4rem;
  height: 3.1rem;
  border-radius: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #ebf3ff;
  color: #2864f0;
  transition: color 0.4s, background 0.4s;
}
@media screen and (max-width: 900px ) {
  .c-nav__item button {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.02em;
    font-weight: 500;
    width: 4rem;
    height: 3rem;
  }
}
.c-nav__item button:hover, .c-nav__item button.is-active {
  background: #2864f0;
  color: #ffffff;
}

/* #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-title
----------------------------------------------------------------- */
.c-title {
  width: 70rem;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.48;
  letter-spacing: 0.1em;
  font-weight: 700;
  align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 900px ) {
  .c-title {
    width: 35rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    font-size: 2rem;
  }
}
.c-title::before, .c-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #aac8ff;
}

/* #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-bgSection
----------------------------------------------------------------- */
.c-bgSection {
  width: 100%;
  background: url(../images/top/section_bg.jpg) no-repeat top center/cover;
  padding-block: 10rem;
  background-attachment: fixed;
}
@media screen and (max-width: 900px ) {
  .c-bgSection {
    padding-block: 7rem;
    background: url(../images/top/section_bg_sp.jpg) no-repeat top center/cover;
  }
}
.c-bgSection--invite {
  background: url(../images/top/section_bg_invite.jpg) no-repeat top center/cover;
  background-attachment: fixed;
}
@media screen and (max-width: 900px ) {
  .c-bgSection--invite {
    background: url(../images/top/section_bg_invite_sp.jpg) no-repeat top center/cover;
  }
}

/* #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);
}

/* #js-openning
----------------------------------------------------------------- */
.l-main {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.46, 0.03, 0.52, 0.96) 0s 1;
}
.l-main.is-loaded {
  opacity: 1;
}

.p-mv__title {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.46, 0.03, 0.52, 0.96) 0s 1;
  animation-fill-mode: forwards;
}
.p-mv__copy {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transition-delay: 0.8s;
}
.p-mv__subtitle {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transition-delay: 0.8s;
}
.p-mv__events {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transition-delay: 0.8s;
}
.p-mv__buttonWrap {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transition-delay: 0.8s;
}
.p-mv__content {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transition-delay: 1.6s;
}
.p-mv.is-loaded .p-mv__copy {
  opacity: 1;
}
.p-mv.is-loaded .p-mv__subtitle {
  opacity: 1;
}
.p-mv.is-loaded .p-mv__events {
  opacity: 1;
}
.p-mv.is-loaded .p-mv__buttonWrap {
  opacity: 1;
}
.p-mv.is-loaded .p-mv__content {
  opacity: 1;
}

.l-header {
  transform: translateY(-100%);
}
.l-header.is-loaded {
  transform: translateY(0%);
}

@media screen and (min-width: 901px ) {
  .p-drawer__menu {
    transform: translateY(calc(-100% - 2.2rem));
  }
  .p-drawer__menu.is-loaded {
    transform: translateY(0%);
  }
}
@media screen and (max-width: 900px ) {
  .p-drawer__menu {
    transform: translateY(100%) !important;
  }
  .p-drawer__menu.is-loaded {
    transform: translateY(0%) !important;
  }
}

.p-bg {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transition-delay: 0.2s;
}
.p-bg.is-loaded {
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html.is-fixed,
body.is-fixed {
  overflow: hidden;
}

/* #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-
----------------------------------------------------------------- */
/* #p-
----------------------------------------------------------------- */
.p-drawer {
  width: 33rem;
  height: 100dvh;
  overflow-y: scroll;
  padding-block: 10rem;
  background: #2864f0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.6s;
}
.p-drawer.is-open {
  transform: translateX(0);
}
@media screen and (max-width: 900px ) {
  .p-drawer {
    width: 31rem;
  }
}
.p-drawer__inner {
  padding-left: 6.5rem;
}
@media screen and (max-width: 900px ) {
  .p-drawer__inner {
    padding-left: 5rem;
  }
}
.p-drawer__list {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.p-drawer__item a {
  color: #ffffff;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.p-drawer__filter {
  opacity: 0;
  pointer-events: none;
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(0.3rem);
          backdrop-filter: blur(0.3rem);
  transition: opacity 0.3s;
}
.p-drawer__filter.is-open {
  pointer-events: all;
  opacity: 1;
}
.p-drawer__menu {
  position: fixed;
  right: 4rem;
  top: 2.2rem;
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  z-index: 250;
  transition: transform 0.3s, background 0.3s;
}
@media screen and (max-width: 900px ) {
  .p-drawer__menu {
    width: 100dvw;
    height: 8.9rem;
    justify-content: space-between;
    padding-inline: 2rem;
    -moz-column-gap: 0;
         column-gap: 0;
    top: auto;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(0);
  }
}
.p-drawer__menu.is-hide {
  transform: translateY(calc(-100% - 2.2rem)) !important;
}
@media screen and (max-width: 900px ) {
  .p-drawer__menu.is-hide {
    transform: translateY(100%) !important;
  }
}
.p-drawer__entryCaption {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  font-size: 8px;
  font-size: 0.8rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #2864f0;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 8rem;
  margin-top: 0.5rem;
}
.p-drawer__entryCaption:before, .p-drawer__entryCaption:after {
  content: "";
  display: block;
  width: 1px;
  height: 1.2rem;
  background: #2864f0;
}
.p-drawer__entryCaption:before {
  transform: rotate(-45deg);
}
.p-drawer__entryCaption:after {
  transform: rotate(45deg);
}
.p-drawer__entryWrap {
  transition: opacity 0.3s;
}
.p-drawer__entry {
  width: 15rem;
  height: 4.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fa6414;
  color: #ffffff;
  border-radius: 0.8rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-drawer__entry {
    margin-top: 0.3rem;
    width: 27rem;
    height: 5rem;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2142857143;
    letter-spacing: 0.04em;
    font-weight: 700;
    -moz-column-gap: 1.2rem;
         column-gap: 1.2rem;
  }
  .p-drawer__entry span {
    display: block;
    width: 2.1rem;
    height: auto;
  }
}
.p-drawer__button {
  width: 4.4rem;
  height: 4.4rem;
  background: #2864f0;
  border-radius: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}
@media screen and (max-width: 900px ) {
  .p-drawer__button {
    width: 5rem;
    height: 5rem;
    margin-top: 2rem;
  }
}
.p-drawer__bars {
  width: 2rem;
  height: 1.6rem;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-drawer__bars {
    width: 2.3rem;
    height: 1.8rem;
  }
}
.p-drawer__bar {
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: transform 0.4s cubic-bezier(0.08, 0.82, 0.17, 1), opacity 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
  position: absolute;
  transform-origin: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-drawer__bar:first-child {
  transform: translateY(-0.8rem) rotate(0deg);
}
@media screen and (max-width: 900px ) {
  .p-drawer__bar:first-child {
    transform: translateY(-0.9rem) rotate(0deg);
  }
}
.p-drawer__bar:nth-of-type(2) {
  opacity: 1;
}
.p-drawer__bar:last-child {
  transform: translateY(0.8rem) rotate(0deg);
}
@media screen and (max-width: 900px ) {
  .p-drawer__bar:last-child {
    transform: translateY(0.9rem) rotate(0deg);
  }
}
@media screen and (min-width: 901px ) {
  .p-drawer__button:hover {
    background: rgba(40, 100, 240, 0.7);
  }
}
.p-drawer__button.is-open {
  background: rgba(235, 243, 255, 0.1);
}
.p-drawer__button.is-open .p-drawer__bar:first-child {
  transform: translateY(0) rotate(45deg);
}
.p-drawer__button.is-open .p-drawer__bar:nth-of-type(2) {
  opacity: 0;
}
.p-drawer__button.is-open .p-drawer__bar:last-child {
  transform: translateY(0) rotate(-45deg);
}

body.is-drawerOpen {
  width: 100vw;
  height: 100dvh;
  position: fixed;
}
body.is-drawerOpen .p-drawer__entryWrap {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 900px ) {
  body.is-drawerOpen .l-header {
    transform: translateY(-100%);
  }
  body.is-drawerOpen .p-drawer__menu {
    background: transparent;
  }
}

/* #p-mv
----------------------------------------------------------------- */
.p-mv {
  padding-block: 16rem 11rem;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-mv {
    padding-top: 15rem;
    padding-bottom: 12rem;
  }
}
.p-mv__copy {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.48;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  color: #2864f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.8rem;
}
.p-mv__copy img {
  width: 26.5rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 900px ) {
  .p-mv__copy img {
    width: 18rem;
  }
}
.p-mv__copy b {
  font-weight: 900;
}
@media screen and (max-width: 900px ) {
  .p-mv__copy {
    font-size: 1.6rem;
  }
}
.p-mv__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 5rem;
  row-gap: 1rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__title {
    margin-top: 3.5rem;
  }
}
.p-mv__title img {
  width: 38rem;
  height: auto;
}
@media screen and (max-width: 900px ) {
  .p-mv__title img {
    width: 25.2rem;
  }
}
.p-mv__title span {
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 1.0588235294;
  letter-spacing: 0.01em;
  font-weight: 500;
  display: block;
  text-align: center;
  color: #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-mv__title span {
    font-size: 2.2rem;
  }
}
.p-mv__title span b {
  font-weight: 900;
}
.p-mv__title small {
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.2307692308;
  letter-spacing: 0.01em;
  font-weight: 600;
}
@media screen and (max-width: 900px ) {
  .p-mv__title small {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.3333333333;
    letter-spacing: 0.01em;
    font-weight: 600;
  }
}
.p-mv__subtitle {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  margin-top: 3.4rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__subtitle {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.7142857143;
    letter-spacing: 0.2em;
    font-weight: 500;
    margin-top: 2.2rem;
    font-feature-settings: "palt";
  }
}
.p-mv__events {
  margin-top: 7rem;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 17rem);
}
@media screen and (max-width: 900px ) {
  .p-mv__events {
    margin-top: 5.3rem;
    grid-template-columns: repeat(3, 12.5rem);
  }
}
.p-mv__event {
  width: 100%;
  text-align: center;
  color: #2864f0;
  row-gap: 0.4rem;
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}
.p-mv__event:after {
  content: "";
  display: block;
  width: 1px;
  height: 9rem;
  background: #aac8ff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-block: auto;
  right: 0;
}
@media screen and (max-width: 900px ) {
  .p-mv__event:after {
    height: 100%;
  }
}
@media screen and (max-width: 900px ) {
  .p-mv__event {
    row-gap: 0.2rem;
  }
}
.p-mv__event:last-child:after {
  display: none;
}
.p-mv__date {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 900px ) {
  .p-mv__date {
    font-size: 1.3rem;
  }
}
.p-mv__date b {
  font-weight: 700;
}
.p-mv__place {
  font-size: 30.6px;
  font-size: 3.06rem;
  line-height: 1.4705882353;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 900px ) {
  .p-mv__place {
    font-size: 2rem;
  }
}
.p-mv__en {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (max-width: 900px ) {
  .p-mv__en {
    font-size: 0.8rem;
  }
}
.p-mv__en--2row {
  line-height: 3;
}
.p-mv__eventButton {
  margin-top: 1.5rem;
  width: 15rem;
  height: 4.4rem;
  border: 2px solid #2864f0;
  color: #2864f0;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  border-radius: 0.8rem;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
  transition: all 0.3s;
}
@media screen and (max-width: 900px ) {
  .p-mv__eventButton {
    margin-top: 0.8rem;
    width: 10rem;
    height: 3rem;
    -moz-column-gap: 0.3rem;
         column-gap: 0.3rem;
    border-radius: 0.55rem;
    font-size: 8.25px;
    font-size: 0.825rem;
    line-height: 1;
    letter-spacing: 0.02em;
    font-weight: 700;
  }
}
.p-mv__eventButton .icon {
  width: 0.86rem;
  height: 0.86rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__eventButton .icon {
    width: 0.56rem;
    height: 0.56rem;
  }
}
.p-mv__eventButton .icon svg {
  display: block;
}
.p-mv__eventButton .icon svg path {
  stroke: rgba(40, 100, 240, 0.6);
  transition: all 0.3s;
}
.p-mv__eventButton:hover {
  background: #2864f0;
  color: #ffffff;
}
.p-mv__eventButton:hover .icon svg path {
  stroke: #ffffff;
}
.p-mv__caption {
  margin-top: 4rem;
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-mv__caption {
    margin-top: 3.4rem;
    -moz-column-gap: 1.2rem;
         column-gap: 1.2rem;
    font-size: 1rem;
  }
}
.p-mv__caption:before, .p-mv__caption:after {
  content: "";
  display: block;
  width: 1px;
  height: 1.8rem;
  background: #2864f0;
}
.p-mv__caption:before {
  transform: rotate(-45deg);
}
.p-mv__caption:after {
  transform: rotate(45deg);
}
.p-mv__entry {
  margin-top: 10rem;
  width: 30rem;
  height: 6.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  color: #ffffff;
  background: #fa6414;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.06em;
  font-weight: 700;
  -moz-column-gap: 1.1rem;
       column-gap: 1.1rem;
  border-radius: 0.8rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__entry {
    font-size: 1.6rem;
  }
}
.p-mv__entry span {
  width: 2.4rem;
  height: auto;
}
.p-mv__entry--02 {
  margin-top: 3.6rem;
  color: #f07882;
  background: #ffffff;
  border: 2px solid #f07882;
}
@media screen and (max-width: 900px ) {
  .p-mv__entry--02 {
    margin-top: 1.2rem;
  }
}
.p-mv__news {
  width: 70rem;
  height: auto;
  border-radius: 1rem;
  background: #ebf3ff;
  position: relative;
  margin-inline: auto;
  margin-top: 8.4rem;
  padding-inline: 2.75rem;
  padding-bottom: 2.7rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__news {
    margin-top: 10rem;
    width: 35rem;
    padding: 2rem;
  }
}
.p-mv__newsTitle {
  color: #2864f0;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  transform: translateY(-50%);
  text-align: center;
}
@media screen and (max-width: 900px ) {
  .p-mv__newsTitle {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 400;
    transform: translateY(0%);
  }
}
.p-mv__newsList {
  width: 100%;
  margin-inline: auto;
  margin-top: 3.2rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__newsList {
    margin-top: 2.2rem;
  }
}
.p-mv__newsList--hide {
  display: none;
}
.p-mv__newsItem {
  margin-top: 2rem;
}
.p-mv__newsItem:first-child {
  margin-top: 0;
}
.p-mv__newsRow {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  align-items: flex-start;
}
@media screen and (max-width: 900px ) {
  .p-mv__newsRow {
    flex-direction: column;
    row-gap: 1rem;
  }
}
.p-mv__newsDate {
  display: flex;
  flex-shrink: 0;
  width: 9.5rem;
  height: 2.7rem;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  color: #2864f0;
  border-radius: 0.5rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 500;
  border-radius: 0.5rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__newsDate {
    width: 7rem;
    height: 2rem;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}
.p-mv__newsName {
  flex-shrink: 0;
  width: 43rem;
  color: #2864f0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-top: 0.2rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__newsName {
    width: 30rem;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 500;
  }
}
.p-mv__newsName a,
.p-mv__newsName span {
  text-decoration: underline;
  display: inline-block;
  cursor: pointer;
}
.p-mv__newsToggle {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: 0;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  color: #2864f0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.06em;
  font-weight: 600;
  opacity: 1;
  transition: opacity 0.3s;
}
@media screen and (max-width: 900px ) {
  .p-mv__newsToggle {
    margin-top: 3rem;
  }
}
.p-mv__newsToggle:hover {
  opacity: 0.7;
}
.p-mv__newsToggleIcon {
  width: 2.8rem;
  height: 2.8rem;
  background: #ffffff;
  border-radius: 0.5rem;
  position: relative;
}
.p-mv__newsToggleIcon span {
  display: block;
  width: 1.2rem;
  height: 1px;
  background: #2864f0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center;
  transition: transform 0.3s;
  opacity: 1;
}
.p-mv__newsToggleIcon span:last-child {
  transform: rotate(90deg);
}
.p-mv__newsButton {
  width: 17rem;
  height: 17rem;
  border-radius: 100%;
  position: absolute;
  top: -9rem;
  right: -3rem;
  background: #b482f0;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1rem;
  padding-top: 1.5rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__newsButton {
    width: 11.2rem;
    height: 11.2rem;
    top: -6.4rem;
    right: -2.6rem;
    row-gap: 0.5rem;
    padding-top: 1rem;
  }
}
.p-mv__newsButton .big {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  letter-spacing: 0.01em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 900px ) {
  .p-mv__newsButton .big {
    font-size: 1.3rem;
  }
}
.p-mv__newsButton .icon {
  width: 2.4rem;
  height: 2.4rem;
}
.p-mv__areaTitle {
  margin-top: 11rem;
  width: 70.5rem;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 900px ) {
  .p-mv__areaTitle {
    margin-top: 9.2rem;
    width: 35rem;
  }
}
.p-mv__areaTitle:before, .p-mv__areaTitle:after {
  content: "";
  display: block;
  width: 22rem;
  height: 1px;
  background: #ebf3ff;
}
@media screen and (max-width: 900px ) {
  .p-mv__areaTitle:before, .p-mv__areaTitle:after {
    width: 7rem;
  }
}
.p-mv__areaTitleInner {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 900px ) {
  .p-mv__areaTitleInner {
    font-size: 1.6rem;
  }
}
.p-mv__areaTitleInner span {
  width: 2.4rem;
  height: auto;
}
@media screen and (max-width: 900px ) {
  .p-mv__areaTitleInner span {
    width: 1.6rem;
  }
}
.p-mv__areaText {
  text-align: center;
  margin-top: 1.8rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4375;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media screen and (max-width: 900px ) {
  .p-mv__areaText {
    font-size: 1.4rem;
  }
}
.p-mv__nav {
  padding: 1.3rem;
  border-radius: 1rem;
  box-shadow: 0 1rem 3.5rem 0 rgba(20, 50, 120, 0.1019607843);
  margin-inline: auto;
  margin-top: 1.8rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__nav {
    padding: 1rem;
    margin-top: 2rem;
  }
}
.p-mv__list {
  -moz-column-gap: 1.3rem;
       column-gap: 1.3rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__list {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.p-mv__item button {
  font-size: 40px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  width: 21.6rem;
  height: 7.5rem;
  border-radius: 0.53rem;
}
@media screen and (max-width: 900px ) {
  .p-mv__item button {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 500;
    width: 10.4rem;
    height: 5.6rem;
  }
}
.p-mv__newsToggle.is-open .p-mv__newsToggleIcon span:last-child {
  transform: rotate(0deg);
}
.p-mv__newsButton {
  transform: translateY(0);
  transition: transform 0.4s;
}
.p-mv__newsButton:hover {
  transform: translateY(1rem);
}

/* #p-gallery
----------------------------------------------------------------- */
.p-gallery {
  width: 100dvw;
  background: #3460ac;
  padding-block: 2rem;
}
.p-gallery__slider {
  width: 100%;
}
@media screen and (max-width: 900px ) {
  .p-gallery__slider--sp {
    margin-top: 1rem;
    margin-left: 5rem;
  }
  .p-gallery__slider--sp .splide__track {
    overflow: visible;
  }
}
.p-gallery__slide {
  width: 31rem;
  height: auto;
  aspect-ratio: 316/204;
  background: #d9d9d9;
}
@media screen and (max-width: 900px ) {
  .p-gallery__slide {
    width: 16.5rem;
  }
}
.p-gallery__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* #p-message
----------------------------------------------------------------- */
.p-message {
  width: 94.4rem;
  height: auto;
  margin-inline: auto;
  background: #ffffff;
  border: 4px solid #ebf3ff;
  box-shadow: 0 1rem 3.5rem 0 rgba(20, 50, 120, 0.1019607843);
  border-radius: 1rem;
  padding-block: 4rem 9rem;
}
@media screen and (max-width: 900px ) {
  .p-message {
    width: 35rem;
    padding-block: 5rem 8rem;
  }
}
.p-message__title {
  width: 70rem;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  color: #2864f0;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.48;
  letter-spacing: 0.1em;
  font-weight: 700;
  align-items: center;
}
@media screen and (max-width: 900px ) {
  .p-message__title {
    width: 31rem;
    font-size: 1.6rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.p-message__title::before, .p-message__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ebf3ff;
}
.p-message__text {
  margin-top: 2rem;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 500;
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 900px ) {
  .p-message__text {
    font-size: 1.2rem;
    width: 93%;
  }
}
.p-message__subtitle {
  margin-top: 6rem;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-message__subtitle {
    margin-top: 4rem;
  }
}
.p-message__image {
  position: absolute;
  width: 54.1rem;
  height: auto;
  left: -13rem;
  bottom: -3rem;
}
@media screen and (max-width: 900px ) {
  .p-message__image {
    width: 30rem;
    left: -5rem;
    bottom: -2.6rem;
  }
}

/* #p-member
----------------------------------------------------------------- */
.p-member {
  width: 94.4rem;
  height: auto;
  margin-inline: auto;
  background: rgba(35, 65, 140, 0.6980392157);
  box-shadow: 0 1rem 3.5rem 0 rgba(20, 50, 120, 0.1019607843);
  border-radius: 1rem;
  padding-block: 5.3rem;
  margin-top: 10.4rem;
}
@media screen and (max-width: 900px ) {
  .p-member {
    width: 35rem;
    padding-block: 4rem;
  }
}
.p-member__title {
  color: #ffffff;
  text-align: center;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  row-gap: 1rem;
}
@media screen and (max-width: 900px ) {
  .p-member__title {
    font-size: 2rem;
    row-gap: 2rem;
  }
}
.p-member__title::after {
  content: "";
  display: block;
  width: 9.6rem;
  height: 1px;
  background: #ffffff;
}
.p-member__list {
  margin-top: 4rem;
  width: 54rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 16rem);
  gap: 3rem;
}
@media screen and (max-width: 900px ) {
  .p-member__list {
    width: 30.6rem;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 2.6rem;
         column-gap: 2.6rem;
    row-gap: 3.8rem;
    margin-top: 6rem;
  }
}
.p-member__item {
  position: relative;
}
.p-member__tag {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 6rem;
  height: 6rem;
  border-radius: 100%;
  background: #00b9b9;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  z-index: 5;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.p-member__image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.p-member__arrow {
  display: block;
  width: 5.1rem;
  height: 5.1rem;
  border-radius: 100%;
  position: absolute;
  right: -0.6rem;
  bottom: -1.2rem;
  background: rgba(40, 100, 240, 0.8);
}
.p-member__arrow svg {
  width: 1.5rem;
  height: auto;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}
.p-member__role {
  color: #ffffff;
  margin-top: 0.7rem;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.p-member__name {
  color: #ffffff;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-member__name {
    font-size: 1.6rem;
  }
}
.p-member__button {
  margin-top: 1.2rem;
  margin-inline: auto;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16rem;
  height: 3.6rem;
  border: 1px solid #ffffff;
  border-radius: 0.8rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  color: #ffffff;
  background: transparent;
  transition: color 0.4s, background 0.4s;
}
.p-member__button svg {
  width: 1.6rem;
  height: auto;
}
.p-member__button svg path {
  stroke: #ffffff;
  transition: stroke 0.4s;
}
@media screen and (max-width: 900px ) {
  .p-member__button {
    width: 100%;
  }
}
.p-member__button:hover {
  color: #2864f0;
  background: #ffffff;
}
.p-member__button:hover svg path {
  stroke: #2864f0;
}
.p-member__arrow svg {
  transform: translate(0, 0);
  transition: all 0.3s;
}
.p-member__image:hover .p-member__arrow svg {
  transform: translate(0.2rem, -0.2rem);
}
.p-member__tag {
  opacity: 0;
  transition: opacity 0.3s;
}
.p-member .is-fukuoka .p-member__item--fukuoka {
  order: -5;
}
.p-member .is-fukuoka .p-member__item--fukuoka .p-member__tag {
  opacity: 1;
}
.p-member .is-fukuoka .p-member__item--osaka {
  order: -4;
}
.p-member .is-fukuoka .p-member__button--osaka,
.p-member .is-fukuoka .p-member__button--tokyo {
  display: none;
}
.p-member .is-osaka .p-member__item--fukuoka {
  order: -4;
}
.p-member .is-osaka .p-member__item--osaka {
  order: -5;
}
.p-member .is-osaka .p-member__item--osaka .p-member__tag {
  opacity: 1;
}
.p-member .is-osaka .p-member__button--fukuoka,
.p-member .is-osaka .p-member__button--tokyo {
  display: none;
}
.p-member .is-tokyo .p-member__item--tokyo .p-member__tag {
  opacity: 1;
}
.p-member .is-tokyo .p-member__button--osaka,
.p-member .is-tokyo .p-member__button--fukuoka {
  display: none;
}

/* #p-modal
----------------------------------------------------------------- */
.p-modal {
  width: 100vw;
  height: 100dvh;
  overflow: scroll;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  background-color: rgba(20, 50, 120, 0.5);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding-block: 9.5rem;
  opacity: 0;
  transition: opacity 0.6s;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 900px ) {
  .p-modal {
    padding-block: 6rem;
  }
}
.p-modal__content {
  width: 100%;
  height: auto;
  position: relative;
}
.p-modal__filter {
  width: 100vw;
  min-height: 100dvh;
  position: absolute;
  left: 0;
  cursor: pointer;
  height: calc(100% + 19rem);
  top: -9.5rem;
}
@media screen and (max-width: 900px ) {
  .p-modal__filter {
    height: calc(100% + 12rem);
    top: -6rem;
  }
}
.p-modal__inner {
  width: 87rem;
  height: auto;
  position: relative;
  margin-inline: auto;
  background: #ffffff;
  border-radius: 1rem;
  padding: 4rem;
  z-index: 100;
}
@media screen and (max-width: 900px ) {
  .p-modal__inner {
    width: 35rem;
    padding: 3.2rem 2.8rem;
  }
}
.p-modal__title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-modal__title {
    font-size: 1.8rem;
  }
}
.p-modal__subtitle {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 900;
  margin-top: 1.5rem;
}
@media screen and (max-width: 900px ) {
  .p-modal__subtitle {
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    margin-top: 1.7rem;
  }
}
.p-modal__text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-top: 4rem;
}
@media screen and (max-width: 900px ) {
  .p-modal__text {
    font-size: 1.4rem;
    margin-top: 3rem;
  }
}
.p-modal__text small {
  font-size: 1.4rem;
}
@media screen and (max-width: 900px ) {
  .p-modal__text small {
    font-size: 1.2rem;
  }
}
.p-modal__linkButton {
  margin-top: 3rem;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 1em;
  height: 3.6rem;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 0.75;
  letter-spacing: 0.1em;
  font-weight: 500;
  background: #ffffff;
  border-radius: 0.5rem;
  color: #2864f0;
  border: 1px solid #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-modal__linkButton {
    font-size: 1.2rem;
    height: 3rem;
  }
}
.p-modal__linkButton span {
  width: 1.6rem;
  height: auto;
}
.p-modal__firstTitle {
  font-size: 29px;
  font-size: 2.9rem;
  line-height: 1.2413793103;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-modal__firstTitle {
    font-size: 1.8rem;
  }
}
.p-modal__firstText {
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-top: 4rem;
  color: #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-modal__firstText {
    font-size: 1.4rem;
    margin-top: 3rem;
  }
}
.p-modal__firstText small {
  font-size: 1.4rem;
}
@media screen and (max-width: 900px ) {
  .p-modal__firstText small {
    font-size: 1.2rem;
  }
}
.p-modal__firstText span {
  font-weight: 700;
  font-size: 1.2em;
}
.p-modal__firstText a {
  display: inline-block;
  opacity: 1;
  transition: opacity 0.3s;
  text-decoration: underline;
}
.p-modal__firstText a:hover {
  opacity: 0.7;
}
.p-modal__contentImage {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  overflow: hidden;
}
.p-modal__contentTitle {
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  padding-block: 2rem;
  border-bottom: 1px solid #e1dcdc;
}
@media screen and (max-width: 900px ) {
  .p-modal__contentTitle {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    padding-bottom: 1rem;
  }
}
.p-modal__contentTitle .icon {
  width: 10.6rem;
  height: 10.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #ebf3ff;
  flex-shrink: 0;
}
@media screen and (max-width: 900px ) {
  .p-modal__contentTitle .icon {
    width: 6rem;
    height: 6rem;
  }
}
.p-modal__contentTitle .icon img {
  width: 7.8rem;
  height: 7.8rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 900px ) {
  .p-modal__contentTitle .icon img {
    width: 4rem;
    height: 4rem;
  }
}
.p-modal__contentTitle .text {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.0666666667;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-modal__contentTitle .text {
    font-size: 1.8rem;
    width: 19rem;
  }
}
.p-modal__memberTitle {
  padding-bottom: 2rem;
  border-bottom: 1px solid #e1dcdc;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
  font-weight: 700;
}
.p-modal__memberData {
  display: flex;
  margin-top: 4rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  align-items: center;
}
@media screen and (max-width: 900px ) {
  .p-modal__memberData {
    margin-top: 3rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.p-modal__memberImage {
  width: 16rem;
  height: auto;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 900px ) {
  .p-modal__memberImage {
    width: 13rem;
  }
}
.p-modal__memberInfo {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.p-modal__memberInfo small {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.p-modal__memberInfo span {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.p-modal__memberInfo .big {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.p-modal__memberInfo .icons {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.p-modal__memberInfo .icon a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
}
.p-modal__memberInfo .icon a svg {
  width: 3rem;
  height: 3rem;
}
.p-modal__memberInfo .icon a svg.home rect {
  fill: #ebf3ff;
  transition: fill 0.3s;
}
.p-modal__memberInfo .icon a svg.home path {
  stroke: #2864f0;
  transition: stroke 0.3s;
}
.p-modal__memberInfo .icon a svg.x rect {
  fill: #ebf3ff;
  transition: fill 0.3s;
}
.p-modal__memberInfo .icon a svg.x path {
  fill: #2864f0;
  transition: fill 0.3s;
}
.p-modal__memberInfo .icon a:hover svg.home rect {
  fill: #2864f0;
}
.p-modal__memberInfo .icon a:hover svg.home path {
  stroke: #ffffff;
}
.p-modal__memberInfo .icon a:hover svg.x rect {
  fill: #2864f0;
}
.p-modal__memberInfo .icon a:hover svg.x path {
  fill: #ffffff;
}
.p-modal__close {
  position: absolute;
  right: 2.5rem;
  top: 2.5rem;
  width: 4.5rem;
  height: 4.5rem;
  background: #ebf3ff;
  border-radius: 0.8rem;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s;
  cursor: pointer;
}
.p-modal__close:hover {
  opacity: 0.8;
}
@media screen and (max-width: 900px ) {
  .p-modal__close {
    right: 1.2rem;
    top: 1.2rem;
  }
}
.p-modal__close span {
  display: block;
  width: 2rem;
  height: 1px;
  position: absolute;
  inset: 0;
  margin: auto;
  transform-origin: center;
  background: #2864f0;
}
.p-modal__close span:nth-of-type(1) {
  transform: rotate(45deg);
}
.p-modal__close span:nth-of-type(2) {
  transform: rotate(-45deg);
}
.p-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

body.is-modalOpen {
  width: 100vw;
  height: 100dvh;
  position: fixed;
}

/* #p-experience
----------------------------------------------------------------- */
.p-experience {
  width: 94.4rem;
  height: auto;
  margin-inline: auto;
  border: 4px solid #aac8ff;
  background: #ffffff;
  border-radius: 1rem;
  padding-block: 10rem;
}
@media screen and (max-width: 900px ) {
  .p-experience {
    width: 35rem;
    padding-block: 5rem 7rem;
  }
}
@media screen and (max-width: 900px ) {
  .p-experience__title {
    text-align: center;
  }
}
.p-experience__content {
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
@media screen and (max-width: 900px ) {
  .p-experience__content {
    margin-top: 3rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.p-experience__tag {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 21.6rem;
  height: 10.8rem;
  border-radius: 10rem;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.125;
  letter-spacing: 0.1em;
  font-weight: 500;
  background: #ffffff;
}
@media screen and (max-width: 900px ) {
  .p-experience__tag {
    width: 7.5rem;
    height: 4.5rem;
    font-size: 1.6rem;
    border-width: 2px !important;
  }
}
.p-experience__tag:nth-of-type(1) {
  border: 3px solid #64be8c;
  color: #00963c;
}
.p-experience__tag:nth-of-type(3) {
  border: 3px solid #b482f0;
  color: #733ce6;
}
.p-experience__tag:nth-of-type(5) {
  border: 3px solid #64d2d2;
  color: #008c8c;
}
.p-experience__cross {
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-experience__cross {
    width: 2rem;
    height: 2rem;
  }
}
.p-experience__cross span {
  width: 100%;
  height: 5px;
  display: block;
  background: #aac8ff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center;
}
@media screen and (max-width: 900px ) {
  .p-experience__cross span {
    height: 3px;
  }
}
.p-experience__cross span:first-child {
  transform: rotate(45deg);
}
.p-experience__cross span:last-child {
  transform: rotate(-45deg);
}
.p-experience__subtitle {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #2864f0;
  margin-top: 4.1rem;
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 900px ) {
  .p-experience__subtitle {
    margin-top: 3rem;
    font-size: 2rem;
  }
}
.p-experience__line {
  position: absolute;
  width: 23rem;
  height: auto;
  right: -4rem;
  bottom: -3.5rem;
}
@media screen and (max-width: 900px ) {
  .p-experience__line {
    width: 18.6rem;
    right: -3rem;
  }
}
.p-experience__text {
  margin-top: 9rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 900px ) {
  .p-experience__text {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2.1428571429;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-align: left;
    padding: 0 2rem;
  }
  .p-experience__text br {
    display: none;
  }
}
.p-experience__copy {
  margin-top: 10rem;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-align: center;
  position: relative;
  color: #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-experience__copy {
    margin-top: 5rem;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
.p-experience__copyImage {
  position: absolute;
  width: 54.2rem;
  height: auto;
  left: 14rem;
  bottom: -3.5rem;
}
@media screen and (max-width: 900px ) {
  .p-experience__copyImage {
    width: 30rem;
    left: 1rem;
    bottom: -2rem;
  }
}

/* #p-contents
----------------------------------------------------------------- */
.p-contents {
  padding-block: 15rem;
}
@media screen and (max-width: 900px ) {
  .p-contents {
    padding-block: 7rem;
  }
}
.p-contents__list {
  margin-top: 6rem;
  width: 104rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 900px ) {
  .p-contents__list {
    width: 35rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.p-contents__item {
  width: 100%;
  height: 34.4rem;
  border-radius: 1.1rem;
  box-shadow: 0 0.35rem 1rem 0 rgba(20, 50, 120, 0.1019607843);
  border: 3px solid #dce8ff;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 0;
  padding: 3rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-contents__item {
    height: auto;
    padding-block: 1rem 2rem;
    row-gap: 1rem;
  }
}
.p-contents__item:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 100%;
  background: #2864f0;
  z-index: 10;
  transform: translate(50%, 50%);
}
.p-contents__iconWrap {
  display: block;
  width: 7rem;
  height: 7rem;
  position: relative;
  background: #ffffff;
  border-radius: 100%;
  z-index: 15;
}
.p-contents__icon {
  width: 5rem;
  height: 5rem;
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-contents__icon--01 {
  background-image: url(../images/top/contents_icon01.png);
}
.p-contents__icon--02 {
  background-image: url(../images/top/contents_icon02.png);
}
.p-contents__icon--03 {
  background-image: url(../images/top/contents_icon03.png);
}
.p-contents__icon--04 {
  background-image: url(../images/top/contents_icon04.png);
}
.p-contents__icon--05 {
  background-image: url(../images/top/contents_icon05.png);
}
.p-contents__icon--06 {
  background-image: url(../images/top/contents_icon06.png);
}
.p-contents__icon--07 {
  background-image: url(../images/top/contents_icon07.png);
}
.p-contents__icon--08 {
  background-image: url(../images/top/contents_icon08.png);
}
.p-contents__title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 700;
  display: flex;
  align-items: center;
  height: 7rem;
  position: relative;
  z-index: 15;
}
@media screen and (max-width: 900px ) {
  .p-contents__title {
    font-size: 1.6rem;
    height: auto;
  }
}
.p-contents__text {
  text-align: justify;
  word-break: break-all;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-weight: 700;
  flex-grow: 1;
  position: relative;
  z-index: 15;
}
@media screen and (max-width: 900px ) {
  .p-contents__text {
    font-size: 1.5rem;
    width: 29rem;
  }
}
.p-contents__more {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.2857142857;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-contents__more {
    font-size: 1.2rem;
  }
}
.p-contents__arrow {
  display: block;
  width: 10.8rem;
  height: 10.8rem;
  border-radius: 100%;
  position: absolute;
  right: -1.9rem;
  bottom: -1.2rem;
  z-index: 15;
}
@media screen and (max-width: 900px ) {
  .p-contents__arrow {
    display: none;
  }
}
.p-contents__arrow svg {
  width: 2.4rem;
  height: auto;
  position: absolute;
  top: 3.7rem;
  left: 3.5rem;
}
@media screen and (max-width: 900px ) {
  .p-contents__arrow svg {
    width: 2rem;
    top: 4.4rem;
    left: 3.9rem;
  }
}
.p-contents__sub {
  margin-top: 17rem;
}
@media screen and (max-width: 900px ) {
  .p-contents__sub {
    margin-top: 10rem;
  }
}
.p-contents__subList {
  margin-top: 6rem;
  width: 91.4rem;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (max-width: 900px ) {
  .p-contents__subList {
    width: 35rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.p-contents__subItem {
  width: 27.8rem;
  height: 25.8rem;
  border-radius: 0.5rem;
  border: 2px solid #dce8ff;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0;
  overflow: hidden;
  position: relative;
  padding-top: 2rem;
}
@media screen and (max-width: 900px ) {
  .p-contents__subItem {
    width: 100%;
    height: auto;
    padding-block: 2rem 2rem;
    row-gap: 1rem;
  }
}
.p-contents__subIcon {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 900px ) {
  .p-contents__subIcon {
    width: 27.5rem;
    margin-inline: auto;
  }
}
.p-contents__subText {
  width: 21.5rem;
  margin-inline: auto;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 3.3rem;
}
@media screen and (max-width: 900px ) {
  .p-contents__subText {
    width: 30rem;
    margin-top: 1.5rem;
  }
}
.p-contents__item:before {
  width: 0%;
  height: 0%;
  transition: width 0.6s cubic-bezier(0.65, 0.05, 0.36, 1), height 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.p-contents__item .p-contents__title {
  color: #2864f0;
  transition: color 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.p-contents__item .p-contents__text {
  color: #1a1a1a;
  transition: color 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.p-contents__item .p-contents__more {
  color: #2864f0;
  transition: color 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.p-contents__item .p-contents__arrow {
  background: #ebf3ff;
  transition: background 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.p-contents__item .p-contents__arrow svg path {
  stroke: #2864f0;
  transition: stroke 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* #p-voice
----------------------------------------------------------------- */
.p-voice {
  padding-block: 15rem 10rem;
}
@media screen and (max-width: 900px ) {
  .p-voice {
    padding: 0;
  }
}
.p-voice__title {
  text-align: center;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2rem;
}
@media screen and (max-width: 900px ) {
  .p-voice__title {
    font-size: 2rem;
    row-gap: 2rem;
  }
}
.p-voice__title:after {
  content: "";
  display: block;
  width: 9.6rem;
  height: 1px;
  background: rgba(40, 100, 240, 0.5);
}
.p-voice__inner {
  width: 118.4rem;
  margin-inline: auto;
  padding: 6rem;
  background: #ebf3ff;
  border-radius: 1rem;
}
@media screen and (max-width: 900px ) {
  .p-voice__inner {
    width: 100%;
    border-radius: 0;
    padding: 8rem 4rem 8rem 2rem;
  }
}
.p-voice__list {
  display: grid;
  grid-template-columns: repeat(3, 32.7rem);
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  margin-top: 6rem;
}
@media screen and (max-width: 900px ) {
  .p-voice__list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
    margin-top: 4rem;
  }
}
.p-voice__item {
  border: 2px solid #aac8ff;
  box-shadow: 2rem 2rem 0 rgba(35, 65, 140, 0.1);
  border-radius: 1rem;
  padding: 2.5rem 2rem 3rem 2rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 900px ) {
  .p-voice__item {
    box-shadow: 2rem 1rem 0 rgba(35, 65, 140, 0.1);
  }
}
.p-voice__item:nth-of-type(1) .p-voice__itemTitle {
  color: #2864f0;
}
.p-voice__item:nth-of-type(2) .p-voice__itemTitle {
  color: #fa6414;
}
.p-voice__item:nth-of-type(3) .p-voice__itemTitle {
  color: #008c8c;
}
.p-voice__itemTop {
  display: flex;
  align-items: center;
  width: 100%;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
}
.p-voice__itemImage {
  width: 7.4rem;
  height: -moz-fit-content;
  height: fit-content;
  flex-shrink: 0;
}
.p-voice__itemTitle {
  width: 100%;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 900px ) {
  .p-voice__itemTitle {
    font-size: 1.6rem;
  }
}
.p-voice__itemText {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.7333333333;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: 2.5rem;
  flex-grow: 1;
}
@media screen and (max-width: 900px ) {
  .p-voice__itemText {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
}
.p-voice__image {
  position: absolute;
  width: 5.8rem;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 900px ) {
  .p-voice__image {
    width: 4.5rem;
  }
}
.p-voice__name {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-left: 7.2rem;
}
@media screen and (max-width: 900px ) {
  .p-voice__name {
    font-size: 1.2rem;
    margin-left: 6rem;
  }
}

/* #p-speaker
----------------------------------------------------------------- */
.p-speaker {
  padding-block: 10rem;
}
@media screen and (max-width: 900px ) {
  .p-speaker {
    padding-block: 7rem;
  }
}
.p-speaker__inner {
  width: 99.4rem;
  margin-inline: auto;
  margin-top: 9.3rem;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-speaker__inner {
    width: 100%;
    margin-top: 4rem;
  }
}
.p-speaker__track {
  width: 100%;
  padding-block: 3.3rem;
}
@media screen and (max-width: 900px ) {
  .p-speaker__track {
    padding-block: 2.2rem;
  }
}
.p-speaker__slide {
  width: 28.7rem;
}
@media screen and (max-width: 900px ) {
  .p-speaker__slide {
    width: 20rem;
  }
}
.p-speaker__slideImage {
  transition: transform 0.5s;
  transform: scale(1);
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.p-speaker__slideInfo {
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../images/top/speaker_info_bg.png);
  background-size: cover;
  background-position: left bottom;
  background-color: rgba(40, 100, 240, 0.9);
  width: 100%;
  padding-block: 1.7rem;
  color: #ffffff;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 900px ) {
  .p-speaker__slideInfo {
    padding-block: 1.4rem;
  }
}
.p-speaker__slideInfo small {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 900px ) {
  .p-speaker__slideInfo small {
    font-size: 1rem;
  }
}
.p-speaker__slideInfo .big {
  font-size: 21.25px;
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-speaker__slideInfo .big {
    font-size: 1.66rem;
  }
}
.p-speaker__slide.is-active .p-speaker__slideImage {
  transform: scale(1.1846);
}
@media screen and (max-width: 900px ) {
  .p-speaker__slide.is-active .p-speaker__slideImage {
    transform: scale(1.2);
  }
}
.p-speaker__arrow {
  width: 5.5rem;
  height: 5.5rem;
  background: #2864f0;
  opacity: 1;
}
@media screen and (max-width: 900px ) {
  .p-speaker__arrow {
    width: 4rem;
    height: 4rem;
  }
}
.p-speaker__arrow img {
  width: 1rem;
}
.p-speaker__arrow--prev {
  left: 27.5rem;
}
@media screen and (max-width: 900px ) {
  .p-speaker__arrow--prev {
    left: 2rem;
  }
}
.p-speaker__arrow--next {
  right: 27.5rem;
}
@media screen and (max-width: 900px ) {
  .p-speaker__arrow--next {
    right: 2rem;
  }
}
.p-speaker__button {
  width: 98rem;
  height: 6rem;
  margin-inline: auto;
  margin-top: 6rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2864f0;
  background: #ebf3ff;
  border-radius: 0.8rem;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.1111111111;
  letter-spacing: 0.06em;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
  opacity: 1;
}
.p-speaker__button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 900px ) {
  .p-speaker__button {
    width: 35rem;
    height: 6rem;
    font-size: 1.6rem;
  }
}
.p-speaker__buttonIcon {
  width: 4.4rem;
  height: 4.4rem;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-block: auto;
  right: 0.9rem;
  background: #ffffff;
  border-radius: 0.8rem;
}
.p-speaker__buttonIcon span {
  display: block;
  width: 2rem;
  height: 2px;
  background: #2864f0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center;
  transition: transform 0.3s;
  opacity: 1;
}
.p-speaker__buttonIcon span:last-child {
  transform: rotate(90deg);
}
.p-speaker__list {
  margin-top: 6rem;
  width: 112.4rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 900px ) {
  .p-speaker__list {
    width: 35rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
}
.p-speaker__subtitle {
  margin-top: 17rem;
}
.p-speaker__item {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.p-speaker__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s;
}
.p-speaker__item.js-modalOpen {
  cursor: pointer;
}
.p-speaker__item.js-modalOpen:hover img {
  transform: scale(1.05);
}
.p-speaker__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../images/top/speaker_info_bg.png);
  background-size: cover;
  background-position: left bottom;
  background-color: rgba(40, 100, 240, 0.9);
  width: 100%;
  min-height: 10.5rem;
  padding-block: 1.8rem;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 900px ) {
  .p-speaker__info {
    min-height: 6.9rem;
    padding-block: 1.2rem;
  }
}
.p-speaker__info small {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.3846153846;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (max-width: 900px ) {
  .p-speaker__info small {
    font-size: 1rem;
  }
}
.p-speaker__info .big {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.28;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-speaker__info .big {
    font-size: 1.66rem;
  }
}
.p-speaker__all {
  width: 92rem;
  margin-inline: auto;
  margin-top: 2rem;
  border: 1px solid #dce8ff;
  border-radius: 0.5rem;
  padding: 2rem 2.5rem;
  background: #ffffff;
}
@media screen and (max-width: 900px ) {
  .p-speaker__all {
    width: 35rem;
    padding: 1rem;
  }
}
.p-speaker__allList {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  row-gap: 2rem;
}
@media screen and (max-width: 900px ) {
  .p-speaker__allList {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.p-speaker__allItem {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1.7rem;
       column-gap: 1.7rem;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 2.4rem;
  border-bottom: 1px solid #2864f0;
  position: relative;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px ) {
  .p-speaker__allItem {
    padding-block: 2rem;
    -moz-column-gap: 1.3rem;
         column-gap: 1.3rem;
  }
  .p-speaker__allItem:last-of-type {
    border-bottom: 0px solid #2864f0;
  }
}
.p-speaker__allImage {
  width: 12.3rem;
  height: 12.3rem;
}
@media screen and (max-width: 900px ) {
  .p-speaker__allImage {
    width: 9.8rem;
    height: 12.3rem;
  }
}
.p-speaker__allImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.p-speaker__allInfo {
  padding-top: 1rem;
}
.p-speaker__allName {
  color: #2864f0;
}
.p-speaker__allName .big {
  font-size: 20px;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.p-speaker__allName small {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.p-speaker__allButton {
  position: absolute;
  right: 0.5rem;
  top: 10rem;
  display: block;
  width: 4.4rem;
  height: 4.4rem;
  background: #2864f0;
  border-radius: 100%;
}
@media screen and (max-width: 900px ) {
  .p-speaker__allButton {
    bottom: 1.7rem;
  }
}
.p-speaker__allButton span {
  display: block;
  width: 0.9rem;
  height: 1px;
  background: #ffffff;
  position: absolute;
  inset: 0;
  margin: auto;
  transform-origin: center;
  transition: transform 0.3s;
  opacity: 1;
}
.p-speaker__allButton span:last-child {
  transform: rotate(90deg);
}
.p-speaker__allText {
  width: 100%;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
  padding-top: 2rem;
  display: none;
  width: 95%;
  margin: 0 auto;
}
.p-speaker__button.is-open .p-speaker__buttonIcon span:last-child {
  transform: rotate(0deg);
}
.p-speaker__allButton.is-open span:last-child {
  transform: rotate(0deg);
}

/* #p-invite
----------------------------------------------------------------- */
.p-invite {
  padding-top: 10rem;
}
.p-invite__inner {
  width: 94.4rem;
  height: auto;
  background: #ffffff;
  border: 4px solid #aac8ff;
  padding-block: 7.7rem;
  border-radius: 1rem;
  margin-inline: auto;
}
@media screen and (max-width: 900px ) {
  .p-invite__inner {
    width: 35rem;
    padding-block: 3.2rem;
  }
}
.p-invite__title {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.8333333333;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-invite__title {
    font-size: 2rem;
  }
}
.p-invite__image {
  position: absolute;
  width: 69.6rem;
  height: auto;
  left: -10rem;
  bottom: -3rem;
}
@media screen and (max-width: 900px ) {
  .p-invite__image {
    width: 30.4rem;
    left: -4.5rem;
    bottom: -2rem;
  }
}
.p-invite__list {
  margin-top: 10rem;
  width: 42.4rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media screen and (max-width: 900px ) {
  .p-invite__list {
    margin-top: 6rem;
    width: 31rem;
    row-gap: 1rem;
  }
}
.p-invite__item {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 900px ) {
  .p-invite__item {
    align-items: flex-start;
  }
}
.p-invite__place {
  width: 4.6rem;
  height: 2.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #143278;
  color: #ffffff;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: 0.5rem;
}
@media screen and (max-width: 900px ) {
  .p-invite__place {
    width: 3.8rem;
    font-size: 1.2rem;
  }
}
.p-invite__text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media screen and (max-width: 900px ) {
  .p-invite__text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 0.3rem;
  }
}
.p-invite__caption {
  margin-top: 7.8rem;
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-invite__caption {
    margin-top: 4rem;
  }
}
.p-invite__caption:before, .p-invite__caption:after {
  content: "";
  display: block;
  width: 1px;
  height: 1.8rem;
  background: #2864f0;
}
.p-invite__caption:before {
  transform: rotate(-45deg);
}
.p-invite__caption:after {
  transform: rotate(45deg);
}
.p-invite__entry {
  margin-top: 0.6rem;
  width: 30rem;
  height: 6.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  color: #ffffff;
  background: #fa6414;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  -moz-column-gap: 1.1rem;
       column-gap: 1.1rem;
  border-radius: 0.8rem;
}
.p-invite__entry span {
  width: 2.4rem;
  height: auto;
}
/* #p-timetable
----------------------------------------------------------------- */
.p-timetable {
  padding-block: 15rem 10rem;
}
@media screen and (max-width: 900px ) {
  .p-timetable {
    padding-block: 7rem;
  }
}
.p-timetable__navi {
  margin-top: 6rem;
}
@media screen and (max-width: 900px ) {
  .p-timetable__navi {
    margin-top: 4rem;
  }
}
.p-timetable__naviList {
  width: 94.4rem;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
@media screen and (max-width: 900px ) {
  .p-timetable__naviList {
    width: 35rem;
    -moz-column-gap: 0.4rem;
         column-gap: 0.4rem;
  }
}
.p-timetable__naviItem {
  position: relative;
}
.p-timetable__naviItem::before {
  position: absolute;
  top: -2.4rem;
  right: 0;
  left: 0;
  margin-inline: auto;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-timetable__naviItem::before {
    top: -1.5rem;
    font-size: 8px;
    font-size: 0.8rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.p-timetable__naviItem:has(.en)::before {
  content: "＼ ノウハウを知りたい方へ ／";
  color: #2864f0;
}
.p-timetable__naviItem:has(.school)::before {
  content: "＼ 実際に体験したい方へ ／";
  color: #00963c;
}
.p-timetable__naviItem a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 46rem;
  height: 6.4rem;
  width: 25rem;
  height: 15rem;
  border-radius: 0.8rem;
  row-gap: 0.5rem;
  color: #ffffff;
  background: #143278;
  border: 2px solid #73a5ff;
  opacity: 1;
  transition: opacity 0.3s;
  position: relative;
  overflow: hidden;
}
.p-timetable__naviItem a:hover {
  opacity: 0.7;
}
.p-timetable__naviItem a:before {
  content: "";
  display: block;
  position: absolute;
  width: 15.6rem;
  height: 14.9rem;
  left: -1.8rem;
  top: -2rem;
  background: url(../images/top/timetable_navi_tsubame.png) no-repeat center/contain;
  z-index: 0;
}
@media screen and (max-width: 900px ) {
  .p-timetable__naviItem a:before {
    width: 7.8rem;
    height: 7.4rem;
    left: 1.2rem;
    top: -1rem;
  }
}
@media screen and (max-width: 900px ) {
  .p-timetable__naviItem a {
    width: 11.4rem;
    height: 6.4rem;
  }
}
.p-timetable__naviItem a.en {
  color: #2864f0;
  background: #ebf3ff;
  border: 2px solid #2864f0;
}
.p-timetable__naviItem a.en:before {
  width: 26.6rem;
  height: 17.2rem;
  left: -0.9rem;
  top: -1rem;
  background-image: url(../images/top/timetable_navi_en.png);
}
@media screen and (max-width: 900px ) {
  .p-timetable__naviItem a.en:before {
    width: 13.3rem;
    height: 8.6rem;
    left: 1.4rem;
    top: -1.3rem;
  }
}
.p-timetable__naviItem a.school {
  color: #00963c;
  background: #cdebd7;
  border: 2px solid #00963c;
}
.p-timetable__naviItem a.school:before {
  opacity: 0.5;
  width: 12rem;
  height: 12rem;
  left: 14.2rem;
  top: 6.5rem;
  background-image: url(../images/top/timetable_navi_school.png);
}
@media screen and (max-width: 900px ) {
  .p-timetable__naviItem a.school:before {
    width: 6rem;
    height: 6rem;
    left: 5.6rem;
    top: 1.6rem;
  }
}
.p-timetable__naviItem a .big {
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 900px ) {
  .p-timetable__naviItem a .big {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.p-timetable__naviItem a .medium {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 900px ) {
  .p-timetable__naviItem a .medium {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.125;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.p-timetable__naviItem a .small {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 900px ) {
  .p-timetable__naviItem a .small {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
.p-timetable__table {
  width: 94.4rem;
  margin-inline: auto;
  margin-top: 6rem;
  border-radius: 1rem;
  padding: 4rem 3rem;
  background-color: #143278;
  position: relative;
  overflow: hidden;
}
.p-timetable__table:before {
  content: "";
  display: block;
  position: absolute;
  width: 15.6rem;
  height: 14.9rem;
  left: 30rem;
  top: -0.6rem;
  background: url(../images/top/timetable_navi_tsubame.png) no-repeat center/contain;
  z-index: 0;
}
@media screen and (max-width: 900px ) {
  .p-timetable__table:before {
    width: 10.4rem;
    height: 9.9rem;
    left: 8rem;
    top: -0.2rem;
  }
}
@media screen and (max-width: 900px ) {
  .p-timetable__table {
    width: 35rem;
    margin-top: 4rem;
    padding: 3rem 2rem;
  }
}
.p-timetable__table--en {
  background-color: #ebf3ff;
}
.p-timetable__table--en .p-timetable__tableTitle {
  color: #2864f0;
}
.p-timetable__table--en:before {
  width: 26.6rem;
  height: 17.2rem;
  left: 34.7rem;
  top: -1.8rem;
  background-image: url(../images/top/timetable_navi_en.png);
}
@media screen and (max-width: 900px ) {
  .p-timetable__table--en:before {
    width: 17.7rem;
    height: 11.4rem;
    left: 8.5rem;
    top: -0.5rem;
  }
}
.p-timetable__table--school {
  background-color: #cdebd7;
}
.p-timetable__table--school .p-timetable__tableTitle,
.p-timetable__table--school .p-timetable__infoTitle {
  color: #00963c;
}
.p-timetable__table--school .p-timetable__row {
  border: 1px solid #00963c;
}
.p-timetable__table--school .p-timetable__time {
  background: #00963c;
}
.p-timetable__table--school .p-timetable__timeListTitle {
  color: #00963c;
}
.p-timetable__table--school .p-timetable__timeListItem {
  background-color: #cdebd7;
  color: #00963c;
}
.p-timetable__table--school:before {
  opacity: 0.5;
  width: 10rem;
  height: 10rem;
  left: 55rem;
  top: 3.7rem;
  background-image: url(../images/top/timetable_navi_school.png);
}
@media screen and (max-width: 900px ) {
  .p-timetable__table--school:before {
    width: 5.4rem;
    height: 5.4rem;
    left: 22.5rem;
    top: 3rem;
  }
}
.p-timetable__table--school .c-soon {
  filter: grayscale(1) brightness(5);
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px ) {
  .p-timetable__table--school .c-soon {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}
.p-timetable__tableTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 0.5rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.p-timetable__tableTitle .big {
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-timetable__tableTitle .big {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
.p-timetable__tableTitle .small {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-timetable__tableTitle .small {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
.p-timetable__content {
  margin-top: 4rem;
}
.p-timetable__contentInner {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  position: relative;
  z-index: 1;
}
.p-timetable__row {
  width: 100%;
  height: auto;
  display: flex;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-timetable__row {
    flex-direction: column;
  }
}
.p-timetable__time {
  width: 9rem;
  height: auto;
  flex-shrink: 0;
  background: #2864f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
  color: #ffffff;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.1111111111;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding-block: 2rem;
}
@media screen and (max-width: 900px ) {
  .p-timetable__time {
    width: 100%;
    flex-direction: row;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    padding: 1.5rem 1rem;
    justify-content: flex-start;
  }
}
.p-timetable__time .line {
  width: 1px;
  height: 2rem;
  background: #ffffff;
}
@media screen and (max-width: 900px ) {
  .p-timetable__time .line {
    width: 2rem;
    height: 1px;
  }
}
.p-timetable__time--center {
  text-align: center;
}
.p-timetable__info {
  background: #ffffff;
  width: 100%;
  height: auto;
  padding: 2rem 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 900px ) {
  .p-timetable__info {
    padding: 2rem;
  }
}
.p-timetable__infoTitle {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-timetable__infoTitle {
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 1.5263157895;
    letter-spacing: 0.04em;
    font-weight: 700;
  }
}
.p-timetable__infoSubtitle {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: 1rem;
}
@media screen and (max-width: 900px ) {
  .p-timetable__infoSubtitle {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5714285714;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
}
.p-timetable__speakers {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(40, 100, 240, 0.25);
  margin-top: 2rem;
  padding-top: 2.4rem;
  padding-bottom: 0.8rem;
}
@media screen and (max-width: 900px ) {
  .p-timetable__speakers {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
    padding-top: 2rem;
  }
}
.p-timetable__speaker {
  width: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.7rem;
       column-gap: 1.7rem;
  position: relative;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px ) {
  .p-timetable__speaker {
    -moz-column-gap: 1.3rem;
         column-gap: 1.3rem;
  }
}
.p-timetable__speakerImage {
  width: 10rem;
  height: 10rem;
}
.p-timetable__speakerImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 900px ) {
  .p-timetable__speakerInfo {
    width: 80%;
  }
}
.p-timetable__speakerName .role {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 2.2rem;
  border: 1px solid #575757;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 400;
  padding-inline: 0.8rem;
}
.p-timetable__speakerName .big {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.p-timetable__speakerName smspeaker {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.p-timetable__speakerName small {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.8181818182;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.p-timetable__speakerButton {
  position: absolute;
  right: 0rem;
  top: 8rem;
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  background: #2864f0;
  border-radius: 100%;
}
.p-timetable__speakerButton span {
  display: block;
  width: 0.9rem;
  height: 1px;
  background: #ffffff;
  position: absolute;
  inset: 0;
  margin: auto;
  transform-origin: center;
  transition: transform 0.3s;
  opacity: 1;
}
.p-timetable__speakerButton span:last-child {
  transform: rotate(90deg);
}
.p-timetable__speakerText {
  width: 100%;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
  padding-top: 2rem;
  display: none;
}
.p-timetable__tags {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px ) {
  .p-timetable__tags {
    gap: 1rem;
  }
}
.p-timetable__tag {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ebf3ff;
  color: #2864f0;
  border-radius: 0.2rem;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 400;
  width: auto;
  height: 2.4rem;
  padding-inline: 1rem;
}
.p-timetable__timeListWrap {
  display: flex;
  gap: 1.6rem;
  margin-top: 1.2rem;
}
@media screen and (max-width: 900px ) {
  .p-timetable__timeListWrap {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.p-timetable__timeListTitleWrap {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
}
@media screen and (max-width: 900px ) {
  .p-timetable__timeListTitleWrap {
    -moz-column-gap: 0.4rem;
         column-gap: 0.4rem;
  }
}
.p-timetable__timeListTitle {
  padding-bottom: 0.2rem;
  color: #2864f0;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-timetable__timeListTitle {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}
.p-timetable__timeListIcon {
  width: 2rem;
}
@media screen and (max-width: 900px ) {
  .p-timetable__timeListIcon {
    width: 1.8rem;
  }
}
.p-timetable__timeList {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
@media screen and (max-width: 900px ) {
  .p-timetable__timeList {
    gap: 0.8rem;
  }
}
.p-timetable__timeListItem {
  padding: 0.7rem 1.2rem 0.8rem;
  background-color: #ebf3ff;
  border-radius: 0.4rem;
  color: #2864f0;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-timetable__timeListItem {
    padding: 0.5rem 0.6rem 0.6rem;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}

/* #p-exibition
----------------------------------------------------------------- */
.p-exibition {
  padding-block: 8rem;
}
@media screen and (max-width: 900px ) {
  .p-exibition {
    padding-block: 7rem;
  }
}
.p-exibition__list {
  width: 94.6rem;
  margin-inline: auto;
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(3, 28.8rem);
  gap: 4rem;
}
@media screen and (max-width: 900px ) {
  .p-exibition__list {
    width: 35rem;
    margin-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.p-exibition__item {
  width: 28.8rem;
  height: 9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ebf3ff;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #ffffff;
}
@media screen and (max-width: 900px ) {
  .p-exibition__item {
    width: 16.4rem;
    height: 7rem;
  }
}
.p-exibition__image {
  display: block;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  transition: border 0.3s;
}
.p-exibition__image:hover {
  border: 4px solid #ebf3ff;
}
.p-exibition__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/* #p-partner
----------------------------------------------------------------- */
.p-partner__title {
  text-align: center;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2rem;
}
@media screen and (max-width: 900px ) {
  .p-partner__title {
    font-size: 2rem;
  }
}
.p-partner__title:after {
  content: "";
  display: block;
  width: 9.6rem;
  height: 1px;
  background: rgba(40, 100, 240, 0.5);
}
.p-partner__text {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 2rem;
}
.p-partner__inner {
  width: 94.6rem;
  margin-inline: auto;
  padding: 6rem 4rem;
  background: #ebf3ff;
  border-radius: 1rem;
}
@media screen and (max-width: 900px ) {
  .p-partner__inner {
    width: 35rem;
    border-radius: 1rem;
    padding: 5rem 2rem;
  }
}
.p-partner__list {
  width: 100%;
  margin-inline: auto;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 26.2rem);
  gap: 4rem;
}
@media screen and (max-width: 900px ) {
  .p-partner__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.p-partner__item {
  width: 26.2rem;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ebf3ff;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #ffffff;
}
@media screen and (max-width: 900px ) {
  .p-partner__item {
    width: 14.5rem;
    height: auto;
  }
}
.p-partner__image {
  display: block;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  transition: border 0.3s;
}
.p-partner__image:hover {
  border: 4px solid #ebf3ff;
}
.p-partner__image--soon:hover {
  border: 4px solid transparent;
}
.p-partner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-partner__caption {
  width: 94.6rem;
  margin-inline: auto;
  text-align: right;
  font-size: 1.4rem;
  margin-top: 1rem;
}

/* #p-areamap
----------------------------------------------------------------- */
.p-areamap {
  padding-block: 15rem;
}
@media screen and (max-width: 900px ) {
  .p-areamap {
    padding-block: 7rem 5rem;
  }
}
.p-areamap__image {
  margin-top: 6rem;
  width: 94.4rem;
  margin-inline: auto;
}
@media screen and (max-width: 900px ) {
  .p-areamap__image {
    margin-top: 4rem;
    width: 35rem;
  }
}

/* #p-access
----------------------------------------------------------------- */
.p-access {
  padding-block: 5rem;
  width: 100%;
  position: relative;
}
.p-access:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: -1rem;
  z-index: 0;
  width: 100%;
  height: 61%;
  background: #1e46aa;
}
@media screen and (max-width: 900px ) {
  .p-access:after {
    height: 71%;
  }
}
.p-access__inner {
  position: relative;
  z-index: 1;
  width: 94.4rem;
  margin-inline: auto;
  border: 4px solid #aac8ff;
  background: #ffffff;
  padding-block: 7rem;
  border-radius: 1rem;
  box-shadow: 0 3, 5rem 1rem 0 rgba(20, 50, 120, 0.1);
}
@media screen and (max-width: 900px ) {
  .p-access__inner {
    width: 35rem;
    padding: 4.2rem 2rem;
  }
}
@media screen and (max-width: 900px ) {
  .p-access__title {
    width: 100%;
  }
}
.p-access__list {
  margin-top: 6rem;
  width: 57rem;
  margin-inline: auto;
}
@media screen and (max-width: 900px ) {
  .p-access__list {
    margin-top: 2rem;
    width: 100%;
  }
}
.p-access__item {
  display: flex;
  align-items: flex-start;
  margin-top: 4rem;
}
@media screen and (max-width: 900px ) {
  .p-access__item {
    margin-top: 2.3rem;
    flex-direction: column;
    row-gap: 1rem;
  }
}
.p-access__itemTitle {
  width: 11rem;
  flex-shrink: 0;
  border-right: 1px solid #ebf3ff;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-access__itemTitle {
    font-size: 1.3rem;
    width: auto;
    border-right: 0 solid #ebf3ff;
  }
}
.p-access__itemText {
  width: 100%;
  padding-left: 4rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (max-width: 900px ) {
  .p-access__itemText {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: 400;
    padding-left: 0;
    white-space: wrap;
  }
}
.p-access__map {
  margin-top: 6rem;
  width: 70rem;
  margin-inline: auto;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 900px ) {
  .p-access__map {
    margin-top: 2.3rem;
    width: 100%;
  }
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
}
.p-access__info {
  width: 70rem;
  margin-top: 4rem;
  margin-inline: auto;
  display: flex;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}
@media screen and (max-width: 900px ) {
  .p-access__info {
    width: 100%;
    flex-direction: column;
    row-gap: 2rem;
  }
}
.p-access__infoTitle {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #2864f0;
}
@media screen and (max-width: 900px ) {
  .p-access__infoTitle {
    font-size: 1.4rem;
  }
}
.p-access__infoAddress {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 0.5rem;
}
@media screen and (max-width: 900px ) {
  .p-access__infoAddress {
    font-size: 1.4rem;
  }
}
.p-access__infoLink {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 1rem;
}
.p-access__infoLink a {
  text-decoration: underline;
  color: #2864f0;
}
.p-access__infoLink a:hover {
  text-decoration: none;
}
.p-access__infoText {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media screen and (max-width: 900px ) {
  .p-access__infoText {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}

/* #p-archive
----------------------------------------------------------------- */
.p-archive {
  width: 100%;
  background: #1e46aa;
  padding-block: 12rem;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-archive {
    padding-block: 5rem 9rem;
  }
}
.p-archive__title {
  text-align: center;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2rem;
  color: #ffffff;
}
@media screen and (max-width: 900px ) {
  .p-archive__title {
    font-size: 2rem;
  }
}
.p-archive__title:after {
  content: "";
  display: block;
  width: 9.6rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.p-archive__list {
  width: 112.3rem;
  margin-inline: auto;
  margin-top: 5.3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 900px ) {
  .p-archive__list {
    width: 35rem;
    margin-top: 4rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.p-archive__item a {
  display: block;
  width: 26.2rem;
  height: 18rem;
  position: relative;
  border: 2px solid #aac8ff;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 900px ) {
  .p-archive__item a {
    width: 100%;
    height: 18rem;
  }
}
.p-archive__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-archive__item span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #ffffff;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 5;
}
@media screen and (max-width: 900px ) {
  .p-archive__item span {
    font-size: 2rem;
  }
}
.p-archive__item img {
  transition: filter 0.3s ease;
  filter: brightness(1);
}
.p-archive__item:hover img {
  filter: brightness(1.75);
}
.p-archive__caption {
  color: #ffffff;
  position: absolute;
  right: 3rem;
  bottom: 1rem;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.008em;
  font-weight: 400;
  text-align: right;
}
@media screen and (max-width: 900px ) {
  .p-archive__caption {
    width: 37rem;
    right: 1rem;
    font-size: 8px;
    font-size: 0.8rem;
    line-height: 1.75;
    letter-spacing: 0.008em;
    font-weight: 400;
  }
}

/* #p-bg
----------------------------------------------------------------- */
.p-bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.p-bg__frame01 {
  position: absolute;
  top: 0;
  right: 0;
  width: 57.1428571429vw;
  height: auto;
}
@media screen and (max-width: 900px ) {
  .p-bg__frame01 {
    width: 50.7rem;
    top: -3rem;
    right: -4rem;
  }
}
.p-bg__frame02 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32.8571428571vw;
  height: auto;
}
@media screen and (max-width: 900px ) {
  .p-bg__frame02 {
    width: 55rem;
    left: -4rem;
    bottom: -15rem;
  }
}
.p-bg__leftImage01 {
  width: 23.5rem;
  height: auto;
  position: absolute;
  top: 22.7777777778vh;
  left: 6.4814814815vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__leftImage01 {
    width: 8.4rem;
    top: 19.0476190476vh;
    left: -7.1794871795vw;
  }
}
.p-bg__leftImage02 {
  width: 19.9rem;
  height: auto;
  position: absolute;
  top: 46.6666666667vh;
  left: -2.9761904762vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__leftImage02 {
    width: 10.5rem;
    top: 43.6904761905vh;
    left: -15.1282051282vw;
  }
}
.p-bg__leftImage03 {
  width: 11.8rem;
  height: auto;
  position: absolute;
  bottom: 23.7777777778vh;
  left: 11.2433862434vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__leftImage03 {
    display: none;
  }
}
.p-bg__leftImage04 {
  width: 18.4rem;
  height: auto;
  position: absolute;
  bottom: 6vh;
  left: 13.8227513228vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__leftImage04 {
    width: 8.5rem;
    top: 75vh;
    left: -5.8974358974vw;
  }
}
.p-bg__leftImage05 {
  width: 14rem;
  height: auto;
  position: absolute;
  bottom: -2.5555555556vh;
  left: 3.2142857143vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__leftImage05 {
    display: none;
  }
}
.p-bg__leftCircle01 {
  width: 4.9rem;
  height: auto;
  position: absolute;
  top: 30.1111111111vh;
  left: -0.5952380952vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__leftCircle01 {
    width: 1.2rem;
    height: auto;
    top: 10.9523809524vh;
    left: 3.8461538462vw;
  }
}
.p-bg__leftCircle02 {
  width: 16.1rem;
  height: auto;
  position: absolute;
  top: 24.2222222222vh;
  left: 1.1904761905vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__leftCircle02 {
    width: 8.8rem;
    height: auto;
    top: 12.0238095238vh;
    left: -2.0512820513vw;
  }
}
.p-bg__leftCircle03 {
  width: 16.1rem;
  height: auto;
  position: absolute;
  top: 52.2222222222vh;
  left: 16.4021164021vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__leftCircle03 {
    width: 5.5rem;
    height: auto;
    top: 69.5238095238vh;
    left: 2.0512820513vw;
  }
}
.p-bg__leftCircle04 {
  width: 4.9rem;
  height: auto;
  position: absolute;
  bottom: 18vh;
  left: 4.3650793651vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__leftCircle04 {
    width: 2.2rem;
    height: auto;
    bottom: auto;
    top: 65.119047619vh;
    left: 1.5384615385vw;
  }
}
.p-bg__rightImage01 {
  width: 16.6rem;
  height: auto;
  position: absolute;
  top: 26vh;
  right: 2.7777777778vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__rightImage01 {
    width: 12.8rem;
    height: auto;
    top: 10.4761904762vh;
    right: -13.5897435897vw;
  }
}
.p-bg__rightImage02 {
  width: 28.2rem;
  height: auto;
  position: absolute;
  top: 60vh;
  right: 5.753968254vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__rightImage02 {
    width: 13rem;
    height: auto;
    top: 50.119047619vh;
    right: -16.6666666667vw;
  }
}
.p-bg__rightImage03 {
  width: 16.3rem;
  height: auto;
  position: absolute;
  bottom: 0vh;
  right: -0.5291005291vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__rightImage03 {
    display: none;
  }
}
.p-bg__rightCircle01 {
  width: 3.7rem;
  height: auto;
  position: absolute;
  top: 22.7777777778vh;
  right: 25.3306878307vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__rightCircle01 {
    width: 2.2rem;
    height: auto;
    top: 11.1904761905vh;
    right: 8.4615384615vw;
  }
}
.p-bg__rightCircle02 {
  width: 21.6rem;
  height: auto;
  position: absolute;
  top: 26vh;
  right: 7.4074074074vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__rightCircle02 {
    width: 8.8rem;
    height: auto;
    top: 21.4285714286vh;
    right: -4.6153846154vw;
  }
}
.p-bg__rightCircle03 {
  width: 3.3rem;
  height: auto;
  position: absolute;
  top: 42.2222222222vh;
  right: 11.7724867725vw;
  z-index: -1;
}
@media screen and (max-width: 900px ) {
  .p-bg__rightCircle03 {
    width: 1.6rem;
    height: auto;
    top: 28.9285714286vh;
    right: 10vw;
  }
}
.p-bg__rightCircle04 {
  width: 5.9rem;
  height: auto;
  position: absolute;
  bottom: 18.6666666667vh;
  right: 3.5052910053vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__rightCircle04 {
    width: 2.6rem;
    height: auto;
    top: 58.0952380952vh;
    right: 4.1025641026vw;
  }
}
.p-bg__rightCircle05 {
  width: 3.75rem;
  height: auto;
  position: absolute;
  bottom: 4.2222222222vh;
  right: 10.119047619vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__rightCircle05 {
    width: 1.7rem;
    height: auto;
    bottom: auto;
    top: 84.1666666667vh;
    right: 3.0769230769vw;
  }
}
.p-bg__rightCircle06 {
  width: 11.8rem;
  height: auto;
  position: absolute;
  bottom: 2vh;
  right: 8.7301587302vw;
}
@media screen and (max-width: 900px ) {
  .p-bg__rightCircle06 {
    width: 11.8rem;
    height: auto;
    bottom: auto;
    top: 69.2857142857vh;
    right: -14.6153846154vw;
  }
}
.p-bg__floating {
  animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-bg__leftImage02, .p-bg__rightImage01 {
  animation-duration: 1.0383864s;
  animation-delay: 1.0383864s;
}
.p-bg__leftImage01, .p-bg__rightImage02 {
  animation-duration: 1.8180432s;
  animation-delay: 1.8180432s;
}

@keyframes bgFloating {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(6%);
  }
}
/* #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
========================================================================== */