@charset "UTF-8";
@forward 'sass:math' as math-*;
/**
  スクロール位置で表示アニメーション
 **/
/* bound text animation
--------------- */
@keyframes bound-text {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-20px); }
  100% {
    transform: translateY(-10px); } }

.is-animated .bound-text {
  position: relative;
  transform-origin: center bottom;
  animation-name: bound-text;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: both; }

/* bound text animation
--------------- */
.is-animated .animation-zoom-in {
  animation-name: zoomInAnime;
  animation-duration: 0.5s; }

@keyframes zoomInAnime {
  0% {
    transform: scale(1); }
  50% {
    transform: translateY(-15%) scale(1.1); }
  100% {
    transform: translateY(0) scale(1); } }

/* zoomOut animation
--------------- */
.animation-zoom-out {
  opacity: 0; }
  .is-animated .animation-zoom-out {
    animation-name: zoomOutAnime;
    animation-duration: 0.7s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards; }

@keyframes zoomOutAnime {
  0% {
    opacity: 0; }
  50% {
    opacity: 1;
    transform: scale(1.2); }
  100% {
    opacity: 1;
    transform: scale(1); } }

@keyframes bounce {
  0% {
    opacity: 0; }
  0%,
  20%,
  50%,
  75%,
  100% {
    transform: translateY(0); }
  20% {
    transform: scale(0.5) translate3d(0, -30px, 0);
    transition: opacity 0.5s ease, transform 1s cubic-bezier(0.16, 0.05, 0, 1); }
  40% {
    transform: translateY(-30px); }
  60% {
    transform: translateY(-10px); }
  100% {
    opacity: 1; } }

/* above fadeIn animation
--------------- */
.animation-above-fade-in {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 0.5s cubic-bezier(0.5, 0, 0, 1);
  transform: translateY(-100px); }
  .animation-above-fade-in.is-animated {
    opacity: 1;
    transform: translateY(0); }

/* bottom fadeIn animation
--------------- */
.animation-bottom-fade-in {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 1s cubic-bezier(0.5, 0, 0, 1);
  transform: translateY(50px); }
  .is-animated .animation-bottom-fade-in {
    opacity: 1;
    transform: translateY(0); }

/* Button animation
--------------- */
@keyframes scale {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.05, 1.05); }
  100% {
    transform: scale(1); } }

.button-anim {
  display: block;
  transition: 0.5s;
  animation-name: scale;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite; }
  .button-anim:hover {
    animation: none; }
  @media screen and (min-width: 768px) {
    .button-anim {
      animation: none;
      transform: none;
      transition: unset; } }

.text-bounce.is-animated {
  position: relative;
  transform-origin: center bottom;
  animation-name: bounce;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  opacity: 0; }

.button-hover {
  display: block;
  transition: 0.5s; }
  .button-hover:hover {
    transform: scale(1.05, 1.05); }

/* bound text animation
--------------- */
@keyframes movingThumb {
  0%,
  100% {
    transform: translateX(0px) rotate(0deg); }
  50% {
    transform: translateX(0px) rotate(3deg); } }

.thumb-animation.is-moving {
  transition: transform 0.3s ease-in-out;
  transform: rotate(0deg);
  transform-origin: 50% 100%;
  animation: movingThumb 0.5s linear 2;
  animation-delay: 0.5s; }

.entry-method-item.thumb-animation.is-animated::before {
  transition: transform 0.3s ease-in-out;
  transform: rotate(0deg);
  transform-origin: 50% 100%;
  animation: movingThumb 0.5s linear 2;
  animation-delay: 0s; }

@keyframes movingText {
  0%,
  100% {
    transform: translateX(0px) rotate(0deg); }
  50% {
    transform: translateX(5px) rotate(7.5deg); } }

.text-animation.is-moving {
  transition: transform 0.3s ease-in-out;
  transform: rotate(0deg);
  transform-origin: 50% 100%;
  animation: movingText 0.5s linear 1;
  animation-delay: 0.5s; }

/* slide in
--------------- */
@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0; }
  100% {
    transform: translateX(0); }
  40%,
  100% {
    opacity: 1; } }

.scroll-animation {
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.72s cubic-bezier(0.16, 0.05, 0, 1);
  transform: scale(0.95) translate3d(0, 1em, 0); }
  .scroll-animation.is-animated {
    opacity: 1;
    transform: scale(1) translateZ(0); }

/* モグラたたき風
--------------- */
.image-slide-out {
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  transition: transform 0.3s linear;
  animation-delay: 1s; }
  @media screen and (min-width: 768px) {
    .image-slide-out {
      animation-duration: 18s; } }

.image-slide-in {
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  transition: transform 0.3s ease-in-out;
  animation-delay: 1s; }
  @media screen and (min-width: 768px) {
    .image-slide-in {
      animation-duration: 18s; } }

@media screen and (min-width: 768px) {
  @keyframes slideOut-1 {
    0% {
      transform: translateY(0); }
    10% {
      transform: translateY(300px); }
    18%,
    100% {
      transform: translateY(0px); } }
  @keyframes slideIn-1 {
    0%,
    1% {
      transform: translateY(300px); }
    8% {
      transform: translateY(0); }
    19%,
    100% {
      transform: translateY(300px); } }
  @keyframes slideOut-2 {
    0%,
    20% {
      transform: translateY(0); }
    30% {
      transform: translateY(300px); }
    38%,
    100% {
      transform: translateY(0px); } }
  @keyframes slideIn-2 {
    0%,
    21% {
      transform: translateY(300px); }
    28% {
      transform: translateY(0); }
    39%,
    100% {
      transform: translateY(300px); } }
  @keyframes slideOut-3 {
    0%,
    40% {
      transform: translateY(0); }
    50% {
      transform: translateY(300px); }
    58%,
    100% {
      transform: translateY(0px); } }
  @keyframes slideIn-3 {
    0%,
    41% {
      transform: translateY(300px); }
    48% {
      transform: translateY(0); }
    59%,
    100% {
      transform: translateY(300px); } }
  @keyframes slideOut-4 {
    0%,
    60% {
      transform: translateY(0); }
    70% {
      transform: translateY(300px); }
    78%,
    100% {
      transform: translateY(0px); } }
  @keyframes slideIn-4 {
    0%,
    61% {
      transform: translateY(300px); }
    68% {
      transform: translateY(0); }
    79%,
    100% {
      transform: translateY(300px); } }
  @keyframes slideOut-5 {
    0%,
    80% {
      transform: translateY(0); }
    90% {
      transform: translateY(300px); }
    98%,
    100% {
      transform: translateY(0px); } }
  @keyframes slideIn-5 {
    0%,
    81% {
      transform: translateY(300px); }
    88% {
      transform: translateY(0); }
    99%,
    100% {
      transform: translateY(300px); } } }

/* bound
--------------- */
@keyframes bounceAndScale {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.16); }
  100% {
    transform: scale(1); } }

@keyframes knock {
  0% {
    transform: translateX(0px) rotate(0deg); }
  50% {
    transform: translateX(0px) rotate(5deg); }
  100% {
    transform: translateX(0px) rotate(0deg); } }

.mv__inner.is-animated .mv__title,
.mv__inner.is-animated .mv__supplement-balloon {
  animation: fadeIn 3s linear forwards;
  visibility: visible; }

.mv__title.is-bounce {
  animation: bounceAndScale 0.23s linear forwards;
  animation-delay: 0.5s; }

.mv__supplement-balloon {
  transform-origin: 50% 100%; }

.thumb-animation.is-rotate {
  opacity: 1;
  animation: knock 0.3s linear 2;
  animation-timing-function: steps(1, end);
  animation-delay: 0.25s; }

/* slideInFromRight ... title
--------------- */
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100%); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

/* above fadeIn animation
--------------- */
.animation-above-fade-in {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 0.5s cubic-bezier(0.5, 0, 0, 1);
  transform: translateY(-100px); }
  .animation-above-fade-in.is-animated {
    opacity: 1;
    transform: translateY(0); }

/* .button-contents
--------------- */
.button-contents__heading-02.is-animated img, .notice__thumb.is-animated img {
  opacity: 1;
  animation: knock 0.3s linear 2;
  animation-timing-function: steps(1, end);
  animation-delay: 0.25s;
  animation-iteration-delay: 0.07s; }

.notice__anochan.is-animated img, .campaign__heading-text.is-animated img, .campaign__content-text-kinken.is-animated img {
  animation: bounceAndScale 0.6s linear 1; }

/* above bgFadeOut animation
--------------- */
@keyframes bgRotateLeft {
  0% {
    transform: rotate(0) translate(0, 0); }
  50% {
    transform: rotate(90deg) translate(10%, 20%); }
  100% {
    transform: rotate(0) translate(0, 0); } }

@keyframes bgRotateRight {
  0% {
    transform: rotate(0) translate(0, 0); }
  50% {
    transform: rotate(-90deg) translate(-10%, 15%); }
  100% {
    transform: rotate(0) translate(0, 0); } }

.mv.is-animated::before {
  animation: bgRotateLeft 2s linear infinite; }

.mv.is-animated::after {
  animation: bgRotateRight 2s linear infinite; }

.text-uppercase {
  text-transform: uppercase; }

@media screen and (max-width: 767px) {
  .sp-block {
    display: none !important; } }

@media screen and (min-width: 768px) {
  .pc-block {
    display: none !important; } }

#contents-wrap {
  padding: 20px 0 0px 0;
  background-image: none; }

.layout {
  padding-inline: calc(32.5 / 375 * 100%); }
  @media screen and (min-width: 768px) {
    .layout {
      padding-inline: 30px; } }

.contents-layout {
  padding-inline: calc(50 / 375 * 100%); }
  @media screen and (min-width: 768px) {
    .contents-layout {
      padding-inline: 30px; } }

.color-red {
  color: #e83829; }

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

@forward 'sass:math' as math-*;
body {
  margin: 0;
  color: #161c60; }
  @media screen and (min-width: 768px) {
    body {
      min-width: 960px; } }

.main {
  font-family: "Noto Sans CJK JP", "Noto Sans", "Noto Sans JP Subset", sans-serif;
  background-color: #161c60; }

main {
  position: relative;
  overflow: hidden; }
  main img {
    max-width: 100%;
    height: auto; }

#title-area-detailpage {
  position: absolute;
  top: -10px;
  width: 100%;
  height: 96px;
  padding-top: 15px;
  background: url("/common/images/title-area-pc-bg-01.gif") top left repeat;
  border-top: 1px solid #cfcfcf;
  border-bottom: 3px solid #bab6af;
  border-bottom: 3px solid #171c60; }

#title-area-inner {
  position: relative;
  width: 960px;
  margin: 0 auto; }

#title-area-detailpage h1 {
  float: left;
  height: 30px;
  padding: 15px 0 0px 10px;
  margin: 15px 0 0 0;
  font-size: 32px;
  border-left: 5px solid #171c60; }

@media screen and (max-width: 568px) {
  #detail-page {
    top: 6px !important; }
  #title-area-inner,
  #title-area-detailpage {
    position: static;
    width: 100%; }
  #title-area-detailpage {
    top: auto;
    height: auto;
    /*for IE7,8*/
    padding: 16px 0 32px;
    background: url("/common/images/title-area-pc-bg-01.gif") repeat scroll left top transparent 9;
    -webkit-background-size: 3px 3px;
    background-size: 3px 3px; }
  #title-area-detailpage h1 {
    float: none;
    height: 22px;
    min-height: auto;
    padding: 4px 0 0 5px;
    margin: 0 0 0 5px;
    font-size: 16px;
    border-left: 3px solid #171c60; }
  #title-area-detailpage h1 img {
    width: auto;
    height: 16px;
    vertical-align: center; } }

#contents-wrap {
  padding-top: 0 !important;
  background: none; }

/** -------------------------------------------------
 * パンくず
 ---------------------------------------------------- **/
#bread-clumb li {
  display: inline;
  font-size: 12px;
  color: #666; }

#bread-clumb li a {
  color: #035d8a;
  text-decoration: none; }

#bread-clumb li a:hover {
  text-decoration: underline; }

#bread-clumb #home {
  padding-left: 12px;
  background: url("/common/images/bread-clumb-home-bg-01.png") left 1px no-repeat; }

@media screen and (max-width: 568px) {
  #bread-clumb {
    margin: 0 0 4px 5px; }
  #bread-clumb li {
    padding: 4px 0 0 5px;
    font-size: 10px; }
  #bread-clumb #home {
    padding-left: 0;
    background: none; }
  #title-area-inner {
    width: 100%; } }

.close-layout {
  background: #424040; }
  .close-layout .close-layout__image {
    margin: 0 auto; }
    @media screen and (max-width: 767px) {
      .close-layout .close-layout__image {
        width: calc(518 / 750 * 100%);
        padding: calc(28 / 375 * 100%) 0; } }
    @media screen and (min-width: 768px) {
      .close-layout .close-layout__image {
        width: 810px;
        padding: 50px 0; } }

.mv {
  position: relative;
  width: 100%;
  aspect-ratio: 750/705;
  background: url("/cp/ultra202601/images/bg-mv_sp.png") center/cover no-repeat;
  background-color: #f93b2f; }
  @media screen and (min-width: 768px) {
    .mv {
      aspect-ratio: 1920/700;
      background: url("/cp/ultra202601/images/bg-mv_pc.png") center/cover no-repeat; } }
  .mv::before, .mv::after {
    content: "";
    width: 120%;
    height: 75%;
    position: absolute;
    top: 18%; }
    @media screen and (min-width: 768px) {
      .mv::before, .mv::after {
        width: 100%;
        height: 140%;
        top: -50%; } }
  .mv::before {
    background: url("/cp/ultra202601/images/spotlight01_sp.png") center/cover no-repeat;
    left: -25%;
    transform-origin: 100% 100%;
    transform: rotate(90deg) translate(0, -100%); }
    @media screen and (min-width: 768px) {
      .mv::before {
        background: url("/cp/ultra202601/images/spotlight01_pc.png") center/cover no-repeat; } }
  .mv::after {
    background: url("/cp/ultra202601/images/spotlight02_sp.png") center/cover no-repeat;
    right: -25%;
    transform-origin: 0 100%; }
    @media screen and (min-width: 768px) {
      .mv::after {
        background: url("/cp/ultra202601/images/spotlight02_pc.png") center/cover no-repeat; } }
  .mv__inner {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .mv__title {
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(354 / 375 * 100%);
    margin-top: calc(18 / 375 * 100%);
    transform: translateX(-50%); }
    @media screen and (min-width: 768px) {
      .mv__title {
        left: 50%;
        width: calc(776 / 1920 * 100%);
        margin-top: calc(30 / 1920 * 100%); } }
  .mv__title-icon-wrapper {
    position: relative;
    top: -5vw;
    left: 57%;
    width: calc(233 / 375 * 100%);
    transform: translateX(-50%); }
    @media screen and (min-width: 768px) {
      .mv__title-icon-wrapper {
        top: -1.5vw;
        left: 60%;
        width: calc(1080 / 1920 * 100%); } }
  .mv__banner {
    position: relative;
    background-color: #e73828;
    text-align: center;
    line-height: 0;
    z-index: 1; }
    .mv__banner--top {
      padding: calc(13 / 375 * 100%) calc(18 / 375 * 100%); }
      @media screen and (min-width: 768px) {
        .mv__banner--top {
          padding: calc(21 / 1224 * 100%) 0; } }
    .mv__banner-inner {
      position: relative;
      width: 100%;
      left: 50%;
      transform: translateX(-50%); }
      @media screen and (min-width: 768px) {
        .mv__banner-inner {
          width: calc(960 / 1224 * 100%);
          max-width: 960px; } }
    .mv__banner-text {
      width: calc(255 / 375 * 100%);
      padding: calc(5 / 375 * 100%) 0;
      margin: 0 auto;
      position: relative; }
      @media screen and (min-width: 768px) {
        .mv__banner-text {
          width: calc(1163 / 1224 * 100%);
          max-width: 1163px;
          padding: calc(13 / 1224 * 100%) 0; } }
      .mv__banner-text::before {
        content: "";
        display: inline-block;
        width: calc(75 / 375 * 100%);
        aspect-ratio: 102/97;
        background: url("/cp/ultra202601/images/mv-banner02_sp.png") center/cover no-repeat;
        position: absolute;
        top: -0.4vw;
        left: calc(78 / 375 * -100%); }
        @media screen and (min-width: 768px) {
          .mv__banner-text::before {
            width: calc(150 / 1224 * 100%);
            aspect-ratio: 113/117;
            background: url("/cp/ultra202601/images/mv-banner02_pc.png") center/cover no-repeat;
            top: -0.2vw;
            left: calc(142 / 1224 * -100%); } }
      .mv__banner-text::after {
        content: "";
        display: inline-block;
        width: calc(74 / 375 * 100%);
        aspect-ratio: 104/112;
        background: url("/cp/ultra202601/images/mv-banner04.png") center/cover no-repeat;
        position: absolute;
        top: -1.5vw;
        right: calc(80 / 375 * -100%); }
        @media screen and (min-width: 768px) {
          .mv__banner-text::after {
            width: calc(185 / 1224 * 100%);
            aspect-ratio: 143/154;
            top: -1.5vw;
            right: calc(184 / 1224 * -100%); } }
  .mv__campaign-period {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: calc(838 / 750 * 100vw); }
    @media screen and (min-width: 768px) {
      .mv__campaign-period {
        left: calc(112 / 1224 * 100%);
        width: calc(563 / 1224 * 100%);
        margin-top: calc(398 / 1224 * 100%); } }
  .mv__campaign-period-01 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0; }
    @media screen and (min-width: 768px) {
      .mv__campaign-period-01 {
        position: absolute;
        margin-top: calc(77 / 563 * 100%); } }
  .mv__campaign-period-02 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: calc(27 / 340 * -100%);
    line-height: 0; }
    @media screen and (min-width: 768px) {
      .mv__campaign-period-02 {
        position: absolute;
        margin-top: 0; } }
  .mv__campaign-app-note {
    font-size: 1.73333vw;
    text-align: center;
    font-weight: 700;
    line-height: 2; }
  .mv__mv-link {
    position: relative;
    margin-inline: auto; }
    @media screen and (min-width: 768px) {
      .mv__mv-link {
        left: calc(7 / 563 * 100%);
        margin-top: calc(170 / 563 * 100%); } }
  .mv__lead {
    position: absolute;
    top: calc(487 / 750 * 100vw);
    left: calc(18 / 750 * 100vw);
    width: calc(83 / 750 * 100vw); }
    @media screen and (min-width: 768px) {
      .mv__lead {
        top: 7.1875vw;
        right: -1.30208vw;
        left: unset;
        width: 2.23958vw; } }
  .mv__circle {
    position: absolute; }
    @media screen and (max-width: 767px) {
      .mv__circle {
        top: calc(1151 / 750 * 100vw);
        left: calc(514 / 750 * 100%);
        width: calc(281 / 750 * 100%); } }
    @media screen and (min-width: 768px) {
      .mv__circle {
        right: -7.08333vw;
        bottom: -3.125vw;
        width: 15.88542vw; } }
    .mv__circle-img {
      transform: scale(0);
      transform-origin: 50% 50%;
      transition: 1s 1s; }
      .mv__circle-img.is-animated {
        transform: scale(100%); }

.mv-link {
  width: calc(260 / 375 * 100%);
  text-align: center; }
  @media screen and (min-width: 768px) {
    .mv-link {
      width: calc(373 / 563 * 100%); } }
  .mv-link__button {
    position: relative;
    display: inline-block;
    transition: 0.5s; }
    @media screen and (min-width: 768px) {
      .mv-link__button {
        width: 100%; } }
    @media screen and (min-width: 768px) {
      .mv-link__button:hover {
        transform: scale(1.05, 1.05); } }

/* confetti
--------------- */
.confetti {
  overflow: hidden; }
  .confetti canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; }

@forward 'sass:math' as math-*;
.page-link {
  position: relative;
  line-height: 0;
  text-align: center;
  background-color: #171c61;
  z-index: 1; }
  @media screen and (max-width: 767px) {
    .page-link {
      padding: 10.66667vw 0 10vw; } }
  @media screen and (min-width: 768px) {
    .page-link {
      padding-block: 70px;
      padding-inline: 30px; } }
  @media screen and (max-width: 767px) {
    .page-link__anchor {
      padding-inline: 25px; } }

.anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .anchor__link {
    position: relative;
    display: inline-block;
    transition: 0.5s; }
    @media screen and (max-width: 767px) {
      .anchor__link {
        width: calc(244 / 310 * 100%); } }
    .anchor__link img {
      display: block; }
    .anchor__link::before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      content: '';
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      opacity: 0;
      transition: opacity 0.3s ease; }
    @media screen and (min-width: 768px) {
      .anchor__link:hover {
        transform: scale(1.05, 1.05); } }
  .anchor__button-group {
    margin-bottom: calc(10 / 310 * 100%); }
    @media screen and (min-width: 768px) {
      .anchor__button-group {
        margin-bottom: 27px; } }
  .anchor__note {
    margin-top: calc(10 / 375 * 100%);
    font-size: 1.8vw;
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 1.8;
    color: #fff;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .anchor__note {
        display: none; } }

@forward 'sass:math' as math-*;
.campaign {
  position: relative;
  padding-block: calc(49 / 375 * 100%) calc(50 / 375 * 100%);
  padding-inline: calc(25.5 / 375 * 100%);
  background: url(/cp/ultra202601/images/bg-cp_sp.png) center 0 repeat;
  background-size: cover;
  z-index: 1; }
  @media screen and (min-width: 768px) {
    .campaign {
      padding-block: 90px 119px;
      padding-inline: 30px;
      background: url(/cp/ultra202601/images/bg-cp_pc.png) center 0 repeat;
      background-size: cover; } }
  @media screen and (min-width: 768px) {
    .campaign__inner {
      max-width: 1200px;
      margin-inline: auto; } }
  .campaign__header {
    text-align: center; }
  .campaign__heading {
    display: flex;
    align-items: center;
    justify-content: center; }
    @media screen and (min-width: 768px) {
      .campaign__heading {
        margin-top: 13px; } }
  .campaign__heading-text {
    display: block; }
    @media screen and (min-width: 768px) {
      .campaign__heading-text--01 {
        width: 592px; } }
    @media screen and (min-width: 768px) {
      .campaign__heading-text--02 {
        width: 457px; } }
  .campaign__sub-lead {
    font-size: 2.4vw;
    font-weight: bold;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: #171c61; }
    @media screen and (min-width: 768px) {
      .campaign__sub-lead {
        font-size: 14px;
        margin-top: 5px; } }
  .campaign__flag {
    width: calc(120 / 310 * 100%);
    margin: calc(25 / 310 * 100%) auto calc(10 / 310 * 100%); }
    @media screen and (min-width: 768px) {
      .campaign__flag {
        width: 264px;
        margin: 76px auto 0; } }
  .campaign__content-text {
    position: relative;
    left: 1%; }
    @media screen and (min-width: 768px) {
      .campaign__content-text {
        width: 1054px;
        margin: 40px auto 0; } }
    .campaign__content-text-kinken {
      width: calc(110 / 310 * 100%);
      position: absolute;
      top: 30%;
      left: 0; }
      @media screen and (min-width: 768px) {
        .campaign__content-text-kinken {
          top: 93px; } }
  .campaign__wining-number {
    text-align: center;
    margin-top: calc(35 / 310 * 100%); }
    @media screen and (min-width: 768px) {
      .campaign__wining-number {
        max-width: 850px;
        margin-inline: auto;
        margin-top: 76px; } }
    .campaign__wining-number-heading {
      width: calc(245 / 310 * 100%);
      margin: 0 auto calc(5 / 310 * 100%); }
      @media screen and (min-width: 768px) {
        .campaign__wining-number-heading {
          width: 100%;
          margin: 0 0 14px; } }
  .campaign__wining-number-schedule {
    width: calc(295 / 310 * 100%); }
    @media screen and (min-width: 768px) {
      .campaign__wining-number-schedule {
        width: 755px; } }

.cash-voucher-wrapper {
  padding: calc(30 / 310 * 100%) calc(15 / 310 * 100%) calc(30 / 310 * 100%);
  margin-top: 5px;
  background-color: #e63828;
  position: relative; }
  @media screen and (min-width: 768px) {
    .cash-voucher-wrapper {
      max-width: 1100px;
      padding: 76px 0 81px;
      margin: 70px auto 0; } }
  .cash-voucher-wrapper::before {
    content: "";
    position: absolute;
    width: 100.5%;
    height: 100.3%;
    top: 0.05%;
    left: 0.5%;
    background-color: #fff334;
    border-right: 5px solid #171c61;
    border-bottom: 5px solid #171c61;
    z-index: -1; }
    @media screen and (min-width: 768px) {
      .cash-voucher-wrapper::before {
        top: -5px;
        left: -5px;
        width: calc(100% + 15px);
        height: calc(100% + 15px); } }

.cash-voucher {
  text-align: center; }
  @media screen and (min-width: 768px) {
    .cash-voucher {
      max-width: 750px;
      margin-inline: auto; } }
  .cash-voucher__title {
    width: calc(63 / 310 * 100%);
    margin: 0 auto; }
    @media screen and (min-width: 768px) {
      .cash-voucher__title {
        width: 133px; } }
  .cash-voucher__heading {
    margin-inline: auto; }
    @media screen and (max-width: 767px) {
      .cash-voucher__heading {
        width: calc(106.5 / 310 * 100%); } }
    @media screen and (min-width: 768px) {
      .cash-voucher__heading {
        width: 229px; } }
  .cash-voucher__lead {
    margin-inline: auto; }
    @media screen and (max-width: 767px) {
      .cash-voucher__lead {
        width: calc(189 / 310 * 100%);
        margin-top: calc(12 / 310 * 100%); } }
    @media screen and (min-width: 768px) {
      .cash-voucher__lead {
        width: 466px;
        margin-top: 29px; } }
  .cash-voucher__prize {
    margin-top: calc(15 / 310 * 100%); }
    @media screen and (min-width: 768px) {
      .cash-voucher__prize {
        margin-top: 65px; } }
  .cash-voucher__annotation {
    margin-inline: auto;
    padding-inline: calc(7 / 310 * 100%);
    font-weight: bold;
    line-height: 1.4;
    color: #fff;
    text-align: left; }
    @media screen and (max-width: 767px) {
      .cash-voucher__annotation {
        margin-top: calc(8.5 / 310 * 100%);
        font-size: calc(8 / 375 * 100vw); } }
    @media screen and (min-width: 768px) {
      .cash-voucher__annotation {
        max-width: 750px;
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.57; } }
  .cash-voucher__prepaid-card {
    margin-top: calc(31 / 310 * 100%); }
    @media screen and (max-width: 767px) {
      .cash-voucher__prepaid-card {
        padding-inline: calc(13.5 / 310 * 100%);
        margin-inline: auto; } }
    @media screen and (min-width: 768px) {
      .cash-voucher__prepaid-card {
        margin-top: 45px; } }
  @media screen and (max-width: 767px) {
    .cash-voucher__note {
      margin-top: calc(17 / 310 * 100%);
      padding-inline: calc(6.5 / 310 * 100%); } }
  @media screen and (min-width: 768px) {
    .cash-voucher__note {
      margin-top: 41px; } }
  .cash-voucher__note-text {
    text-align: left;
    font-size: calc(8 / 375 * 100vw);
    font-weight: 700;
    color: #fff;
    line-height: 1.5; }
    @media screen and (min-width: 768px) {
      .cash-voucher__note-text {
        font-size: 14px; } }

.cash-voucher-prize {
  text-align: right; }
  .cash-voucher-prize__item {
    width: 100%;
    margin-inline: auto 0; }
    .cash-voucher-prize__item + .cash-voucher-prize__item {
      margin-top: calc(25 / 310 * 100%); }
      @media screen and (min-width: 768px) {
        .cash-voucher-prize__item + .cash-voucher-prize__item {
          margin-top: 64px; } }
  @media screen and (max-width: 767px) {
    .cash-voucher-prize__prize {
      width: calc(65 / 305 * 100%);
      margin-inline: auto; } }
  .cash-voucher-prize__count {
    position: absolute;
    top: 10px;
    left: 56px; }
    @media screen and (max-width: 767px) {
      .cash-voucher-prize__count {
        width: calc(47 / 305 * 100%);
        margin-inline: auto; } }
    @media screen and (min-width: 768px) {
      .cash-voucher-prize__count {
        top: 30px;
        left: 137px; } }
  .cash-voucher-prize__box {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end; }
    @media screen and (min-width: 768px) {
      .cash-voucher-prize__box {
        width: 382px; } }
  @media screen and (max-width: 767px) {
    .cash-voucher-prize__price {
      width: calc(177 / 240 * 100%); } }
  @media screen and (max-width: 767px) {
    .cash-voucher-prize__card {
      width: calc(173 / 240 * 100%);
      margin-top: -2px; } }
  @media screen and (min-width: 768px) {
    .cash-voucher-prize__card {
      margin-top: -8px; } }

.cash-voucher-prepaid-card {
  position: relative; }
  .cash-voucher-prepaid-card__link {
    position: absolute;
    bottom: calc(39 / 214 * 100%);
    left: 40%;
    display: inline-flex;
    align-items: center;
    font-size: 2.5vw;
    font-weight: bold;
    line-height: 1.25;
    color: #e50012;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-bottom: 2px solid #e50012;
    transition: 0.5s; }
    @media screen and (min-width: 768px) {
      .cash-voucher-prepaid-card__link {
        bottom: 49px;
        left: 45%;
        font-size: 14px;
        line-height: 1.5; } }
    .cash-voucher-prepaid-card__link::before {
      display: block;
      width: 5px;
      height: 5px;
      margin-right: 3px;
      clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
      content: '';
      background-color: #e50012; }
      @media screen and (min-width: 768px) {
        .cash-voucher-prepaid-card__link::before {
          width: 6px;
          height: 7px;
          margin-right: 8px; } }
    @media screen and (min-width: 768px) {
      .cash-voucher-prepaid-card__link:hover {
        border-color: transparent; } }

@forward 'sass:math' as math-*;
.entry-method-wrap {
  width: 100%; }

.entry-method {
  margin-inline: auto;
  text-align: center;
  padding-block: calc(60 / 375 * 100%);
  position: relative;
  background-color: #161c60; }
  @media screen and (min-width: 768px) {
    .entry-method {
      padding-block: 100px 146px; } }
  .entry-method__layout {
    margin-inline: auto; }
    @media screen and (min-width: 768px) {
      .entry-method__layout {
        max-width: 1260px; } }
  .entry-method__inner {
    position: relative;
    padding-inline: calc(32.5 / 375 * 100%); }
    @media screen and (max-width: 767px) {
      .entry-method__inner {
        margin-top: calc(27 / 310 * 100%); } }
    @media screen and (min-width: 768px) {
      .entry-method__inner {
        padding-inline: 30px;
        margin-top: 79px; } }
  .entry-method__heading {
    padding-inline: calc(32.5 / 375 * 100%);
    position: relative; }
    @media screen and (min-width: 768px) {
      .entry-method__heading {
        padding-inline: 30px; } }
  @media screen and (max-width: 767px) {
    .entry-method__heading-img {
      width: calc(127.5 / 310 * 100%);
      margin-inline: auto; } }
  .entry-method__heading-lead {
    text-align: center;
    margin-inline: auto; }
    @media screen and (max-width: 767px) {
      .entry-method__heading-lead {
        width: calc(165 / 310 * 100%);
        margin-top: calc(7 / 310 * 100%); } }
    @media screen and (min-width: 768px) {
      .entry-method__heading-lead {
        margin-top: 21px;
        width: 350px; } }
  @media screen and (max-width: 767px) {
    .entry-method__sub-heading {
      width: calc(275 / 310 * 100%);
      margin-inline: auto; } }
  .entry-method__button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: calc(17.5 / 310 * 100%);
    margin-top: calc(30 / 310 * 100%); }
    @media screen and (min-width: 768px) {
      .entry-method__button-container {
        margin-top: 70px; } }
  .entry-method__button {
    display: inline-block;
    width: calc(355 / 375 * 100%);
    transition: 0.5s;
    position: relative;
    z-index: 1; }
    @media screen and (min-width: 768px) {
      .entry-method__button {
        width: 371px; } }
    @media screen and (min-width: 768px) {
      .entry-method__button:hover {
        transform: scale(1.05, 1.05); } }
    .entry-method__button + .entry-method__sub-heading {
      margin-top: 47px; }
      @media screen and (min-width: 768px) {
        .entry-method__button + .entry-method__sub-heading {
          margin-top: 150px; } }
  .entry-method__button-group {
    margin-bottom: calc(22 / 310 * 100%); }
    @media screen and (min-width: 768px) {
      .entry-method__button-group {
        margin-bottom: 27px; } }
  .entry-method__note {
    margin-top: calc(8 / 375 * 100%);
    font-size: 1.7vw;
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 1.8;
    color: #fff;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .entry-method__note {
        display: none; } }
  .entry-method__step {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding-inline: 0;
    margin-top: 14px; }
    @media screen and (max-width: 767px) {
      .entry-method__step {
        row-gap: 57px; } }
    @media screen and (min-width: 768px) {
      .entry-method__step {
        grid-template-columns: repeat(3, 1fr);
        column-gap: calc(79 / 1200 * 100%);
        margin-top: 26px; } }
    @media screen and (min-width: 768px) {
      .entry-method__step--purchase-03 {
        column-gap: 0;
        grid-template-columns: repeat(auto-fit, minmax(300px, 550px)); } }
  .entry-method__app-note {
    color: #fff;
    font-size: 1.73333vw;
    text-align: center;
    font-weight: 700;
    line-height: 2; }

.entry-method-item {
  background-color: #fff;
  border-radius: 13px;
  display: grid;
  position: relative;
  justify-items: center;
  row-gap: 0;
  padding-inline: calc(17.5 / 310 * 100%);
  padding-top: calc(27.5 / 310 * 100%);
  padding-bottom: calc(22.5 / 310 * 100%); }
  @media screen and (min-width: 768px) {
    .entry-method-item {
      display: block;
      padding-inline: 24px;
      padding-top: 55px;
      padding-bottom: 36px;
      row-gap: 0;
      border-radius: 25px; } }
  .entry-method-item:not(:last-child)::after {
    content: '';
    display: block;
    width: 56px;
    height: 25px;
    background-color: #e73828;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    position: absolute;
    right: calc(-56 / 314 * 100%); }
    @media screen and (max-width: 767px) {
      .entry-method-item:not(:last-child)::after {
        left: 50%;
        transform: translate(-50%);
        bottom: -43px; } }
    @media screen and (min-width: 768px) {
      .entry-method-item:not(:last-child)::after {
        top: 50%;
        transform: translateY(-50%);
        clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
        width: 33px;
        height: 74px; } }
  .entry-method-item__step {
    width: 100%;
    background-color: #e73828;
    padding-block: calc(4 / 310 * 100%);
    padding-inline: calc(17.5 / 310 * 100%);
    border-radius: 13px 13px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box; }
    @media screen and (min-width: 768px) {
      .entry-method-item__step {
        padding-block: 13px;
        padding-inline: 24px;
        border-radius: 25px 25px 0 0;
        margin-top: -1px; } }
  @media screen and (max-width: 767px) {
    .entry-method-item__step-image {
      width: calc(56 / 245 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item__heading {
      margin-top: calc(14 / 245 * 100%); } }
  @media screen and (min-width: 768px) {
    .entry-method-item__heading {
      margin-top: 16px; } }
  @media screen and (max-width: 767px) {
    .entry-method-item__heading img {
      width: 100%; } }
  .entry-method-item__heading--nest {
    margin-top: 0;
    margin-inline: auto; }
  .entry-method-item__text {
    text-align: left;
    font-size: calc(8 / 375 * 100vw);
    line-height: 1.6;
    font-weight: bold;
    margin-top: calc(15 / 275 * 100%);
    padding: 0 calc(20 / 275 * 100%); }
    @media screen and (min-width: 768px) {
      .entry-method-item__text {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 20px;
        padding: 0; } }
  .entry-method-item__image--nest {
    margin-top: 5px; }
    @media screen and (min-width: 768px) {
      .entry-method-item__image--nest {
        margin-top: 3px; } }
  .entry-method-item__nest-block {
    margin-top: 28px; }
    @media screen and (min-width: 768px) {
      .entry-method-item__nest-block {
        margin-top: 15px; } }
  .entry-method-item__illust {
    margin-top: calc(14.5 / 275 * 100%); }
    @media screen and (min-width: 768px) {
      .entry-method-item__illust {
        margin-top: 26px; } }
    @media screen and (max-width: 767px) {
      .entry-method-item__illust img {
        width: 100%; } }
  .entry-method-item__nest-illust {
    margin-inline: auto; }
    @media screen and (max-width: 767px) {
      .entry-method-item__nest-illust img {
        width: 100%; } }
  @media screen and (max-width: 767px) {
    .entry-method-item--shop-front-01 .entry-method-item__illust {
      width: calc(174.5 / 275 * 100%);
      margin-top: calc(24.5 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--shop-front-01 .entry-method-item__heading {
      width: calc(267.5 / 275 * 100%);
      margin-top: calc(10 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--shop-front-01 .entry-method-item__text {
      margin-top: calc(5 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--shop-front-02 .entry-method-item__illust {
      width: calc(222 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--shop-front-02 .entry-method-item__heading {
      width: calc(196 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--shop-front-02 .entry-method-item__text {
      margin-top: calc(5 / 275 * 100%); } }
  @media screen and (min-width: 768px) {
    .entry-method-item--shop-front-02.is-animated {
      transition-delay: 0.1s; } }
  @media screen and (max-width: 767px) {
    .entry-method-item--shop-front-03 .entry-method-item__illust {
      width: calc(175 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--shop-front-03 .entry-method-item__heading {
      width: calc(186.5 / 275 * 100%);
      margin-top: 0; } }
  @media screen and (max-width: 767px) {
    .entry-method-item--shop-front-03 .entry-method-item__text {
      margin-top: 0; } }
  @media screen and (min-width: 768px) {
    .entry-method-item--shop-front-03.is-animated {
      transition-delay: 0.2s; } }

@forward 'sass:math' as math-*;
.target-product {
  background-color: #fff334; }

.product {
  padding-block: calc(45 / 375 * 100%) calc(50 / 375 * 100%);
  padding-inline: calc(16 / 375 * 100%);
  max-width: 1200px;
  margin-inline: auto;
  box-sizing: border-box; }
  @media screen and (min-width: 768px) {
    .product {
      padding-block: 141px 91px;
      padding-inline: 60px; } }
  .product__heading {
    width: 100%;
    text-align: center;
    margin-inline: auto; }
    @media screen and (max-width: 767px) {
      .product__heading {
        width: calc(270 / 310 * 100%); } }
    @media screen and (min-width: 768px) {
      .product__heading {
        width: 625px; } }
  .product__lead {
    text-align: center;
    margin-inline: auto; }
    @media screen and (max-width: 767px) {
      .product__lead {
        width: calc(240 / 310 * 100%);
        margin-top: calc(23 / 310 * 100%); } }
    @media screen and (min-width: 768px) {
      .product__lead {
        width: 642px;
        margin-top: 22px; } }
  .product__list {
    margin-top: calc(5 / 310 * 100%); }
    @media screen and (min-width: 768px) {
      .product__list {
        width: 943px;
        margin: 13px auto 0; } }
  .product__product-note {
    margin-top: calc(4 / 310 * 100%);
    padding-inline: calc(17.5 / 310 * 100%);
    text-align: center; }
    @media screen and (min-width: 768px) {
      .product__product-note {
        margin-top: 28px; } }
  @media screen and (min-width: 768px) {
    .product__product-note-heading {
      width: 550px;
      margin-inline: auto; } }
  .product__product-note-text {
    font-size: calc(7px + (1vw - 3.75px));
    font-weight: 700; }
    @media screen and (min-width: 768px) {
      .product__product-note-text {
        font-size: 14px; } }

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 0;
  list-style: none;
  line-height: 0; }
  @media screen and (min-width: 768px) {
    .product-list {
      gap: 10px 14px; } }
  .product-list__item {
    flex: 0 1 calc((100% / 2) - (10px * 1 / 2)); }
    @media screen and (min-width: 768px) {
      .product-list__item {
        flex: 0 1 calc((100% / 3) - (14px * 2 / 3)); } }
  .product-list__link {
    cursor: pointer; }
  .product-list__link:hover {
    filter: brightness(1.5); }
  .product-list__link--pointer-none {
    pointer-events: none; }

/* .product-modal
--------------- */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden auto;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.3s; }

.has-product-modal .product-modal {
  visibility: visible;
  opacity: 1; }

.product-modal-container {
  position: relative;
  width: 500px;
  max-width: 90%;
  margin: auto; }
  @media screen and (min-width: 768px) {
    .product-modal-container {
      width: 480px;
      height: 573px;
      margin: auto; } }

.product-modal-close {
  position: absolute;
  top: 39px;
  right: 36px;
  z-index: 10;
  width: 8%;
  max-width: 60px;
  height: 11%;
  max-height: 60px;
  cursor: pointer; }
  @media screen and (min-width: 768px) {
    .product-modal-close {
      top: 12px;
      right: 14px;
      width: 11%; } }

.product-modal-content {
  position: relative;
  height: 0;
  padding-bottom: 120%; }

.product-modal-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  max-width: 500px;
  opacity: 0;
  transform: translate(-50%, -50%); }
  @media screen and (min-width: 768px) {
    .product-modal-item {
      width: 100%;
      max-width: 560px; } }
  .product-modal-item.is-active {
    opacity: 1; }

.is-disabled {
  pointer-events: none;
  cursor: default; }

@forward 'sass:math' as math-*;
.movie {
  padding-block: calc(80 / 750 * 100%);
  position: relative;
  background: url(/cp/ultra202601/images/bg-movie_sp.png) center 0 repeat;
  background-size: contain; }
  @media screen and (min-width: 768px) {
    .movie {
      padding-block: 80px 93px;
      background-image: url(/cp/ultra202601/images/bg-movie_pc.png);
      background-size: cover; } }
  .movie__title {
    padding-bottom: calc(50 / 375 * 100%);
    text-align: center; }
    @media screen and (max-width: 768px) {
      .movie__title {
        width: calc(260 / 375 * 100%);
        margin-inline: auto; } }
    @media screen and (min-width: 768px) {
      .movie__title {
        padding-bottom: 60px; } }
  .movie__list {
    margin-top: 25px; }
    @media screen and (min-width: 768px) {
      .movie__list {
        margin-top: 86px; } }

.thumbnail {
  position: relative;
  display: block; }

.thumbnail-dot {
  position: absolute;
  top: 50%; }
  .thumbnail-dot--1 {
    top: 40%; }
    @media screen and (max-width: 768px) {
      .thumbnail-dot--1 {
        right: 0;
        transform: translate(46%, 0); } }
    @media screen and (min-width: 768px) {
      .thumbnail-dot--1 {
        top: 60px;
        left: 0;
        transform: translate(-50%, 0); } }
    .thumbnail-dot--1 img {
      width: 17.06667vw; }
      @media screen and (min-width: 768px) {
        .thumbnail-dot--1 img {
          width: auto; } }
  .thumbnail-dot--2 {
    top: 37%;
    left: 0;
    transform: translate(-5%, 0); }
    @media screen and (min-width: 768px) {
      .thumbnail-dot--2 {
        top: 120px;
        left: -3px;
        transform: none; } }
    .thumbnail-dot--2 img {
      width: 17.06667vw; }
      @media screen and (min-width: 768px) {
        .thumbnail-dot--2 img {
          width: auto; } }
  .thumbnail-dot--3 {
    top: 50%;
    right: 0;
    transform: translate(46%, 0); }
    @media screen and (min-width: 768px) {
      .thumbnail-dot--3 {
        top: auto;
        right: 0;
        bottom: 30px;
        transform: translate(50%, 0); } }
    .thumbnail-dot--3 img {
      width: 22vw; }
      @media screen and (min-width: 768px) {
        .thumbnail-dot--3 img {
          width: auto; } }
  .thumbnail-dot--4 {
    top: 65%;
    left: 0;
    transform: translate(-50%, 0); }
    @media screen and (min-width: 768px) {
      .thumbnail-dot--4 {
        top: auto;
        bottom: 30px;
        left: 0;
        transform: translate(-50%, 0); } }
    .thumbnail-dot--4 img {
      width: 17.06667vw; }
      @media screen and (min-width: 768px) {
        .thumbnail-dot--4 img {
          width: auto; } }
  .thumbnail-dot--5 {
    top: 37%;
    right: 0;
    transform: translate(5%, 0); }
    @media screen and (min-width: 768px) {
      .thumbnail-dot--5 {
        top: 70px;
        right: -3px;
        transform: none; } }
    .thumbnail-dot--5 img {
      width: 22vw; }
      @media screen and (min-width: 768px) {
        .thumbnail-dot--5 img {
          width: auto; } }
  .thumbnail-dot--6 {
    top: 40%; }
    @media screen and (max-width: 768px) {
      .thumbnail-dot--6 {
        transform: translate(-46%, 0);
        left: 0; } }
    @media screen and (min-width: 768px) {
      .thumbnail-dot--6 {
        top: 125px;
        right: -44px;
        transform: none; } }
    .thumbnail-dot--6 img {
      width: 17.06667vw; }
      @media screen and (min-width: 768px) {
        .thumbnail-dot--6 img {
          width: auto; } }
  .thumbnail-dot--7 {
    top: 64%;
    right: 0;
    transform: translate(50%, 0); }
    @media screen and (min-width: 768px) {
      .thumbnail-dot--7 {
        top: 125px; } }
    .thumbnail-dot--7 img {
      width: 22vw; }
      @media screen and (min-width: 768px) {
        .thumbnail-dot--7 img {
          width: auto; } }
  .thumbnail-dot--8 {
    top: 40%;
    left: 0;
    transform: translate(-50%, 0); }
    @media screen and (min-width: 768px) {
      .thumbnail-dot--8 {
        top: 143px;
        right: -40px;
        left: auto;
        transform: none; } }
    .thumbnail-dot--8 img {
      width: 17.06667vw; }
      @media screen and (min-width: 768px) {
        .thumbnail-dot--8 img {
          width: auto; } }

.youtube {
  pointer-events: none;
  opacity: 0; }
  .youtube.is-active {
    pointer-events: visible;
    opacity: 1; }

.youtube-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4vw;
  margin: 0; }
  @media screen and (min-width: 768px) {
    .youtube-lists {
      max-width: 945px;
      margin: 0 auto;
      gap: 35px; } }
  .youtube-lists__item {
    width: 72%;
    max-width: 380px;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.72s cubic-bezier(0.16, 0.05, 0, 1);
    transform: scale(0.95) translate3d(0, 1em, 0); }
    @media screen and (min-width: 768px) {
      .youtube-lists__item {
        padding: 0;
        width: 291px; } }
    .youtube-lists__item.is-animated {
      opacity: 1;
      transform: scale(1) translateZ(0); }
    .youtube-lists__item button {
      background-color: transparent;
      border: none;
      cursor: pointer;
      outline: none;
      padding: 0;
      appearance: none; }

/* Modal
--------------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden auto;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.3s; }

.has-modal .modal {
  visibility: visible;
  opacity: 1; }

.modal-container {
  position: relative;
  width: 90%;
  margin: auto; }
  @media screen and (min-width: 768px) {
    .modal-container {
      width: 700px; } }

.modal-close {
  position: absolute;
  top: -35px;
  right: 0;
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer; }
  @media screen and (min-width: 768px) {
    .modal-close {
      top: -55px;
      width: 40px;
      height: 40px; } }

.modal-content {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden; }
  .modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

@forward 'sass:math' as math-*;
.terms-outer {
  position: relative;
  padding-block: calc(50 / 375 * 100%);
  background-color: #161c60; }
  @media screen and (min-width: 768px) {
    .terms-outer {
      padding-block: 52px 150px; } }

.terms {
  box-sizing: border-box;
  padding-block: calc(30 / 310 * 100%) calc(28 / 310 * 100%);
  padding-inline: calc(15 / 310 * 100%);
  text-align: center;
  background-color: #fff;
  border-radius: 13px; }
  @media screen and (min-width: 768px) {
    .terms {
      max-width: 811px;
      padding: 60px 68px 60px;
      margin-inline: auto;
      border-radius: 25px; } }
  .terms__heading {
    font-size: calc(15 / 375 * 100vw);
    font-weight: 600;
    color: #e73828; }
    @media screen and (min-width: 768px) {
      .terms__heading {
        font-size: 35px;
        line-height: 1.3; } }
  .terms__box {
    box-sizing: border-box;
    width: 100%;
    aspect-ratio: 500/223;
    padding: 0 7px 0;
    margin-top: calc(20 / 280 * 100%);
    overflow-y: scroll; }
    @media screen and (min-width: 768px) {
      .terms__box {
        max-width: 656px;
        height: 207px;
        padding: 0 12px 0 24px;
        margin-inline: auto;
        margin-top: 52px; } }

.terms-content {
  font-size: calc(10 / 375 * 100vw);
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  letter-spacing: 0.04em; }
  @media screen and (min-width: 768px) {
    .terms-content {
      font-size: 17px;
      letter-spacing: 0.05em; } }
  @media screen and (min-width: 768px) {
    .terms-content__title {
      font-size: 19px; } }
  .terms-content__data + .terms-content__title {
    margin-top: 1.5em; }
    @media screen and (min-width: 768px) {
      .terms-content__data + .terms-content__title {
        margin-top: 1.5em; } }
  .terms-content__data > a {
    color: #161c60;
    transition: 0.5s; }
    @media screen and (min-width: 768px) {
      .terms-content__data > a:hover {
        text-decoration: transparent; } }

@forward 'sass:math' as math-*;
.button-contents {
  padding-block: calc(40 / 375 * 100%) calc(34 / 375 * 100%);
  text-align: center;
  background: url(/cp/ultra202601/images/bg_gold_03_sp.png) center/cover no-repeat; }
  @media screen and (min-width: 768px) {
    .button-contents {
      padding: 135px 0 106px;
      background: url(/cp/ultra202601/images/bg_gold_03_pc.png) center/cover no-repeat; } }
  .button-contents__heading {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 100%; }
  .button-contents__heading-01 {
    width: calc(105 / 275 * 100%); }
    @media screen and (min-width: 768px) {
      .button-contents__heading-01 {
        width: 210px; } }
  .button-contents__heading-02 {
    width: calc(155 / 275 * 100%); }
    @media screen and (min-width: 768px) {
      .button-contents__heading-02 {
        width: 335px; } }
  .button-contents__button {
    position: relative;
    display: inline-block;
    margin-inline: auto;
    margin-top: calc(22.5 / 275 * 100%);
    line-height: 0;
    vertical-align: bottom;
    transition: 0.5s; }
    @media screen and (min-width: 768px) {
      .button-contents__button {
        margin-top: 50px; } }
    @media screen and (min-width: 768px) {
      .button-contents__button:hover {
        transform: scale(1.05, 1.05); } }
  .button-contents__app-note {
    font-size: 1.73333vw;
    text-align: center;
    font-weight: 700;
    line-height: 2; }

@forward 'sass:math' as math-*;
footer {
  border-top: none; }
  footer #footer-inner {
    display: none; }

.footer {
  font-family: "Noto Sans CJK JP", "Noto Sans", "Noto Sans JP Subset", sans-serif;
  font-weight: 900;
  background-color: #161c60; }
  .footer__inner {
    padding-block: calc(62 / 375 * 100%) calc(41 / 375 * 100%);
    padding-inline: calc(50 / 375 * 100%);
    text-align: center; }
    @media screen and (min-width: 768px) {
      .footer__inner {
        max-width: 810px;
        padding-block: 81px 88px;
        padding-inline: 30px;
        margin: 0 auto; } }

.footer-contents__text {
  display: inline;
  font-size: 11px;
  font-size: calc(11px + (1vw - 3.75px));
  line-height: 1.45;
  color: #fff;
  letter-spacing: 0.12em; }
  @media screen and (min-width: 768px) {
    .footer-contents__text {
      font-size: 18px;
      letter-spacing: 0.085em; } }

.footer-contents__button {
  display: inline-block;
  transition: 0.5s; }
  @media screen and (min-width: 768px) {
    .footer-contents__button:hover {
      transform: scale(1.05, 1.05); } }

.footer-app {
  display: grid;
  grid-template-columns: calc(97 / 222 * 100%) 1fr;
  row-gap: 14px;
  row-gap: calc(15 / 275 * 100%);
  column-gap: 13px;
  align-items: center;
  margin-top: calc(19 / 275 * 100%); }
  @media screen and (max-width: 767px) {
    .footer-app {
      justify-items: center;
      width: calc(222 / 273 * 100%);
      margin-inline: auto; } }
  @media screen and (min-width: 768px) {
    .footer-app {
      display: grid;
      grid-template-columns: 180px 204px 270px;
      row-gap: 20px;
      column-gap: 28px;
      align-items: stretch;
      justify-content: center;
      padding: 0 23px;
      margin-top: 30px; } }
  @media screen and (min-width: 768px) {
    .footer-app__apple {
      pointer-events: none; } }
  @media screen and (max-width: 767px) {
    .footer-app__apple {
      grid-row: 2 / 2;
      grid-column: 1 / 2; } }
  @media screen and (min-width: 768px) {
    .footer-app__google {
      pointer-events: none; } }
  @media screen and (max-width: 767px) {
    .footer-app__google {
      grid-row: 2 / 2;
      grid-column: 2 / 3; } }
  .footer-app__code {
    grid-row: 1 / 1;
    grid-column: 1 / 3; }
    @media screen and (max-width: 767px) {
      .footer-app__code {
        width: calc(73 / 222 * 100%); } }
    @media screen and (min-width: 768px) {
      .footer-app__code {
        display: flex;
        grid-row: 1 / 3;
        grid-column: 3 / 4;
        align-items: center;
        justify-content: space-evenly;
        background-color: #e63828;
        border-radius: 13px; } }
  .footer-app__text-block {
    grid-row: 2 / 3;
    grid-column: 1 / 3; }

.footer-app-text-block {
  position: relative;
  display: flex;
  align-items: center; }
  .footer-app-text-block__supplement {
    font-weight: bold;
    color: #fff;
    text-align: left; }
    @media screen and (min-width: 768px) {
      .footer-app-text-block__supplement {
        font-size: 12px;
        line-height: 1.5;
        letter-spacing: 0.085em; } }
  @media screen and (min-width: 768px) {
    .footer-app-text-block__triangle {
      position: absolute;
      right: 0; } }

.footer-share {
  margin-block: calc(51 / 275 * 100%) 0; }
  @media screen and (min-width: 768px) {
    .footer-share {
      margin-top: 143px; } }
  .footer-share__heading {
    display: flex;
    align-items: center;
    justify-content: center; }
    .footer-share__heading > img {
      width: calc(178 / 273 * 100%); }
    .footer-share__heading::before, .footer-share__heading::after {
      display: block;
      width: 42px;
      height: 17px;
      content: '';
      background-repeat: no-repeat;
      background-size: contain; }
      @media screen and (min-width: 768px) {
        .footer-share__heading::before, .footer-share__heading::after {
          width: 83px;
          height: 31px; } }
    .footer-share__heading::before {
      margin-right: calc(6 / 273 * 100%);
      background-image: url("/cp/ultra202601/images/footer_icon_before.png"); }
      @media screen and (min-width: 768px) {
        .footer-share__heading::before {
          margin-right: 24px; } }
    .footer-share__heading::after {
      margin-left: 6px;
      background-image: url("/cp/ultra202601/images/footer_icon_after.png"); }
      @media screen and (min-width: 768px) {
        .footer-share__heading::after {
          margin-left: 24px; } }
  .footer-share__sns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block: calc(25 / 275 * 100%) 0;
    margin-inline: auto; }
    @media screen and (max-width: 767px) {
      .footer-share__sns {
        width: calc(149 / 273 * 100%); } }
    @media screen and (min-width: 768px) {
      .footer-share__sns {
        max-width: 266px;
        margin: 49px auto 0; } }

@media screen and (max-width: 767px) {
  .sns-link {
    width: calc(21 / 149 * 100%);
    height: calc(24 / 149 * 100%); } }

.footer-copyright {
  padding: 9px 0 29px;
  text-align: center;
  background-color: #fff334; }
  @media screen and (min-width: 768px) {
    .footer-copyright {
      padding: 30px 0 48px; } }
  .footer-copyright__text {
    font-size: 7px;
    font-size: calc(7px + (1vw - 3.75px));
    font-weight: bold;
    letter-spacing: 0.065em; }
    @media screen and (min-width: 768px) {
      .footer-copyright__text {
        font-size: 11px; } }

.sns-cp {
  padding-block: calc(100 / 750 * 100%);
  background-color: #e63828; }
  @media screen and (max-width: 767px) {
    .sns-cp {
      padding-inline: calc(65 / 750 * 100%); } }
  @media screen and (min-width: 768px) {
    .sns-cp {
      padding-block: 80px; } }
  .sns-cp__heading {
    width: calc(401 / 750 * 100%);
    margin: 0 auto; }
    @media screen and (min-width: 768px) {
      .sns-cp__heading {
        width: 354px; } }
  .sns-cp__content {
    width: 100%;
    margin: 0 auto;
    background-color: #171c61; }
    @media screen and (min-width: 768px) {
      .sns-cp__content {
        width: 949px; } }
  .sns-cp__button {
    width: 100%;
    margin-top: calc(42 / 750 * 100%);
    box-sizing: border-box;
    transition: 0.5s; }
    @media screen and (max-width: 767px) {
      .sns-cp__button {
        padding-inline: calc(51 / 750 * 100%); } }
    @media screen and (min-width: 768px) {
      .sns-cp__button {
        width: 371px;
        margin: 30px auto 0; } }
    @media screen and (min-width: 768px) {
      .sns-cp__button:hover {
        transform: scale(1.05, 1.05); } }

.notice__area01 {
  position: relative;
  padding-block: calc(115 / 750 * 100%) calc(81 / 750 * 100%);
  background-color: #ffee00;
  overflow: hidden;
  background: url(/cp/ultra202601/images/bg-notice01_sp.png) center 0 no-repeat;
  background-size: cover; }
  @media screen and (min-width: 768px) {
    .notice__area01 {
      padding-block: 145px 100px;
      background: url(/cp/ultra202601/images/bg-notice01_pc.png) center 0 no-repeat;
      background-size: cover; } }

.notice__area02 {
  padding-block: calc(91 / 750 * 100%) calc(86 / 750 * 100%);
  background-color: #e63828; }
  @media screen and (min-width: 768px) {
    .notice__area02 {
      padding-block: 99px; } }

.notice__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; }
  .notice__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.notice__heading-01 {
  position: relative;
  width: calc(373 / 750 * 100%);
  padding-left: calc(60 / 750 * 100%); }
  @media screen and (min-width: 768px) {
    .notice__heading-01 {
      width: 424px;
      margin: 0 auto;
      padding: 0 280px 0 0; } }

.notice__thumb {
  position: absolute;
  width: 65%;
  top: 35%;
  right: 0; }
  @media screen and (max-width: 767px) {
    .notice__thumb {
      transform: translate(95%, -50%); } }
  @media screen and (min-width: 768px) {
    .notice__thumb {
      width: 322px;
      top: 35%;
      right: -20px;
      transform: translateY(-50%); } }

.notice__button {
  display: block;
  width: calc(517 / 750 * 100%);
  margin: calc(12 / 750 * 100%) auto 0;
  transition: 0.5s;
  position: relative;
  z-index: 1; }
  @media screen and (min-width: 768px) {
    .notice__button {
      width: 371px;
      margin: 29px auto 0; } }
  .notice__button--online {
    margin: 0 auto; }
  @media screen and (min-width: 768px) {
    .notice__button:hover {
      transform: scale(1.05, 1.05); } }

.notice__note {
  margin-top: calc(10 / 750 * 100%);
  font-size: 1.7vw;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #fff;
  text-align: center;
  color: #171c61; }
  @media screen and (min-width: 768px) {
    .notice__note {
      display: none; } }

.notice__heading-02 {
  position: relative;
  width: calc(429 / 750 * 100%);
  margin: 0 auto; }
  @media screen and (min-width: 768px) {
    .notice__heading-02 {
      width: 417px; } }

.notice__anochan {
  position: absolute;
  width: calc(225 / 750 * 100%);
  bottom: 0;
  right: 0; }
  @media screen and (max-width: 767px) {
    .notice__anochan {
      transform: translateX(75%); } }
  @media screen and (min-width: 768px) {
    .notice__anochan {
      width: 126px;
      right: -105px;
      bottom: -4px; } }

.notice__pop {
  width: calc(520 / 750 * 100%);
  margin: calc(41 / 750 * 100%) auto 0; }
  @media screen and (min-width: 768px) {
    .notice__pop {
      width: 379px;
      margin: 45px auto 0; } }
