@charset "UTF-8";
/* CSS Document */

/*-- 共通部分 --*/

html {
    scroll-behavior: smooth;
}


body {
    font-family: century-gothic, 'Teko', sans-serif, YuGothic, Meiryo, メイリオ, sans-serif;
    line-height: 1.4;
    color: #000;
    font-size: 1.2rem;
    background: #fff;
    width: 100vw;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

p {
    letter-spacing: 0.05em;
    font-size: 1.2rem;
}

@media screen and (max-width: 479px) {
    p {
    font-size: 1.0rem;
}
    .url{
    font-size: 0.8rem;
    letter-spacing: -0.001em;
}
}

.center{
    text-align: center;
}

.left{
    text-align: left;
}

a {
    text-decoration: none;
}

/*-- For Links --*/

a,
a:active,
a:visited,
a:focus,
a:hover {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: linear-gradient(to right, rgba(255, 255, 255, .9), rgba(78, 58, 147, .9), rgba(213, 178, 0, .9), rgba(7, 154, 63, .9));
    text-shadow: 1.5px 1.5px 0 #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

a {
    color: #3e3e3e;
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
    opacity:0.7;
}


/* show only  SP/PC*/
.sp-only {
    display: none;
}
.pc-only {
    display: block;
}
.sp-narrow-only{
    display: none;
}


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

@media screen and (max-width:479px) {
    .sp-narrow-only{
        display: block;
    }
}

/*
 header
*/

.header {
    box-shadow: 0px 8px 16px -2px rgba(10, 10, 10, 0.1), 0px 1px 7px 2px rgba(39, 38, 38, 0.02);
    z-index: 1;
    background-color: #d6000f;
}

.header__inner {
    max-width: 1200px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    height: 70px;
    align-items: center;
    padding: 0 2%;
}

.header__inner a{
    vertical-align: middle;
}

.header__logo img {
    width: 90px;
}

.sp-header__logo {
    transform: translateZ(5px);
}

.header__link {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    margin-right: 40px;
}

.header__link-list {
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    font-family: 'Teko', sans-serif;
    padding-left: 3rem;
}

@media screen and (max-width: 959px) {
    .header__link-list {
        padding-left: 2rem;
    }
}

.header__link-list a {
    color: #fff;
    font-size: 80%;
}

a:hover:after {
    width: 0;
    border-bottom: 1px solid #fff;
    border-image: linear-gradient(to right, rgba(235, 53, 35, .9), rgba(78, 58, 147, .9), rgba(213, 178, 0, .9), rgba(7, 154, 63, .9));
    border-image-slice: 1;
}

a:after {
    content: '';
    width: 100%;
    transition: all 0.2s ease;
    border-bottom: 1px solid #fff;
    border-image: linear-gradient(to right, rgba(255, 255, 255, .9), rgba(78, 58, 147, .9), rgba(213, 178, 0, .9), rgba(7, 154, 63, .9));
    border-image-slice: 1;
    display: block;
}

h1#top a:after,
.sp-header__logo a:after{
    border: none;
}

@media screen and (max-width: 959px){
	.wrapper{
		width: 100%;
		max-width: 1024px;
		padding: 0 4%;
		margin: 0 auto;
	}

	.sp-header{
		z-index:10000;
		display: block;
		width: 100%;
		max-width: 1024px;
		height: 50px;
		padding: 0 1rem;
    	margin: 0 auto;
		background:#d6000f;
		position: fixed;
	}
	
	.sp-header__toparea{
		z-index:9999;
		width: 100%;
		max-width: 1024px;
		padding: 1rem 2% 0;
	}
	
	.sp-header__toparea .top-inner{
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		justify-content: space-between;
		align-items: center;
		z-index:13;
		position:fixed;
	}
	
	.sp-header__toparea img{
		width: 65px;
        vertical-align: -webkit-baseline-middle;
	}
	
	.main__img{
		padding-top:50px;
	}
    .main__img img{
        margin: 0 auto;
        display: block;
        max-width: 600px;
        width: 100%;
    }
}

    #main {
/*
        margin-bottom: 40px;
        padding-top: 20px;
*/
        padding-top: 40px;
    }

@media screen and (max-width: 959px) {
        #main {
            padding-top: 60px;
    }
}

.main__txt {
    padding: 1rem;
    background: #ffffff;
}
@keyframes txt-color {
    0% { color: #47c4ea; }
    12.5% { color: #34aa49; }
    25% { color: #f8ba16; }
    37.5% { color: #ee4455; }
    50% { color: #47c4ea; }
    62.5% { color: #34aa49; }
    75% { color: #f8ba16; }
    87.5% { color: #ee4455; }
    100% { color: #47c4ea; }
}

.main__txt p{
    animation: txt-color 12s infinite;
    -webkit-animation: txt-color 12s infinite;
    
}

@keyframes shine {
	0% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


h1 {
    font-size: 3rem;
    margin-bottom: 1rem;    
    text-align: center;
    background: #000000;
    background-image: linear-gradient(
		70deg,
		rgb(211, 209, 209, 0.3)  45%, 
		#fff 50%,
		rgb(211, 209, 209, 0.3) 55% 
	  );
	  background-size: 500% 100%;
    background-clip: text;
  	-webkit-background-clip: text;
	  color: transparent;
    animation: shine 3s infinite;
    font-weight: 500;  
}

.main__txt p {
    font-size: 2rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: -0.05em;
    border-top: 3px solid;
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #47c4ea, #34aa49, #f8ba16, #ee4455) 1;
    padding: 0.7rem 0;
    width: 240px;
    margin: 0 auto;
    background: #000000;
    background-image: linear-gradient(
		70deg,
		rgb(211, 209, 209, 0.3)  45%, 
		#fff 50%,
		rgb(211, 209, 209, 0.3) 55% 
	  );
	  background-size: 500% 100%;
    background-clip: text;
  	-webkit-background-clip: text;
	  color: transparent;
    animation: shine 3s infinite;
}

.main__txt img{
    max-width: 800px;
    margin: 1rem calc(50% - 400px);
}

h1{
    line-height: 1.6;
}

.main__txt p{
    line-height: 1.2;
}

.reflection{
    position:relative;
    overflow:hidden;
}

.reflection:after {
content:"";
height:100%;
width:30px;
position:absolute;
top:-180x;
left:0;
background-color: #fff;
opacity:0;
-webkit-transform: rotate(45deg);
-webkit-animation: reflection 2s ease-in-out infinite;
}
 
@keyframes reflection {
0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.7; }
81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

@media screen and (max-width: 959px) {
    h1 {
    font-size: 2rem;
    }
    .main__txt p {
    font-size: 1.8rem;
    }
    .main__txt img{
    max-width: 479px;
    margin: 1rem calc(50% - 479px / 2);
}
}  

@media screen and (max-width: 959px) {
    .wrapper {
        width: 100%;
        max-width: 1024px;
        padding: 0 4%;
        margin: 0 auto;
    }

    .sp-header__toparea {
        z-index: 9999;
        width: 100%;
        max-width: 1024px;
        padding: 7.5px 2% 0;
    }

    .sp-header__toparea .top-inner {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 13;
        position: fixed;
    }
	
	/*ハンバーガーメニュー*/
	
	.accordion-container .normal-title {
		  position: relative;
		  margin: 0;
		  padding: 0.7em 1em;
		  background-color: #d6000f;
		  font-size: 1rem;
		  font-weight: normal;
		  color: #fff;
		  cursor: pointer;
		  border-bottom: solid 1px #efefef;
		}
	
	.accordion-container .normal-title:first-child{
		border-top: solid 1px #efefef;
	}
	
	
	.accordion-container .normal-title a{
		display: block;
		color: #333;
	   }
    
    .accordion-container .normal-title a span{
        color: #fff;
        -webkit-text-fill-color: #fff;
        text-shadow: none;
    }
	
	.accordion-content a{
		color: #333;
		display: block;
	}
	
	.accordion-container .normal-title:hover { 
	  	color: #333;
	}
	
	.accordion-container .normal-title a:hover { 
	  	color: #d6000f;
	}

	.accordion-content {
		background-color:#d9e0eb;
	}
	
	.accordion-content p{
		font-size: 15px;
		padding: 1rem 0;
		border-bottom: solid 1px #efefef;
		margin: 0 2rem;
		}
	
    .accordion-container a:after{
        width:0;
    }
	
	/*ナビのスタイル*/
	.sp-header__menu{
		position: fixed;
		z-index: 12;
		top: 0;
		right:0;
		background: #d6000f;
		text-align: left;
		width: 70%;
        max-width: 300px;
		display: none;
		margin-top:50px;
        transform:translateZ(2px);
	}
    
    .sp-header__menu .accordion-container{
        width: 100%;
    }

	.sp-header__menu .wrapper{
		height: 100%;
 		overflow: auto;
 		-webkit-overflow-scrolling: touch;
		padding:0;
	}
    
    .sp-header__menu .normal-title a span{
        font-size: 90%;
        vertical-align: middle;
        position: absolute;
        left: 30%;
        margin-top: 4px;
    }
    
    
	/*ボタンのスタイル*/
	.Toggle {
		position: fixed;
		right:0px;
		top: 0px;
		width: 45px;
		height: 45px;
		cursor: pointer;
		z-index: 13;
		display: block;
        transform:translateZ(3px);
	}

	.Toggle div {
		display: block;
		position: absolute;
		width: 30px;
		border-bottom: solid 2px #fff;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
		left: 0%;
	}

	.Toggle .toggle-span {
		top: 30%;
	}

	.Toggle .toggle-span02 {
		top: 50%;
	}

	.Toggle .toggle-span03 {
		top: 70%;
	}

	.Toggle.active .toggle-span {
		top: 55%;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
		border-bottom: solid 2px #fff;
		}
		.Toggle.active .toggle-span02,
		.Toggle.active .toggle-span03 {
		top: 55%;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
		border-bottom: solid 2px #fff;
	}
	
    .main__txt {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
        padding: 70px 1rem 10px;
    }
    
    .main__txt img{
    width: 100%;
    margin: 1rem 0;
    }

    h1 {
        font-size: 1.5rem;
    }
    
    .main__txt p{
        font-size: 1rem;
        width: 140px;
        border-top: 1.5px solid;
        border-bottom: 1.5px solid;
    }

    /* 背景固定 */
    html.is-fixed,
    html.is-fixed body {
        height: 100%;
        /* overflow: hidden; */
    }
}

section.top-background{
    position:relative;
}

section.top-background::after,
section.top-background:before{
  content:"";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 1;
}

section.top-background::after{
  bottom: -20px;
  border-width: 0 0 20px 100vw ;
  border-color: transparent  transparent  transparent rgba(7, 154, 63, .9);
}

section.top-background::before{
  bottom: inherit;
  top: -20px;
  transform: rotate(180deg);
  border-width: 0 0 20px 100vw;
  border-color: transparent  transparent  transparent rgba(235, 53, 35, .9);
}

@media screen and (max-width: 479px) {
.sp-header a{
    text-shadow: rgb(0, 0, 0) 0.7px 0.7px 0px;
    }
}


/*
 トップページ共通
*/

.top-content {
    padding: 5rem 4%;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255,255,255,0.9);
}

.section__title {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title h2 {
    font-size: 2.6rem;
    letter-spacing: -0.001em;
    font-weight: 100;
    font-family: century-gothic, 'Teko', sans-serif, YuGothic, Meiryo, メイリオ, sans-serif;
    line-height: 1.4;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: linear-gradient(to right, rgba(235, 53, 35, .9), rgba(78, 58, 147, .9), rgba(213, 178, 0, .9), rgba(7, 154, 63, .9));
    text-shadow: 1.5px 1.5px 0 #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.title .section__title h2 {
    font-weight: 500;
 }

.section__title .subtitle {
    font-size: 1.8rem;
    color: #000;
    border-top: 5px solid;
    border-image: linear-gradient(to right, rgba(235, 53, 35, .9), rgba(78, 58, 147, .9), rgba(213, 178, 0, .9), rgba(7, 154, 63, .9)) 1;
    padding-top:1.2rem;
    box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.1) inset;
}

.top-content.news p{
    max-width: 600px;
    display: inline-block;
    margin: 0 calc(52% - 300px) 20px calc(52% - 300px);
    letter-spacing: -0.01em;
}

@media screen and (max-width: 719px) {
    .top-content.news p{
    width: 100%;
    margin: 0 0 20px 0;
}
}


@media screen and (max-width: 959px) {
    .top-content {
        margin: 0rem 2rem;
        width: calc(100% - 4rem);
        background: rgba(255,255,255,0.7);
    }

    .section__title h2 {
        font-size: 2.4rem;
    }
    
    .title .section__title h2 {
        font-size: 4vw;
    }
    
    .section__title .subtitle {
        font-size: 1.2rem;
    }

    .section__title {
        margin-bottom: 2rem;
    }
}


@media screen and (max-width: 479px) {
    .top-content {
    margin: 0rem 0rem;
    width: calc(100% - 0rem);
    padding: 1rem;
    }

    .section__title {
        margin-bottom: 2rem;
    }


    .section__title h2 {
        font-size: 10vw;
        margin-top: 2rem;
    }
    
    .title .section__title h2 {
        font-size: 5vw;
    }

    .section__title .subtitle {
        font-size: 1.2rem;
        padding-top: 0.6rem;
    }
}

.background-rainbow {
    background: linear-gradient(180deg, rgba(235, 53, 35, .9), rgba(78, 58, 147, .3), rgba(213, 178, 0, .3), rgba(7, 154, 63, .9)) ;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 2rem 0;
}


/*ボタン*/

.btn__link {
    display: block;
    width: 200px;
    max-width: 100%;
    padding: 1.2rem 1rem;
    background: #d6000f;
    border: 2px solid transparent;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    text-decoeation: none;
    transition: .25s;
}


.btn__link:focus,
.btn__link:hover {
    background: #fff;
    border-color: currentColor;
    color: #d6000f;
}


.btn .btn__link {
    position: relative;
}

.btn .btn__link:before {
    content: "";
    position: absolute;
    top: 52%;
    left: 88%;
    width: 12px;
    height: 1px;
    background: #fff;
}

.btn .btn__link:after {
    content: "";
    position: absolute;
    top: 47%;
    left: 90%;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}



.btn .btn__link:focus:before,
.btn .btn__link:hover:before {
    background: #d6000f;
}

.btn .btn__link:focus:after,
.btn .btn__link:hover:after {
    border-top: 1px solid #d6000f;
    border-right: 1px solid #d6000f;
}


.btn .btn__link {
    margin: 0 1rem;
}


@media screen and (max-width: 479px) {
    .btn {
        margin-top: 2rem;
    }

    .btn:first-child {
        margin-top: 0;
    }

    .btn__link {
        width: 220px;
        font-size: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .top-content__box {
        margin-top: 3rem;
    }

    .btn .btn__link:after {
        top: 46%;
    }
}

/*--　table　--*/

.table {
    width: 100%;
    margin-top: 3rem;
}

.table table {
    width: 100%;
    border-collapse: collapse;
    border: solid #CCC;
    border-width: 1px;
}

.table table tr th,
.table table tr td {
    padding: 1rem 0.3rem;
    text-align: left;
    vertical-align: top;
    border: solid #333;
    border-width: 1px;
    font-size: 90%;
}

.table table tr th,
.table table tr td {
    text-align: center;
    vertical-align: middle;
}

.table th {
    font-weight: normal;
}

@media screen and (max-width: 959px) {
    .table {
        margin-top: 3rem;
    }
    
    .table table tr td ul {
    margin-top: 1rem;
}

}

@media screen and (max-width:959px) {

    .table {
        width: calc(100% + 2rem);
        margin-top: 1.5rem;
        margin-bottom: 0;
        margin-left: -1rem;
    }
    
    .table-schedule {
        width: 100%;
        margin-left: 0;
    }

    .page__table--company {
        margin-top: 3rem;
    }

    .table table {
        width: 100%;
        border-width: 0 0 1px 0;
        table-layout:fixed;
    }

    .table table tr td p {
        font-size: 1.4rem;
    }
}


/*
 ABOUT
*/

#about {
    background: linear-gradient(180deg, rgba(235, 53, 35, .8), rgba(78, 58, 147, .5), rgba(213, 178, 0, .5), rgba(7, 154, 63, .8)), url("../images/bg-about.jpg");
    background-size: cover;
    background-position: center;
}

.top-content__lead {
    color: #444444;
    letter-spacing: -0.03em;
}

/*table*/

.table-about th,
.table-about td {
    color: #262626;
}

.table-about th {
    width: 25%;
}

.table-about td {
    width: 75%;
}

.table-about table {
    border: none;
}

.table-about table tr th,
.table-about table tr td {
    border: none;
    border-bottom: solid 1px #999;
}

.table-about td a {
    color: #fff;
    position: relative;
    text-shadow: 0.3px 0.3px 0 #000;
    padding-bottom: 0.5em;
}

/* .table-about td a:after {
    content: '';
    width: 100%;
    transition: all 0.2s ease;
    border-bottom: 1px solid #fff;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
} */

.table-about td a:hover:after {
    width: 0;
}

.table-about td ul li{
    border-bottom: 1px dotted #ccc;
    padding: 0.7rem 1rem;
    line-height: 2;
}

.table-about td ul li:first-child{
    border-top: 1px dotted #ccc;
}

@media screen and (max-width: 959px) {
    .table-about td ul li{
        padding: 0.7rem 0}
}


/* .table-about td a:hover{
	color: #d6000f;
	border-bottom:solid 1px #d6000f;
} */

@media screen and (max-width: 959px) {

    .top-content-about .top-content__textbox {
        width: 100%;
    }

}


@media screen and (max-width:959px) {
    .top-content-about .top-content__textbox {
        width: 92%;
        display: inline;
    }

    .background-about {
        background-position: top;
        height: auto;
    }

    .top-content__lead {
        font-size: 1.0rem;
    }

    .table-about table,
    .table-about table tbody,
    .table-about table tr,
    .table-about table tr th,
    .table-about table tr td {
        display: block;
    }

    .table-about table tr {
        margin-bottom: 1.4rem;
    }

    .table-about table tr th,
    .table-about table tr td {
        text-align: center;
    }
    
    /* .table-about table tr:first-child th{
        border-top: 1.5px solid #ccc;
    } */
    
    .table-about table tr:first-child td {
        border-top: 0px;
    }

    .table-about table tr td {
        width: 100%;
        padding: 0.7rem 2% 0;
        border-bottom: none;
    }

    .table-about table tr th {
        width: 100%;
        padding: 0.7rem 2%;
        border: none;
        background: linear-gradient(to right, rgba(235, 53, 35, .3), rgba(78, 58, 147, .3), rgba(213, 178, 0, .3), rgba(7, 154, 63, .3));;
    }

    .table-about table {
        margin-top: 2rem;
        margin-bottom: 0;
    }
}

/*
 title
*/

#title {
    position: relative;
    overflow: hidden;
    z-index: 0;
}
#title:before {
    content: '';
    background: linear-gradient(180deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .5), rgba(255, 255, 255, .5), rgba(255, 255, 255, .8)), url(../images/bg-title.jpg);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    filter: blur(10px);
    z-index: -1;
}

div#title {
    transform: translateZ(-1px);
}

.table-title{
		/* white-space: nowrap; */
	}

.table-title table{
	max-width:960px;
}

.table-title th,
.table-schedule th{
	background-image: radial-gradient(farthest-corner at -450px 250px, rgba(205, 166, 231, 0.5) 0%, rgba(253, 244, 209, 0.6) 60%, rgba(49, 52, 77, 9) 75%, rgba(49, 52, 77, 0.6) 100%);
	color:#fff;
	padding: 0;
}

.table-title table tr td{
	padding: 1.2rem 0.2rem;
    background-image: radial-gradient(farthest-corner at -450px 250px, rgba(235, 53, 35, 0.1) 0%, rgba(255 255, 255, 0.6) 60%, rgba(235 53, 35, 0.1) 75%, rgba(255 255, 255, 1) 100%);
}

.table-title table tr th:first-child,
.table-title table tr td:first-child{
    min-width:264px;
}

.table-title table tr th:nth-child(2),
.table-title table tr td:nth-child(2){
    min-width:78px;
    font-size: 80%;
}

.table-title table tr th:nth-child(3),
.table-title table tr td:nth-child(3){
    min-width:124px;
    font-size: 80%;
}

.table-title table tr th:nth-child(4),
.table-title table tr td:nth-child(4){
    width:134px;
    font-size: 80%;
}

.table-title table tr th:last-child,
.table-title table tr td:last-child{
        min-width: 236px;
}

.table-title table tr th:last-child{
    font-size: 80%;
}

@media screen and (max-width:959px) {
.table-title table tr th,
.table-title table tr td{
    font-size: 0.8rem;
    word-wrap: break-word;
    min-width: inherit !important;
    width: inherit !important;
}
.table-title table tr th:last-child,
.table-title table tr td:last-child{
    width: 184px !important;
    font-size: 80%;
}
}
    
@media screen and (max-width:479px){
    .table-title table tr th:last-child,
    .table-title table tr td:last-child{
    width: 25% !important;
    word-break: break-all;
}
 
.table-title table tr td{
	padding:0.3rem 0.25rem;
}
}

.table-title a{
	color:#000;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.table-title a:after{
    content: '';
    width: 100%;
    transition: all 0.2s ease;
    border-bottom: 1px solid #000;
    display: block;
    position: absolute;
}

@media screen and (max-width:479px){
    .table-title a:after{
            border-bottom: 1px solid #fff;
    }
    .table-title a.link-bk:after{
            border-bottom: 1px solid #000;
    }
    .table-title a.long-line:after{
    width: 120%;
    margin-left: -10%;
    }
    .table-title table tr td{
	padding:0.3rem 0.1rem;
    }
    
    .table-title table tr td .alphabet{
        font-size:140%;
        word-wrap: break-word;
    }
}

.table-title a:hover:after {
    width: 0;
}

@media screen and (max-width:959px) {
#title ul li{
    font-size:0.8rem;
}
}

#title ul {
    margin-top:2em;
}

@media screen and (max-width:479px){
#title ul {
    margin-top:1em;
}
}


#title table .game1 td,
#title table .game2 td,
#title table .game3 td,
#title table .game4 td{
    font-weight: bolder;
}

#title table .none td{
    padding: 0;
}

@media screen and (max-width:479px){
#title table td{
    font-size: 60%;
}
}

#title table .game1 td:last-child span,
#title table .game2 td:last-child span,
#title table .game3 td:last-child span,
#title table .game4 td:last-child span{
    font-size: 100%;
}

#title table .game1 td:last-child a,
#title table .game2 td:last-child a,
#title table .game3 td:last-child a,
#title table .game4 td:last-child a{
    margin-bottom: 0.2em;
    font-weight: 500;
    font-size: 90%;
}

#title table .game1,
#title table .game1 td{
    border: solid 5px rgba(235, 53, 35);
    background-image: radial-gradient(farthest-corner at -450px 250px, rgba(205, 166, 231, 0.05) 0%, rgba(235, 53, 35, 0.06) 60%, rgba(205 166, 231, 0.09) 75%, rgba(235, 53, 35, 0.1) 100%);
}

#title table tr td:last-child{
    overflow-wrap: break-word;
}

@media screen and (max-width:959px) {
    #title table .game1,
    #title table .game1 td{
    border: solid 3px rgba(235, 53, 35);
    background: rgba(235, 53, 35, 0.05);
}
}

#title table .game2,
#title table .game2 td{
    border: solid 5px rgba(78, 58, 147);
    background-image: radial-gradient(farthest-corner at -450px 250px, rgba(205, 166, 231, 0.05) 0%, rgba(78, 58, 147, 0.06) 60%, rgba(205 166, 231, 0.09) 75%, rgba(78, 58, 147, 0.1) 100%);
}

@media screen and (max-width:959px) {
    #title table .game2,
    #title table .game2 td{
    border: solid 3px rgba(78, 58, 147);
    background: rgba(78, 58, 147, 0.05);
}
}

#title table .game3,
#title table .game3 td{
    border: solid 5px rgba(213, 178, 0);
    background-image: radial-gradient(farthest-corner at -450px 250px, rgba(205, 166, 231, 0.05) 0%, rgba(213, 178, 0, 0.06) 60%, rgba(205 166, 231, 0.09) 75%, rgba(213, 178, 0, 0.1) 100%);
}

@media screen and (max-width:959px) {
    #title table .game3,
    #title table .game3 td{
    border: solid 3px rgba(213, 178, 0);
    background: rgba(213, 178, 0, 0.05);
}
}

#title table .game4,
#title table .game4 td{
    border: solid 5px rgba(7, 154, 63);
    background-image: radial-gradient(farthest-corner at -450px 250px, rgba(205, 166, 231, 0.05) 0%, rgba(7, 154, 63, 0.06) 60%, rgba(205 166, 231, 0.09) 75%, rgba(7, 154, 63, 0.1) 100%);
}

@media screen and (max-width:959px) {
    #title table .game4,
    #title table .game4 td{
    border: solid 3px rgba(7, 154, 63);
    background: rgba(7, 154, 63, 0.05);
}
}

#title table tr td ul {
    margin-bottom: 1rem;
}


/* 
@media screen and (max-width: 959px){
	.table-title{
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
	}
	
}

@media screen and (max-width:479px){
	
	.table-title table tr th,
    .table-title table tr td{
		padding: 3% 1.5%;
        text-align: center;
	}
    .table-title table tr th:first-child,
    .table-title table tr td:first-child{
        width: 60%;
    }
    .table-title table tr td{
    }
    .table-title table tr:nth-child(2n+1) th,
    .table-title table tr:nth-child(2n+1) td{
        background-color: #000;
    }
    .table-title table tr:nth-child(2n) th{
        background-color: #fff;
        color: #000;
        background-image: none;
    }
    .table-title table tr:nth-child(2n+1) td,
    .table-title table tr:nth-child(2n+1) td a{
        color: #fff;
    }
}

/*
NEWS
*/

#news {
    background: linear-gradient(180deg, rgba(235, 53, 35, .8), rgba(78, 58, 147, .5), rgba(213, 178, 0, .5), rgba(7, 154, 63, .8)), url(../images/bg-news.jpg);
    background-size: cover;
    background-position: center;
}

#news ul span.news-date{
    display:block;
    padding-left: 10px;
    margin-top: 1em;
    margin-bottom: 0.5em;
    border-radius: 10px;
    color: #fff;
    line-height: 1.2;
    background-image: linear-gradient(135deg, rgb(235, 53, 35, .9) 4%, rgb(78, 58, 147, .8) 8%, rgb(213, 178, 0, .7) 16%, rgb(7, 154, 63, .5) 24%, rgb(255, 255, 255, 0) 32%);
}

@media screen and (max-width:479px){
    #news ul span.news-date{
        background-image: linear-gradient(135deg, rgb(235, 53, 35, .) 8%, rgb(78, 58, 147, .8) 16%, rgb(213, 178, 0, .7) 24%, rgb(7, 154, 63, .5) 36%, rgb(255, 255, 255, 0) 48%);
    }
    #news ul li {
        font-size:80%;
    }
}
    
#news a{
    text-shadow: 0.7px 0.7px 0 #000;
    position: relative;
    width: 100%;
    padding-right: 30px;
}

#news a:after{
    width: calc(100% + 30px);
}

#news li:before{
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    border-top: 2px solid #333;
    border-left: 2px solid #333;
    transform: rotate(135deg);
    position: absolute; 
    right: 10px;
    bottom: 13px;
}

/*
PLAYERS
*/

.player-photo {
    max-width: 240px;
    margin-top: 100px;
    margin-right: 20px;
    width: 240px;
    height: 240px;
    position: relative;
}

.player-photo:before{
    content:"";
    position: absolute;
    width: 100%;
    height: calc(100% + 4px);
    left: 0;
    top: 7px;
    border-bottom: 20px solid #fff;
    border-image-slice: 1;
    transform: skew(0deg,-2deg);
}

.game1 .player-photo:before, .game2 .player-photo:before, .game3 .player-photo:before{
    border-bottom: 18px solid #fff;
    z-index: 1;
}

.game1 .player-photo{
    background: linear-gradient(180deg, rgba(78, 58, 147, .3), rgba(213, 178, 0, .3), rgba(7, 154, 63, .3), rgba(235, 53, 35, .9) ) , #fff;
    border-image-slice: 1;
}

.game2 .player-photo{
    background: linear-gradient(180deg, rgba(235, 53, 35, .3), rgba(213, 178, 0, .3), rgba(7, 154, 63, .3), rgba(78, 58, 147, .9)) , #fff;
    border-image-slice: 1;
}


.game3 .player-photo{
    background: linear-gradient(180deg, rgba(235, 53, 35, .3), rgba(78, 58, 147, .3), rgba(213, 178, 0, .3), rgba(7, 154, 63, .9)) , #fff;
    border-image-slice: 1;
}


.player-photo:after{
    content:"";
    position:absolute;
    width: 100%;
    height:calc(100% + 4px);
    left:0;
    top:-8px;
    border-left: 3px solid;
    border-image-slice: 1;
    transform: skew(0deg,-4deg);
}

.game1 .player-photo:after{
    border-image: linear-gradient(180deg, rgba(78, 58, 147, .9), rgba(213, 178, 0, .3), rgba(7, 154, 63, .3), rgba(235, 53, 35, .9) );
    border-image-slice: 1;
}

.game2 .player-photo:after{
    border-image: linear-gradient(180deg, rgba(235, 53, 35, .9), rgba(213, 178, 0, .3), rgba(7, 154, 63, .3), rgba(78, 58, 147, .9));
    border-image-slice: 1;
}


.game3 .player-photo:after{
    border-image: linear-gradient(180deg, rgba(235, 53, 35, .9), rgba(78, 58, 147, .3), rgba(213, 178, 0, .3), rgba(7, 154, 63, .9));
    border-image-slice: 1;
}


.player-data{
    width: calc(100% - 260px);
}

@media screen and (max-width: 959px){
    .player-photo,
    .player-data{
        width: 100%;
    }
}

#player h3,
#result h3{
    font-size: 140%;
    color: #333;
    padding: 1em;
}


#player .game1 h3,
#player .game2 h3,
#player .game3 h3,
#result .game1 h3,
#result .game2 h3,
#result .game3 h3{
    border-left: 10px solid #000;
    border-right: 5px solid #000;
    border-bottom: 1px solid #000;
    transform: skew(-0.5deg, -0.5deg);
}

#player .game1 h3,
#result .game1 h3{
    background: linear-gradient(120deg, rgba(255, 255, 255, .1), rgba(235, 53, 35, 0.8)), #fff;
}

#player .game2 h3,
#result .game2 h3{
    background: linear-gradient(120deg, rgba(78, 58, 147, .1), rgba(78, 58, 147, 0.3)), #fff;
}

#player .game3 h3,
#result .game3 h3{
    background: linear-gradient(120deg, rgba(7, 154, 63, .1), rgba(7, 154, 63, 0.3)), #fff;
}

#player .game1 h3, #player .game2 h3, #player .game3 h3,
#result .game1 h3, #result .game2 h3, #result .game3 h3{
border-image: linear-gradient(180deg, rgba(78, 58, 147, .9), rgba(213, 178, 0, .3), rgba(7, 154, 63, .3), rgba(235, 53, 35, .9) );
    border-image-slice: 1;
}

@media screen and (max-width: 959px) {
    #player h3{
    font-size: 120%;
    margin-top: 2em;
}
}

@media screen and (max-width:479px){
    #player h3{
    margin-top: 1em;
}
}

#player .order{
    text-align: right;
    margin: 1em -1em 1em 0;
}

#player .player-columns{
    display: flex;
    justify-content: space-around;
}

@media screen and (max-width: 959px) {
    #player .player-columns{
    display: block;
    margin-top: 2em;
    }
    .player-photo {
        margin:20px auto;
        }
}

#player table th {
    background: repeating-conic-gradient(from 10deg, rgba(0, 0, 0, 0.9) 50deg,  rgba(12, 12, 12, 0.9) 58deg 61deg, rgba(0, 0, 0, 0.9) 72deg 83deg, rgba(12, 12, 12, 0.9) 83deg), #fff;
    color: #fff;
}

#player table td {
    width: 50%;
}

@media screen and (max-width: 959px) {
    #player .table-about th, #player .table-about td {
    width: 100%;
}
}

@media screen and (max-width:479px){
    #player .table table td .alphabet{
        font-size: 150%;
    }
    #player .table table td a{
        text-shadow: 0.7px 0.7px 0 #000;
    }
}

#player .game1,
#result .game1{
    background: repeating-linear-gradient( 176deg, rgba(235, 53, 35, 0.9), rgba(235, 53, 35, 0.7) 12px, rgba(235, 53, 35, 0.8) 0, rgba(235, 53, 35, 0.9) 16px, rgba(235, 53, 35, 0.7) 0, rgba(235, 53, 35, 0.7) 12px), url(../images/bg-player.jpg);

}

#player .game2,
#result .game2{
    background: repeating-linear-gradient( 176deg, rgba(78, 58, 147, 0.9), rgba(78, 58, 147, 0.7) 12px, rgba(78, 58, 147, 0.8) 0, rgba(78, 58, 147, 0.9) 16px, rgba(78, 58, 147, 0.7) 0, rgba(78, 58, 147, 0.7) 12px), url(../images/bg-player.jpg);
}

#player .game3,
#result .game3{
    background: repeating-linear-gradient( 176deg, rgba(7, 154, 63, 0.9), rgba(7, 154, 63, 0.7) 12px, rgba(7, 154, 63, 0.8) 0, rgba(7, 154, 63, 0.9) 16px, rgba(7, 154, 63, 0.7) 0, rgba(7, 154, 63, 0.7) 12px), url(../images/bg-player.jpg);
}

#player .game1, #player .game2, #player .game3,
#result .game1, #result .game2, #result .game3{
    width: calc(100% + 4em);
    margin-left: -2em;
    padding: 2em;
    margin-bottom: 2em;
    background-size: contain;
    background-position: center;
    animation: bg 20s infinite linear;
}

@keyframes bg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 360px -120px;
  }
}

.player-data .table table tr th,
.player-data .table table tr td{
    background: #fff;
}

/*
SCHEDULE
*/

#schedule {
    position: relative;
    overflow: hidden;
    z-index: 0;
}
#schedule:before {
    content: '';
    background: linear-gradient(180deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .5), rgba(255, 255, 255, .5), rgba(255, 255, 255, .8)), url(../images/bg-schedule.jpg);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    filter: blur(10px);
    z-index: -1;
}

@media screen and (max-width: 479px){
    #schedule .top-content{
        padding: 5rem 0;
    }
}

.table-schedule table tr td{
    padding:0;
    overflow-wrap: break-word;
    border: 1px solid #aaa;
}

@media screen and (max-width:479px){
    .table-schedule table tr td{
   font-size: 80%;
}
}

.table-schedule table th:nth-last-child(5){
    background: rgba(235, 53, 35, 1);
    &:before{
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: solid 5px rgba(235, 53, 35);
    transform: translateZ(1px);
  }
}

.table-schedule table th:nth-last-child(3){
    background: rgba(78, 58, 147, 1);
    &:before{
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: solid 5px rgba(78, 58, 147);
    transform: translateZ(1px);
  }
}

.table-schedule table th:last-child{
    background: rgba(7, 154, 63, 1);
    &:before{
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: solid 5px rgba(7, 154, 63);
    transform: translateZ(1px);
  }
}

.table-schedule table .fixed{
    position: sticky;
    top: 0;
}

@media screen and (max-width: 959px) {
    .table-schedule table .fixed{
        top: 50px;
    }
}

.table-schedule table .border-none{
    border:none;
    background: #fff;
  } 

.table-schedule table .game1 {
    border: solid 5px rgba(235, 53, 35);
    background: repeating-linear-gradient( 176deg, rgba(235, 53, 35, 0.5), rgba(235, 53, 35, 0.3) 1px, rgba(235, 53, 35, 0.4) 0, rgba(235, 53, 35, 0.5) 2px, rgba(235, 53, 35, 0.3) 0, rgba(235, 53, 35, 0.3) 1px)
}

.table-schedule table .game2 {
    border: solid 5px rgba(78, 58, 147);
    background: repeating-linear-gradient( 176deg, rgba(78, 58, 147, 0.5), rgba(78, 58, 147, 0.3) 1px, rgba(78, 58, 147, 0.4) 0, rgba(78, 58, 147, 0.5) 2px, rgba(78, 58, 147, 0.3) 0, rgba(78, 58, 147, 0.3) 1px);
}

.table-schedule table .game3 {
    border: solid 5px rgba(7, 154, 63);
    background: repeating-linear-gradient( 176deg, rgba(7, 154, 63, 0.5), rgba(7, 154, 63, 0.3) 1px, rgba(7, 154, 63, 0.4) 0, rgba(7, 154, 63, 0.5) 2px, rgba(7, 154, 63, 0.3) 0, rgba(7, 154, 63, 0.3) 1px)
}

.table-schedule table td.game1, .table-schedule table td.game2, .table-schedule table td.game3{
    background-size: contain;
    background-position: center;
    animation: bg 40s infinite linear;
}

.table-schedule table td.game1.border-none, .table-schedule table td.game2.border-none, .table-schedule table td.game3.border-none{
    background: #fff;
}

.table-schedule table th .sub{
    font-size: 70%;
    font-weight:100;
    color: #fff;
}

.table-schedule table th .week{
    font-size: 90%;
    font-weight:100;
    color: orange;
}

.table-schedule table th .week.sat{
    color: dodgerblue;
}

.table-schedule table th .week.sun{
    color: orangered;
}

.table-schedule table td.main-stage{
    background: #ccc;
}

.table-schedule table td.annex-stages{
    background: #eee;
}

.table-schedule table td.all-stages{
    background: repeating-linear-gradient( 156deg, #ccc, #ccc 10px, #eee 0, #eee 20px);
}

.table-schedule table td.am{
    background: #444;
    color: #fff;
}

.table-schedule table td.pm{
    background: #222;
    color: #fff;
}

.table-schedule table td.night{
    background: #000;
    color: #fff;
}

.table-schedule table td.ampm{
    background: repeating-linear-gradient( 156deg, #444, #444 10px, #222 0, #222 20px);
    color: #fff;
}

.table-schedule table tr:not(:first-child) th:nth-child(1){
    background: #222;
    font-size:160%;
    color: red;
    font-weight:700;
}

.table-schedule table tr td .hour{
    font-size:150%;
    color: yellow;
    font-weight:700;
}

.table-schedule table tr th:nth-child(2){
    width: 160px;
}

@media screen and (max-width: 959px) {
    .table-schedule table tr th{
    }
    .table-schedule table tr th:nth-child(1){
    width: 60px;
}
    .table-schedule table tr th:nth-child(2){
    width: 60px;
}
    .table-schedule table th .sub {
        display:block;
    }
    .table-schedule table tr:not(:first-child) th:nth-child(1) {
        padding: 1em 0;
    }
    .table-schedule table th .week {
    text-align: center;
    display: block;
    font-size: 70%;
    }
}

.table-schedule .table table tr th, .table-schedule .table table tr td{border:none; outline: none;}


/*
STREAM
*/

#stream{
    background: linear-gradient(180deg, rgba(235, 53, 35, .8), rgba(78, 58, 147, .5), rgba(213, 178, 0, .5), rgba(7, 154, 63, .8)), url(../images/bg-stream.jpg);
    background-size: cover;
    background-position: center;
}

/*
RESULTS
*/

#results {
    position: relative;
    overflow: hidden;
    z-index: 0;
}
#results:before {
    content: '';
    background: linear-gradient(180deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .5), rgba(255, 255, 255, .5), rgba(255, 255, 255, .8)), url(../images/bg-result.jpg);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    filter: blur(10px);
    z-index: -1;
}

#results.top-background:before,
#results.top-background:after{
    content: inherit;
}

#result {
    transform: translateZ(-1px);
}

.result-content {
    background-color: #fff;
}

@media screen and (max-width: 959px){
#results .table {
    width: 100%;
    margin-left: 0;
    padding: 0 1rem;
    }
}

.result-content a{
    text-align: left;
    word-break: break-all;
}

#results .table img.sp-only{
    margin-left: -1em;
    width: calc(100% + 2em);
    max-width: inherit;
}

#result p.result-link{
    padding: 1em;
}

@media screen and (max-width: 959px){
    #results p.result-link{
    letter-spacing: 0.3em;
}
}

#results .table{
    padding-bottom: 1em;
}

#results .table table tr th,
#results .table.sfv table tr th:first-child{
    background: repeating-conic-gradient(from 10deg, rgba(0, 0, 0, 0.9) 50deg, rgba(12, 12, 12, 0.9) 58deg 61deg, rgba(0, 0, 0, 0.9) 72deg 83deg, rgba(12, 12, 12, 0.9) 83deg), #fff;
    color: #fff;
    width: 50%;
}

#results .table.sfv table tr th{
    width: inherit;
}

#results .table.sfv table tr th:first-child{
    width: 30%;
    }

#results .table table tr:last-child th{
    background: repeating-conic-gradient(from 10deg, rgba(0, 0, 0, 0.5) 50deg, rgba(12, 12, 12, 0.5) 58deg 61deg, rgba(0, 0, 0, 0.5) 72deg 83deg, rgba(12, 12, 12, 0.5) 83deg), #fff;
}

#results .table table tr th:nth-child(2){
    background: repeating-conic-gradient(from 10deg, rgba(0, 0, 0, 0.5) 50deg, rgba(12, 12, 12, 0.5) 58deg 61deg, rgba(0, 0, 0, 0.5) 72deg 83deg, rgba(12, 12, 12, 0.5) 83deg), #fff;
    border: 1px solid #fff;
}

@media screen and (max-width: 959px){
    #results .table table tr th{
        width: 50%;
    }
}

#results .table table tr:first-child,
#results .table.sfv table{
    border: 5px solid red;
}

#results .table.sfv table tr:first-child,
#results .table.sfv table tr:last-child{
     border: inherit;
}

#result .table table tr:last-child {
    border: 5px solid gray;
}

#results .table table tr th.player-name{
    background: repeating-conic-gradient(from 10deg, rgba(0, 0, 0, 0.7) 50deg, rgba(12, 12, 12, 0.7) 58deg 61deg, rgba(0, 0, 0, 0.7) 72deg 83deg, rgba(12, 12, 12, 0.7) 83deg), #fff;
}

#results .table .tournament-chart{
    overflow-x: auto;
    width: 825px;
    margin: 0 auto;
}

#results .table .tournament-chart img{
    max-width: inherit;
}

@media screen and (max-width: 959px) {
    #result .table .tournament-chart{
    width: calc(100% + 2em);
    margin-left: -1em;
}

#results .table .tournament-chart img{
    max-width: inherit;
    margin-left:0;
}
    #results .table .tournament-chart img.sp-only{
            width: 100%;
    }
}

.background-result {
    background-image: url("../images/bg-live.jpg");
    background-size: cover;
    position: relative;
    background-position: center;
    height: 435px;
}


.background-result:before {
    /* 透過した黒を上から重ねるイメージ */
    background-color: rgba(0, 0, 0, 0.4);
    /* 自由に位置指定 */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ' ';
}

.top-content-result {
    transform: translateZ(-1px);
}

.top-content-result p {
    width: 100%;
}

.top-content-result p a {
    position: relative;
    margin: 0 auto;
    cursor: pointer;
}

.top-content-result p a:after {
    content: '';
    width: 100%;
    transition: all 0.2s ease;
    border-bottom: 1px solid #fff;
    display: block;
    position: absolute;
    left: 0;
    cursor: pointer;
}

.top-content-result p a:hover:after {
    width: 0;
}



/*
 footer-link
*/

.background-footer-link {
    background-image: repeating-radial-gradient(circle, rgba(213, 1, 15, 1), rgba(237, 68, 9, 1) 12%, rgba(213, 1, 15, 1) 24%);
    transform: translateZ(-1px);
}

.top-background.background-footer-link.past {
    background-image: repeating-radial-gradient(circle, rgba(226, 226, 226, 1), rgba(255, 255, 255, 1) 12%, rgba(226, 226, 226, 1) 24%);
}

@media screen and (max-width:479px) {
    .background-footer-link {
        background-image: repeating-radial-gradient(circle, rgba(213, 1, 15, 1), rgba(237, 68, 9, 1) 24%, rgba(213, 1, 15, 1) 48%);
    }

    .top-background.background-footer-link.past {
        background-image: repeating-radial-gradient(circle, rgba(226, 226, 226, 1), rgba(255, 255, 255, 1) 24%, rgba(226, 226, 226, 1) 48%);
    }
}

.footer-link {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    padding: 2.4rem 2%;
}

.footer-link__list {
    margin: 0 4rem;
    position: relative;
    padding-left: 30px;
    color: #fff;
}

.footer-link__list a {
    font-size: 1.6rem;
    color: #000;
    /* text-shadow: 1px 2px 3px #808080; */
    line-height: 2;
}

.footer-link__list.single a {
    color: #000;
}

.footer-link__list a:after {
    content: '';
    width: 100%;
    transition: all 0.2s ease;
    border-bottom: 1px solid #000;
    display: block;
}

.footer-link__list a:hover:after {
    width: 0;
}

.footer-link__list.single a:after {
    border-bottom: 1px solid #000;
}

.footer-link__list::before {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #000;
}

.footer-link__list::after {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 3%;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

@media screen and (min-width:479px) {
    .footer-link__list.single::after {
        left: 1.5%;
    }
}

@media screen and (max-width:478.98px) {
    .footer-link__list.single {
        margin-top: 0;
    }
}

.footer-link__list img {
    width: 245px;
}

.live-link {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-around;
}


@media screen and (max-width: 959px) {
    .live-link {
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn {
        margin-bottom: 2rem;
    }

    .btn__link {
        width: 240px;
    }

    .footer-link__list:last-child {
        margin-top: 0;
    }
}


@media screen and (max-width:479px) {
    .live-link {
        display: inline-block;
    }
}


    .footer-link {
        display: block;
        padding: 2.4rem 2%;
        text-align: center;
    }

    .footer-link__list:last-child {
        margin-top: 20px;
    }

    .footer-link__list.single:last-child {
        margin-top: 0px;
    }

    .footer-link__list::before {
        left: 19%;
        width: 20px;
        height: 20px;
    }

    .footer-link__list::after {
        left: 21.0%;
    }

    .footer-link__list a {
        font-size: 1.5rem;
    }
}


/*
 footer
*/

.footer {
    background: #fff;
    width: 100%;
    margin: 0 auto;
    margin-bottom: -22px;
}

.footer__inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    padding: 4rem 4%;
    max-width: 960px;
    margin: 0 auto;
}

.footer__inner p {
    font-size: 1.5rem;
}





@media screen and (max-width: 959px) {}

@media screen and (max-width: 479px) {
    .footer__inner {
        padding: 2.4rem 4%;
    }
    .footer__inner p {
        font-size: 1.4rem;
    }
}

.copyright {
    text-align: center;
    padding: 2rem 0 1rem 0;
    background: #d6000f;
    color: #fff;
    font-size: 1.6rem;
}

#page_top {
    width: 70px;
    height: 70px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 1;
}

#page_top a {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    text-decoration: none;
}

#page_top a::before {
    content: '';
    font-size: 30px;
    color: #fff;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 10%;
    bottom: 0;
    right: 0;
    margin: auto;
    text-align: center;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    left: 35%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}

@media screen and (max-width: 479px) {
    #page_top {
        width: 45px;
        height: 45px;
    }

    #page_top a {
        width: 45px;
        height: 45px;
    }

    #page_top a::before {
        width: 10px;
        height: 10px;
        left: 30%;
        border-top: 2px solid #fff;
        border-left: 2px solid #fff;
    }
}


/*---------------------
 
		下層ページ

---------------------*/


/*
 下層ページ共通
*/

.page {
    height: 100vh;
}

.page__member {
    height: auto;
}

.page__content {
    padding: 10rem 0;
    width: 100%;
    margin: 0 auto;
}

.page__heading {
    width: 100%;
    height: 300px;
    position: relative;
    background: #000;
}

.page__heading-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    opacity: 0.4;
}

.page__heading--player {
    background-image: url('../images/bg-player.jpg');
    background-position: center;
}


.page__heading-inner {
    max-width: 100%;
    width: auto;
    color: #fff;
    font-weight: bold;
    position: absolute;
    margin: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.page__title {
    font-size: 6rem;
    font-family: 'Teko', sans-serif;
    font-weight: normal;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1;
}

.page__section {
    margin-bottom: 6rem;
}

.page__content p {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    line-height: 1.7;
    text-align: center;
}


.page__content-title {
    text-align: center;
    font-weight: bold;
    font-size: 6.8rem;
    font-family: 'Teko', sans-serif;
    margin-bottom: 3rem;
    letter-spacing: 0.07em;
}


@media screen and (max-width: 959px) {
    .page__title {
        font-size: 3.6rem;
    }
    .page__heading-inner {
        top: 60%;
        width: 100%;
        line-height: 1.6;
    }
}

@media screen and (max-width: 479px) {

    .page {
        padding-top: 50px;
    }

    .page__heading-bg {
        background-position: center;
    }

    .page__title {
        font-size: 12vw;
        white-space: nowrap;
    }
    
    .page__heading .subtitle{
        font-size: 14px;
    }

    .page__content {
        padding: 3rem 0;
    }

    .page__content-title {
        font-size: 4rem;
        margin-bottom: 2.4rem;
    }

    .page__content p {
        font-size: 1.5rem;
        letter-spacing: 0.01em;
    }
}

/* Google Icons */

span.material-symbols-outlined {
    vertical-align: top;
}

@media screen and (max-width: 479px){
    span.material-symbols-outlined {
    font-size: 0.8rem;
    line-height: 1.5;
}
}

/* Streaming */

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.youtube-wrapper{
	width: 600px;
	margin: 0 auto;
}

.youtube-wrapper.double{
	width: 400px;
}

.youtube-title{
	font-weight:bold;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
	padding: 0 55px;
    width: 100%;
}

.youtube-title:before, .youtube-title:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: black;
}

.youtube-title:before {
  left:0;
}
.youtube-title:after {
  right: 0;
}


@media screen and (max-width: 479px){
    .youtube-wrapper,
    .youtube-wrapper.double{
		width: 100%;
	}

}


/* alphabet font */

.alphabet {
    font-size: 115%;
    letter-spacing: 0.06em;
}

@media screen and (max-width: 959px) {
    .alphabet {
    font-size: 115%;
    letter-spacing: 0.03em;
    padding-left: 0;
    display: inline;
    line-height: 1;
}
}

/* animation forward */
/* https://coco-factory.jp/ugokuweb/move02/4-1/ */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

.fadeUpTrigger{
    opacity: 0;
}

/*
TITLES
*/

.title h3{
    padding: 1.5rem 1.5rem 1.5rem 2.3rem;
    background-image: radial-gradient(farthest-corner at -100px 50px, rgba(51, 51, 51, 1), rgba(10, 10, 10, 1) 12%, rgba(51, 51, 51, 1) 64%);
    color: #fff;
    font-size: 2rem;
    position: relative;
    margin: 0;
    transform: skew(-0.03turn, 0deg);
    margin: 2em;
}

.title h3:before {
    content: '';
    position: absolute;
    top: calc(50% - 19.5px);
    left: 2.5%;
    width: 60px;
    height: 39px;
    background-size: cover;
    background-repeat: no-repeat;
}

.title h3:after {
    content: '';
    position: absolute;
    top: calc(50% - 2rem);
    left: 0;
    width: .8rem;
    height: 4rem;
    background: linear-gradient(180deg, rgb(235, 53, 35, .9) 0%, rgb(78, 58, 147, .9) 33%, rgb(213, 178, 0, .9) 67%, rgb(7, 154, 63, .9) 100%);
    border: 0.5px solid #333;
}

li.annotation,
.title span.annotation{
    margin: 1em 0;
    display: block;
    font-size: 80%;
}

.title .top-content__textbox ul{
    margin: 2em 0;
}

.title .top-content__textbox ul li{
    list-style: disc;
    margin-left: 2em;
    padding-left: 1em;
}

.title picture{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.title picture img{
    width: 30%;
    margin: 10px;
}

.title table tr th,
.country tr td:first-child{
    background-image: radial-gradient(farthest-corner at 12% 71%, rgba(49, 52, 77, 0.1) 0%, rgba(49, 52, 77, 0.4) 50%, rgba(49, 52, 77, 0.4) 75%, rgba(49,52,77, 0.8) 100%);
    filter: grayscale(1);
}

.department tr td:first-child,
.format tr td:first-child{
    background-image: radial-gradient(farthest-corner at -10px 200px, rgba(205, 166, 231, 0.9) 0%, rgba(253, 244, 209, 0.9) 60%, rgba(49, 52, 77, 0.1) 75%, rgba(49, 52, 77, 0.4) 100%);
    filter: grayscale(1);
}

.department tr td:last-child,
.format tr td:last-child,
.country tr td:last-child{
    background-image: radial-gradient(farthest-corner at 40% 250%, rgba(205, 166, 231, 0.9) 0%, rgba(253, 244, 209, 0.9) 60%, rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0.8) 100%);
    filter: grayscale(1);
}

.title table tr th,
.title table tr td{
    border: solid #111;
}

.title table.format tr th:first-child,
.title table.format tr td:first-child{
    width: 30%;
}

.title table.country tr th:first-child,
.title table.country tr td:first-child{
    width: 35%;
}

@media screen and (max-width: 959px) {
    .title .top-content__textbox ul{
        margin: 1em 0;
    }
    .title picture{
        justify-content: space-between;
    }
    .title picture img{
        width: 45%;
        margin: 10px auto;
    }
}

@media screen and (max-width: 479px){
    .title span.annotation{
        font-size: 90%;
        padding-left: 1em;
    }
    .title h3{
        font-size: 1.4rem;
        margin: 1em;
        padding: 1rem 1rem 0.5rem 2rem;
    }
    .title h3:after {
        height: 2rem;
        width: 0.6rem;
        top: calc(50% - 1rem);
    }
    .title ul li{
        font-size: 1.0rem;
    }
    .title .table table{
        width: 90%;
        margin-left: 5%;
        word-wrap: break-word;
        font-size: 16px;
    }
}