@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&family=Noto+Sans+JP:wght@500;700&family=Noto+Serif+JP:wght@700&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: #FFF;
    line-height: 1.5;
	letter-spacing: 0;
	font-weight: 500;
	background: #000;
	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 {
    width: 100%;
    height: auto;
}
a, a:link, a:visited {
	color: #FFF;
	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: 14px;
		font-size: 1.4em;
	}
	.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;
}


/*-----------------------------------

	背景アニメーション

-----------------------------------*/
/*
  div.bg{
	position: fixed;
	z-index: -1;
  }
  .bg div{
	position:absolute;
	width:0;
	height:0;
	border-radius:50%;
	opacity:.25;
	pointer-events:none;
  }
  
  .bg div:nth-child(1){
	box-shadow:0 0 45vmax 45vmax #ff6a00;
	animation:move1 19s linear infinite,
			 glow   6s  ease-in-out infinite alternate;
  }
  .bg div:nth-child(2){
	box-shadow:0 0 45vmax 45vmax #ff8f00;
	animation:move2 25s linear infinite,
			 glow   8s  ease-in-out infinite alternate;
  }
  .bg div:nth-child(3){
	box-shadow:0 0 45vmax 45vmax #ffbf66;
	opacity:.20;
	animation:move3 15s linear infinite,
			 glow  10s  ease-in-out infinite alternate;
  }
  
  @keyframes glow{
	from{ opacity:.20; }
	to  { opacity:.40; }
  }
  
  @keyframes move1{
	0%   {top:0vh;   left:50vw;}
	25%  {top:0vh;   left:0vw;}
	50%  {top:100vh; left:0vw;}
	75%  {top:100vh; left:100vw;}
	100% {top:0vh;   left:50vw;}
  }
  @keyframes move2{
	0%   {top:50vh;  left:100vw;}
	25%  {top:100vh; left:100vw;}
	50%  {top:100vh; left:0vw;}
	75%  {top:0vh;   left:0vw;}
	100% {top:50vh;  left:100vw;}
  }
  @keyframes move3{
	0%   {top:100vh; left:50vw;}
	25%  {top:100vh; left:100vw;}
	50%  {top:0vh;   left:100vw;}
	75%  {top:0vh;   left:0vw;}
	100% {top:100vh; left:50vw;}
  }

*/


/*-----------------------------------

	header

-----------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color: rgba(0,0,0,0.75);
}
header::after {
	content: "";
	width: 100%;
	height: 1px;
	background: rgb(0,0,0);
	background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgb(214, 86, 0) 10%, rgb(214, 86, 0)  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;
	margin-right:-150px
}

@media screen and (max-width: 768px) {
	header #nav_menu ul {
		margin-right:0;
	}
}

header #nav_menu ul li a {
	display: block;
	font-size: 16px;
	font-weight: 700;
	font-family: 'Noto Serif JP', serif;
	line-height: 1;
}
header #nav_menu ul li.official a {
	width: 100px;
	border: 1px solid #808080;
	background: #1a1a1a;
	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: fixed;
	width: 100%;
	height: 60px;
	}
	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: #FFF;
		-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: #000;
		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;
}


/* --- SNS icons inside nav --- */
#nav_menu{ position:relative; }

/* PC: 右端に常時表示 */
#nav_menu > ul.sns-links{
  position:absolute;
  top:50%;
  right:12px;
  transform:translateY(-50%);
  display:flex;
  flex-direction:row;
  gap:12px;
  margin:0; padding:0; list-style:none;
  z-index:1000;
}
#nav_menu > ul.sns-links li{
  flex:0 0 auto;
  width:auto;              /* 既存 ul li {width:100%} を打ち消す */
}
#nav_menu > ul.sns-links a{
  display:grid;
  place-items:center;
  width:32px; height:32px;
  border-radius:50%;
  background:#0f0f0f;
  border:1px solid #666;
}
#nav_menu > ul.sns-links svg{
  width:18px; height:18px; fill:#fff;
}

/* PCでメニューと被らない余白 */
header #nav_menu ul:first-of-type{ padding-right:150px; }

/* --- SP: メニュー展開時のみ、横並びで中央表示 --- */
@media (max-width:768px){

  /* 閉じている時は非表示 */
  #nav_menu > ul.sns-links{ display:none; }

  /* 開いた時だけ表示 */
  #nav_menu.toggle > ul.sns-links{
    display:flex !important;      /* 強制表示 */
    position:static;              /* 通常フロー */
    transform:none;
    justify-content:center;
    align-items:center;
    flex-direction:row !important;/* 縦並び化を確実に打ち消す */
    flex-wrap:nowrap;
    gap:16px !important;          /* 既存 gap を上書き */
    padding:16px 0 10px;
    margin:0;
    order:999;                    /* メニューの最後に配置 */
  }

  /* li / a の継承を打ち消し */
  #nav_menu.toggle > ul.sns-links li{ width:auto !important; }
  #nav_menu.toggle > ul.sns-links a{
    width:44px; height:44px;      /* 少し大きく */
  }
  #nav_menu.toggle > ul.sns-links svg{
    width:22px; height:22px;
  }

  /* SPでは右余白を戻す */
  header #nav_menu ul:first-of-type{ padding-right:0; }
}




body::after{
    border:none !important;
}

#contents{
	top: 60px;
    position: relative;
}

/*-----------------------------------

	mainvisual

-----------------------------------*/
#mainvisual {
	position: relative;
    background-image: none !important;
    height: auto;
	min-height: 960px;
}
#mainvisual h1 {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	#mainvisual .pc {
		display: none !important;
	}
}


@media screen and (min-width: 767px) {
	#mainvisual .sp {
		display: none !important;
	}
}

#mainvisual .countdown {
	background: rgb(38,24,21);
	background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgb(214, 86, 0) 10%, rgb(214, 86, 0)  90%, rgba(0,0,0,1) 100%);
	text-align: center;
	max-width: 1100px;
	width: 90%;
	position: absolute;
	top: 800px;
	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: 620px;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width: 1100px) {
	#mainvisual .countdown {
		top: 60vw;
	}	
	#mainvisual .text {
		width: 59.3vw;
		top: 65vw;
	}
}
@media screen and (max-width: 768px) {
	#mainvisual .countdown {
		width: 100vw;
		top: 120.5vw;
		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 Serif JP', serif;
	color: #FFF;
	line-height: 195px;
	text-align: center;
	position: relative;
	height: 195px;
	margin-bottom: 40px;
}
section h2::before {
	content: "";
    color: #56321a;
    font-size: 250px;
	font-weight: 400;
	font-family: 'Libre Baskerville', serif;
    line-height: 215px;
	letter-spacing: -0.05em;
    position: absolute;
    top: 0;
    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;
	}	
}

@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;
	}	
}


/*-----------------------------------

	rainbow

-----------------------------------*/
#rainbow {
	padding: 50px 0 100px 0;
}
#rainbow h2::before {
	content: "RAINBOW";
}
#rainbow .rainbow_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;
}
#rainbow .rainbow_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;
}
#rainbow .rainbow_wrap.pc .box {
	width: 200px;
}
#rainbow .rainbow_wrap .box {
	width: calc((100% - (30px * 3)) / 4);
}
#rainbow .rainbow_wrap .box .text {
	background: rgb(38,24,21);
	background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgb(214, 86, 0) 10%, rgb(214, 86, 0)  90%, rgba(0,0,0,1) 100%);
	text-align: center;
	padding: 5px 0;
	line-height: 1.2;
	font-size: 15px;
}
#rainbow .rainbow_wrap .box .text .name {
	font-size: 22px;
	font-weight: 700;
}

@media screen and (max-width: 1100px) {
	#rainbow {
		padding: 20px 0 100px 0;
	}	
	#rainbow .rainbow_wrap {
		gap: 50px 20px;
	}
	#rainbow .rainbow_wrap .box {
		width: calc((100% - (20px * 3)) / 4);
	}
	#rainbow .rainbow_wrap .box .text {
		font-size: 13px;
	}
	#rainbow .rainbow_wrap .box .text .name {
		font-size: 18px;
	}
}

@media screen and (max-width: 768px) {
	#rainbow {
		padding: 50px 0;
	}
	#rainbow .rainbow_wrap.pc {
		display: none;
	}
	#rainbow .rainbow_wrap {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		gap: 15px 10px;
	}
	#rainbow .rainbow_wrap .box {
		width: calc((100% - (10px * 2)) / 3);
	}
	#rainbow .rainbow_wrap .box .text {
		font-size: 10px;
	}
	#rainbow .rainbow_wrap .box .text .name {
		font-size: 11px;
	}
}

@media screen and (max-width: 428px) {
	#rainbow .rainbow_wrap .box {
		width: calc((100% - 10px) / 2);
	}
}


/*-----------------------------------

	racers

-----------------------------------*/
#racers {
	padding: 50px 0 100px 0;
}
#racers h2::before {
	content: "RACERS";
}

#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 .box {
	width: calc((100% - (30px * 3)) / 4);
}
#racers .racers_wrap .box .text {
	background: rgb(38,24,21);
	background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, #693a1a 10%, #693a1a 90%, rgba(0, 0, 0, 1) 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)) / 2);
	}
	#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: 40px 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 Serif JP', serif;
	line-height: 1;
	color: #56321a;
	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: #000;
	display:flex;
	flex-direction:column;
}
#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: #56321a;
	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: #56321a;
	text-align: center;
	padding: 20px 0;
}
#event .event_wrap .box .subttl br {
	display: none;
}
#event .event_wrap .box .image {
	margin: 0 auto 10px;
	flex:0 0 220px;          /* 例: 220px 固定高 */
	display:flex;            /* 中の img を中央寄せ */
	justify-content:center;
	align-items:center;
}

#event .event_wrap .box .image img{
	max-width:100%;
	max-height:100%;
	height:auto;
	width:auto;
	object-fit:contain;      /* はみ出さずに収める */
  }

#event .event_wrap .box table {
	border-top: 1px solid #f4f4f4;
	width: 100%;
	margin-top:auto; 
}
#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: #56321a;
}
#event .event_box {
	background: #FFF;
	color: #000;
	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: #56321a;
}
@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 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";
	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: #000;
}


#campaign .campaign_wrap .box p {
	padding: 15px;
}
#campaign .campaign_wrap .box p span {
	font-weight: 700;
	color: #56321a;
}

#campaign .campaign_wrap .box .ttl {
	background: #bf8800;
	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 #e1b200;
	background: #FFF;
	color: #000;
	border-radius: 150px;
	margin: 0 auto 100px;
	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 #e1b200;
		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: #56321a;
	padding: 20px;
	line-height: 1;
    color: white;
}
#tv .box .text {
	color: #000;
	padding: 20px;
}
#tv .box .text .ttl {
	color: #56321a;
}
@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 #000;
	line-height: 1;
	padding: 15px;
}
#access .access_inner .wrap table th {
	background: #666666;
	font-weight: 700;
}
#access .access_inner .wrap table td {
	background: #FFF;
	color: #000;
}
#access .access_inner .wrap table td a {
	color: #000;
	text-decoration: underline;
}
#access .access_inner.info table th {
	width: 160px;
	text-align: left;
}
#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;
}

/*-----------------------------------

	アニメーションスタイル

-----------------------------------*/

/* フェードイン(初期値) */
.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: #0000FF;
}



/* 優勝者
--------------------------------------------------------------*/
#winner {
	position: relative;
	z-index: 0;
	/*background: #010a65;*/
	padding-bottom: 200px;
  }
  #winner .inner {
	max-width: 1100px;
	margin: 0 auto 0;
  }
  #winner {
	padding: 50px 0 100px 0;
	}
  #winner h2::before {
	content: "WINNER";
  }
  #winner .inner .img_box {
	position: relative;
	width:100%;
	height:100%;
	border-left:2px solid #b07616;
	border-right:2px solid #b07616;
  }
  #winner .inner .img_box:before,
  #winner .inner .img_box:after {
	content:"";
	display:block;
	height:2px;
	width:100%;
	background: #b07616;
	background: -moz-linear-gradient(left, #b07616 0%, #fdf0aa 50%, #b07616 100%);
	background: -webkit-gradient(linear, left center, right center, from(#b07616), color-stop(50%, #fdf0aa), to(#b07616));
	background: -webkit-linear-gradient(left, #b07616 0%, #fdf0aa 50%, #b07616 100%);
	background: -o-linear-gradient(left, #b07616 0%, #fdf0aa 50%, #b07616 100%);
	background: -ms-linear-gradient(left, #b07616 0%, #fdf0aa 50%, #b07616 100%);
	background: linear-gradient(to right, #b07616 0%, #fdf0aa 50%, #b07616 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=#b07616, endColorstr=#b07616,GradientType=1 ); 
  }
  #winner .inner .img_box img {
	display: block;
	margin: auto;
  }
  #winner .inner .information {
	margin: 25px auto 0;
	text-align: center;
	color: #fff;
  }
  #winner .inner .information .race {
	color: #e3d494;
	margin-bottom: 20px;
  }
  
  #winner .inner .information .name {
	font-size: 20px;
	margin-bottom: 15px;
  }
  
  #winner .inner .information .name span{
	font-size: 30px;
  }
  #winner .inner .information .result {
	max-width: 130px;
	margin: 20px auto 0;
  }
  #winner .inner .information .result a {
	background: #b96900;
	border: 2px solid #7c635f;
	display: block;
	padding: 8px 0;
	color: #fff;
	font-size: 14px;
  }
  #winner .inner .winner_new {
	max-width: 460px;
	margin: auto auto 60px;
	width: 100%;
	position: relative;
  }
  #winner .inner .winner_new .medal {
	max-width: 100px;
	margin: auto;
	width: 100%;
	position: absolute;
	top: -80px;
	left: -90px;
	z-index: 10;
  }
  
  #winner .inner h3 {
	position: relative;
	text-align: center;
	padding-bottom: 15px;
	margin: 0 auto 70px;
  }
  #winner .inner h3:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 100%;
	/*background: #010a65;*/
	background: -moz-linear-gradient(left, #010a65 0%, #ebce7b 15%, #b67d1e 50%, #ebce7b 85%, #010a65 100%);
	background: -webkit-gradient(linear, left center, right center, from(#010a65), color-stop(15%, #ebce7b), color-stop(50%, #b67d1e), color-stop(85%, #ebce7b), to(#010a65));
	background: -webkit-linear-gradient(left, #010a65 0%, #ebce7b 15%, #b67d1e 50%, #ebce7b 85%, #010a65 100%);
	background: -o-linear-gradient(left, #010a65 0%, #ebce7b 15%, #b67d1e 50%, #ebce7b 85%, #010a65 100%);
	background: -ms-linear-gradient(left, #010a65 0%, #ebce7b 15%, #b67d1e 50%, #ebce7b 85%, #010a65 100%);
	background: linear-gradient(to right, #010a65 0%, #ebce7b 15%, #b67d1e 50%, #ebce7b 85%, #010a65 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=#010a65, endColorstr=#010a65,GradientType=1 ); 
  }
  #winner .inner .winner_history {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
  }
  #winner .inner .winner_history li {
	width: 30%;
	max-width: 300px;
	position: relative;
	
  }
  #winner .inner .winner_history .medal {
	max-width: 100px;
	margin: auto;
	width: 100%;
	position: absolute;
	top: -48px;
	left: -50px;
	z-index: 10;
  }
  
  @media screen and (max-width: 768px) {
	#winner .inner .winner_history .medal img{
		max-width: 60px;
		left: 30px;
		position: relative;
		top: 20px;
	  }
  }

  /* 寬仁親王牌とは
  --------------------------------------------------------------*/

  
  #about .inner {
	
	padding: 100px 0 200px;
	background: url(../img/lp_bg_about.jpg) top 30px left no-repeat;
	background-size: cover;
  }
  #about {
	padding: 50px 0 100px 0;
	}
  #about h2::before {
	content: "ABOUT";
  }
  #about .inner p {
	color: #ccc;
	max-width: 860px;
	margin: auto auto 45px;
	padding: 0 20px;
	font-size: 18px;
  }


  /* 開催情報
--------------------------------------------------------------*/
#outline {
	position: relative;
	/*background: #fff;*/
	padding-top: 70px;
  }
  #outline::before{
	content: '';
	position: absolute;
	left:0;
	top: 0;
	z-index: 1;
	width:100%;
	height:100%;
	/*background: #010a65;*/
  }
  #outline .inner {
	position: relative;
	top: -60px;
	z-index: 10;
	
	transform-origin: bottom left;
	/*background: #28180d;*/
	padding: 0 30px;
  }
  #outline .inner::before {
	  content :'';
	  position:absolute;
	  top:0;
	  left:0;
	  width:100%;
	  height:100%;
	  /*background: #28180d;*/
	  transform-origin:0 0;
	  transform:skew(7deg);
	  z-index:-1;
  }
  #outline .outline_wrap {
	
	max-width: 1100px;
	width: 100%;
	margin: auto;
	padding: 20px 0;
  }
  #outline .outline_wrap.translate {
	opacity: 1;
  }

  #outline .outline_wrap {
	padding: 50px 0 20px 0;
	}
  #outline .outline_wrap h2::before {
	content: "OUTLINE";
  }

/*  #outline .inner p {
	color: #ccc;
	max-width: 860px;
	margin: auto auto 45px;
	padding: 0 20px;
	font-size: 18px;
  }*/
  h3.left_line {
	color: #e3d494;
	display: block;
	margin: 80px auto 20px;
	padding: 0 30px 20px 0;
	font-size: 32px;
	position: relative;
  }
  h3.left_line span {
	color: #ffffff;
	font-size: 17px;
  }
  
  #outline .inner .btn_area {
	backface-visibility: hidden;
	overflow: hidden;
	margin-bottom: 30px;
	display: block;
  }
  #outline .inner .btn_area a {
	border-radius: 0;
	border: 2px solid #808080;
	max-width: 400px;
	background: #1b1b3c;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
  }
  #outline .inner .btn_area a::after {
	content: none;
  }
  *{
	  backface-visibility: hidden;
	  -webkit-backface-visibility: hidden;
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
	  -webkit-font-smoothing: antialiased;
  }
  #outline h4 {
	font-size: 30px;
	margin-bottom: 20px;
	color: #fff;
	margin-top: 40px;
  }
  #outline h4 span {
	color: #fff;
	margin-left: 30px;
  }
  #outline h4::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 15px;
	font-size: 26px;
  }
  #outline h4#information::before {
	content: "\f05a";
  }
  #outline h4#shuttlebus::before {
	content: "\f207";
  }
  
  #outline .infotmation_info {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 0 30px;
  }
  #outline .infotmation_info .table {
	width: 48%;
	max-width: 540px;
  }
  #outline .table dt {
	background: #666666;
	border-color: #28180d;
  }
  #outline .table dd {
	border-color: #28180d;
  }
  #outline iframe {
	width: 100%;
  }

  #outline .bus_wrap .bus_box {
	max-width: 540px;
	margin-bottom: 40px;
  }
  #outline .bus_wrap .bus_box .bus_title {
	position: relative;
	padding: 0 0 0 25px;
	font-weight: bold;
	margin: 0 0 20px;
  }
  #outline .bus_wrap p {
	color: #fff;
  }
  #outline dl.table.dd_many dl dt,
  #outline dl.table dt:first-child,
  #outline dl.table dt:first-child + dd {
	border-top: none;
  }
  #outline dl.table.dd_many dd {
	width: 21%;
  }
  _:lang(x)+_:-webkit-full-screen-document, #outline dl.table.dd_many dd {width: 20%;}
  _:lang(x)+_:-webkit-full-screen-document, .bus_box + .bus_box dl.table.medium dd {width: calc(100% - 270px);}
  #outline dl.table.medium.dd_many.arrow dd::after {
	color: #010a65 !important;
  }
  #outline .bus_wrap .bus_box .bus_title span {
	font-size: 12px;
	display: block;
	font-weight: normal;
	margin: 5px 0 0;
  }
  #outline .bus_wrap .bus_box .bus_title::before {
	position: absolute;
	top: 0;
	left: 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 20px;
	content: "\f3c5";
  }
  
  
  #outline #vote_ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1100px;
	margin: 80px auto 40px;
	text-align: center;
	color: #000;
	font-weight: bold;
	font-size: 30px;
	padding: 10px 0;
	background: #000000;
	background: -moz-linear-gradient(left, #000000 0%, #be852c 25%, #f6f792 50%, #be852c 75%, #000000 100%);
	background: -webkit-gradient(linear, left center, right center, from(#000000), color-stop(25%, #be852c), color-stop(50%, #f6f792), color-stop(75%, #be852c), to(#000000));
	background: -webkit-linear-gradient(left, #000000 0%, #be852c 25%, #f6f792 50%, #be852c 75%, #000000 100%);
	background: -o-linear-gradient(left, #000000 0%, #be852c 25%, #f6f792 50%, #be852c 75%, #000000 100%);
	background: -ms-linear-gradient(left, #000000 0%, #be852c 25%, #f6f792 50%, #be852c 75%, #000000 100%);
	background: linear-gradient(to right, #000000 0%, #be852c 25%, #f6f792 50%, #be852c 75%, #000000 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=#000000, endColorstr=#000000,GradientType=1 ); 
  }
  
  #outline #vote_list {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0 auto 67px;
  }
  #outline #vote_list li {
	max-width: 350px;
	background: #fff;
	text-align: center;
	margin-bottom: 30px;
	padding: 15px 0;
  }
  #outline #vote_list li img {
	display: block;
	margin: auto;
  }
  
  #outline .inner .btn_area {
	margin-bottom: 60px;
  }
  
  


  /*
  
 
　　出場者
  
 
  */

  

  #racer {
	position: relative;
	/*background: #fff;*/
  }
  #racer::before{
	content: '';
	position: absolute;
	left:0;
	top: 0;
	z-index: 1;
	width:100%;
	height:100%;
	/*background: #010a65;*/
  }
  #racer .inner {
	position: relative;
	top: -60px;
	z-index: 10;
	
	transform-origin: bottom left;
	/*background: #28180d;*/
	padding: 0 30px;
  }
  #racer .inner::before {
	  content :'';
	  position:absolute;
	  top:0;
	  left:0;
	  width:100%;
	  height:100%;
	  /*background: #28180d;*/
	  transform-origin:0 0;
	  transform:skew(7deg);
	  z-index:-1;
  }
  #racer .outline_wrap {
	
	max-width: 1100px;
	width: 100%;
	margin: auto;
	padding: 20px 0;
  }
  #racer .outline_wrap.translate {
	opacity: 1;
  }

  #racer .outline_wrap{
	padding: 50px 0 220px 0;
	}

  #racer .inner #racer_list {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
  }

  
  #racer .inner #racer_list .racer_box {
	width: 48%;
	max-width: auto;
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 40px;
  }

  @media screen and (max-width: 767px) {
	#racer .inner #racer_list .racer_box {
		width: 100%;
	}
  }

  
  #racer .inner #racer_list .racer_box .medal {
	margin: auto;
	width: auto;
	position: absolute;
	top: -30px;
	right: -45px;
	z-index: 10;
	padding: 0;
  }
  #racer .inner #racer_list .racer_box .img_box {
	width: 46%;
	position: relative;
  }
  #racer .inner #racer_list .racer_box .img_box img {
	width: 100%;
	display: block;
  }
  #racer .inner #racer_list .racer_box .information {
	width: 54%;
	/*background: #010a65;*/
	font-size: 14px;
	color: #fff;
	padding: 5px 20px;
	position: relative;
  }
  #racer .inner #racer_list .racer_box .information::before {
	content: '';
	position: absolute;
	left: -42px;
	top: 0;
	display: inline-block;
	width: 174px;
	height: 100%;
	background: url(../img/img_triangle_blue.png) no-repeat;
	background-size: contain;
	z-index: 1;
  }
  #racer .inner #racer_list .racer_box .information p {
	color: #fff;
	font-size: 14px;
	margin-bottom: 10px;
	padding: 0;
	position: relative;
	z-index: 3;
  }
  #racer .inner #racer_list .racer_box .information p.name {
	font-size: 20px;
	margin-bottom: 0;
  }
  #racer .inner #racer_list .racer_box .information p.name span {
	font-size: 30px;
  }
  #racer .inner #racer_list .racer_box .information p.rank {
	font-size: 16px;
	margin-bottom: 20px;
  }
  #racer .inner #racer_list .racer_box .information .history {
	font-size: .85em;
	margin-bottom: 20px;
	letter-spacing: 0;
	position: relative;
	z-index: 3;
  }
  #racer .inner #racer_list .racer_box .information .comment {
	margin-bottom: 0;
  }
  #racer .inner #racer_list .racer_box .information .comment {
	margin-bottom: 0;
  }


  /*
  
 
  レース展望
  
 
  */



  
#description {
	position: relative;
	margin-top: -180px;
	z-index: 10;
	background: #010126;
  }
  
  #description .inner {
	max-width: 1100px;
	width: 100%;
	margin: auto;
	padding: 50px 0 50px;
  }
  
  #description p {
	max-width: 860px;
	margin: auto auto 45px;
	padding: 0 20px;
	font-size: 18px;
	color: #fff;
  }

  #description h3.left_line {
	text-align: center;
	padding: 0;
  }

  #description .inner .btn_area a {
	border-radius: 0;
	border: 2px solid #808080;
	max-width: 400px;
	background: #1b1b3c;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
  }
  #description .inner .btn_area a::after {
	content: none;
  }
  #description h4 {
	font-size: 30px;
	margin-bottom: 20px;
	color: #fff;
	margin-top: 40px;
  }
  #description h4 span {
	color: #fff;
	margin-left: 30px;
  }
  #description h4::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 15px;
	font-size: 26px;
  }
  #description h4#information::before {
	content: "\f05a";
  }
  #description h4#shuttlebus::before {
	content: "\f207";
  }
  
  #description .infotmation_info {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 0 30px;
  }
  #description .infotmation_info .table {
	width: 48%;
	max-width: 540px;
  }
  #description .table dt {
	background: #666666;
	border-color: #010126;
  }
  #description .table dd {
	border-color: #010126;
  }
  #description iframe {
	width: 100%;
  }


  #description .video iframe {
	width: 100%;       /* 幅に合わせて拡大縮小 */
	max-width: 640px;
	height: auto;      /* 高さは自動計算 */
	aspect-ratio: 16/9;/* 16:9 をキープ */
	border: 0;
	display: block;    /* Safari 対策：余白を消す */
	margin: 0 auto;

  }


  
/* youtube企画
-------------------------------------------------------------- */
#magazine h2::before {
	content: "YouTube";
}

#magazine .magazine_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 15px 0 45px;
	max-width: 1100px;
  }
  #magazine .magazine_box {
	width: 32%;
	margin: 15px 0 25px;
	max-width: 340px;
	position: relative;
	border:#FFF;
  }
  #magazine .magazine_list:after {
	content:"";
	display:block;
	width: 32%;
	height:0;
  }
  #magazine .magazine_box a {
	display: block;
	height: 100%;
  }
  #magazine .magazine_box .img_box {
	width: 100%;
  }
  #magazine .magazine_box .img_box img {
	display: block;
	width: 100%;
  }
  #magazine .magazine_box .text_box {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	border-top: 3px solid #ffffff;
	padding: 18px 20px;
	text-align: center;
	color: #333;
	cursor: pointer;
  }
  #magazine .magazine_box .text_box p {
	margin: 0;
  }
  
  h3.magazine_ttl::before {
	content: "\f279";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 15px;
	font-size: 26px;
  }
  
  
/*-----------------------------------

	JINSパークパーク

-----------------------------------*/
#jins {
	padding: 40px 0 100px 0;
}
#jins h2::before {
	white-space: pre;
	content: "National\A Brand";
	font-size: 120px;
	line-height: 90px;
}

@media screen and (max-width: 768px) {
	#jins {
		padding: 0 0 50px 0;
	}
	#jins h2::before {
		font-size: 70px;
		line-height: 50px;
		margin-top: -20px;
	}
}

#jins .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;
}
#jins .event_wrap .box {
	width: calc((100% - 30px) / 2);
	background: #FFF;
	color: #000;
	display:flex;
	flex-direction:column;
}
#jins .event_wrap:nth-of-type(2) {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#jins .event_wrap:nth-of-type(2) .box {
	max-width: 800px;
	width: 100%;
}
#jins .event_wrap .box .ttl {
	background: #56321a;
	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;
}
#jins .event_wrap .box .subttl {
	font-size: 18px;
	font-weight: 700;
	color: #56321a;
	text-align: center;
	padding: 20px 0;
}
#jins .event_wrap .box .subttl br {
	display: none;
}
#jins .event_wrap .box .image {
	margin: 0 auto 10px;
	flex:0 0 220px;          /* 例: 220px 固定高 */
	display:flex;            /* 中の img を中央寄せ */
	justify-content:center;
	align-items:center;
}

#jins .event_wrap .box .image img{
	max-width:100%;
	max-height:100%;
	height:auto;
	width:auto;
	object-fit:contain;      /* はみ出さずに収める */
  }

#jins .event_wrap .box table {
	border-top: 1px solid #f4f4f4;
	width: 100%;
	margin-top:auto; 
}
#jins .event_wrap .box table tr {
	border-bottom: 1px solid #f4f4f4;
}
#jins .event_wrap .box table th {
	width: 145px;
	background: #666666;
	color: #FFF;
	text-align: left;
	font-weight: 500;
	vertical-align: middle;
	padding: 15px 20px;
}
#jins .event_wrap .box table td {
	width: calc(100% - 145px);
	padding: 15px 20px;
}


#jins .event_wrap .box table td p{
	padding: 1px 0;
}
#jins .event_wrap .box p {
	padding: 15px;
}
#jins .event_wrap .box p span {
	font-weight: 700;
	color: #56321a;
}
#jins .event_box {
	background: #FFF;
	color: #000;
	padding: 30px 0 30px 30%;
	position: relative;
}
#jins .event_box img {
	display: block;
	width: 164px;
	position: absolute;
	bottom: 30px;
	right: 72%;
}
#jins .event_box p {
	font-size: 22px;
}
#jins .event_box p span {
	font-weight: 700;
	color: #56321a;
}
@media screen and (max-width: 1100px) {
	#jins .event_wrap {
		gap: 20px;
	}
	#jins .event_wrap .box {
		width: calc((100% - 20px) / 2);
	}
	#jins .event_wrap .box .subttl br {
		display: inline-block;
	}
	#jins .event_wrap .box table th {
		width: 100px;
	}
	#jins .event_wrap .box table td {
		width: calc(100% - 100px);
	}
	#jins .event_box {
		padding: 30px 0 30px 25%;
		position: relative;
	}
	#jins .event_box img {
		width: 120px;
		right: 76%;
	}	
}
@media screen and (max-width: 768px) {
	#jins {
		padding: 0 0 50px 0;
	}
	#jins .contents_inner {
		padding: 30px;
	}
	#jins h3 {
		font-size: 16px;
		margin-bottom: 20px;
	}
	#jins .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;
	}
	#jins .event_wrap .box {
		width: 100%;
	}
	#jins .event_wrap .box .ttl {
		font-size: 14px;
		height: 45px;
	}
	#jins .event_wrap .box .subttl {
		font-size: 12px;
		padding: 10px 0;
	}
	#jins .event_wrap .box .image {
		margin: 15px auto;
		width: 90%;
	}

	#jins .event_wrap .box table th {
		width: 75px;
		padding: 10px 15px;
	}
	#jins .event_wrap .box table td {
		width: calc(100% - 75px);
		padding: 10px 15px;
	}
	#jins .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;
	}
	#jins .event_box img {
		position: static;
		width: 71px;
	}
	#jins .event_box p {
		font-size: 11px;
	}	
}
  
/*-----------------------------------

	race

-----------------------------------*/
#eventmap {
	padding: 40px 0 100px 0;
}
#eventmap h2::before {
	content: "MAP";
}

@media screen and (max-width: 768px) {
	#eventmap {
		padding: 0 0 50px 0;
	}
}

