@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-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-awardsTop
----------------------------------------------------------------- */
.p-awardsTop {
  padding-top: 15rem;
}
@media screen and (max-width: 900px ) {
  .p-awardsTop {
    padding-top: 8rem;
  }
}
.p-awardsTop__image {
  width: 28.1rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 900px ) {
  .p-awardsTop__image {
    width: 21rem;
  }
}
.p-awardsTop__title {
  text-align: center;
  margin-top: 4rem;
  color: #2864f0;
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 1.3529411765;
  letter-spacing: 0.01em;
  font-weight: 500;
}
@media screen and (max-width: 900px ) {
  .p-awardsTop__title {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.2307692308;
    letter-spacing: 0.01em;
    font-weight: 500;
  }
}
.p-awardsTop__title .small {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 900px ) {
  .p-awardsTop__title .small {
    font-size: 2rem;
  }
}
.p-awardsTop__title .bold {
  font-weight: 900;
}
.p-awardsTop__text {
  margin-top: 4rem;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.p-awardsTop__note {
  margin-top: 4rem;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #dc1e32;
}
/* #p-awardsNavi
----------------------------------------------------------------- */
.p-awardsNavi {
  margin-top: 10rem;
}
@media screen and (max-width: 900px ) {
  .p-awardsNavi {
    margin-top: 8rem;
  }
}
.p-awardsNavi__list {
  border: 2px solid #dce8ff;
  box-shadow: 0 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.25);
  width: 94.5rem;
  height: auto;
  margin-inline: auto;
  border-radius: 1rem;
  padding: 1.3rem;
  display: flex;
  -moz-column-gap: 1.3rem;
       column-gap: 1.3rem;
}
@media screen and (max-width: 900px ) {
  .p-awardsNavi__list {
    width: 35rem;
    box-shadow: 0 0.35rem 1rem 0 rgba(20, 50, 120, 0.1);
    row-gap: 1.3rem;
    flex-direction: column;
  }
}
.p-awardsNavi__item {
  flex: 1;
}
.p-awardsNavi__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 10rem;
  border-radius: 0.53rem;
}
@media screen and (max-width: 900px ) {
  .p-awardsNavi__item a {
    height: 9.2rem;
  }
}
.p-awardsNavi__item a .bold {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-awardsNavi__item a .bold {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.125;
    letter-spacing: 0.04em;
    font-weight: 700;
  }
}
.p-awardsNavi__item a .small {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
  font-weight: 500;
}
@media screen and (max-width: 900px ) {
  .p-awardsNavi__item a .small {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    font-weight: 500;
  }
}
.p-awardsNavi__item a .icon {
  width: 2.4rem;
  height: auto;
  margin-top: 0.6rem;
}
.p-awardsNavi__item--real a {
  background: #2864f0;
  color: #ffffff;
}
.p-awardsNavi__item--cloud a {
  background: #82c31e;
  color: #ffffff;
}
.p-awardsNavi__item--roy a {
  background: #ffb91e;
  color: #1a1a1a;
}
.p-awardsNavi__item--roy a .bold {
  margin-top: 1rem;
}
.p-awardsNavi__item--roy a .icon {
  margin-top: 2rem;
}
.p-awardsNavi__item--moy a {
  background: #f27a68;
  color: #ffffff;
}
.p-awardsNavi__item--moy a .bold {
  margin-top: 1rem;
}
.p-awardsNavi__item--moy a .icon {
  margin-top: 2rem;
}

/* #p-awardsMain
----------------------------------------------------------------- */
.p-awardsMain {
  margin-top: 10rem;
  width: 94.5rem;
  height: auto;
  margin-inline: auto;
  padding: 6rem 4rem 8rem;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain {
    margin-top: 8rem;
    width: 35rem;
    padding: 4rem 2rem 6rem;
  }
}
.p-awardsMain__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
}
.p-awardsMain__title .icon {
  width: 7rem;
}
.p-awardsMain__title .large {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__title .large {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
.p-awardsMain__title .small {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__title .small {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
.p-awardsMain__text {
  margin-top: 6rem;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__text {
    margin-top: 4rem;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
.p-awardsMain__selectionTitle {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30rem;
  height: 5.2rem;
  margin-inline: auto;
  border-radius: 0.8rem;
  background: #ffffff;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__selectionTitle {
    margin-top: 3rem;
  }
}
.p-awardsMain__selectionText {
  margin-top: 3rem;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__selectionText {
    margin-top: 4rem;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
.p-awardsMain__subtitle {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__subtitle {
    margin-top: 4rem;
  }
}
.p-awardsMain__subtitle .large {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__subtitle .large {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
.p-awardsMain__subtitle .small {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.p-awardsMain__subtitle .small span {
  width: 3.3rem;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__subtitle .small {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
  .p-awardsMain__subtitle .small span {
    width: 2.4rem;
  }
}
.p-awardsMain__grandprix {
  width: 100%;
  background: #ffffff;
  padding-block: 2rem;
  padding-inline: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  margin-top: 3rem;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__grandprix {
    padding-block: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    margin-top: 2rem;
  }
}
.p-awardsMain__grandprix:before, .p-awardsMain__grandprix:after {
  content: "";
  display: block;
  width: 3.5rem;
  height: auto;
  aspect-ratio: 116/390;
  flex-shrink: 0;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__grandprix:before, .p-awardsMain__grandprix:after {
    width: 2rem;
  }
}
.p-awardsMain__grandprix:before {
  background: url(../images/awards/grandprix_frame_before.png) no-repeat center/contain;
}
.p-awardsMain__grandprix:after {
  background: url(../images/awards/grandprix_frame_after.png) no-repeat center/contain;
}
.p-awardsMain__grandprix p {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__grandprix p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
.p-awardsMain__area {
  margin-top: 6rem;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__area {
    margin-top: 3rem;
  }
}
.p-awardsMain__areaTitle {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
}
.p-awardsMain__areaTitle::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 100%;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__areaTitle {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
.p-awardsMain__offices {
  margin-top: 3rem;
  width: 86.5rem;
  height: auto;
  display: flex;
  flex-direction: column;
  row-gap: 1px;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__offices {
    width: 100%;
    row-gap: 1rem;
  }
}
.p-awardsMain__office {
  width: 100%;
  display: flex;
  padding: 1.5rem 2rem;
  background: #ffffff;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__office {
    flex-direction: column;
    row-gap: 1rem;
  }
}
.p-awardsMain__officeTitle {
  width: 41rem;
  flex-shrink: 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
  display: flex;
  align-items: top;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
}
.p-awardsMain__officeTitle span {
  width: 2.8rem;
  margin-top: 0.1rem;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__officeTitle {
    width: 100%;
  }
}
.p-awardsMain__officeInfo small {
  font-size: 0.8em;
  display: block;
}
.p-awardsMain__officeButton {
  width: 18.5rem;
  height: auto;
}
.p-awardsMain__officeButton a {
  width: 100%;
  height: 2.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: 12px;
  font-size: 1.2rem;
  line-height: 0.6666666667;
  letter-spacing: 0.1em;
  font-weight: 500;
  background: #ffffff;
  border-radius: 0.3rem;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__officeButton a {
    width: 20rem;
    height: 3rem;
  }
}
.p-awardsMain__officeButton span {
  width: 1.2rem;
  height: auto;
}
.p-awardsMain__officeData {
  width: 18rem;
  height: auto;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__officeData {
    width: 20rem;
  }
}
.p-awardsMain__officeData a {
  width: 8rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 0.6666666667;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 0.3rem;
}
@media screen and (max-width: 900px ) {
  .p-awardsMain__officeData a {
    width: 9rem;
    height: 3rem;
  }
}
.p-awardsMain__officeData a span {
  width: 1.2rem;
  height: auto;
}
.p-awardsMain--real {
  background: #ebf3ff;
}
.p-awardsMain--real .p-awardsMain__title,
.p-awardsMain--real .p-awardsMain__subtitle .large {
  color: #2864f0;
}
.p-awardsMain--real .p-awardsMain__areaTitle:before {
  background-color: #2864f0;
}
.p-awardsMain--real .p-awardsMain__button,
.p-awardsMain--real .p-awardsMain__officeButton a {
  color: #2864f0;
  border: 1px solid #2864f0;
}
.p-awardsMain--real .p-awardsMain__officeData a {
  background: #ebf3ff;
}
.p-awardsMain--cloud {
  background: #e6f0d2;
}
.p-awardsMain--cloud .p-awardsMain__title,
.p-awardsMain--cloud .p-awardsMain__subtitle .large {
  color: #50961e;
}
.p-awardsMain--cloud .p-awardsMain__areaTitle:before {
  background-color: #50961e;
}
.p-awardsMain--cloud .p-awardsMain__button,
.p-awardsMain--cloud .p-awardsMain__officeButton a {
  color: #50961e;
  border: 1px solid #50961e;
}
.p-awardsMain--cloud .p-awardsMain__officeData a {
  background: #e6f0d2;
}
.p-awardsMain--roy {
  background: #fff0d2;
}
.p-awardsMain--roy .p-awardsMain__title,
.p-awardsMain--roy .p-awardsMain__subtitle .large {
  color: #be8c14;
}
.p-awardsMain--roy .p-awardsMain__areaTitle:before {
  background-color: #be8c14;
}
.p-awardsMain--roy .p-awardsMain__button,
.p-awardsMain--roy .p-awardsMain__officeButton a {
  color: #be8c14;
  border: 1px solid #be8c14;
}
.p-awardsMain--roy .p-awardsMain__officeData a {
  background: #fff0d2;
}
.p-awardsMain--moy {
  background: #fef5f3;
}
.p-awardsMain--moy .p-awardsMain__title,
.p-awardsMain--moy .p-awardsMain__subtitle .large {
  color: #a9240f;
}
.p-awardsMain--moy .p-awardsMain__areaTitle:before {
  background-color: #a9240f;
}
.p-awardsMain--moy .p-awardsMain__button,
.p-awardsMain--moy .p-awardsMain__officeButton a {
  color: #a9240f;
  border: 1px solid #a9240f;
}
.p-awardsMain--moy .p-awardsMain__officeData a {
  background: #fef5f3;
}

/* #p-awardsBottom
----------------------------------------------------------------- */
.p-awardsBottom {
  padding-block: 10rem;
}
@media screen and (max-width: 900px ) {
  .p-awardsBottom {
    padding-block: 8rem;
  }
}
.p-awardsBottom__button {
  width: 30rem;
  height: 6.4rem;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  background: #2864f0;
  color: #ffffff;
  border-radius: 0.8rem;
}
.p-awardsBottom__button .icon {
  width: 2.4rem;
  height: auto;
}
.p-awardsBottom__button .text {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 700;
}
/* #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
========================================================================== */