@charset "utf-8";
/*
	Description: initial setting
	Version: 1.0
	Author: idealgrow
*/
/*
===== CONTENTS ===========================================

	1: BASE LAYOUT

==========================================================
*/
/*
===== 1: BASE LAYOUT =====================================
*/
header {
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background: #000;
    border-bottom: solid 1px #3d3d3d;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 64px;
    z-index: 50;
}
header #navTrigger {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 25px;
    height: 25px;
}
header #navTrigger:after {
    content: "MENU";
    color: #fff;
    font-size: 10px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
    position: absolute;
}
header #navTrigger span {
    background: #fff;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    transition: all 0.2s;
}
header #navTrigger span:before {
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    top: -8px;
    background: #fff;
    position: absolute;
    transition: all 0.2s;
}
header #navTrigger span:after {
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -8px;
    background: #fff;
    position: absolute;
    transition: all 0.2s;
}
header #navTrigger.active span {
    background: #000;
}
header #navTrigger.active span:before {
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
}
header #navTrigger.active span:after {
    transform: rotate(-45deg) translateY(50%);
    bottom: 50%;
}
header #navTrigger.active:after {
    content: "CLOSE";
}
header nav {
    display: none;
    z-index: 100;
    position: absolute;
    top: 64px;
    padding: 20px;
    background: #000;
    width: 100%;
    height: 100vh;
}
header nav > ul > li:not(:last-of-type) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px #3d3d3d;
}
header nav > ul > li a, header nav > ul > li p {
    font-size: 18px;
    font-weight: bold;
}
header nav > ul > li a span, header nav > ul > li p span {
    margin-left: 10px;
    background: linear-gradient(to bottom, #D09F2F 0%, #EDCE96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
}
header nav > ul > li:last-of-type a{
	background: #fff;
	display: block;
	color: #000;
	padding:5px 10px;
	text-align: center;
	margin-top: 20px;
	border-radius: 3px;
}
    header nav > ul > li:last-of-type a span{
        background: linear-gradient(to right, #ec4899 0%, #9333ea 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
		display: block;
		margin-left: 0;
    }
header nav > ul > li ul {
    display: flex;
    margin-top: 10px;
    position: relative;
}
header nav ul li ul.nolink:after {
    content: "準備中";
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    background: #000;
    height: 100%;
    text-align: center;
    border: solid 1px #3d3d3d;
    display: flex;
    justify-content: center;
    align-items: center;
}
header nav > ul > li ul li {
    width: 49%;
    text-align: center;
    border: solid 1px #3d3d3d;
}
header nav > ul > li ul li:first-of-type {
    margin-right: 2%;
}
header nav > ul > li ul li a {
    font-size: 14px;
    padding: 8px;
    display: block;
}
header h1 {
    padding: 10px;
    width: 240px;
}
header h1 img {
    width: 100%;
    height: auto;
}
main {
    padding-top: 64px;
}
#fvImg {
    width: 100%;
    background: url("../img/background.webp")center center no-repeat;
    background-size: cover;
    position: relative;
    padding-bottom: 60px;
}
#fvImg img {
    width: 100%;
    height: auto;
}
#fvImg #logo {
    padding: 20px 70px 20px 20px;
}
#fvImg #catch {
    position: absolute;
    width: 30px;
    right: 20px;
    top: 10px;
}
#event {
    background: url("../img/event_bg_smt.webp")left top no-repeat;
    background-size: cover;
    position: relative;
    border-top: solid 1px #3d3d3d;
}
#event:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #3d3d3d;
    position: absolute;
    top: 20px;
}
#event #eventIn {
    padding: 40px;
}
#event #eventIn:before {
    content: "";
    width: 1px;
    height: 100%;
    background: #3d3d3d;
    position: absolute;
    left: 20px;
    top: 0;
}
#event #eventIn:after {
    content: "";
    width: 1px;
    height: 100%;
    background: #3d3d3d;
    position: absolute;
    right: 20px;
    top: 0;
}
#event #eventIn h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}
#event #eventIn h2 span {
    display: block;
    font-size: 16px;
    background: linear-gradient(to bottom, #D09F2F 0%, #EDCE96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#event #eventIn ul.hashtag,#event #eventIn ul.sns {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
#event #eventIn ul.hashtag:before {
    content: "ハッシュタグ";
    display: block;
    font-size: 14px;
    width: 100%;
}
#event #eventIn ul.hashtag li {
    background: #fff;
    color: #000;
    font-size: 16px;
    padding: 0 10px;
    border-radius: 50px;
}
#event #eventIn ul.sns li{
	width: 18%;
}
#event #eventIn ul.sns li img{
	width: 100%;
	height: auto;
}
#event #eventIn ul.sns li a{
	display: block;
	border: solid 1px #fff;
	border-radius: 5px;
	padding: 10px;
	background: rgba(0,0,0,0.4)
}
#details .detailTit {
    position: relative;
    padding: 20px 20px 0 20px;
}
#details .detailTit:before, #details .detailTable:before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    left: 20px;
    top: 0;
    background: #3b3b3b;
}
#details .detailTit:after, #details .detailTable:after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: 20px;
    top: 0;
    background: #3b3b3b;
}
#details .detailTit h2 {
    padding: 20px;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.4;
}
#details .detailTit h2:before {
    content: "Event";
    position: absolute;
    left: -6px;
    top: -12px;
    font-size: 100px;
    color: #1f1f1f;
    letter-spacing: 4px;
    z-index: -1;
    line-height: 1;
}
#details .detailTit h2 span {
    display: block;
    font-size: 16px;
    background: linear-gradient(to bottom, #D09F2F 0%, #EDCE96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#details .detailTable {
    padding: 40px 20px;
    position: relative;
}
#details .detailTable.others {
    padding: 20px;
}
#details .detailTable.gray {
    background: #232323;
}
#details .detailTable table {
    border-collapse: collapse;
}
#details .detailTable table tr, #details .detailTable table td {
    display: block;
}
#details .detailTable table td {
    padding: 0 20px;
    position: relative;
}
#details .detailTable table td:not(:last-of-type) {
    padding-bottom: 20px;
    margin-bottom: 20px;
}
#details .detailTable table td:not(:last-of-type):after {
    width: calc(100% - 40px);
    height: 1px;
    background: #3d3d3d;
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
#details .detailTable table td .year {
    font-size: 16px;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    line-height: 1;
}
#details .detailTable table td .year span {
    font-size: 20px;
}
#details .detailTable table td .date {
    line-height: 1.4;
    font-size: 22px;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
}
#details .detailTable table td .date span:not(:last-of-type) {
    font-size: 30px;
}
#details .detailTable table td .date span:last-of-type {
    font-size: 16px;
}
#details .detailTable table td p {
    font-size: 18px;
}
#details .detailTable .eng {
    font-size: 14px;
}
#details .detailTable table td .coLoc {
    display: inline-block;
    border: solid 1px #fff;
    font-size: 14px;
    padding: 0 20px;
    margin-bottom: 5px;
}
#details .detailTable table td .lineBtn, #ticketIn .lineBtn {
    display: block;
    margin-top: 20px;
    text-align: center;
    border: solid 1px #fff;
    padding: 15px;
    position: relative;
}
#details .otherBtn{
	background: #fff;
	display: block;
    margin-top: 20px;
    padding: 15px;
	color: #000;
	font-family: "Roboto", "Noto Sans JP", sans-serif;
	line-height: 1.4;
	font-weight: bold;
	position: relative;
	border-radius: 3px;
}
#details .otherBtn span{
	display: block;
	font-size: 14px;
        background: linear-gradient(to right, #ec4899 0%, #9333ea 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
}
#details .otherBtn:after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: solid 1px #000;
    border-bottom: solid 1px #000;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
#details .detailTable table td .lineBtn:after, #ticketIn .lineBtn:after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
#details .detailTable.lastDay tr td:nth-of-type(2) {
    display: none;
}
#details .detailTable ul {
    position: relative;
    padding: 0 0 20px 0;
}
#details .detailTable ul li:not(:last-of-type) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #3d3d3d;
}
#details .detailTable ul:after {
    content: "";
    width: calc(100% + 40px);
    height: 1px;
    background: #3d3d3d;
    position: absolute;
    left: -20px;
    bottom: 0;
}
#details .detailTable ul li h3 {
    padding: 0 20px;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
}
#details .detailTable ul li h3 span {
    display: block;
    font-size: 14px;
    background: linear-gradient(to bottom, #efefef 0%, #a3a3a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#details .detailTable ul li p {
    padding: 0 20px;
}
#details .detailTable ul li p span {
    display: block;
}
#details .detailTable ul li a {
    display: block;
    margin-left: 20px;
    padding-left: 28px;
    position: relative;
}
#details .detailTable ul li a:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url("../img/ico_mail.webp")center center no-repeat;
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.detailInfo{
	background: #545454;
	padding: 20px;
}
.detailInfo p{
	text-align: center;
}
.detailInfo p.jbdfSite{
	margin-top: 20px;
	margin-bottom: 10px;
}
.detailInfo p.jbdfSite span:before{
	content: "";
	width: 20px;
	height: 2px;
	background: #fff;
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}
.detailInfo p.jbdfSite span:after{
	content: "";
	width: 20px;
	height: 2px;
	background: #fff;
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
}
.detailInfo ul{
	display: flex;
}
.detailInfo ul li{
	width: 48%;
}
.detailInfo ul li:last-of-type{
	margin-left: 4%;
}
.detailInfo ul li a{
	display: block;
	background: #fff;
	color: #000;
	padding: 10px 20px 10px 10px;
	text-align: center;
	position: relative;
	border-radius: 3px;
}
.detailInfo ul li a:after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: solid 1px #000;
    border-bottom: solid 1px #000;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
#ticket {
    border-top: solid 1px #3d3d3d;
    padding: 20px;
    position: relative;
}
#ticket #ticketIn {
    padding: 15px;
}
#ticket:before {
    content: "Ticket";
    position: absolute;
    left: 0;
    top: -12px;
    font-size: 100px;
    color: #1f1f1f;
    letter-spacing: 4px;
    z-index: -1;
    line-height: 1;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-weight: bold;
}
#ticket #ticketIn #ticketHead h2 {
    font-weight: bold;
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 20px;
}
#ticket #ticketIn #ticketHead h2 span {
    display: block;
}
#ticket #ticketIn #ticketHead h2 span:first-of-type {
    font-size: 16px;
}
#ticket #ticketIn #ticketHead h2 span.eng {
    font-size: 16px;
    background: linear-gradient(to bottom, #D09F2F 0%, #EDCE96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#ticket #ticketIn #ticketHead > div {
    background: #3d3d3d;
    padding: 5px;
}
#ticket #ticketIn #ticketHead > div ul {
    border: solid 1px #686868;
    padding: 10px;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
}
#ticket #ticketIn #ticketHead > div ul li {
    line-height: 1.4;
}
#ticket #ticketIn #ticketHead > div ul li span {
    font-size: 20px;
}
#ticket #ticketIn #ticketHead {
    margin-bottom: 40px;
}
#ticket #ticketIn .ticketInfo h3 {
    font-weight: bold;
    font-size: 20px;
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
}
#ticket #ticketIn .ticketInfo h3:before {
    content: "";
    height: 2px;
    width: 14px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
#ticket #ticketIn .ticketInfo table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
}
#ticket #ticketIn .ticketInfo table tr, #ticket #ticketIn .ticketInfo table th, #ticket #ticketIn .ticketInfo table td {
    display: block;
}
#ticket #ticketIn .ticketInfo table th {
    text-align: left;
    font-weight: normal;
    padding: 5px 0;
}
#ticket #ticketIn .ticketInfo table td {
    border-bottom: solid 1px #3d3d3d;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
#ticket #ticketIn .ticketInfo table td ul li {
    padding-left: 20px;
    position: relative;
}
#ticket #ticketIn .ticketInfo table td ul li:not(:last-of-type) {
    margin-bottom: 10px;
}
#ticket #ticketIn .ticketInfo table td ul li:before {
    content: "";
    width: 5px;
    height: 5px;
    background: #fff;
    position: absolute;
    left: 3px;
    transform: rotate(45deg);
    top: 11px;
}
#ticket #ticketIn .ticketInfo > div + div {
    margin-top: 40px;
}
#ticket #ticketIn .ticketInfo > div h3:nth-of-type(2) {
    margin-top: 40px;
}
#ticket #ticketIn .ticketInfo .endSale {
    padding: 10px;
    text-align: center;
    background: repeating-linear-gradient(45deg, #191919, #191919 5px, #000 0, #000 10px);
}
#athletes {
    background: url("../img/athletes_bg02.webp")center top repeat-y;
    background-size: 100% auto;
    position: relative;
    z-index: 1;
}
#athletes:before {
    content: "";
    width: 100%;
    height: 200px;
    background: url("../img/athletes_bg01.webp")left top no-repeat;
    background-size: cover;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
}
#athletes:after {
    content: "";
    width: 100%;
    height: 200px;
    background: url("../img/athletes_bg01.webp")left top no-repeat;
    background-size: cover;
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    transform: rotate(180deg);
}
#athletesIn {
    padding: 30px;
}
#athletesIn:before {
    content: "Athletes";
    position: absolute;
    color: #000;
    opacity: 0.1;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-size: 90px;
    font-weight: bold;
    left: 0;
    top: -47px;
}
#athletesIn p {
    font-family: "Roboto", "Noto Sans JP", sans-serif;
}
#athletesIn p.tournament {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
}
#athletesIn p.eng {
    font-size: 14px;
    background: linear-gradient(to bottom, #600000 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
#athletesIn h2 {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: bold;
    color: #000;
}
#athletesIn .athletesList h3 {
    color: #000;
    font-size: 32px;
    font-family: "ten-mincho", serif;
    font-weight: 400;
    margin-bottom: 10px;
}
#athletesIn .athletesList h3 span {
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-size: 20px;
}
#athletesIn .athletesList figure {
    position: relative;
}
#athletesIn .athletesList figure:not(:last-of-type) {
    margin-bottom: 30px;
}
#athletesIn .athletesList figure img {
    width: 100%;
    height: auto;
}
#athletesIn .athletesList figure figcaption {
    background: #EEEFF8;
    color: #000;
    padding: 10px 20px;
    position: absolute;
    left: -20px;
    bottom: 40px;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
}
#athletesIn .athletesList:nth-of-type(2) {
    margin-top: 30px;
}
#athletesIn .athletesList:nth-of-type(2) figure figcaption {
    left: auto;
    right: -20px;
}
#movie {
    padding: 30px;
}
#movie div iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}
#crowdfunding {
    border-top: solid 1px #3d3d3d;
    padding: 30px;
    position: relative;
}
#crowdfunding:before {
    content: "Crowdfund";
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-size: 70px;
    font-weight: bold;
    left: 0;
    top: -32px;
    z-index: -1;
}
#crowdfunding:after {
    content: "";
    background: url("../img/crowd_bg.webp")right top no-repeat;
    background-size: 100%;
    width: 300px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -2;
}
#crowdfunding h2 {
    font-weight: bold;
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 40px;
}
#crowdfunding h2 span {
    display: block;
    font-size: 16px;
    background: linear-gradient(to bottom, #D09F2F 0%, #EDCE96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#crowdfunding h3 {
    font-size: 20px;
    font-family: "ten-mincho", serif;
    font-weight: 400;
    margin-bottom: 20px;
}
#crowdfunding h3 span {
    display: block;
    font-size: 18px;
}
#crowdfunding p {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 15px;
    color: #000;
    margin-bottom: 20px;
}
#crowdfunding p span {
    font-size: 20px;
    background: linear-gradient(to bottom, #d68800 50%, #563802 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
#crowdfunding a {
    display: block;
    background: #e6007f;
    padding: 10px 45px 10px 10px;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    position: relative;
    border-radius: 5px;
}
#crowdfunding a span {
    display: block;
    font-size: 14px;
}
#crowdfunding a:after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
#ambassador, #musician {
    border-top: solid 1px #3d3d3d;
    padding: 20px;
    position: relative;
}
#ambassador:before, #musician:before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    background: #3d3d3d;
    top: 0;
    left: 20px;
}
#ambassador:after, #musician:after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    background: #3d3d3d;
    top: 0;
    right: 20px;
}
#ambassadorIn, #musicianIn {
    padding: 20px;
}
#ambassador h2, #musician h2 {
    font-weight: bold;
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 20px;
}
#ambassador h2:before {
    content: "Ambassador";
    position: absolute;
    font-size: 60px;
    color: #1f1f1f;
    left: 0;
    top: -18px;
    z-index: -1;
}
#musician h2:before {
    content: "Musician";
    position: absolute;
    font-size: 60px;
    color: #1f1f1f;
    left: 0;
    top: -18px;
    z-index: -1;
}
#ambassador h2 span, #musician h2 span {
    display: block;
    font-size: 16px;
    background: linear-gradient(to bottom, #D09F2F 0%, #EDCE96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#ambassador ul li img, #musician ul li img {
    width: 100%;
    height: auto;
}
#ambassador ul li:last-of-type, #musician ul li:last-of-type {
    padding-top: 20px;
}
#ambassador ul li .title {
    font-size: 14px;
    margin-bottom: 10px;
}
#ambassador ul li .title span {
    display: block;
}
#ambassador ul li .name {
    font-size: 24px;
    margin-bottom: 20px;
}
#ambassador ul li .name span {
    margin-left: 10px;
    font-size: 16px;
}
#ambassador ul li a {
    display: block;
    margin-top: 30px;
    border: solid 1px #fff;
    padding: 15px;
    position: relative;
}
#ambassador ul li a:after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
#musician h2 + p {
    margin-bottom: 30px;
}
footer {
    font-size: 14px;
    text-align: center;
    padding: 20px 15px;
    border-top: solid 1px #3d3d3d;
}
.pageTop{
	position: fixed;
	right: 0;
	bottom: -50px;
	z-index: 10;
	transition: all 0.4s;
}
.pageTop.scrollFix{
	bottom: 0;
}
.pageTop a{
	display: block;
	background: rgba(0,0,0,0.5);
	font-size: 14px;
	padding:15px 10px 5px 10px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
	position: relative;
	border: solid 1px #3d3d3d;
	border-right: none;
	border-bottom: none;
}
.pageTop a:before{
	content: "";
	width: 6px;
	height: 6px;
	border-right: solid 2px #fff;
	border-top: solid 2px #fff;
	position: absolute;
	top: 7px;
	left: 50%;
	transform:rotate(-45deg) translateX(-50%);
}
@media screen and (min-width:1274px) {
    header {
        display: flex;
        align-items: center;
    }
    header #navTrigger {
        display: none;
    }
    header nav {
        max-width: calc(100% - 240px);
        display: block !important;
        position: static;
        margin-left: auto;
        width: auto;
        padding: 0;
        height: auto;
    }
    header nav > ul {
        display: flex;
        height: 64px;
        align-items: center;
    }
    header nav > ul > li {
        height: 100%;
        display: flex;
        position: relative;
    }
    header nav > ul > li:not(:last-of-type) {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        border-right: solid 1px #3d3d3d;
    }
    header nav > ul > li a, header nav > ul > li p {
        font-size: 15px;
        text-align: center;
        display: block;
        padding: 15px 20px;
        line-height: 1.4;
        height: 100%;
        position: relative;
        cursor: pointer;
        transition: all 0.2s;
    }
    header nav > ul > li a:hover, header nav > ul > li p:hover {
        background: #262626;
    }
    header nav > ul > li p:after {
        content: "";
        width: 14px;
        height: 14px;
        border-left: solid 1px #3d3d3d;
        border-top: solid 1px #3d3d3d;
        position: absolute;
        right: 0;
        bottom: 0;
    }
    header nav > ul > li p:before {
        content: "";
        width: 4px;
        height: 4px;
        border-right: solid 2px #fff;
        border-bottom: solid 2px #fff;
        position: absolute;
        right: 4px;
        bottom: 5px;
        transform: rotate(45deg);
    }
    header nav > ul > li.trigger:hover ul {
        display: block;
    }
    header nav > ul > li a span, header nav > ul > li p span {
        margin-left: 0;
        display: block;
        font-size: 12px;
        background: linear-gradient(to bottom, #D09F2F 0%, #EDCE96 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    header nav > ul > li ul {
        position: absolute;
        display: none;
        width: 100%;
        bottom: -74px;
    }
    header nav > ul > li ul li {
        width: 100%;
        background: #000;
    }
    header nav > ul > li ul li a:hover {
        background: #262626;
    }
    header nav > ul > li ul li:first-of-type {
        margin-right: 0;
    }
header nav > ul > li:last-of-type a{
        padding: 15px 20px;
	margin-top:0;
	border-radius: 0;
	position: relative;
}
	header nav > ul > li:last-of-type a:hover{
		background: #000;
		color: #fff;
	}
    #fvImg {
        min-height: calc(100vh - 64px);
    }
    #fvImg #txtBox {
        position: relative;
        max-width: 1300px;
        margin: 0 auto;
    }
    #fvImg #logo {
        width: 500px;
        padding: 0;
        left: 30px;
        top: 30px;
        position: relative;
    }
    #fvImg #catch {
        width: 60px;
        left: auto;
        right: 30px;
        top: 30px;
    }
    #event {
        background: url("../img/event_bg.webp")left top no-repeat;
        background-size: cover;
    }
    #event:before {
        top: 40px;
    }
    #event #eventIn {
        padding: 80px;
        max-width: 1460px;
        margin: 0 auto;
    }
    #event #eventIn:before {
        left: 40px;
    }
    #event #eventIn:after {
        right: 40px;
    }
    #event #eventIn h2 {
        font-size: 60px;
        line-height: 1.4;
        margin-bottom: 60px;
    }
    #event #eventIn h2 span {
        font-size: 28px;
    }
    #event #eventIn h2 + p {
        font-size: 20px;
        max-width: 70%;
    }
	#event #eventIn ul.sns{
		max-width: 300px;
	}
	#event #eventIn ul.sns li a{
		transition: all 0.2s;
	}
	#event #eventIn ul.sns li a:hover{
		opacity: 0.6;
	}
    #details .detailTit {
        position: relative;
        padding: 100px 40px 0 40px;
    }
    #details .detailTit:before, #details .detailTable:before {
        left: 40px;
    }
    #details .detailTit:after, #details .detailTable:after {
        right: 40px;
    }
    #details .detailTit h2 {
        padding: 0 40px 60px 40px;
        font-size: 46px;
        max-width: 1380px;
        margin: 0 auto;
    }
    #details .detailTit h2:before {
        left: -14px;
        top: -28px;
        font-size: 220px;
    }
    #details .detailTit h2 span {
        font-size: 18px;
    }
    #details .detailTable {
        padding: 40px 80px;
    }
    #details .detailTable.others {
        padding: 0 40px 40px 40px;
        border-top: solid 1px #3d3d3d;
    }
    #details .detailTable table {
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
    }
    #details .detailTable table tr {
        display: flex;
        width: 100%;
    }
    #details .detailTable table td {
        padding: 0;
        position: relative;
        vertical-align: top;
    }
    #details .detailTable table td:first-of-type {
        width: 20%;
    }
    #details .detailTable table td:not(:first-of-type) {
        width: 40%;
        padding: 0 40px;
    }
    #details .detailTable table td:not(:last-of-type) {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    #details .detailTable.lastDay tr td:nth-of-type(2) {
        display: block;
    }
    #details .detailTable table td:not(:last-of-type):after {
        width: 1px;
        height: 100%;
        right: 0;
        bottom: 50%;
        left: auto;
        transform: translateY(50%);
    }
    #details .detailTable table td .date {
        font-size: 30px;
    }
    #details .detailTable table td .date span:not(:last-of-type) {
        font-size: 40px;
    }
    #details .detailTable table td .date span:last-of-type {
        font-size: 22px;
    }
    #details .detailTable table td p {
        font-size: 20px;
    }
    #details .detailTable table td .lineBtn, #ticket #ticketIn .ticketInfo .lineBtn {
        display: inline-block;
        margin-top: 40px;
        padding: 10px 60px 10px 30px;
        transition: all 0.2s;
    }
    #details .detailTable table td .lineBtn:hover, #ticket #ticketIn .ticketInfo .lineBtn:hover {
        background: #696969;
    }
	#details .otherBtn {
        display: inline-block;
        margin-top: 40px;
        padding: 15px 80px 15px 30px;
        transition: all 0.2s;
		border: solid 1px #fff;
    }
	#details .otherBtn:hover{
		background: #000;
		color: #fff;
		box-shadow: 0px 0px 20px 0px rgba(255,255, 255,0.4);
		transform: scale(1.05);
	}
	#details .otherBtn:hover:after{
		border-color: #fff;
	}
    #details .detailTable ul {
        position: relative;
        padding: 0;
        display: flex;
        width: 100%;
        justify-content: center;
    }
    #details .detailTable ul li {
        width: 33.33%;
        padding: 40px 20px;
        max-width: 460px;
    }
    #details .detailTable ul li:not(:last-of-type) {
        margin-bottom: 0;
        padding: 40px 20px;
        border-bottom: none;
        border-right: solid 1px #3d3d3d;
    }
    #details .detailTable ul:after {
        content: "";
        width: calc(100% + 80px);
        height: 1px;
        background: #3d3d3d;
        position: absolute;
        left: -40px;
        bottom: 0;
    }
    #details .detailTable ul li h3 {
        font-size: 24px;
    }
    #details .detailTable ul li p {
        font-size: 18px;
    }
    #details .detailTable ul li a {
        font-size: 18px;
        transition: all 0.2s;
    }
    #details .detailTable ul li a:hover {
        opacity: 0.6;
    }
.detailInfo{
	background: #545454;
	padding: 40px;
}
.detailInfo ul{
	max-width: 400px;
	margin: 0 auto;
}
	.detailInfo ul li a{
		transition: all 0.2s;
	}
.detailInfo ul li a:hover{
	background: #000;
	color: #fff;
}
	.detailInfo ul li a:hover:after{
		border-color: #fff;
	}
    #ticket {
        padding: 0;
    }
    #ticket #ticketIn {
        padding: 80px;
        max-width: 1460px;
        margin: 0 auto;
    }
    #ticket:before {
        left: -0;
        top: -20px;
        font-size: 220px;
        letter-spacing: 10px;
    }
    #ticket #ticketIn #ticketHead {
        display: flex;
        align-items: center;
        margin-bottom: 80px;
    }
    #ticket #ticketIn #ticketHead h2 {
        font-size: 46px;
        line-height: 1.4;
        margin-bottom: 0;
    }
    #ticket #ticketIn #ticketHead h2 span:first-of-type {
        font-size: 20px;
    }
    #ticket #ticketIn #ticketHead h2 span.eng {
        font-size: 18px;
    }
    #ticket #ticketIn #ticketHead > div {
        margin-left: auto;
        min-width: 400px;
    }
    #ticket #ticketIn #ticketHead > div ul {
        padding: 10px 20px;
    }
    #ticket #ticketIn #ticketHead > div ul li {
        letter-spacing: 2px;
    }
    #ticket #ticketIn #ticketHead > div ul li span {
        font-size: 26px;
    }
    #ticket #ticketIn #ticketHead > div ul li:last-of-type {
        font-size: 14px;
    }
    #ticket #ticketIn .ticketInfo {
        display: flex;
    }
    #ticket #ticketIn .ticketInfo > div:first-of-type {
        width: 55%;
        border-right: solid 1px #3d3d3d;
        padding-right: 50px;
    }
    #ticket #ticketIn .ticketInfo > div:nth-of-type(2) {
        width: 45%;
        padding-left: 50px;
    }
    #ticket #ticketIn .ticketInfo h3 {
        font-size: 24px;
    }
    #ticket #ticketIn .ticketInfo table tr {
        display: flex;
    }
    #ticket #ticketIn .ticketInfo table th {
        width: 20%;
        padding: 10px 0;
    }
    #ticket #ticketIn .ticketInfo table td {
        width: 80%;
        border-bottom: none;
        padding: 10px;
        margin-bottom: 0;
    }
    #ticket #ticketIn .ticketInfo > div + div {
        margin-top: 0;
    }
    #ticket #ticketIn .ticketInfo > div h3:nth-of-type(2) {
        margin-top: 60px;
    }
    #ticket #ticketIn .ticketInfo > div h3:nth-of-type(2):after {
        content: "";
        width: 100%;
        height: 1px;
        background: #3d3d3d;
        top: -30px;
        left: 0;
        position: absolute;
    }
    #ticket #ticketIn .ticketInfo .lineBtn {
        margin-top: 20px;
    }
    #athletes:before, #athletes:after {
        height: 600px;
    }
    #athletesIn {
        padding: 75px;
    }
    #athletesIn:before {
        font-size: 230px;
        top: -120px;
    }
    #athletesIn p.tournament {
        font-size: 20px;
        max-width: 1300px;
        margin: 0 auto;
    }
    #athletesIn p.eng {
        font-size: 16px;
        margin-bottom: 10px;
        max-width: 1300px;
        margin: 0 auto 10px auto;
    }
    #athletesIn h2 {
        font-size: 46px;
        max-width: 1300px;
        margin: 0 auto 60px auto;
    }
    #athletesIn .athletesList {
        display: flex;
        align-items: center;
        max-width: 1300px;
        margin: 0 auto;
    }
    #athletesIn .athletesList figure:not(:last-of-type) {
        margin-bottom: 0;
        margin-right: 2%;
    }
    #athletesIn .athletesList h3 {
        font-size: 60px;
        text-align: center;
        line-height: 1.2;
        width: 32%;
        margin-right: 2%;
    }
    #athletesIn .athletesList h3 span {
        display: block;
        font-size: 30px;
    }
    #athletesIn .athletesList figure {
        width: 32%;
    }
    #athletesIn .athletesList figure figcaption {
        font-size: 20px;
        background: #F7F8FC;
    }
    #athletesIn .athletesList:nth-of-type(2) {
        margin-top: 60px;
    }
    #athletesIn .athletesList:nth-of-type(2) h3 {
        order: 3;
        margin-right: 0;
    }
    #athletesIn .athletesList:nth-of-type(2) figure:nth-of-type(1) {
        order: 1;
        margin-right: 2%;
    }
    #athletesIn .athletesList:nth-of-type(2) figure:nth-of-type(2) {
        order: 2;
        margin-right: 2%;
    }
    #movie {
        padding: 80px;
        max-width: 1460px;
        margin: 0 auto;
    }
    #crowdfunding {
        padding: 0;
    }
    #crowdIn {
        max-width: 1300px;
        margin: 0 auto;
        padding: 80px 0;
    }
    #crowdfunding:before {
        font-size: 230px;
        top: -110px;
    }
    #crowdfunding:after {
        width: 660px;
    }
    #crowdfunding h2 {
        font-size: 46px;
        margin-bottom: 60px;
    }
    #crowdfunding h2 span {
        font-size: 18px;
    }
    #crowdfunding h3 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    #crowdfunding h3 span {
        display: block;
        font-size: 28px;
    }
    #crowdfunding p {
        max-width: 750px;
        padding: 20px;
        font-size: 18px;
        margin-bottom: 30px;
    }
    #crowdfunding p span {
        font-size: 24px;
    }
    #crowdfunding a {
        max-width: 600px;
        padding: 15px 45px 15px 20px;
        border-radius: 0;
        font-size: 20px;
        transition: all 0.2s;
    }
    #crowdfunding a:hover {
        transform: scale(1.03);
    }
    #crowdfunding a span {
        font-size: 16px;
    }
    #crowdfunding a:after {
        right: 25px;
    }
    #ambassador, #musician {
        padding: 80px;
    }
    #ambassador:before, #musician:before {
        left: 40px;
    }
    #ambassador:after, #musician:after {
        right: 40px;
    }
    #ambassadorIn, #musicianIn {
        padding: 0;
        max-width: 1300px;
        margin: 0 auto;
    }
    #ambassador h2, #musician h2 {
        font-size: 46px;
    }
    #ambassador h2:before {
        font-size: 200px;
        top: -58px;
    }
    #musician h2:before {
        font-size: 200px;
        left: -10px;
        top: -60px;
    }
    #ambassador h2 span, #musician h2 span {
        font-size: 18px;
    }
    #ambassador ul, #musician ul {
        display: flex;
        align-items: center;
    }
    #ambassador ul li:first-of-type, #musician ul li:first-of-type {
        width: 300px;
        margin-right: 50px;
    }
    #ambassador ul li:last-of-type, #musician ul li:last-of-type {
        width: calc(100% - 350px);
        padding-top: 0;
    }
    #ambassador ul li .title {
        font-size: 16px;
        margin-bottom: 0;
    }
    #ambassador ul li .title span {
        display: inline-block;
        margin-left: 10px;
    }
    #ambassador ul li .name {
        font-size: 36px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    #ambassador ul li .name span {
        margin-left: 10px;
        font-size: 20px;
        letter-spacing: 2px;
    }
    #ambassador ul li .comment {
        font-size: 20px;
    }
    #ambassador ul li a {
        font-size: 20px;
        text-align: center;
        max-width: 400px;
        padding: 15px;
        transition: all 0.2s;
    }
    #ambassador ul li a:hover {
        background: #696969;
    }
    #ambassador ul li a:after {
        width: 10px;
        height: 10px;
        right: 25px;
    }
    #musician h2 + p {
        margin-bottom: 40px;
    }
    #musician ul li {
        font-size: 20px;
    }
    footer {
        padding: 25px 15px;
    }
.pageTop{
	right: 40px;
	bottom: -80px;
}
.pageTop a{
	padding:30px 20px 20px 20px;
	border: solid 1px #3d3d3d;
	border-bottom: none;
}
.pageTop a:before{
	top: 18px;
}
}