@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:#636464; 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:#636464; -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: 357px;
  }
}

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

@media screen and (min-width: 960px) {
  .header_title a {
    top:50px;
    left:5px;
    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: 650px;
  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: -1070px;
  }
  hr {
  	height: 0; margin: 0; padding: 0; border: 0;
  	border: solid 1px #d1a2f5;
  	width: 1045px;
  	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: "Cherry Bomb One", system-ui;
}

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

@media screen and (min-width: 960px) {
  .nav-items_item a {
    margin-bottom: 0;
    color: #8d5cbc;
    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: #d1a2f5;
  }
}

.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;
}

@media screen and (min-width: 960px) {
  .nav-items_item i {
    color: #d1a2f5;
	margin: 0;
  }
  .nav-items_item i:hover {
    color: #8d5cbc;
    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: #ce9ef3;
}

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

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #ce9ef3;
  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: linear-gradient(to bottom, #e7d2f7, #ffbfd4, #bbd9f1);
}

.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 div {
  background-image: url(../img/main.jpg);
	background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 50vh;
  margin: 190px 0 0;
}

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

#mainImage .slick-dots {
  bottom: 4%;
  z-index: +1;
}

.slick-dots li {
	width: 40px !important;
}

.slick-dots li.slick-active button:before {
	color: #ce9ef3 !important;
}

.slick-dots li button:before {
	font-size: 15px !important;
	color: #ce9ef3 !important;
}


/*=============
banner area
=============*/
#bannerArea li {
	margin: 15px;
}

/*@media screen and (min-width: 960px) {
	#bannerArea li {
		margin: 10px 15px;
	}
}*/
.metaslider.ms-theme-clarity .flexslider {
	margin-bottom: 0 !important;
}

.metaslider a:link,
.metaslider a:active,
.metaslider a:hover,
.metaslider a:focus {
    outline: none !important;
	border: none !important;
}

.flexslider .slides img {
	-moz-user-select: none !important;
	border: none !important;
}


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

#content h2 {
	color: #8d5cbc;
	font-size: 30px;
	font-family: "Cherry Bomb One", system-ui;
}

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

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

#content .list_more {
	color: #767676;
	font-family: "Cherry Bomb One", system-ui;
	font-size: 10px;
	display: block;
	float: right;
	margin: -30px 0 0;
	width: fit-content;
}

#content .date {
	color: #767676;
	font-family: "Cherry Bomb One", system-ui;
	margin: 0 0 5px;
	font-size: 10px !important;
}

#content .category {
	color: #adadad;
	font-family: "Cherry Bomb One", system-ui;
	font-size: 10px;
}

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

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

#content .author {
	font-size: 10px;
	font-weight: bold;
	margin: 0 !important;
}

.new_mark {
	font-family: "Cherry Bomb One", system-ui;
	color: #ef8383;
	font-size: 10px;
	position: relative;
    top: -1px;
    display: inline-block;
    margin-left: 10px;
}

.schedule {
  	margin: 60px 0;
}

#content .discography .title {
  	font-size: 16px;
  	margin: 10px 0 0;
}

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

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

.disc_item .apple, .disc_item .spotify {
  	display: inline-block;
}

.disc_item .apple a, .disc_item .spotify a {
  	font-size: 40px;
  	color: #adadad;
}

.disc_item .spotify a {
  	font-size: 35px;
  	margin: 0 0 0 10px;
}

.disc_item .tunecore a {
  	font-size: 13px;
}

.video {
	margin: 70px 0 30px;
}

.video-items li {
	aspect-ratio: 16 / 9;
	margin: 10px 0 20px;
}

.video-items iframe {
	width: 100%;
	height: 100%;
}

/*.video .title {
	position: relative;
	top: 10px;
}*/

.video .slick-dots {
  bottom: -25%;
}

.arrow_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top: -10px;
}

.prev-arrow,
.next-arrow {
    display: block;
    width: 15px;
    height: 15px;
    position:relative;
}

.prev-arrow {
    transform: rotate(180deg);
}

.prev-arrow::before,
.next-arrow::before{
    position:absolute;
    content: "";
    width:15px;
    height:15px;
    border-right: 1px solid #636464;
    border-top: 1px solid #636464;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    transform:rotate(45deg);
}

.list_blog .list_item {
  	width: 100%;
}

.list_blog .list_item img {
  	width: 100%;
	height: auto;
}

.list_blog .list_item .title {
  	margin: 7px 0 0;
}

.list_blog .list_item .date {
	float: left;
	padding: 0 10px 30px 0;
}

.blog_archive .list_item {
	margin: 0 0 40px!important;
}

.blog_archive .list_item .date{
	color: #636464 !important;
}

.comingsoon {
	text-align: center;
	color: #767676;
	font-size: 30px !important;
	font-family: "Cherry Bomb One", system-ui;
	margin: 50px auto 70px;
}

#content a.back {
	width: fit-content;
	color: #8d5cbc;
	font-size: 15px;
	font-family: "Cherry Bomb One", system-ui;
	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:60px; height:0; padding:64px 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, .discography a, .blog a {
  	transition-property: opacity;
  	transition-duration: 0.5s;
  }
  .information a:hover, .schedule a:hover, .discography a:hover, .blog a:hover {
  	opacity: 0.5;
  }
  #content .list_more {
	font-size: 12px;
  }
  #content .date, #content .category {
  	font-size: 13px !important;
  }
  #content .title {
  	font-size: 15px;
  }
  #content .author {
	font-size: 13px;
	font-weight: bold;
  }
  .new_mark {
	font-size: 12px;
  }
  .discography {
  	clear: both;
  }
  #content .discography .title {
  	font-size: 21px;
  }
  .disc_item .thumb {
	float: left;
	margin: 20px 0;
  }
  .disc_item .thumb, .disc_item .thumb img {
	width: 450px;
  }
  .more-disc {
  	position: relative;
  	right: 510px; 
  }
  .disc_item .info {
  	position: relative;
  	top: 150px;
  	left: 50px;
  }
  .disc_item .apple a, .disc_item .spotify a {
  	font-size: 60px;
  }
  .disc_item .spotify a {
  	font-size: 50px;
  	margin: 0 0 0 20px;
  }
  .disc_item .tunecore a {
  	font-size: 14px;
  }
  .video {
	margin: 80px 0 40px;
  }
  .video-items li {
	margin: 20px 0;
  }
  /*.video .title {
	top: -90px;
  }*/
  .video .slick-dots {
	bottom: -15%;
  }
  .arrow_box {
    top: -350px;
  }
  .prev-arrow,
  .next-arrow {
    width: 50px;
    height: 50px;
    transition: .3s;
    cursor: pointer;
  }
  .next-arrow {
  	left: 60px;
  }
  .prev-arrow {
    transform: rotate(180deg);
    right: 60px;
  }
  .next-arrow:hover {
    transform:scale(1.1);
  }
  .prev-arrow:hover {
    transform:rotate(180deg) scale(1.1);
  }
  .prev-arrow::before,
  .next-arrow::before{
    width:50px;
    height:50px;
  }
  .list_blog .list_item {
  	width: 450px;
  	margin: 20px 0;
  }
  .list_blog .list_item:nth-child(odd) {
  	float: left;
  }
  .list_blog .list_item:nth-child(even) {
  	float: right;
  }
  .list_blog .list_item img {
  	width: 450px;
  }
  .list_blog .list_item .title {
  	margin: 10px 0 0;
  }
  .comingsoon {
	font-size: 40px !important;
	margin: 100px auto 300px;
  }
  #content a.back {
	font-size: 20px;
	padding: 0 0 40px;
  }
  #content a.back:hover {
	color: #d1a2f5;
    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: #e7d2f7;
	margin: 30px 0 0;
	padding: 0 0 50px;
	text-align: center;
}

.footer-logo {
	width: 50%;
	display: block;
	position: relative;
	top: -50px;
	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 li.fc a {
    font-size: 20px;
    font-family: "Cherry Bomb One", system-ui;
}

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

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

.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: "Cherry Bomb One", system-ui;
}

@media screen and (min-width: 960px) {
	footer {
		margin: 100px 0 0;
	}
	footer a {
  		transition : all 0.5s ease 0s;
  	}
	footer a:hover {
		color: #8d5cbc;
	}
	.footer-logo {
		width: 300px !important;
		top: -85px;
	}
	.footer-sns {
		top: -25px;
	}
	.footer-menu {
		top: 12px;
	}
	.footer-sns li.fc a {
	    font-size: 35px;
	}
	.footer-sns i {
		font-size: 35px;
		margin: 0 0 0 30px;
	}
	.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 h3.list-title {
	text-align: left;
}

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

.static h4 {
	font-size: 16px;
	margin: 30px 0 15px;
}

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

.static p.date {
	font-size: 15px !important;
	color: #adadad !important;
	font-family: "Cherry Bomb One", system-ui;
}

.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 .title {
	margin: 0 0 20px 0 !important;
	font-weight: bold;
}

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

.static .profile .item span {
	font-weight: bold;
}

.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 .list .disc_item {
	margin: 0 0 50px;
}

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

.static .list .disc_item .thumb {
	margin: 0 0 10px;
}

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

.static .disc_item .category {
	font-size: 12px !important;
	text-align: center;
	margin: 0;
}

.static .disc_item p.date {
	text-align: center;
	color: #767676 !important;
	margin: 0;
}

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

.static .list .disc_item .title,
.static .list .disc_item .category,
.static .list .disc_item p.date,
.static .list .disc_item .distribution {
	text-align: left;
}

.static .list .disc_item .title {
	font-size: 13px !important;
	margin: 0;
}

.static .list .disc_item .category,
.static .list .disc_item p.date {
	font-size: 10px !important;
}

.static .disc_item .apple,
.static .disc_item .spotify,
.static .disc_item .tunecore {
	margin: 0 auto;
}

.static .disc_item .spotify a {
  	margin: 0 0 0 20px;
}

.static .list .disc_item .apple,
.static .list .disc_item .spotify,
.static .list .disc_item .tunecore {
	margin-top: -10px;
}

.static .video_item {
	aspect-ratio: 16 / 9;
	margin: 140px 0 20px;
}

.static .video_item iframe {
	width: 100%;
	height: 100%;
}

.static .video-archive_img img {
	width: 960px;
	height: 198px;
	object-fit: cover;
}

.static .video-archive_img .title,
.static .video_item .title {
	font-size: 14px !important;
	margin: 5px 0 0;
}

.static .video-archive_img .date {
	margin: 0 0 50px !important;
}


@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: 20px;
	}
	.static .page-content {
		padding: 20px 0 100px;
	}
	.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_list div {
		transition-property: opacity;
		transition-duration: 0.5s;
	}
	.static .profile_list div:hover {
		opacity: 0.5;
	}
	.static .profile .title {
		margin: 0 0 30px 0 !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_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.static .list .disc_item {
		margin: 0 30px 60px 0;
	}
	.static .list .post:nth-of-type(3n) .disc_item {	
		margin: 0;
	}
	.static .disc_item .thumb {
		margin: 100px 0 0;
		padding: 0 0 150px;
	}
	.static .list .disc_item .thumb {
		width: calc(900px / 3) ;
		height: auto;
		margin: 0 0 10px 0;
		padding: 0;
	}
	.static .list .disc_item .info {
  		position: static;
  	}
	.static .list .disc_item .apple a,
	.static .list .disc_item .spotify a {
		font-size: 30px;
  	}
  	.static .list .disc_item .spotify a {
		font-size: 25px;
		margin: 0 0 0 10px;
  	}
  	.static .list .disc_item .tunecore a {
		font-size: 10px;
		margin-top: 5px;
  	}
	.static .disc_item .title {
		text-align: left;
		font-size: 30px !important;
	}
	.static .list .disc_item .title {
		font-size: 15px !important;
		margin-bottom: 5px;
	}
	.static .disc_item .category {
		text-align: left;
	}
	.static .disc_item p.date {
		text-align: left;
	}
	.static .list .disc_item .category,
	.static .list .disc_item p.date {
		font-size: 13px !important;
	}
	.static .disc_item .distribution {
		text-align: left;
	}
	.static .disc_item .apple a,
	.static .disc_item .spotify a,
	.static .disc_item .tunecore a {
		transition-property: opacity;
		transition-duration: 0.5s;
	}
	.static .disc_item .apple a:hover,
	.static .disc_item .spotify a:hover,
	.static .disc_item .tunecore a:hover {
		opacity: 0.5;
	}
	.static .video_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.static .list .video-archive_img {
		width: calc(930px / 2) ;
		height: auto;
		margin: 0 30px 60px 0;
		padding: 0;
	}
	.static .list .post:nth-of-type(2n) .video-archive_img {	
		margin: 0;
	}
	.static .video-archive_img img {
		height: 262px;
	}
	.static .video-archive_img .title,
	.static .video_item .title {
		font-size: 16px !important;
		margin: 10px 0 0;
	}
	.static .video_item {
		margin: 100px 0 150px;
	}
}


/*=============
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: "Cherry Bomb One", system-ui;
	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: "Cherry Bomb One", system-ui;
	color: #767676;
}

.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;
}

@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;
	}
	.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 {
  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: #ef8383 !important;
}

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

.conf {
	margin-top: 15px;
}

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

@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;
	}
}