@charset "UTF-8";

/*---------------------------------------
共通
----------------------------------------------------*/
body {
  font-size: 17px;
  /*height: 100vh;*/
}

/*.home,.contents {
  height: 100%;
  position: relative;
}*/
a {
  text-decoration: none;
  color: #333;
}

img {
  width: 100%;
}

div {
  max-width: 100%;
}

.element {
  /* フェードイン設定　最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/*.contents main {
  padding-top: 20px;
}*/
main .wrap_box:last-child {
  padding: 0 0 80px;
}

.home main .wrap_box:last-child {
  padding: 0;
}

.con_box {
  width: 96%;
  margin: 0 auto;
  max-width: 880px;
}

.title1 {
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 1.4em;
  padding-top: 20px;
}

.title2 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.4em;
}

.title3 {
  font-size: 12px;
  margin-right: 10px;
  color: #fff;
  background-color: #504020;
  padding: 3px 5px;
  border-radius: 3px;
}

p {
  line-height: 1.6em;
  font-size: 16px;
}

@media screen and (max-width: 959px) {
  .pc_view {
    display: none;
  }
}

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

/*-----------------------------------
ヘッダー
※output.cssにもあるので合わせて更新すること
----------------------------------------------------------*/
header {
  background-color: #000;
}

.logo {
  width: 75%;
  max-width: 320px;
  padding: 20px;
}

.header_box_r {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.head_search {
  width: 90%;
  margin: 0 auto 15px;
}

.search_header form {
  display: flex;
  justify-content: flex-end;
}

.search_header form input[type="text"]#header_s_input {
  border: none;
  border-radius: 5px;
  margin: 0 10px 0 0;
  padding: 3px;
}

.search_header form input[type="submit"] {
  font-size: 14px;
  background-color: #00a0d0;
  color: #FFF;
  font-weight: bold;
  /*border-radius: 5px;*/
  border: none;
  transition: 0.6s;
}

.search_header form input[type="submit"]:hover {
  background-color: #00a040;
}

/*スマホ　ナビゲーション内*/
.menu-content .head_search {
  margin: 30px auto 0;
}

@media screen and (min-width: 960px) {
  .logo {
    width: 82%;
    max-width: 446px;
    padding: 2% 1% 2%;
  }
}

/*------------------------------------
ナビゲーション
※output.cssにもあるので合わせて更新すること
----------------------------------------------------------*/
/*MENUボタン*/
.menu-btn {
  position: fixed;
  top: 15px;
  right: 10px;
  display: flex;
  height: 48px;
  width: 48px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #000;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 4px;
  width: 33px;
  border-radius: 3px;
  background-color: #00a0d0;
  position: absolute;
}

.menu-btn span:before {
  bottom: 10px;
}

.menu-btn span:after {
  top: 10px;
}

/*タップされた×マーク*/
#menu-btn-check:checked~.menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

/*チェックボックス隠す*/
#menu-btn-check {
  display: none;
}

/*開いたときのメニュー*/
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #333;
}

.menu-content ul {
  padding: 70px 10px 0;
}

.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 20px 15px 20px 0;
  position: relative;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 28px;
}

/*メニューを画面の外へ*/
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #333;
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu-btn-check:checked~.menu-content {
  left: 0;
  /*メニューを画面内へ*/
}

@media screen and (min-width: 960px) {
  .header_box {
    display: flex;
    justify-content: space-between;
  }

  .menu-btn {
    display: none;
  }

  .menu-content {
    position: relative;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
  }

  .menu-content ul {
    display: flex;
    padding: 0;
  }

  .menu-content ul li {
    border: none;
  }

  .menu-content ul li a {
    text-align: center;
    padding: 0 14px;
  }

  .menu-content ul li a::before {
    display: none;
  }
}

/*---------------------------------------
フッター
※output.cssにもあるので合わせて更新すること
----------------------------------------------------*/
footer {
  background-color: #000;
  border-top: 7px solid #00a0d0;
  width: 100%;
}

.footer_guidebook {
  border-bottom: 7px solid #00a0d0;
  padding: 20px 0;
}

.footer_guidebook a {
  display: block;
  width: 80%;
  max-width: 446px;
  margin: 0 auto;
  /* padding: 20px 0; */
}

.footer_official_link {
  padding: 20px 0;
  text-align: center;
}

.footer_official_link a {
  width: 60%;
  max-width: 390px;
  display: block;
  margin: 0 auto;
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: #3fefee;
  opacity: 0.6;
  border-radius: 50%;
}

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

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*------------------------------------
ページャー
----------------------------------------------------------*/
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-numbers li {
  margin: 10px 5px;
}

.page-numbers li span,
.page-numbers li a {
  display: block;
  padding: 5px 10px;
  border: #000 solid 2px;
  border-radius: 3px;
}

.page-numbers li span {
  background-color: #000;
  color: #fff;
}

.page-numbers li a:hover {
  background-color: #333;
  color: #fff;
}

/*------------------------------------
プラグイン add to any
----------------------------------------------------------*/
.addtoany {
  margin: 50px 0;
}

.addtoany p {
  font-size: 14px;
  color: #355b47;
}

/*---------------------------------------
ダミートップ・404
----------------------------------------------------*/
.top_mes {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  /* height: 500px; */
  padding: 69px 0 20px;
}

.top_image_box {
  width: 90%;
  max-width: 420px;
  margin: 0 auto 64px;
  border: 1px solid #ccc;
}

/*---------------------------------------
トップ
----------------------------------------------------*/
.catch_copy {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 15px 0;
}

.catch_copy p {
  text-align: center;
}

.overview .con_box {
  padding-top: 5%;
}

.overview div {
  margin-bottom: 18px;
}

.overview div p {
  clear: both;
  color: #000;
  font-size: 110%;
  background: linear-gradient(transparent 70%, #fdf8bd 0%);
  display: inline;
}

.overview p span {
  font-size: 80%;
  margin: 0 0 0 10px;
}

.contents_link {
  padding: 0;
  margin-bottom: 20px;
}

.contents_link ul {
  width: 90%;
  margin: 0 auto;
}

.contents_link ul li {
  margin-bottom: 30px;
}

.contents_link ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 1em 2em;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  background-color: #00a0d0;
  transition: 0.3s;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.contents_link ul li a::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  background-color: #00a0d0;
  transition: 0.2s ease 0s;
}

.contents_link ul li a::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 100%;
  background-color: #00a0d0;
  transition: 0.2s ease 0.2s;
}

/*
.contents_link ul li a:hover::before {
  width: 0%;
}

.contents_link ul li a:hover::after {
  height: 0%;
}

.contents_link ul li a:hover {
  text-decoration: none;
  background-color: #a0c4d3;
}
*/
.guidebook_info {
  margin-bottom: 50px;
}

.guidebook_info p {
  color: #00a0d0;
  font-size: 26px;
  text-align: center;
}

.guidebook_info ul {
  height: 300px;
  width: 90%;
  overflow-y: scroll;
  margin: 0 auto;
  padding: 0 4%;
  border-top: 2px solid #2e2e2e;
  border-bottom: 2px solid #2e2e2e;
}

.guidebook_info ul li {
  border-bottom: dotted #CCC 2px;
  padding: 12px 0;
}

.guidebook_info ul li a {
  text-decoration: none;
  color: #666;
}

.guidebook_info ul li a span {
  display: block;
  font-size: 15px;
}

.bosyuu-box {
  display: block;
  margin: 0 auto;
}

.bosyuu {
  display: block;
  width: 80%;
  text-align: center;
  margin: 30px auto 0;
}

.bosyuu a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border: 1px solid #000;
  padding: 20px;
  text-align: center;
  transition: 0.6s;
}

.bosyuu.volunteer a {
  border-color: #00a0d0;
  color: #00a0d0;
}

.bosyuu.bunner a {
  border-color: #00a040;
  color: #00a040;
}

@media screen and (min-width: 960px) {
  .catch_copy p {
    font-size: 24px;
  }

  .overview div {
    text-align: center;
  }

  .contents_link ul {
    display: flex;
    justify-content: space-around;
  }

  .contents_link ul li {
    width: 30%;
  }

  .contents_link ul li a {
    padding: 1.6em;
  }

  .overview .con_box {
    padding: 3% 5% 1%;
  }

  .bosyuu-box {
    display: flex;
    justify-content: space-between;
    margin: 30px auto 0;
  }

  .bosyuu {
    display: block;
    width: 100%;
  }

  .bosyuu a {
    width: calc(100% - 50px);
  }
}

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

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

/** ガイドブック 会場情報 :::::::::::::::**/
/*一覧*/
.placelist_page {
  margin: 0 0 10px;
}

.placelist_page .title2 {
  font-size: 16px;
  color: #ffffff;
  background-color: #00a0d0;
  border-radius: 3px;
  /* border-left: 3px solid #7ea18e; */
  padding: 10px;
}

.placelist_page li {
  border-bottom: 1px solid #ccc;
}

.placelist_page li:last-child {
  border: none;
}

.placelist_page li a {
  display: block;
  padding: 10px;
}

.placelist_archive {
  width: 100%;
}

.place_info_box {
  display: flex;
  /*flex-wrap: wrap;*/
  max-width: 1200px;
  overflow-x: scroll;
  flex-wrap: nowrap;

}

.place_info {
  width: 200px;
  margin: 1px;
}

.place_info li {
  width: 200px;
}

.list_place_no {
  text-align: center;
  background-color: #cfe2cf;
}

.place_name {
  background-color: #eafaea;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.place_name a {
  display: block;
  color: #333;
  text-align: center;
  text-decoration: underline;
}

.place_info li {
  width: 200px;
  display: flex;
  flex-direction: column;
}

.time_sc ul {
  margin: 0 0 10px;
}

.time_sc ul li:nth-child(odd) {
  background-color: #efefef;
}

.time_sc ul li a {
  color: #666;
}

.timezone {
  font-size: 15px;
}

.time_band_name {
  padding-left: 10px;
  color: #000;
}

.place_mymap {
  padding: 30px 0 0;
}

.place_mymap iframe {
  width: 100%;
}

/*詳細*/
.place_access {
  border-top: 1px dotted #ccc;
  padding: 8px 0;
  margin-top: 10px;
}

.place_map_box {
  display: flex;
  flex-wrap: wrap;
}

.place_img {
  width: 100%;
  text-align: center;
}

.place_img iframe {
  width: 100%;
  max-height: 450px;
}

.place_img img {
  width: auto;
  max-height: 450px;
}

.place_map_box p>iframe {
  width: 100%;
  max-height: 320px;
  border: none;
}

.place_info_detail .detail_box {
  display: block;
}

.place_info_detail .detail_box .title2 {
  border-left: 3px solid #7ea18e;
  background-color: #fff;
  color: #7ea18e;
  margin: 0 0 10px 5px;
  padding: 0 0 0 10px;
  border-radius: 0;
  font-size: 16px;
}

.place_bands li a span {
  margin-right: 8px;
  color: #666;
}

.place_bands li a {
  display: block;
  padding: 5px 3px;
  color: #3f51b5;
}

.place_info_detail .detail_box pre {
  white-space: pre-wrap;
}

.official_site_p {
  width: 80%;
  max-width: 168px;

}

.detail_box .official_site_p a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 90%;
  background-color: #3d97ce;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  transition: 0.6s;
}

.detail_box .official_site_p a:hover {
  background-color: #14608f;
}

@media screen and (min-width: 960px) {
  .place_img {
    width: 48%;
    margin: 1%;
    text-align: center;
  }

  .place_map_box p>iframe {
    width: 100%;
    max-height: 434px;
  }
}

/** ガイドブック バンド情報 :::::::::::::::**/
/*一覧*/
.band_info_box {
  width: 100%;
  margin-bottom: 20px;
  /*border: #01a199 solid 2px;*/
}

/*ヨミガナ50音順*/
.js-tab-title {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 10px;
}

.js-tab-title li {
  width: 14.4%;
  margin: 1%;
}

.js-tab-title li a {
  border: 2px solid #ccc;
  display: block;
  text-align: center;
}

.az_list h3 {
  font-size: 15px;
  color: #ccc;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

.az_list ul li {
  display: flex;

  padding: 6px 5px;
  align-items: center;
}

.az_list ul li:nth-child(odd) {
  background-color: #efefef;
  padding: 6px 5px;
}

.az_list ul li a {
  display: flex;
  flex-wrap: wrap;
  color: #000;
  padding: 5px 0;
}

.az_list ul li a:hover {
  color: #669966;
}

.az_list li span,
.az_list ul li .band_category a {
  padding: 5px;
  border: 2px solid #7ea18e;
  margin: 2px;
  font-size: 14px;
  color: #355b47;
  pointer-events: none;
}

.az_list ul li a .list_yomigana {
  margin: 0 10px 0 0;
}

.band_category {
  display: flex;
}

/*ABC*/
.list_band_name {
  margin: 0 10px 0 0;
}

/*タブ切り替え*/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}

.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #00a0d0;
  display: block;
  order: -1;
}

.tab-label {
  color: White;
  background: LightGray;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}

.tab-label:not(:last-of-type) {
  margin-right: 5px;
}

.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.tab-switch:checked+.tab-label {
  background: #00a0d0;
}

.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: .5s opacity;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.tab-switch {
  display: none;
}

/*詳細*/
.band_info_detail {
  margin: 0 0 50px;
}

.detail_box {
  width: 100%;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  word-break: break-all;
}

.detail_box a {
  color: #3f51b5;
}

.band_img {
  width: 100%;
  max-width: 800px;
}

.band_img img {
  width: 100%;
}

.self_pr {
  background-color: #f1f5ed;
  padding: 15px 10px;
  width: calc(100% - 20px);
  line-height: 1.7em;
}

.a_venue1 ul {
  margin: 0;
}

.schedule1,
.time_start1,
.a_venue1 ul li {
  margin: 0 20px 0 0;
}

.movie_content {
  width: 100%;
}

.movie_content p {
  text-align: center;
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.movie_content p iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
@media screen and (min-width: 960px) {
  .movie_content iframe {
    max-height: 500px;
  }

}
*/

/** 検索欄 searchform.php :::::::::::::::**/
.search_band {
  padding: 10px;
  border: #e8e8e8 solid 5px;
  margin-bottom: 10px;
}

.s_title1 {
  margin: 3px 0;
  padding: 0 10px;
  border-left: 5px solid #CCC;
}

.search_band ul.search_order,
.search_category {
  display: flex;
  flex-wrap: wrap;
}

.search_band ul.search_order li,
.search_category li {
  margin: 1%;
}

.search_band ul.search_order li a,
.search_category li a {
  display: block;
  padding: 4px 10px;
  background-color: #00a040;
  color: #fff;
}

.search_band input[type="submit"] {
  margin: 20px auto;
  padding: 10px 0;
  display: block;
  background-color: #000;
  color: #fff;
  width: 200px;
}

.search_band .searchandfilter ul>li {
  display: block;
}

.search_band .searchandfilter ul>li>ul>li {
  list-style: none;
  display: inline-block;
  padding-right: 10px;
}

.search_band .searchandfilter input[type="text"] {
  max-width: 500px;
}

input#testSearchInput {
  padding: 3%;
  border: solid 1px #ccc;
  width: 94%;
  max-width: 500px;
}

@media screen and (min-width: 960px) {
  input#testSearchInput {
    padding: 1%;
  }
}

/*
.az_list ul {
  margin: 50px 0;
}
*/
/** 協賛 :::::::::::::::**/

.footer_sponser {
  background-color: #ffedf3;
  padding: 3% 1% 3%;
  color: #848484;
}

.footer_sponser p {
  text-align: center;
}

.footer_sponser .sponser_box p {
  text-align: left;
  margin: 10px;
}

.jazz-single_ads {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  word-break: break-all;
  overflow-wrap: break-word;
}

.jazz-single_ads1,
.jazz-single_ads2,
.jazz-single_ads3 {
  display: inline-block;
  text-align: center;

  word-break: break-all;
  overflow-wrap: break-word;
}

/*
.jazz-single_ads span {
  word-break: break-all;
  overflow-wrap: break-word;
}

.jazz-single_ads span::after {
  display: inline-block;
  width: 16px;
  height: 23px;
  content: "／";
  color: #666;
  margin: 0 10px;
}

.jazz-single_ads3 span::after {
  display: none;
}
*/
.jazz-single_ads1::after,
.jazz-single_ads2::after {
  width: 16px;
  height: 23px;
  content: "／";
  margin: 0 10px;
}

.jazz-single_ads2.place_ads_list::after {
  content: none;
}

@media screen and (min-width: 960px) {
  .footer_sponser .sponser_box p {
    text-align: center;
  }

  .jazz-single_ads {
    display: flex;
    justify-content: center;
  }

  .jazz-single_ads span::after {
    /*display: block;*/
  }
}

/** 広告バナー :::::::::::::::**/
.jazz-single_ads2 {
  display: flex;
  justify-content: center;
}


/** ガイドブックINFO :::::::::::::::**/
/* 一欄 */
.guide_info {
  margin-bottom: 50px;
}

.guide_info li {
  margin: 0 0 40px;
}

.title4 {
  font-size: 20px;
  border-left: solid 6px #00a0d0;
  margin-bottom: 10px;
  padding: 0 10px;
  font-weight: bold;
}

.title4 span {
  display: block;
  margin: 0 10px 0 0;
  color: #8d8d8d;
  font-size: 16px;
}

.detail_pick {
  text-decoration: underline;
  color: #504020;
}

@media screen and (min-width: 960px) {
  .title4 span {
    display: inline;
  }
}

/* 詳細 */
.post_contents p {
  margin-bottom: 6px;
}

.post_contents img {
  width: auto;
  max-width: 100%;
}