@charset "UTF-8";
/* =========================================================
consol log
========================================================= */
/* =========================================================
body
========================================================= */
body {
  background: #D51F1B;
  color: #fff;
  font-family: tot-shizukasmudgemin-stdn, sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  font-feature-settings: "palt";
}

input, button, textarea, select {
  font-family: tot-shizukasmudgemin-stdn, sans-serif;
  box-sizing: border-box;
  outline: none;
}

* {
  letter-spacing: 0.1em;
}

*:before, *:after {
  display: block;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a[href*="tel:"] {
  text-decoration: underline;
}

@media (hover: hover) {
  a[href*="tel:"] {
    text-decoration: none;
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .pc-br {
    display: none;
  }
}
@media (min-width: 769px) {
  .sp-br {
    display: none;
  }
}
@container (max-width: 768px) {
  .cont-pc-br {
    display: none;
  }
}
@container (min-width: 769px) {
  .cont-sp-br {
    display: none;
  }
}
@media (max-width: 768px) {
  .pc-disp {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .sp-disp {
    display: none !important;
  }
}
@media (hover: hover) {
  .opacity-link {
    transition: opacity 0.2s ease;
  }

  .opacity-link:hover {
    opacity: 0.6;
  }
}
.txt-link {
  text-decoration: underline;
}

@media (hover: hover) {
  .txt-link:hover {
    text-decoration: none;
  }
}
.txt-line {
  text-decoration: underline;
}

.c-yellow {
  color: #FFFE5C;
}

.wrapper {
  min-width: 320px;
}

.main-cont {
  padding: 100vh 0 0;
  padding: 100lvh 0 0;
}

.main-cont > * {
  position: relative;
  z-index: 1;
}

/* =========================================================
splash
========================================================= */
.splash {
  width: 100vw;
  height: 100vh;
  height: 100lvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transition-delay: 2s;
}

.splash.is-active {
  background: none;
  z-index: -10;
  pointer-events: none;
}

.splash__block {
  width: 100%;
  height: 100%;
  background: #D51F1B;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash__logo {
  width: clamp(1px, 90.13vw, 1152px);
}

.splash__sound {
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.splash__sound .ico {
  width: 26px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/ico_off.png);
  position: absolute;
  top: 50%;
  right: calc(100% + 15px);
  transform: translateY(-50%);
}

.splash__sound .btn {
  display: flex;
  gap: 15px;
  align-items: center;
}

.splash__sound .btn + .btn {
  margin-left: 20px;
}

.splash__sound .btn + .btn::before {
  content: "";
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.3);
}

.splash__sound .btn button {
  font-family: shackleton-wide, sans-serif;
  letter-spacing: -0.015em;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.03em;
}

.splash__sound .btn button[data-on=off] {
  color: #fff;
}

.splash__sound .btn button[data-on=on] {
  color: #F54544;
}

.splash__sound:has(button.is-on) button[data-on=off] {
  color: #F54544;
}

.splash__sound:has(button.is-on) button[data-on=on] {
  color: #fff;
}

.splash__sound:has(button.is-on) .ico {
  background-image: url(../images/ico_on_01.png);
  animation: sound-on 2s infinite;
}

.splash__enter {
  margin: 30px auto 0;
  text-align: center;
}

.splash__enter button {
  font-family: shackleton-wide, sans-serif;
  letter-spacing: -0.015em;
  font-size: 25px;
  line-height: 1;
}

.splash__block {
  will-change: transform;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s linear 1s;
}

.splash__block:nth-child(1) {
  position: relative;
  clip-path: inset(0 80vw 0 0);
  z-index: 1;
}

.splash__block:nth-child(2) {
  clip-path: inset(0 60vw 0 20vw);
  z-index: 2;
}

.splash__block:nth-child(3) {
  clip-path: inset(0 40vw 0 40vw);
  z-index: 3;
}

.splash__block:nth-child(4) {
  clip-path: inset(0 20vw 0 60vw);
  z-index: 4;
}

.splash__block:nth-child(5) {
  clip-path: inset(0 0 0 80vw);
  z-index: 5;
}

.splash.is-active .splash__block:nth-child(odd) {
  transform: translateY(100%);
}

.splash.is-active .splash__block:nth-child(even) {
  transform: translateY(-100%);
}

@keyframes sound-on {
  0%, 33.2%, 100% {
    background-image: url(../images/ico_on_01.png);
  }
  33.3%, 66.5% {
    background-image: url(../images/ico_on_02.png);
  }
  66.6%, 99.9% {
    background-image: url(../images/ico_on_03.png);
  }
}
/* =========================================================
header
========================================================= */
.page-hd {
  width: 100%;
  background: #D51F1B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (max-width: 768px) {
  .page-hd {
    padding: 0 0 0 20px;
    height: 50px;
  }
}
@media (min-width: 769px) {
  .page-hd {
    padding: 0 50px;
    height: 55px;
  }
}
@media (max-width: 768px) {
  .page-hd__logo {
    width: 103px;
  }
}
@media (min-width: 769px) {
  .page-hd__logo {
    width: 218px;
  }
}
@media (min-width: 769px) {
  .page-hd__btn {
    display: none;
  }
}
.page-hd__btn button {
  display: block;
  width: 50px;
  height: 50px;
}

.page-hd__btn span {
  display: block;
  width: 15px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
}

.page-hd__btn span + span {
  margin-top: 3px;
}

.page-hd__btn button.is-open span {
  width: 14px;
  transform-origin: left;
  margin-left: 20px;
}

.page-hd__btn button.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.page-hd__btn button.is-open span:nth-child(2) {
  opacity: 0;
}

.page-hd__btn button.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.page-hd.is-hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .page-nav {
    width: 100%;
    height: calc(100vh - 50px);
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
  }
}
@media (min-width: 769px) {
  .page-nav {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .page-nav__list {
    width: 100%;
    padding: clamp(10px, 11.3vh, 76px);
    background: #D51F1B;
  }
}
@media (min-width: 769px) {
  .page-nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .page-nav__item {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .page-nav__item + .page-nav__item {
    margin: 24px auto 0;
  }
}
.page-nav__item a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: 1em;
  font-family: shackleton-wide, sans-serif;
  letter-spacing: -0.015em;
  line-height: 1;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-nav__item a {
    font-size: 16px;
  }
}
@media (min-width: 769px) {
  .page-nav__item a {
    font-size: 14px;
  }
}
.page-nav__item .txt {
  display: block;
  transition: transform 0.3s ease;
}

.page-nav__item .txt + .txt {
  margin: 0.5em auto 0;
}

@media (hover: hover) {
  .page-nav__item a:hover .txt {
    transform: translateY(-1.6em);
  }
}
.sound-cntrl {
  mix-blend-mode: difference;
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
  position: fixed;
  z-index: 5;
}

@media (max-width: 768px) {
  .sound-cntrl {
    bottom: 58px;
    left: 4px;
  }
}
@media (min-width: 769px) {
  .sound-cntrl {
    bottom: 324px;
    left: 43px;
  }
}
.sound-cntrl button {
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.5em;
  display: flex;
}

.sound-cntrl button::after {
  content: "有";
  display: inline;
}

.sound-cntrl button.is-on::after {
  content: "無";
}

/* =========================================================
footer
========================================================= */
.page-ft {
  min-height: 100vh;
  min-height: 100lvh;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .page-ft {
    padding: 0 25px 30px;
  }
}
@media (min-width: 769px) {
  .page-ft {
    padding: 0 30px 30px;
  }
}
.page-ft__bottom {
  padding: 60px 0 0;
  width: 100%;
}

@media (min-width: 1025px) {
  .page-ft__bottom {
    display: flex;
    align-items: flex-end;
    gap: clamp(1px, 10.83vw, 148px);
  }
}
.page-ft__list {
  font-size: 10px;
  line-height: 1.6;
  font-weight: 400;
}

@media (min-width: 1025px) {
  .page-ft__list {
    flex: 1;
  }
}
.page-ft__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 0;
  grid-template-areas: "logo sns" "copyright copyright";
}

@media (max-width: 768px) {
  .page-ft__block {
    margin: 68px auto 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .page-ft__block {
    margin: 68px auto 0;
  }
}
@media (min-width: 1025px) {
  .page-ft__block {
    width: 315px;
  }
}
.page-ft__block .logo {
  grid-area: logo;
  width: 74px;
}

.page-ft__block .logo a {
  display: block;
}

.page-ft__block .sns {
  grid-area: sns;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.page-ft__block .sns a {
  display: block;
  width: 17px;
  height: 17px;
}

.page-ft__block .sns img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.page-ft__block .copyright {
  grid-area: copyright;
  font-size: clamp(1px, 2.6vw, 10px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}

/* =========================================================
common parts
========================================================= */
/*------------------------------------------
title
------------------------------------------*/
.c-ttl01 {
  font-family: shackleton-wide, sans-serif;
  letter-spacing: -0.015em;
  line-height: 1;
}

@media (max-width: 768px) {
  .c-ttl01 {
    font-size: clamp(1px, 8vw, 30px);
  }
}
@media (min-width: 769px) {
  .c-ttl01 {
    font-size: 45px;
  }
}
.c-ttl01 .small {
  margin: 0 0.1em 0 0.3em;
}

@media (max-width: 768px) {
  .c-ttl01 .small {
    font-size: 0.92em;
  }
}
/*------------------------------------------
button
------------------------------------------*/
.c-btn01 a,
.c-btn01 button {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}

.c-btn01 a::before,
.c-btn01 button::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  transition: border-color 0.2s ease;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 768px) {
  .c-btn01 a::before,
.c-btn01 button::before {
    border-width: 5px;
  }
}
@media (min-width: 769px) {
  .c-btn01 a::before,
.c-btn01 button::before {
    border-width: 3px;
  }
}
.c-btn01 a::after,
.c-btn01 button::after {
  transition: opacity 0.2s ease;
}

.c-btn01 .en {
  font-family: shackleton-wide, sans-serif;
}

/*------------------------------------------
contents
------------------------------------------*/
@media (max-width: 768px) {
  .c-cont01 {
    padding: 0 18px;
  }
}
@media (min-width: 769px) {
  .c-cont01 {
    padding: 0 clamp(1px, 7.68vw, 105px);
  }
}
.c-cont01__in {
  max-width: 1152px;
  margin: 0 auto;
}

.js-bottomfix {
  position: sticky;
  top: var(--sticky-top);
  left: 0;
}

/*------------------------------------------
modal
------------------------------------------*/
.modal-block {
  width: 100vw;
  height: 100vh;
  margin: 0 !important;
  position: fixed;
  overflow: scroll;
  top: 0;
  left: 0;
  z-index: 50;
  display: none;
}

@media (max-width: 768px) {
  .modal-block {
    padding: 0 15px;
  }
}
@media (min-width: 769px) {
  .modal-block {
    padding: 0 clamp(1px, 12.07vw, 165px);
  }
}
.modal-block__bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: -1;
}

.modal-block__close {
  position: absolute;
}

@media (max-width: 768px) {
  .modal-block__close {
    top: 17px;
    right: 16px;
  }
}
@media (min-width: 769px) {
  .modal-block__close {
    top: 20px;
    right: 20px;
  }
}
.modal-block__close button {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #110F0F;
  font-family: shackleton-wide, sans-serif;
  letter-spacing: -0.015em;
  font-size: 15px;
  line-height: 1;
}

.modal-block__close .ico {
  display: block;
  width: 14px;
  height: 1px;
  background: #110F0F;
  position: relative;
  transform: rotate(45deg);
}

.modal-block__close .ico::before {
  content: "";
  width: 1px;
  height: 14px;
  background: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* =========================================================
contents
========================================================= */
/*------------------------------------------
main visual
------------------------------------------*/
.mv {
  width: 100%;
  height: 100vh;
  height: 100lvh;
  position: fixed;
  top: 0;
  left: 0;
}

.mv video {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .mv video {
    -o-object-position: center 75px;
       object-position: center 75px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (min-width: 769px) {
  .mv video {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/*------------------------------------------
sale
------------------------------------------*/
.sec-sale {
  background: #D51F1B;
}

@media (max-width: 768px) {
  .sec-sale {
    padding: 120px 0;
  }
}
@media (min-width: 769px) {
  .sec-sale {
    padding: 180px 0 75px;
  }
}
.sec-sale .main-ttl {
  width: clamp(1px, 90.13vw, 1280px);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .sec-sale .c-cont01__in {
    margin: 40px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-sale .c-cont01__in {
    margin: 140px auto 0;
  }
}
.sec-sale__lead {
  margin: 10px auto 0;
  font-size: 14px;
  line-height: 1.64;
  text-align: center;
  letter-spacing: 0.03em;
}

.sec-sale__wrap {
  position: relative;
}

@media (max-width: 768px) {
  .sec-sale__wrap {
    margin: 40px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-sale__wrap {
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto 0;
  }
}
@media (max-width: 768px) {
  .sec-sale__map {
    width: clamp(10px, 100%, 375px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 769px) {
  .sec-sale__map {
    width: clamp(1px, 59.29vw, 810px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
}
.sec-sale__map::before {
  content: "";
  aspect-ratio: 1/1;
  background: #F54544;
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 768px) {
  .sec-sale__map::before {
    width: 95.7%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 769px) {
  .sec-sale__map::before {
    width: 86.39%;
    position: absolute;
    top: 9.06%;
    left: 4.81%;
  }
}
.sec-sale__list {
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 5px;
  position: relative;
  z-index: 1;
}

@media (min-width: 769px) {
  .sec-sale__list {
    display: none;
  }
}
.sec-sale__list .c-btn01 a {
  height: 50px;
  background: rgba(255, 255, 255, 0.7);
  color: #D51F1B;
  font-size: clamp(1px, 4vw, 16px);
  border-width: 4px;
}

.sec-sale__list .c-btn01 a::before {
  border-color: transparent #D51F1B #D51F1B transparent;
}

@media (hover: hover) {
  .sec-sale__list .c-btn01 a:hover {
    background: #110F0F;
    color: #fff;
  }

  .sec-sale__list .c-btn01 a:hover::before {
    border-color: transparent #fff #fff transparent;
  }
}
[class*=sec-sale__box] {
  position: absolute;
  z-index: 2;
}

@media (max-width: 768px) {
  [class*=sec-sale__box] {
    display: none !important;
  }
}
[class*=sec-sale__box] .line {
  pointer-events: none;
}

[class*=sec-sale__box] .ico {
  aspect-ratio: 1/1;
  width: clamp(1px, 0.73vw, 10px);
  border-radius: 50%;
  background: #fff;
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

[class*=sec-sale__box] .ico::before {
  content: "";
  aspect-ratio: 72/93;
  width: clamp(1px, 5.27vw, 72px);
  filter: drop-shadow(13px 13px 6px rgba(17, 15, 15, 0.3));
  background: url(../images/img_darasuke.png) no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

[class*=sec-sale__box]:has(a:hover) .ico::before {
  opacity: 1;
}

[class*=sec-sale__box] .link a {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

@media (hover: hover) {
  [class*=sec-sale__box] .link a {
    transition: color 0.2s ease;
  }

  [class*=sec-sale__box] .link a:hover {
    color: #FFFE5C;
  }
}
.sec-sale__box--sapporo {
  top: 17.5%;
  left: 67%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sec-sale__box--sapporo .line {
  width: clamp(1px, 10.9vw, 149px);
  border-top: 1px dotted #fff;
}

.sec-sale__box--sapporo .ico {
  top: 50%;
  left: 0;
}

.sec-sale__box--sendai {
  top: 46.5%;
  left: 65%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sec-sale__box--sendai .line {
  width: clamp(1px, 12vw, 164px);
  border-top: 1px dotted #fff;
}

.sec-sale__box--sendai .ico {
  top: 50%;
  left: 0;
}

.sec-sale__box--kanto {
  top: 63%;
  left: 58.5%;
  display: flex;
}

.sec-sale__box--kanto .line {
  width: clamp(1px, 15.22vw, 208px);
  height: 170px;
  border-top: 1px dotted #fff;
  border-right: 1px dotted #fff;
  transform: translateY(6px);
}

.sec-sale__box--kanto .ico {
  width: clamp(1px, 1.46vw, 20px);
  position: absolute;
  top: 0%;
  left: 0;
}

.sec-sale__box--kanto .link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sec-sale__box--kanto .link + .link {
  margin: 10px 0 0;
}

.sec-sale__box--kanto .link::before {
  content: "";
  width: 9px;
  border-top: 1px dotted #fff;
}

.sec-sale__box--shizuoka {
  top: calc(67.1% + 6px);
  left: 53.5%;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  z-index: 4;
}

.sec-sale__box--shizuoka .line {
  width: 9px;
  height: 70px;
  border-left: 1px dotted #fff;
  border-bottom: 1px dotted #fff;
  transform: translateY(-6px);
}

.sec-sale__box--shizuoka .ico {
  top: 0;
  left: 0;
}

.sec-sale__box--nagoya {
  top: calc(68.4% + 6px);
  left: 45.3%;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.sec-sale__box--nagoya .line {
  width: 9px;
  height: 104px;
  border-left: 1px dotted #fff;
  border-bottom: 1px dotted #fff;
  transform: translateY(-6px);
}

.sec-sale__box--nagoya .ico {
  top: 0;
  left: 0;
}

.sec-sale__box--shinsaibashi {
  bottom: 31.8%;
  left: 37.5%;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sec-sale__box--shinsaibashi .line {
  width: 9px;
  height: clamp(1px, 16vw, 190px);
  border-top: 1px dotted #fff;
  border-left: 1px dotted #fff;
  transform: translateY(8px);
}

.sec-sale__box--shinsaibashi .ico {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.sec-sale__box--hiroshima {
  bottom: 29.7%;
  left: 21.2%;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sec-sale__box--hiroshima .line {
  width: 9px;
  height: 203px;
  border-top: 1px dotted #fff;
  border-left: 1px dotted #fff;
  transform: translateY(8px);
}

.sec-sale__box--hiroshima .ico {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.sec-sale__box--fukuoka {
  bottom: 23.4%;
  left: 8%;
}

.sec-sale__box--fukuoka .line {
  height: 113px;
  border-left: 1px dotted #fff;
}

.sec-sale__box--fukuoka .ico {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.sec-sale__box--fukuoka .link {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 8px;
  position: absolute;
  top: -8px;
  right: 0;
}

@media (min-width: 1300px) {
  .sec-sale__box--fukuoka .link {
    flex-direction: row;
    right: auto;
    left: 0;
  }
}
.sec-sale__box--fukuoka .link::before {
  content: "";
  width: 9px;
  border-top: 1px dotted #fff;
}

.sec-sale__box--online {
  left: 27.9%;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .sec-sale__box--online {
    top: clamp(1px, 9vw, 234px);
  }
}
@media (min-width: 1025px) {
  .sec-sale__box--online {
    top: 27.7%;
  }
}
.sec-sale__box--online .line {
  width: 0px;
  height: 13px;
  border-left: 1px dotted #fff;
  margin: 0 auto 13px;
}

.sec-sale__box--online .ico {
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.sec-sale__box--online .ico::before {
  top: -150%;
}

/*------------------------------------------
event
------------------------------------------*/
.sec-event {
  background: #FFFE5C;
  color: #110F0F;
}

.sec-event__sticky {
  transition: opacity 0.5s ease;
  position: relative;
  z-index: 2;
  height: 10vh;
}

.sec-event__sticky.is-hide {
  opacity: 0;
  pointer-events: none;
}

.sec-event__sticky .bg {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
}

.sec-event__sticky .in {
  width: 100%;
  height: 100vh;
  height: 100lvh;
  background: #D51F1B;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.sec-event__sticky [class*=cloud0] {
  aspect-ratio: 428/153;
  background: url(../images/img_cloud.webp) no-repeat center/contain;
  position: absolute;
}

@media (max-width: 768px) {
  .sec-event__sticky .cloud01 {
    height: 34.2%;
    right: 0;
    top: 0;
    z-index: 3;
  }
}
@media (min-width: 769px) {
  .sec-event__sticky .cloud01 {
    height: 55%;
    right: 25.8%;
    top: 5%;
  }
}
.sec-event__sticky .cloud02 {
  z-index: 2;
}

@media (max-width: 768px) {
  .sec-event__sticky .cloud02 {
    height: 27.8%;
    left: 41.8%;
    top: 26.9%;
    transform: scale(-1, 1);
  }
}
@media (min-width: 769px) {
  .sec-event__sticky .cloud02 {
    height: 38.2%;
    left: 65.5%;
    top: 0;
  }
}
.sec-event__sticky .cloud03 {
  transform: scale(-1, 1);
}

@media (max-width: 768px) {
  .sec-event__sticky .cloud03 {
    height: 27.8%;
    left: 4.8%;
    top: 38.3%;
    z-index: 1;
  }
}
@media (min-width: 769px) {
  .sec-event__sticky .cloud03 {
    height: 48.4%;
    left: 42.6%;
    top: 29.9%;
  }
}
.sec-event__sticky .cloud04 {
  z-index: 5;
}

@media (max-width: 768px) {
  .sec-event__sticky .cloud04 {
    height: 22.9%;
    right: 5%;
    bottom: 14.3%;
  }
}
@media (min-width: 769px) {
  .sec-event__sticky .cloud04 {
    height: 38.2%;
    right: 73.9%;
    bottom: 8.7%;
  }
}
.sec-event__sticky .cloud05 {
  z-index: 4;
}

@media (max-width: 768px) {
  .sec-event__sticky .cloud05 {
    height: 34.2%;
    left: 26.1%;
    bottom: 0;
  }
}
@media (min-width: 769px) {
  .sec-event__sticky .cloud05 {
    height: 43.2%;
    left: 14.7%;
    bottom: 0;
  }
}
.sec-event .c-cont01 {
  overflow: hidden;
}

@media (max-width: 768px) {
  .sec-event .c-cont01 {
    padding-bottom: 80px;
  }
}
@media (min-width: 769px) {
  .sec-event .c-cont01 {
    padding-bottom: 110px;
  }
}
.sec-event .c-cont01__in {
  padding-top: 100px;
}

.sec-event .c-ttl01 {
  transition-delay: 1s;
}

@media (max-width: 768px) {
  .sec-event .c-ttl01 {
    text-align: center;
  }
}
.sec-event .c-ttl01 + * {
  margin: 35px 0 0;
}

@media (max-width: 768px) {
  .sec-event__ttl {
    text-align: center;
  }
}
.sec-event__ttl .subttl {
  font-family: shackleton-wide, sans-serif;
  letter-spacing: -0.015em;
  font-size: clamp(1px, 4vw, 15px);
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.sec-event__ttl .ttl {
  font-family: shackleton-wide, sans-serif;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .sec-event__ttl .ttl {
    font-size: 23px;
  }
}
@media (min-width: 769px) {
  .sec-event__ttl .ttl {
    font-size: 25px;
  }
}
.sec-event__ttl .date {
  margin: 12px 0 0;
  font-size: clamp(1px, 4vw, 15px);
  line-height: 1;
  letter-spacing: 0.08em;
}

.sec-event__ttl time {
  font-size: 1.26em;
}

.sec-event__ttl .day {
  font-size: 0.8em;
}

@media (max-width: 768px) {
  .sec-event__txt01 {
    font-size: 16px;
    line-height: 2;
  }
}
@media (min-width: 769px) {
  .sec-event__txt01 {
    font-size: 15px;
    line-height: 2;
  }
}
.sec-event__txt02 {
  font-weight: 400;
}

@media (max-width: 768px) {
  .sec-event__txt02 {
    font-size: 10px;
    line-height: 1.8;
  }
}
@media (min-width: 769px) {
  .sec-event__txt02 {
    font-size: 11px;
    line-height: 1.63;
  }
}
.sec-event__note {
  border: 1px solid #110F0F;
  position: relative;
}

@media (max-width: 768px) {
  .sec-event__note {
    padding: 23px 12px 40px 25px;
  }
}
@media (min-width: 769px) {
  .sec-event__note {
    padding: 35px 15px 35px 30px;
  }
}
.sec-event__note .head {
  width: 80px;
  background: #FFFE5C;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: -0.5em;
  left: 50%;
  transform: translateX(-50%);
}

.sec-event__note .simplebar-track {
  width: 1px;
  background: #fff;
}

.sec-event__note .simplebar-scrollbar {
  width: 1px;
  background: #110F0F;
}

.sec-event__detail {
  margin: 30px 0 0;
  position: relative;
}

@media (min-width: 1025px) {
  .sec-event__detail {
    padding: 0 330px 0 0;
  }
}
@media (max-width: 768px) {
  .sec-event__detail > * + * {
    margin: 30px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-event__detail .sec-event__txt02 {
    margin: 38px 0 0;
  }
}
@media (max-width: 768px) {
  .sec-event__detail .c-btn01 {
    width: 286px;
  }
}
@media (min-width: 769px) {
  .sec-event__detail .c-btn01 {
    width: 222px;
    margin: 35px auto 0;
  }
}
@media (min-width: 1025px) {
  .sec-event__detail .c-btn01 {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
.sec-event__detail .c-btn01 button {
  width: 100%;
  background: #110F0F;
  color: #fff;
  font-family: tot-shizukasmudgemin-stdn, sans-serif;
}

@media (max-width: 768px) {
  .sec-event__detail .c-btn01 button {
    height: 60px;
  }
}
@media (min-width: 769px) {
  .sec-event__detail .c-btn01 button {
    height: 50px;
  }
}
.sec-event__detail .c-btn01 button::before {
  border-color: transparent #fff #fff transparent;
}

@media (hover: hover) {
  .sec-event__detail .c-btn01 button:hover {
    background: #fff;
    color: #110F0F;
  }

  .sec-event__detail .c-btn01 button:hover::before {
    border-color: transparent #110F0F #110F0F transparent;
  }
}
.sec-event__present {
  width: 100%;
  margin: 50px auto 0;
}

.sec-event__present .list01 {
  display: grid;
}

@media (max-width: 768px) {
  .sec-event__present .list01 {
    gap: 20px;
  }
}
@media (min-width: 769px) {
  .sec-event__present .list01 {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1px, 4.39vw, 60px);
  }
}
.sec-event__present .list01 + .list02 {
  margin: 50px auto 0;
}

.sec-event__present .list01 .img {
  position: relative;
}

.sec-event__present .list01 .img::before {
  content: "";
  width: 1px;
  height: 11px;
  background: #110F0F;
  position: absolute;
  bottom: 0;
  left: calc(100% + 10px);
}

.sec-event__present .list01 .img::after {
  content: "";
  width: 11px;
  height: 1px;
  background: #110F0F;
  position: absolute;
  bottom: 5px;
  left: calc(100% + 5px);
}

.sec-event__present .list01 .txt {
  font-size: 15px;
  line-height: 2;
  text-align: center;
}

@media (max-width: 768px) {
  .sec-event__present .list01 .txt {
    margin: 15px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-event__present .list01 .txt {
    margin: 20px auto 0;
  }
}
.sec-event__present .list02 + .list02 {
  margin: 20px auto 0;
}

.sec-event__present .list02 button {
  display: flex;
}

.sec-event__present .list02 .txt {
  height: -moz-max-content;
  height: max-content;
  background: #fff;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  text-orientation: upright;
  color: #110F0F;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .sec-event__present .list02 .txt {
    padding: 3px 4px;
  }
}
@media (min-width: 769px) {
  .sec-event__present .list02 .txt {
    padding: 6px 9px;
  }
}
.sec-event__present .list02 .txt span {
  text-combine-upright: all;
}

.sec-event__present .list02 .img {
  margin-bottom: auto;
  aspect-ratio: 1/1;
  position: relative;
}

@media (max-width: 768px) {
  .sec-event__present .list02 .img {
    width: 180px;
  }
}
@media (min-width: 769px) {
  .sec-event__present .list02 .img {
    width: 262px;
  }
}
.sec-event__present .list02 .img::before {
  content: "";
  width: 1px;
  height: 11px;
  background: #110F0F;
  position: absolute;
  bottom: 0;
  left: calc(100% + 10px);
}

.sec-event__present .list02 .img::after {
  content: "";
  width: 11px;
  height: 1px;
  background: #110F0F;
  position: absolute;
  bottom: 5px;
  left: calc(100% + 5px);
}

.sec-event__present .splide__track {
  overflow: visible;
}

.sec-event__present .splide--rtl .item button {
  flex-direction: row-reverse;
}

.sec-event__present .splide--rtl .item .txt {
  text-align: left;
}

.sec-event__chance {
  margin: 50px auto 0;
}

.sec-event__chance .sec-event__txt01 {
  margin: 20px auto 0;
}

.sec-event__point {
  margin: 100px auto 0;
}

.sec-event__point .sec-event__txt01 {
  margin: 20px auto 0;
}

.sec-event__point .sec-event__txt01 .txt-link {
  color: #6DC6B9;
}

.sec-event__point .sec-event__note {
  margin: 35px auto 0;
  padding-right: 16px;
}

@media (max-width: 768px) {
  .sec-event__point .sec-event__note .sec-event__txt02 {
    height: 70px;
  }
}
@media (min-width: 769px) {
  .sec-event__point .sec-event__note .sec-event__txt02 {
    height: 40px;
  }
}
.sec-event__lottery {
  margin: 100px auto 0;
}

@media (min-width: 769px) {
  .sec-event__lottery {
    display: grid;
    grid-template-columns: clamp(1px, 32vw, 320px) 1fr;
    grid-template-rows: repeat(2, max-content);
    grid-template-areas: "title title" "image text";
    gap: 30px clamp(1px, 4.68vw, 64px);
  }
}
@media (max-width: 768px) {
  .sec-event__lottery > * + * {
    margin: 30px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-event__lottery .sec-event__ttl {
    grid-area: title;
  }
}
@media (min-width: 769px) {
  .sec-event__lottery .img {
    grid-area: image;
  }
}
@media (min-width: 769px) {
  .sec-event__lottery .detail {
    grid-area: text;
    align-self: center;
  }
}
@media (max-width: 768px) {
  .sec-event__lottery .c-btn01 {
    width: 286px;
    margin: 30px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-event__lottery .c-btn01 {
    width: 222px;
    margin: 30px 0 0;
  }
}
.sec-event__lottery .c-btn01 a {
  background: #110F0F;
  color: #fff;
}

@media (max-width: 768px) {
  .sec-event__lottery .c-btn01 a {
    height: 60px;
    font-size: 18px;
  }
}
@media (min-width: 769px) {
  .sec-event__lottery .c-btn01 a {
    height: 50px;
  }
}
.sec-event__lottery .c-btn01 a::before {
  border-color: transparent #fff #fff transparent;
}

@media (hover: hover) {
  .sec-event__lottery .c-btn01 a:hover {
    background: #fff;
    color: #110F0F;
  }

  .sec-event__lottery .c-btn01 a:hover::before {
    border-color: transparent #110F0F #110F0F transparent;
  }
}
@media (max-width: 768px) {
  .sec-event__modal .modal-block__cont {
    padding-top: 75px;
    padding-bottom: 100px;
  }
}
@media (min-width: 769px) {
  .sec-event__modal .modal-block__cont {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.sec-event__modal .modal-block__close.bottom {
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  position: relative;
  top: auto;
  right: auto;
}

.sec-event__list {
  max-width: 888px;
  margin: 0 auto;
  border-top: 1px dotted #110F0F;
  color: #110F0F;
}

.sec-event__list .bundle {
  border-bottom: 1px dotted #110F0F;
  display: flex;
}

.sec-event__list .shop {
  border-right: 1px solid #110F0F;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .sec-event__list .shop {
    width: 37.2%;
    padding: 20px 10px;
    font-size: 15px;
    line-height: 1.33;
  }
}
@media (min-width: 769px) {
  .sec-event__list .shop {
    width: 220px;
    padding: 24px 10px;
    font-size: 16px;
    line-height: 1.25;
  }
}
.sec-event__list .detail {
  flex: 1;
}

@media (max-width: 768px) {
  .sec-event__list .detail {
    padding: 20px clamp(1px, 10.66vw, 40px);
  }
}
@media (min-width: 769px) {
  .sec-event__list .detail {
    padding: 24px clamp(1px, 3.66vw, 50px);
    display: flex;
    gap: 1em;
  }
}
.sec-event__list .place {
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .sec-event__list .place {
    font-size: 15px;
    line-height: 1.33;
  }
}
@media (min-width: 769px) {
  .sec-event__list .place {
    flex: 1;
    font-size: 16px;
    line-height: 1.25;
  }
}
.sec-event__list .schedule {
  letter-spacing: 0.03em;
  font-weight: 400;
}

@media (max-width: 768px) {
  .sec-event__list .schedule {
    margin: 6px 0 0;
    font-size: 16px;
    line-height: 1.31;
  }
}
@media (min-width: 769px) {
  .sec-event__list .schedule {
    width: 210px;
    font-size: 17px;
    line-height: 1.23;
  }
}
.sec-event__list .time {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

.sec-event__list .time::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 10px;
  background: url(../images/ico_clock.svg) no-repeat center/contain;
}

.sec-event__list .time .bar {
  width: 7px;
  height: 1px;
  margin: 0 6px;
  background: #110F0F;
  border-radius: 1px;
}

[class*=present-modal__block] .modal-block__bg {
  background: #FFFE5C;
}

[class*=present-modal__block] .modal-block__close .ico {
  background: #110F0F;
}

[class*=present-modal__block] .modal-block__close button {
  color: #110F0F;
}

[class*=present-modal__block] .modal-block__cont {
  max-width: 1036px;
  min-height: 100vh;
  margin: 0 auto;
  color: #110F0F;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  [class*=present-modal__block] .modal-block__cont {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 769px) {
  [class*=present-modal__block] .modal-block__cont {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.present-modal__box {
  background: #fff;
}

@media (max-width: 768px) {
  .present-modal__box {
    padding: 40px;
  }
}
@media (min-width: 769px) {
  .present-modal__box {
    padding: 74px;
  }
}
@media (min-width: 1025px) {
  .present-modal__box {
    display: flex;
    gap: clamp(1px, 5.41vw, 74px);
  }
}
.present-modal__detail {
  margin: 30px auto 0;
}

@media (min-width: 1025px) {
  .present-modal__detail {
    margin: 0;
    flex: 1;
  }
}
.present-modal__detail > * + * {
  margin: 30px auto 0;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .present-modal__img {
    max-width: 370px;
    margin: 0 auto;
  }
}
@media (min-width: 1025px) {
  .present-modal__img {
    width: clamp(1px, 27.08vw, 370px);
  }
}
.present-modal__name {
  font-size: 23px;
  line-height: 1.3;
}

.present-modal__txt {
  font-size: 15px;
  line-height: 2;
}

.present-modal__link {
  color: #6DC6B9;
  font-size: 15px;
  line-height: 2;
  font-weight: 400;
}

/*------------------------------------------
tik tok effect
------------------------------------------*/
.sec-tiktok {
  overflow: hidden;
}

@media (max-width: 768px) {
  .sec-tiktok {
    padding-top: 105px;
    padding-bottom: 216px;
    background: #6DC6B9 url(../images/bg_sp.png) no-repeat center bottom/100% auto;
  }
}
@media (min-width: 769px) {
  .sec-tiktok {
    padding-top: 140px;
    padding-bottom: 172px;
    background: #6DC6B9 url(../images/bg_pc.png) no-repeat center bottom/100% auto;
  }
}
.sec-tiktok .darasuke {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
}

.sec-tiktok .darasuke .img {
  position: relative;
  filter: drop-shadow(13px 13px 6px rgba(17, 15, 15, 0.3));
}

@media (max-width: 768px) {
  .sec-tiktok .darasuke .img {
    width: 83px;
    animation: skateboarding-sp 5s linear infinite;
  }
}
@media (min-width: 769px) {
  .sec-tiktok .darasuke .img {
    width: 114px;
    animation: skateboarding-pc 6s linear infinite;
  }
}
.sec-tiktok .darasuke.is-fixed {
  position: fixed;
  top: auto;
  bottom: 0;
}

.sec-tiktok .darasuke.is-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
}

.sec-tiktok [class*=cloud0] {
  aspect-ratio: 346/127;
  background: url(../images/img_cloud.webp) no-repeat center/contain;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .sec-tiktok .cloud01 {
    width: 292px;
    top: 80px;
    left: -78px;
  }
}
@media (min-width: 769px) {
  .sec-tiktok .cloud01 {
    width: clamp(1px, 46.63vw, 637px);
    top: 70px;
    left: 50%;
    transform: translateX(calc(-50% + 38px));
  }
}
@media (max-width: 768px) {
  .sec-tiktok .cloud02 {
    transform: scale(-1, 1);
    width: 292px;
    top: 395px;
    right: -93px;
  }
}
@media (min-width: 769px) {
  .sec-tiktok .cloud02 {
    width: clamp(1px, 46.63vw, 637px);
    top: 585px;
    right: -76px;
  }
}
@media (max-width: 768px) {
  .sec-tiktok .cloud03 {
    width: 345px;
    bottom: 56.3%;
    left: -105px;
  }
}
@media (min-width: 769px) {
  .sec-tiktok .cloud03 {
    transform: scale(-1, 1);
    width: clamp(1px, 50.14vw, 685px);
    bottom: 644px;
    left: -174px;
  }
}
.sec-tiktok .cloud04 {
  transform: scale(-1, 1);
}

@media (max-width: 768px) {
  .sec-tiktok .cloud04 {
    width: 262px;
    bottom: 40%;
    right: -93px;
  }
}
@media (min-width: 769px) {
  .sec-tiktok .cloud04 {
    width: clamp(1px, 50.14vw, 685px);
    bottom: 75px;
    right: -100px;
  }
}
@media (max-width: 768px) {
  .sec-tiktok .c-ttl01 {
    text-align: center;
  }
}
.sec-tiktok__ttl {
  font-family: shackleton-wide, sans-serif;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .sec-tiktok__ttl {
    font-size: 23px;
  }
}
@media (min-width: 769px) {
  .sec-tiktok__ttl {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .sec-tiktok__block01 {
    margin: 30px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-tiktok__block01 {
    margin: 40px auto 0;
    display: flex;
    gap: clamp(1px, 4.68vw, 64px);
    align-items: center;
  }
}
.sec-tiktok__block01 .video {
  aspect-ratio: 9/16;
}

@media (min-width: 769px) {
  .sec-tiktok__block01 .video {
    width: clamp(1px, 32vw, 320px);
  }
}
.sec-tiktok__block01 .video iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .sec-tiktok__block01 .detail {
    margin: 30px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-tiktok__block01 .detail {
    flex: 1;
  }
}
.sec-tiktok__block01 .txt01 {
  margin: 30px 0 0;
}

@media (max-width: 768px) {
  .sec-tiktok__block01 .txt01 {
    font-size: 16px;
    line-height: 1.75;
  }
}
@media (min-width: 769px) {
  .sec-tiktok__block01 .txt01 {
    font-size: 15px;
    line-height: 2;
  }
}
@media (max-width: 768px) {
  .sec-tiktok__block01 .btn {
    width: 286px;
    margin: 30px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-tiktok__block01 .btn {
    width: 222px;
    margin: 30px 0 0;
  }
}
.sec-tiktok__block01 .btn a {
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 768px) {
  .sec-tiktok__block01 .btn a {
    height: 60px;
    font-size: 18px;
  }
}
@media (min-width: 769px) {
  .sec-tiktok__block01 .btn a {
    height: 50px;
  }
}
.sec-tiktok__block01 .btn a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.sec-tiktok__block01 .btn a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  mix-blend-mode: overlay;
  z-index: -1;
}

@media (hover: hover) {
  .sec-tiktok__block01 .btn a:hover {
    background: #000;
  }

  .sec-tiktok__block01 .btn a:hover::after {
    opacity: 0;
  }
}
.sec-tiktok__block01 .btn.no-link a {
  pointer-events: none;
}

.sec-tiktok__block01 .btn.no-link a::before {
  content: none;
}

@media (max-width: 768px) {
  .sec-tiktok__block02 {
    margin: 30px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-tiktok__block02 {
    margin: 100px auto 0;
  }
}
@media (max-width: 768px) {
  .sec-tiktok__block02 .list {
    margin: 30px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-tiktok__block02 .list {
    margin: 40px auto 0;
  }
}
.sec-tiktok__block02 .txt {
  font-family: shackleton-wide, sans-serif;
  letter-spacing: -0.015em;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 768px) {
  .sec-tiktok__block02 .txt {
    margin: 25px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-tiktok__block02 .txt {
    margin: 20px auto 0;
  }
}
.sec-tiktok__block02 .splide__pagination {
  position: relative;
  bottom: auto;
  left: auto;
  margin: 24px auto 0;
  display: flex;
  gap: 13px;
}

.sec-tiktok__block02 .splide__pagination__page {
  width: 10px;
  height: 10px;
  margin: 0;
  background: #fff;
}

.sec-tiktok__block02 .splide__pagination__page.is-active {
  background: #FFFE5C;
  transform: none;
}

.sec-tiktok__block02 .splide.is-initialized:not(.is-active) .splide__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1px, 7.02vw, 96px);
}

@keyframes skateboarding-pc {
  0% {
    left: -200px;
  }
  66.66%, 100% {
    left: calc(100% + 200px);
  }
}
@keyframes skateboarding-sp {
  0% {
    left: -150px;
  }
  60%, 100% {
    left: calc(100% + 150px);
  }
}
/*------------------------------------------
creative
------------------------------------------*/
.sec-creative {
  background: #FFFE5C;
  z-index: 3;
}

@media (max-width: 768px) {
  .sec-creative {
    padding-top: 55px;
    padding-bottom: 120px;
  }
}
@media (min-width: 769px) {
  .sec-creative {
    padding-top: 107px;
    padding-bottom: 207px;
  }
}
.sec-creative__ttl {
  width: clamp(1px, 10.4vw, 57px);
  margin: 0 auto;
}

.sec-creative__video {
  width: 100%;
  aspect-ratio: 16/9;
}

@media (max-width: 768px) {
  .sec-creative__video {
    margin: 54px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-creative__video {
    margin: 100px auto 0;
  }
}
.sec-creative__video iframe {
  width: 100%;
  height: 100%;
}

.sec-creative__poster {
  margin: 30px auto 0;
}

.sec-creative__prof {
  color: #110F0F;
}

@media (max-width: 768px) {
  .sec-creative__prof {
    margin: 57px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-creative__prof {
    margin: 86px auto 0;
  }
}
.sec-creative__prof .wrap {
  margin: 35px auto 0;
}

@media (min-width: 769px) {
  .sec-creative__prof .wrap {
    display: flex;
    flex-direction: row-reverse;
    gap: clamp(1px, 4.9vw, 67px);
  }
}
@media (min-width: 769px) {
  .sec-creative__prof .img {
    width: clamp(1px, 32.79vw, 448px);
  }
}
@media (max-width: 768px) {
  .sec-creative__prof .detail {
    margin: 30px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-creative__prof .detail {
    flex: 1;
    position: relative;
  }
}
@media (min-width: 769px) {
  .sec-creative__prof .detail > * + * {
    margin: 30px 0 0;
  }
}
.sec-creative__prof .ttl {
  line-height: 1.3;
}

@media (max-width: 768px) {
  .sec-creative__prof .ttl {
    font-size: clamp(1px, 6.4vw, 24px);
  }
}
@media (min-width: 769px) {
  .sec-creative__prof .ttl {
    font-size: clamp(1px, 3.3vw, 30px);
  }
}
@media (max-width: 768px) {
  .sec-creative__prof .sns {
    width: 18px;
    margin: 30px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-creative__prof .sns {
    width: 13px;
    margin: 0;
    position: absolute;
    top: 12px;
    right: 0;
  }
}
.sec-creative__prof .sns a {
  display: block;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_x.png) no-repeat center/contain;
          mask: url(../images/ico_x.png) no-repeat center/contain;
  background: #110F0F;
}

@media (max-width: 768px) {
  .sec-creative__prof .txt01 {
    margin: 40px auto 0;
    font-size: 14px;
    line-height: 2.14;
  }
}
@media (min-width: 769px) {
  .sec-creative__prof .txt01 {
    font-size: 15px;
    line-height: 2;
  }
}
@media (max-width: 768px) {
  .sec-creative__prof .c-btn01 {
    width: 286px;
    margin: 30px auto 0;
  }
}
@media (min-width: 769px) {
  .sec-creative__prof .c-btn01 {
    width: 222px;
  }
}
.sec-creative__prof .c-btn01 a {
  background: #110F0F;
  color: #fff;
}

@media (max-width: 768px) {
  .sec-creative__prof .c-btn01 a {
    height: 60px;
  }
}
@media (min-width: 769px) {
  .sec-creative__prof .c-btn01 a {
    height: 50px;
  }
}
.sec-creative__prof .c-btn01 a::before {
  border-color: transparent #fff #fff transparent;
}

@media (hover: hover) {
  .sec-creative__prof .c-btn01 a:hover {
    background: #fff;
    color: #110F0F;
  }

  .sec-creative__prof .c-btn01 a:hover::before {
    border-color: transparent #110F0F #110F0F transparent;
  }
}
/* =========================================================
animation
========================================================= */
.focus-in {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.7s ease-in-out, filter 0.7s ease-in-out;
}

.focus-in.is-active {
  opacity: 1;
  filter: blur(0);
}

.monochrome-color {
  transition: filter 0.7s ease-in-out;
  filter: grayscale(1);
}

.monochrome-color.is-active {
  filter: grayscale(0);
}