@charset "utf-8";


/* --------------------------------------------------
	Resetting default margin and padding
-------------------------------------------------- */

/* !HTML5 elements
---------------------------------------------------------- */
header, footer, nav, section, aside, article
{ display: block;}

/* !Reseting
---------------------------------------------------------- */
body {
	font-family: "Noto Sans JP","Orbitron", serif;
	color: #ffffff;
	font-size: 15px;
	line-height: 1.5;
	font-weight: 500;
	-webkit-text-size-adjust: none;
	background-color: #000;
}
@media (max-width: 767px) {
body {
	font-size: 13px;
}
}

body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, th, td,input,a,textarea,select,span,nav,section,header
{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
input,
textarea {
	margin: 0;
	font-size: 100%;
	appearance: none;
	-webkit-appearance: none;
	border: none;
	outline: none;
}
label
{ cursor: pointer;}
table
{ border-collapse: collapse; border-spacing: 0; font-size: 100%;}
fieldset, img
{ border: 0;}
img
{ vertical-align: top; max-width: 100%;}
address, caption, cite, code, dfn, em, th, var
{ font-style: normal; font-weight: normal;}
ol, ul
{ list-style: none;}
caption, th
{ text-align: left;}
h1, h2, h3, h4, h5, h6
{ font-size: 100%; font-weight: 500;}
q:after, q:before
{ content:'';}
a, input
{ /* outline: none; */ }
abbr, acronym
{ border: 0;}

/* header */
.article_header{
  overflow-x: hidden;
  overflow: hidden;
}

.header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
}

.logo{
    display: flex;
    align-items: center;
}

.header_topic,
.nav_logo,.header_logo{
    display: block;
}

.header_topic,
.nav_logo{
    margin: 14px 0px 14px 20px;
    width: 187px;
    height: 100%;
}

.header-cta {
  margin-top: 20px;
}

/* nav */

.nav_btn,
.header_btn{
    width: 47px;
}

.nav_cta{
  width: 227px;
    height: 40px;
    padding: 10px 19px;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
     margin: 18px auto 0px auto;
    text-align: center;
}


/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 311px;
  background:#000000;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
  z-index: 1000;
  display: block;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 2px solid #ffffff;
}
nav .inner ul li a {
    display: block;
    color:#ffffff;
    font-size: 14px;
    padding: 1em;
    font-weight: 600;
    text-decoration: none;
    transition-duration: 0.2s;
}

@media screen and (max-width: 767px) {
  nav {
    left: -300px;
    width: 311px;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
display: block;
    position: fixed;
    top: 8px;
    right: 18px;
    width: 30px;
    height: 30px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #4A4EB4;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}


/* .header PC */
@media screen and (min-width:1024px) {

	.header{
		display: flex;
	}


  nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 311px;
  background:#ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 1;
}

nav .inner ul li{
      border-bottom: 0px solid var(--color-card);
}

nav .inner ul li a {
    display: block;
    color:#000000;
    font-size: 15px;
    padding: 8px 11px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: 0.2s;
    display: inline-block;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #000000;
  margin: 0px 12px 0px 0px;
}
nav .inner ul li a:hover {
  color:#4A4EB4;
  border-bottom: 2px solid #4A4EB4;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}

.inner{
  display: flex;
  align-items: end;
}

.inner ul{
  display: flex;
}


    .header_topic {
        width: 204px;
        margin: 0px 0px 0px 33px;
    }

    .header_logo{
    width: 90px;
    margin: 20px 0px 10px 10px;
    }

    nav{
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
    }

    .toggle_btn {
        display: none;
    }

    .nav_cta{
      width: 54%;
    }

    .btn.nav_cta{
        margin: 0px 0px;
        text-align: center;
        font-size: 75%;
        color: #FFF;
    }

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0px 10px;
}

nav .inner {
    padding: 16px;
}

}



/* !Clearfix
---------------------------------------------------------- */
.clearfix {
	display: block;
	min-height: 1%;
}
.clearfix:after {
	clear: both;
	content:".";
	display: block;
	height: 0;
	visibility: hidden;
}
* html .clearfix {
	height: 1%;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/* !Layout
---------------------------------------------------------- */
html { overflow-y: scroll;}
body { }
@media print {
	html,
	html body { *zoom: 0.65;}
}



/* link
------------------------------------------------ */
a {
	color: #fff;
	text-decoration:none;
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important; /* Firefox */
	-webkit-transition: all 0.3s !important; /* Chrome&Safari */
}


.op,
.op a,
.op img,
.op input {
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
}
.op:hover,
.op a:hover,
.op:hover img,
.op:hover input {
	opacity: .5;
	-webkit-opacity: .5;
	-moz-opacity: .5;
	filter: alpha(opacity=50);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=50)"; /* IE 8 */
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
}

.player_item:hover {
	opacity: .5;
	-webkit-opacity: .5;
	-moz-opacity: .5;
	filter: alpha(opacity=50);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=50)"; /* IE 8 */
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
}

@media (max-width: 767px) {
a:hover {
	opacity: 1;
}
.op:hover,
.op a:hover,
.op:hover img,
.op:hover input {
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=100)"; /* IE 8 */
}
}



/* !fs
------------------------------------------------ */
.visible-pc {
	display: block !important;
}
.visible-tab {
	display: none !important;
}
.visible-ts {
	display: none !important;
}
.visible-pc-only {
	display: block !important;
}


@media (max-width: 1024px) {
.visible-tab {
	display: block !important;
}
.visible-pc-only {
	display: none!important;
}
}
@media (max-width: 767px) {
.visible-pc {
	display: none !important;
}
.visible-ts {
	display: block !important;
}
}


/* !fonts
------------------------------------------------ */
.fwb {
	font-weight: 600;
}
.fwm {
	font-weight: 500;
}

.vat {
	vertical-align: top !important;
}
.vam {
	vertical-align: middle !important;
}
.tal {
	text-align: left !important;
}
.tac {
	text-align: center !important;
}
.tar {
	text-align: right !important;
}


/* !ff
------------------------------------------------ */
.ff_notosans {
	font-family: "Noto Sans JP", sans-serif;
}


/* html
----------------------------------------------- */
html.html-lock {
}



/* wrapper
----------------------------------------------- */
#wrapper {
	overflow: hidden;
}
.inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}



/* H
----------------------------------------------- */
.game_hdl {
	font-size: 60px;
	font-family: "Orbitron";
    background: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    line-height: 1.1;
	z-index: 100;
}
.game_hdl.right{
	text-align: right;
	margin-right: 9px;
}

.game_hdl.center{
	text-align: center;
}

.subtxt{
	text-align: center;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.4;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.brsp{
	display: none;
}

@media (max-width: 1024px) {
.game_hdl {
	font-size: min(71px, 11.17vw);
}
}

@media (max-width: 767px) {
.game_hdl {
	font-size: 45px;
}

.subtxt{
	font-size: 20px;
}

.brsp{
	display: block;
}
}


.com_fix {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
}
.com_fix .fix_list {
	background: rgba(255, 255, 255, 0.5);
	padding: 20px 10px 20px 15px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	-webkit-border-radius: 16px 0 0 16px;
	-moz-border-radius: 16px 0 0 16px;
	-ms-border-radius: 16px 0 0 16px;
	-o-border-radius: 16px 0 0 16px;
	border-radius: 16px 0 0 16px;
}
.com_fix .fix_list a {
	display: block;
	width: 48px;
}
.com_fix .fix_list a:hover {
	opacity: 0.5;
}

@media (max-width: 767px) {
.com_fix .fix_list {
	padding: 7px 5px;
	gap: 3px;
	-webkit-border-radius: 6px 0 0 6px;
	-moz-border-radius: 6px 0 0 6px;
	-ms-border-radius: 6px 0 0 6px;
	-o-border-radius: 6px 0 0 6px;
	border-radius: 6px 0 0 6px;
}
.com_fix .fix_list a {
	width: 30px;
}
}



/* top
----------------------------------------------- */

.game_player {
    padding: 130px 210px;
    background: url(../img/back_player.png) center 0 no-repeat;
    background-size: cover;
    position: relative;
}

.isesaki_game .game_main {
	position: relative;
}
.isesaki_game .game_main .main_img img {
	width: 100%;
}

.isesaki_game .game_message {
	padding: 110px 0 0px;
}
.isesaki_game .game_overview {
	max-width: 1000px;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 0 20px;
    margin: 0 auto;
}
.isesaki_game .game_overview:before {
	top: -139px;
    position: absolute;
    content: "";
    background-image: url(../img/bg_illust.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 61%;
    height: min(492px, 31.92vw);
    z-index: 1;
}

.isesaki_game .game_overview .overview_box {
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	width: 971px;
	height: 472px;
	padding: 0 30px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 30px;
	position: relative;
	margin-bottom: 140px;
}


.isesaki_game .game_overview .overview_txt {
	text-align: center;
	color: #ffffff;
	font-size: 22px;
	max-width: 764px;
	position: relative;
	z-index: 1;
}

.isesaki_game .game_player .player_inner {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.isesaki_game .game_player .player_box {
	background-color: #ffffff9e;
	border-radius: 10px;
	padding: 10px;
	align-items: stretch;
	position: relative;
	z-index: 1;
	display: grid;
  	gap: 1px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 50px;
	box-shadow: 0 0 20px 0 #838383;
}
.isesaki_game .game_player .player_box .player_item {
	width: 100%;
	position: relative;
}
.isesaki_game .game_player .player_box .player_item img {
	width: 100%;
}



@media (max-width: 1023px) {
.isesaki_game .game_overview .overview_txt {
	font-size: 20px;
}

.game_player {
   padding: 130px 20px;
}

.isesaki_game .game_overview .overview_box {
	background-size: contain;
        width: 88.8vw;
        height: 65.33vw;
        padding: 17px 20px;
        gap: 15px;
}



}
@media (max-width: 767px) {
.isesaki_game .game_message {
	background-size: 100% auto;
	padding: 115px 0 0px;
}
.isesaki_game .game_overview:before {
	bottom: auto;
        top: -131px;
        left: -11px;
        width: 100%;
        height: 52%;
}

.isesaki_game .game_overview .overview_box {
	background-size: contain;
        width: 88.8vw;
        height: 65.33vw;
        padding: 17px 20px;
        gap: 15px;
}

.isesaki_game .game_overview .overview_txt {
	font-size: 14px;
	line-height: 1.86;
}

.isesaki_game .game_player .player_box {
	    margin: 37px 0 0;
        gap: 1px 1px;
        flex-wrap: wrap;

		display: grid;
  grid-template-columns: repeat(2, 1fr); /* スマホ: 2列 */
  gap: 1px;
}

.game_player {
    padding: 60px 20px;
    background: url(../img/back_player_sp.png) center 0 no-repeat;
    background-size: cover;
    position: relative;
}
}



/* event
----------------------------------------------- */
.isesaki_game .game_event {
	padding: 130px 210px;
	background: url("../img/bg_eventimgs.png") center 0 no-repeat;
	background-size: cover;
	position: relative;
}
.isesaki_game .game_event .common_line.line_btm {
	bottom: 10px;
}
.isesaki_game .game_event .event_mess {
	max-width: 83.47vw;
    margin: 0 auto 30px;
}
.isesaki_game .game_event .event_box {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.isesaki_game .game_event .event_box .event_img {
	text-align: center;
}

@media (max-width: 1023px) {
.isesaki_game .game_event .event_mess {
	padding: 0 0 30px;
}

.isesaki_game .game_event {
	padding: 130px 20px;
	background: url("../img/bg_eventimgs.png") center 0 no-repeat;
	background-size: cover;
	position: relative;
}

}
@media (max-width: 767px) {
.isesaki_game .game_event {
	padding: 60px 20px 70px;
	background: url("../img/bg_eventimgs.png") center 0 no-repeat;
	background-size: cover;
}
.isesaki_game .game_event .event_mess {
	max-width: 83.47vw;
    margin: 0 auto 0px;
}
.isesaki_game .game_event .event_box {
	gap: 20px;
	padding: 0 14px;
}
.isesaki_game .game_event .event_box .event_img {
	text-align: center;
}
}



/* link
----------------------------------------------- */
.isesaki_game .game_links {
	background: url("../img/bg_link.png") center 0 no-repeat;
	padding: 130px 20px;
    background-size: cover;
    position: relative;
}



.isesaki_game .game_broadcast {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

.isesaki_game .game_broadcast .broadcast_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px 22px;
	margin: 50px 0 0;
}
.isesaki_game .game_broadcast .broadcast_box li {
	max-width: 604px;
	-webkit-box-shadow: 0 0 20px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 0 20px rgba(0,0,0,0.2);
	-ms-box-shadow: 0 0 20px rgba(0,0,0,0.2);
	-o-box-shadow: 0 0 20px rgba(0,0,0,0.2);
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.isesaki_game .game_broadcast .broadcast_box a:hover {
	opacity: 0.5;
}
.isesaki_game .game_broadcast .broadcast_box li.broad_telev {
	width: 604px;
	border-radius: 20px;
}
.isesaki_game .game_broadcast .broadcast_box li.broad_telev .telev_box {
	background: #ffffffdb;
	padding: 20px 20px 30px;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 5px;
}
.isesaki_game .game_broadcast .broadcast_box li.broad_telev .telev_tit {
	font-size: 30px;
	font-weight: 500;
	line-height: 1.4;
	background:#282525;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.telev_line{
	background: linear-gradient(90deg, #20224E 0%, #4A4EB4 100%);
	width: 100px;
height: 5px;
margin: 10px;
}

.isesaki_game .game_broadcast .broadcast_box li.broad_telev .telev_txt {
	color: #282525;
	font-size: 22px;
}
@media (max-width: 767px) {
.isesaki_game .game_links {
	padding: 80px 0 50px;
}

.link_txt {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
}

.isesaki_game .game_broadcast .broadcast_box {
	flex-direction: column;
	gap: 25px;
	max-width: 305px;
	margin: 30px auto 0;
}
.isesaki_game .game_broadcast .broadcast_box li {
	width: 100%;
}
.isesaki_game .game_broadcast .broadcast_box li.broad_telev {
	width: 100%;
}
.isesaki_game .game_broadcast .broadcast_box li.broad_telev .telev_box {
	padding: 15px 18px 18px;
}
.isesaki_game .game_broadcast .broadcast_box li.broad_telev .telev_tit {
	font-size: 16px;
}

.telev_line{
	background: linear-gradient(90deg, #20224E 0%, #4A4EB4 100%);
	width: 100px;
height: 3px;
}
.isesaki_game .game_broadcast .broadcast_box li.broad_telev .telev_txt {
	font-size: 13px;
}
}

.isesaki_game .game_relate {
	position: relative;
	max-width: 1076px;
	margin: 75px auto 0;
	padding: 0 20px;
}

.link_txt{
	text-align: center;
	font-size: 22px;
	margin-top: 10px;
}

.isesaki_game .game_relate .relate_box {
	margin: 80px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 38px 8px;
    flex-direction: column;
    align-items: center;
}
.isesaki_game .game_relate .relate_box li {
	width: calc((100% - 16px)/3);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
	-ms-box-shadow: 0 0 10px rgba(0,0,0,0.2);
	-o-box-shadow: 0 0 10px rgba(0,0,0,0.2);
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.isesaki_game .game_relate .relate_box li.box_full {
	width: 72%;
}
.isesaki_game .game_relate .relate_box a {
	display: block;
}
.isesaki_game .game_relate .relate_box a:hover {
	opacity: 0.5;
}

@media (max-width: 767px) {
.isesaki_game .game_relate {
	margin: 60px auto 0;
	padding: 0 25px;
}

.isesaki_game .game_relate .relate_box {
	margin: 15px 0 0;
	gap: 12px 3px;
}
.isesaki_game .game_relate .relate_box li {
	width: calc((100% - 6px)/1.5);
}
}



/* time
----------------------------------------------- */
.isesaki_game .game_time {
	padding: 210px 0 340px;
	position: relative;
}


.isesaki_game .game_time .time_inner {
	max-width: 604px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.isesaki_game .game_time .time_cont {
	display: flex;
	flex-direction: column;
	gap: 60px 0;
	margin: 40px 0 0;
}
.isesaki_game .game_time .time_item {
	
}
.isesaki_game .game_time .time_tit {
	padding: 0 0 15px;
	display: flex;
	justify-content: flex-start;
	position: relative;
}
.isesaki_game .game_time .time_tit .tit_in {
	font-size: 25px;
	line-height: 1.2;
	font-weight: 700;
	background: #FFF;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.isesaki_game .game_time .time_table {
	width: 100%;
	border: 2px #4a4eb4 solid;
	font-family: "Noto Sans JP", sans-serif;
	background-color: #fff;
}
.isesaki_game .game_time .time_table th,
.isesaki_game .game_time .time_table td {
	text-align: center;
	vertical-align: middle;
	width: 20%;
	font-size: 20px;
	line-height: 1.2;
	padding: 20px 10px;
	color: #000;
}
.isesaki_game .game_time .time_table th:not(:last-child),
.isesaki_game .game_time .time_table td:not(:last-child) {
	border-right: 2px #dae0e0 dashed;
}
.isesaki_game .game_time .time_table th {
	background: #4a4eb4;
	color: #fff;
}
.isesaki_game .game_time .time_table td {
	border-top: 2px #dae0e0 dashed;
}
.isesaki_game .game_time .time_table .table_lar {
	width: 40%;
}

@media (max-width: 767px) {
.isesaki_game .game_time {
	padding: 70px 0 50px;
}

.isesaki_game .game_time .time_inner {
	padding: 0 35px;
}
.isesaki_game .game_time .time_cont {
	gap: 20px 0;
	margin: 30px 0 0;
}
.isesaki_game .game_time .time_tit {
	margin: 0 0 5px;
	padding: 0 0 5px;
}
.isesaki_game .game_time .time_tit .tit_in {
	font-size: 15px;
}

.isesaki_game .game_time .time_table {
	width: 100%;
	border: 1px #4a4eb4 solid;
}
.isesaki_game .game_time .time_table th,
.isesaki_game .game_time .time_table td {
	font-size: 11px;
	padding: 10px 5px;
}
.isesaki_game .game_time .time_table th:not(:last-child),
.isesaki_game .game_time .time_table td:not(:last-child) {
	border-right: 1px #dae0e0 dashed;
}
.isesaki_game .game_time .time_table td {
	border-top: 1px #dae0e0 dashed;
}
}



/* access
----------------------------------------------- */
.isesaki_game .game_access {
	padding: 120px 20px 10vw;
	background: linear-gradient(180deg, #000 0%, #000 81.25%, #064CA3 100%);
    position: relative;
	z-index: 2;
}

.isesaki_game .game_access:before {
    position: absolute;
    content: "";
    left: 351px;
    background-image: url(../img/bg_illust.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 58%;
    height: min(474px, 32.92vw);
    z-index: -1;
    top: 37px;
    transform: scale(-1.2, 1);
}

.isesaki_game .game_access .access_inner {
	max-width: 1060px;
	margin: 0 auto;
	padding: 85px 20px 70px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
	border-radius: 12px;
}
.isesaki_game .game_access .access_cont {
	max-width: 936px;
	margin: 0 auto;
}
.isesaki_game .game_access .access_tit {
	color: #FFF;
	font-size: 28px;
	font-weight: 500;
	border-bottom: 4px #FFF solid;
	padding: 0 0 5px;
	margin: 0 0 25px;
}
.isesaki_game .game_access .access_bycar {
	margin: 30px 0 0;
}
.isesaki_game .game_access .bycar_box {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.isesaki_game .game_access .bycar_map {
	width: 47.5%;
}
.isesaki_game .game_access .bycar_map .map_txt {
	font-size: 17px;
	margin: 0 0 10px;
}
.isesaki_game .game_access .bycar_map .map_frame iframe {
	width: 100%;
	height: 440px;
}
.isesaki_game .game_access .bycar_method {
	width: 48%;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.isesaki_game .game_access .bycar_method .method_item {
	
}
.isesaki_game .game_access .bycar_method .method_tit {
	border-bottom: 2px #fff solid;
	display: flex;
	flex-direction: column;
	padding: 0 0 10px;
	gap: 4px;
	line-height: 1.3;
	margin: 0 0 10px;
}
.isesaki_game .game_access .bycar_method .method_tit .tit_lar {
	font-size: 20px;
}
.isesaki_game .game_access .bycar_method .method_tit .tit_sml {
	font-size: 15px;
}
.isesaki_game .game_access .bycar_method .method_det {
	font-size: 18px;
	margin: 0 0 20px;
}
.isesaki_game .game_access .bycar_method .method_img {
	
}

.isesaki_game .game_access .access_park {
	margin: 30px 0 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.isesaki_game .game_access .access_park .park_hd {
	display: flex;
	flex-direction: column;
	border-bottom: 2px #fff solid;
	padding: 0 0 5px;
	margin: 0 0 30px;
	gap: 3px;
	font-weight: 500;
	color: #fff;
	line-height: 1.3;
}
.isesaki_game .game_access .access_park .park_hd .hd_lar {
	font-size: 24px;
}
.isesaki_game .game_access .access_park .park_hd .hd_sml {
	font-size: 19px;
}
.isesaki_game .game_access .park_box {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}
.isesaki_game .game_access .park_map {
	width: 48%;
}
.isesaki_game .game_access .park_map .map_img {
	
}
.isesaki_game .game_access .park_capacity {
	width: 48%;
}

.isesaki_game .game_access .park_capacity .capacity_note {
	margin: 10px 0 0;
	font-size: 16px;
	text-indent: -1em;
	padding-left: 1em;
}
.isesaki_game .game_access .park_tit {
	font-size: 22px;
	margin: 0 0 5px;
}

.isesaki_game .game_access .access_bytrain {
	margin: 50px 0 0;
}
.isesaki_game .game_access .bytrain_box {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.isesaki_game .game_access .bytrain_map {
	width: 50%;
}
.isesaki_game .game_access .bytrain_map .map_txt {
	font-size: 15px;
	margin: 25px 0 0;
}
.isesaki_game .game_access .bytrain_taxi {
	width: 48%;
}
.isesaki_game .game_access .bytrain_taxi .taxi_img {
	
}
.isesaki_game .game_access .bytrain_taxi .taxi_note {
	margin: 10px 0 0;
	text-indent: -1em;
	padding-left: 1em;
	font-size: 16px;
}


@media (max-width: 767px) {
.isesaki_game .game_access {
	padding: 35px 25px 12.87vw;
}

.isesaki_game .game_access:before {
    bottom: auto;
            top: -50px;
        left: 29px;
        width: 84%;
        height: 10%;
    }

.isesaki_game .game_access .access_inner {
	padding: 25px 10px 40px;
}
.isesaki_game .game_access .access_tit {
	font-size: 15px;
	border-bottom: 2px #fff solid;
	margin: 0 0 10px;
	padding: 0 0 3px;
}
.isesaki_game .game_access .access_bycar {
	margin: 20px 0 0;
}
.isesaki_game .game_access .bycar_box {
	flex-direction: column;
	gap: 15px;
}
.isesaki_game .game_access .bycar_map {
	width: 100%;
}
.isesaki_game .game_access .bycar_map .map_txt {
	font-size: 10px;
	margin: 0 0 5px;
}
.isesaki_game .game_access .bycar_map .map_frame iframe {
	height: 250px;
}
.isesaki_game .game_access .bycar_method {
	width: 100%;
	gap: 20px;
}
.isesaki_game .game_access .bycar_method .method_tit {
	padding: 0 0 5px;
	gap: 0;
	margin: 0 0 5px;
}
.isesaki_game .game_access .bycar_method .method_tit .tit_lar {
	font-size: 12px;
}
.isesaki_game .game_access .bycar_method .method_tit .tit_sml {
	font-size: 11px;
}
.isesaki_game .game_access .bycar_method .method_det {
	font-size: 10px;
	margin: 0 0 5px;
}
.isesaki_game .game_access .bycar_method .method_img {
	padding: 0 25px 0 0;
}

.isesaki_game .game_access .access_park {
	margin: 30px 0 0;
}
.isesaki_game .game_access .access_park .park_hd {
	margin: 0 0 15px;
	gap: 3px;
	width: 100%;
}
.isesaki_game .game_access .access_park .park_hd .hd_lar {
	font-size: 14px;
}
.isesaki_game .game_access .access_park .park_hd .hd_sml {
	font-size: 12px;
}
.isesaki_game .game_access .park_box {
	flex-direction: column;
	gap: 15px;
}
.isesaki_game .game_access .park_map {
	width: 100%;
}
.isesaki_game .game_access .park_capacity {
	width: 100%;
}
.isesaki_game .game_access .park_capacity .capacity_note {
	margin: 5px 0 0;
	font-size: 10px;
}
.isesaki_game .game_access .park_tit {
	font-size: 14px;
}

.isesaki_game .game_access .bytrain_box {
	flex-direction: column;
	gap: 20px;
}
.isesaki_game .game_access .bytrain_map {
	width: 100%;
}
.isesaki_game .game_access .bytrain_map .map_img {
	padding: 0 10px 0 0;
}
.isesaki_game .game_access .bytrain_map .map_txt {
	font-size: 10px;
	margin: 10px 0 0;
}
.isesaki_game .game_access .bytrain_taxi {
	width: 100%;
}
.isesaki_game .game_access .bytrain_taxi .taxi_img {
	padding: 0 15px 0 0;
}
.isesaki_game .game_access .bytrain_taxi .taxi_note {
	margin: 3px 0 0;
	font-size: 10px;
}
}





