@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
HOME
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- ヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-header {
	overflow: hidden;
	position: relative;
}

.home-header video,.home-header img {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	min-width: 100%;
	max-width: none;
	height: 56.25vw;
	min-height: 100%;
	transform: translateX(-50%);
}
.home-maincopy {
    top: 35vh;
    left: -65px;
    position: absolute;
    text-align: left;
}

.inner.maincopy {
    position: relative;
    display: block;
}
.home-header .heading {
    position: relative;
    bottom: 55%;
    left: 0%;
    margin-bottom: 0%;
    /* transform: translateX(-50%); */
    font-size: 4rem;
    font-weight: 700;
    background: var(--color_gray_dark);
    color: #FFF;
    display: inline-block;
    padding: 0px 58px 0px 86px;
    font-family: msp gossic;
}
.home-header .sub-copy {
    position: relative;
    /* bottom: 43%; */
    /* left: 0; */
    line-height: 1.8;
    /* transform: translateX(-50%); */
    font-size: 8rem;
    font-weight: 700;
    background: var(--color_gray_dark);
    color: #FFF;
    padding: 0px 86px 0px 86px;
    margin-bottom: 4px;
}

@media (max-width: 767.9px) {
	.home-maincopy {
		top: 35vh;
		left: 0vw;
	}
.home-header .logo {
	width: 236px;
}

}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- ACCESS
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-access {
	position: relative;
	max-width: 1168px;
	/* margin-top: -157px; */
	margin-top: 0px;
    padding: 56px 0;
    color: #000;
    background: #FFF;
}
.home-access img {
    width: 300px;
}

.home-access::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: -2;
	width: 100vw;
	background: #fff;
	content: "";
}

.home-access th::before {
	margin-right: 10px;
	border-left: 5px solid var(--color_gray);
	content: "";
}

.home-access td {
	padding: 0 0 10px 15px;
}

.home-access iframe {
	width: 100%;
	height: 38vw;
	min-height: 154px;
	max-height: 320px;
	filter: grayscale(100%) invert(90%);
}

@media (min-width: 768px) {
.home-access {
	margin-top: 0;
	/* margin-top: -157px; */
}

.home-access .inner {
	padding: 0 5.7%;
}

.home-access .section-heading {
	font-size: 4rem;
}

.home-access th {
	padding: 0 16px 10px 0;
	white-space: nowrap;
}
}

@media (min-width: 1024px) {
.home-access .inner {
	display: flex;
	flex-flow: row-reverse;
	justify-content: space-between;
}

.home-access .text {
	width: 60%;
}

.home-access iframe {
	width: 46%;
}
}

@media (max-width: 1023.9px) {
.home-access .text {
	margin-bottom: 10px;
}
}

@media (max-width: 767.9px) {
.home-access {
	width: calc(100% - 20px);
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- ABOUT
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-about {
	padding-top: 30px;
	background: #fff;
	color: #000;
}

.home-about .marquee {
	position: relative;
}

.home-about .marquee-content {
	font-weight: 900;
	font-size: 8rem;
	font-family: var(--font_english);
}

@keyframes rotate {
100% {
	transform: rotate(360deg);
}
}

.home-about .marquee-img {
	position: absolute;
	top: 0;
	right: var(--padding-width);
	bottom: 0;
	margin: auto;
	animation: rotate 30s linear infinite;
}

.home-about .wrapper {
	display: flex;
	max-width: 1500px;
	margin: 0 auto;
}

.home-about .copy {
	margin-bottom: 1em;
	font-weight: 700;
	font-size: 2rem;
	letter-spacing: 0.1em;
}

@media (min-width: 768px) {
.home-about {
	padding-top: var(--padding-height);
}

.home-about .marquee-content {
	font-size: 16rem;
}

.home-about .copy {
	font-size: 2.5rem;
}

.home-about .description {
	font-size: 1.6rem;
}
}

@media (min-width: 1024px) {
.home-about .wrapper {
	justify-content: flex-end;
	align-items: center;
}

.home-about .text {
	width: 47%;
	max-width: 540px;
}

.home-about .img {
	width: 53%;
}
}

@media (max-width: 1023.9px) {
.home-about .wrapper {
	flex-flow: column;
}

.home-about .text {
	margin-bottom: 50px;
}

.home-about .img {
	max-width: calc(100% - var(--padding-width));
	flex: none;
	align-self: flex-end;
}
}

@media (max-width: 767.9px) {
.home-about .marquee {
	height: 180px;
}

.home-about .marquee-img {
	width: 180px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- GALLERY
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-gallery-container {
	position: relative;
}

.home-gallery-li {
	width: 350px;
	max-width: 80%;
	margin: 0 2%;
	user-select: none;
}

.swiper-button-prev,
.swiper-button-next {
	z-index: 1;
	color: #fff;
}

.swiper-button-prev {
	left: -1em;
}

.swiper-button-next {
	right: -1em;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	font-size: 2.5em;
}

@media (min-width: 768px) {
.home-gallery-li {
	margin: 0 15px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- SNS
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-snss {
	background: #fff;
	color: #000;
}

.home-snss .section-description {
	margin-bottom: 18px;
}

.home-sns .section-heading {
	margin-bottom: 0;
}

.home-sns .account {
	margin-bottom: 1.1em;
	color: var(--color_gray);
	font-weight: 700;
	font-size: 1.5rem;
	font-family: var(--font_english);
}

.home-sns .account:hover {
	filter: brightness(0);
}

.home-sns .account-img {
	margin-right: 0.7em;
}

#sb_instagram {
	padding-bottom: 0 !important;
}

#sb_instagram #sbi_images {
	float: none;
	width: auto;
	margin: -8px;
	padding: 0 !important;
}

#sb_instagram #sbi_images .sbi_item {
	padding: 8px !important;
}

@media (min-width: 768px) {
.home-sns .section-heading {
	font-size: 6rem;
}

.home-sns .account {
	font-size: 2.5rem;
}
}

@media (min-width: 1024px) {
.home-snss {
	text-align: center;
}

.home-snss .wrapper {
	display: flex;
	justify-content: space-between;
}

.home-sns {
	display: flex;
	width: 42%;
	flex-flow: column;
}

.home-sns .content {
	margin-bottom: auto;
}
}

@media (max-width: 1023.9px) {
.home-sns:not(:last-child) {
	margin-bottom: 75px;
}
}

@media (max-width: 767.9px) {
.home-sns .account-img {
	width: auto;
	height: 20px;
}


.home-header .heading {
    position: relative;
    bottom: 75%;
    left: 0;
    transform: none;
    font-size: 2rem;
    font-weight: 700;
    /* background: #FFFF;
    color: black; */
    padding: 0px 8px 0px 16px;
}
.home-header .sub-copy {
    position: relative;
    bottom: 65%;
    left: 0;
    transform: none;
    font-size: 3rem;
    font-weight: 700;
    /* background: #FFFF;
    color: black; */
    padding: 0px 8px 0px 16px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- IMAGE
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

@media (min-width: 768px) {
.home-img {
	height: 344px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- SYSTEM
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-systems {
	padding-bottom: var(--padding-height);
	background: #fff;
	color: #000;
}

.home-system {
	background: #000;
	color: #fff;
}

.home-system:not(:last-child) {
	margin-bottom: 25px;
}

.home-system .section-heading {
	display: flex;
	margin-bottom: 1.1em;
	font-size: 3rem;
	flex-flow: wrap;
	align-items: center;
}

.home-system .hour {
	display: inline-block;
	border-bottom: 2px solid;
	font-weight: 700;
	transform: translateY(-2.3em);
}

.home-system-intro {
	margin-bottom: 33px;
}

.home-system-detail {
	padding: 40px 3.8%;
	background: #fff;
	color: #000;
}

.home-system-detail .heading {
	margin-bottom: 0.9em;
	color: var(--color_gray);
	font-weight: 700;
	font-size: 1.5rem;
	text-align: center;
}

.home-system-detail .heading:not(:first-child) {
	margin-top: 2.5em;
}

.home-system-detail .rate-ul {
	max-width: 653px;
	margin: 0 auto 20px;
}

.home-system-detail .rate-li {
	border: 1px solid var(--color_gray);
	font-weight: 700;
	text-align: center;
}

.home-system-detail .rate-heading {
	padding: 0.3em 0.5em;
	background: var(--color_gray);
	color: #fff;
}

.home-system-detail .rate-content {
	padding: 1em 0.5em;
	font-size: 1.5rem;
}

.home-system-detail .drink {
	display: flex;
	max-width: 653px;
	margin: 0 auto;
	padding: 1.7em 0.5em;
	border: 1px solid var(--color_gray);
	justify-content: center;
}

.home-system-detail .drink-li::before {
	margin-right: 0.7em;
	border-left: 5px solid var(--color_gray_light);
	content: "";
}

.home-system-detail .prize-heading {
	color: var(--color_orange);
}

.home-system-detail .prize-strong {
	border-bottom: 2px solid;
	color: var(--color_orange);
}

.home-systems .marquee-content {
	font-weight: 900;
	font-size: 5.2rem;
}

@media (min-width: 768px) {
.home-system {
	padding: 80px 0;
}

.home-system:not(:last-child) {
	margin-bottom: 45px;
}

.home-system .inner {
	padding: 0 7.5%;
}

.home-system .section-heading {
	font-size: 4rem;
}

.home-system .hour {
	font-size: 1.8rem;
}

.home-system-detail {
	padding: 50px 5.2%;
}

.home-system-detail .heading {
	font-size: 1.8rem;
}

.home-system-detail .rate-ul {
	display: flex;
	justify-content: space-between;
}

.home-system-detail .rate-li {
	width: 49%;
}

.home-system-detail .rate-heading {
	font-size: 1.6rem;
}

.home-system-detail .rate-content {
	font-size: 2rem;
}

.home-system-detail .drink {
	font-size: 1.6rem;
}

.home-systems .marquee-content {
	font-size: 13rem;
}
}

@media (min-width: 1024px) {
.home-system-intro {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.home-system .text {
	width: 46%;
}

.home-system .img {
	width: 50%;
}
}

@media (max-width: 1023.9px) {
.home-system-intro .img {
	display: block;
	margin: 20px auto 0;
}
}

@media (max-width: 767.9px) {
.home-system-detail {
	width: 106%;
	margin-left: -3%;
}

.home-system-detail .rate-li:not(:last-child) {
	margin-bottom: 10px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- TOURNAMENT SCHEDULE
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-tournament-calendar {
	margin-bottom: 55px;
	padding: 30px var(--padding-width);
	background: #fff;
	color: #000;
}

.xo-event-calendar caption {
	margin-bottom: 10px !important;
	font-size: 1.2em;
}

.xo-event-calendar thead {
	background: #f5f5f5 !important;
}

.xo-event-calendar tbody a {
	display: inline;
}

.xo-event-calendar .today {
	background: #f5f5f5;
}

.home-tournament-calendar .category-ul {
	margin-top: 10px;
}

.home-tournament-calendar .category-color {
	display: inline-block;
	width: 1.3em;
	height: 1.3em;
	vertical-align: -0.3em;
}

.home-tournament-entry {
	max-width: 860px;
	margin: 0 auto;
}

.home-tournament-entry .heading {
	margin-bottom: 1em;
	padding-bottom: 0.5em;
	border-bottom: 3px solid;
	font-size: 2rem;
}

@media (min-width: 768px) {
.home-tournament-entry .description {
	font-size: 1.6rem;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- NEWS
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-news {
	background: #fff;
	color: #000;
}


.supporter-img {
    display: inline-grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
	margin-bottom: 40px;
}
.supporter-s {
    display: inline-grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
    margin: 8px;
}
.supporter-img a, .supporter-s a {
    margin: 8px;
}