@charset "UTF-8";
/* CSS Document */
.section-top {
    height: 54vw;
    background-image: url(../images/top-img.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-top__picture {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.section-top__logo {
    position: absolute;
    left: 4vw;
    bottom: 24%;
    height: 32vw;
    animation: zoomOutAnime 1s forwards;
}
    @keyframes zoomOutAnime{
      0% {
        opacity: 0;
        transform: scale(1.2);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }
.top__bg-txt {
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 0px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 110vw;
    left: 50%;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(-50%) rotate(14deg);
    transform: translateX(-50%) rotate(14deg);
}
.top__bg-txt img {
    width: 100%;
    padding-bottom: 6vw;
    text-align: center;
    white-space: nowrap;
    opacity: 0.6;
}
.txt01,.txt03 {
    animation: slideIn-goRight 3s 1;
}
.txt02 {
    animation: slideIn-goLeft 3s 1;
}
@keyframes slideIn-goRight {
    0% {
      opacity: 0;
      transform: translateX(-1000px);
    }
    60% {
      opacity: 0.6;
      transform: translateX(0);
    }
  }
  @keyframes slideIn-goLeft {
    0% {
      opacity: 0;
      transform: translateX(1000px);
    }
    60% {
      opacity: 0.6;
      transform: translateX(0);
    }
  }
  
.section-about {
    margin-top: 14rem;
    margin-bottom: 22rem;
}
h1 {
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(26px,4vw,48px);
    font-weight: 900;
    letter-spacing: -0.1rem;
    line-height: 3.8rem;
    position: relative;
    margin: 0 auto;
    padding: 0 4vw;
    display: inline-block;
}
h1 span {
    font-size: clamp(20px,3vw,36px);
}
h1::after {
    transform: skewX(-45deg);
    content: "";
    display: block;
    margin: 2.0rem auto 0;
    width: 80%;
    height: 2.0rem;
    background: linear-gradient(to right,#FF5BF8,#79E7FF);
}
.lead-bg {
    background-image: url(../images/about-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 0 4vw 7.0rem;
    border-bottom: #FFF solid 1px;
}
.about-lead {
    font-weight: 700;
    font-size: 2.0rem;
    line-height: 4.0rem;
    text-align: left;
    margin: 30px auto 0;
    padding-top: 5.0rem;
    max-width: 100rem;
}
.prize-box {
    position: relative;
    border: 1px solid;
    border-image:  linear-gradient(to right,#FF5BF8,#79E7FF) 1;
    max-width: 640px;
    margin: 9.0rem auto 0;
}
.prize-txt-title {
    margin: -2.6rem auto;
    font-size: 3.0rem;
    padding: 1.4rem;
    max-width: 14rem;
    background: linear-gradient(to right,#FF5BF8,#79E7FF);
}
.prize-txt {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: clamp(48px,14vw,96px);
    margin: clamp(22px,14vw,90px) auto clamp(12px,10vw,70px);
}
.game-title {
    margin: 14rem auto 6.0rem;
    padding: 0 4vw;
    font-size: 2.4rem;
    max-width: 60rem;
    position: relative;
    display: inline-block;
}
.game-title span {
    padding-left: 1.6rem;
    font-size: 4.8rem;
    font-weight: 600;
}
.game-title::after {
    transform: skewX(-45deg);
    content: "";
    display: block;
    margin: 1.4rem 0;
    width: 100%;
    height: 0.4rem;
    background: linear-gradient(to right,#FF5BF8,#79E7FF);
}
.game__p-index-bg {
    position: relative;
}
.game__p-index-bg::before {
    content: "";
    height: 28rem;
    width: 70%;
    position: absolute;
    bottom: -22%;
    left: 0;
    background: #1E1E1E;
    border: #858585 solid 1px;
    z-index: -10;
}
.game__p-index {
    display: flex;
    justify-content: space-between;
    gap: 1.4rem;
    align-items: flex-end;
    max-width: 100rem;
    margin: 0 auto;
    padding: 0 4vw;
    z-index: 1;
}
.game__p-index ul {
    order: -1;
}
.game__p-index ul li {
    text-align: left;
    list-style: none;
    font-size: 2.0rem;
    font-weight: 400;
    margin-bottom: 1.4rem;
}
.game__p-index ul li a {
    color: #FFF;
}
.game__p-index img {
    height: auto;
    max-width: 44.6rem;
    min-height: 20rem;
    order: 1;
}
@media(max-width:900px) {
    .section-about {
        margin-top: 5.0rem;
        margin-bottom: 14rem;
    }
    .about-lead {
        font-size: 1.6rem;
        line-height: 3.2rem;
        margin: 20px auto 0;
        padding-top: 3.0rem;
        max-width: 100rem;
    }
    .prize-txt-title {
        font-size: 2.2rem;
        padding: 1.0rem;
        width: 11rem;
    }
    .game-title {
        line-height: 4.0rem;
        margin: 10rem auto 4.0rem;
        padding: 0 4vw;
        font-size: 1.8rem;
    }
    .game-title span {
        font-size: 3.0rem;
        padding-left: 0;
        display: block;
    }
    .game__p-index {
        display: block;
    }
    .game__p-index-bg::before {
        width: 100%;
        max-width: none;
        bottom: -3.2rem;
        height: 20rem;
    }
    .game__p-index img {
        width: 100%;
    }
    .game__p-index ul  {
        display: block;
        width: 100%;
        margin-top: 6.0rem;
    }
    .game__p-index ul li {
        font-size: 1.6rem;
    }
}
.section-schedule {
    margin-bottom: 14rem;
}
.section-title {
    display: flex;
    vertical-align: middle;
    gap: 6.0rem;
    text-align: left;
    padding-left: 2.0rem;
}
.section-title-wrapper {
    position: relative;
}
@media (max-width: 900px) {
    .section-title-wrapper {
        padding-bottom: 16px;
    }
}
.section-title-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #FFF;
    height: 1px;
    width: 100%;
    transform-origin: center top;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transform: scale(0, 1);
}
.section-title-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #FFF;
    height: 1px;
    width: 100%;
    transform-origin: center top;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transform: scale(0, 1);
}
@keyframes appearCentor {
    0% {
        transform: scale(0, 1);
    }
    100% {
        transform: scale(1, 1);
    }
  }
.section-title-wrapper.appearCentor::before, .section-title-wrapper.appearCentor::after {
    animation-name: appearCentor;
}
.section-title .title__main{
    font-family: 'League Gothic', sans-serif;
    font-weight: 400;
    font-size: clamp(64px,11vw,128px);
    display: inline-block;
    line-height: clamp(67px,11.5vw,134px);
}
.section-title .title__sub {
    font-size: clamp(16px,2vw,22px);
    font-weight: 700;
    line-height: clamp(67px,11.5vw,134px);
}
.title-green .title__main {
    background: linear-gradient(to right,#BFFF57,#5AFF9C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-schedule .entry {
    margin: 10rem 4vw 0;
}
.section-schedule .entry p {
    display: inline-block;
    font-size: 2.0rem;
    padding-bottom: 1.0rem;
    border-bottom: #FFF solid 2px;
}
.section-schedule .entry p span {
    font-size: clamp(20px,2.8vw,36px);
    font-weight: 600;
    padding-left: 3.0rem;
    color: #BFFF57;
}
.section-schedule .entry .btn-outer {
    max-width: 48rem;
    margin-top: 4.0rem;
}
.section-schedule .entry .btn-outer a {
    font-size: 3.6rem;
    padding: 3.4rem 0;
}
.schedule-box {
    margin-top: 8.0rem;
    padding: 8.0rem 4vw;
    background: #1E1E1E;
    border: #858585 solid 1px;
    text-align: left;
}
.schedule-box .sns-link {
    justify-content: left;
}
.grid-wrapper {
    display: grid;
}
.section-schedule .grid-wrapper {
    grid-template-columns: repeat(2,minmax(0,1fr));
    max-width: 100rem;
    margin-top: 7.0rem;
}
.left-block p {
    font-size: 3.2rem;
    vertical-align: middle;
}
.left-block p img {
    padding-right: 1.0rem;
}
.left-block p span {
    font-size: 1.8rem;
    padding: 0.6rem 1.4rem;
    border-radius: 5.0rem;
    margin-left: 2.0rem;
}
.left-block p .round-blue {
    background: #030BC5;
}
.left-block p .round-red {
    background: #D10D00;
}
.right-block .date {
    font-size: 2.6rem;
    font-weight: 600;
}
.right-block .description {
    margin-top: 3.2rem;
    font-weight: 400;
    font-size: 1.8rem;
}
@media(max-width:900px) {
    .section-title {
        display: block;
    }
    .section-title .title__main {
        line-height: normal;
    }
    .section-title .title__sub {
        line-height: clamp(16px,2vw,22px);
    }
    .entry p span {
        display: block;
    }
    .section-schedule .entry {
        margin: 6.0rem 4vw 0;
    }
    .section-schedule .entry p span {
        padding-left: 0rem;
    }
    .section-schedule .entry p {
        line-height: 30px;
        padding: 10px 20px;
    }
    .section-schedule .entry .btn-outer {
        max-height: 6.5rem;
    }
    .section-schedule .entry .btn-outer a {
        padding: 2.0rem 0;
    }
    .schedule-box {
        margin-top: 6.0rem;
        padding: 6.0rem 4vw;
    }
    .grid-wrapper {
        display: block;
    }
    .section-schedule .grid-wrapper {
        margin-top: 5.0rem;
    }
    .left-block p {
        font-size: 2.0rem;
    }
    .left-block p img {
        width: 1.3rem;
        height: 1.3rem;
    }
    .left-block p span {
        font-size: 1.4rem;
        padding: 0.6rem 1.4rem;
    }
    .right-block {
        margin-top: 3.0rem;
    }
    .right-block .date {
        font-size: 1.8rem;
    }
    .right-block .description {
        margin-top: 1.8rem;
        font-size: 1.6rem;
    }
}
.title-pink .title__main {
    background: linear-gradient(to right,#FF5BF8,#D70067);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 10rem 4vw 8.0rem ;
    gap: 2.6vw;
}
.section-ambassador .flex-wrapper::after {
    content: "";
    width: 30rem;
}
.flex-block {
    margin-bottom: 6.0rem;
}
.flex-block p {
    text-align: left;
}
.flex-block img {
    width: 30rem;
}
.flex-block .name {
    font-size: 2.0rem;
    font-weight: 500;
    margin: 1.4rem 0 2.0rem;
} 
.section-ambassador .sns-link img,.section-cast .sns-link img {
    width: 2.6rem;
}
@media(max-width:900px) {
    .flex-wrapper {
        margin: 7.0rem 4vw 5.0rem ;
    }
    .section-ambassador .flex-wrapper::after {
        content: "";
        width: 20rem;
    }
    .flex-block {
        margin-bottom: 5.0rem;
    }
    .flex-block img {
        width: 20rem;
    }
    .flex-block .name {
        font-size: 1.8rem;
    } 
}
.title-blue .title__main {
    background: linear-gradient(to right,#79E7FF,#0082E1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.flex-block .position {
    font-size: 3.2rem;
    font-weight: 500;
    margin-bottom: 2.0rem;
}
.flex-block:nth-of-type(1n) .position {
    color: #FF5BF8;
}
.flex-block:nth-of-type(2n) .position {
    color: #21DBFF;
}
@media(max-width:900px) {
    .flex-block .position {
        font-size: 2.2rem;
    }
}
.news-content-wrapper {
    margin: 8.0rem auto 12rem;
    max-width: 100rem;
    position: relative;
    padding: 0 2vw;
}
.news-content-wrapper ul {
    list-style: none;
    text-align: left;
}
.news-content-wrapper a {
    text-decoration: none;
    color: #FFF;
    display: inline-block;
}
.news-content-wrapper ul li  {
    font-size: 1.8rem;
    border-bottom: #FFF solid 1px;
}
.news-content-wrapper ul li a {
    padding: 2.0rem 0;
    width: 100%;
    font-size: 2.0rem;
}
.news-content-wrapper ul li time {
    color: #BFFF57;
    font-size: 2.2rem;
    padding-right: 6vw;
}
.news-content-wrapper .moreLink {
    margin: 4.0rem 0 0 auto;
    width: 17.2rem;
    display: block;
    font-size: 2.0rem;
}
.news-content-wrapper .arrow {
    position: relative;
    display: block;
    width: 100%;
    height: 0.2rem;
    background-color: #FFF;
    margin-top: 2.0rem;
}
.news-content-wrapper .arrow::before,.news-content-wrapper .arrow::after {
    content: "";
    position: absolute;
    right: -0.2rem;
    display: block;
    width: 1.6rem;
    height: 0.2rem;
    background-color: #FFF;
}
.news-content-wrapper .arrow::before {
    top: 0.5rem;
    transform: rotate(-40deg);
}
.news-content-wrapper .arrow::after {
    bottom: 0.5rem;
    transform: rotate(40deg);
}
@media(max-width:900px) {
    .news-content-wrapper {
        margin: 7.0rem auto 10rem;
    }
    .news-content-wrapper ul li a {
        font-size: 1.6rem;
    }
    .news-content-wrapper .moreLink {
        margin: 3.0rem 0 0 auto;
        width: 12rem;
        font-size: 1.6rem;
    }
    .news-content-wrapper ul li time {
        font-size: 1.8rem;
        display: block;
        margin-bottom: 1.5rem;
    }
    .news-content-wrapper .arrow::before,.news-content-wrapper .arrow::after {
        width: 1.4rem;
    }
}
.logo-img-outer {
    background-color: #FFF;
    position: relative;
}
.section-sponsor .logo-img-outer {
    width: 30rem;
    height: 14rem;
    margin-bottom: 6.0rem;
}
.section-sponsor .flex-wrapper {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2vw;
}
.section-sponsor .logo-img-outer img {
    height: 8.0rem;
}
.logo-img-outer img {
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
}
@media(max-width:900px) {
    .section-sponsor .logo-img-outer {
        width: 20rem;
        height: 10rem;
        margin-bottom: 5.0rem;
    }
    .section-sponsor .logo-img-outer img {
        height: auto;
        max-height: 7.0rem;
        max-width: 90%;
    }
}
.section-organizing .logo-img-outer {
    width: 40rem;
    height: 16rem;
    display: block;
    margin:  10rem auto 12rem;
}
.section-organizing .logo-img-outer img {
    height: 13rem;
}
@media(max-width:900px) {
    .section-organizing .logo-img-outer {
        width: 30rem;
        height: 10rem;
        margin:  7rem auto 12rem;
    }
    .section-organizing .logo-img-outer img {
        height: auto;
        max-height: 8.0rem;
        max-width: 90%;
    }
}