
@font-face {
  font-family: "Futura-LT-Medium";
  src: url("/13th_anniversary/fonts/FuturaLTPro-Medium.woff") format("woff"), url("/13th_anniversary/fonts/FuturaLTPro-Medium.otf") format("opentype");
}

@font-face {
  font-family: "Futura-LT-Bold";
  src: url("/13th_anniversary/fonts/FuturaLTPro-Bold.woff") format("woff"), url("/13th_anniversary/fonts/FuturaLTPro-Bold.otf") format("opentype");
}

.x-plus5 {
  opacity: 0;
  transform: translateX(5rem);
  transition-duration: 0.5s;
}

.x-minus5 {
  opacity: 0;
  transform: translateX(-5rem);
  transition-duration: 0.5s;
}

.y-plus5 {
  opacity: 0;
  transform: translateY(5rem);
  transition-duration: 0.5s;
}

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

.delay5 {
  transition-delay: 0.5s;
}

.delay6 {
  transition-delay: 0.6s;
}

.delay7 {
  transition-delay: 0.7s;
}

.delay8 {
  transition-delay: 0.8s;
}

.delay9 {
  transition-delay: 0.9s;
}

.op0 {
  opacity: 0;
  transition-duration: 0.5s;
}

.active {
  opacity: 1;
  transform: translateX(0);
  transform: translateY(0);
}

.bound {
  animation: bound 0.5s ease-in;
}

@keyframes bound {

  /** 開始時は１倍の大きさ */
  from {
    transform: scale(1);
  }

  /** 0%～25%にかけて1.15倍する */
  25% {
    transform: scale(1.15);
  }

  /** 25%～50%にかけて0.95倍する */
  50% {
    transform: scale(0.95);
  }

  /** 50%～75%にかけて1.05倍する */
  75% {
    transform: scale(1.05);
  }

  /** 終了時は元の大きさに戻す */
  to {
    transform: scale(1);
  }
}

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(0.3rem);
}

.remodal-overlay {
  background: rgba(0, 0, 0, 0.7);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

.remodal-wrapper {
  padding: 1rem 1rem 0;
}

.remodal {
  width: 100%;
  max-width: 55rem;
  margin-bottom: 1rem;
  padding: 3rem;
  transform: translate3d(0, 0, 0);
  background: white;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

.remodal-close {
  position: absolute;
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  top: 0;
  left: 0;
  color: #ff0000;
  text-decoration: none;
  background: transparent;
  overflow: visible;
  transition: color 0.2s;
  cursor: pointer;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  position: absolute;
  display: block;
  width: 3.5rem;
  line-height: 3.5rem;
  top: 0;
  left: 0;
  font-size: 24px;
  text-align: center;
}

.remodal-confirm,
.remodal-cancel {
  display: inline-block;
  min-width: 11rem;
  padding: 1.2rem 0;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
  transition: background 0.2s;
}

.remodal-confirm {
  color: white;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: white;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.modal-lottery {
  padding: 3rem;
}

.modal-lottery .ttl {
  margin-bottom: 2rem;
  font-size: 30px;
  font-weight: 900;
}

@media screen and (max-width: 479px) {
  .modal-lottery {
    padding: 1rem;
  }
}

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 55rem;
}

/**
 * Swiper 4.5.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 16, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal>.swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical>.swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

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

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical>.swiper-pagination-progressbar,
.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

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

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

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

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container>img,
.swiper-zoom-container>svg,
.swiper-zoom-container>canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next+.swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* ==========================================
  Card size
========================================== */
/* ==========================================
  Calculations
========================================== */
/* ==========================================
  Placeholder
========================================== */
.p-history .history-card:nth-child(even)::after,
.p-history .history-card:nth-child(odd)::after {
  position: absolute;
  width: 0;
  height: 0;
  border: 1.5px solid var(--red);
  content: "";
}

@media screen and (max-width: 959px) {

  .p-history .history-card:nth-child(even)::after,
  .p-history .history-card:nth-child(odd)::after {
    content: none;
  }
}

.p-history .history-card:nth-child(even)::before,
.p-history .history-card:nth-child(odd)::before {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Futura-LT-Bold", sans-serif;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: auto;
  left: 50%;
  transform: none;
  width: 70px;
  height: 70px;
  border-radius: 70px;
  background-color: var(--red);
  color: var(--white);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  content: "";
}

@media screen and (max-width: 959px) {

  .p-history .history-card:nth-child(even)::before,
  .p-history .history-card:nth-child(odd)::before {
    font-size: 12px;
    font-size: 1.2rem;
    top: -60px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
  }
}

/* Some Cool Stuff */
.history-card:nth-child(1) {
  order: 1;
}

.history-card:nth-child(2) {
  order: 5;
}

.history-card:nth-child(3) {
  order: 2;
}

.history-card:nth-child(4) {
  order: 6;
}

.history-card:nth-child(5) {
  order: 3;
}

.history-card:nth-child(6) {
  order: 7;
}

.p-history .arrow-down {
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 10px;
}

.p-history .history-card-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  height: 2134px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 959px) {
  .p-history .history-card-wrapper {
    display: block;
    height: 100%;
  }
}

.p-history .history-card-wrapper::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  content: "";
  border-left: 3px solid var(--red);
}

@media screen and (max-width: 959px) {
  .p-history .history-card-wrapper::before {
    top: -80px;
  }
}

.p-history .history-card-wrapper::after {
  font-size: 22px;
  font-size: 2.2rem;
  font-family: "Futura-LT-Bold", sans-serif;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  width: 100%;
  max-width: 238px;
  height: 40px;
  padding-top: 6px;
  padding-right: 15px;
  padding-bottom: 5px;
  padding-left: 15px;
  border-radius: 70px;
  box-sizing: border-box;
  background-color: var(--red);
  color: var(--white);
  font-weight: bold;
  line-height: 1;
  content: "2022";
}

@media screen and (max-width: 959px) {
  .p-history .history-card-wrapper::after {
    font-size: 18px;
    font-size: 1.8rem;
    position: static;
    max-width: 171.33px;
    height: 28.79px;
    padding-top: 0;
    padding-right: 60px;
    padding-bottom: 0;
    padding-left: 60px;
    transform: none;
    margin-top: 55px;
    margin-right: auto;
    margin-left: auto;
  }
}

.p-history .history-card {
  display: block;
  position: relative;
  z-index: 2;
  width: calc(50% - 54px);
  margin-top: 54px;
  margin-right: 108px;
  margin-bottom: 54px;
  margin-left: 108px;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.2);
  background-color: var(--white);
}

@media screen and (max-width: 959px) {
  .p-history .history-card {
    width: 70%;
    max-width: 100%;
    margin-top: 90px;
    margin-bottom: 0;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 599px) {
  .p-history .history-card {
    width: 100%;
    max-width: 100%;
  }
}

.p-history .history-card::after {
  top: 35px;
}

.p-history .history-card:nth-child(odd) {
  margin-right: 54px;
  margin-left: auto;
}

@media screen and (max-width: 959px) {
  .p-history .history-card:nth-child(odd) {
    margin-right: auto;
  }
}

.p-history .history-card:nth-child(odd)::after {
  left: 100%;
  border-left-width: 17px;
  border-left-style: solid;
}

.p-history .history-card:nth-child(odd)::before {
  right: -89px;
  left: auto;
}

@media screen and (max-width: 959px) {
  .p-history .history-card:nth-child(odd)::before {
    right: auto;
    left: 50%;
  }
}

.p-history .history-card:nth-child(even) {
  margin-right: auto;
  margin-left: 54px;
}

@media screen and (max-width: 959px) {
  .p-history .history-card:nth-child(even) {
    margin-left: auto;
  }
}

.p-history .history-card:nth-child(even)::after {
  right: 100%;
  border-right-width: 17px;
  border-right-style: solid;
}

.p-history .history-card:nth-child(even)::before {
  left: -89px;
}

@media screen and (max-width: 959px) {
  .p-history .history-card:nth-child(even)::before {
    left: 50%;
  }
}

.p-history .history-card:nth-child(2) {
  margin-top: 250px;
}

@media screen and (max-width: 959px) {
  .p-history .history-card:nth-child(2) {
    margin-top: 90px;
  }
}

.p-history .history-card:nth-child(1)::before {
  content: "2012";
}

.p-history .history-card:nth-child(2)::before {
  content: "2013";
}

.p-history .history-card:nth-child(3)::before {
  content: "2014";
}

.p-history .history-card:nth-child(4)::before {
  content: "2018";
}

.p-history .history-card:nth-child(5)::before {
  content: "2019";
}

.p-history .history-card:nth-child(6)::before {
  content: "2020";
}

.p-history .history-card .year>span {
  font-family: "Futura-LT-Bold", sans-serif;
  letter-spacing: 1px;
  font-size: 18px;
  font-size: 1.8rem;
  display: inline-block;
  padding-top: 3px;
  padding-right: 15px;
  padding-bottom: 3px;
  padding-left: 15px;
  border: 1px solid var(--red);
  border-radius: 50px;
  color: var(--red);
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .p-history .history-card .year>span {
    font-size: 14px;
    font-size: 1.4rem;
    padding-right: 12px;
    padding-left: 12px;
  }
}

.p-history .history-card .title {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 959px) {
  .p-history .history-card .title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}

.p-history .history-card .description {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.7857142857;
}

@media screen and (max-width: 959px) {
  .p-history .history-card .description {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}

/* ---------------------
    - variables
    - base
    - layout
    - component
    - project
--------------------- */
/* ==========================================
  variables
  // 汎用的に.c-stackを作りたかったので
  // mixin.scssから共通の数値で再設計
========================================== */
/* ==========================================
  base
========================================== */
:root {
  --black: black;
  --gray: #f5f5f5;
  --white: white;
  --red: red;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  background-color: var(--gray);
}

a {
  transition: opacity 0.2s ease-out;
  color: inherit;
  text-decoration: none;
}

a:hover,
a:active {
  outline: 0;
}

@media (hover: hover) and (pointer: fine) {

  a:hover,
  a:active {
    opacity: 0.6;
  }
}

main {
  padding-bottom: 150px;
}

#history>*:first-child,
#campaign>*:first-child,
#about>*:first-child {
  margin-top: -90px;
  padding-top: 90px;
}

/* ==========================================
  layout
========================================== */
.l-outline {
  width: 100%;
  max-width: 98rem;
  margin-right: auto;
  margin-left: auto;
}

.l-outline\:narrow {
  width: 100%;
  max-width: 68rem;
  margin-right: auto;
  margin-left: auto;
}

.l-outline__margin {
  padding-right: 2rem;
  padding-left: 2rem;
}

/* ==========================================
  component
========================================== */
.c-heading\:sm {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (max-width: 959px) {
  .c-heading\:sm {
    font-size: 20px;
    font-size: 2rem;
    text-align: center;
    line-height: 1.5;
  }
}

.c-heading\:md {
  font-size: 36px;
  font-size: 3.6rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 959px) {
  .c-heading\:md {
    font-size: 20px;
    font-size: 2rem;
  }
}

.c-heading\:lg {
  font-size: 40px;
  font-size: 4rem;
  text-align: center;
  font-weight: 600;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .c-heading\:lg {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.c-heading\:lg::after {
  display: block;
  width: 100%;
  max-width: 120px;
  height: 3px;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  background-color: var(--red);
  content: "";
}

@media screen and (max-width: 959px) {
  .c-heading\:lg::after {
    max-width: 50px;
  }
}

.c-heading\:xl {
  font-size: 50px;
  font-size: 5rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  .c-heading\:xl {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.c-heading\:2xl {
  font-family: "Futura-LT-Bold", sans-serif;
  letter-spacing: 1px;
  font-size: 114px;
  font-size: 11.4rem;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .c-heading\:2xl {
    font-size: 50px;
    font-size: 5rem;
  }
}

.c-stack\:5>*+* {
  margin-top: 5px;
}

.c-stack\:10>*+* {
  margin-top: 10px;
}

.c-stack\:15>*+* {
  margin-top: 15px;
}

.c-stack\:20>*+* {
  margin-top: 20px;
}

.c-stack\:25>*+* {
  margin-top: 25px;
}

.c-stack\:30>*+* {
  margin-top: 30px;
}

.c-stack\:35>*+* {
  margin-top: 35px;
}

.c-stack\:40>*+* {
  margin-top: 40px;
}

.c-stack\:45>*+* {
  margin-top: 45px;
}

.c-stack\:50>*+* {
  margin-top: 50px;
}

.c-stack\:55>*+* {
  margin-top: 55px;
}

.c-stack\:60>*+* {
  margin-top: 60px;
}

.c-stack\:65>*+* {
  margin-top: 65px;
}

.c-stack\:70>*+* {
  margin-top: 70px;
}

.c-stack\:75>*+* {
  margin-top: 75px;
}

.c-stack\:80>*+* {
  margin-top: 80px;
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:5>*+* {
    margin-top: 5px;
  }
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:10>*+* {
    margin-top: 10px;
  }
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:15>*+* {
    margin-top: 15px;
  }
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:20>*+* {
    margin-top: 20px;
  }
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:25>*+* {
    margin-top: 25px;
  }
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:30>*+* {
    margin-top: 30px;
  }
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:35>*+* {
    margin-top: 35px;
  }
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:40>*+* {
    margin-top: 40px;
  }
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:45>*+* {
    margin-top: 45px;
  }
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:50>*+* {
    margin-top: 50px;
  }
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:55>*+* {
    margin-top: 55px;
  }
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:60>*+* {
    margin-top: 60px;
  }
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:65>*+* {
    margin-top: 65px;
  }
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:70>*+* {
    margin-top: 70px;
  }
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:75>*+* {
    margin-top: 75px;
  }
}

@media screen and (max-width: 479px) {
  .c-stack_xs\:80>*+* {
    margin-top: 80px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:5>*+* {
    margin-top: 5px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:10>*+* {
    margin-top: 10px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:15>*+* {
    margin-top: 15px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:20>*+* {
    margin-top: 20px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:25>*+* {
    margin-top: 25px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:30>*+* {
    margin-top: 30px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:35>*+* {
    margin-top: 35px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:40>*+* {
    margin-top: 40px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:45>*+* {
    margin-top: 45px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:50>*+* {
    margin-top: 50px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:55>*+* {
    margin-top: 55px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:60>*+* {
    margin-top: 60px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:65>*+* {
    margin-top: 65px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:70>*+* {
    margin-top: 70px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:75>*+* {
    margin-top: 75px;
  }
}

@media screen and (max-width: 599px) {
  .c-stack_sm\:80>*+* {
    margin-top: 80px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:5>*+* {
    margin-top: 5px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:10>*+* {
    margin-top: 10px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:15>*+* {
    margin-top: 15px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:20>*+* {
    margin-top: 20px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:25>*+* {
    margin-top: 25px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:30>*+* {
    margin-top: 30px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:35>*+* {
    margin-top: 35px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:40>*+* {
    margin-top: 40px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:45>*+* {
    margin-top: 45px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:50>*+* {
    margin-top: 50px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:55>*+* {
    margin-top: 55px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:60>*+* {
    margin-top: 60px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:65>*+* {
    margin-top: 65px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:70>*+* {
    margin-top: 70px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:75>*+* {
    margin-top: 75px;
  }
}

@media screen and (max-width: 959px) {
  .c-stack_md\:80>*+* {
    margin-top: 80px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:5>*+* {
    margin-top: 5px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:10>*+* {
    margin-top: 10px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:15>*+* {
    margin-top: 15px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:20>*+* {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:25>*+* {
    margin-top: 25px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:30>*+* {
    margin-top: 30px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:35>*+* {
    margin-top: 35px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:40>*+* {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:45>*+* {
    margin-top: 45px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:50>*+* {
    margin-top: 50px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:55>*+* {
    margin-top: 55px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:60>*+* {
    margin-top: 60px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:65>*+* {
    margin-top: 65px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:70>*+* {
    margin-top: 70px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:75>*+* {
    margin-top: 75px;
  }
}

@media screen and (max-width: 1279px) {
  .c-stack_lg\:80>*+* {
    margin-top: 80px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:5>*+* {
    margin-top: 5px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:10>*+* {
    margin-top: 10px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:15>*+* {
    margin-top: 15px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:20>*+* {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:25>*+* {
    margin-top: 25px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:30>*+* {
    margin-top: 30px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:35>*+* {
    margin-top: 35px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:40>*+* {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:45>*+* {
    margin-top: 45px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:50>*+* {
    margin-top: 50px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:55>*+* {
    margin-top: 55px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:60>*+* {
    margin-top: 60px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:65>*+* {
    margin-top: 65px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:70>*+* {
    margin-top: 70px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:75>*+* {
    margin-top: 75px;
  }
}

@media screen and (max-width: 1280px) {
  .c-stack_xl\:80>*+* {
    margin-top: 80px;
  }
}

.c-link-button {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  padding: 16px;
  border-radius: 5px;
  background-color: var(--red);
  color: var(--white);
  font-weight: 600;
  line-height: 1;
  gap: 20px;
}

@media screen and (max-width: 599px) {
  .c-link-button {
    font-size: 13px;
    font-size: 1.3rem;
    padding: 13px;
    gap: 10px;
  }
}

.c-link-to-members {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  font-weight: 600;
  line-height: 1.5;
  text-decoration: underline !important;
  gap: 10px;
  text-underline-offset: 5px;
}

.c-link-to-members__color-red{
  color: var(--red);
}

@media screen and (max-width: 599px) {
  .c-link-to-members {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* ==========================================
  project
========================================== */
.p-lead {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--red);
  color: var(--white);
  font-weight: 600;
}

@media screen and (max-width: 599px) {
  .p-lead {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.p-lead .logo {
  max-width: 678px;
  margin-right: auto;
  margin-left: auto;
}

.p-lead .title {
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .p-lead .title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.p-lead .title>span {
  font-size: 54px;
  font-size: 5.4rem;
  font-family: "Futura-LT-Bold", sans-serif;
  letter-spacing: 1px;
  font-weight: 600;
}

@media screen and (max-width: 599px) {
  .p-lead .title>span {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.p-lead .greeting {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.5555555556;
}

@media screen and (max-width: 599px) {
  .p-lead .greeting {
    font-size: 20px;
    font-size: 2rem;
  }
}

.p-lead .year {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Futura-LT-Medium", sans-serif;
  letter-spacing: 1px;
  font-weight: 400;
}

@media screen and (max-width: 599px) {
  .p-lead .year {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-lead p {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
}

@media screen and (max-width: 599px) {
  .p-lead p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-in-page-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
  border-bottom: 1px solid var(--red);
}

.p-in-page-link ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: -50px;
  margin-left: -50px;
}

.p-in-page-link li {
  padding-right: 50px;
  padding-left: 50px;
}

@media screen and (max-width: 959px) {
  .p-in-page-link li {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.p-in-page-link li:not(:first-child) {
  border-left: 1px solid var(--red);
}

.p-in-page-link a {
  font-family: "Futura-LT-Medium", sans-serif;
  letter-spacing: 1px;
  font-size: 16px;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--red);
  font-weight: bold;
  line-height: 1;
  gap: 10px;
}

@media screen and (max-width: 599px) {
  .p-in-page-link a {
    font-size: 12px;
    font-size: 1.2rem;
    flex-direction: column;
    gap: 6px;
  }
}

.p-in-page-link a:after {
  width: 9px;
  height: 6px;
  background-image: url("/13th_anniversary/img/arrow-bottom.svg");
  background-repeat: no-repeat;
  content: "";
}

.p-section-greeting {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
}

@media screen and (max-width: 599px) {
  .p-section-greeting {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-campaign section {
  overflow-x: hidden;
}

.p-campaign .heading {
  font-family: "Futura-LT-Medium", sans-serif;
  letter-spacing: 1px;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  width: 290px;
  height: 115px;
  margin-right: auto;
  margin-left: auto;
  background-image: url("/13th_anniversary/img/heading_pc.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  color: var(--red);
  font-weight: 600;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .p-campaign .heading {
    font-size: 12px;
    font-size: 1.2rem;
    width: 115px;
    height: 46px;
    background-image: url("/13th_anniversary/img/heading_sp.svg");
  }
}

.p-campaign .heading:before,
.p-campaign .heading:after {
  position: absolute;
  bottom: 0;
  width: 100vw;
  height: 1px;
  background-color: var(--red);
  content: "";
}

.p-campaign .heading:before {
  left: calc(50% + 145px);
}

@media screen and (max-width: 599px) {
  .p-campaign .heading:before {
    left: calc(50% + 57.5px);
  }
}

.p-campaign .heading:after {
  right: calc(50% + 145px);
}

@media screen and (max-width: 599px) {
  .p-campaign .heading:after {
    right: calc(50% + 57.5px);
  }
}

.p-campaign .heading__number {
  font-size: 36px;
  font-size: 3.6rem;
  font-family: "Futura-LT-Bold", sans-serif;
  letter-spacing: 1px;
  display: block;
  margin-top: 10px;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .p-campaign .heading__number {
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 3px;
  }
}

.p-campaign .period {
  display: flex;
  justify-content: center;
}

.p-campaign .period>span {
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
  display: block;
  padding-top: 16px;
  padding-right: 50px;
  padding-bottom: 16px;
  padding-left: 50px;
  border: 1px solid var(--black);
  font-weight: 600;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .p-campaign .period>span {
    font-size: 14px;
    font-size: 1.4rem;
    width: 100%;
    padding: 12px;
    line-height: 1.7142857143;
  }
}

.p-campaign .lead {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
  line-height: 2;
}

@media screen and (max-width: 599px) {
  .p-campaign .lead {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.75;
  }
}

.p-campaign .lead>sup {
  font-size: 10px;
  font-size: 1rem;
}

.p-campaign .lead>small {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  display: block;
  margin-top: 10px;
  font-weight: lighter;
}

@media screen and (max-width: 599px) {
  .p-campaign .lead>small {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: left;
    margin-top: 0;
  }
}

.p-campaign .title {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  padding-top: 5px;
  padding-right: 25px;
  padding-bottom: 5px;
  padding-left: 25px;
  border: 0.1rem solid var(--red);
  border-radius: 100px;
  color: var(--red);
  font-weight: 600;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .p-campaign .title {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-campaign .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.p-campaign .sns__twitter,
.p-campaign .sns__facebook {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 20px;
  border-radius: 4px;
  color: var(--white);
  line-height: 1;
  gap: 10px;
}

.p-campaign .sns__twitter {
  background-color: #1ea1f1;
}

.p-campaign .sns__twitter>img {
  width: 16px;
}

.p-campaign .sns__facebook {
  background-color: #0050a4;
}

.p-campaign .sns__facebook>img {
  width: 8.356px;
}

.p-campaign .content {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.7857142857;
}

@media screen and (max-width: 599px) {
  .p-campaign .content {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}

.p-campaign .content>small {
  font-size: 13px;
  font-size: 1.3rem;
  display: block;
  font-weight: 300;
  line-height: 2.0833333333;
}

@media screen and (max-width: 599px) {
  .p-campaign .content>small {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
}

.p-notes {
  padding-top: 60px;
  padding-bottom: 100px;
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
}

@media screen and (max-width: 599px) {
  .p-notes {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.p-notes ul>li {
  font-size: 14px;
  font-size: 1.4rem;
  padding-left: 1.2em;
  font-weight: 300;
  text-indent: -1.2em;
}

@media screen and (max-width: 599px) {
  .p-notes ul>li {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-notes ul>li.list-icon:before {
  display: inline;
  padding-right: 6px;
  content: "※";
}

.p-notes ul>li>ul li.list-icon:before {
  display: inline;
  padding-right: 6px;
  content: "・";
}

.p-about .lead {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 300;
  line-height: 1.7777777778;
}

@media screen and (max-width: 599px) {
  .p-about .lead {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-about .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

@media screen and (max-width: 599px) {
  .p-about .container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

.p-about .container>* {
  display: flex;
  flex: auto;
  flex-direction: column;
  max-width: 313px;
}

.p-about .head>img {
  border-radius: 10px 10px 0 0;
}

.p-about .content {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
  padding-left: 20px;
  border-radius: 0 0 10px 10px;
  background-color: var(--white);
}

.p-about .content>h3 {
  font-size: 20px;
  font-size: 2rem;
  padding-left: 10px;
  font-weight: 600;
  line-height: 1.8;
  border-left: 5px solid var(--red);
}

@media screen and (max-width: 599px) {
  .p-about .content>h3 {
    line-height: 1.5;
    border-left: 3px solid var(--red);
  }
}

.p-about .content>p {
  line-height: 1.625;
}

.p-about .c-link-button {
  max-width: 680px;
}

.fw-bold {
  font-weight: bold;
}

.c-list-number li {
  list-style: decimal inside none;
}