@charset "UTF-8";
:root {
  --pivot-offset: 53px;
}

/*********************
/BASE
*********************/
html,
body {
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  overflow-y: auto;
  scrollbar-gutter: stable;
  background: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.025em;
  background-color: #f7931e;
}

/*********************
共通
*********************/
.l-inner {
  margin-inline: auto;
  width: 94%;
}

.hidden-xxs {
  display: block;
}
@media screen and (max-width: 370px) {
  .hidden-xxs {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .hidden-sp {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .hidden-sp {
    display: block;
  }
}

@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}

@media screen and (min-width: 800px) {
  .hidden-md {
    display: none;
  }
}

/*********************
共通テキスト
*********************/
.link-underline {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.link-underline:hover {
  opacity: 0.7;
}

/*********************
ANIMATION
*********************/
.fadein {
  opacity: 0;
  -webkit-transform: translateY(28px) scale(0.94);
          transform: translateY(28px) scale(0.94);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  will-change: transform, opacity;
}

.fadein.is-active {
  -webkit-animation: nyokiUpAnimation 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: nyokiUpAnimation 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@-webkit-keyframes nyokiUpAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(28px) scale(0.94);
            transform: translateY(28px) scale(0.94);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateY(-6px) scale(1.02);
            transform: translateY(-6px) scale(1.02);
  } /* 通り越す */
  80% {
    opacity: 1;
    -webkit-transform: translateY(3px) scale(0.995);
            transform: translateY(3px) scale(0.995);
  } /* 反動で戻る */
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}

@keyframes nyokiUpAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(28px) scale(0.94);
            transform: translateY(28px) scale(0.94);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateY(-6px) scale(1.02);
            transform: translateY(-6px) scale(1.02);
  } /* 通り越す */
  80% {
    opacity: 1;
    -webkit-transform: translateY(3px) scale(0.995);
            transform: translateY(3px) scale(0.995);
  } /* 反動で戻る */
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
/* 好みで微調整（任意） */
/*********************
cpn期間
*********************/
.c-cpn__period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-cpn__date-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.c-cpn__date {
  font-family: "Fugaz One", sans-serif;
  font-size: 31px;
  line-height: 1;
}

.c-cpn__slash {
  font-size: 26px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.c-cpn__week {
  font-family: "Fugaz One", sans-serif;
  font-size: 10px;
}

.c-cpn__hyphen {
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: -4px 6px;
  vertical-align: middle;
  padding-bottom: 10px;
}

.c-cpn__hyphen svg {
  display: block;
  width: 18px;
  height: 3px;
  color: currentColor;
}

/*********************
top
*********************/
/*********************
lp-レイアウト
*********************/
.lp-frame {
  min-height: 100svh;
  background-color: #f7931e;
}

.t-main-content {
  position: relative;
  max-width: 375px;
  width: 100%;
  margin: 0 auto;
  min-height: 100svh;
  background: #ffffff;
  z-index: 10;
  border-right: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
}
@media screen and (max-width: 600px) {
  .t-main-content {
    max-width: 600px;
    border-right: none;
    border-left: none;
  }
}

/* 左右固定レイヤー（全画面固定） */
.t-side-left,
.t-side-right {
  display: none;
}
@media screen and (min-width: 800px) {
  .t-side-left,
  .t-side-right {
    position: fixed;
    top: 0;
    bottom: 0;
    width: calc((100vw - 375px) / 2);
    display: grid;
    place-items: center;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
}

.t-side-right__images,
.t-side-right__buttons {
  pointer-events: auto;
}

.t-side-left {
  left: 0;
}

.t-side-right {
  right: 0;
}

.t-side-left__bg,
.t-side-right__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 345px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.t-side-left__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 345px;
  width: 100%;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}

.t-side-right__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 345px;
  width: 100%;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right top;
     object-position: right top;
}

.t-side-left__image {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto;
  height: auto;
  max-height: 100vh;
  z-index: 2;
  aspect-ratio: 497/768;
}

.t-side-right__images {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 61.3682092555%;
  z-index: 2;
  text-align: center;
}

.t-side-right__buttons {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.t-side-right__button {
  position: relative;
  z-index: 0;
  width: 200px;
  aspect-ratio: 289/58;
  overflow: hidden;
  border-radius: 30px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 1000px) {
  .t-side-right__button {
    width: 289px;
  }
}

.t-side-right__button::after {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.t-side-right__button:hover::after {
  opacity: 1;
}

.t-side-right__button img {
  width: 100%;
  height: 100%;
}

.t-side-right__button-wrapper {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.t-side-right__button-text {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  max-width: 80%;
}
@media screen and (min-width: 1000px) {
  .t-side-right__button-text {
    font-size: 19px;
  }
}

.t-side-right__button-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ffffff;
  display: grid;
  place-items: center;
  padding-left: 2px;
  aspect-ratio: 20/20;
  max-height: 80%;
}

.t-side-right__button-icon--purple {
  color: #7336b2;
}

.t-side-right__button-icon--green {
  color: #39b54a;
}

.t-side-right__button-icon svg {
  display: block;
  width: auto;
  height: 50%;
  aspect-ratio: 8/10;
}

/*********************
main-content
*********************/
.header__logo {
  text-align: center;
  padding-block: 11px;
}

/* 視覚的に隠すが、読み上げ＆SEOには残す */
.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 1px 1px);
  white-space: nowrap;
  border: 0;
}

.t-mv {
  position: relative;
  z-index: 0;
}

.img-mv-image__bg {
  width: 100%;
}

.t-mv__images {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 375px;
  height: 592px;
  max-width: 600px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .t-mv__images {
    width: 100%;
    aspect-ratio: 375/592;
    height: auto;
  }
}

@-webkit-keyframes popupAnimation {
  0% {
    -webkit-transform: translateY(40px) scale(0.8);
            transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}

@keyframes popupAnimation {
  0% {
    -webkit-transform: translateY(40px) scale(0.8);
            transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
.t-mv-image__head {
  padding-top: 8px;
  -webkit-animation: popupAnimation 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: popupAnimation 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}
@media screen and (max-width: 600px) {
  .t-mv-image__head {
    width: 80%;
    height: auto;
    aspect-ratio: 260/218;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 375px) and (max-width: 390px) {
  .t-mv-image__head {
    width: 260px;
    height: 218px;
  }
}

.t-mv__title {
  margin-top: -10px;
  display: block;
  width: 260px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .t-mv__title {
    width: 100%;
  }
}

.t-mv__title img {
  width: 100%;
  margin-inline: auto;
  height: auto;
}
@media (min-width: 375px) and (max-width: 390px) {
  .t-mv__title img {
    width: 260px;
  }
}

@media screen and (max-width: 600px) {
  .t-mv__tokotan {
    display: block;
    width: 23.8461538462%;
    height: auto;
  }
}
@media (min-width: 375px) and (max-width: 390px) {
  .t-mv__tokotan {
    width: 62px;
  }
}

.t-mv__tokotan img {
  display: block;
  width: 62px;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .t-mv__tokotan img {
    width: 100%;
  }
}

.t-mv-cpn__date img {
  display: block;
  width: 62px;
}

.t-mv__period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 0;
  margin-top: 4px;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .t-mv__period {
    margin-top: clamp(0.125rem, -0.1607142857rem + 1.4285714286vw, 0.375rem);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
  }
}

.t-mv__period::after {
  display: block;
  position: absolute;
  content: "";
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: url(../../tokotan-king/images/wave.svg) no-repeat center bottom/100% auto;
  z-index: 1;
}
@media (max-width: 375px) {
  .t-mv__period::after {
    height: clamp(0.375rem, -0.0416666667rem + 1.7777777778vw, 0.625rem);
  }
}
@media (min-width: 376px) and (max-width: 600px) {
  .t-mv__period::after {
    height: clamp(0.25rem, -0.4772727273rem + 3.6363636364vw, 0.375rem);
  }
}

.t-mv-cpn__date-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.t-mv-cpn__label {
  color: #f7931e;
  font-size: 13px;
  line-height: 1.6;
  border: 1px solid #f7931e;
  width: 62px;
  text-align: center;
  margin-top: 4px;
  margin-right: 4px;
}

.t-mv-cpn__year-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.t-mv-cpn__year {
  font-family: "Fugaz One", sans-serif;
  color: #f7931e;
  font-size: 7px;
}
@media screen and (max-width: 600px) {
  .t-mv-cpn__year {
    font-size: clamp(0.375rem, 0.3035714286rem + 0.3571428571vw, 0.4375rem);
  }
}

.t-mv-cpn__month {
  font-family: "Fugaz One", sans-serif;
  color: #f7931e;
  font-size: 27px;
  line-height: 1;
}

.t-mv-cpn__date {
  font-family: "Fugaz One", sans-serif;
  color: #f7931e;
  font-size: 27px;
  line-height: 1;
}

.t-mv-cpn__week {
  font-family: "Fugaz One", sans-serif;
  color: #f7931e;
  font-size: 9px;
}

.t-mv-cpn__slash {
  color: #f7931e;
  font-size: 22px;
}

.t-mv-cpn__hyphen {
  display: block;
  color: #f7931e;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: -8px 6px;
  padding-top: 4px;
  vertical-align: middle;
}

.t-mv-cpn__hyphen svg {
  display: block;
  width: 18px;
  height: 3px;
  color: currentColor;
}

@media (max-width: 375px) {
  .t-mv-cpn__month,
  .t-mv-cpn__date {
    font-size: clamp(1.375rem, -0.4431818182rem + 9.0909090909vw, 1.6875rem);
  }
  .t-mv-cpn__month .t-mv-cpn__slash,
  .t-mv-cpn__date .t-mv-cpn__slash {
    font-size: clamp(1.125rem, -0.3295454545rem + 7.2727272727vw, 1.375rem);
  }
}
@media (min-width: 376px) and (max-width: 600px) {
  .t-mv-cpn__month,
  .t-mv-cpn__date {
    font-size: clamp(1.6875rem, 0.3333333333rem + 5.7777777778vw, 2.5rem);
  }
  .t-mv-cpn__slash {
    font-size: clamp(1.375rem, 0.3333333333rem + 4.4444444444vw, 2rem);
  }
}
.img-mv-image__top {
  display: block;
  width: 100%;
  height: auto;
}

.t-mv__title picture,
.t-mv__title img {
  display: block;
  height: auto;
  max-width: 100%;
}

.t-mv-image__bottom {
  pointer-events: none;
  width: 100%;
  height: auto;
  aspect-ratio: 375/365;
}

.img-mv-image__bottom-person {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: auto;
  aspect-ratio: 348/339;
  z-index: 2;
  max-width: 100%;
}
@media (min-width: 375px) and (max-width: 390px) {
  .img-mv-image__bottom-person {
    max-width: 370px;
  }
}

@-webkit-keyframes poundShrink {
  0% {
    -webkit-transform: translateX(-50%) scale(3);
            transform: translateX(-50%) scale(3);
  }
  20% {
    -webkit-transform: translateX(-50%) scale(4);
            transform: translateX(-50%) scale(4);
  }
  45% {
    -webkit-transform: translateX(-50%) scale(2);
            transform: translateX(-50%) scale(2);
  }
  70% {
    -webkit-transform: translateX(-50%) scale(3);
            transform: translateX(-50%) scale(3);
  }
  80% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
  90% {
    -webkit-transform: translateX(-50%) scale(1.6);
            transform: translateX(-50%) scale(1.6);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}

@keyframes poundShrink {
  0% {
    -webkit-transform: translateX(-50%) scale(3);
            transform: translateX(-50%) scale(3);
  }
  20% {
    -webkit-transform: translateX(-50%) scale(4);
            transform: translateX(-50%) scale(4);
  }
  45% {
    -webkit-transform: translateX(-50%) scale(2);
            transform: translateX(-50%) scale(2);
  }
  70% {
    -webkit-transform: translateX(-50%) scale(3);
            transform: translateX(-50%) scale(3);
  }
  80% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
  90% {
    -webkit-transform: translateX(-50%) scale(1.6);
            transform: translateX(-50%) scale(1.6);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}
.img-mv-image__bottom-top {
  display: block;
  position: absolute;
  bottom: 29px;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  width: 41.3333333333%;
  height: aut;
  aspect-ratio: 155/243;
  z-index: 3;
  -webkit-animation: poundShrink 1.2s forwards;
          animation: poundShrink 1.2s forwards;
}

.t-lead {
  padding-block: 32px 42px;
  background-color: #f7931e;
  text-align: center;
  position: relative;
  z-index: 0;
}

@-webkit-keyframes poyopoyoAnimation {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}

@keyframes poyopoyoAnimation {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}
.t-lead:after {
  position: absolute;
  content: "";
  top: -28px;
  left: 13px;
  width: 92px;
  height: 92px;
  background: url(../../tokotan-king/images/icon-first.svg) no-repeat center center/contain;
  z-index: 1;
  -webkit-animation: poyopoyoAnimation 2s linear infinite;
          animation: poyopoyoAnimation 2s linear infinite;
}
@media (max-width: 375px) {
  .t-lead:after {
    width: clamp(4.75rem, -1.0681818182rem + 29.0909090909vw, 5.75rem);
    height: clamp(4.75rem, -1.0681818182rem + 29.0909090909vw, 5.75rem);
  }
}
@media (min-width: 376px) and (max-width: 600px) {
  .t-lead:after {
    width: clamp(5.75rem, 2.8125rem + 12.5vw, 7.5rem);
    height: clamp(5.75rem, 2.8125rem + 12.5vw, 7.5rem);
  }
}

.t-lead__sub {
  color: #f7931e;
  font-size: 13px;
  font-weight: 700;
  background-color: #1a1a1a;
  border-radius: 10px;
  width: 239px;
  height: 27px;
  display: grid;
  place-items: center;
  margin-inline: auto;
}

.t-lead__title {
  margin-top: 6px;
  font-size: 21px;
  font-weight: 900;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.t-lead__title-text {
  display: block;
  line-height: 1.3;
}

.t-lead__date {
  margin-top: 4px;
}

.t-lead__text {
  margin-top: 5px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.6;
  position: relative;
  z-index: 0;
}

.t-lead__text::after {
  display: block;
  position: absolute;
  content: "";
  top: -8px;
  right: 0;
  width: 68px;
  height: 100px;
  background: url(../../tokotan-king/images/tokotan-jump.svg) no-repeat center bottom/contain;
  z-index: 1;
}
@media screen and (max-width: 370px) {
  .t-lead__text::after {
    display: none;
  }
}

.t-lead-cpn__date {
  font-size: 27px;
}

.t-lead-cpn__week {
  font-size: 8px;
}

.t-lead-cpn__slash {
  font-size: 22px;
  line-height: 1;
}

.t-lead__button-wrapper {
  margin-top: 18px;
  text-align: center;
}

.c-main-button {
  position: relative;
  z-index: 0;
  display: block;
  width: 289px;
  height: 58px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  overflow: hidden;
  margin-inline: auto;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.c-main-button::after {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.c-main-button:hover::after {
  opacity: 1;
}

.c-main-button img {
  display: block;
  width: 100%;
  height: 100%;
}

.c-main-button__text-wrapper {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-main-button__text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.c-main-button__icon {
  width: 19px;
  height: 19px;
  padding-left: 2px;
  color: #ffffff;
  border-radius: 50%;
  background-color: #ffffff;
  display: grid;
  place-items: center;
}

.c-main-button__icon--purple {
  color: #7336b2;
}

.c-main-button__icon--green {
  color: #39b54a;
}

.c-main-button__icon--orange {
  color: #f7931e;
}

.c-main-button__icon svg {
  display: block;
  width: 8px;
  height: 9px;
}

.t-mission {
  background-color: #fee6cb;
  padding-block: 54px;
}

.t-mission__inner {
  text-align: center;
}

@-webkit-keyframes expandXAnimation {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  8% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes expandXAnimation {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  8% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.t-mission-board {
  position: relative;
  z-index: 0;
  -webkit-animation: expandXAnimation 5s ease-in-out infinite;
          animation: expandXAnimation 5s ease-in-out infinite;
}

.t-mission-board__image {
  display: block;
  max-width: 327px;
  width: 100%;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 370px) {
  .t-mission-board__image {
    width: 100%;
  }
}

.t-mission-board__image img {
  display: block;
  width: 100%;
  height: auto;
}

.t-mission-board__description {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding-block: 24px;
  padding-inline: 8%;
  z-index: 1;
}
@media screen and (max-width: 370px) {
  .t-mission-board__description {
    padding-inline: 0;
  }
}

.t-mission-board__title {
  color: #f7931e;
  font-size: 33px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.025em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.t-mission-board__title::before, .t-mission-board__title::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 34px;
  height: 39px;
  background: url(../../tokotan-king/images/illu-anchor.svg) no-repeat center center/contain;
  z-index: 2;
}
.t-mission-board__title::before {
  left: -38px;
}
.t-mission-board__title::after {
  right: -38px;
}

.t-mission-board__subtitle {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  background-color: #f7931e;
  border-radius: 10px;
  width: 273px;
  height: 27px;
  display: grid;
  place-items: center;
  margin-inline: auto;
}

.t-mission-board__steps {
  --gap: 31px;
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--gap);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.t-mission-board__step {
  position: relative;
  z-index: 0;
  text-align: left;
}

.t-mission-board__step:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: calc(100% + var(--gap) / 2);
  -webkit-transform: translate(-1.5px, -50%);
          transform: translate(-1.5px, -50%);
  width: 1px;
  height: 84%;
  background: #1a1a1a;
  z-index: 1;
}

.t-mission-board__label {
  display: block;
  color: #f7931e;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.025em;
}

.t-mission-board__text {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-align: left;
  line-height: 1.5;
}
@media screen and (max-width: 370px) {
  .t-mission-board__text {
    font-size: 15px;
  }
}

.t-mission-board__note {
  margin-top: 4px;
  font-size: 10px;
  text-align: center;
  letter-spacing: 0;
}

.t-mission-gift__images {
  aspect-ratio: 332/222;
  position: relative;
  z-index: auto;
  max-width: 332px;
  margin-inline: auto;
}

@-webkit-keyframes wiggleFlagAnimation {
  0%, 7% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  15% {
    -webkit-transform: rotateZ(-15deg);
            transform: rotateZ(-15deg);
  }
  20% {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
  25% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
  30% {
    -webkit-transform: rotateZ(6deg);
            transform: rotateZ(6deg);
  }
  35% {
    -webkit-transform: rotateZ(-4deg);
            transform: rotateZ(-4deg);
  }
  40%, 100% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
}

@keyframes wiggleFlagAnimation {
  0%, 7% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  15% {
    -webkit-transform: rotateZ(-15deg);
            transform: rotateZ(-15deg);
  }
  20% {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
  25% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
  30% {
    -webkit-transform: rotateZ(6deg);
            transform: rotateZ(6deg);
  }
  35% {
    -webkit-transform: rotateZ(-4deg);
            transform: rotateZ(-4deg);
  }
  40%, 100% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
}
.img-illu-flag {
  display: block;
  position: absolute;
  top: 22px;
  left: 7px;
  width: 114px;
  height: 120px;
  z-index: 1;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-animation: wiggleFlagAnimation 3s linear infinite;
          animation: wiggleFlagAnimation 3s linear infinite;
}

@-webkit-keyframes rotateAnimation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateAnimation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.img-illu-ship-wheel {
  display: block;
  position: absolute;
  top: 12px;
  right: 0;
  top: 0px;
  right: 9px;
  z-index: 1;
  -webkit-animation: rotateAnimation 5s linear infinite;
          animation: rotateAnimation 5s linear infinite;
}

.t-mission-gift__tokotan-image {
  display: block;
  position: absolute;
  bottom: -65px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 280px;
  height: 231px;
  z-index: 3;
}

.t-mission-gift__tokotan-image--animation-wrapper {
  display: inline-block;
  -webkit-transform: translateY(calc(var(--pivot-offset) * -1));
          transform: translateY(calc(var(--pivot-offset) * -1)); /* 起点 */
}

/* 内側：拡大縮小のみ。支点は常に“下端” */
.img-tokotan-gift {
  -webkit-transform-origin: center 100%;
          transform-origin: center 100%;
  -webkit-transform: scale(0.4) translateY(calc(var(--pivot-offset) * -0.6));
          transform: scale(0.4) translateY(calc(var(--pivot-offset) * -0.6));
  opacity: 1;
}

.img-tokotan-gift.is-active {
  -webkit-animation: tokotanGrowAnimation 800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: tokotanGrowAnimation 800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@-webkit-keyframes tokotanGrowAnimation {
  0% {
    -webkit-transform: scale(0.4) translateY(calc(var(--pivot-offset) * -0.6));
            transform: scale(0.4) translateY(calc(var(--pivot-offset) * -0.6));
    opacity: 1;
  }
  15% {
    -webkit-transform: scale(0.4) translateY(calc(var(--pivot-offset) * -0.6));
            transform: scale(0.4) translateY(calc(var(--pivot-offset) * -0.6));
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(6px) scale(1);
            transform: translateY(6px) scale(1);
    opacity: 1;
  }
}

@keyframes tokotanGrowAnimation {
  0% {
    -webkit-transform: scale(0.4) translateY(calc(var(--pivot-offset) * -0.6));
            transform: scale(0.4) translateY(calc(var(--pivot-offset) * -0.6));
    opacity: 1;
  }
  15% {
    -webkit-transform: scale(0.4) translateY(calc(var(--pivot-offset) * -0.6));
            transform: scale(0.4) translateY(calc(var(--pivot-offset) * -0.6));
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(6px) scale(1);
            transform: translateY(6px) scale(1);
    opacity: 1;
  }
}
.t-mission-gift__wrapper {
  margin-top: -17px;
  position: relative;
  z-index: 0;
  text-align: center;
}

.t-mission-gift__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: absolute;
  top: 41px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

@-webkit-keyframes blinkAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blinkAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.gift-item__subtitle--4day {
  position: relative;
  z-index: 0;
}

.gift-item__subtitle--4day::after {
  position: absolute;
  content: "";
  top: -14px;
  right: -33px;
  width: 24px;
  height: 24px;
  background: url(../../tokotan-king/images/kirakira-white.svg) no-repeat center center/contain;
  z-index: 1;
  -webkit-animation: blinkAnimation 1s linear infinite;
          animation: blinkAnimation 1s linear infinite;
}

.gift-item__subtitle--5day {
  position: relative;
  z-index: 0;
}

.gift-item__subtitle--5day::before {
  position: absolute;
  content: "";
  top: 0px;
  left: -36px;
  width: 24px;
  height: 24px;
  background: url(../../tokotan-king/images/kirakira-white.svg) no-repeat center center/contain;
  z-index: 1;
  -webkit-animation: blinkAnimation 1s linear infinite;
          animation: blinkAnimation 1s linear infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.gift-item__subtitle--6day {
  position: relative;
  z-index: 0;
}

.gift-item__subtitle--6day::before {
  position: absolute;
  content: "";
  top: -23px;
  left: -28px;
  width: 24px;
  height: 24px;
  background: url(../../tokotan-king/images/kirakira-white.svg) no-repeat center center/contain;
  z-index: 1;
  -webkit-animation: blinkAnimation 1s linear infinite;
          animation: blinkAnimation 1s linear infinite;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

.gift-item__subtitle--6day::after {
  position: absolute;
  content: "";
  top: -7px;
  left: -55px;
  width: 24px;
  height: 24px;
  background: url(../../tokotan-king/images/kirakira-white.svg) no-repeat center center/contain;
  z-index: 1;
  -webkit-animation: blinkAnimation 1s linear infinite;
          animation: blinkAnimation 1s linear infinite;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

.gift-item__title--6day {
  position: relative;
  z-index: 0;
}

.gift-item__subtitle {
  color: #ffffff;
  border-radius: 10px;
  width: 177px;
  height: 30px;
  background-color: #1a1a1a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
}

.gift-item__subtitle-number {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.gift-item__subtitle-normal {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.gift-item__subtitle-small {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.gift-item__title-wrapper {
  position: relative;
  z-index: 0;
}

.gift-item__title {
  color: #ffffff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 120px;
  margin-inline: auto;
}

.gift-item__title--br {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  line-height: 2;
}

.gift-item__title--br + .gift-item__title--br {
  margin-top: -7px;
}

.gift-item__title-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.3;
}

.gift-item__title-comma {
  display: block;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.8;
}

.gift-item__title-normal {
  display: block;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.3;
}

.gift-item__title-yen {
  display: block;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.8;
}

.gift-item__title-small {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.gift-item__title-note {
  padding-top: 2px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.025em;
}

.gift-item__title--1day::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -68px;
  width: 92px;
  height: 71px;
  background: url(../../tokotan-king/images/gift-1c.png) no-repeat center center/contain;
  z-index: 1;
}

.gift-item__title--2day,
.gift-item__title--4day {
  margin-top: 4px;
  text-align: left;
}

.gift-item__title--2day::after {
  position: absolute;
  content: "";
  top: 32%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -104px;
  width: 161px;
  height: 120px;
  background: url(../../tokotan-king/images/gift-earphone.png) no-repeat center center/contain;
  z-index: 1;
}

.gift-item__title--3day::after {
  position: absolute;
  content: "";
  top: 32%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -74px;
  width: 98px;
  height: 76px;
  background: url(../../tokotan-king/images/gift-5c.png) no-repeat center center/contain;
  z-index: 1;
}

.gift-item__title--4day::after {
  position: absolute;
  content: "";
  top: 56%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -44px;
  width: 109px;
  height: 84px;
  background: url(../../tokotan-king/images/gift-beef.png) no-repeat center center/contain;
  z-index: 1;
}

.gift-item__title--5day::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -92px;
  width: 101px;
  height: 80px;
  background: url(../../tokotan-king/images/gift-30c.png) no-repeat center center/contain;
  z-index: 1;
}

.gift-item--6day .gift-item__subtitle-number,
.gift-item--6day .gift-item__subtitle-normal {
  font-size: 18px;
}

.gift-item__title--6day {
  text-align: left;
}
.gift-item__title--6day .gift-item__title-number {
  font-size: 50px;
  line-height: 1;
}
.gift-item__title--6day .gift-item__title-yen {
  font-size: 38px;
  letter-spacing: -3px;
  line-height: 1.4;
}
.gift-item__title--6day .gift-item__title--br {
  width: 140px;
}

.gift-item__icon {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -46px;
  width: 63px;
  height: 63px;
  background: url(../../tokotan-king/images/circle-sunburst-purple.svg) no-repeat center center/contain;
  display: grid;
  place-items: center;
  z-index: 1;
}

.gift-item__icon-number {
  color: #f7931e;
  font-size: 20px;
  font-weight: 900;
}

.gift-item__icon-text {
  margin-top: -28px;
  color: #f7931e;
  font-size: 11px;
  font-weight: 900;
}

.t-mission-gift-bottom {
  margin-top: -100px;
}
@media screen and (max-width: 370px) {
  .t-mission-gift-bottom {
    margin-top: -50px;
  }
}

.t-mission-gift-bottom__stage {
  position: relative;
  aspect-ratio: 362/482;
  margin-inline: auto;
  max-width: 362px;
}

/* 共通 */
.t-mission-gift-bottom__stage > * {
  position: absolute;
  display: block;
}

/* 船（中央） */
@-webkit-keyframes wiggleShipAnimation {
  0%, 7% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  15% {
    -webkit-transform: rotateZ(-15deg);
            transform: rotateZ(-15deg);
  }
  20% {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
  25% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
  30% {
    -webkit-transform: rotateZ(6deg);
            transform: rotateZ(6deg);
  }
  35% {
    -webkit-transform: rotateZ(-4deg);
            transform: rotateZ(-4deg);
  }
  40%, 100% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
}
@keyframes wiggleShipAnimation {
  0%, 7% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  15% {
    -webkit-transform: rotateZ(-15deg);
            transform: rotateZ(-15deg);
  }
  20% {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
  25% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
  30% {
    -webkit-transform: rotateZ(6deg);
            transform: rotateZ(6deg);
  }
  35% {
    -webkit-transform: rotateZ(-4deg);
            transform: rotateZ(-4deg);
  }
  40%, 100% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
}
.t-mission-gift-bottom__ship-wrapper {
  left: 50%;
  top: 8%;
  width: 143px;
  height: 289px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.t-mission-gift-bottom__ship {
  -webkit-animation: wiggleShipAnimation 2s linear infinite;
          animation: wiggleShipAnimation 2s linear infinite;
}

.t-mission-gift-bottom__ship img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右のキャラ */
.t-mission-gift-bottom__actor {
  right: -16px;
  bottom: 0;
  width: 186px;
}
@media screen and (max-width: 370px) {
  .t-mission-gift-bottom__actor {
    width: 170px;
  }
}

.t-mission-gift-bottom__actor img {
  width: 100%;
  height: auto;
  display: block;
}

.t-mission-gift-bottom__cat {
  left: 9px;
  top: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 98px;
}

.t-mission-gift-bottom__cat img {
  width: 100%;
  height: auto;
  display: block;
}

.t-mission-gift-bottom__catch {
  font-weight: 900;
  line-height: 1.1;
  color: #7336b2;
  font-size: 23px;
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 370px) {
  .t-mission-gift-bottom__catch {
    font-size: 18px;
  }
}

.t-mission-gift-bottom__catch--left {
  top: 88px;
  left: 0;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

.t-mission-gift-bottom__catch--right {
  right: -1%;
  top: 17%;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  z-index: 2;
}

/* 下段リードコピー */
.t-mission-gift-bottom__lead {
  left: 12px;
  bottom: 17px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.025em;
  text-align: left;
}

.t-mission-gift-bottom__lead-small {
  font-size: 25px;
  font-weight: 900;
}
@media screen and (max-width: 370px) {
  .t-mission-gift-bottom__lead-small {
    font-size: 21px;
  }
}

.t-mission-gift-bottom__lead-big {
  font-size: 32px;
  font-weight: 900;
}
@media screen and (max-width: 370px) {
  .t-mission-gift-bottom__lead-big {
    font-size: 26px;
  }
}

.t-gold-card {
  padding-block: 44px 50px;
}

.t-gold-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.t-gold-card__icon-wrapper {
  position: relative;
  z-index: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-animation: poyopoyoAnimation 2s linear infinite;
          animation: poyopoyoAnimation 2s linear infinite;
}

.t-gold-card__icon img {
  width: 99px;
  height: 99px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 375px) {
  .t-gold-card__icon img {
    width: clamp(5rem, -1.9090909091rem + 34.5454545455vw, 6.1875rem);
    height: clamp(5rem, -1.9090909091rem + 34.5454545455vw, 6.1875rem);
  }
}

.t-gold-card__icon-text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  width: 100%;
  display: grid;
  place-items: center;
  z-index: 1;
}
@media (max-width: 375px) {
  .t-gold-card__icon-text {
    font-size: 16px;
  }
}

.t-gold-card__lead {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 370px) {
  .t-gold-card__lead {
    font-size: 10px;
  }
}

.t-gold-card__subtitle {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 370px) {
  .t-gold-card__subtitle {
    font-size: 14px;
  }
}

.t-gold-card__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}
@media screen and (max-width: 370px) {
  .t-gold-card__title {
    font-size: 19px;
  }
}

.t-gold-card__image-wrapper {
  margin-top: 16px;
  width: 242px;
  margin-inline: auto;
  position: relative;
  z-index: 0;
}

.t-gold-card__kirakira {
  display: block;
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: url(../../tokotan-king/images/kirakira-green.svg) no-repeat center center/contain;
  z-index: 1;
  -webkit-animation: blinkAnimation 1s linear infinite;
          animation: blinkAnimation 1s linear infinite;
}
@media screen and (max-width: 370px) {
  .t-gold-card__kirakira {
    width: 18px;
    height: 18px;
  }
}

.t-gold-card__kirakira--1 {
  top: 0px;
  left: -43px;
  -webkit-animation: blinkAnimation 1s linear infinite;
          animation: blinkAnimation 1s linear infinite;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}
@media screen and (max-width: 370px) {
  .t-gold-card__kirakira--1 {
    left: -24px;
  }
}

.t-gold-card__kirakira--2 {
  top: 24px;
  left: -30px;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
@media screen and (max-width: 370px) {
  .t-gold-card__kirakira--2 {
    left: -20px;
  }
}

.t-gold-card__kirakira--3 {
  bottom: -11px;
  right: -45px;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
@media screen and (max-width: 370px) {
  .t-gold-card__kirakira--3 {
    right: -25px;
  }
}

.t-gold-card__image {
  opacity: 1;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.t-gold-card__image img {
  display: block;
  width: 100%;
  height: auto;
}

.t-gold-card__image::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  top: 0;
  left: 0;
}

.t-gold-card__image.is-active::after {
  -webkit-animation: kiranAnimation 1.2s cubic-bezier(0.32, 0, 0.67, 0) forwards;
          animation: kiranAnimation 1.2s cubic-bezier(0.32, 0, 0.67, 0) forwards;
}

@-webkit-keyframes kiranAnimation {
  0% {
    -webkit-transform: rotate(45deg) scale(2) translate(-30%, -30%);
            transform: rotate(45deg) scale(2) translate(-30%, -30%);
    opacity: 0;
  }
  20% {
    -webkit-transform: rotate(45deg) scale(20);
            transform: rotate(45deg) scale(20);
    opacity: 0.6;
  }
  40% {
    -webkit-transform: rotate(45deg) scale(30);
            transform: rotate(45deg) scale(30);
    opacity: 0.4;
  }
  80% {
    -webkit-transform: rotate(45deg) scale(45);
            transform: rotate(45deg) scale(45);
    opacity: 0.2;
  }
  100% {
    -webkit-transform: rotate(45deg) scale(50);
            transform: rotate(45deg) scale(50);
    opacity: 0;
  }
}

@keyframes kiranAnimation {
  0% {
    -webkit-transform: rotate(45deg) scale(2) translate(-30%, -30%);
            transform: rotate(45deg) scale(2) translate(-30%, -30%);
    opacity: 0;
  }
  20% {
    -webkit-transform: rotate(45deg) scale(20);
            transform: rotate(45deg) scale(20);
    opacity: 0.6;
  }
  40% {
    -webkit-transform: rotate(45deg) scale(30);
            transform: rotate(45deg) scale(30);
    opacity: 0.4;
  }
  80% {
    -webkit-transform: rotate(45deg) scale(45);
            transform: rotate(45deg) scale(45);
    opacity: 0.2;
  }
  100% {
    -webkit-transform: rotate(45deg) scale(50);
            transform: rotate(45deg) scale(50);
    opacity: 0;
  }
}
.t-gold-card__note {
  margin-top: 6px;
  font-size: 10px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.6;
}

.t-cpn-box {
  text-align: center;
  background-color: #39b54a;
  border-radius: 20px;
  padding-top: 20px;
  width: 96%;
  margin-inline: auto;
  max-width: 500px;
}

.t-cpn-box__head {
  padding-inline: 20px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 370px) {
  .t-cpn-box__head {
    padding-inline: 6%;
  }
}

.t-cpn-box__head:after {
  position: absolute;
  content: "";
  top: -12px;
  left: 20px;
  width: 76px;
  height: 76px;
  background: url(../../tokotan-king/images/icon-second.svg) no-repeat center center/contain;
  z-index: 1;
  -webkit-animation: poyopoyoAnimation 2s linear infinite;
          animation: poyopoyoAnimation 2s linear infinite;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
@media (max-width: 375px) {
  .t-cpn-box__head:after {
    width: clamp(3.75rem, -2.0681818182rem + 29.0909090909vw, 4.75rem);
    height: clamp(3.75rem, -2.0681818182rem + 29.0909090909vw, 4.75rem);
  }
}
@media (min-width: 376px) and (max-width: 600px) {
  .t-cpn-box__head:after {
    width: clamp(4.75rem, 2.2321428571rem + 10.7142857143vw, 6.25rem);
    height: clamp(4.75rem, 2.2321428571rem + 10.7142857143vw, 6.25rem);
  }
}

.t-cpn-box__subtitle {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.t-cpn-box__title {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
}
@media screen and (max-width: 370px) {
  .t-cpn-box__title {
    font-size: 18px;
  }
}

.t-cpn-box__text-wrapper {
  margin-top: 4px;
}

.t-cpn-box__text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (max-width: 370px) {
  .t-cpn-box__text {
    font-size: 14px;
  }
}

.t-cpn-box__button-wrapper {
  margin-top: 12px;
  background-color: #1a1a1a;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-block: 8px 12px;
}
@media screen and (max-width: 370px) {
  .t-cpn-box__button-wrapper .c-main-button {
    width: 90%;
    height: auto;
  }
}

.t-cpn-box__image {
  margin-top: 10px;
}

/*********************
sp固定ボタン
*********************/
@media (min-width: 800px) {
  .c-float-button {
    display: none !important;
  }
}
@media (max-width: 799px) {
  :root {
    --float-h: 106px; /* フロートの実高さに合わせて */
    --mc-max: 600px;
  }
  .t-main-content {
    --float-h: 106px; /* フロートの高さに合わせて調整 */
    padding-bottom: calc(var(--float-h) + env(safe-area-inset-bottom));
  }
  .c-float-button {
    position: fixed;
    inset-block-end: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 18px 0px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    max-width: 375px;
    width: min(100vw, var(--mc-max));
    border-right: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
  }
  /* 表示/非表示用 */
  .c-float-button.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
  .c-float-button__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 12px;
    max-width: 400px;
    margin-inline: auto;
  }
  .c-float-button__button {
    display: block;
    position: relative;
    -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.4);
            box-shadow: 0 0 9px rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    overflow: hidden;
    margin-inline: auto;
    z-index: 0;
  }
  .c-float-button__button img {
    display: block;
    width: 100%;
    height: auto;
  }
  .c-float-button__button-wrapper {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-float-button__button-text {
    color: #ffffff;
    font-size: 23px;
    font-weight: 700;
    padding-bottom: 3px;
  }
  .c-float-button__button-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ffffff;
    display: grid;
    place-items: center;
    padding-left: 3px;
  }
  .c-float-button__button-icon--purple {
    color: #7336b2;
  }
  .c-float-button__button-icon--green {
    color: #39b54a;
  }
  .c-float-button__button-icon--orange {
    color: #f7931e;
  }
  .c-float-button__button-icon svg {
    display: block;
    width: auto;
    height: 50%;
    aspect-ratio: 8/10;
  }
}
@media screen and (max-width: 600px) {
  .c-float-button {
    max-width: var(--mc-max);
    border-right: none;
    border-left: none;
    width: 100%;
  }
}
@media screen and (max-width: 370px) {
  .c-float-button__button-text {
    font-size: 18px;
    font-weight: 700;
  }
  .c-float-button__button-icon {
    width: 18px;
    height: 18px;
  }
}
/*********************
footer
*********************/
.footer {
  margin-top: 24px;
}

.footer__note {
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0;
  width: 93%;
  margin-inline: auto;
}

.footer__banner {
  margin-top: 26px;
  margin-bottom: 32px;
  display: block;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer__banner img {
  width: 86.6666666667%;
}

.footer__banner:hover {
  opacity: 0.7;
}

.footer__bottom {
  background-color: #e6e6e6;
  padding-block: 16px;
  text-align: center;
}

.footer__logo {
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer__logo:hover {
  opacity: 0.7;
}

.footer__logo img {
  width: 232px;
}

.footer__copyright {
  display: block;
  font-size: 9px;
  letter-spacing: 0;
}

/*********************
tokai-chikusen
*********************/
.tokai-chikusen {
  background-color: #39b54a;
  /*********************
  tokai-chikusenコンテンツ
  *********************/
  /* ▼順番にぴょん！と出る ▼ */
}
.tokai-chikusen .lp-frame {
  background-color: #39b54a;
}
.tokai-chikusen .t-side-right__button-icon--green {
  color: #f7931e;
}
.tokai-chikusen .t-mv-cpn__label {
  color: #39b54a;
  border: 1px solid #39b54a;
  text-shadow: 0 0 8px rgba(20, 25, 150, 0.8), 0 0 8px rgba(20, 25, 150, 0.8);
}
.tokai-chikusen .t-mv-cpn__year,
.tokai-chikusen .t-mv-cpn__month,
.tokai-chikusen .t-mv-cpn__date,
.tokai-chikusen .t-mv-cpn__week,
.tokai-chikusen .t-mv-cpn__slash,
.tokai-chikusen .t-mv-cpn__hyphen,
.tokai-chikusen .t-mission-board__title,
.tokai-chikusen .t-lead__sub,
.tokai-chikusen .t-mission-board__label {
  color: #39b54a;
}
.tokai-chikusen .t-mv-cpn__year,
.tokai-chikusen .t-mv-cpn__month,
.tokai-chikusen .t-mv-cpn__date,
.tokai-chikusen .t-mv-cpn__week,
.tokai-chikusen .t-mv-cpn__slash {
  text-shadow: 0 0 10px rgba(20, 25, 150, 0.9);
}
.tokai-chikusen .t-mv-cpn__hyphen svg {
  -webkit-filter: drop-shadow(0 0 10px rgba(20, 25, 150, 0.9)) drop-shadow(0 0 4px rgba(20, 25, 150, 0.6));
          filter: drop-shadow(0 0 10px rgba(20, 25, 150, 0.9)) drop-shadow(0 0 4px rgba(20, 25, 150, 0.6));
}
.tokai-chikusen .t-mv__period::after {
  height: 7px;
  background: url(../../tokai-chikusen/images/wave.svg) no-repeat center bottom/contain;
  -webkit-filter: drop-shadow(0 0 10px rgba(20, 25, 150, 0.9)) drop-shadow(0 0 4px rgba(20, 25, 150, 0.6));
          filter: drop-shadow(0 0 10px rgba(20, 25, 150, 0.9)) drop-shadow(0 0 4px rgba(20, 25, 150, 0.6));
}
.tokai-chikusen .t-mv-cpn__date-wrapper {
  position: relative;
  z-index: 5;
}
.tokai-chikusen .img-mv-image__bottom-person {
  border-right: 2px solid #fff;
}
@media (min-width: 375px) and (max-width: 390px) {
  .tokai-chikusen .img-mv-image__bottom-person {
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .tokai-chikusen .img-mv-image__bottom-person {
    border-right: none;
  }
}
.tokai-chikusen .t-lead,
.tokai-chikusen .t-mission-board__subtitle {
  background-color: #39b54a;
}
.tokai-chikusen .t-lead__text::after {
  top: 17px;
}
@media screen and (max-width: 370px) {
  .tokai-chikusen .t-lead__text::after {
    display: none;
  }
}
.tokai-chikusen .t-lead:after {
  background: url(../../tokai-chikusen/images/icon-second.svg) no-repeat center center/contain;
}
.tokai-chikusen .t-mission {
  background-color: #d8f0db;
}
.tokai-chikusen .t-mission__inner {
  width: 90%;
}
.tokai-chikusen .t-cpn-box__head:after {
  background: url(../../tokai-chikusen/images/icon-first.svg) no-repeat center center/contain;
}
.tokai-chikusen .t-cpn-box {
  background-color: #f7931e;
}
.tokai-chikusen .t-mission-gift {
  margin-top: 8px;
  position: relative;
}
.tokai-chikusen .t-mission-gift__images {
  position: relative;
  aspect-ratio: 338/266;
}
@-webkit-keyframes scrollUpAnimation {
  0% {
    -webkit-transform: translateY(150%) scale(0.9);
            transform: translateY(150%) scale(0.9);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateY(-20px) scale(1.05);
            transform: translateY(-20px) scale(1.05);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateY(10px) scale(0.98);
            transform: translateY(10px) scale(0.98);
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes scrollUpAnimation {
  0% {
    -webkit-transform: translateY(150%) scale(0.9);
            transform: translateY(150%) scale(0.9);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateY(-20px) scale(1.05);
            transform: translateY(-20px) scale(1.05);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateY(10px) scale(0.98);
            transform: translateY(10px) scale(0.98);
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.tokai-chikusen .img-flag {
  display: block;
  position: absolute;
  z-index: 0;
  opacity: 0;
  will-change: transform, opacity;
}
.tokai-chikusen .img-flag.is-active {
  -webkit-animation: scrollUpAnimation 0.8s cubic-bezier(0.25, 1.4, 0.5, 1) forwards;
          animation: scrollUpAnimation 0.8s cubic-bezier(0.25, 1.4, 0.5, 1) forwards;
}
.tokai-chikusen .img-flag-shizuoka {
  top: 60px;
  left: 0;
  width: 80px;
  height: 237px;
}
.tokai-chikusen .img-flag-shizuoka.is-active {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.tokai-chikusen .img-flag-aichi {
  top: 18px;
  right: 0;
  width: 96px;
  height: 228px;
}
.tokai-chikusen .img-flag-aichi.is-active {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.tokai-chikusen .img-flag-mie {
  top: 14px;
  left: 17%;
  width: 61px;
  height: 234px;
}
.tokai-chikusen .img-flag-mie.is-active {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
@-webkit-keyframes zoomInAnimation {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.05, 1.05, 1);
            transform: scale3d(1.05, 1.05, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes zoomInAnimation {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.05, 1.05, 1);
            transform: scale3d(1.05, 1.05, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.tokai-chikusen .img-tokotan-boat__image {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 65%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 98px;
  height: 76px;
}
.tokai-chikusen .img-tokotan-boat {
  opacity: 0;
}
.tokai-chikusen .img-tokotan-boat.is-active {
  -webkit-animation-name: zoomInAnimation;
          animation-name: zoomInAnimation;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
          animation-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.tokai-chikusen .t-mission-gift__tokotan-image {
  z-index: 1;
}
.tokai-chikusen .t-mission-box {
  margin-top: -16px;
  background-color: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 4px rgba(108, 120, 110, 0.5);
          box-shadow: 0 0 4px rgba(108, 120, 110, 0.5);
  position: relative;
  z-index: auto;
}
.tokai-chikusen .t-mission-box__head {
  padding-block: 40px 26px;
  width: 93%;
  margin-inline: auto;
}
.tokai-chikusen .t-mission-box__title-wrapper {
  position: relative;
}
.tokai-chikusen .t-mission-box__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tokai-chikusen .t-mission-box__title-small {
  color: #39b54a;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 370px) {
  .tokai-chikusen .t-mission-box__title-small {
    font-size: 20px;
  }
}
.tokai-chikusen .t-mission-box__title-big {
  color: #39b54a;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
}
.tokai-chikusen .t-mission-box__kirakira {
  display: block;
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: url(../../tokai-chikusen/images/kirakira-green.svg) no-repeat center center/contain;
  z-index: 1;
  -webkit-animation: blinkAnimation 1s linear infinite;
          animation: blinkAnimation 1s linear infinite;
}
@media screen and (max-width: 370px) {
  .tokai-chikusen .t-mission-box__kirakira {
    width: 18px;
    height: 18px;
  }
}
.tokai-chikusen .t-mission-box__kirakira--1 {
  top: -14%;
  left: 0;
  -webkit-animation: blinkAnimation 1s linear infinite;
          animation: blinkAnimation 1s linear infinite;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}
.tokai-chikusen .t-mission-box__kirakira--2 {
  top: 5%;
  left: 22px;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.tokai-chikusen .t-mission-box__kirakira--3 {
  bottom: -13%;
  left: 8px;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.tokai-chikusen .t-mission-box__kirakira--4 {
  bottom: 13%;
  right: 5px;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.tokai-chikusen .t-mission-box-entry__title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}
.tokai-chikusen .slot-box {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  width: 200px;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 370px) {
  .tokai-chikusen .slot-box {
    margin-inline: 0 auto;
  }
}
.tokai-chikusen .slot-box__image {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -86px;
  width: 79px;
  height: 165px;
}
@media screen and (max-width: 370px) {
  .tokai-chikusen .slot-box__image {
    right: -81px;
    width: 72px;
    height: 150px;
  }
}
.tokai-chikusen .slot-box__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tokai-chikusen .slot-box__item.is-active .slot-box__area {
  background-color: #39b54a;
}
.tokai-chikusen .slot-box__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.tokai-chikusen .slot-box__number {
  display: block;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.2;
  border-radius: 5px;
  border: 1px solid #000;
  width: 26px;
  height: 37px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.tokai-chikusen .slot-box__text {
  display: block;
  font-size: 18px;
  font-weight: 700;
  padding-inline: 16px;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
}
.tokai-chikusen .slot-box__area {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding-block: 0.4em 0.5em;
  line-height: 1;
  background-color: #a8d46e;
  clip-path: polygon(0 0, 71.43% 0, 90% 50%, 71.43% 100%, 0 100%);
  width: 80px;
  height: 36px;
  padding-right: 14px;
  display: grid;
  place-items: center;
}
.tokai-chikusen .t-mission-box__note {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.025em;
}
.tokai-chikusen .tab-box__buttons {
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.tokai-chikusen .tab-box-button {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  width: 89px;
  height: 37px;
  background-color: #a8d46e;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.tokai-chikusen .tab-box-button.is-active {
  font-size: 20px;
  width: 100px;
  height: 41px;
  background-color: #39b54a;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.tokai-chikusen .tab-box__contents {
  margin-top: -2px;
  background-color: #39b54a;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
  z-index: 1;
}
.tokai-chikusen .tab-box__content {
  display: none;
  padding-block: 35px 56px;
  padding-inline: 20px;
  -webkit-animation: fadeIn 0.3s ease-in-out;
          animation: fadeIn 0.3s ease-in-out;
}
.tokai-chikusen .tab-box__content.is-active {
  display: block;
}
.tokai-chikusen .tab-box__title {
  position: relative;
  z-index: 0;
  margin-inline: auto;
}
.tokai-chikusen .tab-box__title--shizuoka {
  max-width: 290px;
}
.tokai-chikusen .tab-box__title--aichi {
  max-width: 288px;
}
.tokai-chikusen .tab-box__title--mie {
  max-width: 276px;
}
.tokai-chikusen .img-area {
  display: block;
  width: auto;
  height: 81px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.tokai-chikusen .img-icon-left {
  display: block;
  position: absolute;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.tokai-chikusen .img-icon-swacky {
  top: 45%;
}
.tokai-chikusen .img-icon-totomaru {
  top: 50%;
}
.tokai-chikusen .img-icon-right {
  display: block;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.tokai-chikusen .img-illu-ship-wheel {
  top: 50%;
  -webkit-animation: none;
          animation: none;
}
.tokai-chikusen .img-tokotan-maneki {
  top: 50%;
}
.tokai-chikusen .img-illu-flag {
  width: 79px;
  height: 83px;
  -webkit-animation: none;
          animation: none;
}
@media screen and (max-width: 370px) {
  .tokai-chikusen .img-area {
    height: 67px;
  }
  .tokai-chikusen .img-icon-left {
    width: 23%;
  }
  .tokai-chikusen .img-icon-right {
    width: 23%;
  }
}
.tokai-chikusen .tab-box__items {
  margin-top: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tokai-chikusen .tab-box-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.tokai-chikusen .tab-box-item:first-child {
  position: relative;
  z-index: 0;
}
.tokai-chikusen .tab-box-item:first-child::after {
  position: absolute;
  content: "";
  top: 0;
  right: -13px;
  width: 1px;
  height: 80%;
  background-color: #1a1a1a;
}
.tokai-chikusen .tab-box-item:first-child .tab-box-item__text {
  margin-top: 0;
}
.tokai-chikusen .tab-box-item:nth-child(2) .tab-box-item__gift {
  padding-top: 5px;
}
.tokai-chikusen .tab-box-item:nth-child(2) .tab-box-item__image {
  margin-left: -8px;
  position: relative;
  z-index: 1;
}
.tokai-chikusen .tab-box-item__subtitle {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  background-color: #1a1a1a;
  padding-block: 0.2em;
  border-radius: 10px;
}
.tokai-chikusen .tab-box-item__gift {
  margin-top: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tokai-chikusen .tab-box-item__gift .gift-item__icon-number,
.tokai-chikusen .tab-box-item__gift .gift-item__icon-text {
  color: #a8d46e;
}
.tokai-chikusen .tab-box-item__gift .gift-item__icon-number {
  line-height: 1.2;
}
.tokai-chikusen .tab-box-item__gift .gift-item__icon-text {
  margin-top: -21px;
}
.tokai-chikusen .tab-box-item__icon {
  width: 56px;
  height: 56px;
  background: url(../../tokotan-king/images/circle-sunburst-purple.svg) no-repeat center center/contain;
  display: grid;
  place-items: center;
  z-index: 1;
}
.tokai-chikusen .tab-box-item__text {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.tokai-chikusen .tab-box-item__text--small {
  display: block;
  font-size: 10px;
  letter-spacing: 0;
}
.tokai-chikusen .tab-box__button-wrapper {
  margin-top: 12px;
}
@media screen and (max-width: 370px) {
  .tokai-chikusen .c-main-button {
    width: 249px;
    height: 50px;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
            box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    border-radius: 30px;
  }
  .tokai-chikusen .c-main-button::after {
    position: absolute;
    content: "";
    inset: 0;
    background: rgba(255, 255, 255, 0.25);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
  }
}
.tokai-chikusen .t-mission-more {
  display: block;
  position: absolute;
  content: "";
  bottom: -61px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 99px;
  height: 99px;
  z-index: 2;
}
.tokai-chikusen .t-mission-more--animation {
  -webkit-animation: poyopoyoAnimation 2s linear infinite;
          animation: poyopoyoAnimation 2s linear infinite;
}
.tokai-chikusen .t-mission-more__icon {
  position: relative;
  z-index: 0;
}
.tokai-chikusen .t-mission-more__icon-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.tokai-chikusen .gift-item--more {
  margin-top: 32px;
  padding-block: 40px 20px;
  background-color: #39b54a;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 4px rgba(108, 120, 110, 0.5);
          box-shadow: 0 0 4px rgba(108, 120, 110, 0.5);
  position: relative;
  z-index: 0;
}
.tokai-chikusen .gift-item__icon {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -65px;
  width: 63px;
  height: 63px;
  background: url(../../tokotan-king/images/circle-sunburst-purple.svg) no-repeat center center/contain;
  display: grid;
  place-items: center;
  z-index: 1;
}
.tokai-chikusen .gift-item__icon-number {
  color: #a8d46e;
}
.tokai-chikusen .gift-item__icon-text {
  color: #a8d46e;
}
.tokai-chikusen .gift-item__note {
  font-size: 10px;
  text-align: center;
}
.tokai-chikusen .gift-item__title--more {
  position: relative;
  z-index: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.tokai-chikusen .gift-item__title--more::before {
  position: absolute;
  content: "";
  top: 32%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -109px;
  width: 98px;
  height: 76px;
  background: url(../../tokotan-king/images/gift-30c.png) no-repeat center center/contain;
  z-index: 1;
}
@media screen and (max-width: 370px) {
  .tokai-chikusen .gift-item__title--more::before {
    right: -84px;
    width: 76px;
    height: 61px;
  }
}
.tokai-chikusen .gift-item-wchance {
  margin-top: 40px;
}
.tokai-chikusen .gift-item-wchance__wrapper {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
}
.tokai-chikusen .gift-item-wchance__icon-wrapper {
  position: relative;
  z-index: 0;
}
.tokai-chikusen .gift-item-wchance__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 99px;
  height: 99px;
  z-index: 1;
  display: grid;
  place-items: center;
}
.tokai-chikusen .gift-item-wchance__icon-number {
  color: #a8d46e;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.8;
}
.tokai-chikusen .gift-item-wchance__icon-text {
  margin-top: -40px;
  color: #a8d46e;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}
.tokai-chikusen .gift-item-wchance__subtitle {
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}
.tokai-chikusen .gift-item-wchance__title {
  margin-top: -8px;
  color: #1a1a1a;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.tokai-chikusen .gift-item-wchance__title--br {
  margin-top: -2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}
.tokai-chikusen .gift-item-wchance__title--br + .gift-item-wchance__title--br {
  margin-top: -12px;
}
.tokai-chikusen .gift-item-wchance__title-number {
  display: block;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1;
}
.tokai-chikusen .gift-item-wchance__title-comma {
  display: block;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.8;
}
.tokai-chikusen .gift-item-wchance__title-normal {
  display: block;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.3;
}
.tokai-chikusen .gift-item-wchance__title-yen {
  display: block;
  font-size: 39px;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1;
}
.tokai-chikusen .gift-item-wchance__title-small {
  display: block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 370px) {
  .tokai-chikusen .gift-item-wchance__title-small {
    font-size: 20px;
  }
}
.tokai-chikusen .gift-item-wchance__button-wrapper {
  margin-top: 24px;
}
.tokai-chikusen .t-cpn-box__head:after {
  top: 0;
}
.tokai-chikusen .t-cpn-box__title {
  line-height: 1.4;
  letter-spacing: 0.14em;
}
.tokai-chikusen .t-cpn-box__image {
  margin-top: 0;
}
.tokai-chikusen .t-cpn-box__button-wrapper {
  padding-block: 16px 24px;
}

/*********************
p-404
*********************/
.p-404 .t-main-content {
  padding-bottom: 0;
}
.p-404 .t-mv {
  z-index: auto;
}
.p-404 .t-side-right__images {
  padding-bottom: 200px;
}

.tokai-chikusen .t-side-right__images {
  padding-bottom: 0;
}

.p-404__main .t-lead {
  min-height: 400px;
  padding-bottom: 72px;
}
@media screen and (max-width: 370px) {
  .p-404__main .t-lead {
    min-height: 460px;
  }
}
.p-404__main .t-lead:after {
  content: none;
}
@media screen and (max-width: 370px) {
  .p-404__main .c-main-button {
    width: 249px;
    height: 50px;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
            box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    border-radius: 30px;
  }
  .p-404__main .c-main-button::after {
    position: absolute;
    content: "";
    inset: 0;
    background: rgba(255, 255, 255, 0.25);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
  }
}

.p-404-box {
  position: absolute;
  top: 29%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #ffffff;
  width: 89.3333333333%;
  margin-inline: auto;
  padding-block: 44px;
  padding-inline: 5%;
  text-align: center;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .p-404-box {
    top: 31%;
  }
}
@media screen and (max-width: 370px) {
  .p-404-box {
    top: 26%;
  }
}

.p-404-box__title {
  color: #f7931e;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 370px) {
  .p-404-box__title {
    font-size: 20px;
  }
}

.tokai-chikusen .p-404-box__title {
  color: #39b54a;
}

.p-404-box__image {
  margin-top: 32px;
}

.p-404-box__image img {
  display: block;
  margin-inline: auto;
}

.p-404-box__title__text {
  margin-top: 32px;
  font-size: 15px;
  font-weight: 700;
}

.p-404-box__button-wrapper {
  margin-top: 24px;
}