@charset "utf-8";

body {
  width: 100%;
  font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.75em;
  overflow-x: hidden;
}

@media screen and (max-width: 1290px) { 
  body {
    width: 1290px;
    overflow-x: auto;
  }
}

@media screen and (max-width:768px) { 
  body {
    width: 100%;
    overflow-x: hidden;
  }
}

img {
  width: 100%;
  height: auto;
}

body > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  z-index: -1;
}

a {
  transition: .25s;
}

br.forPc {
  display: inline;
}
br.forSp {
  display: none;
}
@media screen and (max-width:768px) {
  br.forPc {
    display: none;
  }
  br.forSp {
    display: inline;
  }
}

sup {
  font-size: 110%;
  top: 0;
}

.inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4%;
  
}
.wrap {
  display: flex;
  flex-wrap: wrap;
}

.c-btn {
  background-color: #000;
  color: #fff;
}
.c-btn::after {
  background-color: #fff;
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  height: calc(tan(60deg) * 9px / 2);
  width: 7px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
  transition: .25s;
}
.c-btn:hover {
  background-color: #FFFF00;
  color: #000;
}
.c-btn:hover::after {
  background-color: #000;
}
.c-btn p {
  color: #fff;
}
.c-btn:hover p {
  color: #000;
}

.hamburgerBtn {
  background-color: #223C67;
  position: fixed;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  /* background: linear-gradient(225deg, #d498f5 0%, #975dbc 100%); */
  cursor: pointer;
  z-index: 20;
  transition: .25s;
}
.hamburgerBtn.open {
  background: rgba(255,255,255,0);
}
.hamburgerBtn span {
  position: absolute;
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  transition: 0.25s;
}
.hamburgerBtn span:first-of-type {
  top: 18px;
  left: 20px;
}
.hamburgerBtn span:last-of-type {
  top: 30px;
  left: 20px;
}
.hamburgerBtn.open span:first-of-type {
  top: 24px;
  left: 18px;
  width: 34px;
  transform: rotate(30deg);
}
.hamburgerBtn.open span:last-of-type {
  top: 24px;
  left: 18px;
  width: 34px;
  transform: rotate(-30deg);
}
.hamburgerBtn p {
  position: absolute;
  bottom: 18px;
  left: 20px;
  width: 30px;
  height: 10px;
  background: url("../img/common/btn_menu.png") center no-repeat;
  background-size: 100%;
  transition: 0.25s;
}
.hamburgerBtn.open p {
  background: url("../img/common/btn_close.png") center no-repeat;
  background-size: 100%;
}

@media screen and (max-width:768px) { 
  .hamburgerBtn {
    top: 0;
    right: auto;
    left: 0;
    width: 50px;
    height: 50px;
  }
  .hamburgerBtn span {
    position: absolute;
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    transition: 0.25s;
  }
  .hamburgerBtn span:first-of-type {
    top: 11px;
    left: 11px;
  }
  .hamburgerBtn span:last-of-type {
    top: 21px;
    left: 11px;
  }
  .hamburgerBtn.open span:first-of-type {
    top: 17px;
    left: 8px;
    width: 32px;
    transform: rotate(30deg);
  }
  .hamburgerBtn.open span:last-of-type {
    top: 17px;
    left: 8px;
    width: 32px;
    transform: rotate(-30deg);
  }
  .hamburgerBtn p {
    position: absolute;
    bottom: 10px;
    left: 11px;
    width: 28px;
    height: 9px;
    background: url("../img/common/btn_menu.png") center no-repeat;
    background-size: 100%;
    transition: 0.25s;
  }
  .hamburgerBtn.open p {
    background: url("../img/common/btn_close.png") center no-repeat;
    background-size: 100%;
  }
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  min-width: 1290px;
  border-bottom: 1px solid #D3D9E0;
  background: rgba(255,255,255,.75);
  z-index: 10;
}
.headerInner {
  height: 70px;
  position: relative;
  width: 100%;
  /* width: calc(100% - 280px); */
}
.header .logo {
  position: absolute;
  top: 11px;
  left: 81px;
  width: 95px;
  height: 47px;
}
.header .snsWrap {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-wrap: nowrap;
  width: auto;
  height: 27px;
}
.header .snsWrap a {
  display: block;
  color: #fff;
  font-size: 10px;
  line-height: 27px;
  transition: 0.25s;
}
.header .snsWrap a:hover {
  opacity: 0.85;
}
.header .snsWrap a img {
  width: 30px;
  vertical-align: top;
}
.header .snsWrap a p {
  display: inline-block;
}
.header .snsWrap .mailmagazine {
  width: 85px;
  text-align: center;
  background: #223C67;
}
.header .snsWrap .twitter {
  width: 30px;
  background: #000000; 
}
.header .snsWrap .facebook {
  width: 30px;
  background: #1877F2;
}
.header .snsWrap .instagram {
  width: 30px;
  /* background: #0071bc; */
  background: url(../img/common/icon_instagram_bg.png) center no-repeat;
  background-size: cover;
}
.header .snsWrap .line {
  width: 85px;
  background: #00B900;
}
.header .snsWrap .discord_ {
  width: 30px;
  background-color: #5865F2;
}
.header .navigation {
  position: absolute;
  bottom: 5px;
  right: 15px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.header .navigation li {
  padding: 0 0.75em;
  box-sizing: border-box;
  border-left: 1px solid #AB7BC5;
}
.header .navigation li.kv-contest {
  padding: 0 0 0 0.75em;
}
.header .navigation li:first-of-type {
  border-left: none;
}
.header .navigation a {
  display: inline-block;
  width: auto;
  padding-left: 5px;
  padding-right: 5px;
  box-sizing: border-box;
  text-align: center;
  color: #001E50;
  font-size: 12px;
  font-weight: 700;
  transition: .25s;
}
/* .header .navigation li.kv-contest a {
  width: 15em;
} */
.header .navigation a:hover {
  color: #fff;
  background: #001E50;
}
/* .header .navigation li.kv-contest a:hover {
  width: 17em;
  color: #7701c2;
  background: #fff;
} */

@media screen and (max-width:1100px) { 
  .header .navigation a {
    font-size: 11px;
  }
}

@media screen and (max-width:1000px) { 
  .header {
    width: 1060px;
  }
/*  .header {
    border: none;
    background: none;
  }
  .header .headerInner {
    display: none;
  }*/
}

@media screen and (max-width:768px) { 
  .header {
    width: 100%;
    border: none;
    background: none;
  }
  .header .headerInner {
    display: none;
  }
}

/* sp navigation panel */ 
.spPanel {
  position: fixed;
  top: 0;
  left: -101%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(#2e86d0 0%, #223C67 100%);
  z-index: 19;
  transition: .25s;
}
.spPanel.open {
  left: 0;
}
.spPanel .spPanelInner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.spPanel .title {
  position: relative;
  width: 240px;
  margin: 0 auto 2em;
  padding: 0 0 0.75em;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.spPanel .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background-image: linear-gradient(to right, #fff, #fff 2px, transparent 2px, transparent 5px);
  background-size: 5px 2px;
  background-repeat: repeat-x;
}
.spPanel .navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.spPanel .navigation.kv {
  margin: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.5);
}
.spPanel .subNav.first {
  margin-top: 20px;
}
.spPanel .navigation li {
  display: inline-block;
}
.spPanel .mainNav li a {
  display: inline-block;
  padding: 1em;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.spPanel .subNav li a {
  display: inline-block;
  padding: 1em;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.spPanel .sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 290px;
  margin: 20px auto 0;
}
.spPanel .sns li {
  width: 60px;
  margin: 5px;
}

@media screen and (max-width:768px) {
  .spPanel {
    left: 101%;
    min-height: 100vh;
    overflow-y: auto;
  }
  .spPanel .spPanelInner {
    position: relative;
    top: 0;
    left: 0;
    padding: 40px 20px 20px;
    transform: none;
  }
  .spPanel .mainNav li a {
    font-size: 16px;
  }
  .spPanel .subNav li a {
    font-size: 13px;
  }
  .spPanel .sns li {
    width: 45px;
  }
}

/* main contents */
.mainContents {
  padding-top: 70px;
}
.pagetitle {
  padding: 80px 0 0;
}
.title_en {
  margin: 0 0 0.5em;
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #001E50;
  text-align: center;
  line-height: 1.1em;
}
.title_jp {
  font-size: 18px;
  font-weight: 700;
  color: #001E50;
  text-align: center;
}

.lastSection {
  padding-bottom: 105px !important;
}

@media screen and (max-width:768px) { 
  .mainContents {
    padding-top: 50px;
  }
  .pagetitle {
    padding: 110px 0 0;
  }
  .lastSection {
    padding-bottom: 70px !important;
  }
  .title_en {
    font-size: 30px;
  }
}

/* sponsor include */
.sponsorWrap {
  display: block !important;
}
.sponsorWrap br {
  display: inline;
}
.sponsor {
  padding: 105px 0 100px;
  border-top: 1px solid #eee;
  background: #fff;
}
.sponsor .category {
  position: relative;
  width: 100%;
  max-width: 260px;
  margin: 80px auto 2em;
  padding: 0 0 0.75em;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px dotted #AB7BC5;
}
.sponsor .category.is-special {
  /* border-bottom: 2px dotted #000; */
  border-bottom: none;
  margin-top: 30px;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 0.75em;
  position: relative;
}
.sponsor .category.is-special::after {
  content: '';
  width: 9em;
  height: 1px;
  background-color: #00A0FF;
  position: absolute;
  right: 50%;
  bottom: 0;
  transform: translateX(50%);
}
.sponsor ul {
  margin: 0 auto;
  text-align: center;
}
.sponsor li {
  display: inline-block;
  margin: 10px 8px;
}
.sponsor .diamond img {
  width: auto;
  height: 84px;
  margin: 0 10px;
}
.sponsor .platinum img {
  width: auto;
  height: 64px;
}
.sponsor .gold img {
  width: auto;
  height: 52px;
}
.sponsor .silver img {
  width: auto;
  height: 50px;
}
.sponsor .venue img {
  width: auto;
  height: 84px;
}
.sponsor .bronze li a {
  font-size: 14px;
  font-weight: 700;
}
.sponsor .cheer li a {
  font-size: 12px;
}
.sponsor .cloud img {
  width: auto;
  height: 34px;
}
.sponsor .media img {
  width: auto;
  height: 36px;
}

.sponsor .sougo img {
  width: auto;
  height: 32px;
}

@media screen and (max-width:768px) {
  .sponsorWrap br {
    display: none;
  }
  .sponsor {
    padding: 70px 0 50px;
  }
  .sponsor .bronze li,
  .sponsor .cheer li {
    display: block;
  }
}

@media screen and (max-width:480px) { 
  .sponsor .diamond img {
    width: auto;
    height: 100px;
  }
}

@media screen and (max-width:400px) { 
  .sponsor .diamond img {
    width: auto;
    height: 90px;
  }
}

/* footer */
footer {
  width: 100%;
  line-height: 1.6;
  background-color: #223C67;
  font-size: 12px;
  color: #fff;
  padding-bottom: 0;
  padding-top: 20px;
}
footer .__footInner {
  max-width: 1000px;
  margin: 0 auto;
}
footer .__footInner:after {
  content: " ";
  display: block;
  clear: both;
}
footer .__footInner .__bx-L {
  width: 50%;
  float: left;
}
footer .__footInner .__bx-R {
  width: 50%;
  float: right;
}
footer .__footInner p {
  margin: 1em 0;
}

footer .dl-horizontal dt {
  width: 15%;
  float: left;
  overflow: hidden;
  clear: left;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}
footer .dl-horizontal dd {
  width: 80%;
  /*float: left;*/
  margin-left: 20%;
  line-height: 1.4;
  margin-bottom: 10px;
  font-size: 12px;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}
footer ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.6;
}
footer ul li a {
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: block;
  background: url("../img/common/bg-arrow-footer.png") 0px center no-repeat;
  padding-left: 10px;
  line-height: 1.6;
}
footer ul li a:hover {
  background: url("../img/common/bg-arrow-footer.png") 3px center no-repeat;
  padding-left: 13px;
  color: #fff100;
}
footer h2 {
  font-size: 14px;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 10px;
}
footer a,
footer a:visited,
footer a:active {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  color: #fff100;
}
.__copyRightTx {
  width: 100%;
  padding-bottom: 7px;
  padding-top: 7px;
  background: rgba(18, 19, 20, 1);
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 1);
}

.__fx-LR {
  display: flex;
}
.__fx-LR > div {
  width: 50%;
}

@media screen and (max-width: 979px) {

  footer {
    width: 100%;
    font-size: 12px;
    padding-bottom: 0;
    padding-top: 20px;
  }
  footer .__footInner {
    max-width: 96%;
    margin: 0 auto;
  }
  footer .__footInner:after {
    content: " ";
    display: block;
    clear: both;
  }
  footer .__footInner .__bx-L {
    width: 100%;
    float: left;
  }
  footer .__footInner .__bx-R {
    width: 100%;
    float: right;
  }

  footer .dl-horizontal dt {
    width: 12%;
    float: left;
    overflow: hidden;
    clear: left;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    border: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  footer .dl-horizontal dd {
    width: 83%;
    /*float: left;*/
    margin-left: 13%;
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 12px;
    border: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  footer ul {
    list-style: none;
    padding-left: 0;
  }
  footer ul li a {
    color: #fff;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    display: block;
    background: url(../img/common/bg-arrow-footer.png) 0px center no-repeat;
    padding-left: 10px;
  }
  footer ul li a:hover {
    background: url(../img/common/bg-arrow-footer.png) 3px center no-repeat;
    padding-left: 13px;
  }
  footer h2 {
    font-size: 14px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  footer a {
    color: #fff;
  }
  footer a:hover {
    color: #fff100;
  }
  .__copyRightTx {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 7px;
    padding-top: 7px;
    background: rgba(18, 19, 20, 1);
    text-align: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 1);
  }
}

/* button common style */
.btnWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.btnItem {
  align-items: center;
  position: relative;
  display: flex;
  justify-content: center;
  width: 300px;
  height: 70px;
  margin: 20px 10px 0;
  text-decoration: none;
}

.btnItem p {
  position: relative;
  width: 282px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  z-index: 2;
}
.btnItem span {
  color: #FFFF00;
  transition: .25s;
}
.btnItem:hover span {
  color: #000;
}

@media screen and (max-width: 768px) {

}

/*  */
.btn.btnCommon {
  position: relative;
  display: block;
  max-width: 300px;
  height: 70px;
  margin: 20px auto 0;
  box-sizing: border-box;
  transition: .25s;
}

@media screen and (max-width: 768px) {

}

.btn.btnCommon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 282px;
  height: 70px;
  z-index: 1;
  transition: .25s;
}
.btn.btnCommon.mm::before {
  background-image: none;
}
/* .btn.btnCommon::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 9px;
  width: 10px;
  height: 10px;
  background: url("../img/common/btn_arrow_right.png");
  background-size: 100%;
} */
.btn.btn_img:hover {
  filter: saturate(200%);
}
/* .btn.btnCommon:hover {
  background: #0082f9;
}
.btn.btnCommon.mm:hover {
  background: #0082f9;
}
.btn.btnCommon.mm:hover::before {
  background-color: #0082f9;
} */
.btn.btnCommon a {
  display: block;
  width: 300px;
}
.btn.btnCommon p {
  position: relative;
  /*width: 282px;*/
  display: block;
  max-width: 300px;
  font-size: 16px;
  font-weight: 700;
  line-height: 70px;
  text-align: center;
  z-index: 2;
}
.btn.btnCommon.btn_entry p.line1 {
  line-height: 46px;
}
.btn.btnCommon.btn_entry p.line2 {
  width: 300px;
  padding-right: 18px;
  line-height: 24px;
  font-size: 13px;
  color: #000;
  background: rgb(77,192,236);
  background: -moz-linear-gradient(0deg, rgba(77,192,236,.9) 0%, rgba(154,254,239,.8) 100%);
  background: -webkit-linear-gradient(0deg, rgba(77,192,236,.9) 0%, rgba(154,254,239,.8) 100%);
  background: linear-gradient(0deg, rgba(77,192,236,.9) 0%, rgba(154,254,239,.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4dc0ec",endColorstr="#9afeef",GradientType=1);
}
.btn.btnCommon p span {
  color: #FFDC00;
}
.btn.btnCommon.twoLines p {
  padding-top: 12px;
  line-height: 22px;
}


/* header badge */
.badge {
  /* background-image: url(../img/common/badge_bg1.jpg);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover; */
  background-color: #C14DAF;
  position: absolute;
  display: table !important;
  top: 0;
  left: 187px;
  z-index: 1000;
  transition: 0.3s all;
  width: 140px;
  height: 70px;
  color: #fff;
  z-index: 100;
}
.badge.entry {
  left: 327px;
  /* background-image: url(../img/common/badge_bg2.jpg);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover; */
  background-color: #2B5BBE;
}
.badge.pc {
  display: table !important;
}
.badge.sp {
  display: none !important;
}
.badge:hover {
  /*box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);*/
  /* transform: scale(1.075) rotate(10deg); */
}
.badge::after {
  border-left: 8px solid transparent;
  border-bottom: 8px solid #fff;
  bottom: 8px;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: 8px;
  width: 0;
}

@media screen and (min-width: 769px) {
  .badge::after {
    transition: .25s;
  }
  .badge:hover::after {
    bottom: 3px;
    right: 3px;
  }
}

.badge a {
  /* display: block; */
  display: table-cell;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  /* color: #fff !important; */
  text-decoration: none;
}
.badge.entry a {
  color: #000 !important;
}
.badge p:last-child {
  /* display: none; */
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: -0.02em;
}
.badge.entry a p {
  color: #fff;
}
.badge br,
.badge br.sp,
.badge br.ssp {
  display: inline;
}
.badge br.pc {
  display: inline;
}
.badge br.sp {
  display: none;
}
.badge span {
  display: inline-block;
  font-size: 11px;
  line-height: 1.2;
}
.badge span.border {
  display: block;
  width: 80%;
  height: 1px;
  margin: 5px auto;
  padding: 0;
  border-top: 2px dotted rgba(255,255,255,.35);
}

/* @media screen and (max-width:1500px) {
  .badge {
    top: 80px;
    right: 10px;
  }
  .badge.entry {
    top: 204px;
    right: 10px;
  }
} */

@media screen and (max-width: 768px) {
  .badge,
  .badge.top  {
    /* background-position: center;
    background-size: cover; */
    top: 0;
    left: 50px;
    right: auto;
    width: calc((100% - 50px) / 2);
    height: 50px;
    border-radius: 0;
    border: none !important;
    position: fixed;
  }
  .badge.entry,
  .badge.entry.top {
    /* background-position: center top;
    background-size: cover; */
    top: 0;
    left: auto;
    right: 0;
    position: fixed;
  }
  .badge:hover,
  .badge.entry:hover {
    box-shadow: none;
    transform: none;
  }
  .badge.pc {
    display: none !important;
  }
  .badge.sp {
    display: table !important;
  }
  .badge a {
    /* display: block; */
    box-sizing: border-box;
    display: table-cell;
    width: 100%;
    height: 50px;
    text-align: center;
    vertical-align: middle;
    font-size: 5vw;
    line-height: 1;
  }
  .badge.entry a {
    color: #000 !important;
  }
  .badge p:last-child {
    display: block;
  }
  /* .badge br,
  .badge br.ssp {
    display: none;
  } */
  .badge br.sp {
    display: inline;
  }
  .badge br.pc {
    display: none;
  }
  .badge span {
    font-size: 75%;
    line-height: 1;
  }
  .badge span.border {
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}

/* @media screen and (max-width: 600px) {
  .badge p:last-child {
    font-size: 14px;
  }
}

@media screen and (max-width: 560px) {
  .badge p:last-child {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .badge p:last-child {
    font-size: 12px;
  }
}

@media screen and (max-width: 400px) {
  .badge p:last-child {
    font-size: 11px;
  }
}

@media screen and (max-width: 370px) {
  .badge {
    background-size: 100% auto, 100% 100%;
  }
  .badge.entry {
    background-size: 100% auto, 100% 100%;
  }
  .badge p:last-child {
    font-size: 10px;
  }
  .badge p {
    line-height: 1.0em;
  }
  .badge br.ssp {
    display: inline;
  }
  .badge span {
    font-size: 11px;
    line-height: 1.0em !important;
  }
} */
