@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: #0000ff;
  font-family: "M PLUS 1", "Noto Sans JP", sans-serif;
  color: #1a1a1a;
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.025em;
}

/*********************
共通
*********************/
.bg-blue {
  background-color: #0000ff;
}

.bg-red {
  background-color: #ff0000;
}

.text-blue {
  color: #0000ff;
}

.text-red {
  color: #ff0000;
}

.text-white {
  color: #ffffff;
}

.text-black {
  color: #1a1a1a;
}

.l-inner {
  margin-inline: auto;
  width: 90%;
}

.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 ZoomIn {
  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 ZoomIn {
  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);
  }
}
.animation-zoomin {
  -webkit-animation: ZoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: ZoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* 上下に揺れるアニメーション */
@-webkit-keyframes chonchon {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  /* 1回目ちょん */
  20% {
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
  30% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  /* 2回目ちょん */
  40% {
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  /* しっかり止まる */
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes chonchon {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  /* 1回目ちょん */
  20% {
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
  30% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  /* 2回目ちょん */
  40% {
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  /* しっかり止まる */
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.animation-chonchon {
  -webkit-animation: chonchon 1.4s ease-out infinite;
          animation: chonchon 1.4s ease-out infinite;
}

@-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);
  }
}
.animation-poyopoyo {
  -webkit-animation: poyopoyoAnimation 2s linear infinite;
          animation: poyopoyoAnimation 2s linear infinite;
}

@-webkit-keyframes tobidasuAnimation {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 1;
  }
  15% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes tobidasuAnimation {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 1;
  }
  15% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.animation-tobidasu {
  -webkit-transform-origin: center 100%;
          transform-origin: center 100%;
  -webkit-transform: scale(0.4) translateY(-6px);
          transform: scale(0.4) translateY(-6px);
  opacity: 1;
  -webkit-animation: tobidasuAnimation 2s linear infinite;
          animation: tobidasuAnimation 2s linear infinite;
}

.animation-tobidasu.is-active {
  -webkit-animation: tobidasuAnimation 800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: tobidasuAnimation 800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animation-nyoki {
  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;
}

.animation-nyoki.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: 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__wave {
  display: block;
  width: 100%;
  height: 6px;
}

.c-cpn__wave svg {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 9px;
  color: #1a1a1a;
}

.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__year,
.c-cpn__week {
  font-family: "Tilt Warp", sans-serif;
  color: #1a1a1a;
  font-weight: 900;
  font-size: clamp(0.625rem, 0.5147058824rem + 0.4705882353vw, 0.75rem);
  line-height: 1;
  margin-bottom: 4%;
}
@media screen and (max-width: 370px) {
  .c-cpn__year,
  .c-cpn__week {
    font-size: 9px;
  }
}
@media screen and (min-width: 600px) {
  .c-cpn__year,
  .c-cpn__week {
    font-size: 12px;
    margin-bottom: 5%;
  }
}
@media screen and (min-width: 800px) {
  .c-cpn__year,
  .c-cpn__week {
    font-size: 10px;
    margin-bottom: 4%;
  }
}

.c-cpn__month,
.c-cpn__date {
  font-family: "Tilt Warp", sans-serif;
  color: #1a1a1a;
  font-weight: 900;
  font-size: clamp(2rem, 0.4558823529rem + 6.5882352941vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-left: 2px;
}
@media screen and (min-width: 800px) {
  .c-cpn__month,
  .c-cpn__date {
    font-size: 32px;
  }
}
@media screen and (max-width: 370px) {
  .c-cpn__month,
  .c-cpn__date {
    font-size: clamp(1.375rem, -0.4431818182rem + 9.0909090909vw, 1.6875rem);
  }
}

.c-cpn__week {
  padding-left: 2px;
}

.c-cpn__hyphen {
  margin-top: -4px;
  display: block;
  color: #1a1a1a;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: -5px 0px;
}
@media screen and (max-width: 370px) {
  .c-cpn__hyphen {
    margin-top: -5px;
  }
}

.c-cpn__hyphen svg {
  display: block;
  width: 14px;
  height: 3px;
  color: currentColor;
}
@media screen and (max-width: 370px) {
  .c-cpn__hyphen svg {
    width: 10px;
    height: 2px;
  }
}
@media screen and (min-width: 600px) {
  .c-cpn__hyphen svg {
    width: 20px;
    height: 4px;
  }
}
@media screen and (min-width: 800px) {
  .c-cpn__hyphen svg {
    width: 14px;
    height: 3px;
  }
}

.c-cpn__week--secondary {
  margin-right: 4px;
}

/*********************
button共通
*********************/
.c-button {
  position: relative;
  z-index: 0;
  display: grid;
  place-items: center;
  max-width: 294px;
  border-radius: 999px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
  margin-inline: auto;
  transition: all 0.5s ease;
}

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

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

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

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

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

.c-button__wrapper {
  position: absolute;
  z-index: 1;
  top: 48%;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
}

.c-button__text {
  font-size: 19px;
  line-height: 1.6;
  max-width: 80%;
  font-weight: 700;
  color: #ffffff;
  margin-right: 2px;
  margin-bottom: 2px;
}

.c-button__icon {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  background-image: url(../images/common/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  aspect-ratio: 20/20;
  max-height: 80%;
}

.c-button__icon--link {
  background-image: url(../images/common/icon-link.svg);
  width: 29px;
  height: 29px;
  max-height: 90%;
}

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

/*********************
lp-レイアウト
*********************/
.lp-frame {
  min-height: 100svh;
}

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

.t-side-left,
.t-side-right {
  display: none;
}
@media screen and (min-width: 800px) {
  .t-side-left,
  .t-side-right {
    position: fixed;
    inset: 0 auto 0 auto;
    width: calc((100vw - 375px) / 2);
    display: grid;
    place-items: end center;
    z-index: 0;
    overflow: hidden;
    container-type: size;
    position: fixed;
  }
}

@media screen and (min-width: 800px) {
  .t-side-right {
    place-items: center center;
  }
}

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

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

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

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

.t-side-left__bg,
.t-side-right-race-off__bg {
  display: none;
}
@media screen and (min-width: 800px) {
  .t-side-left__bg,
  .t-side-right-race-off__bg {
    display: block;
    position: absolute;
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 100%;
       object-position: 50% 100%;
    z-index: 0;
  }
}
@media screen and (min-width: 1000px) {
  .t-side-left__bg,
  .t-side-right-race-off__bg {
    height: 90%;
  }
}
@media screen and (min-width: 1220px) {
  .t-side-left__bg,
  .t-side-right-race-off__bg {
    inset: 0;
    height: 100%;
  }
}

.t-side-right-race-off__bg {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.logo-boatrace-hamanako--white {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 120px;
  max-width: 188px;
  height: auto;
  z-index: 1;
}
@media screen and (min-width: 1000px) {
  .logo-boatrace-hamanako--white {
    width: 100%;
  }
}

@container (min-aspect-ratio: 495 / 768) {
  .t-side-left__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;
  }
}
.logo-boatrace-stg {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 65%;
  max-width: 504px;
  height: auto;
  z-index: 1;
}

.t-side-right__panel {
  position: relative;
  width: 86%;
  aspect-ratio: 460/786;
  margin-inline: auto;
  width: min(100%, 530px, (100svh - 24px) * 530 / 820);
}
@media (max-height: 900px) {
  .t-side-right__panel {
    -webkit-transform: scale(0.84);
            transform: scale(0.84);
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
}
@media (max-height: 760px) {
  .t-side-right__panel {
    -webkit-transform: scale(0.74);
            transform: scale(0.74);
  }
}

.t-side-right__content {
  position: absolute;
  inset: 40px 0 0 0;
  width: 100%;
  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;
  gap: clamp(8px, 1.5vw, 16px);
  padding: clamp(32px, 4vw, 40px) 16px clamp(16px, 2vw, 20px);
}
@media (max-height: 760px) {
  .t-side-right__content {
    inset: 0;
  }
}

.t-side-right__image-text {
  width: 100%;
  margin-inline: auto;
  max-width: clamp(180px, 46%, 230px);
}

.t-side-right__period .c-cpn__year,
.t-side-right__period .c-cpn__week {
  color: #ffffff;
  font-size: clamp(0.625rem, 0.475rem + 0.4vw, 0.75rem);
}
@media screen and (max-width: 370px) {
  .t-side-right__period .c-cpn__year,
  .t-side-right__period .c-cpn__week {
    font-size: 9px;
  }
}
@media screen and (min-width: 600px) {
  .t-side-right__period .c-cpn__year,
  .t-side-right__period .c-cpn__week {
    font-size: 12px;
    margin-bottom: 5%;
  }
}
@media screen and (min-width: 1220px) {
  .t-side-right__period .c-cpn__year,
  .t-side-right__period .c-cpn__week {
    font-size: 14px;
  }
}
.t-side-right__period .c-cpn__month,
.t-side-right__period .c-cpn__date {
  color: #ffffff;
  font-size: clamp(1rem, -0.875rem + 5vw, 2.875rem);
}
@media screen and (min-width: 1441px) {
  .t-side-right__period .c-cpn__month,
  .t-side-right__period .c-cpn__date {
    font-size: 48px;
  }
}
.t-side-right__period .c-cpn__hyphen,
.t-side-right__period .c-cpn__wave svg {
  color: #ffffff;
}
.t-side-right__period .c-cpn__hyphen {
  margin-top: -6px;
}
@media screen and (min-width: 800px) {
  .t-side-right__period .c-cpn__hyphen {
    margin-top: -8px;
  }
}
@media screen and (min-width: 1220px) {
  .t-side-right__period .c-cpn__hyphen {
    margin-inline: -9px 0px;
  }
}
@media screen and (min-width: 600px) {
  .t-side-right__period .c-cpn__hyphen svg {
    height: 3px;
  }
}
@media screen and (min-width: 1220px) {
  .t-side-right__period .c-cpn__hyphen svg {
    width: 18px;
    height: 4px;
  }
}
.t-side-right__period .c-cpn__wave svg {
  bottom: -7px;
  height: 9px;
}

.t-side-right__buttons {
  display: none;
}
@media screen and (min-width: 800px) {
  .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: 24px;
    z-index: 2;
    max-width: 448px;
  }
}

.t-side-right__button .c-button__text {
  font-size: 12px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 370px) {
  .t-side-right__button .c-button__text {
    font-size: 11px;
    letter-spacing: 0em;
  }
}
@media screen and (min-width: 1000px) {
  .t-side-right__button .c-button__text {
    font-size: 19px;
  }
}

/*********************
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 .hamanako {
  width: 50%;
  min-width: 188px;
}

/* 視覚的に隠すが、読み上げ＆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%;
  overflow: hidden;
}

.t-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.t-mv__bg img {
  -o-object-position: bottom center;
     object-position: bottom center;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.t-mv__inner {
  width: 98%;
}

.t-mv__content {
  margin-inline: auto;
  padding-block: 20px 50px;
  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;
}

.img-mv-top {
  width: 90%;
  margin-inline: auto;
}

.t-mv__period {
  margin-top: -30px;
}
@media screen and (min-width: 600px) {
  .t-mv__period {
    margin-top: -40px;
  }
}
@media screen and (min-width: 800px) {
  .t-mv__period {
    margin-top: -20px;
  }
}

.t-mv__period.text-black .c-cpn__year,
.t-mv__period.text-black .c-cpn__week {
  color: #1a1a1a;
}
.t-mv__period.text-black .c-cpn__month,
.t-mv__period.text-black .c-cpn__date {
  color: #1a1a1a;
}

.t-mv__period.text-white .c-cpn__year,
.t-mv__period.text-white .c-cpn__week {
  color: #ffffff;
}
.t-mv__period.text-white .c-cpn__month,
.t-mv__period.text-white .c-cpn__date {
  color: #ffffff;
}
.t-mv__period.text-white .c-cpn__hyphen,
.t-mv__period.text-white .c-cpn__wave svg {
  color: #ffffff;
}

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

.t-news__title-image {
  width: 42.8143712575%;
  margin-inline: auto;
}

.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 #0000ff;
  padding-top: 16px;
}

.t-news__text {
  color: #ffffff;
  font-size: clamp(1rem, 0.8897058824rem + 0.4705882353vw, 1.125rem);
  line-height: 1.7;
  text-align: left;
}
@media screen and (min-width: 800px) {
  .t-news__text {
    font-size: 16px;
  }
}

/*********************
t-slot
*********************/
.t-slot {
  padding-top: 60px;
  position: relative;
}

.t-slot__title-image {
  margin-inline: auto;
}

.t-slot__boxes {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6%;
}

.t-slot-box {
  background-color: #1a1a1a;
  padding: 12px 4px;
  border-radius: 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;
  gap: 2px;
}

.t-slot-box--left,
.t-slot-box--right {
  position: relative;
  z-index: 1;
}

.t-slot-box--left::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 24px;
  width: 25px;
  height: 44px;
  background: url(../images/top/fukidashi-left.svg) no-repeat center center/contain;
  z-index: -1;
}

.t-slot-box--right::after {
  content: "";
  position: absolute;
  bottom: -24px;
  right: 24px;
  width: 25px;
  height: 44px;
  background: url(../images/top/fukidashi-right.svg) no-repeat center center/contain;
  z-index: -1;
}

.t-slot-box__text {
  color: #ffffff;
  font-size: clamp(1.0625rem, 0.7867647059rem + 1.1764705882vw, 1.375rem);
  text-align: center;
  letter-spacing: 0.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 370px) {
  .t-slot-box__text {
    font-size: 15px;
  }
}
@media screen and (min-width: 800px) {
  .t-slot-box__text {
    font-size: 17px;
  }
}

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

.t-slot-box__number {
  color: #ffffff;
  font-size: clamp(0.9375rem, 0.6617647059rem + 1.1764705882vw, 1.25rem);
  text-align: center;
  letter-spacing: 0.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  border-radius: 4px;
  border: 1px solid #ffffff;
  width: clamp(1.1875rem, 0.5808823529rem + 2.5882352941vw, 1.875rem);
  padding-block: 2px;
  min-height: 26px;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 800px) {
  .t-slot-box__number {
    font-size: 15px;
    width: 19px;
    min-height: 26px;
  }
}

.t-slot__image {
  margin-top: -8px;
  position: relative;
  z-index: 1;
}

/*********************
t-present
*********************/
.t-present {
  padding-block: 60px;
  background-color: #1a1a1a;
  position: relative;
  z-index: 1;
}

.t-present__title-image {
  width: 63.4730538922%;
  margin-inline: auto;
}

.t-present__text {
  color: #ffffff;
  font-size: clamp(1.25rem, 0.5882352941rem + 2.8235294118vw, 2rem);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 800px) {
  .t-present__text {
    font-size: 20px;
  }
}

.t-present-items {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5%;
}

.t-present-item {
  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: 2px;
}

.t-present-item__text-image {
  margin-bottom: 4px;
}

.t-present-item__text-image img {
  display: block;
  width: auto;
  height: clamp(1.75rem, 0.4264705882rem + 5.6470588235vw, 3.25rem);
  max-width: 100%;
}
@media screen and (min-width: 800px) {
  .t-present-item__text-image img {
    height: 28px;
  }
}

.t-present-item__image img {
  border-radius: 10px;
}

.t-present-item__description {
  margin-top: 8px;
  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-item__number {
  margin-bottom: 4px;
  font-size: clamp(0.8125rem, 0.4264705882rem + 1.6470588235vw, 1.25rem);
  border-radius: 999px;
  min-width: 94px;
  padding-block: 2px;
  padding-inline: 12px;
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .t-present-item__number {
    font-size: 13px;
  }
}

.t-present-item__description.bg-red .t-present-item__number {
  background-color: #ff0000;
}

.t-present-item__description.bg-blue .t-present-item__number {
  background-color: #0000ff;
}

.t-present-item__subtitle {
  color: #ffffff;
  font-size: clamp(0.8125rem, 0.4264705882rem + 1.6470588235vw, 1.25rem);
  line-height: 1.4;
}
@media screen and (min-width: 800px) {
  .t-present-item__subtitle {
    font-size: 13px;
  }
}

.t-present-item__title {
  color: #ffffff;
  font-size: clamp(1rem, 0.5588235294rem + 1.8823529412vw, 1.5rem);
  line-height: 1.4;
}
@media screen and (min-width: 800px) {
  .t-present-item__title {
    font-size: 16px;
  }
}

.t-present-box__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;
  gap: 8px;
}

.t-present-box {
  background-color: #ffffff;
  padding: 16px;
  border-radius: 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;
  gap: 8px;
}

.t-present-box__title {
  width: 53.6666666667%;
  margin-inline: auto;
}

.t-present-box__image-text {
  width: 63.3333333333%;
  margin-inline: auto;
}

.t-present-box__number {
  margin-bottom: 0;
}

.t-present-box__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-align: left;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: break-all;
}

.t-present__button-wrapper {
  margin-top: 32px;
}

/*********************
t-sg-present
*********************/
.t-sg-present__items-title {
  margin-bottom: 4px;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.t-sg-present__items-title img {
  display: block;
  width: auto;
  height: clamp(1.75rem, 0.4264705882rem + 5.6470588235vw, 3.25rem);
  max-width: 100%;
}
@media screen and (min-width: 800px) {
  .t-sg-present__items-title img {
    height: 28px;
  }
}

.t-sg-present__wrapper {
  margin-top: 40px;
}

.t-sg-present__wrapper + .t-sg-present__wrapper {
  border-top: 2px solid #0000ff;
  padding-top: 40px;
}

.t-sg-present-items {
  -webkit-column-gap: 4%;
     -moz-column-gap: 4%;
          column-gap: 4%;
  row-gap: 24px;
}

.t-sg-present-items__wrapper--wide .t-sg-present-item:first-child {
  grid-column: 1/-1;
  justify-self: center;
}
.t-sg-present-items__wrapper--wide .t-sg-present-item:first-child .t-sg-present-item__image {
  width: clamp(9.5rem, 6.8529411765rem + 11.2941176471vw, 12.5rem);
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .t-sg-present-items__wrapper--wide .t-sg-present-item:first-child .t-sg-present-item__image {
    width: 152px;
  }
}

.t-sg-present-item__subtitle {
  color: #ffffff;
  font-size: clamp(0.625rem, 0.0735294118rem + 2.3529411765vw, 1.25rem);
  line-height: 1.4;
}
@media screen and (min-width: 800px) {
  .t-sg-present-item__subtitle {
    font-size: 10px;
  }
}

.t-sg-present-item__name {
  color: #ffffff;
  font-size: clamp(0.875rem, 0.3235294118rem + 2.3529411765vw, 1.5rem);
  line-height: 1.4;
}
@media screen and (min-width: 800px) {
  .t-sg-present-item__name {
    font-size: 14px;
    letter-spacing: 0.025em;
  }
}

.t-present-box__bottom {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5%;
}

.t-present-box-bottom__image {
  margin-top: 8px;
}

/*********************
t-requirements
*********************/
.t-requirements {
  padding-bottom: 60px;
}

.t-requirements__image {
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.t-requirements__content {
  margin-top: -2px;
  background-color: #1a1a1a;
  padding: 32px 24px;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}

.t-requirements__title {
  width: 42.1052631579%;
  margin-inline: auto;
}

.t-requirements-lists {
  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: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.t-requirements-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-requirements-list__title {
  font-size: clamp(0.9375rem, 0.6617647059rem + 1.1764705882vw, 1.25rem);
  width: 156px;
  padding-block: 2px;
  min-height: 31px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}
@media screen and (min-width: 800px) {
  .t-requirements-list__title {
    font-size: 15px;
  }
}

.t-requirements-list__text {
  margin-top: 7px;
  color: #ffffff;
  font-size: clamp(1.125rem, 0.7941176471rem + 1.4117647059vw, 1.5rem);
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 800px) {
  .t-requirements-list__text {
    font-size: 18px;
  }
}

.t-requirements__button-wrapper {
  margin-top: 20px;
}

.t-requirements__link {
  margin-top: 16px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  -webkit-text-decoration: underline solid #ffffff 1px;
          text-decoration: underline solid #ffffff 1px;
  text-underline-offset: 4px;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/*********************
t-mail-magazine
*********************/
.t-mail-magazine {
  padding-top: 60px;
  background-color: #1a1a1a;
}

.t-mail-magazine__title-image {
  width: 70.0598802395%;
  margin-inline: auto;
}

.t-mail-magazine__text {
  margin-top: 20px;
  color: #ffffff;
  font-size: clamp(1rem, 0.5588235294rem + 1.8823529412vw, 1.5rem);
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 370px) {
  .t-mail-magazine__text {
    font-size: 15px;
  }
}
@media screen and (min-width: 800px) {
  .t-mail-magazine__text {
    font-size: 20px;
  }
}

.t-mail-magazine__button-wrapper {
  margin-top: 24px;
}

.t-mail-magazine__image {
  margin-top: 16px;
}

/*********************
t-fan-vote
*********************/
.t-fan-vote {
  background-color: #ffffff;
  padding-bottom: 30px;
}

.t-fan-vote__image {
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.t-fan-vote__box {
  background-color: #ff0000;
  border-radius: 12px;
  padding: 32px 24px;
}

.t-fan-vote__period {
  margin-top: 12px;
}
.t-fan-vote__period .c-cpn__year {
  color: #ffffff;
  font-size: 14px;
}
.t-fan-vote__period .c-cpn__month {
  color: #ffffff;
  font-size: 14px;
}
.t-fan-vote__period .c-cpn__date {
  color: #ffffff;
  font-size: 42px;
}
.t-fan-vote__period .c-cpn__week {
  color: #ffffff;
  font-size: 14px;
}
.t-fan-vote__period .c-cpn__hyphen {
  color: #ffffff;
  font-size: 14px;
}
.t-fan-vote__period .c-cpn__wave svg {
  color: #ffffff;
  position: absolute;
  bottom: -7px;
  height: 9px;
}

.t-fan-vote__text-wrapper {
  margin-top: 20px;
  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-fan-vote__text {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.4;
}

.t-fan-vote__button-wrapper {
  margin-top: 20px;
}

/*********************
t-coming-soon
*********************/
.t-coming-soon {
  padding-bottom: 60px;
}

.t-coming-soon__box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
}

.t-coming-soon__title-image {
  width: 65.7342657343%;
  margin-inline: auto;
}

.t-coming-soon__period {
  margin-top: 12px;
}
.t-coming-soon__period .c-cpn__year,
.t-coming-soon__period .c-cpn__week {
  font-size: 14px;
}
.t-coming-soon__period .c-cpn__month,
.t-coming-soon__period .c-cpn__date {
  font-size: 42px;
}
.t-coming-soon__period .c-cpn__wave svg {
  bottom: -7px;
  height: 9px;
}

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

.t-coming-soon-list__title {
  font-size: clamp(0.9375rem, 0.6617647059rem + 1.1764705882vw, 1.25rem);
  width: 156px;
  padding-block: 2px;
  min-height: 31px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background-color: #0000ff;
  color: #ffffff;
}
@media screen and (min-width: 800px) {
  .t-coming-soon-list__title {
    font-size: 15px;
  }
}

.t-coming-soon-list__text {
  margin-top: 7px;
  font-size: clamp(1.125rem, 0.7941176471rem + 1.4117647059vw, 1.5rem);
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 800px) {
  .t-coming-soon-list__text {
    font-size: 18px;
  }
}

/*********************
kiyaku-modal 
*********************/
.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-bottom: clamp(0.5rem, -7.3620689655rem + 16.3793103448vw, 2.875rem);
  font-size: 21px;
  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,
.modal__body p {
  padding-left: 1.2em;
}

.modal__body ul li,
.modal__body ol li {
  overflow-wrap: anywhere;
  word-break: break-all;
}

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

.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: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: left;
  padding-top: 40px;
  font-family: "Noto Sans JP", sans-serif;
  overflow-wrap: anywhere;
  word-break: break-all;
}

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

.boatrace-logo__link-footer {
  width: 60%;
  margin-inline: auto;
  display: block;
  min-width: 221px;
}

.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: 800px;
  }
}
@media (max-width: 799px) and (max-width: 799px) {
  .footer {
    padding-bottom: calc(var(--float-h) + env(safe-area-inset-bottom));
  }
  .footer--coming-soon {
    padding-bottom: 0;
  }
}
@media (max-width: 799px) {
  .c-float-button-box {
    position: fixed;
    inset-block-end: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 100;
    background: #666666;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(102, 102, 102)), to(rgb(0, 0, 0)));
    background: linear-gradient(180deg, rgb(102, 102, 102) 0%, rgb(0, 0, 0) 100%);
    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: 800px;
    width: min(100vw, var(--mc-max));
    border-right: none;
    border-left: none;
  }
}
@media screen and (max-width: 799px) and (min-width: 800px) {
  .c-float-button-box {
    border-right: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
  }
}
@media (max-width: 799px) {
  /* 表示/非表示用 */
  .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-button--sp .c-button__text {
    font-size: 13px;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0;
  }
}
@media screen and (max-width: 370px) {
  .c-button--sp .c-button__text {
    font-size: 11px;
  }
}
@media screen and (max-width: 600px) {
  .c-float-button-box {
    max-width: var(--mc-max);
    border-right: none;
    border-left: none;
    width: 100%;
  }
}
/*********************
p-404
*********************/
.p-404,
.t-thankyou {
  background-color: #1a1a1a;
  padding-block: 80px 60px;
}

.p-404__title-image {
  width: 96.7065868263%;
  margin-inline: auto;
}

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