@charset "utf-8";
html {
    background-color: #fff;
    height: -webkit-fill-available;
}

@keyframes bgcchange {
    0% {background:#f2f2f2;}
    25% {background:#f2e1c2;}
    50% {background:#f2deda;}
    75% {background:#dae8f2;}
    100% {background:#f2f2f2;}
}

body {
    position: relative;
    left: 0;
    min-width: 320px;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    animation: bgcchange 20s ease infinite;
    color: #222;
    font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-feature-settings: "palt";
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: #231815;
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

/*
CLASSES
===========================================
*/


/* パソコンで見たときは"pc"のclassがついた画像が表示される */

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}


/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */

@media only screen and (max-width: 767px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
}

@media (min-width: 768px) {
    .pc-br:after {
        content: "";
        display: block;
    }
    .for-sp {
        display: none;
    }
}


/*
BOOTSTRAP EXTENTIONS
===========================================
*/

.container {
    max-width: 1100px; 
/*    max-width: 1281px;*/
    position: relative;
    margin-right: auto;
    margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
    width: auto;
}
#page-visual .container {
    max-width: none; 
}

.img-cover {
    width: 100%;
    height: auto;
}


/* navbar */

.navbar {
    border-radius: 0;
    min-height: 48px;
}

.container>.navbar-header,
.container-fluid>.navbar-header,
.container>.navbar-collapse,
.container-fluid>.navbar-collapse {
    padding: 0 !important;
    border-top: 0 none;
}

.navbar-header {
    background: linear-gradient(to right bottom, #b28c47 0% 10%, #d3be92 20%, #fff, #d3be92 80%, #b28c47 90% 100%);
    width: auto;
}

.navbar-brand{
    margin: 0!important;
    padding: 10px!important;
    width: 100%;
}

.navbar-brand .img-cover{
    width: auto;
    height: 66px;
    display: flex!important;
    margin: 0 auto;
}

@media (min-width: 1201px) {
    .container-fluid {
        padding: 0;
    }
    .navbar-header {
        width: 221px;
    }
    .navbar-brand {
        height: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
    .navbar-brand {
        margin-left: 0px!important;
    }
}


/* PARALLAX
--------------------- */

.parallax-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.parallax-wrap .parallax1 {
    position: absolute;
    top: -50%;
    width: 100%;
    height: 1600%;
}

.parallax-wrap .parallax1 .parallax-inner {
    width: 100%;
    height: 100%;
    background: url("../img/bg_parallax1.png") repeat center top;
}

.parallax-wrap .parallax2 {
    position: absolute;
    top: -50%;
    width: 100%;
    height: 1800%;
}

.parallax-wrap .parallax2 .parallax-inner {
    width: 100%;
    height: 100%;
    background: url("../img/bg_parallax2.png") repeat-y center top;
}

.parallax-wrap .parallax3 {
    position: absolute;
    top: -50%;
    width: 100%;
    height: 800%;
}

.parallax-wrap .parallax3 .parallax-inner {
    width: 100%;
    height: 100%;
    background: url("../img/bg_parallax3.png") repeat-y center top;
}

@media screen and (max-width: 768px) {
    .parallax-wrap {
        min-width: 100%;
        max-width: 100%;
    }
    .parallax-wrap .parallax1 .parallax-inner {
        background: url("../img/bg_parallax1_sp.png") repeat-y center top;
        background-size: 100% auto;
    }
    .parallax-wrap .parallax2 .parallax-inner {
        background: url("../img/bg_parallax2_sp.png") repeat-y center top;
        background-size: 100% auto;
    }
    .parallax-wrap .parallax3 .parallax-inner {
        background: url("../img/bg_parallax3_sp.png") repeat-y center top;
        background-size: 100% auto;
    }
}



/*
OBJECT LAYOUT
===========================================
*/

#page {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-top: 86px;
}

.visual {
    position: relative;
    text-align: center;
    overflow: hidden;
    background-color: #fff;
}

@media (min-width: 767px) {
    #page {
        min-height: 100vh;
        padding-bottom: 292px;
        /*padding-bottomにfooterの高さを指定する*/
    }
}

/*
SECTION TYPE
===========================================*/


/* BASE SECTION */


/* CONTENT SECTION */

.content {
    padding: 50px 0;
}

.content.darkblue {
    background-image: linear-gradient(to bottom, #060001, #1b2959);
    background-color: #000;
}

.content.blue {
    color: #1b2959;
}

.content .title {
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 25px;
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    color: #172244;
}

.content .title img {
    max-width: 100%;
    height: auto;
}

.content .title span {
    display: block;
    font-size: 0.5em;
    font-style: normal;
    margin: 0.5em 0;
    letter-spacing: 0.1em;
}

@media (max-width: 767px) {
    .content {
        padding: 30px 0;
    }
}


/*
VISUAL
===========================================
*/

@media (min-width: 768px) {
    .visual {
        position: relative;
        background: url(../img/index/top_pc2nd.png) no-repeat scroll center top;
        padding-bottom: 4px;
        border-bottom: 4px solid #33383d;
    }
}

@media (min-width: 768px) and (max-width: 1399.98px) {
    .visual {
        width: 100%;
        height: auto;
        background-size: cover;
    }
    .visual:before {
        content: "";
        display: block;
        padding-top: 11.4%;
        /* 高さを幅の11.4%に固定 */
    }
}

@media (min-width: 768px) {
    .visual {
        height: 160px;
    }
    .visual::after {
        content: '';
        position: absolute;
        z-index: -1;
        background: #d3be92;
        width: 100%;
        top: 0;
        left: 0;
        height: 160px;
    }
}


/* HEADER MENU
===========================================*/

.navbar,
.navbar-toggle {
    border: 0 none;
}

#page-header {
    line-height: 12px;
    margin: 0;
    background-color: #fff;
    box-shadow: 0 3px 5px 2px rgba(0, 0, 0, 0.2);
}

#page-header .menu {
    font-size: 14px;
    margin: 0;
}

#page-header .menu>li {
    display: table;
    letter-spacing: 0.05em;
    margin-left: -1px;
    width: 12%;
    position: relative;
}

#page-header .menu>li>a,
#page-header .menu>li>span {
    display: table-cell;
    width: 100%;
    height: 86px;
    vertical-align: middle;
    padding: 0;
    letter-spacing: 0.1em;
    text-align: center;
    font-weight: 700;
    color: #172244;
}

#page-header .menu>li a:hover,
#page-header .menu>li a:focus,
#page-header .menu>li.open>a,
#body-top #page-header .menu>li.gnav_top>a,
#body-yoso #page-header .menu>li.gnav_yoso>a,
#body-timetable #page-header .menu>li.gnav_timetable>a,
#body-events #page-header .menu>li.gnav_events>a,
#body-camp #page-header .menu>li.gnav_camp>a,
#body-prosports #page-header .menu>li.gnav_prosports>a,
#body-access #page-header .menu>li.gnav_access>a,
#body-foodfes #page-header .menu>li.gnav_foodfes>a{
    color: #fff;
    background-color: #e50012;
    background-image: linear-gradient(to left, #f2b7aa 0%, #e3542b 30%);
    text-decoration: none;
}


/* 出場予定選手・アクセス　アイコン付きメニュー */

.gnav_entry a,
.gnav_access a {
    padding: 10px;
}

.gnav_entry span,
.gnav_access span {
    display: inline-block;
    position: relative;
    padding-right: 20px;
}

.gnav_entry span::after,
.gnav_access span::after {
    content: "";
    display: inline-block;
    background-size: 18px 18px;
    background-position: right center;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    right: 0px;
    margin-top: -9px;
}

.gnav_entry span::after {
    background-image: url(../img/icon_keirinjp.svg);
}

.gnav_access span::after {
    background-image: url(../img/icon_global.svg);
}

#body-access .gnav_access>a span::after,
.nav .open.gnav_access>a span::after,
.gnav_access a:focus span::after,
.gnav_access a:hover span::after {
    background-image: url(../img/icon_global_hover.svg);
}


/* .dropdown-toggle 下矢印アイコン付きメニュー */

.dropdown-toggle {
    position: relative;
}

.dropdown-toggle::before {
    content: "";
    display: inline-block;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -8px;
    background-image: url(../img/icon_arrow_d.svg);
}

#body-yoso .gnav_yoso>a.dropdown-toggle::before,
#body-access .gnav_access>a.dropdown-toggle::before,
.nav .open>a.dropdown-toggle::before,
.dropdown-toggle:focus::before,
.dropdown-toggle:hover::before {
    background-image: url(../img/icon_arrow_d_hover.svg);
}


/* .dropdown-menu ドロップダウンメニュー指定 */

.dropdown-menu,
.navbar-nav .open .dropdown-menu {
    padding: 0;
    background-color: #172244;
    color: #fff;
}

.dropdown-menu>li>a {
    color: #fff;
    padding: 8px 16px;
}

.navbar-nav .open .dropdown-menu>li>a:focus,
.navbar-nav .open .dropdown-menu>li>a:hover {
    color: #fff;
    background-color: #e50012;
    background-image: linear-gradient(to right, #f2b7aa 0%, #e3542b 25% 75%,#f2b7aa 100%);
}

@media (min-width:1200px) {
    #page-header .menu {
        width: calc(100% - 221px);
    }
    .navbar-toggle {
        display: none;
    }
    .navbar-collapse.collapse {
        display: block !important;
    }
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }
    .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0
    }
    #page-header .menu>li.gnav_prosports {
        width: 16%;
    }
    #page-header .menu>li::after {
        content: "";
        display: block;
        width: 1px;
        height: 56px;
        background-color: #ccc;
        position: absolute;
        top: 15px;
        right: 0px;
    }
    #page-header .menu>li:last-child:after {
        display: none;
    }
}


/* スマホ版グローバルナビゲーション指定 */

@media (max-width: 1199px) {
    /* ナビゲーションが開いたときに背景を固定する */
    .is-fixed {
        height: 100%;
        overflow: hidden;
    }
    .bg-navbar {
        display: none;
    }
    .is-fixed .bg-navbar {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 1029;
        /*.navbar-fixed-topがz-index: 1030;なので*/
        background-color: rgba(0, 0, 0, 0.5);
        cursor: pointer;
    }
    /*.navbarの高さと同じサイズ*/
    #page {
        padding-top: 88px;
    }
    /* .navbar-toggle スマホ版グローバルナビゲーション開閉ボタン */
    .navbar-toggle {
        display: block;
        margin: 0;
        padding: 10px;
        color: #fff;
        background-color: #e3542b;
        text-decoration: none;
        width: 88px;
        height: 88px;
        border-radius: 0;
    }
    .navbar-toggle .icon-bar {
        background-color: #fff;
        -webkit-transition: transform 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
        transition: transform 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
        margin: auto;
    }
    .opened .navbar-toggle .icon-bar {
        -webkit-transform: translateY(6px) rotate(45deg);
        transform: translateY(6px) rotate(45deg);
    }
    .opened .navbar-toggle .icon-bar::after {
        background-color: #fff;
        content: "";
        display: block;
        height: 2px;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        width: 22px;
    }
    .opened .navbar-toggle .icon-bar+.icon-bar {
        opacity: 0;
    }
    .navbar-collapse.in {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .navbar-fixed-top .navbar-collapse.in {
        max-height: calc(100vh - 88px);
    }
    #page-header .menu {
        padding: 0;
        width: 100%;
        font-size: 16px;
    }
    #page-header .menu>li {
        display: block;
        text-align: left;
        width: 100%;
        padding: 0;
        margin: 0;
        border: 0 none;
        border-top: 1px solid #ccc;
        color: #ffffff;
        font-size: 1.2rem;
        height: auto;
        min-height: 50px;
    }
    #page-header .menu>li:nth-child(5) {
        width: 100%;
    }
    #page-header .menu>li>a {
        display: block;
        text-align: left;
        padding: 0 2em;
    }
    #page-header .menu>li>a,
    #page-header .menu>li>span {
        width: 100%;
        height: auto;
        line-height: 50px;
    }
    #page-header .menu>li.open>a,
    #page-header .menu>li.open>a:hover,
    #page-header .menu>li.open>a:focus {
        color: #fff;
        background-color: #e50012;
        background-image: linear-gradient(to right, #f2b7aa 0%, #e3542b 25% 75%,#f2b7aa 100%);
        text-decoration: none;
    }
    .dropdown-toggle {
        position: relative;
    }
    .dropdown-toggle::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: 1em;
        left: auto;
        margin-left: 0;
        margin-top: -8px;
    }
    .navbar-nav .open .dropdown-menu {
        border-radius: 0;
    }
}

@media (max-width: 1200px) {
    .navbar-brand {
        width: auto;
    }
}

@media (max-width: 767px) {
    /*.navbarの高さと同じサイズ*/
    #page {
        padding-top: 48px;
        padding-bottom: 338px;
    }
    .navbar-brand {
        padding: 4px 10px!important;
        height: 48px;
    }
    .navbar-brand img,
    .navbar-brand img.img-cover {
        width: auto;
        height: 40px;
        margin: 0;
    }
    .navbar-toggle {
        width: 48px;
        height: 48px;
    }
    .navbar-fixed-top .navbar-collapse.in {
        max-height: calc(100vh - 48px);
    }
}


/* FOOTER
=========================================== */

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

@media (min-width: 768px) {
    footer {
        position: absolute;
        bottom: 0;
        width: 100%;
	    z-index: 1;
    }
}


/* #page-address*/

#page-address {
    color: #fff;
    background-color: #e50012;
    background-image: linear-gradient(to right, #e3542b 70%,#f2b7aa 100%);
    text-decoration: none;
    padding: 60px 0;
}

#float-gotop {
    display: none;
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 122px;
    height: 62px;
    margin-left: -61px;
    border-color: #fff #fff #000 #fff;
    background-image: url(../img/btn_gotop.png);
    border-width: 1px;
    outline: none;
    z-index: 100;
}

a.footer_link {
    color: #fff;
    text-decoration: underline;
}

.footer_link:hover {
    text-decoration: none;
}


/* copyright */

#page-footer {
    position: relative;
    background-color: #fff;
}

#page-footer .gotop {
    position: absolute;
    left: 50%;
    top: -62px;
    width: 122px;
    height: 62px;
    margin-left: -61px;
    border-radius: 8px 8px 0 0;
    border-color: #fff #fff #000 #fff;
    background-image: url(../img/btn_gotop.png);
    border-width: 1px;
}

#page-footer .copyright {
    text-align: center;
    font-size: 0.9em;
    color: #e50012;
    padding-top: 10px;
}


/*
LINKS
===========================================
*/

#page-links {
    color: #ccc;
    background-color: #1b2959;
    padding: 40px 0;
}


/*
box
===========================================
*/

.content-box {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.8);
    border-left: 2px solid #f2b7aa;
    border-right: 2px solid #f2b7aa;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 50px;
}

.content-box::before,
.content-box::after {
    content: "";
    display: block;
    height: 2px;
    background: linear-gradient(to right, #f2b7aa 0%, #e3542b 25% 75%,#f2b7aa 100%);
    border-radius: 8px;
}

.content-box::after {
    z-index: 1;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.content-box-title {
    font-size: 1.2em;
    background: linear-gradient(to right, #f2b7aa 0%, #e3542b 25% 75%,#f2b7aa 100%);
    padding: 20px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.content-box-title h3 {
    font-size: 1.2em;
    line-height: 1.2;
    font-weight: bold;
}

.content-box-inner {
    padding: 20px;
}


/*
btn-jump
===========================================
*/

a.content-btn {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    background-color: #172244;
    border-left: 2px solid #d3be92;
    border-right: 2px solid #d3be92;
    letter-spacing: 0;
    overflow: hidden;
    font-feature-settings: "palt";
    white-space: nowrap;
    color: #fff;
    padding: 20px 0;
}

a.content-btn:hover {
    top: 2px;
    opacity: 0.8;
}

.content-btn::before,
.content-btn::after {
    content: "";
    position: absolute;
    display: block;
    height: 2px;
    width: 100%;
    left: 0;
    background-color: #d3be92;
}

.content-btn::before {
    top: 0;
}

.content-btn::after {
    bottom: 0;
}


/*
TABLE_base
===========================================
*/

.table_base {
    border: 2px solid #fff;
    width: 100%;
    box-shadow: 0 3px 5px 2px rgba(0, 0, 0, 0.2);
}

.table_base th {
    border: 2px solid #fff;
    /*padding: 3px;*/
    background-color: #e3542b;
    color: #fff;
    text-align: center;
    vertical-align: middle;
}

.table_base>thead>tr>th {
    border-bottom: 4px solid #fff;
}

.table_base td {
    border: 2px solid #fff;
    padding: 15px;
    background-color: #f2e9da;
    color: #222;
}

.table.table_base>tbody>tr>th,
.table.table_base>tbody>tr>td {
    vertical-align: middle;
}

.table_base td a {
    color: #222;
}

.table_base td a:hover {
    color: #0033cc;
}

.table_base tbody {
    color: #fff;
    background-color: #e50012;
    background-image: linear-gradient(to right, #f2b7aa 0%, #e3542b 25% 75%,#f2b7aa 100%);
}

.table_base thead th {
    color: #fff;
    background: #172244;
}


/* Button
=========================================== */

a.btn-panel {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    /* border-radius: 8px; */
    line-height: 1.2;
    letter-spacing: 0;
    overflow: hidden;
    font-feature-settings: "palt";
    white-space: nowrap;
    color: #493825;
    border-radius: 8px;
    box-shadow: 4px 4px rgba(135, 170, 211, 1);
    border: 5px double #172244;
}

a.btn-panel::after {
    z-index: 1;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.btn-panel:active {
    top: 2px;
}

.icon_player,
.icon_entry,
.icon_events {
    position: absolute;
    display: block;
    top: 0;
}

.btn-panel-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 4px;
    background: #ffffff;
    color: #172244;
}

a.btn-panel:hover {
    opacity: 1.0;
}

.btn-panel-img {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.btn-panel-img:hover,
.btn-panel-img:focus {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.btn-panel-text {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3em;
    padding: 5px;
}

.btn-panel-img {
    padding: 10px 0;
    width: 128px;
    height: 128px;
    margin: 10px auto;
    box-sizing: border-box;
    position: relative;
}


/* box
*************************************************/

.box {
    margin-bottom: 30px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .8);
    color: #222;
    overflow: hidden;
}

.box-inner {
    padding: 20px 10px;
    text-align: left;
}

.box-title01 {
    margin-top: 0;
    padding: 10px;
    background-repeat: repeat;
    background-color: #f9cc35;
    font-weight: bold;
}

.box-title02 {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 10px;
}

.box-title02:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 5px;
    background-color: #172244;
}

.box-title03 {
    margin: 30px 0 20px 0;
    padding: 10px;
    border-radius: 5px;
    background: #f2f2f2;
    box-shadow: 0 0 2px rgba(0, 0, 0, .4);
    border: 1px solid #fff;
    font-weight: bold;
}

.mt_0 {
    margin-top: 0;
}

.box-title {
    font-size: 1rem;
}

.box a {
    color: #4e65b8;
}

.box a:hover,
.box a:focus {
    color: #223fa6;
}

@media (min-width: 768px) {
    .box-inner {
        padding: 30px;
    }
    .box-title {
        font-size: 1rem;
    }
    .box-title01 {
        padding: 10px 30px;
    }
    .box-title02 {
        padding-bottom: 20px;
    }
}


/*
Others
=========================================== */

@media (max-width: 767px) {
    .sp-br:after {
        content: "";
        display: block;
    }
    .for-pc {
        display: none;
    }
}


/* .row style */

.row-0 {
    margin-left: 0;
    margin-right: 0;
}

.row-0>div {
    padding-right: 0;
    padding-left: 0;
}

.row-8 {
    margin-left: -4px;
    margin-right: -4px;
}

.row-8>div {
    padding-right: 4px;
    padding-left: 4px;
}


/* margin */

.mb-60px {
    margin-bottom: 60px;
}

.mb-30px {
    margin-bottom: 30px;
}

.mb-10px {
    margin-bottom: 10px;
}


/*
movie(レスポンシブ用)
=========================================== */

.movie {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.movie iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}


/* 文字
=========================================== */

.text-red {
    color: #e50012;
}

.text-blue {
    color: #00008b;
}

.bold {
    font-weight: bold;
}

.text-middle {
    font-size: 1.1em;
}

.text-background {
    background-color: #ffd700;
    font-size: 120%;
    font-weight: bold;
}


/*
見出し
=========================================== */

.heading {
    color: #000;
    font-size: 1.1em;
    font-weight: bold;
}