@charset "UTF-8";

/*
Theme Name: Bizone
Author: Biz Collegio
Description: Bizのテーマです。
Version: 1.0
*/

[v-cloak] {
  display: none;
}

/* news */
.cp_pagenum.current,
.pagination .nav-links .current {
	color: #6f4b3e;
	background-color: #91837a;
}

#news-posts li p.entry-title a {
	font-size: 1.8rem;
	color: #000;
	transition: all 0.3s;
}

/* 開催日 */
#date p img {
  max-width: 600px;
}
.top-txt {
  /* margin-top: 40px; */
  text-align: center;
}
/* .top-txt p {
  font-size: 2.4rem;
  font-weight: bold;
} */
@media screen and (max-width: 960px) {
  #date p img {
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  #date p img {
    max-width: 400px;
  }
  /* .top-txt p {
    font-size: 2rem;
  } */
}
@media screen and (max-width: 480px) {
  #date p img {
    max-width: 300px;
  }
  /* .top-txt p {
    font-size: 1.8rem;
  } */
}

/*flyer*/
#flyer {
  padding-top: 60px;
  text-align: center;
}
#flyer h2 {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-size: 3rem;
  line-height: 1.4;
  text-align: center;
}
#flyer h2::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background-color: #00abeb;
}
#flyer a {
  color: #00A0E9;
}

main article.page section:nth-child(odd) {
  background-color: #F5F5F5;
}

/*=================
===== program =====
=================*/
/*ページ内リンク*/
.page-link.content {
  padding: 20px 15px 0;
}
#program_cat-list {
  display: flex;
}
#program_cat-list li {
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#program_cat-list li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 25px;
  font-weight: 600;
  color: #fff;
  background-color: #ff9326;
  border-radius: 5px;
}
#program_cat-list li a::after {
  position: absolute;
  content: url("img/down.svg");
  width: 26px;
  height: 26px;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 74%);
}
@media screen and (max-width: 480px) {
  .page-link.content {
    padding: 20px 5px 0;
  }
  #program_cat-list {
    flex-wrap: wrap;
  }
  #program_cat-list li {
    width: 50%;
    margin-right: 0;
    padding: 0 7.5px 40px;
  }
  #program_cat-list li a {
    padding: 10px 15px;
    width: 100%;
    font-size: 1.4rem;
  }
}

/*切り替えタブ*/
.tab {
	display: flex;
  margin-bottom: 40px;
  border-bottom: 4px solid #ff9326;
}
.tab li {
  cursor: pointer;
}
.tab li:not(:first-child) {
  margin-left: 20px;
}
.tab li a {
	display: block;
  color: #9D9D9D;
	background-color: #F0F0F0;
	padding: 10px 40px;
  font-size: 1.8rem;
  font-weight: 600;
}
.tab li.active a {
  color: #fff;
	background-color: #ff9326;
}
@media screen and (max-width: 480px) {
  .tab {
    justify-content: space-between;
  }
  .tab li:not(:first-child) {
    margin-left: 0;
  }
  .tab li a {
    padding: 10px 25px;
  }
}

/*program-list*/
@media screen and (min-width: 1000px) {
  #program-search {
    display: flex;
    justify-content: space-between;
  }
}

.program-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -18px 0;
  width: 70%;
}
@media screen and (max-width: 1000px) {
  .program-list {
    margin: 0;
    width: 100%;
  }
}
.program-list .program-item {
  width: calc(33.33% - 36px);
  margin: 0 18px 36px;
}
.program-block {
  position: relative;
  background-color: #fff;
  box-shadow: -1px 4px 10px rgb(0 0 0 / 7%);
}
.program-block a {
  color: #000;
}

.program-txt {
  padding: 15px;
  height: 210px;
}
@media screen and (max-width: 480px) {
  .program-txt {
    height: 180px;
  }
}
.program-txt h3 {
  padding-top: 7px;
  padding-bottom: 10px;
  line-height: 1.4;
}
.program-txt .category {
  display: inline-block;
  margin-right: 7px;
  margin-bottom: 3px;
  padding: 3px 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.program-txt .schedule {
  padding-bottom: 5px;
  font-size: 1.2rem;
  color: #888;
}
.program-txt .outline {
  font-size: 1.4rem;
  color: #888;
}

.bottom_bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
  height: 10px;
}
@media screen and (max-width: 810px) {
  .program-list .program-item {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}
@media screen and (max-width: 480px) {
  .program-list .program-item {
    width: 100%;
  }
}

.area {
	display: none;
	opacity: 0;
}
.area.is-active {
  display: flex;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/*search-function*/
#search-function {
  width: 30%;
  background-color: #F5F5F5;
  align-self: flex-start;
  -webkit-position: sticky;
  position: sticky;
  top: 90px;
}
@media screen and (max-width: 1000px) {
  #search-function {
    display: none;
  }
}

/*各ステージリンク*/
@media screen and (min-width: 811px) {
  .stage-link {
    display: flex;
  }
}

.stage-img {
  margin-right: 40px;
  height: 300px;
  overflow: hidden;
}
.stage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.stage-txt h3 {
  margin-bottom: 20px;
}
@media screen and (max-width: 810px) {
  .stage-img {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

#sp-search-function {
  display: none;
}
@media screen and (max-width: 1000px) {
  #sp-search-function {
    display: block;
  }
  #sp-search-function .function-bg {
    width: calc(100% - 80px);
  }
  #sp-search-function .function-box {
    background: #fff;
    border-radius: 20px;
  }
}

/* プログラム個別ページ */
#program-content {
  background-color: #fff;
  border-radius: 20px;
}
#content-inner {
  max-width: 900px;
  margin: 0 auto;
}
#content-inner table {
  margin-top: 20px;
}

/*footerアイコン*/
.f-sns div:not(:first-child) {
  margin-left: 20px;
}
.x-icon {
  width: 22px;
  height: auto;
}
.insta-icon {
  width: 25px;
  height: auto;
}