@charset "UTF-8";
/*********************
/BASE
*********************/
html,
body {
  overflow-x: clip;
}

html:has(.modal.is-open),
body:has(.modal.is-open) {
  overflow: hidden;
}

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

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

.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;
}

a {
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
}

/*********************
ANIMATION
*********************/
@-webkit-keyframes mvZoomIn {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 1;
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes mvZoomIn {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 1;
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.t-mv__lead {
  -webkit-animation: mvZoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: mvZoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes boxZoomIn {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 1;
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes boxZoomIn {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 1;
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.t-net-vote-box {
  opacity: 0;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}

.t-net-vote-box.is-inview {
  -webkit-animation: boxZoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: boxZoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.t-present__image.is-inview {
  -webkit-animation: slide-skew 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slide-skew 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes slideSkew {
  0% {
    -webkit-transform: translate(180px, 30px);
            transform: translate(180px, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  20%, 100% {
    opacity: 1;
  }
}

@keyframes slideSkew {
  0% {
    -webkit-transform: translate(180px, 30px);
            transform: translate(180px, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  20%, 100% {
    opacity: 1;
  }
}
.t-present__image.is-inview {
  -webkit-animation: slideSkew 0.6s cubic-bezier(0.3, 1.4, 0.4, 1) forwards;
          animation: slideSkew 0.6s cubic-bezier(0.3, 1.4, 0.4, 1) 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-sns-campaign__banner.is-inview::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;
}

/*********************
cpn期間
*********************/
.c-cpn__period {
  margin-top: 4px;
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-left: 4px;
}
@media screen and (max-width: 600px) {
  .c-cpn__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;
  }
}

.c-cpn__period::after {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  left: 4px;
  width: 100%;
  height: 3px;
  background-color: #e3007f;
}

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

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

.c-cpn__month {
  font-family: "Albert Sans", sans-serif;
  color: #e3007f;
  font-weight: 900;
  font-size: 33px;
  line-height: 1;
}

.c-cpn__date {
  font-family: "Albert Sans", sans-serif;
  color: #e3007f;
  font-weight: 900;
  font-size: 33px;
  line-height: 1;
}

.c-cpn__week {
  font-family: "Albert Sans", sans-serif;
  color: #e3007f;
  font-weight: 900;
  font-size: 12px;
}

.c-cpn__hyphen {
  margin-top: -7px;
  display: block;
  color: #e3007f;
  -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;
}

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

@media (max-width: 375px) {
  .c-cpn__month,
  .c-cpn__date {
    font-size: clamp(1.375rem, -0.4431818182rem + 9.0909090909vw, 1.6875rem);
  }
}
@media (min-width: 376px) and (max-width: 600px) {
  .c-cpn__month,
  .c-cpn__date {
    font-size: clamp(1.6875rem, 0.3333333333rem + 5.7777777778vw, 2.5rem);
  }
}
/*********************
top
*********************/
/*********************
lp-レイアウト
*********************/
.lp-frame {
  min-height: 100svh;
  background-color: #e3007f;
}

.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: 600px) {
  .t-side-left,
  .t-side-right {
    position: fixed;
    inset: 0 auto 0 auto;
    width: calc((100vw - 375px) / 2);
    display: grid;
    place-items: end center;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    container-type: size;
    position: fixed;
  }
}

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

.t-side-right {
  right: 0;
  background-color: #c79f62;
}

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

@media screen and (min-width: 600px) {
  .t-side-left,
  .t-side-right {
    position: fixed;
  }
}

.t-side-left__bg,
.t-side-right__bg {
  display: none;
}
@media screen and (min-width: 1220px) {
  .t-side-left__bg,
  .t-side-right__bg {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 100%;
       object-position: 50% 100%;
    z-index: 0;
  }
}

@container (min-aspect-ratio: 495 / 768) {
  .t-side-left__bg,
  .t-side-right__bg {
    -o-object-position: 50% 0%;
       object-position: 50% 0%;
  }
}
@media (max-aspect-ratio: 9/16) {
  .t-side-left__bg {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}
.t-side-left__content,
.t-side-right__content {
  display: none;
}
@media screen and (min-width: 800px) {
  .t-side-left__content,
  .t-side-right__content {
    display: block;
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 90%;
    height: auto;
    max-height: 100vh;
    z-index: 2;
    max-width: 448px;
  }
  .t-side-left__content .logo-boatrace,
  .t-side-right__content .logo-boatrace {
    margin-top: 32px;
  }
  .t-side-left__content .logo-boatrace .logo-ladies-all-stars,
  .t-side-right__content .logo-boatrace .logo-ladies-all-stars {
    width: 268px;
  }
  .t-side-left__content .logo-boatrace .logo-boatrace-all-stars,
  .t-side-right__content .logo-boatrace .logo-boatrace-all-stars {
    width: 293px;
  }
}

.t-side-left__content .c-cpn__period {
  margin-inline: auto;
}
.t-side-left__content .c-cpn__date {
  font-family: "Albert Sans", sans-serif;
  color: #ffffff;
  font-size: 32px;
}
@media screen and (min-width: 1220px) {
  .t-side-left__content .c-cpn__date {
    font-size: 42px;
  }
}
.t-side-left__content .c-cpn__week {
  color: #ffffff;
  font-weight: 15px;
}
.t-side-left__content .c-cpn__hyphen {
  color: #ffffff;
}
.t-side-left__content .c-cpn__period::after {
  background-color: #ffffff;
}

.t-side-left__image {
  width: 66.6666666667%;
  margin-inline: auto;
}

.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;
  display: grid;
  place-items: center;
  max-width: 294px;
  height: 54px;
  border-radius: 50px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
  -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
          box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

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

.t-side-right__button::after {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  z-index: 2;
  border-radius: 50px;
}

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

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

.t-side-right__button.pink {
  background-color: #e3007f;
  border: 4px solid #c60072;
}

.t-side-right__button.gold {
  background-color: #c79f62;
  border: 4px solid #b37d2b;
}

.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: 96%;
  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 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  max-width: 80%;
}
@media screen and (min-width: 1220px) {
  .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 svg {
  display: block;
  width: auto;
  height: 50%;
  aspect-ratio: 8/10;
}

.t-side-right__button.pink .t-side-right__button-text {
  color: #ffffff;
}
.t-side-right__button.pink .t-side-right__button-icon {
  background-color: #ffffff;
}
.t-side-right__button.pink .t-side-right__button-icon svg {
  color: #e3007f;
}

.t-side-right__button.gold .t-side-right__button-text {
  color: #000;
}
.t-side-right__button.gold .t-side-right__button-icon {
  background-color: #000;
}
.t-side-right__button.gold .t-side-right__button-icon svg {
  color: #c79f62;
}

.button-link-icon img {
  display: block;
  width: 21px;
  height: 22px;
  position: absolute;
  top: 47%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
}

/*********************
main-content main-button
*********************/
.t-main-button {
  position: relative;
  z-index: 0;
  width: 280px;
  padding-block: 10px;
  border-radius: 50px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  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;
  gap: 4px;
  margin-inline: auto;
  transition: all 0.5s ease;
}

.t-main-button::after {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  z-index: 2;
  border-radius: 50px;
}

.t-main-button:hover {
  opacity: 1;
}

.t-main-button:hover::after {
  opacity: 1;
  cursor: pointer;
}

.t-main-button.pink {
  background-color: #e3007f;
  border: 4px solid #c60072;
}
.t-main-button.pink .t-main-button__text {
  color: #ffffff;
}
.t-main-button.pink .t-main-button__icon {
  background-color: #ffffff;
}
.t-main-button.pink .t-main-button__icon svg {
  color: #e3007f;
}

.t-main-button.gold {
  background-color: #c79f62;
  border: 4px solid #b37d2b;
}
.t-main-button.gold .t-main-button__text {
  color: #1a1a1a;
}
.t-main-button.gold .t-main-button__icon {
  background-color: #000;
}
.t-main-button.gold .t-main-button__icon svg {
  color: #c79f62;
}

.t-main-button__text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  max-width: 80%;
}
@media screen and (min-width: 1000px) {
  .t-main-button__text {
    font-size: 19px;
  }
}

.t-main-button__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 2px;
  aspect-ratio: 20/20;
}

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

/*********************
main-content
*********************/
.boatrace-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 11px;
}

.boatrace-logo__link .marugame {
  width: 127px;
}

.boatrace-logo__link .hamanako {
  width: 111px;
}

.icon-kakeru {
  margin-top: 4px;
  display: grid;
  place-items: center;
}

/* 視覚的に隠すが、読み上げ＆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;
  width: 100%;
  pointer-events: none;
}

.t-mv__content {
  position: absolute;
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 51%;
  height: 212px;
  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;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .t-mv__content {
    top: 49%;
    height: auto;
  }
}

/*********************
t-news
*********************/
.t-news {
  padding-block: 40px;
  background-color: #000;
}

.t-news__title {
  font-family: "Albert Sans", sans-serif;
  color: #c79f62;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
}

.t-news__text-wrapper {
  margin-top: 16px;
  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;
  position: relative;
}

.t-news__text + .t-news__text {
  border-top: 1px solid #c79f62;
  padding-top: 16px;
}

.t-news__text {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
}

/*********************
t-net-vote
*********************/
.t-net-vote {
  padding-block: 80px 10px;
  background-color: #e6e6e6;
}

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

.t-section__title--en,
.t-section__title span {
  font-family: "Albert Sans", sans-serif;
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
}

.t-section__title--ja,
.t-section__title h2 {
  margin-top: 4px;
  font-weight: 900;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
}

.t-net-vote__yokoku-wrapper {
  margin-top: 20px;
  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;
  gap: 9px;
}

.t-net-vote__yokoku-label {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  background-color: #c79f62;
  width: 55px;
  height: 30px;
  display: grid;
  place-items: center;
}

.t-net-vote__content .c-cpn__date,
.t-net-vote__content .c-cpn__week,
.t-net-vote__content .c-cpn__hyphen {
  color: #1a1a1a;
}
.t-net-vote__content .c-cpn__period {
  margin-inline: 0;
}
.t-net-vote__content .c-cpn__period::after {
  background-color: #ffffff;
}

.t-net-vote__yokoku-wrapper .c-cpn__period::after {
  background-color: #1a1a1a;
}

.t-net-vote__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.t-net-vote-box {
  padding: 6px 6px 32px;
  position: relative;
}

.t-net-vote-box.ladies-all-stars {
  margin-top: 32px;
  background-color: #e3007f;
}
.t-net-vote-box.ladies-all-stars .c-cpn__date,
.t-net-vote-box.ladies-all-stars .c-cpn__week,
.t-net-vote-box.ladies-all-stars .c-cpn__hyphen {
  color: #ffffff;
}
.t-net-vote-box.ladies-all-stars .c-cpn__period::after {
  background-color: #ffffff;
}
.t-net-vote-box.ladies-all-stars .t-net-vote-box__title {
  color: #ffffff;
}
.t-net-vote-box.ladies-all-stars .t-net-vote-box__sub-title {
  color: #e3007f;
}

.t-net-vote-box.boatrace-all-stars {
  background-color: #c79f62;
}
.t-net-vote-box.boatrace-all-stars .c-cpn__date,
.t-net-vote-box.boatrace-all-stars .c-cpn__week,
.t-net-vote-box.boatrace-all-stars .c-cpn__hyphen {
  color: #ffffff;
}
.t-net-vote-box.boatrace-all-stars .t-net-vote-box__sub-title {
  color: #c79f62;
}
.t-net-vote-box.boatrace-all-stars .t-net-vote-box__title {
  color: #ffffff;
}

.t-net-vote-box__icon {
  position: absolute;
  top: -27px;
  right: -30px;
  width: 70px;
  height: 90px;
}

.t-net-vote-box__sub-title {
  background-color: #000;
  font-size: 13px;
  text-align: center;
  margin-inline: auto;
  font-weight: 700;
  padding-block: 8px;
}

.t-net-vote-box__image--ladies-all-stars {
  margin-top: 20px;
  width: 190px;
  margin-inline: auto;
}

.t-net-vote-box__image--boatrace-all-stars {
  margin-top: 20px;
  width: 235px;
  margin-inline: auto;
}

.t-net-vote-box__image img {
  display: block;
}

.t-net-vote-box__title {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 900;
  text-align: center;
}

.t-net-vote-box__period-wrapper {
  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;
}

.t-net-vote__text {
  padding-top: 30px;
}

/*********************
t-present
*********************/
.t-present0123 {
  background-color: #e6e6e6;
}
.t-present0123 .t-present__racer {
  margin-top: -120px;
}

.t-present0406 {
  position: relative;
  background-color: #000;
  /* 三角の高さ分だけ、コンテンツ開始位置を下げる（被り防止） */
  padding-top: 115px;
  padding-bottom: 54px;
}

.t-present0406::before {
  content: "";
  position: absolute;
  top: -1px; /* ← セクションの一番上 */
  left: 0;
  width: 100%;
  height: 90px;
  background-color: #e6e6e6;
  /* この形でOK（上が平ら、下が尖る） */
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  pointer-events: none;
}

.t-present0406__inner {
  width: 70%;
}

.t-present__title {
  font-family: "Albert Sans", sans-serif;
  color: #e3007f;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.5;
}

.t-present__star {
  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;
}

.t-present__star img {
  width: 40px;
  height: 38px;
}

.t-present__lead {
  margin-top: 6px;
  color: #e3007f;
  font-weight: 900;
  font-size: 21px;
  line-height: 1.5;
}

.t-present__lead span {
  font-size: 15px;
  display: block;
}

.t-present__lists {
  margin-top: 36px;
}

.t-present__lists--lv1 {
  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: 24px;
}

.t-present-list {
  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;
}

.t-present-list1 {
  gap: 4px;
}

.t-present-list__image {
  margin-inline: auto;
  position: relative;
  width: 96%;
}

.t-present-list2__image-text {
  width: 42%;
  margin-right: auto;
}

.t-present-list__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}

.t-present-list2__title {
  margin-top: 16px;
}

.t-present-list__number {
  font-family: "Albert Sans", sans-serif;
  color: #e3007f;
  font-size: 55px;
  font-weight: 900;
  line-height: 1;
}

.t-present-list__text {
  margin-top: 6px;
  color: #e3007f;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.3;
}

.t-present-list__text--kagawa .t-present-list__text--small,
.t-present-list__text--sanuki .t-present-list__text--small {
  display: inline-block;
}

.t-present-list__star {
  position: absolute;
  width: 101px;
  height: 96px;
  display: grid;
  place-items: center;
}

.t-present-list1__star {
  bottom: 0;
  right: 0;
}

.t-present-list2__star {
  top: 0%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.t-present-list__star-image {
  position: relative;
}

.t-present-list__star-inside {
  position: absolute;
  bottom: 19px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: grid;
  place-items: center;
}

.t-present-list__star-number {
  font-family: "Albert Sans", sans-serif;
  color: #ffffff;
  font-size: 31px;
  font-weight: 900;
  line-height: 0.9;
}

.t-present-list__star-number--3keta {
  font-size: 30px;
  letter-spacing: -0.02em;
}

.t-present-list__star-text {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.t-present-list__plus {
  margin-block: 4px;
  width: 28px;
  height: 28px;
}

.t-present-list__plus svg {
  color: #e3007f;
  width: 100%;
  height: 100%;
}

.t-present-list__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 2fr));
  gap: 16px;
  position: relative;
}

.t-present-list__grid-text-icon {
  position: absolute;
  content: "";
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #e3007f;
  display: grid;
  place-items: center;
}

.t-present-list__grid-text {
  margin-top: 7px;
  color: #e3007f;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.t-present-list__attn {
  margin-top: 4px;
  color: #ffffff;
  font-size: 10px;
  text-align: left;
  font-weight: 700;
}

.t-present__lists--lv2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 92%;
  margin-inline: auto;
}
.t-present__lists--lv2 .t-present-list__star {
  position: absolute;
  content: "";
  bottom: -15px;
  right: -12px;
  width: 101px;
  height: 96px;
}
.t-present__lists--lv2 .t-present-list__title {
  margin-top: 8px;
  margin-right: auto;
}

.t-present-list__text--small {
  display: block;
  font-size: 10px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.t-present__text {
  margin-top: 16px;
  color: #e3007f;
  font-weight: 700;
}

.t-present__lists--lv3 {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 83%;
  margin-inline: auto;
}
.t-present__lists--lv3 .t-present-list__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.t-present__lists--lv3 .t-present-list__grid {
  gap: 12px;
}
.t-present__lists--lv3 .t-present-list__title {
  margin-top: 8px;
  margin-right: auto;
}
.t-present__lists--lv3 .t-present-list__star {
  top: -12px;
  right: -12px;
}
.t-present__lists--lv3 .t-present-list__attn {
  margin-top: 0;
}

.t-present0406__swiper-button-prev::after,
.t-present0406__swiper-button-next::after {
  display: none;
}

.t-present0406__swiper-button-prev {
  background: url(../images/top/icon-prev.svg) no-repeat center center/contain;
  left: 16px;
}

.t-present0406__swiper-button-next {
  background: url(../images/top/icon-next.svg) no-repeat center center/contain;
  right: 16px;
}

.t-present0406__swiper-button-prev,
.t-present0406__swiper-button-next {
  width: 28px;
  height: 28px;
  top: 51%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.t-present__button-wrapper {
  margin-top: 32px;
}
.t-present__button-wrapper .t-main-button {
  width: 100%;
  max-width: 280px;
}

.t-present0406__kiyaku {
  font-size: 12px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

/*********************
.t-bonus-chance
*********************/
.t-bonus-chance {
  margin-top: -1px;
  background-color: #000;
  padding-bottom: 120px;
}
.t-bonus-chance .t-section__title--en,
.t-bonus-chance .t-section__title--ja {
  color: #c79f62;
}

.t-bonus-chance__inner {
  border-top: 4px solid #c79f62;
  width: 79%;
  padding-top: 50px;
}

.t-bonus-chance__lead {
  margin-top: 24px;
  color: #ffffff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.t-bonus-chance-list {
  margin-top: 32px;
  position: relative;
}

.t-bonus-chance-list__image {
  width: 74%;
  margin-inline: auto;
}

.t-bonus-chance__star {
  position: absolute;
  top: -12px;
  right: -24px;
  width: 103px;
  height: 98px;
}
.t-bonus-chance__star .t-present-list__star-number,
.t-bonus-chance__star .t-bonus-chance-list__star-text {
  color: #1a1a1a;
}

.t-bonus-chance__button-wrapper {
  margin-top: 32px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  width: 75%;
  margin-inline: auto;
}
.t-bonus-chance__button-wrapper .t-main-button {
  width: 100%;
  max-width: 280px;
}

/*********************
t-sns-campaign
*********************/
.t-sns-campaign {
  --slant: 90px;
  position: relative;
  z-index: 0;
  background-color: #c79f62;
}

.t-sns-campaign::before {
  content: "";
  position: absolute;
  top: -89px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  clip-path: polygon(0 var(--slant), 100% 0, 100% 100%, 0 100%);
  z-index: -1;
  background-color: #c79f62;
  height: 90px;
  width: 100%;
}

.t-sns-campaign__inner {
  padding-block: 30px 40px;
}

.t-sns-campaign__banner {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

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

.t-sns-campaign__text {
  margin-top: 30px;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.t-sns-campaign__text span {
  font-size: 12px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.t-present__buttons {
  margin-top: 16px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.t-present__kiyaku {
  font-size: 12px;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: #000;
  text-decoration-style: solid;
  text-underline-offset: 2px;
}

/*********************
t-vote-allstar
*********************/
.t-vote-allstar {
  padding-top: 30px;
  background-color: #e6e6e6;
}

.t-vote-allstar__inner {
  padding-bottom: 40px;
}

.t-vote-allstar__content {
  margin-top: 16px;
}

.t-vote-allstar__period-wrapper {
  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;
  gap: 9px;
}
.t-vote-allstar__period-wrapper .c-cpn__date,
.t-vote-allstar__period-wrapper .c-cpn__week,
.t-vote-allstar__period-wrapper .c-cpn__hyphen {
  color: #000;
}
.t-vote-allstar__period-wrapper .c-cpn__period {
  margin-inline: 0;
}
.t-vote-allstar__period-wrapper .c-cpn__period::after {
  background-color: #000;
}

.t-vote-allstar__label {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #c79f62;
  background-color: #000;
  width: 78px;
  height: 30px;
  display: grid;
  place-items: center;
  letter-spacing: 0.18em;
}

.t-vote-allstar__text {
  margin-top: 30px;
  font-size: 15px;
}

.t-vote-allstar__banner {
  margin-top: 16px;
}

.t-vote-allstar__button-wrapper {
  margin-top: 24px;
}

/*********************
kiyaku-modal sns/net
*********************/
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modal__content {
  position: relative;
  top: 6%;
  background: #ffffff;
  max-width: 720px;
  max-height: 90vh;
  margin: auto;
  padding: 24px 4% 70px;
  overflow-y: auto;
  border-radius: 8px;
  width: 90%;
}

.modal__close {
  position: sticky;
  top: 0px;
  margin-left: auto;
  display: block;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.modal__title {
  margin-top: clamp(0.5rem, -7.3620689655rem + 16.3793103448vw, 2.875rem);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 32px;
}

.modal__body {
  text-align: left;
  font-size: clamp(0.75rem, 0.1293103448rem + 1.2931034483vw, 0.9375rem);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 41px;
}

.modal-section {
  position: relative;
}

.modal-section + .modal-section::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b3b3b3;
}

.modal__body h3 {
  font-weight: 500;
}

.modal__body h4 {
  margin-top: 24px;
  font-weight: 500;
}

.modal__body ul,
.modal__body ol {
  padding-left: 1.2em;
}

/*********************
t-pickup
*********************/
.t-pickup {
  background-color: #e6e6e6;
  padding-bottom: 48px;
}
.t-pickup .t-section__title--en,
.t-pickup .t-section__title--ja {
  color: #e3007f;
}

.t-pickup__content {
  margin-top: 32px;
}

.tab-box__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 2fr));
  gap: 12px;
}

.tab-box-button {
  font-size: 20px;
  font-weight: 700;
  padding-block: 8px 30px;
  display: grid;
  place-items: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.tab-box-button.pink {
  color: #ffffff;
  background-color: #e3007f;
}

.tab-box-button.gold {
  color: #1a1a1a;
  background-color: #c79f62;
}

.tab-box__body {
  margin-top: -26px;
  padding: 40px 8%;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.tab-box__body .t-net-vote-box__image--ladies-all-stars,
.tab-box__body .t-net-vote-box__image--boatrace-all-stars {
  margin-top: 0;
}
@media screen and (max-width: 370px) {
  .tab-box__body {
    padding: 40px 6%;
  }
}

.tab-box__body.pink {
  background-color: #e3007f;
}
.tab-box__body.pink .t-net-vote-box__title {
  color: #ffffff;
}
.tab-box__body.pink .c-cpn__date,
.tab-box__body.pink .c-cpn__week,
.tab-box__body.pink .c-cpn__hyphen {
  color: #ffffff;
}
.tab-box__body.pink .c-cpn__period::after {
  background-color: #ffffff;
}

.tab-box__body.gold {
  background-color: #c79f62;
}
.tab-box__body.gold .c-cpn__date,
.tab-box__body.gold .c-cpn__week,
.tab-box__body.gold .c-cpn__hyphen {
  color: #1a1a1a;
}
.tab-box__body.gold .c-cpn__period::after {
  background-color: #1a1a1a;
}
.tab-box__body.gold .tab-box-list__button {
  color: #ffffff;
  background-color: #e3007f;
  border: 3px solid #c60072;
}

.tab-box__body {
  display: none;
}

.tab-box__body.is-active {
  display: block;
}

.tab-box__content .tab-box-list__text {
  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;
  color: #ffffff;
}
.tab-box__content .tab-box-list__text .racer-no,
.tab-box__content .tab-box-list__text .racer-name-ja {
  color: #ffffff;
  line-height: 1.2;
}
.tab-box__content .tab-box-list__text .racer-no {
  font-family: "Albert Sans", sans-serif;
  font-size: 10px;
  font-weight: 900;
}
.tab-box__content .tab-box-list__text .racer-name-ja {
  font-size: 15px;
  font-weight: 700;
}
.tab-box__content .tab-box-list__text .racer-name-en,
.tab-box__content .tab-box-list__text .racer-grade,
.tab-box__content .tab-box-list__text .racer-meta {
  display: none;
}
.tab-box__lists {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 12px;
}

.tab-box-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.tab-box-list__image {
  width: 100%;
}

.tab-box-list__description {
  background-color: #000;
  padding: 12px;
}

.tab-box-list__button {
  display: block;
  margin-top: 8px;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1;
  background: #c79f62;
  border-radius: 50px;
  white-space: nowrap;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  border: 3px solid #b37d2b;
}
@media screen and (max-width: 370px) {
  .tab-box-list__button {
    padding: 10px 4px;
  }
}

.tab-box-list__button {
  display: block;
  margin-top: 8px;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1;
  background: #c79f62;
  border-radius: 50px;
  white-space: nowrap;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  border: 3px solid #b37d2b;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 370px) {
  .tab-box-list__button {
    padding: 10px 4px;
  }
}

.tab-box-list__button::after {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  z-index: 2;
  border-radius: 50px;
}

.tab-box-list__button:hover {
  opacity: 1;
}

.tab-box-list__button:hover::after {
  opacity: 1;
  cursor: pointer;
}

.modal-racer-pink__content .tab-box-list__button {
  color: #1a1a1a;
  background: #c79f62;
  border: 3px solid #b37d2b;
}

.modal-racer-gold__content .tab-box-list__button {
  color: #ffffff;
  background: #e3007f;
  border: 3px solid #c60072;
}

/*********************
t-movie
*********************/
.t-movie {
  background-color: #c79f62;
  overflow: hidden;
}

.t-movie__inner {
  padding-top: 40px;
}

.t-movie__images-0123 {
  margin-top: -70px;
  position: relative;
  z-index: 1;
  height: 154px; /* 画像heightが224なら */
  overflow: hidden;
  pointer-events: none;
}
@media screen and (min-width: 440px) and (max-width: 600px) {
  .t-movie__images-0123 {
    height: 180px;
  }
}

.t-movie__images-0201 {
  margin-top: -70px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

/*********************
t-movie swiper
*********************/
.t-movie__swiper-wrapper {
  margin-top: 20px;
}

.video-card {
  -o-object-fit: cover;
     object-fit: cover;
}

.video-card__thumb {
  overflow: hidden;
  position: relative;
  display: inline-block;
}
.video-card__thumb:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../images/top/icon-play.svg) no-repeat center center/contain;
  pointer-events: none;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.video-card__thumb:hover:before {
  opacity: 0.5;
}

.video-card__thumb img {
  width: 222px;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .video-card__thumb img {
    width: clamp(222px, 60vw, 435px);
  }
}

.video-card__title {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 71%;
  margin-inline: auto;
}

.t-movie__swiper-button-prev::after,
.t-movie__swiper-button-next::after {
  display: none;
}

.t-movie__swiper-button-prev,
.t-movie__swiper-button-next {
  width: 28px;
  height: 28px;
  top: 51%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* prev */
.t-movie__swiper-button-prev {
  background: url(../images/top/icon-prev.svg) no-repeat center center/contain;
  left: 0;
}

/* next */
.t-movie__swiper-button-next {
  background: url(../images/top/icon-next.svg) no-repeat center center/contain;
  right: 0;
}

/*********************
video modal
*********************/
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.video-modal__content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ffffff;
  max-width: 960px;
  border-radius: 8px;
  width: 90%;
  margin: auto;
  padding: 32px 4% 24px;
}

.video-modal__player {
  aspect-ratio: 16/9;
}

.video-modal__player iframe {
  width: 100%;
  height: 100%;
}

.video-modal__close {
  position: absolute;
  top: 0px;
  right: 1%;
  font-size: clamp(1.25rem, -1.2327586207rem + 5.1724137931vw, 2rem);
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
}

.video-modal__title {
  margin-top: 12px;
  font-size: clamp(0.75rem, -0.0775862069rem + 1.724137931vw, 1rem);
  font-weight: 700;
}

/*********************
racer-modal
*********************/
.modal-racer-pink {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.modal-racer-pink.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modal-racer-pink__content,
.modal-racer-gold__content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #000;
  max-width: min(90%, 600px);
  border-radius: 8px;
  margin: auto;
  padding: 24px 2%;
  border-radius: 16px;
  border: 3px solid #ffffff;
}
.modal-racer-pink__content .tab-box-list,
.modal-racer-gold__content .tab-box-list {
  display: grid;
  grid-template-columns: 147fr 127fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(0.75rem, -0.0775862069rem + 1.724137931vw, 1rem);
}
.modal-racer-pink__content .tab-box-list .tab-box-list__description,
.modal-racer-gold__content .tab-box-list .tab-box-list__description {
  background-color: none;
  padding: 0;
}
.modal-racer-pink__content .tab-box-list .tab-box-list__text,
.modal-racer-gold__content .tab-box-list .tab-box-list__text {
  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;
  color: #e3007f;
}
.modal-racer-pink__content .tab-box-list .tab-box-list__text .racer-no,
.modal-racer-pink__content .tab-box-list .tab-box-list__text .racer-name-ja,
.modal-racer-pink__content .tab-box-list .tab-box-list__text .racer-name-en,
.modal-racer-pink__content .tab-box-list .tab-box-list__text .racer-grade,
.modal-racer-gold__content .tab-box-list .tab-box-list__text .racer-no,
.modal-racer-gold__content .tab-box-list .tab-box-list__text .racer-name-ja,
.modal-racer-gold__content .tab-box-list .tab-box-list__text .racer-name-en,
.modal-racer-gold__content .tab-box-list .tab-box-list__text .racer-grade {
  display: block;
  text-align: left;
  line-height: 1.2;
}
.modal-racer-pink__content .tab-box-list .tab-box-list__text .racer-no,
.modal-racer-gold__content .tab-box-list .tab-box-list__text .racer-no {
  font-family: "Albert Sans", sans-serif;
  font-size: 15px;
  font-weight: 900;
}
.modal-racer-pink__content .tab-box-list .tab-box-list__text .racer-name-ja,
.modal-racer-gold__content .tab-box-list .tab-box-list__text .racer-name-ja {
  font-size: clamp(1.25rem, 0.4224137931rem + 1.724137931vw, 1.5rem);
  font-weight: 700;
}
.modal-racer-pink__content .tab-box-list .tab-box-list__text .racer-name-en,
.modal-racer-gold__content .tab-box-list .tab-box-list__text .racer-name-en {
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(0.75rem, 0.1293103448rem + 1.2931034483vw, 0.9375rem);
  font-weight: 900;
}
.modal-racer-pink__content .tab-box-list .tab-box-list__text .racer-grade,
.modal-racer-gold__content .tab-box-list .tab-box-list__text .racer-grade {
  margin-top: 24px;
  font-size: clamp(1rem, 0.1724137931rem + 1.724137931vw, 1.25rem);
  font-weight: 700;
}
.modal-racer-pink__content .tab-box-list .tab-box-list__text .racer-meta,
.modal-racer-gold__content .tab-box-list .tab-box-list__text .racer-meta {
  margin-top: 12px;
  display: block;
  font-size: clamp(0.75rem, -0.0775862069rem + 1.724137931vw, 1rem);
  text-align: left;
  width: 100%;
  color: #ffffff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 700;
  line-height: 1.7;
}
.modal-racer-pink__content .modal-racer__close,
.modal-racer-gold__content .modal-racer__close {
  margin-top: 24px;
  width: 108px;
  margin-inline: auto;
}

.modal-racer-pink__content .tab-box-list__text .racer-no,
.modal-racer-pink__content .tab-box-list__text .racer-name-ja,
.modal-racer-pink__content .tab-box-list__text .racer-name-en,
.modal-racer-pink__content .tab-box-list__text .racer-grade {
  color: #e3007f;
}

.modal-racer-gold__content .tab-box-list__text .racer-no,
.modal-racer-gold__content .tab-box-list__text .racer-name-ja,
.modal-racer-gold__content .tab-box-list__text .racer-name-en,
.modal-racer-gold__content .tab-box-list__text .racer-grade {
  color: #c79f62;
}

.tab-box-list__button-wrapper {
  margin-top: 24px;
  width: 100%;
  margin-inline: auto;
}
.tab-box-list__button-wrapper .t-main-button {
  width: 260px;
  padding-right: 20px;
}
.tab-box-list__button-wrapper .t-main-button__text {
  font-size: 18px;
}

/*********************
t-wallpaper
*********************/
.t-wallpaper {
  --slant: 90px;
  position: relative;
  z-index: 0;
  background-color: #000;
  position: relative;
  z-index: 3;
}
.t-wallpaper .t-section__title--en {
  color: #c79f62;
}
.t-wallpaper .t-section__title--ja {
  color: #c79f62;
}

.t-wallpaper::before {
  content: "";
  position: absolute;
  top: -89px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  clip-path: polygon(0 0, 100% var(--slant), 100% 100%, 0 100%);
  z-index: 2;
  background-color: #000;
  height: 90px;
  width: 100%;
}

.t-wallpaper__inner {
  padding-block: 40px 80px;
}

.t-wallpaper-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 常に2枚横並び */
  gap: 24px;
  max-width: 800px;
  margin-inline: auto;
}

.wallpaper-item {
  width: 100%;
}

.wallpaper-item__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.wallpaper-thumb {
  border: 0;
  padding: 0;
  background: none;
  width: 100%;
  display: block;
}

.wallpaper-thumb img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.wallpaper-item__meta {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wallpaper-item-download {
  display: block;
  padding: 10px 14px;
  font-size: 15px;
  background: #c79f62;
  border-radius: 50px;
  white-space: nowrap;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  border: 3px solid #b37d2b;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.wallpaper-item-download::after {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  z-index: 2;
  border-radius: 50px;
}

.wallpaper-item-download:hover {
  opacity: 1;
}

.wallpaper-item-download:hover::after {
  opacity: 1;
  cursor: pointer;
}

.wallpaper-item__hint {
  margin-top: 24px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}

.wallpaper-modal[hidden] {
  display: none;
}

.wallpaper-modal,
.wallpaper-modal * {
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}

.wallpaper-modal__img {
  -webkit-user-select: none; /* 画像の選択は不要 */
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-touch-callout: default; /* iOSの長押しメニューを出す */
}

.wallpaper-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

/* 背景 */
.wallpaper-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.wallpaper-modal__content {
  position: relative;
  margin: 6vh auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 88vh; /* 画面からはみ出さない */
  max-height: 88dvh; /* iOS Safari対策 */
  overflow: visible; /* ← auto だと長押しプレビューが暴れることがある */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wallpaper-modal__content *:not(.wallpaper-modal__img) {
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.wallpaper-modal__img {
  width: auto; /* ← 100% をやめる */
  height: auto;
  display: block;
  max-width: 92vw; /* ← 画面内に収める */
  max-height: 72vh; /* 閉じるボタン分を確保 */
  max-height: 72dvh; /* iOS Safari対策 */
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-touch-callout: default; /* iOSの長押しメニューを許可 */
}

.wallpaper-modal__close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10000;
  color: #ffffff;
  background-color: #e3007f;
  border-radius: 50%;
  padding: 16px;
  font-weight: 900;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  line-height: 1;
}

/* モーダル表示中の背景スクロール防止 */
.is-modal-open {
  overflow: hidden;
}

/*********************
t-banners
*********************/
.t-banners {
  padding-block: 40px 30px;
}

.t-banners__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.t-banner__link {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.t-banner__link:hover {
  opacity: 0.7;
}

/*********************
footer
*********************/
.attn__note {
  font-size: 10px;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: left;
  padding-bottom: 40px;
}

.footer__bottom {
  background-color: #e6e6e6;
  padding-block: 24px 20px;
}
.footer__bottom .boatrace-logo {
  padding-block: 0;
}

.footer__copyright {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0;
}

/*********************
privacy
*********************/
.p-privacy {
  background-color: #e6e6e6;
  padding-top: 50px;
}

.p-policy {
  background-color: #ffffff;
  max-width: 690px;
  margin-inline: auto;
  width: 92%;
  padding: 20px 6% 0;
  text-align: left;
}
@media screen and (min-width: 800px) {
  .p-policy {
    width: 80%;
    padding: 40px 6%;
  }
}

/* header */
html.privacy {
  background-color: #e6e6e6;
}

header.boatrace-logo {
  background-color: #ffffff;
}

.p-policy__header {
  margin-bottom: 24px;
  padding-bottom: 16px;
}

.p-policy__page-title {
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

/* sections */
.p-policy__section {
  position: relative;
  padding-block: 24px;
}

.p-policy__section + .p-policy__section {
  margin-top: 0;
}

.p-policy__section + .p-policy__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b3b3b3;
}

/* number (01,02...) */
.page-section-title__en {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  margin-bottom: 10px;
}

/* section title */
.p-policy__title__ja {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* body text */
.text-m {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.9;
  word-break: break-word;
}

/* lists */
.lists-disc {
  margin-top: 12px;
}

.lists-disc > li {
  line-height: 1.9;
}

.lists-disc > li + li {
  margin-top: 6px;
}

/* subsections inside a section (03 etc.) */
.p-policy__subsection {
  padding-left: 1em;
}

.p-policy__sub-title {
  text-indent: -1em;
  font-weight: 700;
}

/* link style (08) */
.p-policy__link {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 24px;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}

.p-policy__link:hover {
  text-decoration-thickness: 2px;
}

.p-policy__subsection.is-plain {
  padding-left: 0;
}

.p-policy__subsection.is-plain .p-policy__sub-title {
  text-indent: 0;
  line-height: 1.2;
}

.p-policy__back {
  margin-top: 40px;
  text-align: center;
}

.p-policy__back a {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  margin-bottom: 16px;
}

.p-policy__back a:hover {
  opacity: 0.7;
}

/*********************
sp固定ボタン
*********************/
@media (min-width: 800px) {
  .c-float-button-box {
    display: none;
  }
}
@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-box {
    position: fixed;
    inset-block-end: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 100;
    background: #000;
    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-box .t-side-right__button {
    position: relative;
    z-index: 0;
    display: grid;
    place-items: center;
    width: 150px;
    height: 40px;
    border-radius: 50px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .c-float-button-box .t-side-right__button-text {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    max-width: 90%;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .c-float-button-box .button-link-icon img {
    display: block;
    width: 15px;
    height: 16px;
    position: absolute;
    top: 45%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 10px;
  }
  /* 表示/非表示用 */
  .c-float-button-box.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: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
    margin-inline: auto;
  }
  .c-float-button__button--left,
  .c-float-button__button--right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .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: #e3007f;
  }
  .c-float-button__button-icon--orange {
    color: #e3007f;
  }
  .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-box {
    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;
  }
}
.slant-box.transparent-gold {
  height: 90px;
  background: -webkit-gradient(linear, left top, right bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #c79f62), to(#c79f62));
  background: linear-gradient(to bottom right, transparent 0%, transparent 50%, #c79f62 50%, #c79f62 100%);
}

.slant-box.e6e6e6-gold {
  height: 90px;
  background: -webkit-gradient(linear, left top, right bottom, from(#e6e6e6), color-stop(50%, #e6e6e6), color-stop(50%, #c79f62), to(#c79f62));
  background: linear-gradient(to bottom right, #e6e6e6 0%, #e6e6e6 50%, #c79f62 50%, #c79f62 100%);
}

.slant-box.gold-e6e6e6 {
  height: 90px;
  background: -webkit-gradient(linear, right top, left bottom, from(#c79f62), color-stop(50%, #c79f62), color-stop(50%, #e6e6e6), to(#e6e6e6));
  background: linear-gradient(to bottom left, #c79f62 0%, #c79f62 50%, #e6e6e6 50%, #e6e6e6 100%);
}

.slant-box.gold-black {
  height: 90px;
  background: -webkit-gradient(linear, right top, left bottom, from(#c79f62), color-stop(50%, #c79f62), color-stop(50%, #000), to(#000));
  background: linear-gradient(to bottom left, #c79f62 0%, #c79f62 50%, #000 50%, #000 100%);
}

.slant-box.black-white {
  height: 90px;
  background: -webkit-gradient(linear, left top, right bottom, from(#000), color-stop(50%, #000), color-stop(50%, #ffffff), to(#ffffff));
  background: linear-gradient(to bottom right, #000 0%, #000 50%, #ffffff 50%, #ffffff 100%);
}

/*********************
p-404
*********************/
.p-404,
.t-thankyou {
  background-color: #000;
  padding-block: 100px 80px;
}
.p-404 .t-section__title--en,
.p-404 span,
.t-thankyou .t-section__title--en,
.t-thankyou span {
  color: #c79f62;
  letter-spacing: 0;
}
.p-404 .t-section__title--ja,
.p-404 h2,
.t-thankyou .t-section__title--ja,
.t-thankyou h2 {
  color: #c79f62;
  font-size: 20px;
}

.p-404__text-wrapper,
.t-thankyou__text-wrapper {
  margin-top: 30px;
}

.p-404__text,
.t-thankyou__text {
  color: #ffffff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.p-404__text,
.t-thankyou__text + .p-404__text,
.t-thankyou__text {
  margin-top: 24px;
}

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