@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;500;600;700;800;900&display=swap");

/*
.mochiy-pop-p-one-regular {
  font-family: "Mochiy Pop P One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
*/

:root {
  --global--background--color: #fa84c1;
  --global--background-highlight--color: rgba(247, 244, 237, 0.5);
  --global--background--gradient--color: linear-gradient(0deg, rgba(106, 39, 162, 1), rgba(106, 39, 162, 0.6) 150px, rgba(129, 61, 146, 0) 400px);
  --global--color--orange: #eb8336;
  --global--color--red: #a52020;
  --global--color--green: #0bb413;
  --global--color--blue: #253ebc;
  --global--color--light-blue: #3c79e0;
  --global--color--vivid-pink: #b40b62;
  --global--color--pink: #fa84c1;
  --global--color--light-pink: #fcbbdb;
  --global--color--white: white;
  --global--color--dark-purple: #4d3e4e;
  --global--color--purple: #6a27a2;
  --global--color--gray: #8f8f8f;
  --global--font--noto-sans: "Noto Sans JP", sans-serif;
  --global--font--m-plus: "M PLUS Rounded 1c", sans-serif;
  --global--break-point: 750px;
  --font-decoration:"Kaisei Decol", serif;
}

body {
  font-weight: 400;
}

.bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-highlight {
  background-color: var(--global--background-highlight--color);
}

.bg-white {
  background-color: var(--global--color--white);
}

.bg-gradation {
  background: var(--global--background--gradient--color);
}

.content-float-1280.menu .menu-button-big-group {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-float-1280.menu .menu-button-group {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@keyframes loading-anim {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loading-icon::before {
  content: " ";
  margin: 0 auto;
  width: 70px;
  height: 70px;
  display: block;
  background: url(../img/loading.svg) no-repeat;
  background-size: cover;
  opacity: 0.5;
  animation: loading-anim 3s infinite linear 0s both;
}

.header-fixed-menu {
  box-sizing: border-box;
  position: fixed;
  z-index: 50;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--global--color--pink);
  transition: opacity ease 0.8s;
}
.header-fixed-menu.hidden {
  pointer-events: none;
  opacity: 0;
}
.header-fixed-menu .content-float-1280 {
  display: flex;
  margin-top: 10px;
}
.header-fixed-menu .content-float-1280 .logo img {
  width: 120px;
}
.header-fixed-menu .content-float-1280 .header-menu-container {
  position: relative;
  display: flex;
  flex-grow: 1;
}
.header-fixed-menu .content-float-1280 .header-menu-group-view {
  position: relative;
  flex-grow: 1;
  margin-left: 90px;
  margin-right: 30px;
  overflow-x: hidden;
}
@media screen and (max-width: 750px) {
  .header-fixed-menu .content-float-1280 .header-menu-group-view {
    overflow-x: scroll;
  }
}
.header-fixed-menu .content-float-1280 .header-menu-group-view .header-menu-group {
  position: relative;
  left: 0;
  padding: 10px 0;
  height: auto;
  flex-wrap: nowrap;
  justify-content: left;
  transition: left ease 0.8s;
}
.header-fixed-menu .content-float-1280 .header-menu-group-view .header-menu-group .header-menu-button {
  width: 140px;
}
.header-fixed-menu .content-float-1280 .header-menu-group-view .header-menu-group .header-menu-button .header-menu-button-icon {
  height: 40px;
}
.header-fixed-menu .content-float-1280 .button.side-button {
  position: absolute;
  z-index: 3;
  top: 10px;
}
.header-fixed-menu .content-float-1280 .button.side-button.left-button {
  left: 175px;
}
.header-fixed-menu .content-float-1280 .button.side-button.right-button {
  right: 0;
}
.header-fixed-menu .content-float-1280::before {
  content: " ";
  z-index: 2;
  position: absolute;
  top: -100px;
  right: 30px;
  bottom: -100px;
  left: 190px;
  box-shadow: inset 0 0 20px 30px var(--global--background--color);
  pointer-events: none;
}
.header-fixed-menu .content-float-1280::after {
  content: " ";
  position: absolute;
  top: -100px;
  right: 30px;
  bottom: -100px;
  left: 190px;
  box-shadow: inset 0 0 20px 30px var(--global--background--color);
  pointer-events: none;
}

/*
.content-root-1440.header-fixed-menu {
  box-sizing: border-box;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 80px;
  display: flex;
  background-color: var(--global--color--pink);
  opacity: 0;
  transition: opacity ease 0.8s;
  pointer-events: none;
  overflow: hidden;

  .logo {
    img {
      height: 120px;
    }
  }

  .header-menu-group-view {
    width: 1130px;
    .header-menu-group {
      padding: 10px 0 20px;
      height: auto;
      flex-wrap: nowrap;
      overflow-x: scroll;
    }
  }

  &.show {
    opacity: 100;
    pointer-events: auto;
  }
}
*/
.content-root-1440.footer-space {
  height: 100px;
}
@media screen and (max-width: 750px) {
  .content-root-1440.footer-space {
    height: 200px;
  }
}

.content-root-1440.footer {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  height: auto;
  width: 100%;
  background-color: var(--global--color--pink);
  font-family: var(--global--font--noto-sans);
  color: var(--global--color--dark-purple);
  overflow: visible;
}
.content-root-1440.footer .content-float-1280.menu {
  overflow: hidden;
  height: 0;
  transition: height ease 0.7s;
}
.content-root-1440.footer .content-float-1280.menu.open {
  height: 500px;
}
.content-root-1440.footer .content-float-1280.menu .store-search-button {
  box-sizing: border-box;
  width: 580px;
  height: 60px;
  margin: 50px auto;
  border-radius: 30px;
  padding-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--global--color--white);
  font-size: 24px;
  font-weight: 400;
}
.content-root-1440.footer .content-float-1280.menu .store-search-button img {
  width: 28px;
  height: 28px;
  margin-bottom: -5px;
}
.content-root-1440.footer .content-float-1280.menu .footer-menu-space {
  height: 60px;
}
.content-root-1440.footer .content-float-1280.footer {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  overflow: visible;
}
.content-root-1440.footer .content-float-1280.footer .button {
  box-sizing: border-box;
  width: 300px;
  height: 60px;
  border-radius: 10px;
  padding-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--global--color--white);
  color: var(--global--color--dark-purple);
  font-size: 24px;
  font-weight: 700;
  line-height: 0;
}
.content-root-1440.footer .content-float-1280.footer .button img {
  margin-bottom: -5px;
}
.content-root-1440.footer .content-float-1280.footer .button.menu-button {
  position: absolute;
  right: 0;
  bottom: 50px;
  width: 160px;
  height: 160px;
  border: 5px solid var(--global--color--light-pink);
  border-radius: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: var(--global--color--pink);
}
.content-root-1440.footer .content-float-1280.footer .button.menu-button .line {
  width: 60px;
  height: 5px;
  border-radius: 2px;
  background-color: var(--global--color--white);
}
.content-root-1440.footer .content-float-1280.footer .footer-time-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--global--color--white);
}
@media screen and (max-width: 750px) {
  .content-root-1440.footer .content-float-1280.menu.open {
    height: 700px;
  }
  .content-root-1440.footer .store-search-button {
    width: 420px;
  }
  .content-root-1440.footer .footer-menu-space {
    height: 30px;
  }
  .content-root-1440.footer .content-float-1280.footer {
    height: 200px;
    margin-top: 10px;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 10px 30px;
  }
  .content-root-1440.footer .content-float-1280.footer .button {
    width: 330px;
    height: 80px;
    font-size: 28px;
  }
  .content-root-1440.footer .content-float-1280.footer .button img {
    height: 38px;
    width: auto;
  }
  .content-root-1440.footer .content-float-1280.footer .button.menu-button {
    position: absolute;
    right: 0;
    bottom: 170px;
  }
  .content-root-1440.footer .content-float-1280.footer .footer-time-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--global--color--white);
  }
}

.content-float-1280 {
  box-sizing: border-box;
  position: relative;
  width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}
.content-float-1280.no-clip {
  overflow: visible;
}
@media screen and (max-width: 750px) {
  .content-float-1280 {
    width: 690px;
  }
  .content-float-1280.sp-630 {
    width: 630px;
  }
}

.content-float-1160 {
  box-sizing: border-box;
  position: relative;
  width: 1160px;
  margin: 0 auto;
  overflow: hidden;
}
.content-float-1160.no-clip {
  overflow: visible;
}
@media screen and (max-width: 750px) {
  .content-float-1160 {
    width: 690px;
  }
  .content-float-1160.sp-630 {
    width: 630px;
  }
}

.content-float-1040 {
  box-sizing: border-box;
  position: relative;
  width: 1040px;
  margin: 0 auto;
  overflow: hidden;
}
.content-float-1040.no-clip {
  overflow: visible;
}
@media screen and (max-width: 750px) {
  .content-float-1040 {
    width: 690px;
  }
  .content-float-1040.sp-630 {
    width: 630px;
  }
}

.content-float-840 {
  box-sizing: border-box;
  position: relative;
  width: 840px;
  margin: 0 auto;
  overflow: hidden;
}
.content-float-840.no-clip {
  overflow: visible;
}
@media screen and (max-width: 750px) {
  .content-float-840 {
    width: 690px;
  }
  .content-float-840.sp-630 {
    width: 630px;
  }
}

.sub-header {
  position: relative;
  height: 210px;
  padding-top: 10px;
  font-family: var(--global--font--m-plus);
  font-size: 52px;
  font-weight: 700;
  color: var(--global--color--white);
  gap: 32px;
}
.sub-header .logo {
  position: absolute;
  left: 0;
  width: 252px;
  height: auto;
}
.sub-header .icon {
  width: auto;
  height: 70px;
  display: block;
  margin: 10px auto;
}
.sub-header h1 {
  font-size: 52px;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .sub-header {
    min-height: 160px;
    font-size: 52px;
    gap: 10px;
  }
  .sub-header .logo {
    width: 118px;
    height: auto;
  }
  .sub-header .icon {
    height: 57px;
  }
  .sub-header .icon h1 {
    margin: 0;
  }
}

.sub-title {
  margin: 40px 0;
  font-family: var(--global--font--m-plus);
  font-size: 40px;
  font-weight: 700;
  color: var(--global--color--white);
}
.sub-title .small-text {
  margin: 30px 0 0;
  font-size: 20px;
}
@media screen and (max-width: 750px) {
  .sub-title {
    padding: 0 0;
  }
}

.hidden-content {
  display: none !important;
}

.space-h10 {
  height: 10px;
}

.space-h50 {
  height: 50px;
}

.space-h100 {
  height: 100px;
}

.space-h300 {
  height: 300px;
}

.flex-spacer {
  flex-grow: 1;
}

.text-link {
  display: flex;
  align-items: end;
}
.text-link::after {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url(../img/link-icon.svg) no-repeat;
  background-size: contain;
}

.headline-text {
  margin-top: 60px;
  margin-bottom: 42px;
  font-size: 30px;
  font-family: var(--global--font--m-plus);
  font-weight: 700;
  color: var(--global--color--purple);
}
.headline-text.bold {
  font-weight: 700;
}

.text-content, .text-content-16px {
  padding-left: 10px;
  font-family: var(--global--font--noto-sans);
  font-size: 14px;
  color: var(--global--color--dark-purple);
  text-align: left;
}
.text-content.center, .center.text-content-16px {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .text-content, .text-content-16px {
    font-size: 24px;
    font-weight: 700;
  }
  .text-content.center, .center.text-content-16px {
    text-align: start;
  }
}

.text-content-16px {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .text-content-16px {
    font-size: 24px;
  }
}

.button {
  user-select: none;
  cursor: pointer;
  text-decoration: none;
}
.button.selected {
  cursor: default;
}

.border-button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.border-button {
  box-sizing: border-box;
  border: var(--global--color--purple) solid 4px;
  border-radius: 10px;
  background-color: var(--global--color--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--global--font--m-plus);
  font-size: var(--schedule-page--tab-button--font-size);
  color: var(--global--color--dark-purple);
}
.border-button.selected {
  background-color: var(--global--color--purple);
  color: var(--global--color--white);
}
.border-button.green {
  border-color: var(--global--color--green);
}
.border-button.green.selected {
  background-color: var(--global--color--green);
}
.border-button.orange {
  border-color: var(--global--color--orange);
}
.border-button.orange.selected {
  background-color: var(--global--color--orange);
}
.border-button.light-blue {
  border-color: var(--global--color--light-blue);
}
.border-button.light-blue.selected {
  background-color: var(--global--color--light-blue);
}
.border-button.pink {
  border-color: var(--global--color--pink);
}
.border-button.pink.selected {
  background-color: var(--global--color--pink);
}
.border-button.very-small {
  width: 90px;
  height: 46px;
  margin: 0 2px 0;
}
.border-button.small {
  width: 160px;
  height: 46px;
  margin: 0 10px 30px;
}
.border-button.medium {
  width: 190px;
  height: 46px;
  margin: 0 20px 30px;
}
@media screen and (max-width: 750px) {
  .border-button.medium {
    margin: 0 20px 15px;
  }
}

.detail-button {
  box-sizing: border-box;
  position: relative;
  width: 320px;
  height: 70px;
  margin: 0 auto;
  border-radius: 10px;
  padding-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--global--color--pink);
  font-family: var(--global--font--noto-sans);
  font-size: 24px;
  font-weight: 400;
  color: var(--global--color--white);
}
.detail-button::after {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  content: "";
  width: 50px;
  height: 50px;
  display: inline-block;
  background: url(../img/arrow-icon.svg) no-repeat;
  background-size: contain;
}
.detail-button.revert::after {
  transform: translateY(-50%) rotate(-90deg);
}

.start-button {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--global--color--purple);
}
.start-button::after {
  content: "";
  display: block;
  margin-left: 4px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17.320508px solid var(--global--color--white);
}

.stop-button {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--global--color--purple);
}
.stop-button::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: var(--global--color--white);
}

.arrow-button-group {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  gap: 80px;
}
.arrow-button-group .arrow-button {
  position: relative;
  width: 400px;
  height: 140px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--global--color--purple);
  font-family: var(--global--font--m-plus);
  font-size: 24px;
  color: var(--global--color--white);
}
.arrow-button-group .arrow-button::after {
  content: "";
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
  display: inline-block;
  background: url(../img/arrow-icon.svg) no-repeat;
  background-size: contain;
}
.arrow-button-group .arrow-button.h70 {
  height: 70px;
  border-radius: 10px;
}
.arrow-button-group .arrow-button.small {
  width: 300px;
  height: 50px;
  border-radius: 10px;
}
.arrow-button-group .arrow-button.arrow-small::after {
  width: 40px;
  height: 40px;
}
.arrow-button-group .arrow-button.pink {
  background-color: var(--global--color--pink);
}
.arrow-button-group .arrow-button.down::after {
  transform: rotate(90deg);
}
.arrow-button-group .arrow-button.up::after {
  transform: rotate(-90deg);
}
.arrow-button-group .arrow-button.no-arrow::after {
  content: none;
}
@media screen and (max-width: 750px) {
  .arrow-button-group {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.crown {
  box-sizing: border-box;
  position: relative;
  width: fit-content;
  padding-bottom: 10px;
  font-family: var(--global--font--noto-sans);
  font-size: 24px;
  font-weight: 700;
  color: var(--global--color--vivid-pink);
  margin: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
.crown .class-text {
  width: fit-content;
}
.crown::before {
  content: "";
  width: 34px;
  height: 34px;
  display: inline-block;
  background: url(../img/cast-content-icon-crown.svg) no-repeat;
  background-size: contain;
}
.crown.new::before {
  content: "🔰";
  background: none;
  font-size: 30px;
  padding-bottom: 15px;
}
.crown::after {
  position: absolute;
  bottom: 5px;
  content: "";
  border-radius: 1px;
  margin: 0 auto;
  width: 105%;
  height: 3px;
  display: block;
  background-color: var(--global--color--vivid-pink);
}

.detail-additional-container {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.detail-additional-container .title {
  padding: 5px 0 15px;
  font-size: 24px;
  font-weight: 700;
  background-color: var(--global--color--pink);
  color: var(--global--color--white);
}
.detail-additional-container .content {
  margin-top: 11px;
  border-radius: 20px;
  padding: 20px 0 20px 20px;
  background-color: #feeef6;
  font-size: 18px;
  font-weight: 400;
  color: var(--global--color--dark-purple);
}
.detail-additional-container .content.option {
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.detail-additional-container .content.option > .ok, .detail-additional-container .content.option .ng {
  background-color: #feeef6;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  font-weight: 700;
}
.detail-additional-container .content.option > .ok::before, .detail-additional-container .content.option .ng::before {
  content: "";
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 4px;
  display: block;
}
.detail-additional-container .content.option > .ok::before {
  width: 37px;
  height: 47px;
  background: url(../img/circle-line.svg) no-repeat center;
  background-size: contain;
}
.detail-additional-container .content.option > .ng::before {
  width: 47px;
  height: 47px;
  background: url(../img/x-line.svg) no-repeat center;
  background-size: contain;
}

.cast-content-border.rank-1::after {
  content: "";
  position: absolute;
  top: -38px;
  left: -26px;
  width: 112px;
  height: 97px;
  background: url("../img/ranking_1.png") no-repeat;
  background-size: contain;
}

.cast-content-border.rank-1::after {
  content: "";
  position: absolute;
  top: -38px;
  left: -26px;
  width: 112px;
  height: 97px;
  background: url("../img/ranking_1.png") no-repeat;
  background-size: contain;
}

.cast-content-border.rank-2::after {
  content: "";
  position: absolute;
  top: -38px;
  left: -26px;
  width: 112px;
  height: 97px;
  background: url("../img/ranking_2.png") no-repeat;
  background-size: contain;
}

.cast-content-border.rank-3::after {
  content: "";
  position: absolute;
  top: -38px;
  left: -26px;
  width: 112px;
  height: 97px;
  background: url("../img/ranking_3.png") no-repeat;
  background-size: contain;
}

.cast-content-border.rank-4::after {
  content: "";
  position: absolute;
  top: -38px;
  left: -26px;
  width: 112px;
  height: 97px;
  background: url("../img/ranking_4.png") no-repeat;
  background-size: contain;
  top: -19px;
  left: -21px;
  width: 91px;
  height: 79px;
}

.cast-content-border.rank-5::after {
  content: "";
  position: absolute;
  top: -38px;
  left: -26px;
  width: 112px;
  height: 97px;
  background: url("../img/ranking_5.png") no-repeat;
  background-size: contain;
  top: -19px;
  left: -21px;
  width: 91px;
  height: 79px;
}

.cast-content-border.rank-6::after {
  content: "";
  position: absolute;
  top: -38px;
  left: -26px;
  width: 112px;
  height: 97px;
  background: url("../img/ranking_6.png") no-repeat;
  background-size: contain;
  top: -19px;
  left: -21px;
  width: 91px;
  height: 79px;
}

.cast-content-border.rank-7::after {
  content: "";
  position: absolute;
  top: -38px;
  left: -26px;
  width: 112px;
  height: 97px;
  background: url("../img/ranking_7.png") no-repeat;
  background-size: contain;
  top: -19px;
  left: -21px;
  width: 91px;
  height: 79px;
}

.cast-content-border.rank-8::after {
  content: "";
  position: absolute;
  top: -38px;
  left: -26px;
  width: 112px;
  height: 97px;
  background: url("../img/ranking_8.png") no-repeat;
  background-size: contain;
  top: -19px;
  left: -21px;
  width: 91px;
  height: 79px;
}

.cast-content-border.rank-9::after {
  content: "";
  position: absolute;
  top: -38px;
  left: -26px;
  width: 112px;
  height: 97px;
  background: url("../img/ranking_9.png") no-repeat;
  background-size: contain;
  top: -19px;
  left: -21px;
  width: 91px;
  height: 79px;
}

.cast-content-border.rank-10::after {
  content: "";
  position: absolute;
  top: -38px;
  left: -26px;
  width: 112px;
  height: 97px;
  background: url("../img/ranking_10.png") no-repeat;
  background-size: contain;
  top: -19px;
  left: -21px;
  width: 91px;
  height: 79px;
}

.day-content .cast-content .nomination-fee {
  box-sizing: border-box;
  position: absolute;
  top: 330px;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: 42px;
  border: 2px solid var(--global--color--white);
  border-radius: 10px;
  padding: 3px 5px;
  background-color: var(--global--color--purple);
  color: var(--global--color--white);
  font-family: var(--global--font--noto-sans);
  font-size: 19px;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .day-content .cast-content .nomination-fee {
    top: 370px;
    padding: 5px 30px;
  }
}

.week-content .cast-content .nomination-fee {
  box-sizing: border-box;
  position: absolute;
  top: 320px;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: 42px;
  border: 2px solid var(--global--color--white);
  border-radius: 10px;
  padding: 3px 5px;
  background-color: var(--global--color--purple);
  color: var(--global--color--white);
  font-family: var(--global--font--noto-sans);
  font-size: 19px;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .week-content .cast-content .nomination-fee {
    top: 300px;
    padding: 5px 30px;
  }
}

.fade-up-trigger {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity ease 0.7s, transform ease 1.5s;
}
.fade-up-trigger.fade-up {
  opacity: 100;
  transform: translateY(0px);
}

.menu-button-group .menu-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}
.menu-button-group .menu-button .text-img {
  margin-top: 30px;
  height: 36px;
}

.menu-button-group .menu-button .text-img-2 {
  margin-top: 15px;
  height: 65px;
}

@media screen and (max-width: 750px) {
  .menu-button-group {
    padding: 0 30px;
  }
}

.header-menu-group {
  gap: 20px 0;
}
@media screen and (max-width: 750px) {
  .header-menu-group {
    gap: 40px 0;
  }
}
.header-menu-group .header-menu-button .text-img {
  height: 24px;
}

#header-root .menu-text {
  margin-top:10px;
  font-family: var(--font-decoration);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
  color: #fff;

  &.small {
    font-size: 20px;
  }
  &.sp{
    margin:4px 0 0 0;
    font-size: 20px;
  }
}


.body-round {
  width: 100%;
  height: 20px;
  border-radius: 20px 20px 0 0;
  margin-top: 50px;
  background-color: var(--global--color--white);
}

.content-bg {
  background-color: var(--global--color--white);
  border-radius: 20px;
  padding: 0 60px 60px;
}
@media screen and (max-width: 750px) {
  .content-bg {
    padding: 0 30px 60px;
  }
}

em {
  color: var(--global--color--pink);
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
}
em.big {
  font-size: 30px;
}
@media screen and (max-width: 750px) {
  em {
    font-size: 28px;
  }
}

.preparation {
  font-family: var(--global--font--noto-sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--global--color--dark-purple);
}

@media screen and (max-width: 750px) {
  .main-page--tab-button > .main-page--tab-button--under-bar {
    margin-top: 10px;
  }
}

/*# sourceMappingURL=common.css.map */
