@charset "UTF-8";
:root {
  --font-family-base: "Noto Sans", sans-serif;
  --font-en: "Barlow", sans-serif;
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-size-base: 1.4rem;
  --color-primary: #020e4f;
  --color-warning: #f00;
  --color-body: #000;
  --input-border-color: #e6e6e6;
  --input-border-width: 0.1rem;
  --input-font-size: 14px;
  --input-font-weight: 400;
  --input-background: #fff;
  --duration-base: 1s;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-size: 10px;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  line-height: 1.5;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, " 游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-all;
  font-weight: 400;
  color: var(--color-body);
}
@media (min-width: 768px) {
  body {
    min-width: 1280px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ol,
ul,
dl {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

b,
strong {
  font-weight: 700;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: 400;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

[hidden] {
  display: none !important;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

img.aligncenter {
  display: block;
  margin: auto;
}
img.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft {
  display: block;
  margin-right: auto;
}

.container {
  margin: 0 auto;
  max-width: 123rem;
  padding-inline: 1.5rem;
  width: 100%;
}

.animate_animated {
  animation-duration: 4s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.animate-imageScale {
  animation-name: imageScale;
}

.fadeUp {
  animation-name: fadeUp;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeScaleIn {
  animation-name: fadeScaleIn;
}

.filterOut {
  animation-name: filterOut;
  animation-duration: 2s;
  transition: opacity calc(var(--duration-base) * 2.6) cubic-bezier(0.19, 1, 0.22, 1) calc(var(--duration-base) * 0.7), filter calc(var(--duration-base) * 2.6) cubic-bezier(0.19, 1, 0.22, 1) calc(var(--duration-base) * 0.7);
}

.reveal {
  animation-name: reveal;
  animation: reveal 4s ease forwards;
  clip-path: inset(0 100% 0 0);
}

@keyframes imageScale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeScaleIn {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes filterOut {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
@keyframes reveal {
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes message_lead_marker_horizontal {
  47% {
    transform: scaleX(1) translate3d(0, 0, 0);
    transform-origin: left;
  }
  47.1%, 50% {
    transform: scaleX(1) translate3d(0, 0, 0);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0) translate3d(0, 0, 0);
    transform-origin: right;
  }
}
@keyframes message_lead_marker_horizontal_reverse {
  47% {
    transform: scaleX(1) translate3d(0, 0, 0);
    transform-origin: right;
  }
  47.1%, 50% {
    transform: scaleX(1) translate3d(0, 0, 0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(0) translate3d(0, 0, 0);
    transform-origin: left;
  }
}
@keyframes message_lead_marker_vertical {
  47% {
    transform: scaleY(1) translate3d(0, 0, 0);
    transform-origin: top;
  }
  47.1%, 50% {
    transform: scaleY(1) translate3d(0, 0, 0);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0) translate3d(0, 0, 0);
    transform-origin: bottom;
  }
}
@keyframes zoomImg {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
@keyframes ani_line_year {
  0% {
    transform-origin: left center;
    transform: scaleX(0);
  }
  40% {
    transform-origin: left center;
    transform: scaleX(1);
  }
  40.01% {
    transform-origin: right center;
    transform: scaleX(1);
  }
  80% {
    transform-origin: right center;
    transform: scaleX(0);
  }
  100% {
    transform-origin: right center;
    transform: scaleX(0);
  }
}
.btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1E1E1E;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: 0.6;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-primary {
  position: relative;
  display: block;
  width: 25rem;
  height: 5rem;
}
@media (min-width: 768px) {
  .btn-primary {
    width: 18.5rem;
    height: 4rem;
  }
  .btn-primary:hover span {
    color: #FFF;
    background-color: rgba(2, 14, 79, 0.8);
  }
}
.btn-primary::after {
  display: inline-block;
  position: absolute;
  z-index: 3;
  right: 2rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  background: url("../images/icon_arrow_01.svg") no-repeat center;
  background-size: 1rem auto;
  transform: translateY(-50%);
  content: "";
}
@media (min-width: 768px) {
  .btn-primary::after {
    right: 1.5rem;
  }
}
.btn-primary::before {
  position: absolute;
  z-index: 1;
  right: -1px;
  bottom: -1px;
  width: 100%;
  height: 100%;
  background-color: #abb0af;
  transition: 0.3s opacity;
  content: "";
}
@media (min-width: 768px) {
  .btn-primary::before {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
.btn-primary span {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  color: #FFF;
  line-height: 1.7142857143;
  font-size: 1.4rem;
  text-align: center;
  transition: 0.3s ease all;
}

.btn-more {
  position: relative;
  padding-bottom: 0.6rem;
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.btn-more::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4.1rem;
  height: 1.5rem;
  background: url("../images/icon_arrow_02.svg") no-repeat center;
  background-size: 4.1rem 1.5rem;
  content: "";
}

.p-lineage__content, .p-origin__inner, .p-modern__inner, .p-champ__inner, .p-delfin__inner, .p-intro__inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: 3.75rem;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.nospace::before, .nospace::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.nospace::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.nospace::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.img-fit {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.img-contain {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.c-txt {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7142857143;
}

.l-main {
  position: relative;
  z-index: 0;
}

.p-inspir {
  display: flex;
  flex-direction: column;
  row-gap: 0.4rem;
  text-align: center;
  color: #FFF;
}
@media (min-width: 768px) {
  .p-inspir {
    align-items: flex-start;
    row-gap: 0.7rem;
  }
}
.p-inspir__txt {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-en);
  letter-spacing: 0.27em;
  color: currentColor;
}
@media (min-width: 768px) {
  .p-inspir__txt {
    font-size: 1.8rem;
    letter-spacing: 0.48em;
  }
}
.p-inspir__txt.--bot {
  letter-spacing: 0.12em;
}
@media (min-width: 768px) {
  .p-inspir__txt.--bot {
    letter-spacing: 0.3em;
  }
}
.p-inspir__year {
  margin-left: 0.4rem;
  font-family: var(--font-en);
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.13em;
  color: currentColor;
}
@media (min-width: 768px) {
  .p-inspir__year {
    margin-left: 0;
    font-size: 7.5rem;
    letter-spacing: 0.2em;
  }
}

.p-mv {
  position: relative;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .p-mv {
    height: 100vh;
  }
}
.p-mv__bg {
  display: block;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 25rem;
}
@media (min-width: 768px) {
  .p-mv__bg {
    height: 100%;
    opacity: 0;
    animation: fadeIn 1s 0.5s ease forwards;
  }
}
@media (max-width: 767px) {
  .p-mv__bg {
    animation-name: filterOut;
    animation-duration: 2s;
    transition: opacity calc(var(--duration-base) * 2.6) cubic-bezier(0.19, 1, 0.22, 1) calc(var(--duration-base) * 0.7), filter calc(var(--duration-base) * 2.6) cubic-bezier(0.19, 1, 0.22, 1) calc(var(--duration-base) * 0.7);
  }
}
.p-mv__inner {
  display: flex;
  align-items: center;
  max-width: 118.5rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 3.75rem;
}
@media (min-width: 768px) {
  .p-mv__inner {
    height: 100%;
  }
}
.p-mv__content {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  margin-top: 17rem;
}
@media (min-width: 768px) {
  .p-mv__content {
    position: relative;
    z-index: 2;
    flex-direction: row;
    justify-content: space-between;
    max-width: 72rem;
    margin-top: 0;
  }
}
.p-mv__image {
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .p-mv__image {
    margin-inline: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .p-mv__image {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
.p-mv__image img {
  display: block;
  width: 12.5rem;
  aspect-ratio: 250/428;
  margin-left: 0.4rem;
  filter: drop-shadow(0.8rem -0.4rem 0.8rem rgba(0, 0, 0, 0.75));
  -webkit-filter: drop-shadow(0.8rem -0.4rem 0.8rem rgba(0, 0, 0, 0.75));
  transform: translateZ(0);
  will-change: transform;
  opacity: 0;
  animation: fadeScaleIn 1s 1s ease forwards;
}
@media (min-width: 768px) {
  .p-mv__image img {
    width: 29.2rem;
    aspect-ratio: 585/1001;
    margin-left: 0;
    filter: drop-shadow(2rem -1rem 2rem rgba(0, 0, 0, 0.75));
    -webkit-filter: drop-shadow(0.8rem -0.4rem 0.8rem rgba(0, 0, 0, 0.75));
  }
}
.p-mv__ttl {
  color: #FFF;
}
@media (min-width: 768px) {
  .p-mv__ttl {
    margin-bottom: 4.3rem;
    font-size: 3.6rem;
    line-height: 1.5277777778;
    font-weight: 700;
    letter-spacing: -0.1em;
  }
}
@media (max-width: 767px) {
  .p-mv__ttl {
    position: absolute;
    z-index: 2;
    top: 3rem;
    left: 4.5rem;
    font-size: 1.6rem;
    line-height: 1.625;
    font-weight: 500;
    writing-mode: vertical-rl;
  }
}
.p-mv__ttl .txt {
  display: inline-block;
  color: #FFF;
  opacity: 0;
  transform: scale(1.2) translate3d(0, 0, 0);
  transform-origin: center;
}
.p-mv__ttl.animate_animated .txt {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
  transition: opacity 1000ms, transform 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}
.p-mv__ttl.animate_animated .c-intro-01 {
  transition-delay: 500ms;
}
.p-mv__ttl.animate_animated .c-intro-02 {
  transition-delay: 600ms;
}
.p-mv__ttl.animate_animated .c-intro-03 {
  transition-delay: 700ms;
}
.p-mv__ttl.animate_animated .c-intro-04 {
  transition-delay: 800ms;
}
.p-mv__ttl.animate_animated .c-intro-05 {
  transition-delay: 900ms;
}
.p-mv__ttl.animate_animated .c-intro-06 {
  transition-delay: 1000ms;
}
.p-mv__ttl.animate_animated .c-intro-07 {
  transition-delay: 1100ms;
}
.p-mv__ttl.animate_animated .c-intro-08 {
  transition-delay: 1200ms;
}
.p-mv__ttl.animate_animated .c-intro-09 {
  transition-delay: 1300ms;
}
.p-mv__ttl.animate_animated .c-intro-10 {
  transition-delay: 1400ms;
}
.p-mv__ttl.animate_animated .c-intro-11 {
  transition-delay: 1500ms;
}
.p-mv__ttl.animate_animated .c-intro-12 {
  transition-delay: 1600ms;
}
.p-mv__ttl.animate_animated .c-intro-13 {
  transition-delay: 1700ms;
}
.p-mv__ttl.animate_animated .c-intro-14 {
  transition-delay: 1800ms;
}
.p-mv__ttl.animate_animated .c-intro-15 {
  transition-delay: 1900ms;
}
.p-mv__ttl.animate_animated .c-intro-16 {
  transition-delay: 2000ms;
}
.p-mv__block {
  display: flex;
  flex-direction: column;
  color: #000;
}
@media (min-width: 768px) {
  .p-mv__block {
    transform: translateY(1.8rem);
    color: #FFF;
  }
}
.p-mv__box {
  margin-bottom: 2.8rem;
  color: #000;
  opacity: 0;
  animation-delay: 0.5s;
}
@media (min-width: 768px) {
  .p-mv__box {
    margin-bottom: 11rem;
    color: #FFF;
  }
}
.p-mv .btn-primary {
  animation-delay: 0.5s;
  opacity: 0;
}
@media (max-width: 767px) {
  .p-mv .btn-primary {
    margin-inline: auto;
  }
}

.p-intro {
  padding-block: 6.5rem 12rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-intro {
    padding-block: 7rem 10rem;
  }
}
.p-intro__inner {
  max-width: 107.5rem;
}
.p-intro__content {
  margin-bottom: 6.2rem;
}
@media (min-width: 768px) {
  .p-intro__content {
    margin-bottom: 5rem;
  }
}
.p-intro__hline {
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6875;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 768px) {
  .p-intro__hline {
    margin-bottom: 2.2rem;
    font-size: 3rem;
    line-height: 1.6666666667;
    letter-spacing: 0.025em;
  }
}
.p-intro__txt {
  padding-inline: 1.1rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7857142857;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media (min-width: 768px) {
  .p-intro__txt {
    padding-inline: 0;
    font-size: 1.6rem;
    line-height: 1.6875;
    text-align: center;
  }
}
.p-intro__ttl {
  margin-bottom: 3rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 768px) {
  .p-intro__ttl {
    margin-bottom: 3.5rem;
    font-size: 2rem;
    line-height: 1.75;
  }
}
.p-intro__ttl .sub {
  letter-spacing: 0.05em;
}
.p-intro__list {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  row-gap: 3rem;
}
@media (min-width: 768px) {
  .p-intro__list {
    flex-direction: row;
    -moz-column-gap: 2.9rem;
    column-gap: 2.9rem;
  }
}

.list-intro {
  display: flex;
  gap: 2.2rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .list-intro {
    gap: 2.9rem;
    margin-inline: 0;
  }
}
@media (max-width: 767px) {
  .list-intro.--style-1 {
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .list-intro.--style-2 {
    transform: translateX(-0.4rem);
  }
}
.list-intro__image {
  display: block;
  width: 8.92rem;
  aspect-ratio: 179/300;
  margin-bottom: 1rem;
  transform: translateX(0.5rem);
  pointer-events: all;
}
@media (min-width: 768px) {
  .list-intro__image {
    width: 17.84rem;
    aspect-ratio: 357/600;
    margin-bottom: 1.6rem;
    transform: translateX(0.8rem);
    pointer-events: none;
  }
}
.list-intro__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.list-intro__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.list-intro__ttl {
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  line-height: 1;
  font-family: var(--font-en);
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .list-intro__ttl {
    margin-bottom: 1.7rem;
    font-size: 1.4rem;
    letter-spacing: 0.075em;
  }
}
@media (min-width: 768px) {
  .list-intro .btn-primary {
    width: 16.4rem;
  }
  .list-intro .btn-primary span {
    padding-inline: 0.7rem 2.2rem;
  }
  .list-intro .btn-primary::after {
    right: 0.8rem;
  }
}

.p-blend {
  position: relative;
  z-index: 1;
  padding-bottom: 3.2rem;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media (min-width: 768px) {
  .p-blend {
    overflow: hidden;
    padding-block: 10rem 25.2rem;
  }
}
@media (min-width: 768px) {
  .p-blend__head {
    position: absolute;
    left: 50%;
    top: 6.5rem;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .p-blend__head {
    display: none;
    position: absolute;
    z-index: 5;
    top: -6.8rem;
    right: 5.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 3.5rem;
    padding-block: 3.7rem 3rem;
  }
  .p-blend__head::before {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    content: "";
  }
}
.p-blend__ttl {
  writing-mode: vertical-rl;
  line-height: 1;
  font-weight: 700;
  font-size: 1.8rem;
  display: flex;
}
@media (min-width: 768px) {
  .p-blend__ttl {
    font-size: 2vw;
  }
}
@media (min-width: 1901px) {
  .p-blend__ttl {
    font-size: 3.5rem;
  }
}
.p-blend__ttl .txt {
  display: inline-block;
  color: #FFF;
  opacity: 0;
  transform: scale(1.2) translate3d(0, 0, 0);
  transform-origin: center;
  letter-spacing: 0.35em;
}
@media (min-width: 768px) {
  .p-blend__ttl .txt {
    letter-spacing: 0.2em;
    color: #000;
  }
}
.p-blend__ttl.animate_animated .txt {
  opacity: 1;
}
@media (min-width: 768px) {
  .p-blend__ttl.animate_animated .txt {
    transform: scale(1) translate3d(0, 0, 0);
    transition: opacity 2000ms, transform 2000ms cubic-bezier(0.23, 1, 0.32, 1);
  }
}
@media (max-width: 767px) {
  .p-blend__ttl.animate_animated .txt {
    transition: opacity 3200ms, transform 3200ms cubic-bezier(0.23, 1, 0.32, 1);
  }
}
.p-blend__ttl.animate_animated .c-intro-01 {
  transition-delay: 0ms;
}
.p-blend__ttl.animate_animated .c-intro-02 {
  transition-delay: 137ms;
}
.p-blend__ttl.animate_animated .c-intro-03 {
  transition-delay: 237ms;
}
.p-blend__ttl.animate_animated .c-intro-04 {
  transition-delay: 337ms;
}
.p-blend__ttl.animate_animated .c-intro-05 {
  transition-delay: 437ms;
}
@media (max-width: 767px) {
  .p-blend__ttl.animate_animated .c-intro-05 {
    margin-bottom: -1rem;
  }
}
.p-blend__ttl.animate_animated .c-intro-06 {
  transition-delay: 537ms;
}
.p-blend__ttl.animate_animated .c-intro-07 {
  transition-delay: 637ms;
}
.p-blend__ttl.animate_animated .c-intro-08 {
  transition-delay: 737ms;
}
.p-blend__ttl.animate_animated .c-intro-09 {
  transition-delay: 837ms;
}
.p-blend__ttl.animate_animated .c-intro-10 {
  transition-delay: 937ms;
}
@media (max-width: 767px) {
  .p-blend__ttl.animate_animated .c-intro-10 {
    margin-bottom: -1rem;
  }
}
.p-blend__ttl.animate_animated .c-intro-11 {
  transition-delay: 1037ms;
}
.p-blend__ttl.animate_animated .c-intro-12 {
  transition-delay: 1137ms;
}
.p-blend__ttl.animate_animated .c-intro-13 {
  transition-delay: 1237ms;
}
.p-blend__ttl.animate_animated .c-intro-14 {
  transition-delay: 1337ms;
}
.p-blend__ttl.animate_animated .c-intro-15 {
  transition-delay: 1437ms;
}
@media (max-width: 767px) {
  .p-blend__ttl.animate_animated .c-intro-15 {
    margin-bottom: 0.1rem;
  }
}
.p-blend__ttl.animate_animated .c-intro-16 {
  transition-delay: 1537ms;
}
.p-blend__ttl.animate_animated .c-intro-17 {
  transition-delay: 1637ms;
}
.p-blend__ttl.animate_animated .c-intro-18 {
  transition-delay: 1737ms;
}
.p-blend__ttl.animate_animated .c-intro-19 {
  transition-delay: 1837ms;
}
.p-blend__ttl.animate_animated .c-intro-20 {
  transition-delay: 1937ms;
}
.p-blend__ttl.animate_animated .c-intro-21 {
  transition-delay: 2037ms;
}
.p-blend__ttl.animate_animated .c-intro-22 {
  transition-delay: 2137ms;
}
.p-blend__ttl.animate_animated .c-intro-23 {
  transition-delay: 2237ms;
}
.p-blend__ttl.animate_animated .c-intro-24 {
  transition-delay: 2337ms;
}
.p-blend__ttl.animate_animated .c-intro-25 {
  transition-delay: 2437ms;
}
.p-blend__ttl.animate_animated .c-intro-26 {
  transition-delay: 2537ms;
}
.p-blend__ttl.animate_animated .c-intro-27 {
  transition-delay: 2637ms;
}
.p-blend__ttl.animate_animated .c-intro-28 {
  transition-delay: 2737ms;
}
.p-blend__ttl.animate_animated .c-intro-29 {
  transition-delay: 2837ms;
}
.p-blend__ttl.animate_animated .c-intro-30 {
  transition-delay: 2937ms;
}
.p-blend__ttl.animate_animated .c-intro-31 {
  transition-delay: 3037ms;
}
.p-blend__item-1 {
  display: flex;
  align-items: flex-start;
  row-gap: 0.8rem;
  flex-direction: column-reverse;
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .p-blend__item-1 {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 0;
  }
}
.p-blend__item-2 {
  position: relative;
  z-index: 3;
  margin-bottom: 6.4rem;
}
@media (min-width: 768px) {
  .p-blend__item-2 {
    display: flex;
    justify-content: flex-end;
    margin-top: -13.8rem;
    margin-bottom: 0;
  }
}
.p-blend__item-3 {
  position: relative;
  display: flex;
  align-items: baseline;
  flex-direction: column;
  row-gap: 3.2rem;
  padding-inline: 3.75rem;
}
@media (min-width: 768px) {
  .p-blend__item-3 {
    flex-direction: row;
    margin-top: -13rem;
    padding-inline: 0;
  }
}
.p-blend__caption {
  position: absolute;
  z-index: 3;
  left: 2.8rem;
  bottom: 2rem;
  color: #FFF;
  opacity: 0.3;
  font-size: 3.2rem;
  line-height: 1;
  font-family: var(--font-en);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .p-blend__caption {
    left: 4rem;
    bottom: 3rem;
    font-size: 4rem;
  }
}
.p-blend__image-1 {
  position: relative;
  width: 100%;
  aspect-ratio: 375/300;
}
@media (min-width: 768px) {
  .p-blend__image-1 {
    width: 36.5%;
    aspect-ratio: 70/85;
    margin-left: 5%;
  }
}
@media (min-width: 768px) {
  .p-blend__image-1 .p-blend__caption {
    right: 5.8rem;
    left: auto;
  }
}
.p-blend__image-2 {
  position: relative;
  width: 100%;
  aspect-ratio: 375/300;
}
@media (min-width: 768px) {
  .p-blend__image-2 {
    position: relative;
    top: -10rem;
    width: 36.5%;
    aspect-ratio: 7/6;
    margin-right: 6%;
  }
}
.p-blend__image-3 {
  position: relative;
  width: 100%;
  aspect-ratio: 375/300;
}
@media (min-width: 768px) {
  .p-blend__image-3 {
    width: 52%;
    aspect-ratio: 1784/1000;
  }
}
.p-blend__image-4 {
  position: relative;
  z-index: 2;
  width: 30rem;
  aspect-ratio: 1/1;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-blend__image-4 {
    width: 36.5%;
    margin-left: 13.7%;
    margin-right: 0;
  }
}
.p-blend__image-5 {
  position: static;
  z-index: 1;
  width: 30rem;
  aspect-ratio: 1/1;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-blend__image-5 {
    position: absolute;
    right: 20.8%;
    bottom: -14.8rem;
    width: 31.25%;
    aspect-ratio: 600/514;
    margin-right: 0;
  }
}

.wrap-delfin {
  background-color: FFF;
  width: 100%;
  height: 200vh;
}

.p-delfin {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  aspect-ratio: 375/700;
  background: url("../images/img_delfin_01_sp.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media (min-width: 768px) {
  .p-delfin {
    aspect-ratio: 1920/800;
    height: 120vh;
    padding-top: 12.5rem;
    background-image: url("../images/img_delfin_01.jpg");
    background-position: center;
  }
}
@media (min-width: 1200px) {
  .p-delfin {
    height: 100vh;
  }
}
.p-delfin__inner {
  max-width: 93rem;
  height: 100%;
  display: flex;
  align-items: center;
}
.p-delfin__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 6.5rem;
}
@media (min-width: 576px) {
  .p-delfin__block {
    padding-top: 13vw;
  }
}
@media (min-width: 768px) {
  .p-delfin__block {
    flex-direction: row;
    justify-content: space-between;
    height: auto;
    margin-left: 1.2rem;
    padding-bottom: 20.5rem;
    padding-top: 0;
  }
}
.p-delfin__box {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
  margin-bottom: 90vw;
  text-align: center;
  color: #FFF;
}
@media (min-width: 576px) {
  .p-delfin__box {
    margin-bottom: 100vw;
  }
}
@media (min-width: 768px) {
  .p-delfin__box {
    align-items: flex-start;
    row-gap: 0.7rem;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .p-delfin__box.animate_animated::after {
    opacity: 1;
    transition: opacity 500ms;
    animation: message_lead_marker_horizontal 1100ms cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }
  .p-delfin__box.animate_animated .p-delfin__ttl,
  .p-delfin__box.animate_animated .p-delfin__txt {
    transition-delay: 500ms;
    opacity: 1;
  }
}
.p-delfin__box::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  background-color: #fff;
  opacity: 0;
  transform: scaleX(0) translate3d(0, 0, 0);
  transform-origin: left;
  content: "";
}
@media (max-width: 767px) {
  .p-delfin__box::after {
    display: none;
  }
}
.p-delfin__ttl {
  font-family: var(--font-en);
  font-size: 3.253rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
  color: currentColor;
}
@media (min-width: 768px) {
  .p-delfin__ttl {
    font-size: 4.025rem;
    letter-spacing: 0.14em;
    opacity: 0;
    transition: opacity 500ms;
  }
}
.p-delfin__txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-en);
  letter-spacing: 0.16em;
  color: currentColor;
}
@media (min-width: 768px) {
  .p-delfin__txt {
    font-size: 2rem;
    letter-spacing: 0.16em;
    transition: opacity 500ms;
    opacity: 0;
  }
}
.p-delfin__inspir {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #FFF;
}
.p-delfin__inspir.animate_animated::after {
  opacity: 1;
  transition: opacity 500ms;
  animation: message_lead_marker_horizontal_reverse 1100ms cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.p-delfin__inspir.animate_animated .p-delfin__inspir-year,
.p-delfin__inspir.animate_animated .p-delfin__inspir-txt-1,
.p-delfin__inspir.animate_animated .p-delfin__inspir-txt-2 {
  transition-delay: 500ms;
  opacity: 1;
}
@media (min-width: 768px) {
  .p-delfin__inspir {
    align-items: flex-end;
  }
}
.p-delfin__inspir::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  background-color: #fff;
  opacity: 0;
  transform: scaleX(0) translate3d(0, 0, 0);
  transform-origin: right;
  content: "";
}
@media (max-width: 767px) {
  .p-delfin__inspir::after {
    display: none;
  }
}
.p-delfin__inspir-txt-1 {
  margin-bottom: 0.4rem;
  font-size: 1.56rem;
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-en);
  letter-spacing: 0.28em;
  color: currentColor;
}
@media (min-width: 768px) {
  .p-delfin__inspir-txt-1 {
    font-size: 1.8rem;
    letter-spacing: 0.34em;
    transition: opacity 500ms;
    opacity: 0;
  }
}
.p-delfin__inspir-txt-2 {
  margin-top: 0.8rem;
  font-size: 1.56rem;
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-en);
  letter-spacing: 0.12em;
  color: currentColor;
}
@media (min-width: 768px) {
  .p-delfin__inspir-txt-2 {
    font-size: 1.8rem;
    letter-spacing: 0.18em;
    transition: opacity 500ms;
    opacity: 0;
  }
}
.p-delfin__inspir-year {
  margin-right: -0.3rem;
  font-family: var(--font-en);
  font-size: 5.57rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.13em;
  color: currentColor;
}
@media (min-width: 768px) {
  .p-delfin__inspir-year {
    margin-right: -0.5rem;
    font-size: 6.9rem;
    letter-spacing: 0.14em;
    transition: opacity 500ms;
    opacity: 0;
  }
}

.p-water {
  position: relative;
  z-index: 3;
  padding-block: 8rem 8rem;
  background-color: #000;
  margin-top: -0.4rem;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media (min-width: 768px) {
  .p-water {
    padding-block: 5.5rem 9rem;
  }
}
.p-water__inner {
  width: 100%;
  max-width: 110rem;
  margin-inline: auto;
  padding-inline: 5.5rem;
}
.p-water__hline {
  margin-bottom: 4rem;
  color: #FFF;
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-water__hline {
    margin-bottom: 6rem;
    font-size: 4.5rem;
    letter-spacing: 0.025em;
  }
}
.p-water__row {
  display: flex;
  flex-direction: column;
  row-gap: 6.5rem;
}
@media (min-width: 768px) {
  .p-water__row {
    flex-direction: row;
    -moz-column-gap: 8rem;
    column-gap: 8rem;
    transform: translateX(45px);
  }
}
.p-water__col-1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding-top: 11.5rem;
}
@media (min-width: 768px) {
  .p-water__col-1 {
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    gap: 5rem;
  }
}
@media (min-width: 768px) {
  .p-water__col-1 .box {
    position: relative;
    top: -7px;
  }
}
@media (max-width: 767px) {
  .p-water__col-1 .p-water__circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-water__col-2 {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .p-water__col-2 {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .p-water__col-2 .p-water__circle {
    margin-bottom: 1.2rem;
  }
}
@media (min-width: 768px) {
  .p-water__col-2 .box {
    position: relative;
    top: -7px;
  }
}
.p-water__image-1 {
  flex-shrink: 0;
  aspect-ratio: 170/221;
  width: 9.25rem;
}
@media (min-width: 768px) {
  .p-water__image-1 {
    width: 17rem;
  }
}
.p-water__image-1 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-water__image-2 {
  width: 26rem;
  aspect-ratio: 228/220;
  margin-inline: auto;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .p-water__image-2 {
    width: 22.8rem;
    margin-inline: 0 4rem;
    margin-top: 0;
  }
}
.p-water__image-2 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-water__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  aspect-ratio: 1/1;
  margin-inline: auto;
  border: 1px solid #FFF;
  border-radius: 10rem;
  font-size: 2.6rem;
  font-weight: 500;
  font-family: var(--font-en);
  color: #FFF;
}
@media (min-width: 768px) {
  .p-water__circle {
    width: 12rem;
    margin-bottom: 2rem;
    font-size: 4rem;
  }
}
.p-water__txt {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-water__txt {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5555555556;
  }
  .p-water__txt .sub-1 {
    letter-spacing: 0.1em;
  }
}

.p-gener {
  position: relative;
  z-index: 4;
  padding-block: 9.5rem 7rem;
  background-color: #FFF;
}
@media (min-width: 768px) {
  .p-gener {
    padding-block: 6.2rem 7.8rem;
  }
}
.p-gener__inner {
  width: 100%;
  padding-inline: 0;
}
@media (min-width: 768px) {
  .p-gener__inner {
    margin-inline: auto;
    padding-inline: 3.75rem;
    max-width: 133.5rem;
  }
}
.p-gener__hline {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-gener__hline {
    margin-bottom: 4rem;
  }
}
.p-gener__list {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  width: 100%;
}
@media (min-width: 768px) {
  .p-gener__list {
    flex-direction: row;
    gap: 3rem;
  }
}
.p-gener__item {
  display: flex;
}
@media (min-width: 768px) {
  .p-gener__item {
    flex-direction: column;
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .p-gener__item {
    align-items: flex-start;
    padding-right: 3.3rem;
    gap: 2rem;
  }
  .p-gener__item.--item-2 {
    flex-direction: row-reverse;
  }
  .p-gener__item.--item-3 {
    padding-left: 5rem;
  }
}
.p-gener__image-1 {
  width: 25rem;
  aspect-ratio: 25/20;
}
@media (min-width: 768px) {
  .p-gener__image-1 {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.p-gener__image-2 {
  width: 23rem;
  aspect-ratio: 23/25;
}
@media (min-width: 768px) {
  .p-gener__image-2 {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.p-gener__image-3 {
  width: 20rem;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .p-gener__image-3 {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.p-gener__ttl {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  color: #000;
}
@media (min-width: 768px) {
  .p-gener__ttl {
    font-size: 2rem;
    line-height: 1.65;
    text-align: center;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .p-gener__ttl {
    gap: 0.7rem;
    writing-mode: vertical-rl;
    margin-left: 0.4rem;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .p-gener__ttl.--ttl-2 {
    letter-spacing: 0;
  }
  .p-gener__ttl.--ttl-3 {
    letter-spacing: 0;
  }
  .p-gener__ttl .num {
    margin-bottom: 0.3rem;
    writing-mode: rl-tb;
  }
}

.p-champ {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .p-champ {
    aspect-ratio: 1920/600;
    padding-bottom: 0;
    background-color: #000;
  }
}
.p-champ__image {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  aspect-ratio: 375/350;
}
@media (min-width: 768px) {
  .p-champ__image {
    height: 100%;
    aspect-ratio: 1920/600;
  }
}
.p-champ__inner {
  max-width: 155.5rem;
  display: flex;
  align-items: center;
  height: 100%;
}
.p-champ__row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .p-champ__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 9rem;
    padding-bottom: 2.5rem;
  }
}
.p-champ__col-1 {
  height: 100vw;
  min-height: 35rem;
  padding-top: 2.6rem;
}
@media (min-width: 768px) {
  .p-champ__col-1 {
    display: flex;
    align-items: center;
    height: auto;
  }
}
.p-champ__hline {
  position: relative;
  width: 30rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-champ__hline {
    width: 45rem;
    margin-left: 0;
    margin-bottom: 4.5rem;
  }
}
.p-champ__hline.animate_animated::after {
  opacity: 1;
  transition: opacity 500ms;
  animation: message_lead_marker_horizontal 1100ms cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.p-champ__hline.animate_animated img {
  transition-delay: 0.5s;
  opacity: 1;
}
.p-champ__hline::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  background-color: #fff;
  opacity: 0;
  transform: scaleX(0) translate3d(0, 0, 0);
  transform-origin: left;
  content: "";
}
.p-champ__hline img {
  opacity: 0;
  transition: 0.5s opacity;
}
.p-champ__ttl {
  margin-bottom: 1.3rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  text-align: center;
}
@media (min-width: 768px) {
  .p-champ__ttl {
    margin-bottom: 3.5rem;
    font-size: 2.4rem;
    line-height: 1.75;
    color: #FFF;
  }
}
.p-champ__txt {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7142857143;
  color: #000;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .p-champ__txt {
    font-size: 1.5rem;
    color: #FFF;
    line-height: 1.8666666667;
    letter-spacing: 0;
  }
}

.p-modern {
  position: relative;
  z-index: 6;
  padding-block: 5rem 14.5rem;
  background-color: #FFF;
}
@media (min-width: 768px) {
  .p-modern {
    padding-block: 6.5rem 6rem;
  }
}
.p-modern__inner {
  padding-inline: 3.75rem;
}
@media (min-width: 768px) {
  .p-modern__inner {
    max-width: 133.5rem;
  }
}
.p-modern__hline {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-modern__hline {
    margin-bottom: 4rem;
  }
}
.p-modern__list {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .p-modern__list {
    flex-direction: row;
    gap: 3rem;
  }
}
.p-modern__item {
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
  flex: 1;
}
@media (min-width: 768px) {
  .p-modern__item {
    gap: 2.5rem;
  }
}
.p-modern__image {
  width: 100%;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .p-modern__content {
    padding-inline: 1rem;
  }
}
.p-modern__content .hline02 {
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .p-modern__content .hline02 {
    margin-bottom: 1rem;
  }
}

.p-origin {
  position: relative;
  z-index: 7;
  padding-bottom: 9rem;
  background-color: #FFF;
}
@media (min-width: 768px) {
  .p-origin {
    padding-bottom: 9rem;
  }
}
@media (min-width: 768px) {
  .p-origin__inner {
    max-width: 105rem;
  }
}
@media (max-width: 767px) {
  .p-origin__inner {
    padding-inline: 0;
  }
}
.p-origin__row {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .p-origin__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.p-origin__content {
  width: 100%;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .p-origin__content {
    width: calc(100% - 60rem);
    margin-top: 2rem;
    padding-inline: 0 5rem;
  }
}
.p-origin__content .c-txt {
  margin-bottom: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-origin__content .c-txt {
    margin-bottom: 3.2rem;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .p-origin__content .btn-primary {
    display: flex;
    margin-inline: auto;
  }
}
.p-origin__hline {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (min-width: 768px) {
  .p-origin__hline {
    margin-bottom: 2.5rem;
    font-size: 2.1rem;
    line-height: 1.6666666667;
    text-align: left;
  }
}

.splide-origin {
  width: 100%;
  margin-bottom: 10rem;
}
@media (min-width: 768px) {
  .splide-origin {
    width: 60rem;
    margin-bottom: 0;
  }
}
.splide-origin__item {
  width: 100%;
  aspect-ratio: 375/525;
  overflow: hidden;
}
@media (min-width: 768px) {
  .splide-origin__item {
    aspect-ratio: 1/1;
  }
}
.splide-origin__item.custom .splide-origin__ttl {
  color: #231815;
}
.splide-origin__item.custom .btn-more {
  color: #231815;
}
.splide-origin__item.custom .btn-more::after {
  background-image: url("../images/icon_arrow_02.svg");
}
.splide-origin__item.is-active img.is-active {
  animation: zoomImg 3s linear forwards;
}
.splide-origin__image {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.splide-origin__image img {
  transform: scale(1);
}
.splide-origin__content {
  position: absolute;
  z-index: 2;
  left: 3rem;
  bottom: 2.7rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .splide-origin__content {
    gap: 1.2rem;
    left: 4.8rem;
    bottom: 3.6rem;
    transition: 0.25s ease transform;
    transform-origin: center;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
  }
  .splide-origin__content:hover {
    transform: scale(1.04);
  }
}
.splide-origin__ttl {
  color: #FFF;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.075em;
  line-height: 1;
}
@media (min-width: 768px) {
  .splide-origin__ttl {
    font-size: 1.4rem;
  }
}
.splide-origin .btn-more {
  color: #FFF;
}
@media (max-width: 767px) {
  .splide-origin .btn-more {
    font-size: 1.8rem;
  }
}
.splide-origin .btn-more::after {
  width: 7.8rem;
  background-image: url("../images/icon_arrow_03.svg");
  background-size: 7.8rem auto;
}
.splide-origin .splide__pagination {
  display: flex;
  gap: 2.4rem;
  padding: 0;
  margin: 0;
  bottom: -2.7rem;
}
.splide-origin .splide__pagination__page {
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1/1;
  margin: 0;
  padding: 0;
  background-color: #d9d9d9;
  opacity: 1;
}
.splide-origin .splide__pagination__page.is-active {
  background-color: #404040;
  transform: scale(1);
}
.splide-origin .splide__arrows {
  display: block;
}
@media (min-width: 768px) {
  .splide-origin .splide__arrows {
    display: none;
  }
}
.splide-origin .splide__arrow {
  top: calc(50% - 1.8rem);
  width: 3rem;
  height: 3rem;
  background-color: #FFF;
  opacity: 0.35;
}
.splide-origin .splide__arrow:hover:not(:disabled) {
  opacity: 0.35;
}
.splide-origin .splide__arrow:disabled {
  opacity: 0;
}
.splide-origin .splide__arrow--prev {
  left: 1.3rem;
}
.splide-origin .splide__arrow--next {
  right: 1.3rem;
}

.p-movie {
  margin-bottom: 9.6rem;
  padding-inline: 2.25rem;
}
@media (min-width: 768px) {
  .p-movie {
    margin-bottom: 11.2rem;
  }
}
.p-movie__content {
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 330/586;
}
@media (min-width: 768px) {
  .p-movie__content {
    max-width: 126rem;
    aspect-ratio: 1260/708;
  }
}
.p-movie__hline {
  margin-bottom: 1.3rem;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 768px) {
  .p-movie__hline {
    display: none;
  }
}
.p-movie__item {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-movie__item {
    cursor: pointer;
  }
  .p-movie__item:hover .p-movie__thumb {
    transform: scale(1.03);
  }
  .p-movie__item:hover .p-movie__btn {
    transform: scale(1.03);
  }
}
.p-movie__item iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.p-movie__thumb {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.25s ease transform;
  transform-origin: center;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.p-movie__btn {
  position: absolute;
  right: 0.2rem;
  bottom: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11rem;
  height: 4.4rem;
  background-color: #FFF;
  font-family: var(--font-en);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  transition: 0.25s ease transform;
  transform-origin: center;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media (min-width: 768px) {
  .p-movie__btn {
    right: 0.5rem;
    bottom: 0.5rem;
    width: 20rem;
    height: 5rem;
    font-size: 2rem;
  }
}
.p-movie__btn::after {
  display: inline-block;
  position: absolute;
  z-index: 3;
  right: 1.1rem;
  top: 50%;
  width: 1rem;
  height: 1.5rem;
  background: url("../images/icon_arrow_04.svg") no-repeat center;
  background-size: 1rem auto;
  transform: translateY(-50%);
  content: "";
}
@media (min-width: 768px) {
  .p-movie__btn::after {
    right: 1.5rem;
  }
}

.p-lineage {
  position: relative;
  z-index: 8;
  padding-block: 10rem 11.6rem;
  background-color: #000;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-lineage {
    padding-block: 7.2rem 13rem;
  }
}
.p-lineage__head {
  margin-bottom: 5.8rem;
}
@media (min-width: 768px) {
  .p-lineage__head {
    margin-bottom: 6.2rem;
  }
}
.p-lineage__hline {
  margin-bottom: 3rem;
  color: #FFF;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .p-lineage__hline {
    font-size: 4.5rem;
    letter-spacing: 0.025em;
  }
}
.p-lineage__txt {
  margin-bottom: 2.8rem;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.9285714286;
}
@media (min-width: 768px) {
  .p-lineage__txt {
    margin-bottom: 2.4rem;
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
  .p-lineage__txt.--mb {
    margin-bottom: 0;
  }
}
.p-lineage__content {
  max-width: 152rem;
  display: flex;
}
.p-lineage__box {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 27rem;
  height: auto;
  padding-block: 2.5rem 2.5rem;
  padding-inline: 14rem 1.2rem;
  background-color: #333333;
  color: #FFF;
}
@media (min-width: 768px) {
  .p-lineage__box {
    width: 40rem;
    height: 28rem;
    padding-inline: 11.9rem 3rem;
  }
}
.p-lineage__box-ttl {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 768px) {
  .p-lineage__box-ttl {
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
    text-align: left;
  }
}
.p-lineage__box-txt {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.7142857143;
}
@media (max-width: 767px) {
  .p-lineage__box-txt {
    text-align: justify;
  }
}
.p-lineage__box-img {
  position: absolute;
  top: 50%;
  right: calc(100% - 12.3rem);
  transform: translateY(-50%);
  width: 70.6rem;
  aspect-ratio: 706/176;
}
@media (min-width: 768px) {
  .p-lineage__box-img {
    right: 30.3rem;
  }
}
.p-lineage__box-img img {
  display: block;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (min-width: 768px) {
  .lineage-list {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 40rem);
    padding-inline: 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .lineage-list {
    display: none;
  }
}
.lineage-list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lineage-list__item.--w1 {
  width: 22rem;
  margin-right: -2rem;
}
.lineage-list__item.--w2 {
  width: 21rem;
}
.lineage-list__item.--w3 {
  width: 21.5rem;
}
.lineage-list__item.--w4 {
  width: 23rem;
}
.lineage-list__box {
  display: flex;
  align-items: flex-end;
  height: 28rem;
  margin-bottom: 2.3rem;
}
.lineage-list__circle {
  position: absolute;
  top: 0;
  right: -2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13rem;
  padding-bottom: 0.6rem;
  aspect-ratio: 1/1;
  border: 1px solid #FFF;
  border-radius: 13rem;
  font-size: 3.3rem;
  font-weight: 500;
  font-family: var(--font-en);
  color: #FFF;
}
.lineage-list__circle.--custom-2 {
  right: -4.3rem;
}
.lineage-list__circle.--custom-3 {
  right: -4.4rem;
}
.lineage-list__image {
  height: 22rem;
  transform: translateX(0.3rem);
}
.lineage-list__image.--custom-1 {
  height: 23rem;
}
.lineage-list__image.--custom-2 {
  height: 25rem;
}
.lineage-list__image img {
  display: block;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.lineage-list__txt {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  text-align: center;
  color: #FFF;
  white-space: nowrap;
}

.lineage-slider {
  margin-bottom: 9.7rem;
}
@media (min-width: 768px) {
  .lineage-slider {
    display: none;
  }
}
.lineage-slider__item:last-child .lineage-slider__box::after {
  width: 50%;
  right: 50%;
}
.lineage-slider__box {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 33rem;
  margin-bottom: 2.5rem;
}
.lineage-slider__box.box-2::after, .lineage-slider__box.box-3::after, .lineage-slider__box.box-4::after {
  width: 100%;
}
.lineage-slider__box::after {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 3.5rem;
  height: 1px;
  background-color: #fff;
  content: "";
}
.lineage-slider__box.box-1::after {
  left: 50%;
  width: 50%;
  transform: scaleX(0);
}
.lineage-slider__box.box-1.animate_animated::after {
  animation: ani_line_year 5s ease-in-out infinite;
}
.lineage-slider__circle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  padding-bottom: 0;
  aspect-ratio: 1/1;
  border: 1px solid #FFF;
  border-radius: 7rem;
  background-color: #000;
  font-size: 2.1rem;
  font-weight: 500;
  font-family: var(--font-en);
  color: #FFF;
  line-height: 1;
}
.lineage-slider__image {
  height: 22rem;
  transform: translateX(0.5rem);
}
.lineage-slider__image.--custom-1 {
  height: 23rem;
}
.lineage-slider__image.--custom-2 {
  height: 25rem;
}
.lineage-slider__image img {
  display: block;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.lineage-slider__txt {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  color: #FFF;
  white-space: nowrap;
}
.lineage-slider .splide__arrow {
  top: calc(50% + 0.7rem);
  width: 3rem;
  height: 3rem;
  background-color: #FFF;
  opacity: 0.35;
}
.lineage-slider .splide__arrow:hover:not(:disabled) {
  opacity: 0.35;
}
.lineage-slider .splide__arrow:disabled {
  opacity: 0;
}
.lineage-slider .splide__arrow--prev {
  left: 1.5rem;
}
.lineage-slider .splide__arrow--next {
  right: 1.5rem;
}

.p-waterbot__head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 8rem;
  background-color: #000;
}
.p-waterbot__hline {
  width: 30rem;
  aspect-ratio: 270/12;
}
.p-waterbot__content {
  padding-block: 3rem 10rem;
  background: url("../images/bg_waterbot.jpg") no-repeat center;
  background-size: cover;
}
.p-waterbot__image {
  width: 17.5rem;
  aspect-ratio: 35/60;
  margin-inline: auto;
  margin-bottom: 6.1rem;
}
@media (max-width: 767px) {
  .p-waterbot__image img {
    transform: translateX(1rem);
  }
}
.p-waterbot__box {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #FFF;
}
.p-waterbot__txt {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-en);
  letter-spacing: 0.3em;
  color: currentColor;
}
.p-waterbot__txt.--bot {
  letter-spacing: 0.14em;
}
.p-waterbot__year {
  margin-left: 0.4rem;
  margin-block: 0.4rem 0.7rem;
  font-family: var(--font-en);
  font-size: 4.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.13em;
  color: currentColor;
}
@media (min-width: 768px) {
  .p-waterbot {
    display: none;
  }
}

.hline01 {
  font-size: 2.5rem;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
  color: #000;
  letter-spacing: 0.025em;
}
@media (min-width: 768px) {
  .hline01 {
    font-size: 4.5rem;
    line-height: 1.7333333333;
  }
}

.hline02 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  color: #000;
}
@media (min-width: 768px) {
  .hline02 {
    line-height: 1.65;
  }
}