@charset "UTF-8";
.js-scrollin {
  opacity: 0;
  transform: translateY(50px); }

.js-scrollin.active {
  opacity: 1;
  transform: translate(0);
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

body {
  line-height: 1.66;
  font-size: 1.8rem;
  font-weight: 300;
  color: #192331;
  font-family: "IBM Plex Sans JP", sans-serif;
  position: relative;
  z-index: 1;
  overflow-x: hidden; }
  @media screen and (max-width: 834px) {
    body {
      font-size: 14px; } }

.inner {
  display: block;
  max-width: 100%;
  width: 100%;
  padding: 0 32px;
  margin: 0 auto; }

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

.pc {
  display: block; }
  @media screen and (max-width: 480px) {
    .pc {
      display: none; } }

.ja {
  font-family: "IBM Plex Sans JP", sans-serif; }

.en {
  font-family: "Roboto", sans-serif; }

.en2 {
  font-family: "Oswald", sans-serif; }

.en-c {
  font-family: "Roboto Condensed", sans-serif; }

.sec-lead {
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  color: #192331; }

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh; }
  .bg img {
    object-fit: cover;
    width: 100%;
    height: 100%; }

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease; }

.modal.show {
  display: block;
  opacity: 1; }

.modal__wrap {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  position: relative; }

.modal__content {
  overflow-x: hidden;
  max-height: 80vh;
  overflow-y: auto;
  margin: 7.6rem auto 0;
  background: #fff;
  border-radius: 0;
  padding: 7rem 5%;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column; }
  @media screen and (max-width: 990px) {
    .modal__content {
      margin: 11.6rem auto 0;
      max-height: 80vh; } }

.modal.show .modal__content {
  transform: translateY(0); }

.modal__content.large {
  max-width: 1000px; }

.modal__content.small {
  max-width: 500px; }

.modal__title {
  font-size: clamp(1.8rem, 3.2vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem; }

.notion__sub-title {
  font-size: 1.8rem;
  font-weight: 500;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #ccc;
  margin-bottom: 2rem; }

.modal__text {
  font-size: clamp(1.4rem, 3.2vw, 1.6rem);
  line-height: 1.7; }

.modal__picture {
  margin: 1rem 0 3rem; }

.modal__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5rem 0; }
  .modal__list::before {
    position: absolute;
    content: '';
    border-left: 2px dotted #BBBBBB;
    width: 1px;
    height: 94%;
    left: 2.4rem;
    top: 0; }

.modal__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem; }
  .modal__item .number {
    width: 5rem;
    height: 5rem;
    aspect-ratio: 1 / 1;
    background-color: #A1A1A6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: clamp(1.5rem, 3.2vw, 1.8rem);
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    position: relative;
    z-index: 2; }
    .modal__item .number span.en {
      font-size: clamp(1.5rem, 3.2vw, 1.8rem);
      font-weight: 700; }

.modal__main {
  padding-top: 1rem; }

.modal__main--title {
  font-size: clamp(1.6rem, 3.2vw, 1.8rem);
  font-weight: 700; }
  .modal__main--title span {
    font-size: 1.6rem; }

.modal__main--note {
  font-size: 1.4rem;
  font-weight: 400; }

.modal__main--picture {
  margin-top: 1rem; }

.modal__additional {
  margin: 4rem 0 7rem;
  background-color: #F4F4F7;
  padding: 3rem 11%; }

.additional__title {
  font-size: clamp(1.6rem, 3.2vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 1rem; }

.additional__text {
  font-size: 1.5rem; }
  .additional__text .under-line {
    text-decoration: underline; }

.modal__nortification--title {
  font-size: 1.8rem;
  font-weight: 500;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #ccc;
  margin-bottom: 2rem; }

.modal__nortification--text {
  display: flex;
  flex-direction: column;
  gap: 1rem 0; }
  .modal__nortification--text li {
    font-size: 1.4rem;
    font-weight: 400;
    position: relative;
    padding-left: 3.9%;
    text-indent: -3.8%; }
    .modal__nortification--text li::before {
      content: '●';
      color: #88b829;
      font-size: 0.9rem;
      border-radius: 50%;
      margin-right: 0.5rem; }

.modal__nortification--importance {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 7rem; }

.close {
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  top: -36px;
  right: 5%;
  border: 0px;
  width: fit-content;
  background: transparent; }
  @media screen and (max-width: 990px) {
    .close {
      top: -16px; } }
  .close span {
    width: 4rem;
    height: 1px;
    background-color: #fff;
    display: block; }
    @media screen and (max-width: 990px) {
      .close span {
        width: 2.4rem; } }
  .close span:nth-child(1) {
    transform: rotate(45deg); }
  .close span:nth-child(2) {
    transform: rotate(-45deg); }

.qr-fixed {
  position: fixed;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem 0;
  z-index: 2;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%); }
  @media screen and (max-width: 1200px) {
    .qr-fixed {
      left: 1%; } }
  @media screen and (max-width: 990px) {
    .qr-fixed {
      display: none; } }

.qr-fixed__head {
  display: flex;
  justify-content: center; }
  .qr-fixed__head img {
    width: 100%;
    height: auto; }
    @media screen and (max-width: 1200px) {
      .qr-fixed__head img {
        width: 85%; } }

.qr-fixed__main {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem; }

.qr-fixed__img {
  max-width: 7.2rem;
  width: 100%;
  height: auto;
  border: 1px solid #DDDDDD; }

.qr-fixed__ct {
  font-size: 1.4rem;
  font-weight: 700; }
  .qr-fixed__ct span {
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #88B829;
    display: block; }

.comapny__logo {
  gap: 2rem;
  position: fixed;
  z-index: 2;
  bottom: 3rem;
  left: 2%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem; }
  @media screen and (max-width: 990px) {
    .comapny__logo {
      position: absolute;
      bottom: 3rem;
      left: 9%; } }
  @media screen and (max-width: 990px) {
    .comapny__logo img {
      width: 50px; } }

.comapny__logo-pc {
  display: flex; }
  @media screen and (max-width: 990px) {
    .comapny__logo-pc {
      display: none; } }

.comapny__logo-sp {
  display: none; }
  @media screen and (max-width: 990px) {
    .comapny__logo-sp {
      display: flex; } }

.main-header {
  width: 50%;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 2; }
  @media screen and (max-width: 990px) {
    .main-header {
      display: none;
      width: 80%;
      max-width: 480px;
      right: 0;
      left: auto;
      background: #505965;
      z-index: 99;
      padding: 108px 41px;
      overflow-y: auto;
      z-index: 99; } }
  @media screen and (max-width: 480px) {
    .main-header {
      width: 100%; } }

.main-header__inner {
  position: absolute;
  top: 50%;
  width: 47%;
  left: 67%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); }
  @media screen and (max-width: 1200px) {
    .main-header__inner {
      width: 38%;
      left: 70%; } }
  @media screen and (max-width: 990px) {
    .main-header__inner {
      width: 100%;
      position: relative;
      left: auto;
      transform: none;
      -webkit-transform: none;
      -ms-transform: none;
      top: auto; } }

.main-header__menu {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vh, 5rem); }
  .main-header__menu .v-lg {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center; }
    @media screen and (max-width: 1200px) {
      .main-header__menu .v-lg {
        flex-direction: column;
        gap: 0.5rem 0;
        align-items: flex-start; } }
    @media screen and (max-width: 990px) {
      .main-header__menu .v-lg {
        flex-direction: row;
        gap: 0;
        align-items: center; } }
    .main-header__menu .v-lg span.en {
      font-size: clamp(2.5rem, 3.2vw, 3.2rem);
      font-weight: 700;
      color: #fff;
      margin-right: 0.8rem;
      display: inline-block; }
      @media screen and (max-width: 1200px) {
        .main-header__menu .v-lg span.en {
          line-height: 1; } }

.main-header__menu a.v-lg:hover {
  opacity: .7;
  transition: all .3s; }

.main-header__submenu {
  color: #fff;
  font-size: 1.5rem; }
  @media screen and (max-width: 1200px) {
    .main-header__submenu {
      margin-top: 2rem; } }
  @media screen and (max-width: 990px) {
    .main-header__submenu {
      margin-top: 1rem;
      font-size: 1.2rem; } }

.main-header__banner {
  margin-top: clamp(2rem, 1vh, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between; }
  @media screen and (max-width: 1200px) {
    .main-header__banner {
      flex-direction: column;
      gap: 1rem 0;
      align-items: flex-start; } }
  @media screen and (max-width: 990px) {
    .main-header__banner {
      flex-direction: row;
      gap: 0;
      align-items: center; } }

.main-header__banner--item {
  background: #fff;
  width: 46%;
  position: relative;
  border-radius: 5px; }
  @media screen and (max-width: 1200px) {
    .main-header__banner--item {
      width: 100%; } }
  @media screen and (max-width: 990px) {
    .main-header__banner--item {
      width: 48%; } }
  .main-header__banner--item a {
    padding: 2rem 5%;
    display: block;
    color: #D61518;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center; }
    @media screen and (max-width: 990px) {
      .main-header__banner--item a {
        padding: 1.5rem 5%; } }
    .main-header__banner--item a:hover {
      opacity: .7;
      transition: all .3s; }
  .main-header__banner--item span.en {
    display: block;
    font-size: 1.5rem;
    font-weight: 700; }
  .main-header__banner--item:nth-child(2) {
    pointer-events: none; }
    .main-header__banner--item:nth-child(2)::before {
      content: '2026年2月頃から販売開始予定';
      font-size: 1rem;
      position: absolute;
      color: #fff;
      text-align: center;
      bottom: -2.5rem;
      width: 100%; }
      @media screen and (max-width: 990px) {
        .main-header__banner--item:nth-child(2)::before {
          font-size: 0.9rem;
          bottom: -2.5rem; } }

.main-header__banner--item:nth-child(2) a {
  color: #192331; }

.icon-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 5px;
  background: #192331;
  position: fixed;
  top: 20px;
  right: 10px;
  cursor: pointer;
  z-index: 100;
  transition: all .3s;
  opacity: 0;
  pointer-events: none; }
  .icon-menu span {
    width: 50%;
    height: 1px;
    background-color: #fff;
    transition: all .3s; }
  @media screen and (max-width: 990px) {
    .icon-menu {
      opacity: 1;
      pointer-events: auto; } }
  @media screen and (max-width: 480px) {
    .icon-menu {
      width: 50px;
      height: 50px; } }

.icon-menu.js-mobile--close span:nth-child(1) {
  position: absolute;
  transform: rotate(45deg);
  transition: all .3s; }
.icon-menu.js-mobile--close span:nth-child(2) {
  display: none; }
.icon-menu.js-mobile--close span:nth-child(3) {
  position: absolute;
  transform: rotate(-45deg);
  transition: all .3s; }

.content-main {
  max-width: 480px;
  width: 100%;
  overflow-y: auto;
  background: #fff;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.3); }

.mv-index {
  padding: 8rem 5% 7rem; }
  .mv-index__ttl {
    margin-bottom: 3rem;
    width: 95%; }
  .mv-index__img {
    margin: 0 auto 5.7rem;
    width: 95%; }
  .mv-index__desc {
    font-size: 2.45rem;
    font-weight: 700;
    line-height: 1.2;
    color: #d61518; }

.sec-fee {
  background-color: #88B829;
  padding: 5.5rem 0;
  color: #fff; }

.sec-fee__title {
  width: 80%; }

.sec-fee__price {
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: 500; }
  @media screen and (max-width: 480px) {
    .sec-fee__price {
      line-height: 1.2; } }
  .sec-fee__price span.ja {
    font-size: 1.5rem; }
  .sec-fee__price span.emphasis {
    font-size: 2.6rem; }
    .sec-fee__price span.emphasis span {
      font-size: 2rem; }
  .sec-fee__price span.ja.extra {
    display: block;
    text-align: right;
    font-size: clamp(1.4rem, 3.2vw, 1.6rem); }
    .sec-fee__price span.ja.extra .en {
      font-size: 1.8rem; }
    .sec-fee__price span.ja.extra .s-ja {
      font-size: 1.3rem; }
  .sec-fee__price span.en {
    font-size: 2.3rem; }

.sec-fee__period {
  margin-top: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 7px 5%;
  font-size: 1.8rem;
  font-weight: 700; }
  .sec-fee__period span {
    font-size: 2rem; }
  .sec-fee__period span.en2 {
    font-size: 3rem;
    font-weight: 400; }

.sec-about {
  background-color: #e8e8e9;
  padding: 11.3rem 0 0;
  position: relative;
  overflow: hidden; }
  @media screen and (max-width: 480px) {
    .sec-about {
      padding: 6rem 0 0; } }

.sec-about__dec {
  font-size: clamp(5rem, 3.2vw, 7rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: sideways-lr;
  position: absolute;
  right: -7px;
  line-height: 1;
  z-index: 0;
  top: 90px; }

.sec-about__title {
  position: relative;
  z-index: 1;
  color: #192331;
  font-size: clamp(2.6rem, 3.2vw, 3.7rem);
  line-height: 1.3;
  font-weight: 700; }

.sec-about__sub-title {
  position: relative;
  z-index: 1;
  margin-top: 1.4rem;
  background-color: #192331;
  color: #fff;
  width: fit-content;
  font-size: clamp(1.8rem, 3.2vw, 2.2rem);
  padding: 0.1rem 1rem;
  font-weight: 700; }

.sec-about__text {
  position: relative;
  z-index: 1;
  margin: 3rem 0 7rem; }

.sec-theme {
  padding: 12rem 0;
  background: url(../img/theme-bg.webp) center no-repeat;
  background-size: cover; }
  @media screen and (max-width: 480px) {
    .sec-theme {
      padding: 6rem 0; } }
  .sec-theme .sec-lead {
    text-align: center;
    color: #fff; }

.sec-theme__title {
  text-align: center;
  font-size: clamp(4.5rem, 3.2vw, 5.3rem);
  color: #fff;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 4.5rem; }
  @media screen and (max-width: 480px) {
    .sec-theme__title {
      margin-bottom: 3rem; } }

.sec-theme__text {
  color: #fff; }

.sec-theme__categories {
  margin-top: 7rem; }
  @media screen and (max-width: 480px) {
    .sec-theme__categories {
      margin-top: 5rem; } }
  .sec-theme__categories .categories__title {
    background-color: #192331;
    padding: 4rem 0;
    text-align: center;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700; }
    @media screen and (max-width: 480px) {
      .sec-theme__categories .categories__title {
        padding: 2rem 0; } }
    .sec-theme__categories .categories__title span {
      font-weight: 400;
      display: block;
      font-size: 1.7rem; }
  .sec-theme__categories .categories__list {
    background-color: #fff;
    padding: 1.7rem 0;
    display: flex;
    flex-direction: column; }
    @media screen and (max-width: 480px) {
      .sec-theme__categories .categories__list {
        padding: 0.7rem 0; } }
  .sec-theme__categories .categories__item {
    padding: 5rem 5%; }
  .sec-theme__categories .categories__item1 {
    border-bottom: 1px solid #ddd; }
  .sec-theme__categories .categories__item--title-box {
    position: relative;
    text-align: center; }
  .sec-theme__categories .number {
    position: absolute;
    z-index: 0;
    color: #DDEFBB;
    font-size: 7.6rem;
    font-weight: 700;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    top: -60.2%; }
  .sec-theme__categories .categories__item--title {
    position: relative;
    z-index: 1;
    color: #88B829;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 3.6rem; }
    @media screen and (max-width: 480px) {
      .sec-theme__categories .categories__item--title {
        margin-bottom: 2.6rem; } }
    .sec-theme__categories .categories__item--title span {
      display: block;
      font-size: clamp(2.9rem, 3.2vw, 3.6rem); }
  .sec-theme__categories .categories__item--group {
    margin-top: 5.4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem; }
    @media screen and (max-width: 480px) {
      .sec-theme__categories .categories__item--group {
        margin-top: 4.4rem;
        gap: 2rem; } }
  .sec-theme__categories .group__item {
    background-color: #88B829;
    text-align: center;
    padding: 2.1rem 0;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff; }
    .sec-theme__categories .group__item span {
      font-size: 1.5rem;
      display: block;
      font-weight: 400; }
    .sec-theme__categories .group__item span.s-text {
      font-size: 1.2rem; }
  .sec-theme__categories .categories__item2 .number {
    color: #EEE0F2; }
  .sec-theme__categories .categories__item2 .categories__item--title {
    color: #871679; }
  .sec-theme__categories .categories__item2 .group__item {
    background-color: #871679; }

.sec-details {
  padding: 10rem 32px 12rem; }
  @media screen and (max-width: 480px) {
    .sec-details {
      padding: 6rem 32px; } }
  .sec-details .sec-lead {
    text-align: center;
    font-family: "Roboto", sans-serif; }
  .sec-details .sec-details__title {
    font-size: clamp(3.2rem, 3.2vw, 3.9rem);
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.5rem; }
    @media screen and (max-width: 480px) {
      .sec-details .sec-details__title {
        margin-bottom: 2.5rem; } }
  .sec-details .sec-details__finalist {
    margin-top: 5.7rem; }
    @media screen and (max-width: 480px) {
      .sec-details .sec-details__finalist {
        margin-top: 4rem; } }
  .sec-details .finalist__text-box {
    background-color: #192331;
    color: #fff;
    padding: 3.5rem 8%; }
  .sec-details .finalist__lead {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    border: 1px solid #fff;
    width: fit-content;
    padding: 0 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    margin-bottom: 2rem; }
  .sec-details .finalist__text {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem); }
  .sec-details .finalist__emphasis {
    text-align: right;
    font-weight: 700;
    font-size: 3.2rem; }
    .sec-details .finalist__emphasis span.ja {
      font-size: 2.8rem; }
      .sec-details .finalist__emphasis span.ja span {
        font-family: "Roboto", sans-serif;
        font-size: 5rem; }

.sec-award {
  padding: 7rem 0;
  background: url(../img/award-bg.webp) center no-repeat;
  background-size: cover;
  text-align: center;
  color: #fff; }
  .sec-award .sec-lead {
    font-family: "Roboto", sans-serif;
    color: #fff; }
  .sec-award__title {
    text-align: center;
    font-size: clamp(5rem, 3.2vw, 5.7rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2rem; }
  .sec-award__text {
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 2;
    margin-bottom: 7rem; }
  .sec-award__emphasis {
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    font-weight: 600; }

.sec-menu {
  padding: 5rem 32px;
  display: flex;
  flex-direction: column;
  gap: 5rem; }
  .sec-menu__title {
    font-size: 2.7rem;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    color: #88B829;
    margin-bottom: 1.5rem; }
  .sec-menu__category--title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #192331;
    margin-bottom: 1rem; }
  .sec-menu dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; }
    .sec-menu dl::before {
      position: absolute;
      content: '';
      border-bottom: 1px dotted #BBBBBB;
      width: 45%;
      height: 1px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%); }
  .sec-menu dt {
    font-size: clamp(1.6rem, 3.2vw, 1.8rem);
    font-weight: 400;
    width: 30%; }
  .sec-menu dd {
    font-size: clamp(1.6rem, 3.2vw, 1.8rem);
    display: flex;
    align-items: baseline; }
    .sec-menu dd span {
      font-size: clamp(2.2rem, 3.2vw, 3rem);
      font-weight: 700;
      font-family: "Roboto", sans-serif; }
  .sec-menu .realitive {
    color: #871679; }
  .sec-menu .international {
    color: #d81519; }
  .sec-menu .sec-menu__category2 {
    margin-top: 5rem; }
  .sec-menu .international-wrap dl::before {
    width: 25%;
    left: 66%; }
  .sec-menu .international-wrap dt {
    font-size: clamp(1.3rem, 3.2vw, 1.6rem);
    width: 60%; }

.sec-panel {
  padding: 7rem 0;
  background: url(../img/judge-bg.webp) center top no-repeat;
  background-size: cover;
  color: #fff; }
  .sec-panel .sec-lead {
    text-align: center;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 400; }
  .sec-panel__title {
    text-align: center;
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8rem; }
    @media screen and (max-width: 480px) {
      .sec-panel__title {
        margin-bottom: 4rem; } }
    .sec-panel__title span {
      display: block;
      font-size: clamp(3.2rem, 3.2vw, 4rem); }
  .sec-panel__list {
    display: flex;
    flex-direction: column;
    gap: 8rem 0; }
  .sec-panel__item--title {
    padding-bottom: 1rem;
    border-bottom: 1px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem; }
    .sec-panel__item--title span.title {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.5; }
    .sec-panel__item--title span.note {
      font-size: clamp(1.3rem, 3.2vw, 1.6rem);
      font-weight: 400; }
  .sec-panel__child-list {
    display: flex;
    flex-direction: column;
    gap: 3rem; }
  .sec-panel__child-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between; }
  .sec-panel .panel-picture {
    width: 43%; }
  .sec-panel .panel-text-box {
    width: 53%; }
    .sec-panel .panel-text-box .name {
      font-size: clamp(1.8rem, 3.2vw, 2.2rem);
      font-weight: 400;
      line-height: 1.5;
      margin-bottom: 1rem; }
      .sec-panel .panel-text-box .name span {
        display: block;
        font-family: "Roboto", sans-serif;
        font-size: clamp(1.3rem, 3.2vw, 1.5rem);
        font-weight: 300; }
      .sec-panel .panel-text-box .name span.s-text {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-size: 1.4rem;
        font-weight: 400; }
    .sec-panel .panel-text-box .panel-roll {
      font-size: 1.4rem;
      font-weight: 400; }
  .sec-panel .panel-text {
    font-size: 1.28rem;
    line-height: 1.6;
    font-feature-settings: "palt" 1; }

.sec-info {
  background-color: #E8E8E9;
  padding: 7rem 0; }
  .sec-info .sec-lead {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1.7rem; }
  .sec-info__title {
    font-size: clamp(3.5rem, 3.2vw, 4.6rem);
    font-weight: 700;
    text-align: center;
    font-family: "Roboto", sans-serif;
    line-height: 1.2; }
  .sec-info__picture {
    position: relative;
    margin-top: 6rem; }
    @media screen and (max-width: 480px) {
      .sec-info__picture {
        margin-top: 4rem; } }
    .sec-info__picture img.dec1 {
      position: absolute;
      top: -25%;
      right: 0;
      width: 7%;
      z-index: 3; }
    .sec-info__picture img.sec-info__picture--img {
      position: relative;
      z-index: 2; }
    .sec-info__picture img.dec2 {
      position: absolute;
      bottom: -36%;
      z-index: 0;
      left: 0;
      width: 40%; }
  .sec-info__theme {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 5rem; }
    .sec-info__theme span.ja {
      font-size: 1.4rem;
      text-decoration: underline;
      color: #CA1C1D;
      margin-bottom: 1rem;
      display: block; }
  .sec-info__list {
    margin-top: 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between; }
  .sec-info__item {
    width: 49%;
    padding: 1rem 6%; }
  .sec-info .creative-item {
    background-color: #88B829; }
  .sec-info .realitive-item {
    background-color: #9D165E; }
  .sec-info__item--title {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    line-height: 2;
    color: #fff; }
  .sec-info__item--cat {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .sec-info__item--cat p {
      width: 46%;
      font-size: clamp(1.4rem, 3.2vw, 1.6rem);
      font-weight: 400;
      text-align: center;
      background-color: #fff;
      padding: 0.5rem 0; }
      @media screen and (max-width: 480px) {
        .sec-info__item--cat p {
          padding: 0.2rem 0; } }
  .sec-info .sec-info__infomation {
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    gap: 5rem 0; }
    @media screen and (max-width: 480px) {
      .sec-info .sec-info__infomation {
        margin-top: 5rem;
        gap: 3rem 0; } }
  .sec-info dt {
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: clamp(1.8rem, 3.2vw, 2rem);
    font-weight: 700; }
    .sec-info dt::before {
      content: '';
      position: absolute;
      background-color: #CA1C1D;
      width: 4px;
      height: 90%;
      top: 0;
      bottom: 0;
      left: 0; }
  .sec-info dd {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    font-weight: 400; }
    .sec-info dd span {
      display: block;
      padding-bottom: 0.5rem;
      font-size: clamp(1.6rem, 3.2vw, 2rem); }
  .sec-info__spectator {
    background-color: #fff;
    width: 90%;
    margin: 2rem auto 0;
    padding: 3rem 5% 5rem;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .sec-info .spectator__title {
    border: 1px solid #192331;
    width: fit-content;
    padding: 0.5rem 1rem;
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem; }
  .sec-info .spectator__price {
    font-size: 1.8rem;
    font-weight: 700; }
    @media screen and (max-width: 990px) {
      .sec-info .spectator__price {
        text-align: center; } }
    .sec-info .spectator__price span.en {
      font-size: 1.8rem;
      font-family: "Roboto Condensed", sans-serif;
      font-weight: 400; }
    .sec-info .spectator__price span.emphasis {
      font-size: 2.2rem;
      font-weight: 400; }
    .sec-info .spectator__price span.s-text {
      font-size: 1.4rem; }
  .sec-info .spectator__for-today {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem); }
    .sec-info .spectator__for-today span.en {
      font-family: "Roboto Condensed", sans-serif; }
    .sec-info .spectator__for-today span.s-text {
      font-size: 1.4rem; }
  .sec-info .spectator__btn {
    margin: 2rem auto 0;
    border-radius: 65px;
    background-color: #192331;
    border: 1px solid #192331;
    padding: 2.5rem 0;
    width: 70%;
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    font-weight: 700;
    color: #fff;
    display: block;
    text-align: center;
    transition: all .3s;
    position: relative;
    pointer-events: none; }
    @media screen and (max-width: 480px) {
      .sec-info .spectator__btn {
        padding: 2rem 0; } }
    .sec-info .spectator__btn::before {
      content: '2026年2月頃から販売開始予定';
      font-size: 1.2rem;
      position: absolute;
      font-weight: 400;
      text-align: center;
      color: #192331;
      bottom: -2.5rem;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      width: 100%; }
      @media screen and (max-width: 990px) {
        .sec-info .spectator__btn::before {
          font-size: 1.1rem;
          bottom: -2.5rem; } }
  .sec-info .spectator__btn:hover {
    opacity: .7;
    transition: all .3s; }

.sec-entry {
  padding: 7rem 0; }
  .sec-entry .sec-lead {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3.2rem; }
  .sec-entry__title {
    background: #D61518;
    padding: 2rem 5%;
    color: #fff;
    font-weight: 700;
    line-height: 1.2; }
    .sec-entry__title span.en {
      font-size: 2.6rem; }
    .sec-entry__title span.ja {
      font-size: clamp(1.4rem, 3.2vw, 1.6rem);
      display: block; }
  .sec-entry__catch {
    margin: 7rem 0 3rem;
    text-decoration: underline;
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    font-weight: 700; }
  .sec-entry__points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem 0; }
  .sec-entry dl {
    border-bottom: 1px solid #CCCCCC;
    display: flex;
    gap: 3rem; }
    @media screen and (max-width: 480px) {
      .sec-entry dl {
        gap: 1rem; } }
  .sec-entry dt {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    font-weight: 700; }
    @media screen and (max-width: 480px) {
      .sec-entry dt {
        width: 35%; } }
  .sec-entry dd {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem); }
    @media screen and (max-width: 480px) {
      .sec-entry dd {
        width: 55%; } }
  .sec-entry__flow {
    margin-top: 10rem; }
  .sec-entry .flow__title {
    background: #ECECEF;
    padding: 1rem 5%;
    font-size: 1.8rem;
    font-weight: 700; }
  .sec-entry .flow__step {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 7rem 0;
    position: relative; }
    .sec-entry .flow__step::before {
      position: absolute;
      content: '';
      border-left: 2px dotted #BBBBBB;
      width: 1px;
      height: 94%;
      left: 2.4rem;
      top: 0; }
    .sec-entry .flow__step .step {
      display: flex;
      gap: 2rem; }
    .sec-entry .flow__step .step__number {
      width: 5rem;
      height: 5rem;
      aspect-ratio: 1 / 1;
      background-color: #A1A1A6;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.8rem;
      font-weight: 700;
      font-family: "Roboto", sans-serif;
      position: relative;
      z-index: 2; }
  .sec-entry .step__main {
    padding-top: 1rem; }
    .sec-entry .step__main dl {
      background-color: #F4F4F7;
      padding: 2.4rem 7%;
      margin-bottom: 3rem;
      font-weight: 400;
      display: inherit;
      border-bottom: 0px; }
      .sec-entry .step__main dl dt, .sec-entry .step__main dl dd {
        font-weight: 400;
        font-size: clamp(1.4rem, 3.2vw, 1.6rem);
        width: 100%; }
  .sec-entry .step__title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem; }
    .sec-entry .step__title span {
      font-size: 1.4rem; }
  .sec-entry .step__text {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2; }
    .sec-entry .step__text span.note {
      margin-top: 3rem;
      display: block;
      font-size: 1.2rem; }
  .sec-entry .step__logo {
    margin: 2rem 0;
    background-color: #FFFFFF;
    padding: 2.5rem;
    border: 1px solid #CCCCCC; }
  .sec-entry .section__notion {
    margin-top: 1rem;
    border-radius: 65px;
    background-color: #88B829;
    border: 1px solid #88B829;
    width: 100%;
    padding: 2rem 0;
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    font-weight: 700;
    color: #fff;
    pointer-events: all;
    cursor: pointer; }
    @media screen and (max-width: 480px) {
      .sec-entry .section__notion {
        padding: 1.3rem 0; } }
  .sec-entry .section__notion:hover {
    opacity: .7;
    transition: all .3s; }
  .sec-entry .step__btn.entry {
    margin-top: 2rem;
    border-radius: 65px;
    background-color: #9D165E;
    border: 1px solid #9D165E;
    width: 100%;
    padding: 3rem 0;
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    font-weight: 700;
    color: #fff;
    display: block;
    text-align: center; }
    @media screen and (max-width: 480px) {
      .sec-entry .step__btn.entry {
        padding: 2rem 0; } }
  .sec-entry .step__btn.entry:hover {
    opacity: .7;
    transition: all .3s; }
  .sec-entry .flow__schedule {
    margin-top: 9rem;
    background: #F4F4F7;
    padding: 5rem 9%; }
  .sec-entry .schedule__title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem; }
  .sec-entry .schedule__step {
    display: flex;
    flex-direction: column;
    gap: 2rem 0; }
  .sec-entry .schedule__item {
    background-color: #fff;
    padding: 2rem 5%;
    text-align: center;
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    font-weight: 400; }
    .sec-entry .schedule__item span.en {
      font-size: clamp(1.5rem, 3.2vw, 1.8rem);
      font-weight: 700;
      display: block; }
    .sec-entry .schedule__item span.s-text {
      font-size: 1.4rem;
      display: block; }
  .sec-entry .schedule__arrow {
    margin: 0 auto;
    width: fit-content; }
    .sec-entry .schedule__arrow img {
      width: 18px;
      height: auto; }

.sec-footer {
  width: 100%;
  padding: 10rem 0;
  border-top: 1px solid #CCCCCC; }
  .sec-footer .inner {
    width: 80%; }
    @media screen and (max-width: 480px) {
      .sec-footer .inner {
        width: 100%; } }
  .sec-footer__upper-content {
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 6rem; }
  .sec-footer__logo {
    margin-bottom: 2rem; }
  .sec-footer__text {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 400; }
    .sec-footer__text:nth-child(2) img {
      width: 8rem;
      height: auto; }
    .sec-footer__text:nth-child(3) img {
      width: 20rem;
      height: auto; }
  .sec-footer__lower-content {
    padding-top: 5rem; }
  .sec-footer__p-text {
    text-align: center;
    font-size: 1.8rem;
    font-family: "Roboto", sans-serif;
    margin-bottom: 4rem; }
  .sec-footer .copyright {
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    margin-top: 6rem;
    text-align: center;
    color: #A1A1A6; }
