    /*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/

    :root {
      --easing: cubic-bezier(0.2, 1, 0.2, 1);
      --transition: 0.8s var(--easing);
      --color-base: #0c1210;
      --color-gray: #ddd;
      --color-theme: #b4e900;
      --color-theme-darken: #6e8f00;
      --color-text: #adbdb7;
      --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
        -0.8rem -0.8rem 1.2rem #fff;
      --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08),
        -1rem -1rem 1.5rem #fff;
      --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
        inset -0.8rem -0.8rem 1.2rem #fff;
      --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1),
        -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
    }
    .marker {
      background: linear-gradient(transparent 60%, #af0101 60%);
    }

    .l-inner {
      position: relative;
      box-sizing: content-box;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 10rem;
    }

    .l-section {
    }

    .l-section .l-inner {
      padding-top: 8rem;
      padding-bottom: 8rem;
    }

    /* slider */
    .slide-media,
    .thumb-media {
      position: relative;
      overflow: hidden;
    }

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

    .splide {
      z-index: 0;
    }

    /* 前へ / 次へボタン */
    .splide__arrow--prev,
    .splide__arrow--next {
      display: grid;
      place-content: center;
      width: 6.4rem;
      height: 6.4rem;
      cursor: pointer;
      transition: var(--transition);
      background-color: var(--color-theme-darken);
    }

    .splide__arrow--prev::after,
    .splide__arrow--next::after {
      width: 1.2rem;
      height: 1.2rem;
      content: "";
      border: solid var(--color-gray);
      border-width: 3px 3px 0 0;
    }

    .splide__arrow--prev::after {
      margin-left: 0.4rem;
      transform: rotate(-135deg);
    }

    .splide__arrow--next::after {
      margin-right: 0.4rem;
      transform: rotate(45deg);
    }

    .splide__arrow:disabled {
      pointer-events: none;
      opacity: 0;
    }

    .splide__arrow:focus-visible {
      outline: 3px solid rgba(180, 233, 0, 0.8);
      outline-offset: 3px;
      z-index: 1;
      transition: none;
    }

    .splide__pagination {
      font-size: 0;
    }

	.splide__pagination__page{
		border-radius: 0 !important;
	}
    .splide__pagination__page:focus-visible {
      outline: 3px solid rgba(180, 233, 0, 0.8);
      outline-offset: 3px;
      z-index: 1;
      transition: none;
    }

    .splide__slide:focus-visible {
      outline: 3px solid rgba(180, 233, 0, 0.8);
      outline-offset: 3px;
      z-index: 1;
      transition: none;
    }

    .splide-wrapper {
      position: relative;
    }

    .splide__arrow>svg {
      display: none;
    }

    .mv01 {
      width: 100%;
      overflow: hidden;
    }

    .l-inner {
      padding-bottom: 0;
    }

    .splide-fade .splide__slide {
      pointer-events: none;
    }

    .splide__track--fade .splide__slide.is-active {
      pointer-events: auto;
    }

    .splide__pagination {
      position: absolute;
      z-index: 10;
      top: 0;
      bottom: 0;
      left: 2%;
      height: max-content;
      margin: auto;
      display: flex;
      flex-direction: column;
      right: auto;
    }

    .splide__pagination__page {
      display: block;
      width: 4px;
      height: 50px;
      cursor: pointer;
      transition: var(--transition);
      background-color: rgba(255, 255, 255, 0.4);
    }

    .splide__pagination>li:not(:first-child) {
      margin-top: 0.8rem;
    }

    .mv01 .splide__pagination__page.is-active {
      background-color: var(--color-theme);
    }

    .mv01 .slide-media {
      height: 100vh;
    }

    .mv01 .slide-media img {
      transition: 7s 1s ease-out;
    }

    .mv01 .slide-title {
      font-size: 4rem;
      font-weight: normal;
      line-height: 1.6;
      position: absolute;
      right: 8rem;
      bottom: 15%;
      margin-left: 16rem;
      text-align: right;
      color: #fff;
    }

    .mv01 .splide__slide[class*=-active] .slide-media img {
      transition-delay: 0s;
      transform: scale(1.05);
    }

    .mv01 .splide__slide[class*=-active] .slide-title {
      animation: mv01-fadeIn 2s 0.5s var(--easing) both;
    }

    @keyframes mv01-fadeIn {
      0% {
        transform: scale(0.5);
        opacity: 0;
        filter: blur(300px);
      }

      100% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
      }
    }

    .mv02 .splide__pagination__page.is-active {
      background-color: var(--color-theme);
    }

    .mv02 .slide-media {
       height: 470px;
    }

    .mv02 .slide-media img {
    }

    .mv02 .slide-title {
      font-size: 4rem;
      font-weight: normal;
      line-height: 1.6;
      position: absolute;
      right: 8rem;
      bottom: 15%;
      margin-left: 16rem;
      text-align: right;
      color: #fff;
    }

    .mv02 .splide__slide[class*=-active] .slide-media img {
      transition-delay: 0s;
    }

    .mv02 .splide__slide[class*=-active] .slide-title {
      animation: mv02-fadeIn 2s 0.5s var(--easing) both;
    }

    @keyframes mv02-fadeIn {
      0% {
        opacity: 0;
        filter: blur(300px);
      }

      100% {
        opacity: 1;
        filter: blur(0);
      }
    }

    @media only screen and (max-width: 1024px) {
      .l-inner {
        padding: 0 4rem;
      }
    }

    @media only screen and (min-width: 1025px) {
      .splide__arrow--prev::before,
      .splide__arrow--next::before {
        transition: var(--transition);
      }

      .splide__arrow--prev:hover::before,
      .splide__arrow--next:hover::before {
        transform: scale(1.2);
      }
    }
    @media only screen and (max-width: 640px) {
      .mv01 .slide-media:first-child img{
        left: -1%;
      }
    }