@charset "UTF-8";
@import url("//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers
*/
article,
aside,
main,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --color-txt-primary: #fff;
  --color-txt-secondary: #ba1998;
  --color-txt-link: #1993d2;
  --color-bg-primary: #1b3299;
  --color-site-yellow: #ffff00;
  --leading-trim: calc((1em - 1lh) / 2);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
  color: var(--color-txt-primary);
  background-color: #000;
  text-decoration-skip: none;
  -webkit-text-size-adjust: 100%;
  background-image: url(../images/common/bg.jpg);
  background-repeat: repeat-y;
  background-size: 100% auto;
}
@media only screen and (max-width: 768px) {
  body {
    background-image: url(../images/common/bg_sp.jpg);
  }
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

button {
  font-family: "Noto Sans JP", sans-serif;
}

@media only screen and (max-width: 768px) {
  .u-use--pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 769px) {
  .u-use--sp {
    display: none !important;
  }
}

.l-header {
  width: 100%;
  height: 70px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  background: linear-gradient(45deg, #003bbd 0%, #001c3e 100%);
}
@media print, screen and (min-width: 769px) {
  .l-header {
    /* height: 120px; */
    height: 100px;
  }
}
.l-header::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.l-header__inner {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100% - 40px);
  margin: 0 auto 0;
}
@media print, screen and (min-width: 769px) {
  .l-header__inner {
    width: min(98vw, 980px);
  }
}
.l-header__btn {
  width: 37px;
  height: 31px;
  position: relative;
  z-index: 20;
  background: none;
  border: 0;
  cursor: pointer;
}
@media print, screen and (min-width: 769px) {
  .l-header__btn {
    width: 42px;
    height: 36px;
  }
}
.l-header__btn.is_open .l-header__btn__line:nth-of-type(1) {
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
  transition: top 0.2s, rotate 0.4s;
}
.l-header__btn.is_open .l-header__btn__line:nth-of-type(2) {
  opacity: 0;
  transition: opacity 0.2;
}
.l-header__btn.is_open .l-header__btn__line:nth-of-type(3) {
  bottom: 50%;
  translate: 0 50%;
  rotate: -45deg;
  transition: bottom 0.2s, rotate 0.4s;
}
.l-header__btn__line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
}
.l-header__btn__line:nth-of-type(1) {
  top: 0;
  transition: top 0.4s, rotate 0.2s;
}
.l-header__btn__line:nth-of-type(2) {
  top: 50%;
  translate: 0 -50%;
  opacity: 1;
  transition: opacity 0.3s;
}
.l-header__btn__line:nth-of-type(3) {
  bottom: 0;
  transition: bottom 0.4s, rotate 0.2s;
}
@media print, screen and (min-width: 769px) {
  .l-header__btn__line {
    height: 4px;
  }
}

.l-article__inner {
  width: calc(100% - 40px);
  margin: 0 auto 0;
}
@media print, screen and (min-width: 769px) {
  .l-article__inner {
    width: min(98vw, 980px);
  }
}

.l-footer {
  width: 100%;
  /* height: 60px; */
  height: 80px;
  background: linear-gradient(45deg, #003bbd 0%, #001c3e 100%);
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-footer {
    height: 150px;
  }
}
.l-footer__inner {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  /* flex-direction: row; */
  flex-direction: column;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  justify-content: flex-start;
  width: calc(100% - 40px);
  margin: 0 auto 0;
  padding-top: 15px;
  text-align: center;
}
@media print, screen and (min-width: 769px) {
  .l-footer__inner {
    width: min(98vw, 980px);
  }
}
.l-footer__link {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-footer__link {
    margin-bottom: 5px;
  }
}

.c-btn--primary {
  position: relative;
  border: 1px solid;
  width: min(47.8571428571vw, 469px);
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .c-btn--primary {
    width: 100%;
  }
}
.c-btn--primary__link {
  background: linear-gradient(to left, #821978, #1993d2);
  padding: 20px 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-btn--primary__link {
    padding: 14px 0;
  }
}
.c-btn--primary__txt {
  /* font-size: 24px; */
  font-size: 20px;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .c-btn--primary__txt {
    /* font-size: 16px; */
    font-size: 15px;
  }
}
.c-btn--primary::after {
  content: "";
  background-image: url(../images/common/img_arrow_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 32px;
  position: absolute;
  top: calc(50% - 16px);
  right: 12px;
}
.c-btn--secondary {
  position: relative;
  border: 1px solid;
  width: min(30.612244898vw, 300px);
}
@media only screen and (max-width: 768px) {
  .c-btn--secondary {
    width: 300px;
    margin-inline: auto;
  }
  .c-btn--secondary:not(:last-of-type) {
    margin-bottom: 46px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .c-btn--secondary:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.c-btn--secondary__link {
  padding: 15px 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.c-btn--secondary__txt {
  font-size: clamp(1rem, -0.367rem + 2.84vw, 1.375rem);
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .c-btn--secondary__txt {
    font-size: 15px;
    line-height: 1.2;
  }
}
.c-btn--secondary::after {
  content: "";
  background-image: url(../images/common/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 21px;
  position: absolute;
  top: calc(50% - 10.5px);
  right: 15px;
}
@media only screen and (max-width: 768px) {
  .c-btn--secondary::after {
    width: 8px;
    height: 14px;
    top: calc(50% - 7px);
    right: 11px;
  }
}
.c-btn--secondary--big {
  width: 100%;
}
.c-btn--secondary--big .c-btn--secondary__link {
  padding: 14px 0;
}
.c-btn--secondary--big .c-btn--secondary__txt {
  font-size: clamp(1rem, -0.367rem + 2.84vw, 1.375rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.c-btn--secondary--big:not(:last-of-type) {
  margin-bottom: 26px;
}

.c-hd--pt01 {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
  text-align: center;
  font-weight: 900;
  background-position: center bottom;
  background-size: auto 58px;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .c-hd--pt01 {
    margin-bottom: 30px;
  }
}
.c-hd--pt01::before {
  font-size: 70px;
  letter-spacing: 0.2em;
  font-weight: 600;
  position: absolute;
  inset: 0;
  top: -55px;
  -webkit-text-stroke: 0.6px #ff00ff;
  color: #000;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
@media only screen and (max-width: 768px) {
  .c-hd--pt01::before {
    font-size: 45.5px;
    top: -35px;
  }
}
.c-hd--pt01__txt {
  position: relative;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  z-index: 1;
  text-transform: uppercase;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 36px;
}
@media only screen and (max-width: 768px) {
  .c-hd--pt01__txt {
    font-size: 32px;
    gap: 20px;
  }
}
.c-hd--pt01__txt::before {
  content: "";
  background-image: url(../images/common/bg_line01.svg);
  background-repeat: no-repeat;
  background-position: right center;
  width: 134px;
  height: 30px;
  background-size: auto 100%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .c-hd--pt01__txt::before {
    width: 87px;
    height: 20px;
  }
}
.c-hd--pt01__txt::after {
  content: "";
  background-image: url(../images/common/bg_line02.svg);
  background-repeat: no-repeat;
  background-position: left center;
  width: 134px;
  height: 30px;
  background-size: auto 100%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .c-hd--pt01__txt::after {
    width: 87px;
    height: 20px;
  }
}
.c-hd--pt01--schedule::before {
  content: "SCHEDULE";
}
.c-hd--pt01--news::before {
  content: "NEWS";
}
.c-hd--pt01--ranking::before {
  content: "RANKING";
}
.c-hd--pt01--about::before {
  content: "ABOUT";
}
.c-hd--pt01--movie::before {
  content: "MOVIE";
}
.c-hd--pt01--live::before {
  content: "LIVE";
}
.c-hd--pt01--finalist::before {
  content: "FINALIST";
}
.c-hd--pt01--tournament::before {
  content: "TOURNAMENT";
}
@media only screen and (max-width: 768px) {
  .c-hd--pt01--tournament::before {
    letter-spacing: 0;
  }
}
.c-hd--pt01--timetable::before {
  content: "TIMETABLE";
}
.c-hd--pt01--title::before {
  content: "TITLE";
}
.c-hd--pt01--entry::before {
  content: "ENTRY";
}
.c-hd--pt01--rule::before {
  content: "RULE";
}
.c-hd--pt01--faq::before {
  content: "Q&A";
}
.c-hd--pt01--community::before {
  content: "COMMUNITY";
}
@media only screen and (max-width: 768px) {
  .c-hd--pt01--community::before {
    letter-spacing: 0;
  }
}
.c-hd--pt01--entertainer::before {
  content: "ENTERTAINER";
}
@media only screen and (max-width: 768px) {
  .c-hd--pt01--entertainer::before {
    letter-spacing: 0;
  }
}
.c-hd--pt01--award::before {
  content: "AWARD";
}
.c-hd--pt01--sns::before {
  content: "SNS";
}
.c-hd--pt01--sponsorship::before {
  content: "SPONSORSHIP";
}
@media only screen and (max-width: 768px) {
  .c-hd--pt01--sponsorship::before {
    letter-spacing: 0;
  }
}
.c-hd--pt01--sponsored::before {
  content: "SPONSORED";
}
@media only screen and (max-width: 768px) {
  .c-hd--pt01--sponsored::before {
    letter-spacing: 0;
  }
}
.c-hd--pt01--archive::before {
  content: "ARCHIVE";
}
.c-hd--pt01--contact::before {
  content: "CONTACT";
}
.c-hd--pt02 {
  text-align: center;
  margin-bottom: 30px;
}
.c-hd--pt02__txt {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.c-hd--pt02__txt:before {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #fff;
  margin-right: 3rem;
}
.c-hd--pt02__txt:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #fff;
  margin-left: 3rem;
}
.c-hd--pt02 + .c-hd--pt03 {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .c-hd--pt02 + .c-hd--pt03 {
    margin-top: 36px;
  }
}
.c-hd--pt03 {
  width: 556px;
  border: 1px solid;
  display: grid;
  place-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  padding: 12px 0;
}
@media only screen and (max-width: 768px) {
  .c-hd--pt03 {
    width: 100%;
    margin: 0 auto 14px;
  }
}
.c-hd--pt03__txt {
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .c-hd--pt03__txt {
    font-size: 16px;
  }
}
.c-hd--pt04 {
  background-image: url(../images/common/img_frame.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 12px 0;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .c-hd--pt04 {
    background-image: url(../images/common/img_frame_sp.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    font-size: 16px;
    width: 100vw;
    margin: 0 calc(50% - 50vw) 30px;
  }
}
.c-hd--pt05 {
  text-align: center;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .c-hd--pt05 {
    font-size: 24px;
    line-height: 1.1666666667;
    margin-bottom: 38px;
  }
}
@media only screen and (max-width: 768px) {
  .c-hd--pt05--02 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 50px;
  }
}
.c-hd--pt06 {
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  /* margin-bottom: 30px; */
  margin: 30px 0;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .c-hd--pt06 {
    font-size: 18px;
    line-height: 1.2;
    /* margin-bottom: 26px; */
    margin: 26px 0;
  }
}
@media only screen and (max-width: 768px) {
  .c-hd--pt06--02 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 66px;
  }
}
/* 0814追記 */
.game_title {
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 500;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
}

.c-txt {
  line-height: 1.4375;
}
@media only screen and (max-width: 768px) {
  .c-txt {
    font-size: 15px;
  }
}
.c-txt--medium {
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .c-txt--medium {
    font-size: 16px;
    line-height: 1.6875;
  }
}
.c-txt--medium + .p-rule__btn {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .c-txt--medium + .p-rule__btn {
    margin-top: 36px;
  }
}
.c-txt--big {
  font-size: 36px;
  line-height: 1.8888888889;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-txt--big {
    font-size: 23.4px;
    line-height: 1.6666666667;
  }
}
.c-txt--big + .p-community__wrap {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .c-txt--big + .p-community__wrap {
    margin-top: 40px;
  }
}

.c-note__item {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .c-note__item {
    font-size: 15px;
  }
}
.c-note__item::before {
  content: "※";
}

.c-img {
  width: 100%;
  height: auto;
}
.c-img__wrapper--schedule {
  width: fit-content;
  margin: 0 auto 42px;
}
@media print, screen and (min-width: 769px) {
  .c-img__wrapper--figure {
    width: min(44.387755102vw, 435px);
  }
}
.c-img__wrapper--figure .c-img__caption {
  /* font-size: 16px; */
  line-height: 1.5;
  /* padding-top: 24px; */
  font-size: 12px;
  padding-top: 7px;
}

.p-sitetitle {
  line-height: 1;
  /* margin-left: min(30vw, 300px); */
}
/* @media print, screen and (max-width: 768px) {
  .p-sitetitle {
    margin-left: 0;
  }
} */

.p-sitetitle__main {
  font-size: 15px;
  font-weight: 700;
  /* margin-bottom: 8px; */
}
@media print, screen and (min-width: 769px) {
  .p-sitetitle__main {
    font-size: 30px;
    /* margin-bottom: 16px; */
  }
}
.p-sitetitle__sub {
  font-size: 14px;
}
@media print, screen and (min-width: 769px) {
  .p-sitetitle__sub {
    font-size: 16px;
  }
}

.p-gnav {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  background-color: #000;
  transition: opacity 0.2;
  padding: 50px 0 50px 15px;
  overflow-y: auto;
}
.p-gnav.is_open {
  pointer-events: initial;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s;
}
.p-gnav__list {
  width: 260px;
}
@media print, screen and (min-width: 769px) {
  .p-gnav__list {
    width: 600px;
    margin: auto;
  }
}
.p-gnav__item {
  font-size: 14px;
  border-bottom: 1px solid #707070;
}
.p-gnav__item:not(:last-child) {
  margin-bottom: 18px;
}
@media print, screen and (min-width: 769px) {
  .p-gnav__item {
    font-size: 20px;
  }
}
.p-gnav__link {
  display: block;
  padding: 0 10px 2px;
}

.p-jumbotron {
  height: 700px;
  background: url(../images/common/bg_mv.png) no-repeat center top;
  background-size: cover;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .p-jumbotron {
    padding: 40px 32px;
    height: auto;
    background-image: url(../images/common/bg_mv_sp.png);
  }
}
@media only screen and (max-width: 768px) {
  .p-jumbotron__txt {
    width: 278px;
  }
}
@media print, screen and (min-width: 769px) {
  .p-jumbotron__txt--first {
    width: 721px;
  }
}
@media print, screen and (min-width: 769px) {
  .p-jumbotron__txt--last {
    width: 400px;
  }
}
.p-jumbotron__txt__img {
  width: 100%;
}
.p-jumbotron__logo {
  width: 47.466vw;
  margin: 33px auto 48px;
}
@media print, screen and (min-width: 769px) {
  .p-jumbotron__logo {
    width: 233px;
    margin-top: 58px;
    margin-bottom: 58px;
  }
}
.p-jumbotron__logo__img {
  width: 100%;
}

.p-section {
  margin: auto;
  padding-top: 65px;
  scroll-margin-top: 65px;
}
@media print, screen and (min-width: 769px) {
  .p-section {
    padding-top: 150px;
  }
}
.p-section__inner {
  width: calc(100% - 40px);
  margin: 0 auto 0;
}
@media print, screen and (min-width: 769px) {
  .p-section__inner {
    width: min(98vw, 980px);
  }
}
.p-section--lead {
  padding: 36px 0;
  background: linear-gradient(to left, #ae00bf, #1b1464);
}
.p-section--lead .c-txt {
  text-align: center;
}
.p-section--bg {
  background-color: rgba(90, 4, 124, 0.5);
}
@media print, screen and (min-width: 769px) {
  .p-section--bg {
    padding: 120px 0 100px;
  }
}
.p-section--news,
.p-section--live,
.p-section--ranking,
.p-section--faq,
.p-section--contact {
  padding-bottom: 50px;
}
@media print, screen and (min-width: 769px) {
  .p-section--news,
  .p-section--live,
  .p-section--ranking,
  .p-section--faq,
  .p-section--contact {
    padding-bottom: 120px;
  }
}
@media only screen and (max-width: 768px) {
  .p-section--contact .p-section__inner,
  .p-section--sponsored .p-section__inner {
    width: 100%;
  }
}
.p-section--community {
  padding: 156px 0;
  background-image: url(../images/community/bg_community.jpg);
  background-size: 100%;
}
@media only screen and (max-width: 768px) {
  .p-section--community {
    padding: 80px 0 50px;
  }
}
@media print, screen and (min-width: 769px) {
  .p-section--community .p-section__inner {
    width: min(101vw, 1010px);
  }
  .p-section--community .p-section__inner .c-txt--big {
    letter-spacing: 0;
    font-size: clamp(25px, 3.564vw, 36px);
  }
}

.p-slider__item__thumb {
  /* width: 89.4897959184%; */
  width: 876px;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .p-slider__item__thumb {
    /* width: 300px; */
    width: 292px;
  }
}
.p-slider .swiper-button-prev::after,
.p-slider .swiper-button-next::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 5px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  vertical-align: middle;
  line-height: 1;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .p-slider .swiper-button-prev::after,
  .p-slider .swiper-button-next::after {
    width: 15px;
    height: 15px;
  }
}
.p-slider .swiper-button-prev::after {
  transform: translateX(25%) rotate(-135deg);
}
.p-slider .swiper-button-next::after {
  transform: translateX(-25%) rotate(45deg);
}
.p-slider + .c-hd--pt04 {
  margin-top: 54px;
}
.p-slider img {
  width: 100%;
  height: auto;
}

.p-news {
  background-color: var(--color-bg-primary);
  padding: 30px min(3.0612244898vw, 30px);
  margin-bottom: 64px;
}
.p-news__list {
  height: 390px;
  overflow-y: scroll;
  padding: 0 min(4.0816326531vw, 40px);
}
@media print, screen and (min-width: 769px) {
  .p-news__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: min(6.5306122449vw, 64px);
  }
}
.p-news__item:not(:last-of-type) {
  margin-bottom: 34px;
}
.p-news__date {
  font-size: 22px;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .p-news__date {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
}
.p-news__hd {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--color-txt-secondary);
}
@media only screen and (max-width: 768px) {
  .p-news__hd {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .p-news__txt {
    font-size: 14px;
  }
}
.p-news__txt__link {
  color: var(--color-txt-link);
  text-decoration: underline;
}

.p-lead__txt {
  text-align: center;
  font-size: 16px;
  line-height: 2.3125;
}
@media only screen and (max-width: 768px) {
  .p-lead__txt {
    font-size: 15px;
    line-height: 1.9333333333;
  }
}

.p-mv {
  padding: 70px 0 40px;
  background-image: url(../images/common/bg_mv.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  display: grid;
  justify-items: center;
  gap: 56px 0;
}

.p-ranking__hd {
  font-size: 36px;
  line-height: 1.2;
  color: var(--color-site-yellow);
  margin-bottom: 24px;
  text-align: center;
  font-weight: 700;
}
.p-ranking__name {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 60px;
  text-align: center;
  font-weight: 900;
}
@media only screen and (max-width: 768px) {
  .p-ranking__name {
    font-size: 24px;
    margin-bottom: 26px;
  }
}
.p-ranking__txt {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 18px;
}
@media only screen and (max-width: 768px) {
  .p-ranking__txt {
    font-size: 15px;
    line-height: 1.6;
  }
}
.p-ranking__img {
  width: min(47.9591836735vw, 470px);
  margin: 0 auto 62px;
}
@media only screen and (max-width: 768px) {
  .p-ranking__img {
    width: 100%;
    margin-bottom: 48px;
  }
}

.p-movie {
  position: relative;
  width: 100%;
  height: 564px;
  overflow: hidden;
  padding: 12.5px;
  border: 1px solid #fff;
}
@media only screen and (max-width: 768px) {
  .p-movie {
    height: auto;
  }
}
.p-movie video {
  width: 100%;
}

@media print, screen and (min-width: 769px) {
  .p-finalist__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, min(45.9183673469vw, 450px));
    /* gap: 60px min(4.0816326531vw, 40px); */
    gap: 40px min(4.0816326531vw, 40px);
    justify-content: center;
  }
}
.p-finalist__list + .c-hd--pt04 {
  margin-top: 68px;
}
.p-finalist__item__movie {
  position: relative;
  width: 100%;
  /* aspect-ratio: 45/28; */
  aspect-ratio: 16/9;
}
.p-finalist__item__movie video {
  width: 100%;
}
.p-finalist__item__caption {
  display: block;
  /* padding-top: 24px; */
  padding-top: 14px;
  text-align: center;
  /* font-size: 24px; */
  font-size: 22px;
}
@media only screen and (max-width: 768px) {
  .p-finalist__item__caption {
    font-size: 20px;
  }
}
.p-finalist__item:not(:last-of-type) {
  margin-bottom: 44px;
}

.p-timetable {
  display: grid;
  grid-template-columns: auto 68.3673469388%;
  gap: 35px 25px;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .p-timetable {
    gap: 24px 6px;
    grid-template-columns: auto 1fr;
  }
}
.p-timetable__time {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .p-timetable__time {
    font-size: 15px;
    line-height: 1.2;
  }
}
.p-timetable__txt {
  border: 1px solid;
  padding: 8px 0;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  margin-block: calc((1em - 1lh) / 2);
}
@media only screen and (max-width: 768px) {
  .p-timetable__txt {
    font-size: 15px;
    line-height: 1.2;
  }
}
.p-timetable + .c-note {
  width: min(81.6326530612vw, 800px);
  margin: 28px auto 0;
}
@media only screen and (max-width: 768px) {
  .p-timetable + .c-note {
    width: 100%;
  }
}

.p-title {
  display: flex;
  gap: min(7.7551020408vw, 76px);
}
@media only screen and (max-width: 768px) {
  .p-title {
    flex-direction: column;
    gap: 100px 0;
  }
}
@media print, screen and (min-width: 769px) {
  .p-title__item {
    width: calc(50% - min(7.7551020408vw, 76px) / 2);
    display: flex;
    flex-direction: column;
  }
}
/* 追記 */
.p-title__txt {
  flex-grow: 1;
}
.p-title__txt + .c-btn--secondary--big {
  margin-top: 16px;
}
.p-title .c-img__wrapper--figure + .p-title__txt {
  /* margin-top: 70px; */
  margin-top: 40px;
}

@media print, screen and (min-width: 769px) {
  .p-live__btn {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0 min(5.9183673469vw, 58px);
    justify-content: center;
    margin-bottom: 62px;
  }
}
.p-live__btn + .c-hd--pt05 {
  margin-top: 76px;
}
.p-live__btn + .c-hd--pt06 {
  margin-top: 42px;
}

.p-live__btn_one{gap: 0;}

.p-live__lead{
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  margin: 30px 0 20px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .p-live__lead {
    font-size: 16px;
    line-height: 1.2;
    margin: 26px 0 13px;
  }
}

.p-entry__txt {
  text-align: center;
}
.p-entry__txt:nth-of-type(2) {
  margin-top: 18px;
}
.p-entry__txt--big {
  font-size: 30px;
  line-height: 1.5;
  padding-right: 1em;
}
@media only screen and (max-width: 768px) {
  .p-entry__txt--big {
    display: block;
    font-size: 22px;
  }
}
.p-entry__txt--normal {
  font-size: 22px;
  line-height: 1.6363636364;
}
@media only screen and (max-width: 768px) {
  .p-entry__txt--normal {
    display: block;
    font-size: 16px;
  }
}
.p-entry__btns {
  margin-top: 60px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

@media print, screen and (min-width: 769px) {
  .p-rule__btn {
    display: grid;
    grid-template-columns: auto auto;
    gap: 34px min(7.8571428571vw, 77px);
    justify-content: center;
  }
}
.p-rule__btn .c-btn--secondary {
  width: min(44.2857142857vw, 434px);
}
@media only screen and (max-width: 768px) {
  .p-rule__btn .c-btn--secondary {
    width: 84.2%;
  }
}
.p-rule__btn .c-btn--secondary:first-of-type {
  grid-column: 1/3;
  margin-inline: auto;
}

.p-faq__contents {
  padding: 32px 10px 0 0;
  border-bottom: 1px solid;
}
.p-faq__contents[open] .p-faq__icon::after {
  transition: all 0.3s;
  transform: rotate(0);
}
.p-faq__hd {
  position: relative;
  font-size: 25px;
  line-height: 1.2;
  padding-bottom: 15px;
  cursor: pointer;
  list-style-type: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0 1em;
}
@media only screen and (max-width: 768px) {
  .p-faq__hd {
    font-size: 16px;
    line-height: 1.5;
  }
}
.p-faq__hd::before {
  content: "Q.";
  font-size: 25px;
}
@media only screen and (max-width: 768px) {
  .p-faq__hd::before {
    font-size: 16px;
    line-height: 1.5;
  }
}
.p-faq__hd::-webkit-details-marker {
  display: none;
}
.p-faq__icon {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid;
}
@media only screen and (max-width: 768px) {
  .p-faq__icon {
    width: 19.5px;
    height: 19.5px;
  }
}
.p-faq__icon::before,
.p-faq__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 19px;
  height: 2px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .p-faq__icon::before,
  .p-faq__icon::after {
    width: 11px;
  }
}
.p-faq__icon::after {
  transform: rotate(-90deg);
}
.p-faq__txt {
  position: relative;
  font-size: 20px;
  line-height: 1.2;
  padding-bottom: 20px;
  margin-left: 54px;
}
@media only screen and (max-width: 768px) {
  .p-faq__txt {
    font-size: 13px;
    line-height: 1.2;
    width: 77.9874213836%;
    margin: 0 auto;
  }
}
.p-faq__txt::before {
  content: "A.";
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .p-faq__txt::before {
    font-size: 13px;
  }
}

.p-community__wrap {
  background-image: url(../images/community/img_community_frame.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 93px 20px 45px;
  margin: 0 auto 56px;
}
@media only screen and (max-width: 768px) {
  .p-community__wrap {
    width: min(100%, 354px);
    height: min(66.1vw, 234px);
    background-image: url(../images/community/img_community_frame_sp.svg);
    background-repeat: no-repeat;
    padding: 65px 0 10px;
  }
}
.p-community__list {
  counter-reset: number 0;
}
@media print, screen and (min-width: 769px) {
  .p-community__list {
    padding: 0 1.9% 20px;
  }
}
@media only screen and (max-width: 768px) {
  .p-community__list {
    width: 74.1333333333%;
    margin: 0 auto;
  }
}
.p-community__item {
  font-size: clamp(0.813rem, -0.326rem + 2.37vw, 1.125rem);
  line-height: 1.95;
}
.p-community__item::before {
  counter-increment: number 1;
  content: counter(number) ". ";
}
@media only screen and (max-width: 768px) {
  .p-community__item {
    line-height: 1.7;
  }
}
.p-community__btns {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.p-entertainer__hd {
  text-align: center;
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .p-entertainer__hd {
    font-size: 15px;
  }
}
.p-entertainer__hd + .c-hd--pt06 {
  margin-top: 32px;
}
.p-entertainer__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-entertainer__list--01 {
  gap: 70px min(2.0408163265vw, 20px);
}
@media print, screen and (min-width: 769px) {
  .p-entertainer__list--01 {
    margin: 44px 0 116px;
  }
}
@media only screen and (max-width: 768px) {
  .p-entertainer__list--01 {
    gap: 55px 0;
    margin-bottom: 100px;
  }
}
.p-entertainer__list--02 {
  gap: 70px min(9.1836734694vw, 90px);
  margin-bottom: 58px;
}
@media only screen and (max-width: 768px) {
  .p-entertainer__list--02 {
    gap: 55px 0;
    margin-bottom: 72px;
  }
}
.p-entertainer__item {
  width: 230px;
  text-align: center;
}
.p-entertainer__figcaption {
  width: fit-content;
  margin: 22px auto 0;
}
@media only screen and (max-width: 768px) {
  .p-entertainer__figcaption {
    margin: 18px auto 0;
  }
}
.p-entertainer__figcaption--tag {
  display: block;
  font-size: 16px;
  padding-bottom: 6px;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .p-entertainer__figcaption--tag {
    font-size: 15px;
  }
}
.p-entertainer__figcaption--name {
  font-size: 20px;
  font-weight: 600;
}

.p-award__column {
  gap: 45px 0;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media print, screen and (min-width: 769px) {
  .p-award__column {
    gap: 56px min(13.0434782609vw, 78px);
  }
}
@media print, screen and (min-width: 769px) {
  .p-award__column__item {
    width: 260px;
  }
}
.p-award__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 45px 0;
  padding-bottom: 100px;
}
@media print, screen and (min-width: 769px) {
  .p-award__list--01 {
    gap: 56px min(13.2653061224vw, 130px);
    margin: 85px 0 75px;
  }
}
@media print, screen and (min-width: 769px) {
  .p-award__list--01 .p-award__item {
    width: 394px;
  }
}
@media print, screen and (min-width: 769px) {
  .p-award__list--01 .p-award__hd {
    font-size: 28px;
    line-height: 1.3214285714;
    margin-bottom: 22px;
  }
}
@media print, screen and (min-width: 769px) {
  .p-award__list--02 {
    gap: 56px min(7.9591836735vw, 78px);
    margin-top: 75px;
  }
}
@media print, screen and (min-width: 769px) {
  .p-award__list--02 .p-award__item {
    width: 260px;
  }
}
@media print, screen and (min-width: 769px) {
  .p-award__list--02 .p-award__hd {
    font-size: 20px;
    line-height: 1.45;
    margin-bottom: 10px;
  }
}
@media print, screen and (min-width: 769px) {
  .p-award__list--03 {
    margin-top: 55px;
  }
}
@media print, screen and (min-width: 769px) {
  .p-award__list--03 .p-award__hd {
    font-size: 20px;
    line-height: 1.45;
    margin-bottom: 10px;
  }
}
.p-award__item {
  text-align: center;
  width: 100%;
}
.p-award__hd {
  font-size: 24px;
  line-height: 1.375;
  margin-bottom: 24px;
}
.p-award__figcaption {
  padding-top: 18px;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .p-award__figcaption {
    font-size: 15px;
    line-height: 1.4666666667;
  }
}
.p-award__img {
  width: 100%;
  height: auto;
}

.p-sns {
  width: 83vw;
  height: 512px;
  margin: auto;
  overflow-y: scroll;
}
@media print, screen and (min-width: 769px) {
  .p-sns {
    width: 480px;
    height: 800px;
  }
}

.p-sponsorship {
  width: 100%;
  margin: auto;
}
.p-sponsorship:not(:last-child) {
  margin-bottom: 48px;
}
@media print, screen and (min-width: 769px) {
  .p-sponsorship {
    width: 770px;
  }
  .p-sponsorship:not(:last-child) {
    margin-bottom: 60px;
  }
}
.p-sponsorship__hd {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}
.p-sponsorship__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 20px;
  margin: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.p-sponsorship__list:not(:last-child) {
  margin-bottom: 25px;
}
@media print, screen and (min-width: 769px) {
  .p-sponsorship__list {
    gap: 25px;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
  }
  .p-sponsorship__list:not(:last-child) {
    margin-bottom: 35px;
  }
}
.p-sponsorship__list--large {
  width: 100%;
  grid-template-columns: 100%;
}
@media only screen and (max-width: 768px) {
  .p-sponsorship__list--large {
    padding-right: 0;
    padding-left: 0;
  }
}
.p-sponsorship__list--middle {
  width: 100%;
  grid-template-columns: 100%;
}
@media print, screen and (min-width: 769px) {
  .p-sponsorship__list--middle {
    width: 495px;
  }
}
@media only screen and (max-width: 768px) {
  .p-sponsorship__list--middle {
    padding-right: 0;
    padding-left: 0;
  }
}
.p-sponsorship__list--small {
  width: 80%;
  grid-template-columns: 100%;
}
@media print, screen and (min-width: 769px) {
  .p-sponsorship__list--small {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
  }
}
@media only screen and (max-width: 768px) {
  .p-sponsorship__list--small {
    padding-right: 0;
    padding-left: 0;
  }
}

.p-sponsorship__item{
  text-align: center;
}

.p-sponsorship__logo {
  width: 100%;
}
@media (hover: hover) {
  .p-sponsorship__link:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}

.p-sponsored {
  margin: auto;
}
.p-sponsored:not(:last-child) {
  margin-bottom: 50px;
}
.p-sponsored__hd {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}
.p-sponsored__txt {
  font-size: 26px;
  line-height: 1.19;
  text-align: center;
}
@media print, screen and (min-width: 769px) {
  .p-sponsored__txt {
    font-size: 30px;
  }
}
.p-sponsored__list {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
}
@media only screen and (max-width: 768px) {
  .p-sponsored__list {
    column-gap: 25px;
    margin: auto;
  }
}
.p-sponsored__item {
  width: 135px;
}
@media print, screen and (min-width: 769px) {
  .p-sponsored__item {
    width: 175px;
  }
}
.p-sponsored__item__center {
  margin: 0 auto;
}
.p-sponsored__logo {
  width: 100%;
}

.p-archive {
  width: calc(100% - 0px);
  margin: 0 auto 0;
}
@media print, screen and (min-width: 769px) {
  .p-archive {
    width: min(100vw, 950px);
  }
}
.p-archive__list {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 7.8%;
}
@media only screen and (max-width: 768px) {
  .p-archive__list {
    width: 86vw;
    row-gap: 24px;
    margin: auto;
    flex-direction: column;
  }
}
.p-archive__item {
  width: 100%;
}
@media print, screen and (min-width: 769px) {
  .p-archive__item {
    width: 46.1%;
  }
  .p-archive__item .c-btn {
    width: 100%;
  }
}

.p-contact {
  width: calc(100% - 0px);
  margin: 0 auto 0;
}
@media print, screen and (min-width: 769px) {
  .p-contact {
    width: min(100vw, 950px);
  }
}
.p-contact__name {
  font-size: 26px;
  line-height: 1.19;
  text-align: center;
  margin: 0 auto 40px;
}
@media print, screen and (min-width: 769px) {
  .p-contact__name {
    font-size: 30px;
    margin-bottom: 60px;
  }
}
.p-contact__list {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .p-contact__list {
    width: 72vw;
    margin: auto;
  }
}
.p-contact__item {
  width: 100%;
}
.p-contact__item .c-btn {
  width: 100%;
}
@media print, screen and (min-width: 769px) {
  .p-contact__item {
    width: 438px;
  }
}

.p-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media print, screen and (min-width: 769px) {
  .p-banner {
    /* left: 50%; */
    left: 55%;
    translate: 100% 0;
    width: 300px;
  }
}
@media (hover: hover) {
  .p-banner__link:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}
.p-banner__img {
  width: 100%;
  vertical-align: bottom;
}

.p-copyright {
  font-size: 16px;
  line-height: 1;
  margin-top: 5px;
}
@media only screen and (max-width: 768px) {
  .p-copyright {
    font-size: 12px;
    width: 100%;
    text-align: center;
  }
}
