  :root {
    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    --color-base: #f8f8f8;
    --color-gray: #ddd;
    --color-theme: #27272a;
    --color-theme-darken: #f12617;
    --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
    --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
    --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
    --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
  }
  .l-inner {
    position: relative;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10rem;
  }

  .l-section {
    border-top: 1px solid #eee;
  }
  .l-section .l-inner {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  [class*=swiper]:focus {
    outline: none;
  }

  .slide-media,
  .thumb-media {
    position: relative;
    overflow: hidden;
  }
  .slide-media img,
  .thumb-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }


  .swiper-button-prev, .swiper-button-next {
    display: grid;
    place-content: center;
    width: 6.4rem;
    height: 6.4rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .swiper-button-prev::before, .swiper-button-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 50%;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
  }
  .swiper-button-prev::after, .swiper-button-next::after {
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    border: solid var(--color-gray);
    border-width: 3px 3px 0 0;
  }
  .swiper-button-prev::after {
    margin-left: 0.4rem;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .swiper-button-next::after {
    margin-right: 0.4rem;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .swiper-button-disabled {
    pointer-events: none;
    opacity: 0;
  }

  .swipe-move {
    margin-top: 4.1em;
    margin-bottom: 0;
  }
  .swipe-move .l-inner {
    padding-bottom: 0;
  }
  .swipe-move .slide-media {
    height: 900px;
  }
  .swipe-move .slide-media img {
    -webkit-transition: 3s;
    transition: 3s;
  }
  .swipe-move .swiper-slide {
    overflow: hidden;
  }
  .swipe-move .swiper-slide[class*=-prev] .slide-media img {
    -webkit-transform: translateX(80vw);
            transform: translateX(80vw);
  }
  .swipe-move .swiper-slide[class*=-next] .slide-media img {
    -webkit-transform: translateX(-80vw);
            transform: translateX(-80vw);
  }
  .swipe-move .content,
  .swipe-move .fraction {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin: auto;
  }
    .swipe-move .fraction {
      display: none;
  }
  .swipe-move .content {
    pointer-events: none;
    font-family: serif;
  }
  .swipe-move .content-title {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--color-theme);
  }
  .swipe-move .content-text {
    font-size: 1.2rem;
    margin: 4rem 0;
    line-height: 2em;
    color: var(--color-theme);
  }
  .swipe-move .content-button {
    font-size: .75rem;
    font-weight: bold;
    display: inline-block;
    color: var(--color-theme);
  }
  .swipe-move .content-button::before {
    display: inline-block;
    width: 3rem;
    height: 1px;
    margin: -2px 1.2rem 0 0;
    content: "";
    vertical-align: middle;
    background-color: currentColor;
  }
  .swipe-move .content.anm-started .content-button {
    pointer-events: auto;
  }
  .swipe-move .fraction {
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
  }
  .swipe-move .fraction .current {
    font-size: 3.2rem;
    display: inline-block;
    overflow: hidden;
    width: 6rem;
  }
  .swipe-move .fraction .current .num {
    display: inline-block;
  }
  .swipe-move .fraction .current .num.anm-started {
    -webkit-animation: swipe-move-fraction 1s var(--easing);
            animation: swipe-move-fraction 1s var(--easing);
  }
  .swipe-move .fraction .total {
    vertical-align: 0.5em;
  }
  .swipe-move .fraction .total::before {
    content: " / ";
  }
  .swipe-move .marker {
    position: relative;
    display: inline-block;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  .swipe-move .marker::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #fff;
  }
  .swipe-move .anm-started .marker {
    -webkit-animation: swipe-move-marker 1s 0.5s both;
            animation: swipe-move-marker 1s 0.5s both;
  }
  .swipe-move .anm-started .marker::after {
    -webkit-animation: swipe-move-markerBg 1s 0.5s both;
            animation: swipe-move-markerBg 1s 0.5s both;
  }
  .swipe-move .anm-started .content-text .marker,
  .swipe-move .anm-started .content-text .marker::after {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .swipe-move .anm-started .content-link .marker,
  .swipe-move .anm-started .content-link .marker::after {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  .swipe-move .anm-finished .marker {
    -webkit-animation: swipe-move-markerHide 0.5s both;
            animation: swipe-move-markerHide 0.5s both;
  }
  .swipe-move .anm-finished .marker::after {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }

  @-webkit-keyframes swipe-move-marker {
    60%, 100% {
      -webkit-clip-path: inset(0);
              clip-path: inset(0);
    }
  }

  @keyframes swipe-move-marker {
    60%, 100% {
      -webkit-clip-path: inset(0);
              clip-path: inset(0);
    }
  }
  @-webkit-keyframes swipe-move-markerBg {
    60% {
      -webkit-clip-path: inset(0);
              clip-path: inset(0);
    }
    100% {
      -webkit-clip-path: inset(0 0 0 100%);
              clip-path: inset(0 0 0 100%);
    }
  }
  @keyframes swipe-move-markerBg {
    60% {
      -webkit-clip-path: inset(0);
              clip-path: inset(0);
    }
    100% {
      -webkit-clip-path: inset(0 0 0 100%);
              clip-path: inset(0 0 0 100%);
    }
  }
  @-webkit-keyframes swipe-move-markerHide {
    0% {
      -webkit-clip-path: inset(0);
              clip-path: inset(0);
    }
    100% {
      -webkit-clip-path: inset(0 0 0 100%);
              clip-path: inset(0 0 0 100%);
    }
  }
  @keyframes swipe-move-markerHide {
    0% {
      -webkit-clip-path: inset(0);
              clip-path: inset(0);
    }
    100% {
      -webkit-clip-path: inset(0 0 0 100%);
              clip-path: inset(0 0 0 100%);
    }
  }
  @-webkit-keyframes swipe-move-fraction {
    0%, 100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
    50% {
      -webkit-transform: translateY(-110%);
              transform: translateY(-110%);
      opacity: 1;
    }
    50.1% {
      -webkit-transform: translateY(110%);
              transform: translateY(110%);
      opacity: 0;
    }
  }
  @keyframes swipe-move-fraction {
    0%, 100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
    50% {
      -webkit-transform: translateY(-110%);
              transform: translateY(-110%);
      opacity: 1;
    }
    50.1% {
      -webkit-transform: translateY(110%);
              transform: translateY(110%);
      opacity: 0;
    }
  }

  @media only screen and (max-width: 1024px) {
    html {
      -webkit-text-size-adjust: 100%;
    }
    .l-inner {
      padding: 0 4rem;
    }
    .pc {
      display: none !important;
    }
    .swipe-move .slide-media {
      height: max(48vh, 60vw);
    }
    .swipe-move .content {
      top: calc(2% + 3rem);
      right: 7rem;
      bottom: auto;
      left: 1rem;
    }
    .swipe-move .content-title {
      font-size: 1.65rem;
    }
    .swipe-move .content-text {
      font-size: .8rem;
      margin: 2rem 0;
    }
    .swipe-move .fraction {
      font-size: 1.2rem;
      top: 20%;
      bottom: auto;
      left: 6rem;
    }
  }
  @media only screen and (max-width: 599px) {
    .pc-tab {
      display: none !important;
    }
    .swipe-move {
      margin-top: 2.4em;
      margin-bottom: 0;
    }
  }
  @media only screen and (min-width: 1025px) {
    .tab-sp {
      display: none !important;
    }
    .swiper-button-prev::before, .swiper-button-next::before {
      -webkit-transition: var(--transition);
      transition: var(--transition);
    }
    .swiper-button-prev:hover::before, .swiper-button-next:hover::before {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    .swipe-move .content {
      left: 5rem;
    }
    .swipe-move .fraction {
      left: 8rem;
    }
  }
  @media only screen and (min-width: 600px) {
    .sp {
      display: none !important;
    }
  }