/* ///////////////////////////////////////////
  style.scss
/////////////////////////////////////////// */
/*====================================
  font
=====================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*====================================
  common
=====================================*/
.header {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.3);
  z-index: 999;
}
@media (max-width: 768px) {
  .header {
    padding: 0.1rem 0.7rem 0.3rem 2rem;
  }
}
.header__logo {
  width: 21.1rem;
}
@media (max-width: 768px) {
  .header__logo {
    width: 14.1rem;
    z-index: 1000;
    position: relative;
  }
}
.header__logo a {
  display: flex;
}
@media (max-width: 768px) {
  .header__nav {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 998;
    padding-top: 6.4rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: initial;
  margin: initial;
}
@media (max-width: 768px) {
  .header__nav ul {
    flex-flow: column;
    padding: 2rem;
    gap: initial;
  }
}
.header__nav ul li {
  padding: initial;
  margin: initial;
  list-style: none;
}
@media (max-width: 768px) {
  .header__nav ul li {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .header__nav ul li:nth-of-type(1) a {
    border-top: 0.1rem solid #E6E6E6;
  }
}
.header__nav ul li a {
  color: #E60012;
  font-size: 1.6rem;
  font-weight: 700;
  display: inline-block;
}
@media (max-width: 768px) {
  .header__nav ul li a {
    padding: 1.6rem;
    border-bottom: 0.1rem solid #E6E6E6;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.6rem;
  }
}
.header__nav ul li a::before {
  content: "";
  background-image: url(../image/common/arrow_s_right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  display: none;
}
@media (max-width: 768px) {
  .header__nav ul li a::before {
    display: block;
  }
}
.header .hamburger {
  display: none;
  width: 6rem;
  height: 6rem;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1001;
}
@media (max-width: 768px) {
  .header .hamburger {
    display: flex;
  }
}
.header .hamburger__inner {
  position: relative;
  width: 1.8rem;
  height: 1.4rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.header .hamburger__inner span {
  background-color: #E60012;
  width: 1.8rem;
  height: 0.2rem;
  display: inline-block;
  position: absolute;
  left: 0;
  transform-origin: center;
  transition: top 0.35s ease, transform 0.35s ease, opacity 0.25s ease;
}
.header .hamburger__inner span:nth-child(1) {
  top: 0;
}
.header .hamburger__inner span:nth-child(2) {
  top: 0.6rem;
}
.header .hamburger__inner span:nth-child(3) {
  top: 1.2rem;
}
.header .hamburger .h-line-tl::before {
  content: "";
  width: 100%;
  height: 1rem;
  display: block;
  border-bottom: 0.1rem solid #E60012;
  position: absolute;
  top: 0;
  left: 0;
}
.header .hamburger .h-line-tl::after {
  content: "";
  width: 1rem;
  height: 100%;
  display: block;
  border-right: 0.1rem solid #E60012;
  position: absolute;
  top: 0;
  left: 0;
}
.header .hamburger .h-line-rb::before {
  content: "";
  width: 100%;
  height: 1rem;
  display: block;
  border-top: 0.1rem solid #E60012;
  position: absolute;
  bottom: 0;
  left: 0;
}
.header .hamburger .h-line-rb::after {
  content: "";
  width: 1rem;
  height: 100%;
  display: block;
  border-left: 0.1rem solid #E60012;
  position: absolute;
  top: 0;
  right: 0;
}
.header .hamburger.is-open .hamburger__inner span:nth-child(1) {
  top: 0.6rem;
  transform: rotate(45deg);
}
.header .hamburger.is-open .hamburger__inner span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.is-open .hamburger__inner span:nth-child(3) {
  top: 0.6rem;
  transform: rotate(-45deg);
}

.footer {
  padding-top: 0.4rem;
  position: relative;
}
.footer::before {
  content: "";
  height: 0.4rem;
  width: 50%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #E60012;
}
.footer::after {
  content: "";
  height: 0.4rem;
  width: 50%;
  top: 0;
  right: 0;
  position: absolute;
  background-color: #F08324;
}
.footer__top {
  background-color: #009944;
  padding: 4.8rem 2rem;
  display: flex;
  flex-flow: column;
  align-items: start;
  gap: 1.6rem;
}
@media (max-width: 768px) {
  .footer__top {
    padding: 1.2rem 2rem;
  }
}
.footer__top a img {
  width: 18rem;
}
.footer__top ul {
  padding: initial;
  margin: initial;
  display: flex;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .footer__top ul {
    flex-flow: wrap;
    width: 71%;
    gap: 0.8rem 0;
  }
}
.footer__top ul li {
  padding: initial;
  margin: initial;
  list-style: none;
}
.footer__top ul li:nth-last-of-type(1) a {
  border-right: none;
}
.footer__top ul li a {
  color: #fff;
  line-height: 1.8;
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  border-right: 0.1rem solid #fff;
}
@media (max-width: 768px) {
  .footer__top ul li a {
    font-size: 1rem;
  }
}
.footer__top p {
  color: #fff;
  line-height: 1.8;
  font-size: 1.2rem;
  margin: initial;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
@media (max-width: 768px) {
  .footer__top p {
    font-size: 1rem;
    padding: 0 0.8rem;
    width: 71%;
    flex-flow: column;
    align-items: start;
    gap: 0.2rem;
  }
}
.footer__top p span {
  color: #fff;
}
.footer__bottom {
  padding: 3.2rem 2rem;
}
@media (max-width: 768px) {
  .footer__bottom {
    padding: 0.8rem 2.8rem;
  }
}
.footer__bottom small {
  font-size: 1.2rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .footer__bottom small {
    font-size: 1rem;
  }
}

.hidePC {
  display: none;
}
@media (max-width: 768px) {
  .hidePC {
    display: block;
  }
}

@media (max-width: 768px) {
  .hideSP {
    display: none;
  }
}

.ttl__h2 {
  font-size: 3.2rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 0.8rem;
  align-items: center;
  margin: initial;
}
@media (max-width: 768px) {
  .ttl__h2 {
    margin: 0 calc(50% - 50vw);
    width: calc(100vw - 2rem);
    gap: 0.4rem;
  }
}
.ttl__h2 > div {
  padding: 1rem;
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .ttl__h2 > div {
    width: 100%;
    text-align: center;
  }
}
.ttl__h2 > div .en {
  background-color: #E60012;
  font-family: "Inter", sans-serif;
  font-size: 3.2rem;
  color: #fff;
  line-height: 1;
  padding: 0.8rem 3.2rem;
  display: block;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .ttl__h2 > div .en {
    font-size: 2.4rem;
  }
}
.ttl__h2 > div .line-tl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  border-bottom: 0.1rem solid #E60012;
  display: block;
}
.ttl__h2 > div .line-tl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 100%;
  border-right: 0.1rem solid #E60012;
  display: block;
}
.ttl__h2 > div .line-rb::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  border-top: 0.1rem solid #E60012;
  display: block;
}
.ttl__h2 > div .line-rb::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1rem;
  height: 100%;
  border-left: 0.1rem solid #E60012;
  display: block;
}
.ttl__h2 > span {
  color: #E60012;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .ttl__h2 > span {
    font-size: 1.4rem;
    text-align: center;
  }
}
.ttl__h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #E60012;
  font-weight: 700;
  text-align: center;
  margin: initial;
}
@media (max-width: 768px) {
  .ttl__h3 {
    font-size: 2.4rem;
  }
}
.ttl__u-h1 {
  color: #E60012;
  display: flex;
  flex-flow: column;
  gap: 0.8rem;
  margin: initial;
}
.ttl__u-h1 span {
  color: #E60012;
}
.ttl__u-h1 span:nth-of-type(1) {
  font-size: 4.8rem;
  line-height: 1.4;
  letter-spacing: 0.096rem;
}
@media (max-width: 768px) {
  .ttl__u-h1 span:nth-of-type(1) {
    font-size: 2.8rem;
    letter-spacing: 0.056rem;
  }
}
.ttl__u-h1 span:nth-of-type(2) {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.032rem;
}
@media (max-width: 768px) {
  .ttl__u-h1 span:nth-of-type(2) {
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.028rem;
  }
}

.inner {
  max-width: 128rem;
  padding: 0 4rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .inner {
    padding: 0 2rem;
  }
}

.section {
  padding: 16rem 0;
  border-bottom: 0.2rem dashed #ccc;
}
@media (max-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}
.section.btn {
  border-bottom: none;
}

.seemore a {
  font-size: 1.8rem;
  color: #E60012;
  font-weight: 700;
  background-color: #fff;
  border: 2px solid #E60012;
  aspect-ratio: 300/64;
  display: inline-block;
  width: 30rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 3.2rem 1.6rem 8rem;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .seemore a {
    font-size: 1.6rem;
  }
}
.seemore a::after {
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  background-image: url(../image/common/arrow_l_right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s;
}
.seemore a:hover {
  background-color: #E60012;
  color: #fff;
  transition: all 0.3s;
}
.seemore a:hover::after {
  background-image: url(../image/common/arrow_l_right_white.svg);
  transition: all 0.3s;
}
.seemore__special a {
  padding: 1.6rem 3.2rem 1.6rem 4.8rem;
}
.seemore__special a::after {
  background-image: url(../image/common/link_outer_l.svg);
}
.seemore__thoughts {
  margin-top: 4rem;
}
.seemore__thoughts a {
  padding: 1.6rem 3.2rem;
  width: 34rem;
  height: 6.4rem;
  margin: auto;
}
@media (max-width: 768px) {
  .seemore__thoughts a {
    width: 30rem;
  }
}
.seemore__thoughts a::after {
  background-image: url(../image/common/link_outer_l.svg);
}
.seemore__thoughts a:hover::after {
  background-image: url(../image/common/link_outer_l_w.svg);
}

.breadcrumb {
  padding: 1.6rem 2.8rem;
}
@media (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb ul {
  display: flex;
  align-items: baseline;
  padding: initial;
  margin: initial;
  gap: 0.8rem;
}
.breadcrumb ul li {
  padding: initial;
  margin: initial;
  list-style: none;
  font-size: 1.2rem;
  line-height: 1.8;
}

.page-top {
  position: absolute;
  bottom: 0;
  right: 1rem;
  z-index: 102;
  aspect-ratio: 150/286;
  -o-object-fit: contain;
     object-fit: contain;
  width: 15rem;
  height: auto;
  display: flex;
  background-color: initial;
  border: none;
  padding: initial;
}
@media (max-width: 768px) {
  .page-top {
    width: 10rem;
  }
}

.btn__lists ul {
  padding: initial;
  margin: initial;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .btn__lists ul {
    flex-flow: column;
    gap: 2rem;
  }
}
.btn__lists ul li {
  padding: initial;
  margin: initial;
  list-style: none;
}
.btn__lists ul li .prev::before {
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../image/common/arrow_l_left.svg);
  transition: all 0.3s;
}
.btn__lists ul li .prev:hover::before {
  background-image: url(../image/common/arrow_l_left_white.svg);
  transition: all 0.3s;
}
.btn__lists ul li .return::before {
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../image/common/arrow_return.svg);
  transition: all 0.3s;
}
.btn__lists ul li .return:hover::before {
  background-image: url(../image/common/arrow_return_white.svg);
  transition: all 0.3s;
}
.btn__lists ul li .next {
  justify-content: end;
}
.btn__lists ul li .next::after {
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../image/common/arrow_l_right.svg);
  transition: all 0.3s;
}
.btn__lists ul li .next:hover {
  background-color: #E60012;
  color: #fff;
  transition: all 0.3s;
}
.btn__lists ul li .next:hover::after {
  background-image: url(../image/common/arrow_l_right_white.svg);
  transition: all 0.3s;
}
.btn__lists ul li a {
  font-size: 1.8rem;
  color: #E60012;
  font-weight: 700;
  background-color: #fff;
  border: 2px solid #E60012;
  aspect-ratio: 300/64;
  display: inline-block;
  width: 30rem;
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.6rem 3.2rem;
  gap: 1.6rem;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .btn__lists ul li a {
    font-size: 1.6rem;
    gap: 0.4rem;
  }
}
.btn__lists ul li a:hover {
  background-color: #E60012;
  color: #fff;
  transition: all 0.3s;
}

/*====================================
  config
=====================================*/
html {
  font-size: 0.625vw;
}
@media (max-width: 768px) {
  html {
    font-size: 2.5vw;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
}

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

figure {
  margin: initial;
}

p,
div,
span,
ul,
li,
ol,
dl,
dt,
dd {
  color: #333333;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 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 */
}

/**
 * 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: 1em; /* 2 */
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -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: 1em; /* 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;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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 odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * 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. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
}

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.cf:after {
  clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
  *zoom: 1;
}

/*====================================
  page
=====================================*/
#top .fv {
  position: relative;
  aspect-ratio: 1600/700;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  #top .fv {
    aspect-ratio: 400/500;
  }
}
#top .fv__vec {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
#top .fv__vec--sp img {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
#top .fv__vec--sp img.is-show {
  opacity: 1;
  transform: translateY(0);
}
#top .fv__vec--01 {
  position: absolute;
  aspect-ratio: 320.306/233.0335;
  -o-object-fit: contain;
     object-fit: contain;
  width: 32.0306rem;
  height: auto;
  top: 17rem;
  left: 1.5rem;
}
@media (max-width: 768px) {
  #top .fv__vec--01 {
    aspect-ratio: 133.1917/115.7414;
    width: 13.31917rem;
    top: 8rem;
    left: 1rem;
  }
}
#top .fv__vec--02 {
  position: absolute;
  aspect-ratio: 95.7654/136.4319;
  -o-object-fit: contain;
     object-fit: contain;
  width: 9.57654rem;
  height: auto;
  top: 15rem;
  left: 52.5rem;
}
@media (max-width: 768px) {
  #top .fv__vec--02 {
    aspect-ratio: 34.1645/55.3182;
    width: 3.41645rem;
    top: 22rem;
    left: 4.5rem;
  }
}
#top .fv__vec--03 {
  position: absolute;
  aspect-ratio: 520.5752/315.253;
  -o-object-fit: contain;
     object-fit: contain;
  width: 52.05752rem;
  height: auto;
  top: 37rem;
  left: -2.7rem;
}
@media (max-width: 768px) {
  #top .fv__vec--03 {
    aspect-ratio: 231.7791/159.0119;
    width: 23.17791rem;
    top: 34rem;
    left: -6rem;
  }
}
#top .fv__vec--04 {
  position: absolute;
  aspect-ratio: 65.6241/88.6573;
  -o-object-fit: contain;
     object-fit: contain;
  width: 6.56241rem;
  height: auto;
  top: 14rem;
  right: 51rem;
}
@media (max-width: 768px) {
  #top .fv__vec--04 {
    aspect-ratio: 138.7471/160.6349;
    width: 13.87471rem;
    top: 3rem;
    right: -4.7em;
  }
}
#top .fv__vec--05 {
  position: absolute;
  aspect-ratio: 316.3399/277.3421;
  -o-object-fit: contain;
     object-fit: contain;
  width: 31.63399rem;
  height: auto;
  top: 12rem;
  right: -4rem;
}
@media (max-width: 768px) {
  #top .fv__vec--05 {
    aspect-ratio: 59.1907/114.7217;
    width: 5.91907rem;
    top: 25rem;
    right: 2em;
  }
}
#top .fv__vec--06 {
  position: absolute;
  aspect-ratio: 256.1254/181.2097;
  -o-object-fit: contain;
     object-fit: contain;
  width: 25.61254rem;
  height: auto;
  top: 33rem;
  right: 29rem;
}
@media (max-width: 768px) {
  #top .fv__vec--06 {
    aspect-ratio: 125.857/127.5486;
    width: 12.5857rem;
    top: 37rem;
    right: 1.5em;
  }
}
#top .fv__vec--07 {
  position: absolute;
  aspect-ratio: 460.515/287.6077;
  -o-object-fit: contain;
     object-fit: contain;
  width: 46.0515rem;
  height: auto;
  top: 40rem;
  right: -2rem;
}
#top .fv__vec img {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
#top .fv__vec img.is-show {
  opacity: 1;
  transform: translateY(0);
}
#top .fv h1 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin: initial;
  width: 100%;
}
@media (max-width: 768px) {
  #top .fv h1 {
    top: 0;
    width: 100%;
    height: auto;
    transform: initial;
  }
}
#top .fv h1 img {
  width: 100%;
}
@media (max-width: 768px) {
  #top .fv h1 img {
    width: 100%;
    height: auto;
  }
}
#top .slogan {
  padding-top: initial;
}
#top .slogan__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 8rem;
}
@media (max-width: 768px) {
  #top .slogan__inner {
    gap: 3.2rem;
  }
}
#top .slogan__txt {
  color: #E60012;
  line-height: 1.8;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin: initial;
}
@media (max-width: 768px) {
  #top .slogan__txt {
    text-align: start;
    font-size: 1.8rem;
  }
}
#top .message {
  position: relative;
}
#top .message::before {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1600/200;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 6.4rem;
  left: 0;
  display: block;
  background-image: url(../image/pc/top/message-bk.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  #top .message::before {
    aspect-ratio: 400/133.33;
    top: 0;
    background-image: url(../image/sp/top/message-bk.webp);
    z-index: 100;
  }
}
#top .message__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 3.2rem;
  position: relative;
}
@media (max-width: 768px) {
  #top .message__inner {
    gap: 2rem;
  }
}
#top .message__profile {
  padding: 1rem;
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #top .message__profile {
    position: relative;
    bottom: initial;
    left: initial;
    transform: initial;
    margin: 0 calc(50% - 50vw);
    width: calc(100vw - 2rem);
  }
}
#top .message__profile .p-line-tl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  border-bottom: 0.1rem solid #E60012;
  display: block;
}
#top .message__profile .p-line-tl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 100%;
  border-right: 0.1rem solid #E60012;
  display: block;
}
#top .message__profile .p-line-rb::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  border-top: 0.1rem solid #E60012;
  display: block;
}
#top .message__profile .p-line-rb::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1rem;
  height: 100%;
  border-left: 0.1rem solid #E60012;
  display: block;
}
#top .message__profile-inner {
  background-color: #E60012;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 4rem;
  width: 96rem;
  height: auto;
}
@media (max-width: 768px) {
  #top .message__profile-inner {
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 1.6rem;
    width: 100%;
    height: auto;
    gap: 1.6rem;
  }
}
#top .message__profile-inner p {
  margin: initial;
  color: #fff;
}
#top .message__profile-inner p:nth-of-type(1) {
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 700;
}
@media (max-width: 768px) {
  #top .message__profile-inner p:nth-of-type(1) {
    font-size: 1.8rem;
    text-align: center;
  }
}
#top .message__profile-inner p:nth-of-type(2) {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: end;
}
@media (max-width: 768px) {
  #top .message__profile-inner p:nth-of-type(2) {
    font-size: 1.4rem;
    text-align: center;
  }
}
#top .message .seemore {
  position: absolute;
  bottom: -2.9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
@media (max-width: 768px) {
  #top .message .seemore {
    position: relative;
    bottom: initial;
    left: initial;
    transform: initial;
  }
}
#top .history {
  position: relative;
}
#top .history::before {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1600/200;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 6.4rem;
  left: 0;
  display: block;
  background-image: url(../image/pc/top/history-bk.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  #top .history::before {
    aspect-ratio: 400/133.33;
    top: 0;
    background-image: url(../image/sp/top/history-bk.webp);
    z-index: 100;
  }
}
#top .history__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 3.2rem;
  position: relative;
}
@media (max-width: 768px) {
  #top .history__inner {
    gap: 2rem;
  }
}
#top .history__slider {
  margin: 0 calc(50% - 50vw);
  width: calc(100vw - 20px);
}
#top .history__slider .swiper .swiper-wrapper {
  transition-timing-function: linear;
}
#top .history__slider .swiper .swiper-wrapper .swiper-slide {
  width: auto;
}
#top .history .seemore {
  position: absolute;
  bottom: -2.9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
#top .library {
  position: relative;
}
#top .library::before {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1600/200;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 6.4rem;
  left: 0;
  display: block;
  background-image: url(../image/pc/top/library-bk.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  #top .library::before {
    aspect-ratio: 400/133.33;
    top: 0;
    background-image: url(../image/sp/top/library-bk.webp);
    z-index: 100;
  }
}
#top .library__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 3.2rem;
  position: relative;
}
@media (max-width: 768px) {
  #top .library__inner {
    gap: 2rem;
  }
}
#top .library__img ul {
  padding: initial;
  margin: initial;
  display: flex;
  flex-flow: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  #top .library__img ul {
    gap: 0.2rem;
  }
}
#top .library__img ul li {
  padding: initial;
  margin: initial;
  list-style: none;
  width: calc(50% - 0.5rem);
  display: flex;
}
@media (max-width: 768px) {
  #top .library__img ul li {
    width: calc(50% - 0.1rem);
  }
}
#top .library .seemore {
  position: absolute;
  bottom: -2.9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
#top .story {
  position: relative;
}
#top .story::before {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1600/200;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 6.4rem;
  left: 0;
  display: block;
  background-image: url(../image/pc/top/story-bk.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  #top .story::before {
    aspect-ratio: 400/133.33;
    top: 0;
    background-image: url(../image/sp/top/story-bk.webp);
    z-index: 100;
  }
}
#top .story__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 3.2rem;
  position: relative;
}
@media (max-width: 768px) {
  #top .story__inner {
    gap: 2rem;
  }
}
#top .story__content {
  display: flex;
  align-items: start;
  gap: 2rem;
  border-top: 0.1rem solid #ccc;
  border-bottom: 0.1rem solid #ccc;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  #top .story__content {
    flex-flow: column;
    gap: 4rem;
  }
}
#top .story__content figure {
  width: calc(50% - 1rem);
  display: flex;
}
@media (max-width: 768px) {
  #top .story__content figure {
    width: 100%;
  }
}
#top .story__content > div {
  width: calc(50% - 1rem);
  display: flex;
  flex-flow: column;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  #top .story__content > div {
    width: 100%;
  }
}
#top .story__content > div span {
  color: #fff;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.36px;
  background-color: #E60012;
  padding: 0.4rem 1.6rem;
  display: inline-block;
}
@media (max-width: 768px) {
  #top .story__content > div span {
    font-size: 1.6rem;
  }
}
#top .story__content > div h4 {
  color: #E60012;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.36px;
  font-size: 1.8rem;
  margin: initial;
}
@media (max-width: 768px) {
  #top .story__content > div h4 {
    font-size: 1.6rem;
  }
}
#top .story__content > div p {
  color: #E60012;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.28px;
  margin: initial;
}
@media (max-width: 768px) {
  #top .story__content > div p {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  #top .story__content > div .seemore {
    margin: auto;
  }
}
#top .quiz {
  position: relative;
}
#top .quiz::before {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1600/200;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 6.4rem;
  left: 0;
  display: block;
  background-image: url(../image/pc/top/quiz-bk.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  #top .quiz::before {
    aspect-ratio: 400/133.33;
    top: 0;
    background-image: url(../image/sp/top/quiz-bk.webp);
    z-index: 100;
  }
}
#top .quiz__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 3.2rem;
  position: relative;
}
@media (max-width: 768px) {
  #top .quiz__inner {
    gap: 2rem;
  }
}
#top .quiz .seemore {
  position: absolute;
  bottom: -2.9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
#top .thoughts {
  position: relative;
}
#top .thoughts::before {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1600/200;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 6.4rem;
  left: 0;
  display: block;
  background-image: url(../image/pc/top/thoughts-bk.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
@media (max-width: 768px) {
  #top .thoughts::before {
    aspect-ratio: 400/133.33;
    top: 0;
    background-image: url(../image/sp/top/thoughts-bk.webp);
    z-index: 100;
  }
}
#top .thoughts__inner-under {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 1rem;
  position: relative;
}
#top .thoughts__inner-under .t-line-tl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  border-bottom: 0.1rem solid #E60012;
  display: block;
}
#top .thoughts__inner-under .t-line-tl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 100%;
  border-right: 0.1rem solid #E60012;
  display: block;
}
#top .thoughts__inner-under .t-line-rb::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  border-top: 0.1rem solid #E60012;
  display: block;
}
#top .thoughts__inner-under .t-line-rb::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1rem;
  height: 100%;
  border-left: 0.1rem solid #E60012;
  display: block;
}
#top .thoughts__inner-under .ttl__h2 {
  z-index: 100;
}
#top .thoughts__inner {
  padding: 0 3rem;
  position: relative;
}
@media (max-width: 768px) {
  #top .thoughts__inner {
    padding: 0 1rem;
  }
}
#top .thoughts .ttl__h2 {
  margin-top: -4rem;
}
@media (max-width: 768px) {
  #top .thoughts .ttl__h2 > div {
    width: initial;
  }
}
@media (max-width: 768px) {
  #top .thoughts .ttl__h2 > div .en {
    display: inline-block;
  }
}
#top .thoughts figure {
  margin-top: 5.7rem;
  margin-bottom: 4rem;
  width: 20rem;
}
@media (max-width: 768px) {
  #top .thoughts figure {
    margin-top: 2.6rem;
  }
}
#top .thoughts figure img {
  width: 20rem;
}
#top .thoughts__txt {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #E60012;
  text-align: center;
  width: 100%;
  padding: 0 4rem 4rem;
  margin: initial;
}
@media (max-width: 768px) {
  #top .thoughts__txt {
    font-size: 1.4rem;
    text-align: start;
  }
}

#message .breadcrumb {
  margin-top: 10rem;
}
#message .mv {
  background-image: url(../image/pc/message/mv.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1600/520;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  #message .mv {
    margin-top: 6.4rem;
    background-image: url(../image/sp/message/mv.webp);
    aspect-ratio: 400/520;
  }
}
#message .mv__inner {
  display: flex;
  flex-flow: column;
  align-items: start;
  justify-content: space-between;
  height: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#message .mv__catch {
  color: #E60012;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.064rem;
  margin: initial;
  background-color: #fff;
  padding: 0.4rem 1.6rem;
  display: inline-block;
}
@media (max-width: 768px) {
  #message .mv__catch {
    font-size: 2.4rem;
    letter-spacing: 0.048rem;
    width: 100%;
  }
}
#message .mv__copy {
  display: flex;
  flex-flow: column;
  gap: 0.8rem;
  align-items: start;
}
#message .mv__copy p {
  color: #E60012;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.064rem;
  margin: initial;
  background-color: #fff;
  padding: 0.4rem 1.6rem;
  display: inline-block;
}
@media (max-width: 768px) {
  #message .mv__copy p {
    font-size: 2.4rem;
    letter-spacing: 0.048rem;
    width: 100%;
  }
}
#message .mv__copy p:nth-of-type(1) span {
  display: none;
}
@media (max-width: 768px) {
  #message .mv__copy p:nth-of-type(1) span {
    display: inline;
  }
}
@media (max-width: 768px) {
  #message .mv__copy p:nth-of-type(2) {
    display: none;
  }
}
#message .mv__copy p span {
  color: #E60012;
}
#message .under {
  display: flex;
  flex-flow: column;
  gap: 2rem;
}
@media (max-width: 768px) {
  #message .under {
    padding: 4rem 0;
  }
}
#message .under__block h2 {
  color: #E60012;
  font-size: 2.4rem;
  letter-spacing: 0.048rem;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #E60012;
  text-align: center;
  margin: initial;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  #message .under__block h2 {
    font-size: 2rem;
    letter-spacing: 0.04rem;
  }
}
#message .under__content {
  max-width: 80rem;
  margin: 0 auto;
}
#message .under__content p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.036rem;
}
@media (max-width: 768px) {
  #message .under__content p {
    font-size: 1.6rem;
  }
}
#message .under__content figure {
  display: flex;
  flex-flow: column;
  gap: 2rem;
}
#message .under__content figure figcaption {
  text-align: end;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  #message .under__content figure figcaption {
    font-size: 1.6rem;
  }
}
#message .under__content span {
  display: block;
  margin-left: auto;
}
#message .under__content span img {
  aspect-ratio: 200/106;
  -o-object-fit: contain;
     object-fit: contain;
  width: 20rem;
  height: auto;
}

#story .breadcrumb {
  margin-top: 10rem;
}
#story .mv {
  background-image: url(../image/pc/story/mv.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1600/520;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  #story .mv {
    margin-top: 6.4rem;
    background-image: url(../image/sp/story/mv.webp);
    aspect-ratio: 400/520;
  }
}
#story .mv__inner {
  display: flex;
  flex-flow: column;
  align-items: start;
  justify-content: space-between;
  height: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#story .mv__copy {
  display: flex;
  flex-flow: column;
  gap: 0.8rem;
  align-items: start;
}
#story .mv__copy > span {
  background-color: #E60012;
  color: #fff;
  display: inline-block;
  padding: 0.4rem 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #story .mv__copy > span {
    font-size: 1.6rem;
  }
}
#story .mv__copy p {
  color: #E60012;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.064rem;
  margin: initial;
  background-color: #fff;
  padding: 0.4rem 1.6rem;
  display: inline-block;
}
@media (max-width: 768px) {
  #story .mv__copy p {
    font-size: 2.4rem;
    letter-spacing: 0.048rem;
    width: 100%;
  }
}
#story .mv__copy p:nth-of-type(1) span {
  display: none;
}
@media (max-width: 768px) {
  #story .mv__copy p:nth-of-type(1) span {
    display: inline;
  }
}
@media (max-width: 768px) {
  #story .mv__copy p:nth-of-type(2) {
    display: none;
  }
}
#story .mv__copy p span {
  color: #E60012;
}
#story .under {
  display: flex;
  flex-flow: column;
  gap: 8rem;
}
@media (max-width: 768px) {
  #story .under {
    padding: 4rem 0;
  }
}
#story .under__block h2 {
  color: #E60012;
  font-size: 2.4rem;
  letter-spacing: 0.048rem;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #E60012;
  text-align: center;
  margin: initial;
  margin-bottom: 4rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  #story .under__block h2 {
    font-size: 2rem;
    letter-spacing: 0.04rem;
  }
}
#story .under__content {
  max-width: 80rem;
  margin: 0 auto;
}
#story .under__content p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.036rem;
}
@media (max-width: 768px) {
  #story .under__content p {
    font-size: 1.6rem;
  }
}
#story .under__content figure {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
#story .under__content figure figcaption {
  text-align: end;
  font-size: 1.8rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #story .under__content figure figcaption {
    font-size: 1.6rem;
  }
}
#story .under__content span {
  display: block;
  margin-left: auto;
}
#story .under__content span img {
  aspect-ratio: 200/106;
  -o-object-fit: contain;
     object-fit: contain;
  width: 20rem;
  height: auto;
}
#story .under__content .emphasis {
  color: #E60012;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04rem;
}
@media (max-width: 768px) {
  #story .under__content .emphasis {
    font-size: 1.8rem;
    text-align: left;
  }
}
#story .story {
  position: relative;
}
#story .story::before {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1600/200;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 6.4rem;
  left: 0;
  display: block;
  background-image: url(../image/pc/top/story-bk.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  #story .story::before {
    aspect-ratio: 400/133.33;
    top: 0;
    background-image: url(../image/sp/top/story-bk.webp);
    z-index: 100;
  }
}
#story .story__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 3.2rem;
  position: relative;
}
@media (max-width: 768px) {
  #story .story__inner {
    gap: 2rem;
  }
}
#story .story__content {
  display: flex;
  align-items: start;
  gap: 2rem;
  border-bottom: 0.1rem solid #ccc;
  padding: 2rem 0;
}
#story .story__content:nth-of-type(1) {
  border-top: 0.1rem solid #ccc;
}
@media (max-width: 768px) {
  #story .story__content {
    flex-flow: column;
    gap: 4rem;
  }
}
#story .story__content figure {
  width: calc(50% - 1rem);
  display: flex;
}
@media (max-width: 768px) {
  #story .story__content figure {
    width: 100%;
  }
}
#story .story__content > div {
  width: calc(50% - 1rem);
  display: flex;
  flex-flow: column;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  #story .story__content > div {
    width: 100%;
  }
}
#story .story__content > div span {
  color: #fff;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.36px;
  background-color: #E60012;
  padding: 0.4rem 1.6rem;
  display: inline-block;
}
@media (max-width: 768px) {
  #story .story__content > div span {
    font-size: 1.6rem;
  }
}
#story .story__content > div h4 {
  color: #E60012;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.36px;
  font-size: 1.8rem;
  margin: initial;
}
@media (max-width: 768px) {
  #story .story__content > div h4 {
    font-size: 1.6rem;
  }
}
#story .story__content > div p {
  color: #E60012;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.28px;
  margin: initial;
}
@media (max-width: 768px) {
  #story .story__content > div p {
    font-size: 1.2rem;
  }
}
#story .story__content > div .seemore {
  margin: auto;
}

#library .breadcrumb {
  margin-top: 10rem;
}
#library .mv {
  background-image: url(../image/pc/library/mv.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1600/520;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  #library .mv {
    margin-top: 6.4rem;
    background-image: url(../image/sp/library/mv.webp);
    aspect-ratio: 400/520;
  }
}
#library .mv__inner {
  display: flex;
  flex-flow: column;
  align-items: start;
  justify-content: space-between;
  height: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#library .mv__copy {
  display: flex;
  flex-flow: column;
  gap: 0.8rem;
  align-items: start;
}
#library .mv__copy p {
  color: #E60012;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.064rem;
  margin: initial;
  background-color: #fff;
  padding: 0.4rem 1.6rem;
  display: inline-block;
}
@media (max-width: 768px) {
  #library .mv__copy p {
    font-size: 2.4rem;
    letter-spacing: 0.048rem;
    width: 100%;
  }
}
#library .mv__copy p:nth-of-type(1) span {
  display: none;
}
@media (max-width: 768px) {
  #library .mv__copy p:nth-of-type(1) span {
    display: inline;
  }
}
@media (max-width: 768px) {
  #library .mv__copy p:nth-of-type(2) {
    display: none;
  }
}
#library .mv__copy p span {
  color: #E60012;
}
#library .movie__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 2rem;
}
#library .movie h2 {
  color: #E60012;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.064rem;
  margin: initial;
  text-align: center;
  align-self: stretch;
  color: var(--local-Rule-Seven-Red, #E60012);
  font-family: var(--font-family-Default, "Noto Sans JP");
  font-size: var(--font-size-rule-xxx-l, 32px);
  font-style: normal;
  line-height: 150%;
  letter-spacing: 0.64px;
}
@media (max-width: 768px) {
  #library .movie h2 {
    font-size: 2.4rem;
  }
}
#library .movie figure {
  position: relative;
}
#library .movie figure::before {
  content: "";
  width: 8rem;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../image/pc/library/ico_play.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#library .movie p {
  color: #E60012;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.032rem;
  font-weight: 700;
  text-align: center;
  margin: initial;
}
@media (max-width: 768px) {
  #library .movie p {
    text-align: left;
  }
}
#library .movie .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
#library .movie .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#quiz .breadcrumb {
  margin-top: 10rem;
}
#quiz .mv {
  background-image: url(../image/pc/quiz/mv.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1600/520;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  #quiz .mv {
    margin-top: 6.4rem;
    background-image: url(../image/sp/quiz/mv.webp);
    aspect-ratio: 400/520;
  }
}
#quiz .mv__inner {
  display: flex;
  flex-flow: column;
  align-items: start;
  justify-content: space-between;
  height: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#quiz .mv__copy {
  display: flex;
  flex-flow: column;
  gap: 0.8rem;
  align-items: start;
}
#quiz .mv__copy p {
  color: #E60012;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.064rem;
  margin: initial;
  background-color: #fff;
  padding: 0.4rem 1.6rem;
  display: inline-block;
}
@media (max-width: 768px) {
  #quiz .mv__copy p {
    font-size: 2.4rem;
    letter-spacing: 0.048rem;
    width: 100%;
  }
}
#quiz .mv__copy p:nth-of-type(1) span {
  display: none;
  color: #E60012;
}
@media (max-width: 768px) {
  #quiz .mv__copy p:nth-of-type(1) span {
    display: inline;
  }
}
@media (max-width: 768px) {
  #quiz .mv__copy p:nth-of-type(2) {
    display: none;
  }
}
#quiz .qa__inner {
  padding: 0 3rem;
}
@media (max-width: 768px) {
  #quiz .qa__inner {
    padding: 0 1rem;
  }
}
#quiz .qa__ttl {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
@media (max-width: 768px) {
  #quiz .qa__ttl {
    gap: 0.6rem;
  }
}
#quiz .qa__ttl h2 {
  color: #E60012;
  font-size: 3.2rem;
  line-height: 1.8;
  letter-spacing: 0.064rem;
  margin: initial;
}
@media (max-width: 768px) {
  #quiz .qa__ttl h2 {
    font-size: 2.4rem;
  }
}
#quiz .qa__tag {
  position: relative;
  padding: 1rem;
}
#quiz .qa__tag p {
  line-height: 1;
  margin: initial;
  font-size: 4rem;
  letter-spacing: 0.08rem;
  background-color: #E60012;
  color: #fff;
  font-weight: 700;
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#quiz .qa__block {
  position: relative;
  padding: 8rem 16rem;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  #quiz .qa__block {
    padding: 2rem;
  }
}
#quiz .qa__block:nth-last-of-type(1) {
  margin-bottom: initial;
}
#quiz .qa__block--question {
  display: flex;
  flex-flow: column;
  gap: 3.2rem;
}
@media (max-width: 768px) {
  #quiz .qa__block--question {
    gap: 2rem;
  }
}
#quiz .qa__block--question h3 {
  margin: initial;
  color: #E60012;
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.048rem;
}
@media (max-width: 768px) {
  #quiz .qa__block--question h3 {
    font-size: 2rem;
    padding: 0 1rem;
  }
}
#quiz .qa__block--answer-wrap {
  margin-top: 8rem;
  display: none;
}
@media (max-width: 768px) {
  #quiz .qa__block--answer-wrap {
    margin-top: 2rem;
  }
}
#quiz .qa__block--answer-wrap.is-show {
  display: block;
}
#quiz .qa__block--answer {
  display: flex;
  flex-flow: column;
  gap: 3.2rem;
  padding-top: 8rem;
  border-top: 0.1rem solid #E60012;
}
@media (max-width: 768px) {
  #quiz .qa__block--answer {
    padding-top: 2rem;
  }
}
#quiz .qa__block--answer a {
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.036rem;
  color: #E60012;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  #quiz .qa__block--answer a {
    font-size: 1.6rem;
    margin: 0 1rem;
  }
}
#quiz .qa__block--answer a::before {
  content: "";
  background-image: url(../image/common/link_outer_l.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
}
#quiz .qa__content-a {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  background-color: #E60012;
  border-radius: 100rem;
  padding: 1.85rem 1.6rem;
  list-style: none;
}
@media (max-width: 768px) {
  #quiz .qa__content-a {
    padding: 0.8rem;
    gap: 0.8rem;
    margin: 0 1rem;
  }
}
#quiz .qa__content-a span {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100rem;
  font-size: 2.4rem;
  letter-spacing: 0.048rem;
  color: #E60012;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #quiz .qa__content-a span {
    font-size: 2rem;
  }
}
#quiz .qa__content-a p {
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.048rem;
  margin: initial;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 768px) {
  #quiz .qa__content-a p {
    font-size: 1.6rem;
  }
}
#quiz .qa__txt {
  color: #E60012;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.036rem;
  margin: initial;
}
@media (max-width: 768px) {
  #quiz .qa__txt {
    font-size: 1.6rem;
    margin: 0 1rem;
  }
}
#quiz .qa__lists {
  display: flex;
  flex-flow: column;
  gap: 1.6rem;
  padding: initial;
  margin: initial;
}
@media (max-width: 768px) {
  #quiz .qa__lists {
    padding: 0 1rem;
  }
}
#quiz .qa__lists li {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  background-color: #E6E6E6;
  border-radius: 100rem;
  padding: 1.85rem 1.6rem;
  cursor: pointer;
  list-style: none;
  transition: all 0.1s;
}
@media (max-width: 768px) {
  #quiz .qa__lists li {
    padding: 0.8rem;
    gap: 0.8rem;
  }
}
#quiz .qa__lists li span {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333333;
  border-radius: 100rem;
  font-size: 2.4rem;
  letter-spacing: 0.048rem;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #quiz .qa__lists li span {
    font-size: 2rem;
  }
}
#quiz .qa__lists li p {
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.048rem;
  margin: initial;
  font-weight: 700;
}
@media (max-width: 768px) {
  #quiz .qa__lists li p {
    font-size: 1.6rem;
  }
}
#quiz .qa__lists li.is-selected {
  transition: all 0.1s;
  background-color: #80BFFF;
}
#quiz .qa__lists li.is-selected.correct {
  background: #FFE680;
  box-shadow: 0 0 10px #d6c05c, inset 0 3px 6px rgba(0, 0, 0, 0.2);
}
#quiz .qa__lists li:hover {
  background-color: #FFF2BF;
}
#quiz .qa .q-line-tl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  border-bottom: 0.1rem solid #E60012;
  display: block;
}
#quiz .qa .q-line-tl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 100%;
  border-right: 0.1rem solid #E60012;
  display: block;
}
#quiz .qa .q-line-rb::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  border-top: 0.1rem solid #E60012;
  display: block;
}
#quiz .qa .q-line-rb::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1rem;
  height: 100%;
  border-left: 0.1rem solid #E60012;
  display: block;
}

#history .breadcrumb {
  margin-top: 10rem;
}
#history .section {
  border: none;
  padding: 4rem 0;
}
#history .back-line {
  position: relative;
}
#history .back-line::before {
  content: "";
  width: 0.1rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E60012;
}
@media (max-width: 768px) {
  #history .back-line::before {
    left: 4rem;
    transform: initial;
  }
}
#history .circle {
  width: 4rem;
  height: 4rem;
  display: block;
  border: 0.2rem solid #E60012;
  border-radius: 100rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #history .circle {
    margin-left: 2rem;
  }
}
#history .circle::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background-color: #E60012;
  border-radius: 100rem;
  display: block;
}
#history .circle__top {
  margin-top: 4rem;
}
#history .circle__bottom {
  margin-bottom: 4rem;
}
#history .mv {
  background-image: url(../image/pc/history/mv.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1600/520;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  #history .mv {
    margin-top: 6.4rem;
    background-image: url(../image/sp/history/mv.webp);
    aspect-ratio: 400/520;
  }
}
#history .mv__inner {
  display: flex;
  flex-flow: column;
  align-items: start;
  justify-content: space-between;
  height: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#history .mv__copy {
  display: flex;
  flex-flow: column;
  gap: 0.8rem;
  align-items: start;
}
#history .mv__copy p {
  color: #E60012;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.064rem;
  margin: initial;
  background-color: #fff;
  padding: 0.4rem 1.6rem;
  display: inline-block;
}
@media (max-width: 768px) {
  #history .mv__copy p {
    font-size: 2.4rem;
    letter-spacing: 0.048rem;
    width: 100%;
  }
}
#history .mv__copy p:nth-of-type(1) span {
  display: none;
}
@media (max-width: 768px) {
  #history .mv__copy p:nth-of-type(1) span {
    display: inline;
  }
}
@media (max-width: 768px) {
  #history .mv__copy p:nth-of-type(2) {
    display: none;
  }
}
#history .mv__copy p span {
  color: #E60012;
}
#history .journey {
  position: relative;
}
#history .journey__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 3.2rem;
}
#history .journey__turning {
  position: relative;
  width: 100%;
  z-index: 103;
}
#history .journey__turning-i {
  background-color: #E60012;
  text-align: center;
  padding: 1.6rem 3.2rem;
  display: flex;
  flex-flow: column;
  gap: 0.4rem;
}
#history .journey__turning-i p {
  margin: initial;
  color: #fff;
}
#history .journey__turning-i .date {
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.048rem;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 768px) {
  #history .journey__turning-i .date {
    font-size: 2rem;
  }
}
#history .journey__turning-i .yearnumber {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.032rem;
}
@media (max-width: 768px) {
  #history .journey__turning-i .yearnumber {
    font-size: 1.4rem;
  }
}
#history .journey__turning-i .event {
  font-size: 2.4rem;
  line-height: 1.4;
  letter-spacing: 0.048rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  #history .journey__turning-i .event {
    font-size: 2rem;
  }
}
#history .journey__block {
  position: relative;
  padding: 0 1rem;
  width: 100%;
  z-index: 102;
}
#history .journey__block-i {
  text-align: center;
  padding: 2rem 4rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 1.6rem;
  background-color: #fff;
}
#history .journey__block-i p {
  margin: initial;
}
#history .journey__num {
  position: relative;
  display: inline-block;
}
#history .journey__num span:nth-of-type(1) {
  background-color: #E60012;
  color: #fff;
  font-size: 2.4rem;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0.048rem;
  font-weight: 700;
  padding: 0.8rem 3.2rem;
  display: inline-block;
}
@media (max-width: 768px) {
  #history .journey__num span:nth-of-type(1) {
    font-size: 2rem;
  }
}
#history p.journey__year {
  color: #E60012;
  font-size: 1.6rem;
  letter-spacing: 0.032rem;
  font-weight: 700;
  line-height: 1.8;
  margin: 1rem 0 0 0;
}
@media (max-width: 768px) {
  #history .journey__year {
    font-size: 1.4rem;
  }
}
#history .journey__ttl {
  color: #E60012;
  font-size: 3.2rem;
  line-height: 1.2;
  letter-spacing: 0.064rem;
  margin: initial;
}
@media (max-width: 768px) {
  #history .journey__ttl {
    font-size: 2.4rem;
  }
}
#history .journey__catch img {
  aspect-ratio: 480/270;
  width: 48rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#history .journey__mes {
  color: #E60012;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.032rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  #history .journey__mes {
    font-size: 1.4rem;
    text-align: left;
  }
}
#history .journey__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 768px) {
  #history .journey__content {
    justify-content: end;
  }
}
@media (max-width: 768px) {
  #history .journey__content > span {
    display: none;
  }
}
#history .journey__content.reverse .journey__exp {
  flex-flow: row-reverse;
}
@media (max-width: 768px) {
  #history .journey__content.reverse .journey__exp {
    flex-flow: row;
  }
}
#history .journey__content.reverse .journey__exp::after {
  left: initial;
  right: -0.5rem;
}
@media (max-width: 768px) {
  #history .journey__content.reverse .journey__exp::after {
    right: initial;
    left: -0.5rem;
  }
}
#history .journey__content.full .journey__exp--d {
  width: 100%;
}
@media (max-width: 768px) {
  #history .journey__content.full .journey__exp--date {
    flex-flow: row;
    align-items: center;
  }
}
#history .journey .mt160 {
  margin-top: 16rem;
}
@media (max-width: 768px) {
  #history .journey .s-mt160 {
    margin-top: 16rem;
  }
}
@media (max-width: 768px) {
  #history .journey .s-mt70 {
    margin-top: 7rem;
  }
}
@media (max-width: 768px) {
  #history .journey .s-mt75 {
    margin-top: 7.5rem;
  }
}
@media (max-width: 768px) {
  #history .journey .s-mt80 {
    margin-top: 8rem;
  }
}
@media (max-width: 768px) {
  #history .journey .s-mt90 {
    margin-top: 9rem;
  }
}
@media (max-width: 768px) {
  #history .journey .s-mt100 {
    margin-top: 10rem;
  }
}
@media (max-width: 768px) {
  #history .journey .s-mt110 {
    margin-top: 11rem;
  }
}
@media (max-width: 768px) {
  #history .journey .s-mt120 {
    margin-top: 12rem;
  }
}
@media (max-width: 768px) {
  #history .journey .s-mt125 {
    margin-top: 12.5rem;
  }
}
@media (max-width: 768px) {
  #history .journey .s-mt150 {
    margin-top: 15rem;
  }
}
@media (max-width: 768px) {
  #history .journey .s-mt170 {
    margin-top: 17rem;
  }
}
@media (max-width: 768px) {
  #history .journey .s-mt198 {
    margin-top: 19.8rem;
  }
}
#history .journey .fukidashi {
  position: absolute;
  top: -10.5rem;
  background: linear-gradient(0deg, #008139 0%, #35BD71 90.38%, #6AD499 100%);
  padding: 1.2rem 1.6rem;
  border-radius: 2rem;
  max-width: 48rem;
  width: 100%;
  border: 0.2rem solid #008139;
  z-index: 11;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  #history .journey .fukidashi {
    top: -12.4rem;
  }
}
#history .journey a.fukidashi:hover {
  background: linear-gradient(0deg, #E60012 0%, #E60012 90.38%, #E60012 100%);
  border-color: #E60012;
}
#history .journey .fukidashi::after {
  content: "";
  width: 3.2rem;
  height: 2.4rem;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -2.4rem;
}
#history .journey .fukidashi p {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.8;
  margin: initial;
}
@media (max-width: 768px) {
  #history .journey .fukidashi p {
    font-size: 1.4rem;
  }
}
#history .journey .fukidashi span {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi span {
    font-size: 1.4rem;
  }
}
#history .journey .fukidashi span::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  display: block;
  background-image: url(../image/common/link_outer_l_w.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#history .journey .fukidashi__left {
  left: -4rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__left {
    left: initial;
    right: 0;
    width: 30rem;
  }
}
#history .journey .fukidashi__left::after {
  content: "";
  background-image: url(../image/pc/history/fukidashi_left.svg);
  right: 4rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__left::after {
    right: initial;
    left: 4rem;
  }
}
#history .journey a.fukidashi__left:hover::after {
  background-image: url(../image/pc/history/fukidashi_left_red.svg);
}
#history .journey .fukidashi__right {
  right: -4rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__right {
    left: initial;
    right: 0;
    width: 30rem;
  }
}
#history .journey .fukidashi__right::after {
  content: "";
  background-image: url(../image/pc/history/fukidashi_right.svg);
  left: 4rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__right::after {
    background-image: url(../image/pc/history/fukidashi_left.svg);
  }
}
#history .journey a.fukidashi__right:hover::after {
  background-image: url(../image/pc/history/fukidashi_right_red.svg);
}
@media (max-width: 768px) {
  #history .journey a.fukidashi__right:hover::after {
    background-image: url(../image/pc/history/fukidashi_left_red.svg);
  }
}
#history .journey .fukidashi__01 {
  top: -13.5rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__01 {
    top: -15rem;
  }
}
#history .journey .fukidashi__02 {
  top: -13.3rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__02 {
    top: -17.3rem;
  }
}
#history .journey .fukidashi__03 {
  top: -13.5rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__03 {
    top: -15rem;
  }
}
#history .journey .fukidashi__04 {
  top: -13.5rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__04 {
    top: -15rem;
  }
}
#history .journey .fukidashi__05 {
  top: -13.3rem;
}
#history .journey .fukidashi__06 {
  top: -13.5rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__06 {
    top: -12.5rem;
  }
}
#history .journey .fukidashi__07 {
  top: -13.5rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__07 {
    top: -15rem;
  }
}
@media (max-width: 768px) {
  #history .journey .fukidashi__09 {
    top: -10rem;
  }
}
#history .journey .fukidashi__11 {
  top: -13.5rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__11 {
    top: -15rem;
  }
}
#history .journey .fukidashi__12 {
  top: -16.3rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__12 {
    top: -17.4rem;
  }
}
#history .journey .fukidashi__13 {
  top: -2rem;
  z-index: 1000;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__13 {
    top: -12rem;
  }
}
#history .journey .fukidashi__14 {
  top: -16.4rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__14 {
    top: -20rem;
  }
}
#history .journey .fukidashi__15 {
  top: -7.8rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__15 {
    top: -7.5rem;
  }
}
#history .journey .fukidashi__16 {
  top: -7.8rem;
}
@media (max-width: 768px) {
  #history .journey .fukidashi__16 {
    top: -7.5rem;
  }
}
@media (max-width: 768px) {
  #history .journey .fukidashi__17 {
    top: -12.5rem;
  }
}
@media (max-width: 768px) {
  #history .journey .fukidashi__18 {
    top: -10rem;
  }
}
@media (max-width: 768px) {
  #history .journey .fukidashi__20 {
    top: -10rem;
  }
}
@media (max-width: 768px) {
  #history .journey .fukidashi__21 {
    top: -10rem;
  }
}
#history .journey .ill {
  position: absolute;
  z-index: 100;
  top: -14rem;
}
@media (max-width: 768px) {
  #history .journey .ill {
    display: none;
  }
}
#history .journey .ill__right {
  right: 40rem;
}
#history .journey .ill__left {
  left: 40rem;
}
#history .journey .ill img {
  width: 16rem;
  height: 16rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
#history .journey__exp {
  width: 50%;
  position: relative;
  display: flex;
}
@media (max-width: 768px) {
  #history .journey__exp {
    width: 94.5%;
  }
}
#history .journey__exp::before {
  content: "";
  width: calc(100% - 52rem);
  height: 0.2rem;
  background-color: #E60012;
  display: block;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  #history .journey__exp::before {
    width: calc(100% - 30rem);
  }
}
#history .journey__exp::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  border: 0.2rem solid #E60012;
  background-color: #fff;
  position: absolute;
  top: 1rem;
  left: -0.5rem;
}
#history .journey__exp--c {
  width: 52rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 2.4rem;
  border: 0.1rem solid #E60012;
}
@media (max-width: 768px) {
  #history .journey__exp--c {
    padding: 0.6rem;
    width: 30rem;
  }
}
#history .journey__exp--img {
  width: calc(50% - 1.2rem);
}
@media (max-width: 768px) {
  #history .journey__exp--img {
    width: calc(50% - 0.3rem);
  }
}
#history .journey__exp--d {
  width: calc(50% - 1.2rem);
}
@media (max-width: 768px) {
  #history .journey__exp--d {
    width: calc(50% - 0.3rem);
  }
}
#history .journey__exp--date {
  color: #E60012;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.036rem;
  font-weight: 700;
  margin: initial;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  #history .journey__exp--date {
    font-size: 1.6rem;
    display: flex;
    flex-flow: column;
    margin-bottom: 0.4rem;
  }
}
#history .journey__exp--date span {
  color: #E60012;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.028rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  #history .journey__exp--date span {
    font-size: 1.2rem;
  }
}
#history .journey__exp--txt {
  margin: initial;
  color: #E60012;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.032rem;
}
@media (max-width: 768px) {
  #history .journey__exp--txt {
    font-size: 1.4rem;
  }
}
#history .journey__seireki {
  border: 0.2rem solid #E60012;
  border-radius: 100rem;
  background-color: #fff;
  color: #E60012;
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.048rem;
  z-index: 1;
  font-weight: 700;
  padding: 0.8rem 3.2rem;
  position: relative;
  z-index: 11;
}
@media (max-width: 768px) {
  #history .journey__seireki {
    font-size: 2rem;
    margin-right: auto;
  }
}
#history .h-line-tl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 2rem);
  height: 0;
  border-bottom: 0.1rem solid #E60012;
  display: block;
}
#history .h-line-tl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: calc(100% + 2rem);
  border-right: 0.1rem solid #E60012;
  display: block;
}
#history .h-line-rb::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 2rem);
  height: 0;
  border-top: 0.1rem solid #E60012;
  display: block;
}
#history .h-line-rb::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: calc(100% + 2rem);
  border-left: 0.1rem solid #E60012;
  display: block;
}
#history .visual {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 2rem;
  border-bottom: 0.2rem dashed #ccc;
}
#history .visual h2 {
  margin: initial;
  color: #E60012;
  font-size: 3.2rem;
  line-height: 1.2;
}
#history .visual p {
  margin: initial;
  color: #E60012;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  font-weight: 700;
}
#history .j-lists {
  position: fixed;
  top: 32rem;
  right: 4rem;
  background-color: #fff;
  z-index: 1000;
}
@media (max-width: 768px) {
  #history .j-lists {
    display: none;
  }
}
#history .j-lists ul {
  padding: 1.6rem;
  margin: initial;
  width: 18rem;
}
#history .j-lists ul li {
  padding: initial;
  margin: initial;
  list-style: none;
}
#history .j-lists ul li a {
  color: #E60012;
  font-size: 1.6rem;
  line-height: 1.4;
  display: inline-block;
  padding: 0.8rem;
  width: 100%;
  text-align: center;
  font-weight: 700;
  display: flex;
  flex-flow: column;
}
#history .j-lists ul li a.active {
  background-color: rgba(230, 0, 18, 0.1);
}
#history .j-lists ul li a span {
  font-size: 1rem;
  color: #E60012;
}
#history .sticky-wrap {
  position: sticky;
  top: 10rem;
  z-index: 10;
  display: flex;
  justify-content: center;
}
#history .sticky {
  position: relative;
  top: 0;
  left: auto;
  z-index: 10;
  transition: opacity 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #history .sticky {
    top: 0;
    left: -3.3rem;
    position: absolute;
  }
}
#history .sticky img {
  aspect-ratio: 200/300;
  width: 16rem;
  height: auto;
  display: block;
}
#history .sticky.is-fixed {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}
#history .sticky.is-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}