@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

@media screen and (max-width: 768px) {}

/*-----------------------------------

	base

-----------------------------------*/
html {
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
	overflow-x: hidden;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
    font-size: 1.6em;
	color: #060606;
    line-height: 1.5;
	letter-spacing: 0;
	font-weight: 500;
	background: #FFF;
	margin:0 !important;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
}
body.open {
	height: 100vh;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
.contents_inner {
	max-width: 1100px;
    width: 90%;
	margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
}
a, a:link, a:visited {
	color: #060606;
	text-decoration:none;
    cursor: pointer;
	transition: all 0.5s;
}
a:hover {
	opacity: 0.6;
	text-decoration:none;
}
.sp{
	display:none;
}
.pc{
	display:block;
}
.left{
	float: left;
}
.right{
	float: right;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 12px;
		font-size: 1.2em;
	}
	.pc{
        display:none;
    }
    .sp{
        display:block;
    }
}

/*-----------------------------------

	clearfix

-----------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}

/*-----------------------------------

	header

-----------------------------------*/
header {
	position: relative;
}
header::after {
	content: "";
	width: 100%;
	height: 1px;
	background: rgb(0,0,0);
	background: #0062b2;
	/* background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(174,16,0,1) 10%, rgba(174,16,0,1) 90%, rgba(0,0,0,1) 100%); */
	position: absolute;
	bottom: 0;
	left: 0;
}
header #nav_menu ul {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 25px;
	height: 60px;
}
header #nav_menu ul li a {
	display: block;
	font-size: 16px;
	font-weight: 700;
	font-family: 'Noto Sans JP', serif;
	line-height: 1;
}
header #nav_menu ul li.official a {
	width: 100px;
	border: 1px solid #FFF;
	background: #00A0D8;
	color: #FFF;
	font-size: 12px;
	padding: 5px 0;
	text-align: center;
}
header .menu_btn_wrap {
	display: none;
}

@media screen and (max-width: 1100px) {
	header #nav_menu ul {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: inherit;
		padding: 0 15px;
	}
	header #nav_menu ul li a {
		font-size: 1.4vw;
	}
	header #nav_menu ul li.official a {
		width: 80px;
		font-size: 11px;
		padding: 5px 0;
	}
}

@media screen and (max-width: 768px) {
	header {
		position: static;
	}
	header::after {
		width: 0;
		height: 0;
	}
	header .menu_btn_wrap {
		display: block;
		width: 60px;
		height: 60px;
		cursor:pointer;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 999;
	}
	header .menu_btn_wrap .menu_btn {
		width: 20px;
		height: 18px;
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		-moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		z-index:999;
	}
	header .menu_btn_wrap .menu_btn .lineh,
	header .menu_btn_wrap .menu_btn .linem,
	header .menu_btn_wrap .menu_btn .lineb {
		position:absolute;
		left: 0;
		width: 20px;
		height: 2px;
		background: #060606;
		-moz-transition:all 0.3s;
		-webkit-transition:all 0.3s;
		transition:all 0.3s;
	}
	header .menu_btn_wrap .menu_btn .lineh {
		top:0;
	}
	header .menu_btn_wrap .menu_btn .linem {
		top: 50%;
		transform: translateY(-50%);
		opacity: 1;
	}
	header .menu_btn_wrap .menu_btn .lineb {
		bottom: 0;
	}
	header .menu_btn_wrap .menu_btn.active .lineh {
		-moz-transform:rotate(-135deg);
		-webkit-transform:rotate(-135deg);
		transform:rotate(-135deg);
		top: 8px;
	}
	header .menu_btn_wrap .menu_btn.active .linem {
		opacity: 0;
	}
	header .menu_btn_wrap .menu_btn.active .lineb {
		-moz-transform:rotate(135deg);
		-webkit-transform:rotate(135deg);
		transform:rotate(135deg);
		bottom: 8px;
	}	
	header #nav_menu {
		max-width: 320px;
		width: 100%;
		height: auto;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		background: #FFF;
		position: absolute;
		top: 0;
		left: -100%;
		padding: 60px 20px 40px 20px;
		display:inline-block;
		z-index: 999;
		box-sizing: border-box;
		transition: 0.3s;
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-ms-transition: 0.3s;
	}
	header #nav_menu.toggle {
		left: 0;
	}
	header #nav_menu ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 30px;
		height: auto;
	}
	header #nav_menu ul li {
		width: 100%;
	}
	header #nav_menu ul li a {
		text-align: center;
		font-size: 14px;
	}
	header #nav_menu ul li.official a {
		width: 100%;
		padding: 10px 0;
	}
}

header nav{
    margin: 0;
}

body::after{
    border:none !important;
}
/*-----------------------------------

	mainvisual

-----------------------------------*/
#mainvisual {
	position: relative;
    background-image: none !important;
    max-height: none;
    height: auto;
}
#mainvisual h1 {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
}
#mainvisual .countdown {
	background: rgba(0,119,195,0.7);
	color: #FFF;
	text-align: center;
	max-width: 1100px;
	width: 90%;
	position: absolute;
	top: 580px;
	left: 50%;
	transform: translateX(-50%);
	padding: 15px 0;
	line-height: 1;
	letter-spacing: 0.1em;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 20px;
    opacity: 0;
}
#mainvisual .countdown .item01 {
	font-size: 1.45vw;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
}
#mainvisual .countdown .item01 .txt01 {
	align-self: center;
}
#mainvisual .countdown .item01 #date {
	font-size: 4.3vw;
	margin: 0 10px 0 20px;
	line-height: 3vw;
    height: 3.4vw;
}
#mainvisual .countdown .item01 .txt02 {
	align-self: self-end;
}
#mainvisual .countdown .item02 {
	font-size: 4.3vw;
	line-height: 3vw;
    height: 3.4vw;
}
#mainvisual .text {
	width: 650px;
	position: absolute;
	top: 910px;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width: 1100px) {
	#mainvisual .countdown {
		top: 54vw;
	}	
	#mainvisual .text {
		width: 59.3vw;
		top: 83vw;
	}
}
@media screen and (max-width: 768px) {
	#mainvisual .countdown {
		width: 100vw;
		top: 50.0vw;
		padding: 10px 0;
		gap: 10px;
	}
	#mainvisual .countdown .item01 {
		font-size: 12px;
	}
	#mainvisual .countdown .item01 #date {
		font-size: 7vw;
		line-height: 4.5vw;
		height: 5.5vw;
		margin: 0 5px 0 10px;
	}
	#mainvisual .countdown .item02 {
		font-size: 7vw;
		line-height: 4.5vw;
		height: 5.5vw;
	}
	#mainvisual .text {
		width: 69.5vw;
		top: auto;
		bottom: -10px;
	}
}

/*-----------------------------------

	contents_common

-----------------------------------*/
section h2 {
	font-size: 48px;
	font-weight: 700;
	font-family: 'Noto Sans JP', serif;
	color: #060606;
	line-height: 195px;
	text-align: center;
	position: relative;
	height: 195px;
}
section h2::before {
	content: "";
    color: #9FE4FC;
    font-size: 250px;
	font-weight: 400;
	font-family: 'Noto Sans JP', serif;
    line-height: 215px;
	letter-spacing: -0.05em;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

@media screen and (max-width: 1100px) {
	section h2 {
		font-size: 40px;
		line-height: 142px;
		height: 142px;
	}	
	section h2::before {
		font-size: 170px;
		line-height: 164px;
		top:-20px;
	}	
}

@media screen and (max-width: 768px) {
	section h2 {
		font-size: 18px;
		line-height: 55px;
		height: 55px;
	}	
	section h2::before {
		font-size: 70px;
		line-height: 61px;
		top:-8px;
	}	
}

/*-----------------------------------

	racers

-----------------------------------*/
#racers {
	padding: 50px 0 100px 0;
}
#racers h2::before {
	content: "RACERS";
}
#racers .racers_wrap.pc {
	max-width: none;
	width: 100%;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 50px;
}
#racers .racers_wrap {
	max-width: 880px;
	width: 80%;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 50px 30px;
	margin: 0 auto;
}
#racers .racers_wrap.pc .box {
	width: 200px;
}
#racers .racers_wrap .box {
	width: calc((100% - (30px * 3)) / 4);
}
#racers .racers_wrap .box .text {
	background: rgb(38,24,21);
	background: linear-gradient(90deg, #ADD8E6 0%, #ADD8E6 25%, #FFFFFF 75%, #FFFFFF 100%);
	text-align: center;
	padding: 5px 0;
	line-height: 1.2;
	font-size: 15px;
}
#racers .racers_wrap .box .text .name {
	font-size: 22px;
	font-weight: 700;
}

@media screen and (max-width: 1100px) {
	#racers {
		padding: 20px 0 100px 0;
	}	
	#racers .racers_wrap {
		gap: 50px 20px;
	}
	#racers .racers_wrap .box {
		width: calc((100% - (20px * 3)) / 4);
	}
	#racers .racers_wrap .box .text {
		font-size: 13px;
	}
	#racers .racers_wrap .box .text .name {
		font-size: 18px;
	}
}

@media screen and (max-width: 768px) {
	#racers {
		padding: 50px 0;
	}
	#racers .racers_wrap.pc {
		display: none;
	}
	#racers .racers_wrap {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		gap: 15px 10px;
	}
	#racers .racers_wrap .box {
		width: calc((100% - (10px * 2)) / 3);
	}
	#racers .racers_wrap .box .text {
		font-size: 10px;
	}
	#racers .racers_wrap .box .text .name {
		font-size: 11px;
	}
}

@media screen and (max-width: 428px) {
	#racers .racers_wrap .box {
		width: calc((100% - 10px) / 2);
	}
}

/*-----------------------------------

	race

-----------------------------------*/
#race {
	padding: 0 0 100px 0;
}
#race h2::before {
	content: "RACE";
}

@media screen and (max-width: 768px) {
	#race {
		padding: 0 0 50px 0;
	}
}

/*-----------------------------------

	event

-----------------------------------*/
#event {
	padding: 0 0 100px 0;
}
#event h2::before {
	content: "EVENT";
}
#event .contents_inner {
	background: #f4f4f4;
	padding: 70px 30px;
}
#event h3 {
	font-size: 38px;
	font-weight: 700;
	font-family: 'Noto Sans JP', serif;
	line-height: 1;
	color: #0062b2;
	text-align: center;
	margin-bottom: 70px;
}
#event .event_wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 20px 30px;
	margin-bottom: 90px;
}
#event .event_wrap .box {
	width: calc((100% - 30px) / 2);
	background: #FFF;
	color: #060606;
}
#event .event_wrap:nth-of-type(2) {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#event .event_wrap:nth-of-type(2) .box {
	max-width: 800px;
	width: 100%;
}
#event .event_wrap .box .ttl {
	background: #0062b2;
	color: #FFF;
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	height: 90px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#event .event_wrap .box .subttl {
	font-size: 18px;
	font-weight: 700;
	color: #0062b2;
	text-align: center;
	padding: 20px 0;
}
#event .event_wrap .box .subttl br {
	display: none;
}
#event .event_wrap .box .image {
	margin: 30px auto;
	width: 90%;
}
#event .event_wrap .box .image01 {
	max-width: 360px;
}
#event .event_wrap .box .image02 {
	max-width: 226px;
}
#event .event_wrap .box .image03 {
	max-width: 222px;
}
#event .event_wrap .box .image04 {
	max-width: 379px;
}
#event .event_wrap .box table {
	border-top: 1px solid #f4f4f4;
	width: 100%;
}
#event .event_wrap .box table tr {
	border-bottom: 1px solid #f4f4f4;
}
#event .event_wrap .box table th {
	width: 145px;
	background: #666666;
	color: #FFF;
	text-align: left;
	font-weight: 500;
	vertical-align: middle;
	padding: 15px 20px;
}
#event .event_wrap .box table td {
	width: calc(100% - 145px);
	padding: 15px 20px;
}


#event .event_wrap .box table td p{
	padding: 1px 0;
}
#event .event_wrap .box p {
	padding: 15px;
}
#event .event_wrap .box p span {
	font-weight: 700;
	color: #0062b2;
}
#event .event_box {
	background: #FFF;
	color: #060606;
	padding: 30px 0 30px 30%;
	position: relative;
}
#event .event_box img {
	display: block;
	width: 164px;
	position: absolute;
	bottom: 30px;
	right: 72%;
}
#event .event_box p {
	font-size: 22px;
}
#event .event_box p span {
	font-weight: 700;
	color: #0062b2;
}
@media screen and (max-width: 1100px) {
	#event .event_wrap {
		gap: 20px;
	}
	#event .event_wrap .box {
		width: calc((100% - 20px) / 2);
	}
	#event .event_wrap .box .subttl br {
		display: inline-block;
	}
	#event .event_wrap .box table th {
		width: 100px;
	}
	#event .event_wrap .box table td {
		width: calc(100% - 100px);
	}
	#event .event_box {
		padding: 30px 0 30px 25%;
		position: relative;
	}
	#event .event_box img {
		width: 120px;
		right: 76%;
	}	
}
@media screen and (max-width: 768px) {
	#event {
		padding: 0 0 50px 0;
	}
	#event .contents_inner {
		padding: 30px;
	}
	#event h3 {
		font-size: 16px;
		margin-bottom: 20px;
	}
	#event .event_wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 15px;
		max-width: 420px;
		width: 100%;
		margin: 0 auto 30px;
	}
	#event .event_wrap .box {
		width: 100%;
	}
	#event .event_wrap .box .ttl {
		font-size: 14px;
		height: 45px;
	}
	#event .event_wrap .box .subttl {
		font-size: 12px;
		padding: 10px 0;
	}
	#event .event_wrap .box .image {
		margin: 15px auto;
		width: 90%;
	}
	#event .event_wrap .box .image01 img,
	#event .event_wrap .box .image02 img,
	#event .event_wrap .box .image03 img {
		display: block;
		height: 150px;
		object-fit: contain;
		margin: 0 auto;
	}
	#event .event_wrap .box table th {
		width: 75px;
		padding: 10px 15px;
	}
	#event .event_wrap .box table td {
		width: calc(100% - 75px);
		padding: 10px 15px;
	}
	#event .event_box {
		max-width: 420px;
		width: 100%;
		padding: 15px 0 15px 0;
		margin: 0 auto;
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 10px;
	}
	#event .event_box img {
		position: static;
		width: 71px;
	}
	#event .event_box p {
		font-size: 11px;
	}	
}

/*-----------------------------------

	campaign

-----------------------------------*/
#campaign {
	padding: 0 0 100px 0;
}
#campaign h2 {
	line-height: 148px;
	height: 148px;
}
#campaign h2::before {
	content: "CAMPAIGN";
	color: #9FE4FC;
	font-size: 190px;
	line-height: 163px;
	letter-spacing: -0.1em;
}
#campaign .contents_inner {
	background: #f4f4f4;
	padding: 70px 30px;
}
#campaign .campaign_wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 20px 30px;
}
#campaign .campaign_wrap .box {
	width: calc((100% - 30px) / 2);
	background: #FFF;
	color: #060606;
}


#campaign .campaign_wrap .box p {
	padding: 15px;
}
#campaign .campaign_wrap .box p span {
	font-weight: 700;
	color: #9FE4FC;
}

#campaign .campaign_wrap .box .ttl {
	background: #0062b2;
	color: #FFF;
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	height: 90px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 1100px) {
	#campaign h2 {
		line-height: 109px;
		height: 109px;
	}
	#campaign h2::before {
		font-size: 140px;
		line-height: 120px;
	}	
	#campaign .campaign_wrap {
		gap: 20px;
	}
	#campaign .campaign_wrap .box {
		width: calc((100% - 20px) / 2);
	}
}

@media screen and (max-width: 768px) {
	#campaign {
		padding: 0 0 50px 0;
	}
	#campaign .contents_inner {
		padding: 30px;
	}
	#campaign h2 {
		line-height: 55px;
		height: 55px;
	}
	#campaign h2::before {
		font-size: 70px;
		line-height: 61px;
	}
	#campaign .campaign_wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 15px;
		max-width: 420px;
		width: 100%;
		margin: 0 auto;
	}
	#campaign .campaign_wrap .box {
		width: 100%;
	}
	#campaign .campaign_wrap .box .ttl {
		font-size: 14px;
		height: 45px;
	}
}

/*-----------------------------------

	racetime

-----------------------------------*/
#racetime {
	padding: 0 0 100px 0;
}
#racetime h2 {
	line-height: 148px;
	height: 148px;
}
#racetime h2::before {
	content: "RACE TIME";
	font-size: 190px;
	line-height: 163px;
	letter-spacing: -0.1em;
	width: 100%;
}
#racetime img {
	display: block;
	max-width: 660px;
	width: 90%;
	margin: 70px auto 0;
}
@media screen and (max-width: 1100px) {
	#racetime h2 {
		line-height: 109px;
		height: 109px;
	}
	#racetime h2::before {
		font-size: 140px;
		line-height: 120px;
	}
}

@media screen and (max-width: 768px) {
	#racetime {
		padding: 0 0 50px 0;
	}
	#racetime h2 {
		line-height: 49px;
		height: 49px;
	}
	#racetime h2::before {
		font-size: 60px;
		line-height: 52px;
	}
	#racetime img {
		margin: 30px auto 0;
	}	
}

/*-----------------------------------

	aboutbank

-----------------------------------*/
#aboutbank {
	padding: 0 0 100px 0;
}
#aboutbank h2 {
	line-height: 131px;
	height: 131px;
}
#aboutbank h2::before {
	content: "ABOUT BANK";
	font-size: 165px;
	line-height: 143px;
	letter-spacing: -0.1em;
	width: 100%;
}
#aboutbank .contents_inner {
	padding-top: 70px;
	text-align: center;
}
#aboutbank .copy {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 20px;
}
#aboutbank ul {
	display: inline-block;
	text-align: left;
	font-size: 22px;
	margin-bottom: 70px;
}
#aboutbank ul li {
	list-style: disc inside;
	padding-left: 1.5em;
	text-indent: -1.5em;
}
#aboutbank .about {
	max-width: 710px;
	border: 19px solid #9fe4fc;
	background: #FFF;
	color: #060606;
	border-radius: 150px;
	margin: 0 auto;
	padding: 30px 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.8;
	text-align: left;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media screen and (max-width: 1100px) {
	#aboutbank h2 {
		line-height: 91px;
		height: 91px;
	}
	#aboutbank h2::before {
		font-size: 115px;
		line-height: 100px;
	}
	#aboutbank .copy {
		font-size: 28px;
	}
	#aboutbank ul {
		font-size: 18px;
	}
	#aboutbank .about {
		font-size: 16px;
	}
}

@media screen and (max-width: 768px) {
	#aboutbank {
		padding: 0 0 50px 0;
	}
	#aboutbank h2 {
		line-height: 45px;
		height: 45px;
	}
	#aboutbank h2::before {
		font-size: 56px;
		line-height: 49px;
	}
	#aboutbank .contents_inner {
		padding-top: 30px;
	}
	#aboutbank .copy {
		font-size: 16px;
		line-height: 1.8;
		margin-bottom: 10px;
	}
	#aboutbank ul {
		font-size: 12px;
		margin-bottom: 30px;
	}
	#aboutbank .about {
		border: 8px solid #9fe4fc;
		padding: 20px 0;
		font-size: 11px;
	}	
}

/*-----------------------------------

	tv

-----------------------------------*/
#tv {
	padding: 0 0 100px 0;
}
#tv h2::before {
	content: "TV";
}
#tv .contents_inner {
	background: #f4f4f4;
	padding: 70px 50px;
}
#tv .box {
	max-width: 640px;
	width: 100%;
	background: #FFF;
	text-align: center;
	margin: 0 auto;
	font-size: 22px;
	font-weight: 700;
}
#tv .box:first-child {
	margin-bottom: 30px;
}
#tv .box h3 {
	background: #0062b2;
	padding: 20px;
	line-height: 1;
    color: #FFF;
}
#tv .box .text {
	color: #060606;
	padding: 20px;
}
#tv .box .text .ttl {
	color: #0062b2;
}
@media screen and (max-width: 768px) {
	#tv {
		padding: 0 0 50px 0;
	}
	#tv .contents_inner {
		padding: 30px;
	}
	#tv .box:first-child {
		margin-bottom: 15px;
	}
	#tv .box {
		font-size: 11px;
	}
	#tv .box h3 {
		font-size: 14px;
		padding: 10px;
		line-height: 1;
	}
	#tv .box .text {
		padding: 10px;
	}
}

/*-----------------------------------

	access

-----------------------------------*/
#access {
	padding: 0 0 100px 0;
}
#access h2::before {
	content: "ACCESS";
}
#access #ggmap {
	position: relative;
	padding-bottom: 36.3636%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin-bottom: 40px;
}
#access #ggmap iframe,
#access #ggmap object,
#access #ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#access .access_inner.info {
	margin-bottom: 40px;
}
#access .access_inner h3 {
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 20px;
    color: white;
}
#access .access_inner h3::before {
	font-size: 30px;
	margin-right: 20px;
}
#access .access_inner.info h3::before {
	content: "INFORMATION";
}
#access .access_inner.bus h3::before {
	content: "SHUTTLE BUS";
}
#access .access_inner .wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 20px;
}
#access .access_inner .wrap table {
	width: calc((100% - 20px) / 2);
}
#access .access_inner .wrap table th,
#access .access_inner .wrap table td {
	border: 1px solid #FFF;
	line-height: 1;
	padding: 15px;
}
#access .access_inner .wrap table th {
	background: #666666;
	font-weight: 700;
	color: #FFF;
}
#access .access_inner .wrap table td {
	background: #F0F0F0;
	color: #060606;
}
#access .access_inner .wrap table td a {
	color: #060606;
	text-decoration: underline;
}
#access .access_inner.info table th {
	width: 160px;
	text-align: left;
	color: #FFF;
}
#access .access_inner.info table td {
	width: calc(100% - 160px);
}
#access .access_inner.bus table td {
	font-size: 15px;
	padding: 10px 0 !important;
	text-align: center;
}
#access .access_inner.bus table td.item01 {
	width: 40px;
}
#access .access_inner.bus table td.item02,
#access .access_inner.bus table td.item03 {
	width: calc((100% - 40px) / 2);
}
#access .access_inner.bus table td ul {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 30px;
}

@media screen and (max-width: 1100px) {
	#access .access_inner.info table th {
		width: 120px;
	}
	#access .access_inner.info table td {
		width: calc(100% - 120px);
	}
}

@media screen and (max-width: 768px) {
	#access {
		padding: 0 0 50px 0;
	}	
	#access #ggmap {
		padding-bottom: 63.492%;
		margin-bottom: 30px;
	}
	#access .access_inner.info {
		margin-bottom: 30px;
	}
	#access .access_inner h3 {
		margin-bottom: 15px;
	}
	#access .access_inner h3::before {
		font-size: 20px;
	}
	#access .access_inner .wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 15px;
	}
	#access .access_inner.info .wrap{
		gap: 0;
	}
	#access .access_inner .wrap table {
		width: 100%;
	}
	#access .access_inner .wrap table th,
	#access .access_inner .wrap table td {
		padding: 10px;
	}	
	#access .access_inner.info table th {
		width: 110px;
	}
	#access .access_inner.info table td {
		width: calc(100% - 110px);
	}
	#access .access_inner.info .wrap table:first-of-type tr:last-of-type th,
	#access .access_inner.info .wrap table:first-of-type tr:last-of-type td {
		border-bottom: none;
	}
	#access .access_inner.bus table td {
		font-size: 10px;
	}
	#access .access_inner.bus table td ul {
		gap: 20px;
	}
	
}

/*-----------------------------------

	banner

-----------------------------------*/
#banner {
	padding: 0 0 100px 0;
}
#banner ul {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 25px;
}
#banner ul li {
	width: calc((100% - (25px * 2)) / 3);
}
#banner ul li a {
	display: block;
}

@media screen and (max-width: 768px) {
	#banner {
		padding: 0 0 50px 0;
	}
	#banner ul {
		max-width: 420px;
		width: 100%;
		margin: 0 auto;
	}	
	#banner ul li {
		width: 100%;
	}
}

/*-----------------------------------

	footer

-----------------------------------*/
footer small {
	display: block;
	text-align: center;
	font-size: 10px;
	padding: 10px;
	color: #060606;
}

/*-----------------------------------

	アニメーションスタイル

-----------------------------------*/

/* フェードイン(初期値) */
.js-fadeUp {
	opacity: 0; /* 最初は非表示 */
	transform: translateY(30px); /* 下に30pxの位置から */
	transition: opacity 1s, transform 1s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	transform: translateY(0); /* 30px上に移動する */
	transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
}



#event .event_wrap .box a,
#campaign .campaign_wrap .box a,
#tv .box a{
	color: #3ea561;
}