@charset "UTF-8";
/* 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
----------------------------------------------------------------- */
html {
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-size: 0.6666666667vw;
}
@media screen and (max-width: 900px ) {
  html {
    font-size: 1.3333333333vw;
  }
}

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

/* #base
----------------------------------------------------------------- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  background: #000000;
}
body * {
  box-sizing: border-box;
}

#page-top {
  display: none !important;
  opacity: 0 !important;
}

#header {
  z-index: 200 !important;
}

.f_app {
  background: #000000 !important;
}

.mediasp_nav {
  display: none !important;
}

/* #wrapper
----------------------------------------------------------------- */
.l-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  backface-visibility: hidden;
}
/* #header
----------------------------------------------------------------- */
.l-header {
  width: 75rem;
  margin-inline: auto;
}
.l-header__image {
  width: 100%;
  height: auto;
}

/* #main
----------------------------------------------------------------- */
.l-main {
  width: 100dvw;
  height: auto;
}
@media screen and (max-width: 900px ) {
  .l-main {
    background: url(../images/bg.jpg) repeat-y top/100% auto;
  }
}
.l-main svg {
  width: 100%;
  height: auto;
}
.l-main img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.l-main a {
  display: block;
}
.l-main ul li {
  list-style: none;
}
.l-main__inner {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .l-main__inner {
    display: block;
  }
}
.l-main__stickyArea {
  width: 50dvw;
  height: auto;
  min-height: 100dvh;
  overflow-y: scroll;
  background: url(../images/bg_pc.jpg) repeat-y top/100% auto;
  display: grid;
  place-content: center;
  position: sticky;
  top: 0;
  left: 0;
}
@media screen and (max-width: 900px ) {
  .l-main__stickyArea {
    width: 100dvw;
    height: auto;
    min-height: 0;
    overflow: hidden;
    background: transparent;
    display: block;
    position: static;
    padding-block: 3rem 0;
  }
}
.l-main__stickyAreaInner {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.l-main__scrollArea {
  width: 50dvw;
  height: auto;
  overflow-y: scroll;
  background: url(../images/bg.jpg) repeat-y top/100% auto;
}
@media screen and (max-width: 900px ) {
  .l-main__scrollArea {
    width: 100dvw;
    height: auto;
    overflow: hidden;
    background: transparent;
  }
}

/* #footer
----------------------------------------------------------------- */
.l-footer {
  width: 75rem;
  height: 40rem;
  margin-inline: auto;
  background-color: #e50012;
  position: relative;
  z-index: 3;
}
.l-footer__gotop {
  display: block;
  width: 31.5rem;
  height: auto;
  margin-inline: auto;
  transform: translateY(-60%);
  transition: transform 0.3s;
}
.l-footer__gotop:hover {
  transform: translateY(-64%);
}
.l-footer__logo {
  display: block;
  width: 12rem;
  height: auto;
  margin-inline: auto;
  margin-top: -8rem;
  opacity: 1;
  transition: opacity 0.3s;
}
.l-footer__logo:hover {
  opacity: 0.8;
}
.l-footer__copy {
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 400;
  margin-top: 4.5rem;
}

/* #c-block
----------------------------------------------------------------- */
.c-block {
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  position: absolute;
  left: -0.5rem;
  top: 0;
  z-index: -1;
  background: #0e2949;
  border: 0.5rem solid #0e2949;
  clip-path: polygon(calc(100% - 3rem) 0, 100% 3rem, 100% 100%, 3rem 100%, 0 calc(100% - 3rem), 0 0);
}
.c-block:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  clip-path: polygon(calc(100% - 3rem + 0.3rem) 0, 100% 2.7rem, 100% 100%, 2.7rem 100%, 0 calc(100% - 3rem + 0.3rem), 0 0);
  pointer-events: none;
}

/* #c-notice
----------------------------------------------------------------- */
.c-notice {
  width: 62.6rem;
  margin-inline: auto;
  border: 0.3rem solid #e50012;
  padding: 1rem;
  background: #ffffff;
}
.c-notice__text {
  color: #e50012;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.4210526316;
  letter-spacing: 0em;
  font-weight: 600;
  white-space: nowrap;
}
.c-notice__caution {
  margin-top: 1rem;
  width: 100%;
  background: #e50012;
  padding: 0.8rem;
}
.c-notice__strong {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.12;
  letter-spacing: 0.02em;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}
.c-notice__caption {
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.380952381;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: #ffffff;
  width: 100%;
  margin-top: 0.75rem;
  padding-inline: 0.5rem;
}

/* #c-progress
----------------------------------------------------------------- */
.c-progress {
  position: fixed;
  bottom: 6rem;
  right: calc((50dvw - 58rem) / 2);
  width: 63rem;
  height: 1.4rem;
  background: #ffffff;
  border-radius: 100vmax;
  border: 2px solid #0e2949;
  z-index: 100;
  transition: opacity 0.6s;
  pointer-events: all;
  opacity: 1;
}
@media screen and (max-width: 900px ) {
  .c-progress {
    right: 0;
    left: 0;
    margin-inline: auto;
    border: 0.2rem solid #0e2949;
  }
}
@media (hover: none) {
  .c-progress a:hover {
    color: inherit;
  }
}
.c-progress svg {
  width: 100%;
  height: auto;
}
.c-progress img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.c-progress a {
  display: block;
}
.c-progress ul li {
  list-style: none;
}
.c-progress.is-hide {
  pointer-events: none;
  opacity: 0;
}
.c-progress.is-end .c-progress__ball {
  opacity: 0;
}
.c-progress.is-end .c-progress__goalBall {
  opacity: 1;
  transform: translate(0rem, 0rem) rotate(0deg);
}
.c-progress__ball {
  position: absolute;
  left: 0;
  top: -3rem;
  width: 4.6rem;
  height: 4.6rem;
  background: url(../images/progress_ball.png) no-repeat center/contain;
  border-radius: 50%;
  z-index: 10;
  margin-left: -2.3rem;
  transform: translate(-50%, -50%) rotate(0deg); /* 初期状態 */
  transition: transform 0.6s linear, opacity 0.4s linear; /* スムーズな移動 */
}
.c-progress__anchor {
  width: 100%;
}
.c-progress__anchor li {
  position: relative;
}
.c-progress__anchor a {
  display: grid;
  place-content: center;
  width: 3rem;
  height: 3rem;
  transform: translate(-1rem, -1rem);
}
.c-progress__anchor a.is-active + .c-progress__tooltip {
  opacity: 1;
}
@media (hover: hover) {
  .c-progress__anchor a:hover + .c-progress__tooltip {
    opacity: 1;
  }
}
.c-progress__anchor a:before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  background: #000000;
}
.c-progress__tooltip {
  width: 8.6rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: -7.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.c-progress__goal {
  width: 9.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: -2rem;
  top: -5rem;
  z-index: 12;
  transform: translateY(0);
  transition: transform 0.3s;
}
.c-progress__goal:hover {
  transform: translateY(-0.8rem);
}
.c-progress__goalBall {
  width: 4.6rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: -1;
  opacity: 0;
  transform: translate(-0.5rem, -1.5rem) rotate(-10deg);
  transition: all 0.5s;
}

/* #js-scrollEffect
----------------------------------------------------------------- */
.js-scrollEffect--fadeInUp,
.js-loadEffect--fadeInUp {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.1s;
}
.js-scrollEffect--fadeInUp.is-active,
.js-loadEffect--fadeInUp.is-active {
  opacity: 1 !important;
  transform: translateY(0);
}
.js-scrollEffect--fadeInLeft,
.js-loadEffect--fadeInLeft {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateX(-10rem);
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.js-scrollEffect--fadeInLeft.is-active,
.js-loadEffect--fadeInLeft.is-active {
  opacity: 1 !important;
  transform: translateX(0);
}
.js-scrollEffect--fadeInRight,
.js-loadEffect--fadeInRight {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateX(10rem);
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.js-scrollEffect--fadeInRight.is-active,
.js-loadEffect--fadeInRight.is-active {
  opacity: 1 !important;
  transform: translateX(0);
}
.js-scrollEffect--zoomIn,
.js-loadEffect--zoomIn {
  opacity: 0;
  transform: scale(1.05);
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.js-scrollEffect--zoomIn.is-active,
.js-loadEffect--zoomIn.is-active {
  opacity: 1;
  transform: scale(1);
}
.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.is-active,
.js-loadEffect--fadeIn.is-active {
  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.is-active,
.js-loadEffect--slideIn.is-active {
  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.is-active,
.js-loadEffect--slideIn2.is-active {
  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.is-active,
.js-loadEffect--bounceInDown.is-active {
  animation: bounceInDown 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -6rem, 0) scaleY(1.2);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 1rem, 0) scaleY(0.9);
  }
  75% {
    opacity: 1;
    transform: translate3d(0, -1rem, 0) scaleY(0.95);
  }
  90% {
    opacity: 1;
    transform: translate3d(0, 0.5rem, 0) scaleY(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleY(1);
  }
}
/* #p-mv
----------------------------------------------------------------- */
.p-mv {
  width: 100%;
  height: auto;
}
.p-mv__title {
  width: 88%;
  height: auto;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 900px ) {
  .p-mv__title {
    width: 100%;
  }
}
.p-mv__image {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  margin-top: -3rem;
}

/* #p-period
----------------------------------------------------------------- */
.p-period {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: -2vw;
}
@media screen and (max-width: 900px ) {
  .p-period {
    margin-top: -2rem;
  }
}
.p-period__title {
  width: 11.3226666667vw;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 900px ) {
  .p-period__title {
    width: 19.3rem;
  }
}
.p-period__text {
  width: 100%;
  height: 3.8133333333vw;
  background: #0e2949;
  margin-top: -1.1733333333vw;
  padding-top: 1.4666666667vw;
}
@media screen and (max-width: 900px ) {
  .p-period__text {
    width: 100%;
    height: 6.5rem;
    margin-top: -2rem;
    padding-top: 2.5rem;
  }
}
.p-period__text img {
  width: 88%;
  margin-inline: auto;
}
@media screen and (max-width: 900px ) {
  .p-period__text img {
    width: 100%;
  }
}

/* #p-menu
----------------------------------------------------------------- */
.p-menu {
  width: 100%;
  height: auto;
  padding-block: 8rem 7rem;
}
.p-menu__title {
  width: 100%;
  height: auto;
}
.p-menu__nav {
  width: 62rem;
  height: auto;
  margin-top: 3rem;
  margin-inline: auto;
}
.p-menu__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 30rem);
  gap: 2rem;
}
.p-menu__item {
  width: 100%;
  height: auto;
}
.p-menu__item a {
  width: 100%;
  height: auto;
  transform: translateY(0);
  filter: drop-shadow(0.4rem 0.4rem 0 rgba(0, 0, 0, 0.4));
  transition: transform 0.3s, filter 0.3s;
}
.p-menu__item a:hover {
  transform: translateY(0.2rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.4));
}

/* #p-special
----------------------------------------------------------------- */
.p-special {
  width: 100%;
  height: auto;
  position: relative;
}
.p-special:before {
  content: "";
  display: block;
  width: 100%;
  height: 11rem;
  background: url(../images/special_before.png) no-repeat top/cover;
}
.p-special__deco {
  width: 77.4rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: -25.2rem;
  left: -3.8rem;
}
.p-special__inner {
  width: 100%;
  height: auto;
  padding-bottom: 16rem;
  background: url(../images/special_bg.jpg) no-repeat top/100% auto;
  padding-top: 8rem;
}
.p-special__title {
  width: 100%;
  height: auto;
}
.p-special__shiromi {
  width: 100%;
  height: auto;
  margin-top: 2rem;
}
.p-special__akami {
  width: 100%;
  height: auto;
  margin-top: -2rem;
}
.p-special__kuromi {
  width: 100%;
  height: auto;
}

/* #p-sec01
----------------------------------------------------------------- */
.p-sec01 {
  width: 100%;
  height: auto;
  padding-block: 3rem;
}
.p-sec01__inner {
  width: 68.4rem;
  margin-inline: auto;
  position: relative;
  z-index: 5;
  padding-bottom: 2rem;
}
.p-sec01__title {
  width: 67.5rem;
  margin-left: -0.1rem;
  padding-top: 2.8rem;
}
.p-sec01__deco01 {
  width: 14.3rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: -2.3rem;
  top: -3.6rem;
  z-index: 5;
}
.p-sec01__text {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 600;
  color: #0e2949;
  margin-top: 1rem;
}
.p-sec01__image01 {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 1rem;
}
.p-sec01__image02 {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 6rem;
}
.p-sec01__cardCaption {
  margin-top: 2rem;
  margin-left: 3rem;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 600;
}
.p-sec01__navi {
  margin-top: 6rem;
  width: 63rem;
  height: auto;
  margin-inline: auto;
  border: 0.4rem solid #0e2949;
  padding-block: 3.5rem 2rem;
  position: relative;
}
.p-sec01__naviTitle {
  width: 34.3rem;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: -3.6rem;
  z-index: 5;
}
.p-sec01__naviList {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
.p-sec01__naviItem {
  width: 27.5rem;
  height: auto;
}
.p-sec01__naviItem a,
.p-sec01__naviItem span {
  transform: translateY(0);
  filter: drop-shadow(0.4rem 0.4rem 0 rgba(0, 0, 0, 0.4));
  transition: transform 0.3s, filter 0.3s;
}
.p-sec01__naviItem a:hover,
.p-sec01__naviItem span:hover {
  transform: translateY(0.2rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.4));
}
.p-sec01__naviItem a.close,
.p-sec01__naviItem span.close {
  pointer-events: none;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}
.p-sec01__deco02 {
  width: 27.5rem;
  height: auto;
  position: absolute;
  right: -1.5rem;
  top: -30.8rem;
  z-index: 0;
}
.p-sec01__menu {
  margin-top: 6rem;
  width: 62.6rem;
  margin-inline: auto;
  border: 0.4rem solid #ec6800;
  position: relative;
}
.p-sec01__menuTitle {
  width: 100%;
  height: auto;
}
.p-sec01__menuDeco {
  width: 10rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: -2rem;
  top: -3rem;
  z-index: 5;
}
.p-sec01__menuImage01 {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 3rem;
}
.p-sec01__menuImage01List {
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 30.8rem);
  position: relative;
  z-index: -1;
}
.p-sec01__menuCard01 {
  width: 21.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: -2.6rem;
  top: -6.6rem;
}
.p-sec01__menuImage02 {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 3rem;
}
.p-sec01__menuCard02 {
  width: 21.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: -2.6rem;
  top: -1.6rem;
}
.p-sec01__menuCaption {
  margin-top: 1rem;
  margin-left: 1rem;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 600;
}
.p-sec01__menuImage03 {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 3rem;
}
.p-sec01__menuCard03 {
  width: 28.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: -4.6rem;
  top: -1.6rem;
}
.p-sec01__button {
  margin-top: 3rem;
  width: 38.8rem;
  height: auto;
  margin-inline: auto;
  transform: translateY(0);
  filter: drop-shadow(0.4rem 0.4rem 0 rgba(0, 0, 0, 0.4));
  transition: transform 0.3s, filter 0.3s;
}
.p-sec01__button:hover {
  transform: translateY(0.2rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.4));
}
.p-sec01__bagEnd {
  width: 67.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 100;
}
.p-sec01__bagTitle {
  width: 67.5rem;
  margin-left: -0.1rem;
  margin-top: 6rem;
}
.p-sec01__bagImage {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 1rem;
}
.p-sec01__bagCaption {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 600;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}
.p-sec01__bagDeco {
  width: 26.7rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: 20.5rem;
  left: -3.8rem;
}
.p-sec01__notice {
  margin-top: 3rem;
  width: 62.6rem;
  margin-inline: auto;
  border: 0.3rem solid #e50012;
  padding: 1rem;
  background: #ffffff;
}
.p-sec01__notice--02 {
  margin-top: 0rem;
  position: relative;
  z-index: 2;
}
.p-sec01__notice p {
  color: #e50012;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.4210526316;
  letter-spacing: 0em;
  font-weight: 600;
  white-space: nowrap;
}
.p-sec01__caution {
  width: 62.6rem;
  margin-inline: auto;
  margin-top: 1.5rem;
  background: #e50012;
  padding: 0.8rem;
}
.p-sec01__strong {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.12;
  letter-spacing: 0.02em;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}
.p-sec01__caption {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 600;
  text-align: justify;
  color: #ffffff;
  width: 100%;
  margin-top: 0.75rem;
  padding-inline: 0.5rem;
}
.p-sec01__close {
  width: 98.5%;
  height: auto;
  position: absolute;
  left: auto;
  right: 0;
  top: 15rem;
  z-index: 10;
}
.p-sec01__top .p-sec01__title h2 {
  opacity: 0;
  transform: translateX(-60rem);
  transition: all 0.35s;
}
.p-sec01__top .p-sec01__title p {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec01__top .p-sec01__text {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 0.75s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec01__top.is-active .p-sec01__title h2 {
  opacity: 1;
  transform: translateX(0);
}
.p-sec01__top.is-active .p-sec01__title p {
  opacity: 1;
  transform: scale(1);
}
.p-sec01__top.is-active .p-sec01__text {
  opacity: 1;
  transform: scale(1);
}
.p-sec01__menuImage01 .p-sec01__menuImage01List li {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 0s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec01__menuImage01 .p-sec01__menuImage01List li:nth-of-type(2) {
  transition-delay: 0.35s;
}
.p-sec01__menuImage01 .p-sec01__menuImage01List li:nth-of-type(3) {
  transition-delay: 0.7s;
}
.p-sec01__menuImage01 .p-sec01__menuImage01List li:nth-of-type(4) {
  transition-delay: 1.05s;
}
.p-sec01__menuImage01 .p-sec01__menuCard01 {
  transform-origin: bottom center;
}
.p-sec01__menuImage01 .p-sec01__menuImage01List li {
  opacity: 1;
  transform: scale(1);
}
.p-sec01__menuImage02 .p-sec01__menuCard02 {
  transform-origin: bottom center;
}
.p-sec01__menuImage03 .p-sec01__menuCard03 {
  transform-origin: bottom center;
}
@keyframes swing {
  0% {
    transform: rotate(5deg);
    opacity: 0;
    transition-timing-function: ease-in-out;
  }
  25% {
    transform: rotate(-2deg);
    opacity: 1;
    transition-timing-function: ease-in-out;
  }
  50% {
    transform: rotate(1deg);
    opacity: 1;
    transition-timing-function: ease-in-out;
  }
  75% {
    transform: rotate(-0.5deg);
    opacity: 1;
    transition-timing-function: ease-out;
  }
  100% {
    transform: rotate(0deg);
    opacity: 1;
  }
}
/* #p-sec02
----------------------------------------------------------------- */
.p-sec02 {
  width: 100%;
  height: auto;
  padding-block: 3rem;
}
.p-sec02__inner {
  width: 68.4rem;
  margin-inline: auto;
  position: relative;
  z-index: 5;
  padding-bottom: 1rem;
}
.p-sec02__title {
  width: 67.5rem;
  margin-left: -0.1rem;
  padding-top: 2.8rem;
}
.p-sec02__subtitle {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 2rem;
}
.p-sec02__deco01 {
  width: 15.6rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: -3.3rem;
  top: -2.6rem;
  z-index: 5;
}
.p-sec02__text {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: 0em;
  font-weight: 600;
  color: #0e2949;
  margin-top: 1.5rem;
}
.p-sec02__image01 {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 2.5rem;
}
.p-sec02__image02 {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 2.5rem;
}
.p-sec02__caption01 {
  margin-top: 1rem;
  margin-left: 2.5rem;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.p-sec02__button {
  margin-top: 3rem;
  width: 27.6rem;
  height: auto;
  margin-inline: auto;
  transform: translateY(0);
  filter: drop-shadow(0.4rem 0.4rem 0 rgba(0, 0, 0, 0.4));
  transition: transform 0.3s, filter 0.3s;
}
.p-sec02__button:hover {
  transform: translateY(0.2rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.4));
}
.p-sec02__button.close {
  pointer-events: none;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}
.p-sec02__caption02 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 600;
  margin-top: 6rem;
  margin-left: 2rem;
}
.p-sec02__deco02 {
  width: 25.9rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: -0.5rem;
  right: 0.5rem;
}
.p-sec02__close {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  bottom: -0.4rem;
  z-index: 10;
}
.p-sec02__top .p-sec02__title h2 {
  opacity: 0;
  transform: translateX(-60rem);
  transition: all 0.35s;
}
.p-sec02__top .p-sec02__title p {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec02__top .p-sec02__subtitle {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec02__top .p-sec02__text {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec02__top .p-sec02__title h2 {
  opacity: 1;
  transform: translateX(0);
}
.p-sec02__top .p-sec02__title p {
  opacity: 1;
  transform: scale(1);
}
.p-sec02__top .p-sec02__subtitle {
  opacity: 1;
  transform: scale(1);
}
.p-sec02__top .p-sec02__text {
  opacity: 1;
  transform: scale(1);
}

/* #p-sec03
----------------------------------------------------------------- */
.p-sec03__inner {
  width: 75rem;
  padding-block: 3rem;
  margin-inline: auto;
  position: relative;
}
.p-sec03__title {
  width: 100%;
  margin-inline: auto;
  padding-top: 2.8rem;
}
.p-sec03__subtitle {
  width: 100%;
  margin-inline: auto;
}
.p-sec03__pop {
  width: 35.2rem;
  margin-inline: auto;
  margin-top: 2rem;
}
.p-sec03__deco01 {
  width: 10.9rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 2.6rem;
  top: -0.8rem;
  z-index: 5;
}
.p-sec03__block {
  width: 68.4rem;
  margin-inline: auto;
  margin-top: 6rem;
  border: 0.5rem solid #0e2949;
  background: #ffffff;
  padding-bottom: 2rem;
}
.p-sec03__blockTitle {
  width: 100%;
  margin-top: -4rem;
  position: relative;
}
.p-sec03__blockTitleMenu01 {
  width: 19.4rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 1.2rem;
  top: 6.5rem;
  pointer-events: none;
}
.p-sec03__blockTitleMenu02 {
  width: 42.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: 2rem;
  top: 6.5rem;
  pointer-events: none;
}
.p-sec03__blockTitleMenu03 {
  width: 21.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 1.2rem;
  bottom: 0;
  pointer-events: none;
}
.p-sec03__toggle {
  width: 63rem;
  margin-inline: auto;
  margin-top: 3rem;
  position: relative;
  z-index: 5;
  padding-block: 1rem;
}
.p-sec03__toggle--01 {
  margin-top: 0.5rem;
}
.p-sec03__toggle--01 .p-sec03__toggleBg:before {
  background: url(../images/sec03_toggle01_bg.jpg) repeat-y top/100% auto;
}
.p-sec03__toggle--01 .p-sec03__toggleTitle:after {
  background: url(../images/icon_open.png) no-repeat center/contain;
}
.p-sec03__toggle--01 .p-sec03__toggleTitle:before {
  background: url(../images/icon_close.png) no-repeat center/contain;
}
.p-sec03__toggle--01 .p-sec03__toggleCaption {
  color: #ffffff;
}
.p-sec03__toggle--01 .p-sec03__toggleClose {
  background: url(../images/icon_close.png) no-repeat center/contain;
}
.p-sec03__toggle--02 .p-sec03__toggleBg:before {
  background: url(../images/sec03_toggle02_bg.jpg) repeat-y top/100% auto;
}
.p-sec03__toggle--02 .p-sec03__toggleTitle:after {
  background: url(../images/icon_open_navy.png) no-repeat center/contain;
}
.p-sec03__toggle--02 .p-sec03__toggleTitle:before {
  background: url(../images/icon_close_navy.png) no-repeat center/contain;
}
.p-sec03__toggle--02 .p-sec03__toggleCaption {
  color: #0e2949;
}
.p-sec03__toggle--02 .p-sec03__toggleClose {
  background: url(../images/icon_close_navy.png) no-repeat center/contain;
}
.p-sec03__toggleTitle {
  width: 100%;
  margin-inline: auto;
  cursor: pointer;
  position: relative;
}
.p-sec03__toggleTitle:before, .p-sec03__toggleTitle:after {
  content: "";
  display: block;
  width: 4.3rem;
  height: 4.6rem;
  position: absolute;
  top: 1.3rem;
  right: 3rem;
  transition: opacity 1s;
}
.p-sec03__toggleTitle:after {
  opacity: 1;
}
.p-sec03__toggleTitle:before {
  opacity: 0;
}
.p-sec03__toggleTitle.is-open:after {
  opacity: 0;
}
.p-sec03__toggleTitle.is-open:before {
  opacity: 1;
}
.p-sec03__toggleTitle.is-open + .p-sec03__toggleContent .p-sec03__toggleClose {
  opacity: 1;
}
.p-sec03__toggleContent {
  width: 100%;
  overflow: hidden;
  margin-inline: auto;
  transition: height 1s;
  position: relative;
}
.p-sec03__toggleEnd {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.p-sec03__toggleImage01 {
  width: 100%;
  margin-inline: auto;
  padding-top: 3rem;
  padding-bottom: 7rem;
}
.p-sec03__toggleImage01--02 {
  padding-bottom: 0rem;
}
.p-sec03__toggleImage02 {
  width: 54.5rem;
  margin-inline: auto;
  margin-top: 2rem;
  position: relative;
}
.p-sec03__toggleImage02:before, .p-sec03__toggleImage02:after {
  content: "";
  display: block;
  width: 100%;
  height: min(70px, 12rem);
  background: transparent;
  position: absolute;
  left: 0;
  z-index: 10;
}
.p-sec03__toggleImage02:before {
  top: 0;
}
.p-sec03__toggleImage02:after {
  bottom: 0;
}
.p-sec03__toggleImage02 iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.p-sec03__toggleCaption {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 1rem;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 600;
  padding-bottom: 7.5rem;
}
.p-sec03__toggleClose {
  content: "";
  display: block;
  width: 4.3rem;
  height: 4.6rem;
  position: absolute;
  bottom: 0.8rem;
  right: 3rem;
  transition: opacity 1s;
  opacity: 0;
}
.p-sec03__caption {
  width: 63rem;
  margin-inline: auto;
  margin-top: 1rem;
  position: relative;
  margin-top: 11rem;
}
.p-sec03__caption p {
  width: 41.2rem;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 3rem;
  background: #ffffff;
  color: #e50012;
  border: 0.3rem solid #e50012;
  padding: 0.5rem 0.6rem;
  white-space: nowrap;
  margin-left: auto;
  margin-right: 0;
}
.p-sec03__deco02 {
  width: 24.4rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: -3rem;
  top: -7.8rem;
}
.p-sec03__caution {
  width: 63rem;
  background: #e50012;
  padding: 1.2rem 0.8rem;
  margin-top: 0;
  margin-inline: auto;
  position: relative;
  z-index: 5;
}
.p-sec03__strong {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2727272727;
  letter-spacing: 0em;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}
.p-sec03__cautionCaption {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: 0em;
  font-weight: 600;
  color: #ffffff;
  width: 100%;
  margin-top: 0.75rem;
  padding-inline: 0.5rem;
  text-align: justify;
}
.p-sec03__newitem {
  width: 100%;
  height: auto;
  margin-top: 5.2rem;
}
.p-sec03__top .p-sec03__title h2 {
  opacity: 0;
  transform: translateX(-60rem);
  transition: all 0.35s;
}
.p-sec03__top .p-sec03__title p {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec03__top .p-sec03__text {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec03__top.is-active .p-sec03__title h2 {
  opacity: 1;
  transform: translateX(0);
}
.p-sec03__top.is-active .p-sec03__title p {
  opacity: 1;
  transform: scale(1);
}
.p-sec03__top.is-active .p-sec03__text {
  opacity: 1;
  transform: scale(1);
}

/* #p-sec04
----------------------------------------------------------------- */
.p-sec04 {
  width: 100%;
  height: auto;
  padding-block: 3rem;
}
.p-sec04__inner {
  width: 68.4rem;
  margin-inline: auto;
  position: relative;
  z-index: 5;
  padding-bottom: 3rem;
}
.p-sec04__title {
  width: 67.5rem;
  margin-left: -0.1rem;
  padding-top: 2.8rem;
}
.p-sec04__deco01 {
  width: 13.9rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: -2rem;
  top: -3rem;
  z-index: 5;
}
.p-sec04__text01 {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 600;
  color: #0e2949;
  margin-top: 1rem;
}
.p-sec04__text02 {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 600;
  color: #e50012;
  margin-top: 1.6rem;
  border: 2px solid #e50012;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0.5rem 1rem;
}
.p-sec04__image {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 2.5rem;
  position: relative;
}
.p-sec04__name01 {
  pointer-events: none;
  width: 100%;
  position: absolute;
  left: 0;
  top: 9.5rem;
}
.p-sec04__name02 {
  pointer-events: none;
  width: 100%;
  position: absolute;
  left: 0;
  top: 22.5rem;
}
.p-sec04__caption01 {
  margin-top: 7rem;
  margin-left: 2.5rem;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  background: #e50012;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
}
.p-sec04__caption02 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-top: 2rem;
  margin-left: 2.5rem;
}
.p-sec04__deco02 {
  width: 18.4rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: -0.5rem;
  right: 0.5rem;
}
.p-sec04__close {
  width: 99%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  bottom: -0.5rem;
  z-index: 10;
}
.p-sec04__title h2 {
  opacity: 0;
  transform: translateX(-60rem);
  transition: all 0.35s;
}
.p-sec04__title p {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec04__text01, .p-sec04__text02 {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec04__name01, .p-sec04__name02 {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 1.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec04 .p-sec04__title h2 {
  opacity: 1;
  transform: translateX(0);
}
.p-sec04 .p-sec04__title p {
  opacity: 1;
  transform: scale(1);
}
.p-sec04 .p-sec04__text01,
.p-sec04 .p-sec04__text02 {
  opacity: 1;
  transform: scale(1);
}
.p-sec04 .p-sec04__name01,
.p-sec04 .p-sec04__name02 {
  opacity: 1;
  transform: scale(1);
}

/* #p-sec05
----------------------------------------------------------------- */
.p-sec05 {
  width: 100%;
  height: auto;
  padding-block: 3rem;
}
.p-sec05__inner {
  width: 68.4rem;
  margin-inline: auto;
  position: relative;
  z-index: 5;
  padding-bottom: 3rem;
}
.p-sec05__title {
  width: 67.5rem;
  margin-left: -0.1rem;
  padding-top: 2.8rem;
}
.p-sec05__deco01 {
  width: 14rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: -2.3rem;
  top: -5rem;
  z-index: 5;
}
.p-sec05__text {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #0e2949;
  margin-top: 1rem;
}
.p-sec05__subtitle {
  width: 67.5rem;
  margin-inline: auto;
  padding-top: 2.8rem;
}
.p-sec05__block01 {
  width: 63.5rem;
  height: auto;
  border: 4px solid #ec6800;
  margin-inline: auto;
  margin-top: 2rem;
}
.p-sec05__block02 {
  width: 63.5rem;
  height: auto;
  border: 4px solid #e50012;
  margin-inline: auto;
  margin-top: 4rem;
}
.p-sec05__blockTitle {
  width: 100%;
  height: auto;
}
.p-sec05__blockImage {
  width: 100%;
  height: auto;
}
.p-sec05__button01 {
  display: block;
  width: 24.6rem;
  height: auto;
  margin-inline: auto;
  margin-top: 2rem;
  transform: translateY(0);
  filter: drop-shadow(0.4rem 0.4rem 0 rgba(0, 0, 0, 0.4));
  transition: transform 0.3s, filter 0.3s;
}
.p-sec05__button01:hover {
  transform: translateY(0.2rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.4));
}
.p-sec05__button02 {
  display: block;
  width: 29.1rem;
  height: auto;
  margin-inline: auto;
  margin-top: 2rem;
  transform: translateY(0);
  filter: drop-shadow(0.4rem 0.4rem 0 rgba(0, 0, 0, 0.4));
  transition: transform 0.3s, filter 0.3s;
}
.p-sec05__button02:hover {
  transform: translateY(0.2rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.4));
}
.p-sec05__caption {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 4rem;
  margin-right: 3rem;
  margin-left: auto;
}
.p-sec05__deco02 {
  width: 30.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: -0.5rem;
  left: -8.8rem;
}
.p-sec05__close {
  width: 99%;
  height: auto;
  position: absolute;
  left: -0.1rem;
  bottom: -0.4rem;
  z-index: 10;
}
.p-sec05__top .p-sec05__title h2 {
  opacity: 0;
  transform: translateX(-60rem);
  transition: all 0.35s;
}
.p-sec05__top .p-sec05__title p {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec05__top .p-sec05__text {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec05__top.is-active .p-sec05__title h2 {
  opacity: 1;
  transform: translateX(0);
}
.p-sec05__top.is-active .p-sec05__title p {
  opacity: 1;
  transform: scale(1);
}
.p-sec05__top.is-active .p-sec05__text {
  opacity: 1;
  transform: scale(1);
}

/* #p-sec06
----------------------------------------------------------------- */
.p-sec06 {
  width: 100%;
  height: auto;
  padding-block: 3rem;
}
.p-sec06__inner {
  width: 68.4rem;
  margin-inline: auto;
  position: relative;
  z-index: 5;
  padding-bottom: 11rem;
}
.p-sec06__title {
  width: 67.5rem;
  margin-left: -0.1rem;
  padding-top: 2.8rem;
}
.p-sec06__title p {
  margin-top: 1.4rem;
}
.p-sec06__deco01 {
  width: 13.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: -2rem;
  top: -3.4rem;
  z-index: 5;
}
.p-sec06__text {
  width: 67.5rem;
  margin-top: 1rem;
}
.p-sec06__subtitle {
  width: 67.5rem;
  height: auto;
  margin-inline: auto;
  margin-top: 2rem;
}
.p-sec06__image {
  width: 67.5rem;
  height: auto;
  margin-inline: auto;
  margin-top: 3rem;
}
.p-sec06__button {
  display: block;
  width: 33.5rem;
  height: auto;
  margin-inline: auto;
  transform: translateY(0);
  filter: drop-shadow(0.4rem 0.4rem 0 rgba(0, 0, 0, 0.4));
  transition: transform 0.3s, filter 0.3s;
  margin-top: 3rem;
  pointer-events: none;
}
.p-sec06__button:hover {
  transform: translateY(0.2rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.4));
}
.p-sec06__button.close {
  pointer-events: none;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}
.p-sec06__stepTitle {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 7rem;
}
.p-sec06__stepImage01 {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 3rem;
}
.p-sec06__stepImage02 {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 0.5rem;
  position: relative;
}
.p-sec06__stepImage03 {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 0.5rem;
  position: relative;
}
.p-sec06__stepImage04 {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 0.5rem;
  position: relative;
}
.p-sec06__stepImage05 {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 0.5rem;
}
.p-sec06__button01 {
  display: block;
  width: 24.6rem;
  height: auto;
  margin-inline: auto;
  transform: translateY(0);
  filter: drop-shadow(0.4rem 0.4rem 0 rgba(0, 0, 0, 0.4));
  transition: transform 0.3s, filter 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7.3rem;
  pointer-events: none;
}
.p-sec06__button01:hover {
  transform: translateY(0.2rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.4));
}
.p-sec06__button01.close {
  pointer-events: none;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}
.p-sec06__button02 {
  display: block;
  width: 33.4rem;
  height: auto;
  margin-inline: auto;
  transform: translateY(0);
  filter: drop-shadow(0.4rem 0.4rem 0 rgba(0, 0, 0, 0.4));
  transition: transform 0.3s, filter 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6rem;
  pointer-events: none;
}
.p-sec06__button02:hover {
  transform: translateY(0.2rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.4));
}
.p-sec06__button02.close {
  pointer-events: none;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}
.p-sec06__deco02 {
  width: 32.6rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: -0.4rem;
  right: -4.6rem;
}
.p-sec06__close {
  width: 98.6%;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: auto;
  right: 0;
  bottom: -0.4rem;
  z-index: 10;
}
.p-sec06__top .p-sec06__title h2 {
  opacity: 0;
  transform: translateX(-60rem);
  transition: all 0.35s;
}
.p-sec06__top .p-sec06__title p {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec06__top .p-sec06__text {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec06__top.is-active .p-sec06__title h2 {
  opacity: 1;
  transform: translateX(0);
}
.p-sec06__top.is-active .p-sec06__title p {
  opacity: 1;
  transform: scale(1);
}
.p-sec06__top.is-active .p-sec06__text {
  opacity: 1;
  transform: scale(1);
}

/* #p-sec07
----------------------------------------------------------------- */
.p-sec07 {
  width: 100%;
  height: auto;
  padding-block: 3rem;
}
.p-sec07__inner {
  width: 68.4rem;
  margin-inline: auto;
  position: relative;
  z-index: 5;
  padding-bottom: 3rem;
}
.p-sec07__title {
  width: 67.5rem;
  margin-left: -0.1rem;
  padding-top: 2.8rem;
}
.p-sec07__deco01 {
  width: 14rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: -2rem;
  top: -4rem;
  z-index: 5;
}
.p-sec07__text {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 700;
  color: #0e2949;
  margin-top: 1rem;
}
.p-sec07__end {
  width: 67.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-sec07__image01 {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 2rem;
}
.p-sec07__image02 {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 1rem;
}
.p-sec07__stepTitle {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 2rem;
}
.p-sec07__stepImage01 {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 3rem;
}
.p-sec07__stepImage02 {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 0.5rem;
}
.p-sec07__stepImage03 {
  width: 67.5rem;
  margin-inline: auto;
  margin-top: 0.5rem;
}
.p-sec07__button {
  display: block;
  width: 29.6rem;
  height: auto;
  margin-inline: auto;
  margin-top: 3.5rem;
  transform: translateY(0);
  filter: drop-shadow(0.4rem 0.4rem 0 rgba(0, 0, 0, 0.4));
  transition: transform 0.3s, filter 0.3s;
}
.p-sec07__button:hover {
  transform: translateY(0.2rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.4));
}
.p-sec07__link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 3rem;
  color: #0e2949;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 600;
  border-bottom: 1px solid #0e2949;
  transition: all 0.3s;
  text-decoration: none;
}
.p-sec07__link:hover {
  border-bottom: 1px solid transparent;
  text-decoration: none;
  color: #0e2949;
}
.p-sec07__top .p-sec07__title h2 {
  opacity: 0;
  transform: translateX(-60rem);
  transition: all 0.35s;
}
.p-sec07__top .p-sec07__title p {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec07__top .p-sec07__text {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-sec07__top.is-active .p-sec07__title h2 {
  opacity: 1;
  transform: translateX(0);
}
.p-sec07__top.is-active .p-sec07__title p {
  opacity: 1;
  transform: scale(1);
}
.p-sec07__top.is-active .p-sec07__text {
  opacity: 1;
  transform: scale(1);
}

/* #p-about
----------------------------------------------------------------- */
.p-about {
  width: 100%;
  height: auto;
  padding-block: 3rem 6rem;
}
.p-about__title {
  width: 38rem;
  height: auto;
  margin-inline: auto;
}
.p-about__text {
  text-align: center;
  margin-top: 3rem;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 600;
}
.p-about__image {
  width: 36.9rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4rem;
}
.p-about__button {
  display: block;
  width: 30.4rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4rem;
  transform: translateY(0);
  filter: drop-shadow(0.4rem 0.4rem 0 rgba(0, 0, 0, 0.4));
  transition: transform 0.3s, filter 0.3s;
}
.p-about__button:hover {
  transform: translateY(0.2rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.4));
}

/* #p-bottom
----------------------------------------------------------------- */
.p-bottom {
  width: 100%;
  background: #0e2949;
  padding-block: 3rem 6rem;
}
.p-bottom__copy {
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 600;
}
.p-bottom__contact {
  margin-top: 6rem;
}
.p-bottom__title {
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 600;
}
.p-bottom__subtitle {
  text-align: center;
  color: #ffffff;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 600;
}
.p-bottom__tel {
  text-align: center;
  color: #ffffff;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 600;
}
.p-bottom__tel a {
  display: inline-block;
  color: #ffffff;
}
.p-bottom__list {
  margin-top: 4rem;
}
.p-bottom__list dt {
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0em;
  font-weight: 600;
}
.p-bottom__list dd {
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: 0em;
  font-weight: 600;
}
.p-bottom__caption {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  font-weight: 500;
  text-align: center;
  color: #f6b026;
  margin-top: 2rem;
}

/* #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
========================================================================== */
/*# sourceMappingURL=maps/style.css.map */
