@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
@font-face {
	font-family: 'vortis-Font';
	src: url("../font/Vortis-Regular.otf") format("opentype")
}
* {
	box-sizing:border-box
}

::before, ::after {
	box-sizing:inherit
}

html {
	font-size: 62.5%;
	line-height: 1.65;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color:transparent;
	-webkit-overflow-scrolling: touch;
}

body {
	margin: 0;
	font-family: "BIZ UDPGothic", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.6rem;
	font-feature-settings: "palt" 1;
	-webkit-font-feature-settings: "palt" 1;
	background-color: #003D61;
}
main{
	overflow: hidden;
}
p, table, blockquote, address, pre, iframe, form, figure, dl {
	margin:0
}
em{
	font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin:0
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style:none
}

dt {
	font-weight:bold
}

dd {
	margin-left:0
}
a {
	background-color: transparent;
	text-decoration: none;
	color: inherit;
	transition:all .2s ease
}
img {
	border-style: none;
	vertical-align: bottom;
	max-width:100%
}
table {
	border-collapse: collapse;
	border-spacing:0
}

caption {
	text-align:left
}

td, th {
	vertical-align: top;
	padding:0
}

th {
	text-align: left;
	font-weight: bold
}
.text-center{
	text-align: center;	
}
.fs-11{
  font-size: 11px;
}
.text-red{
  color: #CD0003;
}
.en{
	letter-spacing: .3rem;
	font-family: 'vortis-Font';
	font-weight: normal;
}

.ask{
  background-color: #FFFFFF;
  text-align: center;
  font-weight: bold;
  font-size: 2.0rem;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 25px;
  line-height: 1;
  color:#CD0003;
}
.more-btn{
	border-radius: 2px;
	background: #037045;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.53;
	padding: 15px 30px;
	position: relative;
	width: 100%;
	max-width: 375px;
}
.more-btn:after{
	position: absolute;
	display: block;
	margin: auto;
	content: "";
	right: 1.8rem;
	top: 0;
	bottom: 0;
	width: 1rem;
	height: 1rem;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.more-btn:hover{
	opacity: .8;
}
@media screen and (max-width: 736px){
	.only-lg{
		display: none;
	}
}
@media screen and (min-width: 737px){
	.only-sm{
		display: none;
	}
}
/*----------ヘッダー----------*/
.header{
	padding: 1.5rem 0;
	width: 100%;
	z-index: 10;
	background-color: #FFFFFF;
}
.header-inner{
	display: flex;
	align-items: center;
	padding-left: 28px;
	padding-right: 28px;
	height: 100%;
	position: relative;
}
.header-inner .header-logo{
	display: flex;
	align-content: center;
	flex-shrink: 0;
}
.header-inner .header-logo img{
	display: block;
	height: 60px;
}
.header-ticket{
	margin-left: auto;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	width: 26%;
}
.header-ticket .more-btn{
	width: 100%;
	max-width: 100%;
	height: 60px;
	padding: 0;
	text-align: center;
}
.header-ticket .more-btn:after{
	display: none;
}
.header-ticket .more-btn span{
	width: 100%;

}
.header-ticket .more-btn span.icon{
	display: inline-block;
	margin-left: 10px;
	width: 30px;
}
.header-ticket .more-btn span.icon img{
	width: 30px;
}
/* Drawer */
.overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  background-color: rgba(0,0,0,.3);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease-in;
}
nav.nav {
  width: 300px;
  height: 100vh;
  right: -300px;
  top: 0;
  position: fixed;
  padding: 20px 0;
  transition: all 200ms ease-in-out;
  z-index: 199;
	background-color: #003D61;
	color: #FFFFFF;
}
nav.nav:after{
	content: "";
	background-image: url("../img/uzumaki.png");
	background-repeat: no-repeat;
	background-size: 300px;
	width: 300px;
	height: 300px;
	bottom: 0;
	position: absolute;
	right: -70px;
	opacity: .1;
}
nav.nav ul {
    border: none;
    padding: 0;
	position: relative;
	z-index: 1;
}
.toggle {
  position: absolute;
  right: 110%;
  width: 50px;
  height: 50px;
  color: #112848;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
	background-color: #fff;
	z-index: 200;
}
span.toggler,
span.toggler:before,
span.toggler:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #112848;
    position: absolute;
    pointer-events: none;
	z-index: 201;
}

span.toggler:before{
    bottom: 9px;
}
span.toggler:after {
    top: 9px;
}
span.deleteclass {
    background-color: transparent;
}
span.deleteclass::before {
    bottom: 0;
    transform: rotate(45deg);
}
span.deleteclass::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav ul li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav ul li a {
  padding: 10px 20px;
  display: block;
  color: #FFFFFF;
  font-size: 2.4rem;
  text-decoration: none;
  transition: all 200ms ease;
	letter-spacing: .3rem;
	font-family: 'vortis-Font';
	font-weight: normal;
}
.nav ul li a:hover {
  background-color: #f1f1f1;
	color: #003D61;
}
.nav .more-btn{
	width: 90%;
	margin: 20px auto 0;
	z-index: 1;
}

/* Show Nav */
.show-nav .nav {
  right: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,.6);
}
.show-nav .overlay {
  opacity: 1;
  visibility: visible;
}

.fadeIn {
	transform: translate3d(0, 50px, 0);
	transition: 1s;
	opacity: 0;
}
.fadeIn.animated {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}



@media screen and (max-width: 736px){
	.header{
		padding: .8rem 0;
	}
	.header-inner{
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.header-inner .header-logo img{
		height: 36px;
	}
	.header-ticket{
		right: 0;
		width: 25%;
		bottom: 10px;
	}
.header-ticket .more-btn{
	background: #037045;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.53;
	position: relative;
	width: 100%;
	height: 75px;
	padding: 0;
	max-width: 100%;
	border-radius: 5px 0 0 5px;
	padding: 0 8px;
	font-weight: normal;
}
	.header-ticket .more-btn span{
		margin-right: 0;
		width: 100%;
		line-height: 2.4rem;
	}
	.header-ticket .more-btn span.icon{
		margin-left: 3px;
	}
	.header-ticket .more-btn span.icon img{
		width: 18px;
		display: inline-block;
		vertical-align: middle;
	}
	.more-btn span{
		width: 19px;
	}
	.toggle {
  right: 103%;
  width: 40px;
  height: 40px;
		top: 5px;
}

	
}

/*--------- タイトル ----------*/
.sec-ttl{
	text-align: center;
	line-height: 1.0;
	margin-bottom: 20px;
	color: #FFFFFF;
	position: relative;
	z-index: 1;
}
.sec-ttl em{
	font-size: 6rem;
	text-align: center;
	margin-bottom: 5px;
	display: block;
}
.sec-ttl span{
	display: block;
	font-size: 3.0rem;
	text-align: center;
}
.event-ttl{
	margin-bottom: 20px;
	margin-top: 10px;
	color: #FFFFFF;
}
.event-ttl span{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3.0rem;
	font-weight: bold;
	position: relative;
	text-align: center;
}

.cs-text{
		text-align: center;
		font-size: 2.4rem;
		color: #FFFFFF;
	font-weight: normal;
	}
.kv{
	text-align: center;
	background-color: #112848;
	position: relative;
}
.kv > div{
	position: relative;
	z-index: 1;
}

.content__wrap {
    width: 100%;
    height: 100%;
}
/*
.content-wrap--bg::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.5s ease 0s;
    z-index: 0;
}
.content-wrap--bg.show::before {
    opacity: 1;
}
*/
.content-wrap--bg001 {
    background: #003D61;
	background: linear-gradient(180deg,rgba(0, 61, 97, 1) 0%, rgba(3, 0, 41, 1) 100%);

}
.content-wrap--bg002 {
	background: #030029;
background: linear-gradient(180deg,rgba(3, 0, 41, 1) 0%, rgba(0, 61, 97, 1) 100%);
}

.content-inner{
	position: relative;
	z-index: 10;
}
	/*-- モーダル --*/
/* モーダルと背景の指定 */
.modal-open{
	margin: 40px auto 0;
}
.modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #003D61;
	background: linear-gradient(180deg,rgba(0, 61, 97, 0.5) 0%, rgba(3, 0, 41, 0.5) 100%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
	z-index: 300;
}

/* モーダルの擬似要素の指定 */
.modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active{
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
.modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 800px;
  width: 90%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close{
	position: absolute;
	top: 0;
	right: 50px;
	cursor: pointer;
	width: 40px;
	height: 40px;
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
	transition: opacity 0.24s ease;
}
.modal-close:before, .modal-close:after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #ffffff;
	width: 3px;
	height: 40px;
}
.modal-close:before{
	transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-close:after{
	transform: translate(-50%, -50%) rotate(45deg);
}

/* モーダルのコンテンツ部分の指定 */
.modal-content{
  background: #000000;
  text-align: left;
	font-size: 1.4rem;
  padding: 50px;
	max-height: 80vh;
	overflow-y: scroll;
	color: #FFFFFF;
}

/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content .sec-ttl.splash-ttl em{
	position: relative;
	display: inline-block;
}
.modal-content .sec-ttl.splash-ttl em:after{
	content: "";
	position: absolute;
	right: -40px;
	bottom: 0;
	background-image: url("../img/splash-logo.png");
	background-size: 45px;
	width: 45px;
	height: 45px;
	transform: rotate(14deg);
	background-repeat: no-repeat;
}
.modal-content p{
  margin: 1em 0;
	color: #FFFFFF!important;
	font-size: 1.4rem!important;
	text-align: left!important;
	line-height: 1.8!important;
}
.modal-content p + p{
	margin-top: 10px!important;
}
@media screen and (max-width: 736px){
	.modal-content{
		padding: 50px 30px;
	}
	.modal-close{
		margin-top: 0;
		right: 15px;
		top: 5px;
	}
	.modal-close:before, .modal-close:after{
		height: 30px;
		width: 2px;
	}
}
/*---------- コンセプト ----------*/
#concept{
	padding-top: 400px;
	padding-bottom: 200px;
	position: relative;
}

#concept:before{
	content: "";
	position: absolute;
	left: -25%;
	bottom: 0;
	background-image: url("../img/uzumaki.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1000px;
	width: 1000px;
	height: 1000px;
	opacity: .1;
}
#concept .concept-head{
	position: relative;
}
#concept .concept-head:after{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	background: url("../img/concept_bg.png");
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}
#concept .concept-head .container{
	position: relative;
	z-index: 1;
}
#concept.content-wrap--bg001 {
    background: #003D61;
	background: linear-gradient(180deg,rgba(3, 0, 41, 1) 0%, rgba(0, 61, 97, 1) 100%);

}
#concept .concept-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
	color: #FFFFFF;
}
#concept .concept-box .concept-img{
	width: 300px;
}
#concept .concept-box .concept-text{
	margin-left: 30px;
}
#concept .concept-box .concept-text span{
	display: block;
	text-align: left;
	font-size: 24px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
  font-style: normal;
	letter-spacing: .4rem;
}
#concept .concept-text_sub{
	margin-bottom: 230px;
}
#concept .concept-text_sub p{
	font-size: 17px;
  font-style: normal;
	text-align: center;
	display: block;
	color: #FFFFFF;
	line-height: 2.4;
}
#concept .concept-text_sub p + p{
	margin-top: 30px;
}

#concept .concept-img_sub {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(6, 1fr);
	gap: 50px;
	margin-top: 230px;
}

#concept .concept-img_sub .concept-img_item1 {
		grid-row: span 4 / span 4;
}
#concept .concept-img_sub .concept-img_item2 {
grid-row: span 4 / span 4;
grid-column-start: 2;
grid-row-start: 2;
}

#concept .concept-img_sub .concept-img_item3 {
	grid-row: span 4 / span 4;
	grid-column-start: 3;
	grid-row-start: 3;
}
#concept .concept-text_img {
	margin-top: 300px;
	text-align: center;
	color: #FFFFFF;
}
#concept .concept-text_img .concept-exp{
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 50px;
	padding-right: 50px;
	margin-top: 100px;
}
#concept .concept-text_img .concept-exp .concept-exp_img{
	width: 280px;
}
#concept .concept-text_img .concept-exp .concept-exp_text{
	width: calc(100% - 300px);
	margin-left: 50px;
	text-align: left;
}
#concept .concept-text_img .concept-exp .concept-exp_text h4{
	margin-bottom: 20px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
  font-style: normal;
	letter-spacing: .3rem;
	font-size: 2.4rem;
}
#concept .concept-text_img .concept-exp .concept-exp_text p{
	line-height: 2.4;
}
/*---------- 試合情報 ----------*/
/*-- タブ --*/
.tab-area {
	display: flex;
	cursor: pointer;
}
.tab {
	width: calc(100%/3);
	padding: 5px;
	text-align: center;
	border: 1px solid #fff;
}
.tab.active {
		color: #fff;
}
.panel {
display: none;
text-align: center;
position: relative;
	z-index: 1;
}
.panel.active {
	display: block!important;
}
.panel-area{
	padding-top: 70px;
	padding-bottom: 50px;
	color: #FFFFFF;
	position: relative;
}
/*
.panel-area:before{
	position: absolute;
	display: block;
	margin: auto;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("../img/pattern.jpg") repeat #112849;
	z-index: 0;
}
*/
#event{
	padding-top: 60px;
}
#match{
	padding-top: 200px;
	background-color: #112848;
	position: relative;
}
#match:after{
	content: "";
	position: absolute;
	right: -200px;
	top: 230px;
	background-image: url("../img/uzumaki.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 800px;
	width: 800px;
	height: 800px;
	opacity: .1;
}
#match .sec-ttl{
	color: #FFFFFF;
}
#match .match-ask{
  background-color: #FFFFFF;
  color: #CD0003;
}
#match .tab.active .match-menu{
	color: #FFFFFF;
	background-color: #112848;
}
#match .tab.active .match-menu_date{
	color: #FFFFFF;
}
#match .match-menu{
	text-align: center;
	display: flex;
	flex-direction: column;
	background-color: #FFFFFF;
	color: #112848;
	padding: 18px 25px;
	position: relative;
	z-index: 0;
	height: 100%;
}
#match .match-menu_date{
	text-align: center;
	color: #112848;
	padding: 10px;
	position: relative;
	z-index: 0;
	height: 100%;
	font-size: 3rem;
	line-height: 1;
}
#match .match-menu_date span{
	font-size: 5rem;
	position: relative;
	margin-right: 16px;
}
#match .match-menu_date span.week{
	font-size: 1.7rem;
	font-weight: bold;
	transform: rotate(90deg);
	display: inline-block;
	position: absolute;
	right: -16px;
	top: 45%;
	letter-spacing:1px;
	margin-right: 0;
}
#match .match-menu-vs{
	position: relative;
	font-size: 1.7rem;
}
#match .match-menu-vs:before{
	content: "VS";
	letter-spacing: .3rem;
	font-family: 'vortis-Font';
	font-weight: normal;
	display: inline-block;
}
#match .match-menu-vs span{
	display: inline-block;
	width: 23px;
	vertical-align: middle;
	margin-top: -4px;
}
#match .match-data-league{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 40%;
	margin: 0 auto;
}
#match .match-data-leagu_ttl{
	display: flex;
	align-items: center;
	justify-content: center;
}
#match .match-data-leagu_ttl > img{
	flex-shrink: 0;
	width: 35px;
}
#match .match-data-leagu_ttl > span{
	display: block;
	margin-left: 20px;
	font-size: 18px;
	font-weight: bold;
}
#match .match-data-leagu_note{
	font-size: 1.3rem;
	font-weight: bold;
	margin-top: 10px;
}
#match .match-data-main{
	display: flex;
	justify-content: center;
	text-align: center;
	margin-top: 12px;
}
#match .match-data-club{
	width: 206px;
	margin-top: -65px;
}
#match .match-data-club .emb{
	display: flex;
	justify-content: center;
	height: 160px;
}
#match .match-data-club .name{
	display: block;
	font-weight: bold;
	font-size: 1.4rem;
	margin-top: 12px;
}
#match .match-data-index{
	width: 400px;
}
#match .match-data-index_data {
	font-size: 9rem;
	line-height: 1;
}
#match .match-data-index_data .week{
	font-size: 6rem;
}
#match .match-data-index_kickoff{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}
#match .match-data-index_kickoff span{
	border-radius: 4px;
	background-color: #e0e3e9;
	display: block;
	font-size: 1.6rem;
	line-height: 1.4;
	letter-spacing: .04em;
	margin-right: 12px;
	padding: 3px 7px;
	color: #112848;
}
#match .match-data-index_kickoff em{
	display: block;
	font-size: 2.3rem;
}
#match .match-data-index_place{
	position: relative;
	margin-top: 8px;
}
#match .match-data-index_place:before{
	content: "\f3c5";
	font-weight: 700;
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	margin-right: 5px;
}
#match .match-data-btn{
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
.match-data-banner{
	margin-top: 80px;
}
.match-data-banner > *:not(:first-child){
	margin-top: 15px;
}

.match-data-banner > a,.match-data-banner > span{
	text-align: center;
	display: block;
	width: 700px;
	margin-left: auto;
	margin-right: auto;
}
#match .event-main{
	text-align: center;
	margin-bottom: 40px;
}
#match .event-list ul{
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 3rem;
}
#match .event-list ul li{
	background-color: #FFFFFF;
	padding: 1rem;
}
#match .event-list .event-list-inner{
	padding: 1rem;
	border: 1px solid #E2E2E2;
	display: flex;
	height: 100%;
	flex-direction: column;
	align-content: center;
	justify-content: flex-start;
	color: #000000;
	position: relative;
	padding-bottom: 50px;
}
#match .event-list .event-list-inner .event-list-text h3{
	font-weight: bold;
	margin-bottom: 15px;
	font-size: 1.8rem;
	margin-top: 15px;
}
#match .event-list .event-list-inner .event-list-text p{
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: left;
}
#match .event-list .event-list-inner .event-list-button{
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 10px;
	right: 20px;
	
}
#match .event-list .event-list-inner .event-list-button a{
	letter-spacing: .1em;
	gap: .5rem;
	display: flex;
	color: #037045;
	align-items: center;
	border-bottom: 1px solid #037045;
	padding: 5px;
}
#match .event-more{
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
}
#match .event-ttl{
	text-align: center;
	margin-bottom: 40px;
}
#match .event-ttl span{
	text-align: center;
	margin-bottom: 40px;
	font-style: normal;
}
#match .sec-ttl.splash-ttl{
	margin-bottom: 10px;
}
#match .sec-ttl.splash-ttl em{
	display: inline-block;
	position: relative;
}
#match .sec-ttl.splash-ttl em:after{
	content: "";
	position: absolute;
	right: -40px;
	bottom: 0;
	background-image: url("../img/splash-logo.png");
	background-size: 45px;
	width: 45px;
	height: 45px;
	transform: rotate(14deg);
	background-repeat: no-repeat;
}



/*---------- グルメ ----------*/
#groumet{
	padding-top: 200px;
}
#groumet .sec-ttl{
	color: #FFFFFF;
}
#groumet .groumet-list{
	display: flex;
	justify-content: center;
}
/*---------- グッズ ----------*/
#goods{
	padding-top: 200px;
	position: relative;
}
#goods:after{
	content: "";
	position: absolute;
	left: -58%;
	top: -1%;
	background-image: url("../img/uzumaki.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1400px;
	width: 1400px;
	height:1400px;
	opacity: .1;
}
#goods .cs-text{
		text-align: center;
		margin-top: 40px;
		margin-bottom: 40px;
		font-size: 2.5rem;
		color: #FFFFFF;
	font-weight: bold;
	}
#goods .sec-ttl{
	color: #FFFFFF;
}
#goods .goods-inner h2{
	position: relative;
	text-align: center;
	font-weight: bold;
	font-size: 2.2rem;
	margin-bottom: 50px;
	color: #FFFFFF;
}
#goods .goods-inner h2:before{
	position: absolute;
	bottom: -10px;
	left: 50%;
	width: 37px;
	height: 2px;
	background: #fff;
	transform: translate(-50%);
	content: "";
}
#goods .goods-inner + .goods-inner{
	margin-top: 100px;
}
#goods .goods-list{
	position: relative;
	padding-bottom: 30px;	
}
#goods .goods-list ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	color: #FFFFFF;
}
#goods .goods-list ul li{
	width: calc(25% - 23px);
	margin-left: 30px;
	margin-bottom: 40px;
}
#goods .goods-list h3{
	font-weight: bold;
	font-size: 1.3rem;
	margin-top: 10px;
}
#goods .goods-list p{
	font-size: 1.1rem;
	margin-top: 10px;
}
#goods .goods-list a{
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #FFFFFF;
	text-align: center;
	padding: 5px 8px;
	margin-top: 20px;
	transition-duration: .5s;
}
#goods .goods-list a:hover{
	background-color: #FFFFFF;
	color: #030029;
}
#goods .goods-list .swiper-pagination{
	bottom: 0!important;
}
#goods .goods-list .swiper-pagination-bullet{
	background-color: #FFFFFF;
}
#goods .more-btn{
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
}
/*---------- チケット ----------*/
	#ticket{
		padding-top: 200px;
		position: relative;
	}
#ticket:after{
	content: "";
	position: absolute;
	right: -25%;
	top: -2%;
	background-image: url("../img/uzumaki.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 800px;
	width: 800px;
	height:800px;
	opacity: .1;
	transform: rotate(-90deg);
}

#ticket .ticket-list{
	text-align: center;
}
#ticket .ticket-list + .ticket-list{
	margin-top: 50px;
}
#ticket .ticket-list h3{
	text-align: center;
	background-color: #037045;
	padding: 16px 16% 16px;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 2.0rem;
	margin-bottom: 30px;
}
#ticket .ticket-img{
	display: flex;
	justify-content: center;
}
#ticket .ticket-img div{
	margin-left: 10px;
}
#ticket .ticket-img div:first-child{
	margin-left: 0;
}
#ticket .ticket-button ul{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#ticket .ticket-button ul li span{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-color: #FFFFFF;
	color: #003D61;
	border-radius: 5px;
	text-align: center;
	font-weight: bold;
	font-size: 1.9rem;
	margin-left: 5px;
	padding: 10px;
	width: 280px;
}
#ticket .ticket-button ul li:first-child span{
	margin-left: 0;
}
#ticket .ticket-button ul li a:hover{
	opacity: .7;
}
#ticket .ticket-button ul li span figure{
	width: 160px;
	display: block;
	margin-top: 15px;
}


/*---------- アクセス ----------*/
	#access{
		padding-top: 200px;
		position: relative;
	}
#access:after{
	content: "";
	position: absolute;
	left: -2%;
	top: -30%;
	background-image: url("../img/uzumaki.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 700px;
	width: 700px;
	height:700px;
	opacity: .1;
	transform: rotateY( 180deg );
}

#access .access-inner{
	padding-left: 20px;
	padding-right: 20px;
	color: #FFFFFF;
}
#access .access-box{
	display: flex;
	margin-bottom: 40px;
	justify-content: center;
	align-items: center;
}
#access .access-box .map-img{
	flex: 1;
	display: flex;
	max-width: 900px;
	align-items: center;
	background-color: #FFFFFF;
	padding: 8px;
}
#access .access-box .map-img figure{
	flex: 1;
}
#access .access-box .map-info{
	width: auto;
	margin-left: 20px;
}
#access .access-box .map-info .map-info-text h3{
	font-weight: bold;
	margin-bottom: 10px;
	color: #FFFFFF;
	font-size: 1.8rem;
}
#access .access-box .map-info .map-info-text p > span{
	display: block;
	font-size: 1.4rem;
}
#access .access-box .map-info .map-info-btn{
	margin-top: 20px;
}
#access .access-box .map-info .map-info-btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #fff;
	text-align: center;
	padding: 5px 8px;
	margin-top: 10px;
	transition-duration: .5s;
	position: relative;
}
#access .access-box .map-info .map-info-btn a:before{
	position: absolute;
	display: block;
	margin: auto;
	content: "";
	right: 1.8rem;
	top: 0;
	bottom: 0;
	width: 1rem;
	height: 1rem;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#access .event-more + .event-more{
	margin-top: 15px;
}


/*---------- ニュース ----------*/
#news {
	padding-top: 200px;
	padding-bottom: 200px;
	position: relative;
}
#news:after{
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	background: url("../img/footer_bg.png");
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	z-index: 9;
	opacity: .4;
}

#news dl{
	display: flex;
	flex-wrap: wrap;
}
#news dl dt{
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: .1rem;
	color: #FFFFFF;
	font-family: 'vortis-Font';
	font-size: 2rem;
	font-weight: normal;
	width: 18%;
}
#news dl dd{
	line-height: 1.8;
	color: #FFFFFF;
	width: 82%;
}
#news dl dt, #news dl dd{
	padding: 3.5rem .5rem;
	border-bottom: .1rem solid #fff;
}
#news dl dd a{
	display: block;
}
#news .news-list.close dl:nth-child(n + 6){
  display: none;
}
#news .more-link{
border-radius: 2px;
background: #037045;
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 700;
line-height: 1.53;
padding: 15px 30px;
position: relative;
width: 100%;
max-width: 375px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
}
footer{
	background-color: #112848;
	padding-top: 32px;
	padding-bottom: 30px;
	position: relative;
}
footer a{
	display: flex;
	justify-content: center;
	text-align: center;
	margin-bottom: 15px;
}
footer img{
	width: 90px;
}
footer .copy{
	text-align: center;
	font-size: 1.1rem;
	color: #FFFFFF;
}
footer .sns-ttl{
	color: #FFFFFF;
	font-size: 1.8rem;
	margin-bottom: 15px;
	text-align: center;
}
footer .sns-list{
	display: flex;
	justify-content: center;
}
footer .sns-list a{
	width: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 15px;
	margin-right: 15px;
}
@media screen and (max-width: 736px){
	.container{
		padding: 0;
		width: 70%;
		margin-left: auto;
		margin-right: auto;
	}
/*
	.movie-outer{
		padding-left: 20px;
		padding-right: 20px;
	}
*/
	.movie-box{
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	margin-bottom: 10px;
}
.movie-box iframe{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
	.sec-ttl em{
		font-size: 4rem;
	}
	.sec-ttl span{
		font-size: 2.3rem;
	}
.event-ttl span{
	font-size: 1.6rem;
	letter-spacing: 0;
	margin-bottom: 10px;
}



	/*---------- コンセプト ----------*/
#concept{
	padding-top: 240px;
	padding-bottom: 100px;
}
	#concept .concept-head:after{
		top: -500px;
		height: 100%;
		background-size: 100%;
	}
	#concept:before{
	left: -80%;
	bottom: 300px;
	background-size: 600px;
	width: 600px;
	height: 600px;
	opacity: .1;
}

#concept .concept-box{
	padding: 0;
	margin-bottom: 30px;
	flex-direction: column-reverse;
}
#concept .concept-box .concept-img{
	width: 100%;
}
	#concept .concept-box .concept-img{
		width: 200px;
	}
#concept .concept-box .concept-text{
	margin-left: 0;
	margin-top: 0;
	margin-bottom: 40px;
	text-align: center;
	margin-top: 20px;
}
#concept .concept-box .concept-text span{
	font-size: 1.6rem;
	text-align: center;
}
	#concept .concept-text_sub p{
		font-size: 1.1rem;
		line-height: 2.3;
	}
	
	#concept .concept-text_sub p + p{
		margin-top: 15px;
	}
	#concept .container.concept-img_container{
		width: 100%;
	}
	#concept .concept-text_sub{
		margin-bottom: 80px;
	}
	#concept .concept-img_sub{
		gap: 5px;
		margin-top: 80px;
	}
	#concept .concept-text_img{
		font-size: 1.1rem;
		margin-top: 60px;
		line-height: 2.4;
	}
	
	#concept .concept-text_img .concept-exp{
		flex-wrap: wrap;
		padding-left: 0;
		padding-right: 0;
		margin-top: 70px;
	}
	#concept .concept-text_img .concept-exp .concept-exp_text p{
		line-height: 2.8;
	}
	#concept .concept-text_img .concept-exp .concept-exp_img{
		width: 100%;
		
	}
	#concept .concept-text_img .concept-exp .concept-exp_img img{
		width: 200px;
	}
	#concept .concept-text_img .concept-exp .concept-exp_text{
		width: 100%;
		margin-left: 0;
		margin-top: 30px;
	}
	#concept .concept-text_img .concept-exp .concept-exp_text h4{
		text-align: center;
		margin-bottom: 17px;
		font-size: 1.4rem;
	}
/*---------- イベント ----------*/
	#event{
		padding-top: 0;
	}
	
/*---------- 試合情報 ----------*/
	#match{
		padding-top: 100px;
	}
	#match:after{
	content: "";
	position: absolute;
	right: -50%;
	top: 150px;
	background-size: 450px;
	width: 450px;
	height: 450px;
	opacity: .2;
	transform: rotate(-90deg);
}
	.tab-area{
		flex-wrap: wrap;
	}
	.tab{
		padding: 3px;
		width: calc(100%/2);
	}
	.panel-area{
		padding-top: 40px;
		padding-bottom: 30px;
	}
  .match-ask{
    font-size: .7rem;
  }
	#match .match-menu{
		padding: 8px 4px;
	}
	#match .match-menu_date{
		padding: 0;
		font-size: 1.6rem;
		line-height: 1.3;
	}
	#match .match-menu_date span{
		font-size: 2.7rem;
		margin-right: 10px;
	}
	#match .match-menu_date span.week{
		font-size: 1.2rem;
		right: -15px;
		top: 34%;
	}
	#match .match-menu-vs{
		font-size: 1.1rem;
		margin-top: 5px;
	}
	#match .match-menu-vs span{
		width: 19px;
	}
	.match-data-banner > a,.match-data-banner > span{
		width: auto;
	}
	#match .match-data-league{
		width: auto;
	}
	#match .match-data-leagu_note{
		margin-top: 10px;
		font-size: 1.0rem;
	}
	#match .match-data-main{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		margin-top: 15px;
	}
	#match .match-data-club{
		width: 100%;
		margin: 0 auto;
	}
	#match .match-data-club:nth-of-type(1){
		position: relative;
		grid-column: 1 / 2;
	}
	#match .match-data-club:nth-of-type(1):before{
		content: "VS";
		position: absolute;
		top: 38px;
		left: calc(100% - 20px);
		color: #ffffff;
		font-size: 2.53333rem;
		font-weight: 600;
		font-family: 'vortis-Font';
		letter-spacing: .1em;
		line-height: 1.2;
	}
	#match .match-data-club:nth-of-type(2){
		grid-column: 2 / 3;
	}
	#match .match-data-club .emb{
		height: 90px;
	}
	#match .match-data-club .emb img{
		max-height: 100%;
	}
	#match .match-data-index{
		display: flex;
		align-items: center;
		flex-direction: column;
		grid-row: 2 / 3;
		grid-column: span 3;
		margin-top: 18px;
		width: auto;
	}
	#match .match-data-index_data{
		order: 2;
		margin-top: 10px;
	}
	#match .match-data-index_kickoff{
		order: 3;
	}
	#match .match-data-index_place{
		order: 3;
		font-size: 1.2rem;
	}
	#match .match-data-club .name{
		font-size: 1.2rem;
	}
	#match .match-data-index_kickoff span{
		font-size: 1.2rem;
	}
	#match .event-list ul{
		grid-template-columns: repeat(1,minmax(0,1fr));
	}
	#match .event-ttl{
		margin-bottom: 20px;
	}
	#match .event-list .event-list-inner .event-list-button._jp a{
		font-size: 1.3rem;
		letter-spacing: .1em;
	}

/*---------- グルメ ----------*/
	#groumet{
		padding-top: 100px;
		position: relative;
	}
	#groumet:after{
	content: "";
	position: absolute;
	left: -30%;
	bottom: -50px;
	background-image: url("../img/uzumaki.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 400px;
	width: 400px;
	height: 400px;
	opacity: .1;
		transform: rotate(100deg)
}
/*---------- グッズ ----------*/
	#goods{
		padding-top: 100px;
	}
#goods:after{
	left: -60%;
	top: 15%;
	background-size: 600px;
	width: 600px;
	height: 600px;
	opacity: .1;
	transform: rotate(90deg)
}
	#goods .cs-text{
		font-size: 1.8rem;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	
	#goods .goods-list ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#goods .goods-list ul li{
	width: calc(50% - 10px);
	margin-left: 20px;
	margin-bottom: 25px;
	position: relative;
	padding: .25rem 0 4rem;
}
#goods .goods-list ul li:nth-child(2n+1){
	margin-left: 0;
}
	#goods .goods-list h3{
		font-size: 1.3rem;
	}
	#goods .goods-list p{
		font-size: 1.1rem;
	}
	#goods .goods-list a{
		font-size: 1.3rem;
		padding: 4px;
		position: absolute;
		bottom: 0;
		width: 100%;
		left: 50%;
		transform: translate(-50%);
	}
/*---------- チケット ----------*/
	#ticket{
		padding-top: 100px;
	}
	#ticket:after{
	right: -52%;
	top: -16%;
	background-size: 530px;
	width: 530px;
	height: 530px;
	opacity: .1;
	transform: rotate(-90deg);
	}
	#ticket .ticket-list h3{
	padding: 8px 8% 8px;
	font-size: 1.4rem;
	margin-bottom:15px;
}
#ticket .ticket-img{
	flex-wrap: wrap;
	padding-left:40px;
	padding-right: 40px;
}
	#ticket .ticket-img div{
		margin-left: 0;
		margin-bottom: 10px;
	}
	#ticket .ticket-button ul li{
		width: calc(33.333% - 20px);
		margin-left: 5px;
	}
	#ticket .ticket-button ul li:first-child{
		margin-left: 0;
	}
	#ticket .ticket-button ul li span{
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	text-align: center;
	font-weight: bold;
	font-size: 1.1rem;
	margin-left: 0;
	padding: 10px 5px;
	width: 100%;
}
	#ticket .ticket-button ul li span figure{
		width: 80px;
	}
	
/*---------- アクセス ----------*/
	#access{
		padding-top: 100px;
	}
	#access:after{
	left: 0;
	top: -10%;
	background-size: 270px;
	width: 270px;
	height: 270px;
	opacity: .1;
	}
	#access .access-inner{
		padding-left: 0;
		padding-right: 0;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	#access .access-inner .container{
		width: 100%;
	}
	#access .access-box{
	flex-wrap: wrap;
		margin-bottom: 40px;
}
#access .access-box .map-img{
	width: 100%;
	flex-wrap: wrap;
	flex: none;
}
#access .access-box .map-img figure{
	width: 100%;
	flex: none;
}
	#access .access-box .map-img figure + figure{
		margin-top: 15px;
	}
#access .access-box .map-info{
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
}
	#access .access-box .map-info .map-info-text h3{
		font-size: 1.8rem;
	}
	#access .access-box .map-info .map-info-text p > span{
		font-size: 1.3rem;
	}
	#access .more-btn{
		font-size: 1.3rem;
	}
	
/*---------- ニュース ----------*/
	#news{
		padding-top: 100px;
		padding-bottom: 100px;
	}
	#news:after{
		height: 100%;
	}
	#news dl dt, #news dl dd{
		padding: 1rem .5rem;
		width: 100%;
	}
	#news dl dt{
		font-size: 1.7rem;
		word-break: break-all;
		border-bottom: none;
		justify-content: flex-start;
		padding-bottom: 0;
	}
	#news dl dd{
		font-size: 1.4rem;
	}
	
	footer{
		padding-top: 80px;
		padding-bottom: 80px;
	}
	footer img{
	width: 50px;
}
	footer .sns-list a{
		width: 20px;
	}
}
@media screen and (min-width: 737px){
	.container{
		max-width: 1060px;
		margin-left: auto;
		margin-right: auto;
	}
/*---------- チケット ----------*/
	#ticket .ticket-img{
		max-width: 1060px;
		margin-left: auto;
		margin-right: auto;
	}
/*---------- グッズ ----------*/
	#goods .goods-list.splash-goods{
		width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
	#goods .goods-list ul li:nth-child(4n+1){
	margin-left: 0;
}
	/*---------- アクセス ----------*/
	#access .more-btn{
		display: inline-block;
	}
	

	}

