@charset "utf-8";

/* ----------------------------------------
- RESET
---------------------------------------- */
*,*::before,*::after{box-sizing:border-box}ul[class],ol[class]{padding:0}body,h1,h2,h3,h4,p,ul[class],ol[class],figure,blockquote,dl,dd{margin:0}body{min-height:100vh;scroll-behavior:smooth;text-rendering:optimizeSpeed;line-height:1.5}ul[class],ol[class]{list-style:none}a:not([class]){text-decoration-skip-ink:auto}img{max-width:100%;display:block}article>*+*{margin-top:1em}input,button,textarea,select{font:inherit}/*img:not([alt]){filter:blur(10px)}*/@media(prefers-reduced-motion:reduce){*{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}


/* CLEAR
----------------------------------------------------- */
.clear {clear:both;}


/* CLEAR FIX
----------------------------------------------------- */
.clearfix::after {
	display: block;
	clear: both;
	content: "";
}


/* ----------------------------------------
- FORMAT
---------------------------------------- */
html {font-size:62.5%;}/*デフォルト16px*/

body {color:#000; font-family:YakuHanJP,"Cormorant","ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","Helvetica Neue",Helvetica,Arial,"Lucida Grande","メイリオ",Meiryo,sans-serif; text-size-adjust:100%; -webkit-text-size-adjust:100%; background:url("../img/backimage.png") center center / cover no-repeat fixed;}

a {text-decoration:none; outline:none; color:#000; -webkit-tap-highlight-color:rgba(0,0,0,0);}

.spNone {display:none!important;}
.pcNone {display:block!important;}
/*** 960px以上 PCサイズcss適用 ***/
@media screen and (min-width: 960px) {
  .spNone {display:block!important;}
  .pcNone {display:none!important;}
}


/* ヘッダー */
.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

@media screen and (min-width: 960px) {
  .header {
    height: 100px;
    background: url("../img/backimage.png") center center / cover no-repeat fixed;
  }
}

.header_inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

.header_title {
  width: 200px;
  visibility: visible;
}

@media screen and (min-width: 960px) {
  .header_title {
    width: 350px;
  }
}

.header_title a {
  display: block;
  width: 100%;
  height: 100%;
  position:relative;
  top: 5px;
  left: 35%;
}

@media screen and (min-width: 960px) {
  .header_title a {
    top:0;
    left:10px;
    z-index: 10;
  }
  .header_title a {
  	transition-property: opacity;
  	transition-duration: 0.5s;
  }
  .header_title a:hover {
  	opacity: 0.7;
  }
}

.header_nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: ease .4s;
}


@media screen and (min-width: 960px) {
  .header_nav {
    position: static;
    transform: initial;
    height: inherit;
  }
}

.nav-items {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}

.sns-items {
  position: absolute;
  top: 350px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  border-top: solid 1px #fff;
}


@media screen and (min-width: 960px) {
  .nav-items, .sns-items {
    width: 100%;
    height: 100%;
    display: flex;
    position: static;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
  .nav-items {
    justify-content: flex-end !important;
    padding: 20px 20px 0 0 !important;
  }
  .sns-items {
    border: none;
    justify-content: end !important;
    position: relative;
    top: -40px;
    left: -435px;
  }
  hr {
  	height: 0; margin: 0; padding: 0; border: 0;
  	border: solid 1px #000;
  	width: 445px;
  	float: right;
  	margin: -130px 0 0;
  }
}

.nav-items_item a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
}

.nav-items_item:last-child a {
  margin-bottom: 0;
}

@media screen and (min-width: 960px) {
  .nav-items_item a {
    margin-bottom: 0;
    color: #000;
    transition : all 0.5s ease 0s;
	width: fit-content;
  }
  .nav-items .nav-items_item a {
    margin-left: 25px;
  }
  .sns_items .nav-items_item a {
    margin-left: 25px;
  }
  .nav-items .nav-items_item a:hover {
    color: #636464;
  }
}

.nav-items_item i {
  color: #fff;
  font-size: 20px;
  float: left;
  margin: 30px 0 0 20px;
}

.nav-items_item i.fa-x-twitter {
  margin-left: 0;
}

.nav-items_item img {
  width: 70%;
}

@media screen and (min-width: 960px) {
  .nav-items_item i {
    color: #000;
	margin: 0;
  }
  .nav-items_item i:hover {
    color: #636464;
    transition : all 1s ease 0s;
  }
}


/* ハンバーガーメニュー */
.header_hamburger {
  width: 48px;
  height: 100%;
  margin-top: 5px;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  font-family: "Concert One", sans-serif;
}

.hamburger::after {
	content: "MENU";
	font-size: 13px;
	color: #000;
}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
  border-radius: 10px;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 6px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header_nav.active {
  transform: translateX(0);
  background: #000;
}

.hamburger.active::after {
	content: "CLOSE";
  color: #fff;
}

.hamburger.active span {
  background-color: #fff;
}

.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -9px;
  transform: rotate(-45deg);
}


/*=============
main image
=============*/
#mainImage {
  position: relative;
  width: 100%;
  height: 50vh;
  margin: 90px 0 0;
}

#mainImage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 960px) {
  #mainImage {
    height: 110vh;
	margin: 0;
  }
}


/*=============
content  area
=============*/
#content {
	width: 100%;
	padding: 50px 20px;
}

#content h2 {
	color: #000;
	font-size: 24px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
}

#content .about h2 {
	/*color: #fff;*/
	color: #000;
	font-size: 30px;
	/*font-family: "Potta One", system-ui;
	text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.8);*/
	font-weight: bold;
}

#content .about h2 span {
	font-size: 50px;
}

#content .about p {
	/*color: #fff;*/
	color: #000;
	font-size: 16px;
	font-family: "M PLUS U", sans-serif;
	font-weight: bold;
	/*text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.9);*/
	line-height: 5rem;
	margin: 20px 0 0;
}

#content .about p span {
	font-size: 19px;
}

#content .about .topImg img {
	position: relative;
}

#content .about .topImg .kumamoto {
	width: 50%;
	z-index: -3;
	margin: -430px 0 0 0;
	left: 350px;
}

#content .about .topImg .nakamura {
	width: 48.5%;
	z-index: -2;
	margin: -700px 0 -200px 0;
	left: 680px;
}

#content .about .button_box {
	width: 450px;
	position: relative;
	top: -50px;
}

#content .about .button {
	color: #fff;
	font-size: 18px;
	/*font-family: "Potta One", system-ui;*/
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
	display: block;
	width: 160px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	background: #000;
	border-radius: 10px;
	box-shadow: 5px 5px rgba(196, 13, 35, 1);
}

#content .about .button:nth-of-type(1) {
	float: left;
	margin: 0 0 30px;
}

#content .about .button:nth-of-type(2) {
	float: right;
	margin: 0 0 30px;
	width: 250px;
}

#content .about .button:nth-of-type(3) {
	clear: both;
	margin: 0 auto -20px;
}

#content ul li {
	list-style: none;
}

#content .list_item {
	margin: 20px 0;
	width: fit-content;
}

#content .list_more {
	color: #000;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
	font-size: 10px;
	display: block;
	float: right;
	margin: -30px 0 0;
	width: fit-content;
}

#content .date {
	color: #000;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
	margin: 0 0 5px;
	font-size: 10px !important;
}

#content .category {
	color: #000;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
	font-size: 10px;
}

#content .category a {
	color: #000;
}

#content .title {
	font-size: 13px;
}

.new_mark {
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
	color: #c40d23;
	font-size: 10px;
	position: relative;
    top: -1px;
    display: inline-block;
    margin-left: 10px;
}

.schedule {
  	margin: 60px 0;
}

.disc_item .thumb {
	width: 100%;
	margin: 10px 0 20px;
}

.disc_item .thumb img {
	width: 100%;
	height: auto;
}

#content a.back {
	width: fit-content;
	color: #000;
	font-size: 15px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
	display: block;
	margin: 0 auto;
	text-align: center;
}


#pageTop {position:fixed; bottom:10px; right:10px; z-index:9;}
#pageTop a {background:url(../img/page_top_icon.png) center no-repeat; width:50px; height:0; padding:50px 0 0; display:block; overflow:hidden;}

@media screen and (min-width: 960px) {
  #content {
    width: 960px;
    padding: 0;
    margin: 60px auto;
  }
  #content h2 {
	font-size: 40px;
}
  .information, .schedule {
  	width: 450px;
  }
  .information {
  	float: left;
  }
  .schedule {
  	float: right;
  	margin: 0 0 100px;
  }
  .information a, .schedule a {
  	transition-property: opacity;
  	transition-duration: 0.5s;
  }
  .information a:hover, .schedule a:hover {
  	opacity: 0.5;
  }
  .about .button {
  	transition-property: opacity;
  	transition-duration: 0.5s;
  }
  .about .button:hover {
  	opacity: 0.8;
  }
  #content .list_more {
	font-size: 12px;
  }
  #content .date, #content .category {
  	font-size: 13px !important;
  }
  #content .title {
  	font-size: 15px;
  }
  .new_mark {
	font-size: 12px;
  }
  .disc_item .thumb {
	float: left;
	margin: 20px 0;
  }
  .disc_item .thumb, .disc_item .thumb img {
	width: 450px;
  }
  .disc_item .info {
  	position: relative;
  	top: 100px;
  	left: 50px;
  }
  #content a.back {
	font-size: 20px;
	padding: 80px 0 40px;
  }
  #content a.back:hover {
	color: #636464;
    transition : all 1s ease 0s;
  }
  #content a.disc_back {
	margin-top: -150px;
  }
  #pageTop {bottom:20px; right:20px;}
  #pageTop a {transition-property: opacity; transition-duration: 0.5s;}
  #pageTop a:hover {opacity: 0.7;}
}


/*=============
footer  area
=============*/
footer {
	width: 100%;
	background: #c40d23;
	margin: 30px 0 0;
	padding: 25px 0 50px;
	text-align: center;
}

footer a {
    color: #fff;
}

.footer-logo {
	width: 50%;
	display: block;
	position: relative;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
}

footer ul li {
	display: inline-block;
	width: fit-content;
}

.footer-sns {
	position: relative;
	top: -10px;
}

.footer-menu {
	position: relative;
	top: 15px;
}

.footer-sns i {
	font-size: 25px;
	margin: 0 0 0 20px;
}

.footer-sns i.fa-x-twitter {
	/*margin-left: 0;*/
}

.footer-sns img {
	width: 50%;
	margin: 0 0 0 20px;
}

.footer-menu li {
	font-size: 10px;
	margin: 0 0 0 15px;
}

.footer-menu li:first-child {
	margin-left: 0;
}

.copyright {
	font-size: 10px;
	position: relative;
	top: 30px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
	color: #fff;
}

@media screen and (min-width: 960px) {
	footer {
		margin: 100px 0 0;
		padding: 38px 0 50px;
	}
	footer a {
  		transition : all 0.5s ease 0s;
  	}
	footer a:hover {
		color: #aeaeae;
	}
	.footer-logo {
		width: auto;
		top: -60px;
	}
	.footer-sns {
		top: -25px;
	}
	.footer-menu {
		top: 12px;
	}
	.footer-sns i {
		font-size: 35px;
		margin: 0 0 0 30px;
	}
	.footer-sns img {
		width: 70%;
		margin: 0 0 0 30px;
		transition : all 0.5s ease 0s;
	}
	.footer-sns img:hover {
		opacity: 0.8;
	}
	.footer-menu li {
		font-size: 12px;
		margin: 0 0 0 40px;
	}
	.copyright {
		top: 35px;
	}
}


/*=============
個別ページ
=============*/
.static h2 {
	padding: 130px 0 30px;
}

.static h2.event_month {
	padding: 180px 0 0;
}

.static h3 {
	font-size: 16px;
	text-align: center;
	margin: 30px 0 20px;
}

.static h4 {
	font-size: 16px;
	text-align: center;
	margin: 30px 0 20px;
	/*font-family: "Potta One", system-ui;*/
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
}

.fixed h4 {
	font-size: 16px;
	text-align: left;
	margin: 30px 0 15px;
	font-family:"メイリオ",Meiryo,sans-serif;
}

.static h3.list-title {
	text-align: left;
}

.static h3.entry-title {
	text-align: left;
	padding: 130px 0 10px;
	margin: 0;
}

.static h5 {
	font-size: 16px;
	margin: 70px 0 15px;
}

.static p {
	font-size: 14px;
	line-height: 1.8;
}

.static p.date {
	font-size: 15px !important;
	color: #000 !important;
	font-family: "Chakra Petch", sans-serif;
}

.static p.lead {
	font-family: "M PLUS U", sans-serif;
	text-align: center;
}

.static p.text {
	font-family: "M PLUS U", sans-serif;
	text-align: center;
}

.static .streamingImg .kumamoto {
	float: left;
}

.static .streamingImg .nakamura {
	float: right;
}

.static .button_box {
	width: 500px;
	margin: 50px auto 0;
}

.static .button {
	color: #fff;
	font-size: 18px;
	/*font-family: "Potta One", system-ui;*/
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
	display: block;
	width: 180px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	background: #000;
	border-radius: 10px;
	box-shadow: 5px 5px rgba(196, 13, 35, 1);
}

.static .line_title {
	text-align: center;
	font-weight: bold;
}

.static .line {
	display: block;
	margin: 0 auto 50px;
}

.static .gameImg {
	width: auto;
	margin: 30px auto 40px;
}

.static .dl_box {
	width: 400px;
	margin: 0 auto 110px;
}

.static .dl_box .apple {
	float: left;
	width: 165px;
}

.static .dl_box .google {
	float: right;
	width: 200px;
}

.static .howto {
	margin: 40px auto;
}

.static .yellid {
	font-size: 14px;
}

.static .yellid span {
	font-weight: bold;
}

.static .howtoImg {
	width: 960px;
	margin: 0 auto 100px;
	display: flex;
	justify-content: space-between;
	overflow-x: scroll;
}

.static .howtoImg::-webkit-scrollbar {
  width: 12px; /* 横幅設定 */
}

.static .howtoImg::-webkit-scrollbar-thumb {
  background: #3e3e3e; /* ハンドルの色 */
}

.static .howtoImg::-webkit-scrollbar-track {
  background: #aeaeae; /* 背景色 */
}

.static .captureWrap {
	min-width: 200px;
	margin: 10px 20px 20px;
	font-size: 12px;
	font-weight: bold;
}

.static .capture {
	border: solid 4px #000;
	border-radius: 30px;
	display: block;
	width: 200px;
	margin: 10px auto;
}

.static .arrow {
	display: block;
	font-size: 40px;
	margin: 200px auto 0;
}
	
.static .page-content {
	padding: 10px 0 40px;
}

.static .page-content p {
	/*margin: 40px 0 10px;*/
}

.static .page-content .post h3 {
	margin: 0 0 20px;
	padding: 0;
	font-weight: normal;
}

.static .list {
	margin-top: -10px;
}

.static .list .post a {
	width: fit-content;
	display: block;
}

.static ul {
	margin: 50px auto;
	padding: 0;
}

.static li {
	width: 47.5%;
	margin: 0 5% 2em 0;
	float: left;
	text-align: center;
	font-weight: bold;
}

.static li:nth-child(4n) {
	margin-right: 0;
}

.static li img {
	margin: 0 0 10px;
}

.static li p {
	line-height: 1.5;
}

.static li p.sns_icon {
	display: inline-block;
}

.static li p i {
	font-size: 20px;
	margin: 10px 7px 0;
}

.static .profile .role_name {
	/*font-family: "Potta One", system-ui;*/
	font-size: 20px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
}

.static .profile .title {
	margin: 0 0 20px 0 !important;
	/*font-family: "Potta One", system-ui;*/
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
}

.static .profile .group_name {
	font-size: 16px;
}

.static .profile .mini_character {
	width: 45%;
}

.static .profile .item {
	font-size: 12px;
	margin: 10px 0 !important;
}

.static .profile .sns {
  	display: inline-block;
	margin: 20px 20px 0 0 !important;
}

.static .profile .sns:last-child {
	margin: 20px 0 0 0 !important;
}

.static .profile .sns a {
  	font-size: 25px;
}

.static .disc_item .thumb {
	margin: 140px 0 20px;
}

.static .disc_item .title {
	font-size: 16px !important;
	text-align: center;
	margin: 0 0 10px 0;
}

.static .disc_item .distribution {
	text-align: center;
	margin: 0 auto;
}


@media screen and (min-width: 960px) {
	.static h2 {
		padding: 70px 0 30px;
	}
	.static h2.event_month {
		padding: 130px 0 0;
	}
	.static h3 {
		font-size: 20px;
		margin: 40px 0;
	}
	.static h3.entry-title {
		padding: 100px 0 10px;
		margin: 0;
	}
	.static h4 {
		font-size: 48px;
		margin: 40px 0 20px;
	}
	.static h4.contents {
		padding: 130px 0 0;
	}
	.static h4.contents02 {
		padding: 70px 0 0;
	}
	.fixed h4 {
		font-size: 20px;
		font-family:"メイリオ",Meiryo,sans-serif;
	}
	.static h5 {
		font-size: 20px;
	}
	.static p.lead {
		font-size: 16px;
	}
	.static p.notes {
		font-size: 12px;
		margin: -20px auto 40px;
		text-align: center;
	}
	.static p.text {
		font-size: 20px;
		line-height: 4rem;
	}
	.static .streamingImg {
		width: 830px;
		margin: 40px auto 0;
	}
	.static .streamingImg .kumamoto,
	.static .streamingImg .nakamura {
		width: 400px;
	}
	.static .button_box {
		width: 300px;
		margin: 70px auto 0;
	}
	.static .button_box_prof {
		width: 300px;
		margin: 0 auto 100px;
	}
	.static .line_box {
		width: 600px;
	}
	.static .button {
		font-size: 29px;
		width: 300px;
		height: 70px;
		line-height: 70px;
		margin: 0 auto 50px;
		transition-property: opacity;
		transition-duration: 0.5s;
	}
	.static .button:hover {
		opacity: 0.8;
	}
	.static .line_title {
		font-size: 20px;
		margin: 80px auto 20px;
	}
	.static .line {
		width: 100px;
		transition-property: opacity;
		transition-duration: 0.5s;
	}
	.static .line:hover {
		opacity: 0.8;
	}
	.static .dl_button {
		transition-property: opacity;
		transition-duration: 0.5s;
	}
	.static .dl_button:hover {
		opacity: 0.8;
	}
	.static .page-content {
		padding: 20px 0 0;
	}
	.static .list .post a {
		transition-property: opacity;
		transition-duration: 0.5s;
	}
	.static .list .post a:hover {
		opacity: 0.5;
	}
	.static ul {
		margin: 70px auto;
	}
	.static li {
		width: 30%;
		margin: 0 0 40px 0;
		margin-right: 5%;
	}
	.static li:nth-child(even) {
		margin-right: 5%;
	}
	.static li:nth-child(3n) {
		margin-right: 0;
	}
	.static li img {
		margin: 0 0 20px;
	}
	.static li p {
		font-size: 15px;
	}
	.static li p i {
		transition-property: opacity;
		transition-duration: 0.5s;
		font-size: 25px;
		margin: 20px 10px;
	}
	.static li p i:hover {
		opacity: 0.5;
	}
	.static .profile .title {
		margin: 0 0 10px 0 !important;
	}
	.static .profile .mini_character {
		padding: 0 0 0 100px !important;
	}
	.static .profile .item {
		font-size: 15px;
		margin: 15px 0 !important;
	}
	.static .profile .sns a {
		font-size: 30px;
		transition-property: opacity;
		transition-duration: 0.5s;
	}
	.static .profile .sns a:hover {
		opacity: 0.5;
	}
	.static .profile .sns {
		margin-right: 30px !important;
	}
	.static .disc_item .thumb {
		margin: 10px 0 0;
		padding: 0 0 150px;
	}
	.static .disc_item .title {
		text-align: left;
		font-size: 30px !important;
	}
	.static .disc_item .distribution {
		text-align: left;
	}
}


/*=============
Pagination
=============*/
.wp-pagenavi {
	margin: -10px auto 0;
	font-size: 14px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #adadad;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
	position: relative;
}
.wp-pagenavi a {
    color: #adadad;
}
.wp-pagenavi a:hover {
	color: #eb9ac2;
}
.wp-pagenavi span.current,
.wp-pagenavi a.page {
	margin: 0 7px;
	line-height: 2;
	padding: 0 7px;
	transition: 0.7s !important;
	display: block;
	border-bottom: 4px solid transparent;
}
.wp-pagenavi span.current {
	border-bottom: 4px solid #eb9ac2;
}
.wp-pagenavi a.page {
	background: none;
}
.wp-pagenavi a.page:hover {
	border-bottom: 4px solid #eb9ac2;
}
.wp-pagenavi .first,
.wp-pagenavi .extend {
	margin-right: 15px;
}
.wp-pagenavi .previouspostslink {
	position: absolute;
	left: 0;
}
.wp-pagenavi .nextpostslink {
	position: absolute;
	right: 0;
}

@media screen and (min-width: 960px) {
	.wp-pagenavi {
		margin: -20px auto 150px;
	}
}


/*=============
Calendar
=============*/
.tribe-common {
	margin: -60px auto -100px;
}

.tribe-events-header button {
	background-color: transparent;
	border: none;
	cursor: default !important;
	outline: none;
	padding: 0;
	appearance: none;
	font-size: 20px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
	color: #000;
}

.tribe-events-c-view-selector {
	display: none;
}

.tribe-events-c-messages__message {
	display: none !important;
}

.tribe-events-calendar-month__day-date-link {
	pointer-events: none;
}

.tribe-events-c-day-marker {
	display: none !important;
}

.tribe-events-c-subscribe-dropdown__container {
	display: none !important;
}

.tribe-events-c-nav__list-item button {
	display: none !important;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-top-bar__today-button {
	display: none !important;
	visibility: hidden !important;
}

.tribe-events-c-nav__list-item--today {
	display: none !important;
}

.tribe-events .tribe-events-c-top-bar__nav-list-item {
	z-index: 100;
}

.tribe-events .tribe-events-c-top-bar__nav-list-item:nth-child(2) button,
.tribe-events .tribe-events-c-top-bar__nav-list-item:nth-child(2) a {
	position: absolute;
	left: 860px;
}

.tribe-events-calendar-month-mobile-events__mobile-event-title {
	text-align: left !important;
}

.tribe-events-calendar-month__day-date {
	color: #636464 !important;
}

.tribe-events-calendar-month__mobile-events-icon {
	background-color: #636464 !important;
}

.tribe-events .tribe-events-calendar-month__multiday-event-hidden {
	opacity: 100 !important;
}

.tribe-events .tribe-events-calendar-month__multiday-event-bar {
	display: none;
}

h3.tribe-events-calendar-month__multiday-event-hidden-title.tribe-common-h8 {
	color: #000;
	font-size: 14px;
}

.tribe-events .tribe-events-calendar-month__multiday-event-hidden-title {
	white-space: normal !important;
}

@media screen and (min-width: 960px) {
	.tribe-events-c-top-bar__datepicker {
		position: absolute;
		left: 290px;
	}
	.tribe-events-calendar-month__calendar-event-datetime {
		font-size: 12px;
	}
	.tribe-events .tribe-events-calendar-month__calendar-event-title {
		font-size: 14px;
		padding-top: 10px;
	}
	.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__day {
		aspect-ratio: 100 !important;
		/*overflow: hidden !important;*/
		overflow-y: scroll !important;
		overflow-x: hidden !important;
	}
	.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__day::-webkit-scrollbar {
		width: 1px !important;
	}
	.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__day::-webkit-scrollbar-thumb {
		background: #7b7b7b; !important;
	}
	.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__day::-webkit-scrollbar-track {
		background: rgba(255,255,255,0.1) !important;
	}
	.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__multiday-event-wrapper {
		height: auto !important;
	}
	.tribe-events .tribe-events-calendar-month__multiday-event-bar-title {
		font-size: 14px !important;
		overflow: visible !important;
		white-space: normal !important;
	}
	.tribe-events .tribe-events-calendar-month__multiday-event-bar,
	.tribe-events .tribe-events-calendar-month__multiday-event-bar-inner,
	.tribe-events-calendar-month__multiday-event-wrapper {
		background: none !important;
	}
	.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__body {
		border-top: solid 1px #000 !important;
		border-left: solid 1px #000 !important;
		margin-bottom: 50px;
	}
	.tooltipster-base a {
		color: #fff !important;
	}
}


/*=============
Calendar single-event
=============*/
#tribe-events-pg-template {
	padding: 0 !important;
}

.tribe-events-schedule {
	margin: 0 !important;
}

.tribe-events-notices {
	color: #ef8383;
}

.tribe-events-notices li {
	width: auto !important;
}

.tribe-events-notices li::before {
	content: "※";
}

.tribe-events-venue-map {
	margin: 50px auto 0 !important;
}

.tribe-events-single .page-content {
	padding-top: 0 !important;
}

@media screen and (min-width: 768px) {
	.tribe-events-venue-map {
		width: 100% !important;
	}
	.tribe-events-venue-map>div, .tribe-events-venue-map>iframe {
		max-height: 300px !important;
	}
}

@media screen and (min-width: 960px) {
	.tribe-events-venue-map {
		width: 960px !important;
	}
	.tribe-events-venue-map>div, .tribe-events-venue-map>iframe {
		max-height: 350px !important;
	}
}


/*=============
FORM
=============*/
.contact {
	margin-bottom: 60px !important;
}

.c-form__required {
	color: #ef8383;
}

input, textarea, select {
  padding: 10px 10px;
  border: 1px solid #cecece;
  background: #fff;
  border-radius: 5px;
  background-clip: padding-box;
  box-sizing: border-box;
  width: 100%;
}

textarea {
  height:100px;
}

.mw_wp_form .error {
	color: #ff0000 !important;
}

.btn {
  background-color: #000;
  padding: 12px 45px;
  margin-bottom: 30px;
  border: 1px solid #000;
  display: block;
  cursor: pointer;
  color: #fff;
}

.conf {
	margin-top: 15px;
}

.backBtn {
	background-color: #636464;
	border: 1px solid #636464;
}

@media screen and (min-width: 960px) {
	.contact {
		margin-bottom: 200px !important;
	}
	textarea {
		height:200px;
	}
	.btn {
		width: 50%;
		margin: 0 auto 40px;
		transition: .5s;
	}
	.btn:hover {
		opacity: 0.7;
	}
	.conf {
		margin-top: 20px;
	}
	.backBtn {
		margin-bottom: 60px;
	}
}