@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-yellow: #ff0;
  --color-txt-blue: #1993d2;
  --color-txt-green: #39b529;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 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;
  color: var(--color-txt-primary);
  text-decoration-skip: none;
  -webkit-text-size-adjust: 100%;
  background: url(../images/bg_body_sp.png) repeat-y left top;
  background-size: 100% auto;
}
@media print, screen and (width > 768px) {
  body {
    background-image: url(../images/bg_body_pc.png);
  }
}

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

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

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

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

.l-header {
  width: 100%;
  height: 70px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  background: linear-gradient(#181d7d 0%, #001c3e 100%);
}
@media print, screen and (width > 768px) {
  .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;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  width: calc(100% - 30px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .l-header__inner {
    width: min(100vw, 990px);
  }
}
.l-header__btn {
  width: 37px;
  height: 31px;
  position: relative;
  z-index: 20;
  background: none;
  border: 0;
  cursor: pointer;
}
@media print, screen and (width > 768px) {
  .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 (width > 768px) {
  .l-header__btn__line {
    height: 4px;
  }
}

.l-main {
  padding-bottom: 45px;
}
@media print, screen and (width > 768px) {
  .l-main {
    padding-bottom: 135px;
  }
}

.l-footer {
  width: 100%;
  /* height: 60px; */
  height: 80px;
  background: linear-gradient(#181d7d 0%, #001c3e 100%);
  position: relative;
}
@media only screen and (width <= 768px) {
  .l-footer {
    height: 150px;
  }
}
.l-footer::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.l-footer__inner {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  /* justify-content: space-between; */
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  /* flex-direction: row; */
  flex-direction: column;
  width: calc(100% - 30px);
  margin: 0 auto 0;
  padding-top: 15px;
  text-align: center;
}
@media print, screen and (width > 768px) {
  .l-footer__inner {
    width: min(100vw, 990px);
  }
}
.l-footer__link {
  position: relative;
}
@media only screen and (width <= 768px) {
  .l-footer__link {
    margin-bottom: 5px;
  }
}

.c-btn {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid #fff;
  font-weight: 500;
}
.c-btn::after {
  position: absolute;
  top: 50%;
  content: "";
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  rotate: -45deg;
  translate: 0 -50%;
}
.c-btn--primary {
  font-size: 15px;
  line-height: 44px;
}
.c-btn--primary::after {
  width: 9px;
  height: 9px;
  right: 10px;
}
@media print, screen and (width > 768px) {
  .c-btn--primary {
    font-size: clamp(17px, 2.5vw, 24px);
    line-height: 73px;
  }
  .c-btn--primary::after {
    width: 14px;
    height: 14px;
    right: 16px;
  }
}
.c-btn--secondary {
  font-size: 16px;
  line-height: 35px;
}
.c-btn--secondary::after {
  width: 10px;
  height: 10px;
  right: 10px;
}

.c-hd--pt01 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 70px;
  text-align: center;
  font-weight: 900;
  height: 88px;
  background-position: center bottom;
  background-size: auto 58px;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 47px;
}
.c-hd--pt01__txt {
  position: relative;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  z-index: 1;
  text-transform: uppercase;
}
.c-hd--pt01__txt::before {
  content: "";
  background-image: url(../images/common/bg_line01.svg);
  background-repeat: no-repeat;
  width: 134px;
  height: 30px;
  background-size: contain;
  position: absolute;
  top: calc(0.5rem + 15px);
  left: -154px;
  z-index: -1;
}
.c-hd--pt01__txt::after {
  content: "";
  background-image: url(../images/common/bg_line02.svg);
  background-repeat: no-repeat;
  width: 134px;
  height: 30px;
  background-size: contain;
  position: absolute;
  top: calc(0.5rem + 15px);
  right: -154px;
  z-index: -1;
}
.c-hd--pt01--schedule {
  background-image: url(../images/common/title/txt_schedule.svg);
}
.c-hd--pt01--news {
  background-image: url(../images/common/title/txt_news.svg);
}
.c-hd--pt01--ranking {
  background-image: url(../images/common/title/txt_ranking.svg);
}
.c-hd--pt01--about {
  background-image: url(../images/common/title/txt_about.svg);
}
.c-hd--pt01--movie {
  background-image: url(../images/common/title/txt_movie.svg);
}
.c-hd--pt01--live {
  background-image: url(../images/common/title/txt_live.svg);
}
.c-hd--pt01--finalist {
  background-image: url(../images/common/title/txt_finalist.svg);
}
.c-hd--pt01--tournament {
  background-image: url(../images/common/title/txt_tournament.svg);
}
.c-hd--pt02 {
  text-align: center;
  margin-bottom: 30px;
}
.c-hd--pt02__txt {
  position: relative;
  font-size: 24px;
  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;
}
.c-hd--pt03 {
  width: 556px;
  border: 1px solid;
  display: grid;
  place-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  padding: 12px 0;
}
.c-hd--pt03__txt {
  font-size: 24px;
}
.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;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 12px 0;
  margin-bottom: 60px;
}
.c-hd--pt05 {
  text-align: center;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 30px;
}
.c-hd--pt06 {
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.c-txt {
  line-height: 1.4375;
}

.p-sitetitle {
  line-height: 1;
  /* margin-left: min(25vw, 250px); */
}

@media print, screen and (width < 769px) {
  .p-sitetitle {
    /* margin-left: 0; */
  }
}

.p-sitetitle__main {
  font-size: 15px;
  font-weight: 700;
  /* margin-bottom: 8px; */
}
@media print, screen and (width > 768px) {
  .p-sitetitle__main {
    font-size: 30px;
    /* margin-bottom: 16px; */
  }
}
.p-sitetitle__sub {
  font-size: 14px;
}
@media print, screen and (width > 768px) {
  .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 (width > 768px) {
  .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 (width > 768px) {
  .p-gnav__item {
    font-size: 20px;
  }
}
.p-gnav__link {
  display: block;
  padding: 0 10px 2px;
}

.p-jumbotron {
  height: 700px;
  background: url(../images/bg_mv_pc.png) no-repeat center top;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}
@media only screen and (width <= 768px) {
  .p-jumbotron {
    padding: 45px 10px;
    height: auto;
    background-image: url(../images/bg_mv_sp.png);
  }
}
@media only screen and (width <= 768px) {
  .p-jumbotron__txt {
    width: 278px;
  }
}
@media print, screen and (width > 768px) {
  .p-jumbotron__txt--first {
    width: 727px;
  }
}
@media print, screen and (width > 768px) {
  .p-jumbotron__txt--last {
    width: 495px;
  }
}
.p-jumbotron__txt__img {
  width: 100%;
}
.p-jumbotron__logo {
  width: 80vw;
  margin: 39px auto 33px;
}
@media print, screen and (width > 768px) {
  .p-jumbotron__logo {
    width: 375px;
    margin-top: 50px;
    margin-bottom: 55px;
  }
}
.p-jumbotron__logo__img {
  width: 100%;
}

.p-finish {
  position: relative;
  width: 100%;
  background: linear-gradient(#181d7d 0%, #001c3e 100%);
}
.p-finish::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
}
.p-finish__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 38px 0;
  text-align: center;
}
@media only screen and (width <= 768px) {
  .p-finish__inner {
    padding: 30px 15px;
  }
}
.p-finish__txt {
  line-height: 2.3125;
}
@media only screen and (width <= 768px) {
  .p-finish__txt {
    font-size: 15px;
    line-height: 1.9333;
  }
}

.p-section {
  padding-top: 65px;
  scroll-margin-top: 65px;
}
@media print, screen and (width > 768px) {
  .p-section {
    padding-top: 150px;
  }
}
.p-section--news,
.p-section--entry,
.p-section--ranking,
.p-section--award {
  padding-bottom: 50px;
}
@media print, screen and (width > 768px) {
  .p-section--news,
  .p-section--entry,
  .p-section--ranking,
  .p-section--award {
    padding-bottom: 120px;
  }
}
.p-section--ranking,
.p-section--award {
  background-color: rgba(24, 29, 125, 0.6);
}
.p-section__inner {
  overflow: hidden;
  width: calc(100% - 0px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-section__inner {
    width: min(100vw, 990px);
  }
}

.p-heading {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 60px;
  position: relative;
  display: grid;
  place-items: end center;
}
@media print, screen and (width > 768px) {
  .p-heading {
    margin-bottom: 100px;
  }
}
.p-heading__en {
  width: fit-content;
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}
@media print, screen and (width > 768px) {
  .p-heading__en {
    padding-bottom: 20px;
  }
}

.p-heading__title {
  grid-column: 1/2;
  grid-row: 1/2;
  align-self: end;
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 20px;
}
.p-heading__title::before,
.p-heading__title::after {
  content: "";
  width: 87px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.p-heading__title::before {
  background-image: url(../images/bg_title_left.svg);
  background-position: right center;
}
.p-heading__title::after {
  background-image: url(../images/bg_title_right.svg);
  background-position: left center;
}
@media print, screen and (width > 768px) {
  .p-heading__title {
    font-size: 48px;
    gap: 36px;
  }
  .p-heading__title::before,
  .p-heading__title::after {
    width: 134px;
    height: 30px;
  }
}
@media only screen and (width <= 768px) {
  .p-heading__title {
    width: 100%;
    padding: 0 15px;
    overflow: hidden;
  }
}

.p-schedule {
  margin: auto;
  display: grid;
  grid-template-columns: 100%;
  width: calc(100% - 0px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-schedule {
    width: min(100vw, 850px);
  }
}
@media print, screen and (width > 768px) {
  .p-schedule {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 50px 3.52%;
  }
}
.p-schedule__title {
  font-size: 24px;
  line-height: 1.16;
  font-weight: 500;
  color: var(--color-txt-yellow);
  text-align: right;
}
@media only screen and (width <= 768px) {
  .p-schedule__title {
    text-align: center;
    margin-bottom: 10px;
  }
}
.p-schedule__content {
  font-weight: 700;
}
@media only screen and (width <= 768px) {
  .p-schedule__content {
    text-align: center;
  }
  .p-schedule__content:not(:last-child) {
    margin-bottom: 50px;
  }
}
.p-schedule__content--entry {
  font-size: 23px;
}
@media print, screen and (width > 768px) {
  .p-schedule__content--entry {
    font-size: clamp(16px, 2.5vw, 23px);
  }
}
.p-schedule__content--result {
  font-size: 48px;
}
@media print, screen and (width > 768px) {
  .p-schedule__content--result {
    font-size: clamp(40px, 5.3vw, 48px);
  }
}
.p-schedule__content--championship {
  font-size: 30px;
}
@media print, screen and (width > 768px) {
  .p-schedule__content--championship {
    font-size: clamp(45px, 5.7vw, 52px);
  }
}
.p-schedule__content--place {
  font-size: 40px;
}
@media print, screen and (width > 768px) {
  .p-schedule__content--place {
    font-size: clamp(45px, 5.7vw, 52px);
  }
}
.p-schedule__year {
  font-size: 34px;
}
@media print, screen and (width > 768px) {
  .p-schedule__year {
    font-size: clamp(28px, 3.7vw, 34px);
  }
}
.p-schedule__day {
  font-size: 41px;
}
@media print, screen and (width > 768px) {
  .p-schedule__day {
    font-size: clamp(35px, 4.5vw, 41px);
  }
}
.p-schedule__date {
  font-size: 44px;
}
@media print, screen and (width > 768px) {
  .p-schedule__date {
    font-size: clamp(69px, 8.4vw, 76px);
  }
}
.p-schedule__address {
  font-size: 16px;
}
@media print, screen and (width > 768px) {
  .p-schedule__address {
    font-size: clamp(16px, 2.4vw, 22px);
  }
}

.p-news {
  width: calc(100% - 30px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-news {
    width: min(100vw, 990px);
  }
}
.p-news__body {
  height: 400px;
  padding: 20px 15px 20px 20px;
  background-color: #1b3270;
}
@media print, screen and (width > 768px) {
  .p-news__body {
    height: 450px;
    padding: 40px 3.03% 35px 7.07%;
  }
}
.p-news__inner {
  overflow-y: auto;
  height: 100%;
  padding-right: 15px;
  /*スクロールバーの動く部分*/
}
.p-news__inner::-webkit-scrollbar {
  width: 6px;
  border: 1px solid #fff;
}
.p-news__inner::-webkit-scrollbar-track {
  border-radius: 0;
  box-shadow: 0;
}
.p-news__inner::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0;
}
@media print, screen and (width > 768px) {
  .p-news__inner {
    padding-right: 11%;
  }
}
.p-news__item:not(:last-child) {
  margin-bottom: 35px;
}
@media print, screen and (width > 768px) {
  .p-news__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 8.22%;
  }
}
.p-news__time {
  font-size: 22px;
  line-height: 1;
}
@media only screen and (width <= 768px) {
  .p-news__time {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.p-news__hd {
  font-size: 18px;
  line-height: 1.16;
  color: var(--color-txt-yellow);
  margin-bottom: 10px;
}
@media print, screen and (width > 768px) {
  .p-news__hd {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.p-news__txt {
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 5px;
}
@media print, screen and (width > 768px) {
  .p-news__txt {
    font-size: 16px;
  }
}
.p-news__link {
  font-size: 14px;
  color: var(--color-txt-blue);
  display: block;
  width: fit-content;
  text-decoration: underline;
}
@media print, screen and (width > 768px) {
  .p-news__link {
    font-size: 16px;
  }
}
.p-news__bottom {
  margin: 45px auto 0;
}
@media print, screen and (width > 768px) {
  .p-news__bottom {
    width: 470px;
    margin-top: 55px;
  }
}

.p-ranking {
  width: 84vw;
  margin: 0 auto;
}
.p-ranking:not(:last-child) {
  margin-bottom: 40px;
}
@media print, screen and (width > 768px) {
  .p-ranking {
    width: 800px;
  }
  .p-ranking:not(:last-child) {
    margin-bottom: 90px;
  }
}
.p-ranking__hd {
  font-size: 23px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 7px;
}
@media print, screen and (width > 768px) {
  .p-ranking__hd {
    font-size: 36px;
    margin-bottom: 13px;
  }
}
.p-ranking__hd--first {
  color: var(--color-txt-yellow);
}
.p-ranking__hd--second {
  color: var(--color-txt-green);
}
.p-ranking__name {
  font-size: 23px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
}
@media print, screen and (width > 768px) {
  .p-ranking__name {
    font-size: 36px;
    margin-bottom: 35px;
  }
}
.p-ranking__comment {
  font-size: 15px;
  margin-bottom: 15px;
}
@media print, screen and (width > 768px) {
  .p-ranking__comment {
    font-size: 16px;
    margin-bottom: 35px;
  }
}
.p-ranking__photo {
  width: 100%;
  margin: auto;
}
@media print, screen and (width > 768px) {
  .p-ranking__photo {
    width: 470px;
  }
}
.p-ranking__img {
  width: 100%;
}

.p-live {
  width: 80vw;
  display: grid;
  margin: 0 auto;
  gap: 45px 8.78%;
}
@media print, screen and (width > 768px) {
  .p-live {
    width: 660px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-about {
  width: 84vw;
  margin: 0 auto;
}
@media print, screen and (width > 768px) {
  .p-about {
    width: 800px;
  }
}

.p-movie {
  width: 74.133vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 100%;
  gap: 40px 3%;
}
@media print, screen and (width > 768px) {
  .p-movie {
    /* width: 900px;
    grid-template-columns: repeat(3, 1fr); */
    width: min(74.666vw, 600px);
  }
}
.p-movie__frame {
  position: relative;
  aspect-ratio: 280/165;
  margin-bottom: 20px;
}
@media print, screen and (width > 768px) {
  .p-movie__frame {
    aspect-ratio: 600/350;
  }
}
iframe {
  width: 100%;
  height: 100%;
}
.p-movie__img {
  width: 100%;
}
.p-movie__caption {
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.p-competitor {
  width: 59.2vw;
  /* width: 85.333vw; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 100%;
  gap: 45px;
}
@media print, screen and (width > 768px) {
  .p-competitor {
    width: min(100vw, 915px);
    grid-template-columns: repeat(2, 1fr);
    gap: 65px 6.55%;
  }
}
.p-competitor__item {
  display: grid;
  grid-template-columns: 100%;
  gap: 15px;
  place-items: start center;
}
@media print, screen and (width > 768px) {
  .p-competitor__item {
    grid-template-columns: 185px 1fr;
    gap: 20px;
  }
}
.p-competitor__photo {
  width: 185px;
  position: relative;
  padding: 0 10px 10px 0;
}
.p-competitor__photo::before {
  content: "";
  width: 135px;
  height: 215px;
  background-color: var(--color-txt-yellow);
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
@media only screen and (width <= 768px) {
  .p-competitor__photo {
    width: 49.333vw;
    /* width: 85.333vw; */
  }
  .p-competitor__photo::before {
    width: 36vw;
    height: 57.333vw;
  }
}
.p-competitor__img {
  width: 100%;
  position: relative;
  z-index: 2;
}
.p-competitor__name {
  font-size: 28px;
  font-weight: bold;
}
.p-competitor__position {
  font-size: 18px;
  margin-bottom: 2px;
}
.p-competitor__winner {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-txt-yellow);
  margin-bottom: 2px;
}
.p-competitor__comment {
  font-size: 15px;
  border-top: 2px solid #fff;
  padding-top: 5px;
  margin-top: 8px;
}
@media print, screen and (width > 768px) {
  .p-competitor__comment {
    font-size: 16px;
  }
}

.p-onlinewinner {
  margin: 0 auto;
}
@media print, screen and (width > 768px) {
  .p-onlinewinner {
    width: 645px;
  }
  .p-onlinewinner .p-competitor {
    width: 100%;
    grid-template-columns: 100%;
  }
  .p-onlinewinner .p-competitor__item {
    grid-template-columns: 220px 1fr;
    /* grid-template-columns: 100%; */
    gap: 35px;
  }
  .p-onlinewinner .p-competitor__photo {
    width: 220px;
    /* width: 100%; */
    padding: 0 12px 12px 0;
  }
  .p-onlinewinner .p-competitor__photo::before {
    width: 158px;
    height: 252px;
  }
  .p-onlinewinner .p-competitor__desc {
    align-self: center;
  }
  .p-onlinewinner .p-competitor__winner {
    display: inline;
    margin-right: 10px;
  }
  .p-onlinewinner .p-competitor__name {
    font-size: 36px;
    display: inline;
  }
  .p-onlinewinner .p-competitor__comment {
    margin-top: 15px;
  }
}

.p-gametitle {
  width: 85.333vw;
  margin: 0 auto;
}
@media print, screen and (width > 768px) {
  .p-gametitle {
    width: min(100vw, 915px);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.p-gametitle__thumbnail {
  width: 355px;
}
@media only screen and (width <= 768px) {
  .p-gametitle__thumbnail {
    width: 70.666vw;
    margin: 0 auto 35px;
  }
}
.p-gametitle__img {
  width: 100%;
}
.p-gametitle__copyright {
  font-size: 12px;
  line-height: 1;
  margin-top: 7px;
}
@media print, screen and (width > 768px) {
  .p-gametitle__copyright {
    font-size: 16px;
  }
}
.p-gametitle__desc {
  width: 100%;
}
@media print, screen and (width > 768px) {
  .p-gametitle__desc {
    width: calc(100% - 390px);
  }
}
.p-gametitle__hd {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
@media print, screen and (width > 768px) {
  .p-gametitle__hd {
    font-size: 33px;
    padding-top: 15px;
  }
}
.p-gametitle__txt {
  font-size: 15px;
}
@media print, screen and (width > 768px) {
  .p-gametitle__txt {
    font-size: 16px;
  }
}

.p-category {
  text-align: center;
}
.p-category__hd {
  font-size: 28px;
  margin-bottom: 18px;
}
@media print, screen and (width > 768px) {
  .p-category__hd {
    font-size: 36px;
  }
}
.p-category__txt {
  font-size: 20px;
}
.p-category__txt:not(:last-child) {
  margin-bottom: 45px;
}
@media print, screen and (width > 768px) {
  .p-category__txt {
    font-size: 24px;
  }
  .p-category__txt:not(:last-child) {
    margin-bottom: 64px;
  }
}

.p-video {
  width: min(74.666vw, 600px);
  margin: auto;
}
.p-video:not(:last-child) {
  margin-bottom: 65px;
}
@media print, screen and (width > 768px) {
  .p-video:not(:last-child) {
    margin-bottom: 130px;
  }
}
.p-video__hd {
  font-size: 28px;
  text-align: center;
  margin-bottom: 25px;
}
@media print, screen and (width > 768px) {
  .p-video__hd {
    font-size: 36px;
    margin-bottom: 35px;
  }
}
.p-video__frame {
  position: relative;
  aspect-ratio: 280/165;
}
@media print, screen and (width > 768px) {
  .p-video__frame {
    aspect-ratio: 600/350;
  }
}
video {
  width: 100%;
}
.p-video__img {
  width: 100%;
}

@media print, screen and (width > 768px) {
  .p-entry {
    width: 750px;
    margin: auto;
  }
}
@media print, screen and (width > 768px) {
  .p-entry__about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 30px 24px;
  }
}
@media only screen and (width <= 768px) {
  .p-entry__about {
    text-align: center;
  }
}
.p-entry__about__title {
  font-size: 24px;
  color: var(--color-txt-yellow);
}
@media print, screen and (width > 768px) {
  .p-entry__about__title {
    width: 150px;
    text-align: right;
  }
}
@media only screen and (width <= 768px) {
  .p-entry__about__title {
    display: block;
    margin-bottom: 16px;
  }
}
@media print, screen and (width > 768px) {
  .p-entry__about__content {
    width: calc(100% - 174px);
  }
}
@media only screen and (width <= 768px) {
  .p-entry__about__content {
    display: block;
  }
  .p-entry__about__content:not(:last-child) {
    margin-bottom: 55px;
  }
}
.p-entry__about__year {
  font-size: 43px;
  font-weight: 700;
}
.p-entry__about__date {
  font-size: 51px;
  font-weight: 700;
}
.p-entry__about__week {
  font-size: 29px;
  font-weight: 700;
}
.p-entry__about__time {
  font-size: 51px;
  font-weight: 700;
}
.p-entry__about__until {
  font-size: 36px;
  font-weight: 700;
}
.p-entry__about__txt {
  font-size: 28px;
  line-height: 1.5;
}
@media print, screen and (width > 768px) {
  .p-entry__about__txt {
    /* font-size: 36px; */
    font-size: 30px;
  }
}
.p-entry__links {
  width: 88vw;
  margin: 55px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 28px;
}
@media print, screen and (width > 768px) {
  .p-entry__links {
    width: 470px;
    margin-top: 60px;
    gap: 40px;
  }
}
.p-entry__links__item {
  width: 100%;
}
.p-entry__inner {
  margin: 150px auto 0;
}
@media only screen and (width <= 768px) {
  .p-entry__inner {
    width: 80vw;
    margin-top: 60px;
  }
}
.p-entry__hd {
  font-size: 28px;
  text-align: center;
  margin-bottom: 35px;
}
@media print, screen and (width > 768px) {
  .p-entry__hd {
    font-size: 36px;
    margin-bottom: 65px;
  }
}
.p-entry__flow__title {
  font-size: 23px;
  line-height: 1.17;
  color: var(--color-txt-yellow);
  font-weight: 700;
  position: relative;
  padding: 0 0 18px 80px;
  background: url(../images/bg_flow.svg) no-repeat left bottom;
  background-size: auto 41px;
}
@media print, screen and (width > 768px) {
  .p-entry__flow__title {
    font-size: 30px;
    padding-left: 110px;
    background-size: auto 51px;
  }
}
.p-entry__flow__number {
  font-size: 45px;
  line-height: 1;
  position: absolute;
  left: 35px;
  bottom: 15px;
}
@media print, screen and (width > 768px) {
  .p-entry__flow__number {
    font-size: 53px;
    left: 45px;
  }
}
.p-entry__flow__content {
  font-size: 15px;
  padding: 20px 0 0 25px;
}
.p-entry__flow__content:not(:last-child) {
  margin-bottom: 50px;
}
@media print, screen and (width > 768px) {
  .p-entry__flow__content {
    font-size: 16px;
    padding-left: 110px;
  }
}
.p-entry__rule {
  margin: 100px auto 0;
}
@media print, screen and (width > 768px) {
  .p-entry__rule {
    margin-top: 150px;
  }
}
.p-entry__rule__hd {
  font-size: 19px;
  text-align: center;
  line-height: 1.78;
  margin-bottom: 35px;
}
@media print, screen and (width > 768px) {
  .p-entry__rule__hd {
    font-size: 25px;
    line-height: 1.48;
  }
}
.p-entry__rule__list {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
}
@media only screen and (width <= 768px) {
  .p-entry__rule__list {
    width: 72vw;
    flex-direction: column;
    gap: 25px;
  }
}
.p-entry__rule__item {
  width: 100%;
}
@media print, screen and (width > 768px) {
  .p-entry__rule__item {
    width: 335px;
  }
  .p-entry__rule__item .c-btn {
    font-size: clamp(17px, 2.2vw, 22px);
  }
}

.p-award:not(:last-child) {
  margin-bottom: 100px;
}
@media print, screen and (width > 768px) {
  .p-award:not(:last-child) {
    margin-bottom: 120px;
  }
}
.p-award__inner:not(:last-child) {
  margin-bottom: 45px;
}
@media print, screen and (width > 768px) {
  .p-award__inner:not(:last-child) {
    margin-bottom: 90px;
  }
}
.p-award__hd {
  font-size: 36px;
  text-align: center;
}
.p-award__hd--main {
  font-weight: 700;
  color: var(--color-txt-yellow);
  border: 1px solid;
  width: fit-content;
  min-width: 280px;
  margin: 0 auto 45px;
  padding: 6px 12px;
}
@media only screen and (width <= 768px) {
  .p-award__hd--main {
    font-size: 28px;
  }
}
.p-award__hd--sub {
  margin-bottom: 35px;
}
@media print, screen and (width > 768px) {
  .p-award__hd--sub {
    margin-bottom: 85px;
  }
}
.p-award__list {
  width: 77.3vw;
  margin: auto;
  display: grid;
  grid-template-columns: 100%;
  gap: 34px;
}
@media print, screen and (width > 768px) {
  .p-award__list {
    gap: 110px;
    width: calc(100% - 0px);
    margin: 0 auto 0;
  }
}
@media print, screen and (width > 768px) and (width > 768px) {
  .p-award__list {
    width: min(100vw, 700px);
  }
}
.p-award__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 25px 50px;
}
@media only screen and (width <= 768px) {
  .p-award__item {
    flex-direction: column;
  }
}
.p-award__thumbnail {
  width: 100%;
}
@media print, screen and (width > 768px) {
  .p-award__thumbnail {
    width: 280px;
  }
}
.p-award__desc {
  width: 100%;
}
@media print, screen and (width > 768px) {
  .p-award__desc {
    flex: 1 0 1%;
  }
}
.p-award__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-award__name {
  font-size: 24px;
  line-height: 1.35;
  margin-bottom: 10px;
}
@media print, screen and (width > 768px) {
  .p-award__name {
    font-size: 28px;
    margin-bottom: 35px;
  }
}
@media only screen and (width <= 768px) {
  .p-award__txt {
    font-size: 15px;
  }
}

.p-entertainer {
  width: calc(100% - 0px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-entertainer {
    width: min(100vw, 950px);
  }
}
.p-entertainer:not(:last-child) {
  margin-bottom: 100px;
}
@media print, screen and (width > 768px) {
  .p-entertainer:not(:last-child) {
    margin-bottom: 120px;
  }
}
.p-entertainer__hd {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
}
.p-entertainer__list {
  width: 52.2vw;
  margin: auto;
  display: grid;
  grid-template-columns: 100%;
  gap: 60px;
}
@media print, screen and (width > 768px) {
  .p-entertainer__list {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 5%;
  }
}
/* .p-entertainer__list .p-entertainer__item1,.p-entertainer__list .p-entertainer__item2{
  grid-column: auto;
} */
.p-entertainer__list .p-entertainer__item1{
  grid-column: auto;
}
@media print, screen and (width > 768px) {
  .p-entertainer__list .p-entertainer__item1 {
    grid-column: 2 / 3;
  }
}
.p-entertainer__list .p-entertainer__item2{
  grid-column: auto;
}
@media print, screen and (width > 768px) {
  .p-entertainer__list .p-entertainer__item2 {
    grid-column: 3 / 4;
  }
}
.p-entertainer__photo {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
@media print, screen and (width > 768px) {
  .p-entertainer__photo {
    margin-bottom: 20px;
  }
}
.p-entertainer__title {
  font-size: 16px;
  text-align: center;
  line-height: 1;
  margin-bottom: 5px;
}
.p-entertainer__name {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
@media print, screen and (width > 768px) {
  .p-entertainer__name {
    margin-bottom: 20px;
  }
}
.p-entertainer__comment {
  font-size: 16px;
  margin-bottom: 15px;
}

.p-sns {
  width: calc(100% - 30px);
  height: 355px;
  margin: auto;
  overflow-y: scroll;
}
@media print, screen and (width > 768px) {
  .p-sns {
    width: 500px;
    height: 550px;
  }
}

.p-sponsorship {
  width: calc(100% - 0px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-sponsorship {
    width: min(100vw, 950px);
  }
}
.p-sponsorship:not(:last-child) {
  margin-bottom: 48px;
}
@media print, screen and (width > 768px) {
  .p-sponsorship:not(:last-child) {
    margin-bottom: 60px;
  }
}
.p-sponsorship__hd {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}
.p-sponsorship__list {
  width: 80vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 20px;
  margin: auto;
}
.p-sponsorship__list:not(:last-child) {
  margin-bottom: 25px;
}
@media print, screen and (width > 768px) {
  .p-sponsorship__list {
    width: 770px;
    gap: 35px;
    grid-template-columns: repeat(4, 1fr);
  }
  .p-sponsorship__list:not(:last-child) {
    margin-bottom: 35px;
  }
}
.p-sponsorship__list--large {
  width: 100%;
  grid-template-columns: 100%;
}
@media only screen and (width <= 768px) {
  .p-sponsorship__list--large {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-sponsorship__list--middle {
  width: 100%;
  grid-template-columns: 100%;
}
@media print, screen and (width > 768px) {
  .p-sponsorship__list--middle {
    width: 495px;
  }
}
@media only screen and (width <= 768px) {
  .p-sponsorship__list--middle {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-sponsorship__list--small {
  width: 80%;
  grid-template-columns: 100%;
}
@media print, screen and (width > 768px) {
  .p-sponsorship__list--small {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (width <= 768px) {
  .p-sponsorship__list--small {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.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 {
  width: calc(100% - 0px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-sponsored {
    width: min(100vw, 950px);
  }
}
.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 (width > 768px) {
  .p-sponsored__txt {
    font-size: 30px;
  }
}
.p-sponsored__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  column-gap: 20px;
}
@media only screen and (width <= 768px) {
  .p-sponsored__list {
    column-gap: 25px;
    margin: auto;
  }
}
.p-sponsored__item {
  width: 135px;
}
@media print, screen and (width > 768px) {
  .p-sponsored__item {
    width: 175px;
  }
}
.p-sponsored__logo {
  width: 100%;
}

.p-archive {
  width: calc(100% - 0px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .p-archive {
    width: min(100vw, 950px);
  }
}
.p-archive__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 30px 7.8%;
}
@media only screen and (width <= 768px) {
  .p-archive__list {
    width: 86vw;
    row-gap: 24px;
    margin: auto;
    flex-direction: column;
  }
}
.p-archive__item {
  width: 100%;
}
@media print, screen and (width > 768px) {
  .p-archive__item {
    width: 46.1%;
  }
  .p-archive__item .c-btn {
    font-size: clamp(17px, 2.3vw, 22px);
    text-align: left;
    padding-left: 30px;
  }
}

.p-contact {
  width: calc(100% - 0px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .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 (width > 768px) {
  .p-contact__name {
    font-size: 30px;
    margin-bottom: 60px;
  }
}
.p-contact__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}
@media only screen and (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 (width > 768px) {
  .p-contact__item {
    width: 438px;
  }
}

.p-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media print, screen and (width > 768px) {
  .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 (width <= 768px) {
  .p-copyright {
    font-size: 12px;
    width: 100%;
    text-align: center;
  }
}

.txt_link {
  width: 100%;
  font-size: 18px;
  text-align: center;
  margin: 0 auto 30px;
}
.txt_link_a {
  border-bottom: 1px solid #fff;
}
