@charset "UTF-8";/**
 * Swiper 12.1.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 24, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }

  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}
:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}

/**************************************
 * reset style
 **************************************/
/* https://piccalil.li/blog/a-more-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
/* h1, h2,
h3, h4 {
  text-wrap: balance;
} */
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/**************************************
 * base style
 **************************************/
* {
  margin: 0;
}

:root {
  --font-ja: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  --font-en: "Syncopate", sans-serif;
  --wrapper-max-width: 84vw;
  --wrapper-width: min(var(--wrapper-max-width), 1360px);
  --wrapper-margin-inline: calc((100% - var(--wrapper-width)) / 2);
  --bar-width: 3.07vw;
  --footer-height: 181px;
}
@media screen and (max-width: 767px) {
  :root {
    --bar-width: 5.33vw;
    --wrapper-width: 72vw;
    --wrapper-max-width: var(--wrapper-width);
    --wrapper-margin-inline: calc((100vw - var(--wrapper-width)) / 2);
    --footer-height: 272px;
  }
}

html,
body {
  font-size: 16px;
}

html {
  min-height: 100%;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-ja);
  line-height: 1.733;
  color: #000;
  padding: 0;
}

img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

a {
  color: #000;
}

#root {
  position: relative;
  overflow: clip;
  max-width: 100%;
  background: #fff;
  opacity: 0;
}
#root.is-loaded {
  opacity: 1;
  transition: opacity 1.3s;
}

#main {
  min-height: calc(100vh - var(--footer-height));
  min-height: calc(100svh - var(--footer-height));
}

/**************************************
* .sec-404
**************************************/
.sec-404 {
  padding-block: 180px 120px;
}
@media screen and (max-width: 767px) {
  .sec-404 {
    padding-block: 120px 80px;
  }
}
.sec-404__msg {
  text-align: center;
  font-size: clamp(0.81rem, 0.58rem + 0.4746835443vw, 1rem); /* 13px @768px - 16px @1400px */
  line-height: 2.125;
}
@media screen and (max-width: 767px) {
  .sec-404__msg {
    font-size: 0.81rem;
    line-height: 1.654;
  }
}
.sec-404__btn {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .sec-404__btn {
    margin-top: 40px;
  }
}
.sec-404__btn a {
  position: relative;
  margin-inline: auto;
  display: grid;
  place-content: center;
  border-radius: 9999px;
  border: 1px solid #e10915;
  width: 13.75em;
  max-width: 100%;
  height: 4.37em;
  font-size: 1rem;
  color: #e10915;
  text-decoration: none;
  padding-right: 0.75em;
  transition: color 0.4s, background-color 0.4s;
}
@media screen and (max-width: 767px) {
  .sec-404__btn a {
    font-size: 0.81rem;
    border-width: 0.5px;
    width: 15.38em;
    height: 3.46em;
  }
}
.sec-404__btn a::before, .sec-404__btn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.93em;
  width: 1.87em;
  height: 1.87em;
}
@media screen and (max-width: 767px) {
  .sec-404__btn a::before, .sec-404__btn a::after {
    width: 2.11em;
    height: 2.11em;
    right: 0.69em;
  }
}
.sec-404__btn a::before {
  border-radius: 50%;
  background-color: #e10915;
}
.sec-404__btn a::after {
  background: center center/contain no-repeat url("../img/c_arrow_white.svg");
  transform: translateY(-50%) scale(0.433);
}
.sec-404__btn a:hover {
  background-color: #e10915;
  color: #fff;
}
.sec-404__btn a:hover::after {
  animation: arrow-move 0.4s ease forwards;
}

/**************************************
* utility
**************************************/
.c-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  br.c-sp {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  .c-pc {
    display: none;
  }
}

/**************************************
* animation
**************************************/
@keyframes animFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes animFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -60px, 0);
    transform: translate3d(0, -60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.anim-fade-in-up,
.anim-fade-in-down {
  --delay: 0s;
  opacity: 0;
}
.anim-fade-in-up.js-animated,
.anim-fade-in-down.js-animated {
  animation-duration: 0.7s;
  animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  animation-fill-mode: forwards;
  animation-name: animFadeInUp;
  animation-delay: var(--delay);
}

.anim-fade-in-down.js-animated {
  animation-name: animFadeInDown;
}

@keyframes arrow-move {
  from {
    opacity: 0;
    margin-right: 8px;
  }
  to {
    opacity: 1;
    margin-right: 0;
  }
}
/**************************************
 * components
 **************************************/
.c-hl > span {
  display: block;
}
.c-hl__en {
  margin-bottom: 0.25em;
  font-size: clamp(3.43rem, 1.53rem + 3.9556962025vw, 5rem); /* 55px @768px - 80px @1400px */
  font-family: var(--font-en);
  font-weight: bold;
  letter-spacing: -0.08em;
  text-align: center;
  line-height: 1;
  color: #e10915;
}
@media screen and (max-width: 767px) {
  .c-hl__en {
    font-size: clamp(2.5rem, 2.31rem + 0.7804878049vw, 3rem); /* 40px @375px - 48px @1400px */
  }
}
@media screen and (max-width: 374px) {
  .c-hl__en {
    font-size: 10vw;
  }
}
.c-hl__ja {
  text-align: center;
  font-weight: bold;
  font-size: clamp(0.87rem, 0.41rem + 0.9493670886vw, 1.25rem); /* 14px @768px - 20px @1400px */
}

.c-wrap {
  width: var(--wrapper-width);
  max-width: 100%;
  margin-inline: auto;
}

/**************************************
* .c-round-top
**************************************/
.c-round-top {
  --round-top-offset-top: 0;
  --round-top-bg: transparent;
  position: relative;
}
.c-round-top::before {
  content: "";
  position: absolute;
  display: block;
  top: -1px;
  left: 0;
  right: 0;
  height: calc(15.57vw + var(--round-top-offset-top));
  background-color: var(--round-top-bg);
}
.c-round-top__round {
  position: absolute;
  top: var(--round-top-offset-top);
  left: 0;
  right: 0;
}
.c-round-top__round svg {
  width: 100%;
  stroke: none;
}

/**************************************
* .c-flight
**************************************/
@keyframes airplane-flight-to-left {
  0% {
    offset-distance: 100%;
    opacity: 0;
  }
  7% {
    offset-distance: 100%;
    opacity: 0;
  }
  8% {
    offset-distance: 100%;
    opacity: 1;
  }
  70% {
    offset-distance: 0%;
    opacity: 1;
  }
  71% {
    opacity: 0;
  }
  100% {
    offset-distance: 0%;
    opacity: 0;
  }
}
@keyframes airplane-flight-to-right {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  7% {
    offset-distance: 0%;
    opacity: 0;
  }
  8% {
    offset-distance: 0%;
    opacity: 1;
  }
  70% {
    offset-distance: 100%;
    opacity: 1;
  }
  71% {
    opacity: 0;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}
@keyframes airplane-mask {
  0% {
    stroke-dashoffset: 2600px;
  }
  90% {
    stroke-dashoffset: 0px;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}
.c-flight {
  --flight-top-padding: 2.08vw;
  --flight-duration: 8s;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding-top: var(--flight-top-padding);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-flight {
    --flight-duration: 5s;
  }
}
.c-flight__bg {
  transform: scaleX(-1);
}
.c-flight__bg svg {
  width: 100%;
}
.c-flight__path {
  mask: url(#campaign-mask);
  -webkit-mask: url(#campaign-mask);
}
.c-flight__path path {
  fill: none;
  stroke: #e10915;
  stroke-miterlimit: 10;
  stroke-width: 2px;
  stroke-dasharray: 4 4;
}
@media screen and (max-width: 1000px) {
  .c-flight__path path {
    stroke-width: 3px;
    stroke-dasharray: 8 8;
  }
}
@media screen and (max-width: 570px) {
  .c-flight__path path {
    stroke-width: 5px;
    stroke-dasharray: 11 11;
  }
}
.c-flight__mask {
  stroke-dasharray: 2600px;
  stroke-dashoffset: 2600px;
  animation: airplane-mask var(--flight-duration) cubic-bezier(0.32, 0.5, 0.56, 0.77) 0.5s infinite;
}
.c-flight__mask path {
  fill: none;
  stroke: #fff;
  stroke-width: 6px;
}
.c-flight__airplane-area {
  position: absolute;
  inset: 0;
  top: var(--flight-top-padding);
}
.c-flight__airplane {
  position: absolute;
  width: 5.26vw;
  height: 3.02vw;
  padding: 1.56vw;
  box-sizing: content-box;
  background: center center/5.26vw auto no-repeat url("../img/flight_airplane.svg");
  offset-rotate: auto 0deg;
  animation: airplane-flight-to-left var(--flight-duration) cubic-bezier(0.32, 0.5, 0.56, 0.77) infinite;
  offset-distance: 100%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-flight__airplane {
    width: 9.6vw;
    height: 5.46vw;
    background-size: 9.6vw auto;
  }
}

.c-flight--reverse .c-flight__airplane {
  animation-name: airplane-flight-to-right;
  offset-distance: 0%;
  transform: scaleX(-1);
}
.c-flight--reverse .c-flight__bg svg {
  transform: scaleX(-1);
}

/**************************************
 * .leading
 **************************************/
.leading {
  --round-top-offset-top: 6.09vw;
  --round-top-bg: #fff;
  position: relative;
  padding-top: 80px;
  padding-top: 15.41vw;
}
@media screen and (max-width: 767px) {
  .leading {
    --round-top-offset-top: 9.86vw;
    padding-top: 47px;
    padding-top: 30.13vw;
  }
}
.leading::before {
  content: "";
  display: block;
  left: 0;
  right: 0;
  height: 21.5vw;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .leading::before {
    height: 23.5vw;
  }
}
.leading .c-round-top__round svg {
  fill: #fff;
}
.leading .c-flight__path {
  mask: url(#leading-mask);
  -webkit-mask: url(#leading-mask);
}
.leading .c-flight__airplane {
  background-color: #f5f5f5;
}
.leading__ctt {
  background-color: #fff;
  padding-bottom: min(3.57vw, 50px);
  margin-top: max(-5.21vw, -100px);
}
@media screen and (max-width: 767px) {
  .leading__ctt {
    margin-top: -12.27vw;
    padding-bottom: 42px;
  }
}
.leading__desc {
  margin-top: min(2.08vw, 40px);
  font-size: clamp(0.87rem, 0.41rem + 0.9493670886vw, 1.25rem); /* 14px @768px - 20px @1400px */
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .leading__desc {
    width: 83vw;
    line-height: 2.143;
  }
}
.leading__br-tab {
  display: none;
}
@media screen and (max-width: 900px) {
  .leading__br-tab {
    display: inline;
  }
}

/**************************************
 * .schedule
 **************************************/
.schedule__slider {
  padding-bottom: min(5vw, 70px);
}
@media screen and (max-width: 767px) {
  .schedule__slider {
    position: relative;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .schedule__slider.c-wrap {
    width: auto;
  }
}
.schedule__list {
  margin-top: min(3.28vw, 46px);
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: min(3.91vw, 46px) 2.94%;
}
@media screen and (max-width: 1400px) {
  .schedule__list {
    column-gap: 3%;
  }
}
@media screen and (max-width: 767px) {
  .schedule__list {
    flex-wrap: nowrap;
    margin-top: 24px;
    justify-content: flex-start !important;
    gap: 0;
  }
}
.schedule__list:has(> :nth-child(-n+3):last-child) { /* リストの数が3個以下 */
  justify-content: center;
}
@media screen and (max-width: 1400px) {
  .schedule__list:has(> :nth-child(-n+3):last-child) { /* リストの数が3個以下 */
    justify-content: flex-start;
  }
  .schedule__list:has(> :nth-child(-n+2):last-child) { /* リストの数が2個以下 */
    justify-content: center;
  }
}
.schedule {
  --schedule-item-width-sp: 47%;
}
@media screen and (max-width: 620px) {
  .schedule {
    --schedule-item-width-sp: min(66.66vw, 310px);
  }
}
.schedule__item {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0.57vw 0.57vw 1.25vw rgb(174 174 174 / 0.27));
  width: 22.79%;
  height: auto;
}
.schedule__item:nth-child(4n-2) {
  --delay: 0.15s;
}
.schedule__item:nth-child(4n-1) {
  --delay: 0.3s;
}
.schedule__item:nth-child(4n) {
  --delay: 0.45s;
}
@media screen and (max-width: 1400px) {
  .schedule__item {
    width: 31.33%;
  }
  .schedule__item:nth-child(3n-2) {
    --delay: 0s;
  }
  .schedule__item:nth-child(3n-1) {
    --delay: 0.15s;
  }
  .schedule__item:nth-child(3n) {
    --delay: 0.3s;
  }
}
@media screen and (max-width: 767px) {
  .schedule__item {
    width: var(--schedule-item-width-sp);
  }
  .schedule__item:nth-child(2n-1) {
    --delay: 0;
  }
  .schedule__item:nth-child(2n) {
    --delay: 0.15s;
  }
}
@media screen and (max-width: 620px) {
  .schedule__item {
    --delay: 0;
    --delay: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .schedule__item.anim-fade-in-up {
    animation: none !important;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.schedule__logo, .schedule__main, .schedule__img {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .schedule__logo, .schedule__main, .schedule__img {
    border-radius: 10px;
  }
}
.schedule__logo, .schedule__main {
  border: 2px solid #e10915;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .schedule__logo, .schedule__main {
    border-width: 1px;
  }
}
.schedule__logo {
  position: relative;
  padding-block: 0.98%;
}
@media screen and (max-width: 767px) {
  .schedule__logo {
    padding-block: 2%;
  }
}
.schedule__logo::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 20px;
  right: 20px;
  height: 4px;
  background-color: #fff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .schedule__logo::before {
    left: 2.8%;
    right: 2.8%;
  }
}
.schedule__logo::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 28px;
  right: 28px;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, #e10915, #e10915 4px, transparent 4px, transparent 8px);
  background-position: center center;
  background-repeat: repeat-x;
  background-size: 100% 2px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .schedule__logo::after {
    left: 6.4%;
    right: 6.4%;
    height: 1px;
    background-image: repeating-linear-gradient(90deg, #e10915, #e10915 2px, transparent 2px, transparent 4px);
  }
}
.schedule__logo img {
  width: 70.58%;
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .schedule__logo img {
    width: 70.23%;
  }
}
.schedule__main {
  flex: 1;
  margin-top: -2px;
  padding: 0 10.78% 5.88%;
}
@media screen and (max-width: 767px) {
  .schedule__main {
    padding-inline: 9.6%;
    padding-bottom: 7.2%;
  }
}
.schedule__area {
  margin-block: 0.5em 0.36em;
  font-weight: 500;
  font-size: min(2.4vw, 1.87rem);
  font-size: 9.8cqw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .schedule__area {
    margin-block: 0.75em 0.55em;
    font-size: 1.25rem;
    font-size: 8cqw;
  }
}
.schedule__area-small {
  font-size: 0.6em;
}
.schedule__img {
  overflow: hidden;
}
.schedule__img img {
  width: 100%;
  display: block;
}
.schedule__link {
  padding-left: 0;
  list-style-type: none;
}
.schedule__link > li {
  margin-top: 13px;
  margin-top: 4.24cqw;
}
@media screen and (max-width: 767px) {
  .schedule__link > li {
    margin-top: 8px;
    margin-top: 3.2cqw;
  }
}
.schedule__link > li:first-child {
  margin-top: 25px;
  margin-top: 8.16cqw;
}
@media screen and (max-width: 767px) {
  .schedule__link > li:first-child {
    margin-top: 16px;
    margin-top: 6.4cqw;
  }
}
.schedule__link a {
  position: relative;
  display: grid;
  place-content: center;
  border-radius: 9999px;
  background: #e10915;
  font-size: min(1.5vw, 1rem);
  font-size: 5.22cqw;
  height: 3em;
  font-weight: bold;
  color: #fff;
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  .schedule__link a {
    font-size: 0.81rem;
    font-size: 5.2cqw;
    height: 2.23em;
  }
}
.schedule__link a::before, .schedule__link a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.68em;
  width: 1.62em;
  height: 1.62em;
}
@media screen and (max-width: 767px) {
  .schedule__link a::before, .schedule__link a::after {
    width: 1.42em;
    height: 1.42em;
    right: 0.46em;
  }
}
.schedule__link a::before {
  border-radius: 50%;
  background-color: #fff;
}
.schedule__link a::after {
  background: center center/contain no-repeat url("../img/c_arrow_black.svg");
  transform: translateY(-50%) scale(0.5);
}
.schedule__link a img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.12em;
  width: 1.37em;
}
@media screen and (max-width: 767px) {
  .schedule__link a img {
    left: 2em;
    width: 1.3em;
  }
}
.schedule__link a:hover::after {
  animation: arrow-move 0.4s ease forwards;
}
.schedule__reco-ttl {
  margin-top: 17px;
  margin-top: 5.55cqw;
  position: relative;
  display: grid;
  place-content: center;
  color: #e10915;
  text-align: center;
  font-weight: 500;
  height: 2.4em;
  font-size: min(0.98vw, 0.93rem);
  font-size: min(1.5vw, 0.93rem);
  font-size: 4.9cqw;
  border: 1px solid #e10915;
  border-radius: 9999px;
}
@media screen and (max-width: 767px) {
  .schedule__reco-ttl {
    margin-top: 12px;
    margin-top: 4.8cqw;
    height: 1.84em;
    font-size: 0.78rem;
    font-size: 5cqw;
  }
}
.schedule__reco-ttl::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - 0.06em);
  left: 57%;
  width: 1em;
  height: 0.93em;
  background: center center/contain no-repeat url("../img/schedule_balloon.svg");
}
@media screen and (max-width: 767px) {
  .schedule__reco-ttl::after {
    top: calc(100% - 2px);
    width: 0.72em;
    left: 45%;
  }
}
.schedule__reco-list {
  margin: 14px -9% 0 17px;
  margin-top: 4.57cqw;
  margin-left: 5.55cqw;
  padding-left: 0;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .schedule__reco-list {
    margin-left: 12px;
    margin-right: -6%;
    margin-top: 10px;
    margin-top: 4cqw;
  }
}
.schedule__reco-list > li {
  position: relative;
  font-size: 0.93rem;
  font-size: min(1.4vw, 0.93rem);
  font-size: 4.9cqw;
  line-height: 1.467;
  padding-left: 0.8em;
}
@media screen and (max-width: 767px) {
  .schedule__reco-list > li {
    font-size: 0.78rem;
    font-size: 5cqw;
    line-height: 1.28;
  }
}
.schedule__reco-list > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.53em;
  background-color: #e10915;
  border-radius: 50%;
  width: 0.53em;
  height: 0.53em;
}
@media screen and (max-width: 767px) {
  .schedule__reco-list > li::before {
    width: 0.4em;
    height: 0.4em;
  }
}
.schedule__nav-area {
  display: none;
}
@media screen and (max-width: 767px) {
  .schedule__nav-area {
    position: relative;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    display: flex;
    justify-content: space-between;
    width: var(--schedule-item-width-sp);
    margin-inline: auto;
  }
}
.schedule__nav {
  translate: 108% -50%;
  appearance: none;
  border-width: 0;
  border-radius: 50%;
  box-shadow: none;
  background: #e10915;
  width: 60px;
  height: 60px;
  transition: background-color 0.3s;
  z-index: 100;
  filter: drop-shadow(0.57vw 0.57vw 1.25vw rgb(0 0 0 / 0.4));
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .schedule__nav {
    width: min(9vw, 46px);
    height: min(9vw, 46px);
  }
}
.schedule__nav::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 33.33%;
  height: 100%;
  background: center center/100% auto no-repeat url("../img/c_arrow_white.svg");
  pointer-events: none;
}
.schedule__nav.swiper-button-disabled {
  opacity: 0;
}
.schedule__nav--prev {
  translate: -108% -50%;
}
.schedule__nav--prev::after {
  transform: translateX(-50%) scaleX(-1);
}

/**************************************
 * .gallery
 **************************************/
@keyframes autoscroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.gallery {
  max-width: 100%;
  overflow: hidden;
}
.gallery__scroll {
  display: flex;
  max-width: none;
  width: max-content;
}
.gallery__scroll.is-running {
  animation: autoscroll 50s linear infinite;
}
.gallery__track {
  display: flex;
  max-width: none;
}
.gallery__item {
  width: 23.95vw;
  max-width: 460px;
}
@media screen and (max-width: 767px) {
  .gallery__item {
    width: 172.5px;
  }
}
.gallery__item img {
  display: block;
  width: 100%;
}

/**************************************
* .tour
**************************************/
.tour {
  margin-top: min(4.28vw, 60px);
  /* 古いAndroid対策
     hiddenでない直下の子が0個または1個の時ページネーションを消す */
}
.tour:not(:has(.tour__item:nth-child(2 of :not([hidden])))) .tour__pagination {
  display: none;
}
@media screen and (max-width: 767px) {
  .tour {
    margin-top: 40px;
  }
}
.tour__leading {
  margin-top: 40px;
  text-align: center;
  font-size: clamp(0.75rem, 0.59rem + 0.3164556962vw, 0.87rem); /* 12px @768px - 14px @1400px */
  line-height: 2.125;
}
@media screen and (max-width: 767px) {
  .tour__leading {
    margin-top: 37px;
    font-size: 0.75rem;
    line-height: 1.654;
  }
}
.tour__tab-area {
  margin: 40px auto 0;
  width: 1600px;
  max-width: 100%;
  border-radius: 10px;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .tour__tab-area {
    width: 74.66vw;
    max-width: 100%;
    border-radius: 5px;
    margin-top: 32px;
  }
}
.tour__tab-area > .c-wrap {
  container-type: inline-size;
}
@media screen and (max-width: 767px) {
  .tour__tab-area > .c-wrap {
    width: 88%;
  }
}
.tour__area {
  list-style-type: none;
  padding-top: 2.94%;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2.94%;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .tour__area {
    padding-top: 6.5%;
    gap: 12px 7.1%;
  }
}
.tour__area-tab {
  width: 22.79%;
}
@media screen and (max-width: 767px) {
  .tour__area-tab {
    width: 46.44%;
  }
}
.tour__area-tab button {
  display: grid;
  place-content: center;
  appearance: none;
  border: 2px solid #e10915;
  border-radius: 10px;
  background-color: #fff;
  color: #e10915;
  font-size: clamp(0.93rem, 0.55rem + 0.7911392405vw, 1.25rem); /* 15px @768px - 20px @1400px */
  font-weight: bold;
  width: 100%;
  height: 4em;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .tour__area-tab button {
    border-radius: 5px;
    border-width: 1px;
    font-size: 0.87rem;
    height: 3.21em;
  }
}
.tour__area-tab button.is-active {
  background-color: #e10915;
  color: #fff;
  cursor: unset;
}
.tour__country-wrap {
  margin-top: 2.2%;
  padding-left: 0;
  padding-bottom: 2.35%;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .tour__country-wrap {
    margin-top: 4.06%;
    padding-bottom: 5.69%;
  }
}
.tour__country-wrap:not(:has(> :not([hidden]))) {
  margin-top: 0.84%;
}
@media screen and (max-width: 767px) {
  .tour__country-wrap:not(:has(> :not([hidden]))) {
    margin-top: 3%;
  }
}
.tour__country {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 10px 20px;
  column-gap: 1.47%;
}
@media screen and (max-width: 767px) {
  .tour__country {
    gap: 13px 9px;
  }
}
.tour__country button {
  appearance: none;
  padding-inline: 1.37em;
  border: 1px solid #e10915;
  border-radius: 9999px;
  font-size: clamp(0.81rem, 0.58rem + 0.4746835443vw, 1rem); /* 13px @768px - 16px @1400px */
  font-weight: bold;
  height: 2.5em;
  background-color: #fff;
  color: #e10915;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .tour__country button {
    height: 2.03em;
    padding-inline: 1em;
    border-width: 0.5px;
  }
}
.tour__country button.is-active {
  background: #e10915;
  color: #fff;
}
.tour__slider {
  margin-top: min(3.57vw, 50px);
  overflow: visible;
  --tour-slider-gap: min(4vw, 65px);
  --tour-item-width: min(29.28vw, 328px);
}
@media screen and (max-width: 767px) {
  .tour__slider {
    --tour-item-width: var(--wrapper-max-width);
    margin-top: 30px;
  }
}
.tour__slider .swiper-slide {
  height: auto;
}
.tour__panel {
  padding-left: 0;
  list-style-type: none;
  align-items: stretch;
}
.tour__panel:not(:has(> :nth-child(3 of :not([hidden])))) { /* リストの数が2個以下 */
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .tour__panel:not(:has(> :nth-child(3 of :not([hidden])))) {
    justify-content: flex-start;
  }
}
.tour__item {
  container-type: inline-size;
  width: calc(var(--tour-slider-gap) + var(--tour-item-width));
  padding-inline: calc(var(--tour-slider-gap) / 2);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .tour__item {
    width: var(--tour-item-width) !important;
    max-width: 320px;
    padding-inline: 0;
  }
}
.tour__item:nth-child(1 of :not([hidden])) {
  width: calc(var(--tour-slider-gap) / 2 + var(--tour-item-width));
  padding-left: 0;
}
.tour__item:nth-last-child(1 of :not([hidden])) {
  width: calc(var(--tour-slider-gap) / 2 + var(--tour-item-width));
  padding-right: 0;
}
.tour__item[hidden] {
  display: none;
}
.tour__photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 820/520;
  background-color: #eee;
}
@media screen and (max-width: 767px) {
  .tour__photo {
    border-radius: 10px;
  }
}
.tour__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour__agency {
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  .tour__agency {
    margin-top: 17px;
  }
}
.tour__agency span {
  display: inline-block;
  padding: 0.53em 1.13em;
  border-radius: 9999px;
  color: #e10915;
  font-size: 0.93rem;
  font-size: 3.65cqw;
  background-color: #f8ecea;
}
@media screen and (max-width: 767px) {
  .tour__agency span {
    padding-block: 0.4em;
    font-size: 0.78rem;
  }
}
.tour__ttl {
  margin-block: 0.72em 0.57em;
  font-size: 1.2rem;
  font-size: 4.68cqw;
  line-height: 1.667;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .tour__ttl {
    margin-block: 0.31em;
    font-size: 1rem;
    line-height: 1.656;
  }
}
.tour__desc {
  font-size: 0.93rem;
  font-size: 3.65cqw;
  line-height: 1.867;
}
@media screen and (max-width: 767px) {
  .tour__desc {
    font-size: 0.78rem;
    line-height: 1.495;
  }
}
.tour__btn {
  margin-top: 14px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .tour__btn {
    margin-top: 12px;
  }
}
.tour__btn a {
  position: relative;
  margin-inline: auto;
  display: grid;
  place-content: center;
  border-radius: 9999px;
  border: 1px solid #e10915;
  width: 13.75em;
  max-width: 100%;
  height: 4.37em;
  font-size: 1rem;
  font-size: 3.9cqw;
  color: #e10915;
  text-decoration: none;
  padding-right: 0.75em;
  transition: color 0.4s, background-color 0.4s;
}
@media screen and (max-width: 767px) {
  .tour__btn a {
    font-size: 0.81rem;
    border-width: 0.5px;
    width: 15.38em;
    height: 3.46em;
  }
}
.tour__btn a::before, .tour__btn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.93em;
  width: 1.87em;
  height: 1.87em;
}
@media screen and (max-width: 767px) {
  .tour__btn a::before, .tour__btn a::after {
    width: 2.11em;
    height: 2.11em;
    right: 0.69em;
  }
}
.tour__btn a::before {
  border-radius: 50%;
  background-color: #e10915;
}
.tour__btn a::after {
  background: center center/contain no-repeat url("../img/c_arrow_white.svg");
  transform: translateY(-50%) scale(0.433);
}
.tour__btn a:hover {
  background-color: #e10915;
  color: #fff;
}
.tour__btn a:hover::after {
  animation: arrow-move 0.4s ease forwards;
}
.tour__controller {
  margin-top: 49px;
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 5.14%;
}
@media screen and (max-width: 767px) {
  .tour__controller {
    margin-top: 33px;
    column-gap: 18px;
  }
}
.tour__nav-area {
  display: flex;
  gap: 0 11px;
}
@media screen and (max-width: 767px) {
  .tour__nav-area {
    column-gap: 6px;
  }
}
.tour__nav {
  position: relative;
  appearance: none;
  border-width: 0;
  border-radius: 50%;
  box-shadow: none;
  background: #e10915;
  width: 60px;
  height: 60px;
  transition: background-color 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .tour__nav {
    width: 37.5px;
    height: 37.5px;
  }
}
.tour__nav::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 33.33%;
  height: 100%;
  background: center center/100% auto no-repeat url("../img/c_arrow_white.svg");
  pointer-events: none;
}
.tour__nav.swiper-button-disabled {
  background-color: #eeeeee;
}
.tour__nav--prev::after {
  transform: translateX(-50%) scaleX(-1);
}
.tour__pagination {
  height: 4px;
  flex: 1;
  display: flex;
  background-color: #eeeeee;
  cursor: pointer;
}
.tour__pagination .swiper-scrollbar-drag {
  background-color: #e10915;
}

/**************************************
* .campaign
**************************************/
.campaign {
  --round-top-offset-top: 6.09vw;
  --round-top-bg: #fff;
  margin-top: 30px;
  padding-top: 15.41vw;
  background: #e10915;
}
@media screen and (max-width: 767px) {
  .campaign {
    --round-top-offset-top: 9.86vw;
    margin-top: 16px;
    padding-top: 30.13vw;
  }
}
@media (max-width: 680px) {
  .campaign .c-round-top__round::after {
    background: #e10915;
  }
}
.campaign .c-round-top__round svg {
  fill: #e10915;
}
.campaign .c-flight__path {
  mask: url(#campaign-mask);
  -webkit-mask: url(#campaign-mask);
}
.campaign .c-hl {
  position: relative;
}
.campaign .c-hl__en, .campaign .c-hl__ja {
  color: #fff;
}
.campaign__list {
  margin: 40px auto 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 76px 4.77%;
}
@media screen and (max-width: 767px) {
  .campaign__list {
    margin-top: 26px;
    row-gap: 37px;
  }
}
.campaign__list:has(> :nth-child(-n+2):last-child) { /* リストの数が2個以下 */
  justify-content: center;
}
@media screen and (max-width: 1400px) {
  .campaign__list {
    column-gap: 4.8%;
  }
}
@media screen and (max-width: 767px) {
  .campaign__list {
    justify-content: center !important;
  }
}
.campaign__item {
  position: relative;
  width: 30.14%;
  max-width: 410px;
  background-color: #fff;
  border-radius: 20px;
  filter: drop-shadow(0.57vw 0.57vw 1.25vw rgb(150 8 16 / 0.24));
  overflow: hidden;
}
.campaign__item:nth-child(3n-1) {
  --delay: 0.15s;
}
.campaign__item:nth-child(3n) {
  --delay: 0.3s;
}
@media screen and (max-width: 1400px) {
  .campaign__item {
    width: 47.6%;
  }
  .campaign__item:nth-child(2n-1) {
    --delay: 0s;
  }
  .campaign__item:nth-child(2n) {
    --delay: 0.15s;
  }
}
@media screen and (max-width: 767px) {
  .campaign__item {
    width: 410px;
    max-width: 100%;
    border-radius: 10px;
    --delay: 0s !important;
  }
}
.campaign__item a {
  display: block;
  text-decoration: none;
  container-type: inline-size;
}
.campaign__item a:hover .campaign__item-inner::after {
  animation: arrow-move 0.4s ease forwards;
}
.campaign__item-inner {
  position: relative;
  padding: 9.02% 6.09% 17.07%;
}
.campaign__item-inner::before, .campaign__item-inner::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  margin-bottom: 3.65%;
  right: 4.14%;
  width: 42px;
  height: 42px;
}
@media screen and (max-width: 767px) {
  .campaign__item-inner::before, .campaign__item-inner::after {
    width: 35.5px;
    height: 35.5px;
  }
}
.campaign__item-inner::before {
  border-radius: 50%;
  background-color: #e10915;
}
.campaign__item-inner::after {
  background: center center/contain no-repeat url("../img/c_arrow_white.svg");
  transform: scale(0.333);
}
.campaign__balloon {
  position: absolute;
  top: 1.35em;
  right: 0.47em;
  padding-inline: 1.11em;
  display: grid;
  place-content: center;
  color: #e10915;
  text-align: center;
  font-weight: 500;
  height: 2.53em;
  font-size: 1.06rem;
  font-size: 4.14cqw;
  border: 2px solid #e10915;
  border-radius: 9999px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .campaign__balloon {
    font-size: 0.75rem;
    border-width: 1.5px;
    top: 1.08em;
    right: 0.5em;
    height: 2.2em;
    padding-inline: 0.91em;
  }
}
.campaign__balloon::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - 0.06em);
  left: 49%;
  width: 1.06em;
  height: 1em;
  background: center center/contain no-repeat url("../img/campaign_balloon.svg");
}
.campaign__img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 720/468;
}
@media screen and (max-width: 767px) {
  .campaign__img {
    border-radius: 10px;
  }
}
.campaign__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.campaign__txts {
  margin-inline: 2.4%;
}
.campaign__term {
  position: relative;
  padding: 0 0 0.93em;
  margin: 1.68em 0 0;
  font-size: 1rem;
  font-size: 3.9cqw;
  line-height: 1.3;
  color: #e10915;
  display: flex;
  column-gap: 0.37em;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .campaign__term {
    margin-top: 1.33em;
    font-size: 0.75rem;
    column-gap: 0;
  }
}
.campaign__term::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, #e10915, #e10915 4px, transparent 4px, transparent 8px);
  background-position: center center;
  background-repeat: repeat-x;
  background-size: 100% 2px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .campaign__term::after {
    left: calc(-0.17px * 1em);
  }
}
.campaign__term dt,
.campaign__term dd {
  font-size: inherit;
}
.campaign__term dt {
  position: relative;
  font-weight: normal;
  width: max-content;
  flex-shrink: 0;
  padding-left: 1.62em;
  box-sizing: content-box;
}
.campaign__term dt::before {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.12em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: center center/contain no-repeat url("../img/campaign_icon_calendar.svg");
}
@media screen and (max-width: 767px) {
  .campaign__term dt::before {
    width: 1.5em;
    height: 1.37em;
  }
}
.campaign__ttl {
  margin-block: 0.83em 0.29em;
  font-weight: bold;
  font-size: 1.5rem;
  font-size: 5.85cqw;
  line-height: 1.667;
}
@media screen and (max-width: 767px) {
  .campaign__ttl {
    font-size: 1rem;
    line-height: 1.656;
  }
}
.campaign__desc {
  font-size: 0.93rem;
  font-size: 3.65cqw;
  line-height: 1.733;
}
@media screen and (max-width: 767px) {
  .campaign__desc {
    font-size: 0.78rem;
    line-height: 1.495;
  }
}

/**************************************
* .to-top
**************************************/
@keyframes totop-arrow {
  from {
    opacity: 0;
    transform: rotate(-90deg) translateX(-8px);
  }
  to {
    opacity: 1;
    transform: rotate(-90deg) translateY(0);
  }
}
.to-top {
  margin-top: -18px;
  padding-right: calc(var(--bar-width) + 2.96vw);
  padding-bottom: 30px;
}
@media screen and (max-width: 1400px) {
  .to-top {
    margin-top: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .to-top {
    margin-top: 37px;
    padding-right: 0;
    padding-bottom: 21px;
    width: var(--wrapper-width);
    margin-inline: auto;
  }
}
.to-top a {
  position: relative;
  text-decoration: none;
  margin-inline: auto 0;
  width: max-content;
  display: flex;
  flex-direction: column;
  row-gap: 1.06em;
  align-items: center;
  color: #fff;
  font-family: var(--font-en);
  font-weight: bold;
  font-size: min(1.7vw, 1rem);
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .to-top a {
    font-size: 0.68rem;
    margin-inline: auto;
    row-gap: 0.63em;
  }
}
.to-top a::before {
  content: "";
  display: block;
  width: 1.56em;
  height: 1.31em;
  background: center center/contain no-repeat url("../img/c_arrow_white.svg");
  transform: rotate(-90deg);
}
.to-top a:hover::before {
  animation: totop-arrow 0.4s ease forwards;
}

/**************************************
 * .bar
 **************************************/
@keyframes autoscroll-vertical-to-top {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes autoscroll-vertical-to-bottom {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
.bar__item {
  position: fixed;
  top: 0;
  bottom: 0;
  top: calc(env(safe-area-inset-top) * -1);
  bottom: calc(env(safe-area-inset-bottom) * -1);
  width: var(--bar-width);
  background-color: #fff;
  z-index: 200;
}
.bar__item--left {
  left: 0;
  border-right: 1px solid #e10915;
}
.bar__item--right {
  right: 0;
  border-left: 1px solid #e10915;
}
.bar__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.bar.is-running .bar__scroll {
  animation: autoscroll-vertical-to-top 140s linear infinite;
}
.bar.is-running .bar__item--right .bar__scroll {
  animation-name: autoscroll-vertical-to-bottom;
}
.bar__track {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bar img {
  display: block;
  margin-top: 71.18%;
  width: 52.54%;
}
@media screen and (max-width: 767px) {
  .bar img {
    width: 60%;
  }
}

/**************************************
 * .footer
 **************************************/
.footer {
  width: 1600px;
  max-width: var(--wrapper-max-width);
  margin: 57px auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .footer {
    flex-direction: column;
    row-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 41px;
    row-gap: 30px;
  }
}
.footer__logo-area {
  display: flex;
  align-items: center;
  margin-left: 3.12vw;
  gap: 0 55px;
}
@media screen and (max-width: 1400px) {
  .footer__logo-area {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo-area {
    flex-direction: column;
    row-gap: 43px;
  }
}
.footer__logo {
  flex-shrink: 0;
}
.footer__logo img {
  width: 313px;
}
@media screen and (max-width: 1400px) {
  .footer__logo img {
    width: 22.35vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    width: 191px;
  }
}
.footer__link {
  display: flex;
  gap: 0 22px;
  padding-left: 0;
  list-style-type: none;
}
@media screen and (max-width: 1400px) {
  .footer__link {
    column-gap: 15px;
  }
}
.footer__link a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border: 2px solid #e10915;
  border-radius: 50%;
}
@media screen and (max-width: 1400px) {
  .footer__link a {
    width: 52px;
    height: 52px;
  }
}
@media screen and (max-width: 767px) {
  .footer__link a {
    border-width: 1px;
  }
}
.footer__link img {
  width: 37.5%;
}
.footer__copyright {
  font-size: 0.68rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: clamp(6.7px, 1.78vw, 11px);
  }
}