@charset "UTF-8";
/* 変数宣言 */
/* 変数宣言 */
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

html {
  font-size: 62.5%;
}

img {
  vertical-align: bottom;
}

body {
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-feature-settings: "palt";
  background-color: #160503;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (max-width: 940px) {
  body {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

a {
  ransition: all 0.5s ease 0s;
  color: #111111;
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease;
  outline: none;
}
a:hover {
  color: #333333;
  outline: none;
  text-decoration: none;
}
a:active {
  color: #111111;
  outline: none;
  text-decoration: none;
}
a:visited {
  color: #111111;
  outline: none;
  text-decoration: none;
}
a img {
  outline: none;
}

a:focus,
*:focus {
  outline: none;
}

.wspace {
  white-space: pre-wrap;
}

.day {
  background-color: #ff0000;
}

.night {
  background-color: #6200ff;
}

nav {
  height: 70px;
  display: flex;
  align-items: center;
}
@media (max-width: 940px) {
  nav {
    display: none;
  }
}
nav .site-title {
  width: 150px;
  margin-right: 25px;
}
nav .site-title img {
  width: 100%;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
nav ul li {
  list-style: none;
  margin-right: 16px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
}

.menu > li {
  padding: 10px 0px;
}

.menu > li a {
  display: block;
  color: #ffffff;
}

ul.menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

ul.menu__third-level {
  visibility: hidden;
  opacity: 0;
}

ul.menu__fourth-level {
  visibility: hidden;
  opacity: 0;
}

.menu__second-level li {
  margin-bottom: 10px;
  font-size: 12px;
  font-size: 1.2rem;
  display: block;
  margin-right: 0 !important;
  margin: 0;
}

.menu__second-level li a {
  display: block;
  padding: 10px 0px 10px 20px;
}

.menu__second-level li a:hover {
  background-color: #183da1;
  text-decoration: none !important;
}

.menu__third-level li {
  margin-bottom: 10px;
}

/* floatクリア */
.menu:before,
.menu:after {
  content: " ";
  display: table;
}

.menu:after {
  clear: both;
}

.menu {
  *zoom: 1;
}

li.menu__single ul.menu__second-level {
  position: absolute;
  top: 50px;
  width: 100px;
  background: #39b4e4;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

li.menu__single:hover ul.menu__second-level {
  top: 60px;
  visibility: visible;
  opacity: 1;
}

.menu a {
  position: relative;
  display: inline-block;
}

.menu a:before {
  content: "";
  position: absolute;
  display: block;
  background-color: #191919;
  width: 0;
  height: 3px;
  bottom: -2px;
  left: 0;
  transition: 0.4s ease 0s;
}

.menu a::after {
  display: block;
  content: "";
  width: 0%;
  height: 3px;
  background-color: #ebb800;
  margin: 0px auto 0;
  transition: 0.25s ease-out;
  -webkit-transition: 0.25s ease-out;
  -moz-transition: 0.25s ease-out;
  -o-transition: 0.25s ease-out;
  -ms-transition: 0.25s ease-out;
}

.menu a:hover:after {
  width: 100%;
}

.menu menu__second-level a::after {
  display: none;
}

.menu__single .menu__second-level li a::before {
  display: none;
}
.menu__single .menu__second-level li a::after {
  display: none;
}

.sns-wrap {
  margin-left: auto;
}
.sns-wrap ul {
  list-style: none;
}
@media (max-width: 940px) {
  .sns-wrap ul {
    display: flex;
  }
}
.sns-wrap ul a {
  color: #ffffff;
}

.navbar {
  display: none;
}
@media (max-width: 940px) {
  .navbar {
    display: block;
  }
}

#nav-drawer {
  position: fixed;
  top: 15px;
  display: block;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

/*ハンバーガーの形をCSSで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
  position: absolute;
  height: 3px;
  /*線の太さ*/
  width: 25px;
  /*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: "";
  cursor: pointer;
}

#nav-open span:before {
  bottom: -8px;
}

#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 90%;
  max-width: 330px;
  /*最大幅（お好みで調整を）*/
  height: 100%;
  background: #000000;
  transition: 0.3s ease-in-out;
  transform: translateX(-105%);
  padding: 5% 5%;
}
#nav-content .site-title {
  width: 150px;
  margin-bottom: 30px;
}
#nav-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#nav-content ul li {
  list-style: none;
  margin-right: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
}
#nav-content ul li a {
  color: #ffffff;
}

/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: 0.5;
}

#nav-input:checked ~ #nav-content {
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

.header-logo-menu {
  display: none;
}
@media (max-width: 940px) {
  .header-logo-menu {
    display: flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    width: 100%;
    align-items: center;
  }
}

/*ロゴやサイトタイトルをセンタリング*/
.logo-area {
  text-align: center;
  margin: auto;
}
@media (max-width: 940px) {
  .logo-area {
    width: 115px;
  }
}

header {
  position: fixed;
  background-color: #000000;
  border-bottom: solid 1px #d0d0d0;
  padding: 1% 2%;
  width: 100%;
  z-index: 9999;
}
@media (max-width: 940px) {
  header {
    height: 50px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 9999;
  }
}

#page {
  width: 100%;
  margin: 0 auto;
  padding: 0% 0% 0% 0%;
}
#page main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2%;
  margin-top: 90px;
}
@media (max-width: 940px) {
  #page main {
    padding: 3%;
    padding-top: 60px;
    margin-top: 0px;
  }
}
#page main .topttl {
  color: #000000;
  padding: 5px 7px;
  margin: 0px;
  background-color: #ebb800;
}
@media (max-width: 940px) {
  #page main .topttl {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
#page .side-contents {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 940px) {
  #page .side-contents {
    flex-direction: column;
  }
}
#page .side-contents #contents {
  width: 72%;
}
@media (max-width: 940px) {
  #page .side-contents #contents {
    width: 100%;
  }
}
#page .side-contents #contents h1 {
  margin: 0;
  padding: 0;
  margin-bottom: 23px;
  text-align: center;
  color: #ebb800;
}
@media (max-width: 940px) {
  #page .side-contents #contents h1 {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
#page .side-contents #contents-all {
  width: 100%;
}
@media (max-width: 940px) {
  #page .side-contents #contents-all {
    width: 100%;
  }
}
#page .side-contents #contents-all h1 {
  color: #ebb800;
  margin: 0;
  padding: 0;
  margin-bottom: 23px;
  text-align: center;
}
@media (max-width: 940px) {
  #page .side-contents #contents-all h1 {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
#page .side-contents #contents-mid {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 940px) {
  #page .side-contents #contents-mid {
    width: 100%;
  }
}
#page .side-contents #contents-mid h1 {
  margin: 0;
  padding: 0;
  margin-bottom: 23px;
  text-align: center;
}
#page .side-contents .contents-box .news-box {
  width: 100%;
  background-color: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 3%;
}
#page .side-contents .contents-box .news-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#page .side-contents .contents-box .news-box ul li {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: dashed 1px #cccccc;
}
#page .side-contents .contents-box .news-box ul .news_date {
  text-align: right;
  margin-bottom: 10px;
}
@media (max-width: 940px) {
  #page .side-contents .contents-box .news-box ul .news_date {
    width: 100%;
    text-align: right;
  }
}
#page .side-contents .contents-box .news-box ul .news_txt {
  margin-bottom: 10px;
}
#page .side-contents .contents-box .news-box .news-image {
  margin-bottom: 10px;
}
#page .side-contents .contents-box .news-box .news-image img {
  width: 100%;
}
#page .side-contents .contents-box .news-box .news-headline {
  padding: 10px;
  margin-top: 0px;
  margin-bottom: 10px;
  background-color: #e7e7e7;
}
#page .side-contents .contents-box .access-box {
  width: 100%;
  background-color: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 3%;
}
#page .side-contents .contents-box .access-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#page .side-contents .contents-box .access-box ul li {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: dashed 1px #cccccc;
}
#page .side-contents .contents-box .access-box .access-adress {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
#page .side-contents .contents-box .access-box .access-adress .name {
  margin-bottom: 10px;
  font-weight: bold;
}
#page .side-contents .contents-box .system-box {
  width: 100%;
  background-color: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 3%;
}
#page .side-contents .contents-box .system-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#page .side-contents .contents-box .system-box ul li {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: dashed 1px #cccccc;
}
#page .side-contents .contents-box .system-box .floor-map {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 940px) {
  #page .side-contents .contents-box .system-box .floor-map {
    width: 100%;
  }
}
#page .side-contents .contents-box .system-box .floor-btn ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 940px) {
  #page .side-contents .contents-box .system-box .floor-btn ul {
    padding: 0;
    flex-direction: column;
  }
}
#page .side-contents .contents-box .system-box .floor-btn ul li {
  border: none;
  margin: 0px 10px;
}
@media (max-width: 940px) {
  #page .side-contents .contents-box .system-box .floor-btn ul li {
    padding: 0;
  }
}
#page .side-contents .contents-box .system-box .floor-btn ul li .floorbtn a {
  background-color: #f6d04c;
  padding: 10px 20px;
  display: block;
  width: 180px;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  font-weight: bold;
}
#page .side-contents .contents-box .system-box .floor-btn ul li .floorbtn a:hover {
  background-color: #ebb800;
}
@media (max-width: 940px) {
  #page .side-contents .contents-box .system-box .floor-btn ul li .floorbtn a {
    margin-top: 10px;
  }
}
#page .side-contents .contents-box .system-box .floor-text {
  margin-bottom: 20px;
}
#page .side-contents .contents-box .system-box .floor-text a {
  color: #ebb800;
}
#page .side-contents .contents-box .floor {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 940px) {
  #page .side-contents .contents-box .floor {
    width: 100%;
  }
}
#page .side-contents .contents-box .floor h2 {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 10px;
  padding: 5px 7px;
  background-color: #ebb800;
}
#page .side-contents .contents-box .equipment-box {
  width: 100%;
  background-color: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 3%;
}
#page .side-contents .contents-box .equipment-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#page .side-contents .contents-box .equipment-box ul li {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: dashed 1px #cccccc;
}
#page .side-contents .contents-box .equipment-box .equipment td {
  border-top: 1px solid #ededed;
  padding: 6px 10px 6px 10px;
}
#page .side-contents .contents-box .equipment-box .equipment h2 {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 10px;
  padding: 5px 7px;
  background-color: #ebb800;
}
#page .side-contents .contents-box .equipment-box .equipment .table-one {
  width: 25%;
}
#page .side-contents .contents-box .equipment-box .equipment .table-two {
  width: 15%;
}
#page .side-contents .contents-box .equipment-box .equipment .table-three {
  width: 30%;
}
#page .side-contents .contents-box .equipment-box .equipment .table-for {
  width: 10%;
  text-align: right;
}
#page .side-contents .contents-box .equipment-box .equipment .notd {
  border: none;
}
#page .side-contents .sidebar-box {
  width: 25%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #ffffff;
  padding: 3%;
}

.noche-box {
  width: 100%;
  background-color: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 3%;
}
@media (max-width: 940px) {
  .noche-box {
    padding: 20% 3%;
    text-align: center;
  }
}

.slider {
  background-color: #292929;
  color: #ffffff;
  align-items: center;
  justify-content: center;
}

.todays-event {
  border: solid 5px #000000;
  background-color: #000000;
  color: #ffffff;
  margin-top: 20px;
  padding: 1%;
}
@media (max-width: 940px) {
  .todays-event {
    margin-top: 10px;
  }
}
.todays-event .noevent {
  margin: 10px 0px;
}

.top-pickup {
  border: solid 5px #000000;
  background-color: #000000;
  color: #111111;
  margin-top: 20px;
  padding: 1%;
}
@media (max-width: 940px) {
  .top-pickup {
    margin-top: 10px;
  }
}

.topnews {
  border: solid 5px #000000;
  background-color: #000000;
  color: #111111;
  margin-top: 20px;
  padding: 1%;
}
@media (max-width: 940px) {
  .topnews {
    margin-top: 10px;
  }
}
.topnews ul {
  margin: 0%;
  padding: 0;
  list-style: none;
}
.topnews ul a {
  display: flex;
  width: 100%;
  border-bottom: dashed 1px #cccccc;
  color: #ffffff;
}
.topnews ul a:hover {
  background-color: #f3f3f3;
  color: #111111;
}
.topnews ul a:last-child {
  border: none;
}
@media (max-width: 940px) {
  .topnews ul a {
    width: 100%;
  }
}
.topnews ul li {
  list-style: none;
  display: flex;
  margin-top: 15px;
}
.topnews .morebtn a {
  background-color: #f6d04c;
  padding: 10px 20px;
  display: block;
  width: 150px;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  font-weight: bold;
  color: #000000;
}
.topnews .morebtn a:hover {
  background-color: #ebb800;
}
@media (max-width: 940px) {
  .topnews .morebtn a {
    margin-bottom: 20px;
  }
}
.topnews .news-headline {
  margin-left: 30px;
  margin-top: 0;
  font-size: 13px;
  font-size: 1.3rem;
}
@media (max-width: 940px) {
  .topnews .news-headline {
    width: 100%;
    text-align: left;
    margin-left: 30px;
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 0;
  }
}

.today-box {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background-color: #ffffff;
  margin-top: 10px;
}
@media (max-width: 940px) {
  .today-box {
    flex-direction: column;
    padding: 0px 5px 5px 5px;
  }
}
.today-box .today-left-images {
  width: 30%;
}
@media (max-width: 940px) {
  .today-box .today-left-images {
    width: 100%;
  }
}
.today-box .today-left-images img {
  width: 100%;
  height: auto;
}
.today-box .today-right-contents {
  width: 65%;
}
@media (max-width: 940px) {
  .today-box .today-right-contents {
    width: 100%;
    margin-top: 10px;
  }
}
.today-box .today-right-contents ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.today-box .today-right-contents ul li {
  list-style: none;
  font-size: 13px;
  font-size: 1.3rem;
}
@media (max-width: 940px) {
  .today-box .today-right-contents ul li {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.today-box .today-right-contents ul li .event-date {
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
}
.today-box .today-right-contents ul li .event-date .date-text {
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  margin-right: 0;
}
@media (max-width: 940px) {
  .today-box .today-right-contents ul li .event-date .date-text {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.today-box .today-right-contents ul li .event-date .week-text {
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  margin-right: 5px;
}
@media (max-width: 940px) {
  .today-box .today-right-contents ul li .event-date .week-text {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.today-box .today-right-contents ul li .event-date .eventtime-box {
  color: #ffffff;
  padding: 3px 5px;
  font-size: 10px;
  font-size: 1rem;
  text-transform: uppercase;
}
.today-box .today-right-contents ul li .event-title {
  font-size: 20px;
  font-size: 2rem;
  border-bottom: dashed 1px #cccccc;
  padding-bottom: 10px;
  margin: 0px 0px;
}
@media (max-width: 940px) {
  .today-box .today-right-contents ul li .event-title {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.today-box .today-right-contents ul li .event-title .item-text {
  font-weight: bold;
  margin-right: 5px;
}
.today-box .today-right-contents ul li .event-title .ttlbold {
  font-weight: bold;
}
.today-box .today-right-contents ul li .event-act {
  margin: 10px 0px;
}
.today-box .today-right-contents ul li .event-act .item-text {
  font-weight: bold;
  margin-right: 5px;
}
.today-box .today-right-contents ul li .event-time {
  margin: 10px 0px;
}
.today-box .today-right-contents ul li .event-time .item-text {
  font-weight: bold;
  margin-right: 5px;
}
.today-box .today-right-contents ul li .event-time .item-time {
  margin-right: 10px;
}
.today-box .today-right-contents ul li .Bbox {
  display: flex;
  margin: 10px 0px;
  border-bottom: dashed 1px #cccccc;
  padding-bottom: 10px;
}
.today-box .today-right-contents ul li .Bbox .Bttl {
  width: 15%;
}
@media (max-width: 940px) {
  .today-box .today-right-contents ul li .Bbox .Bttl {
    width: 22%;
  }
}
.today-box .today-right-contents ul li .Bbox .Bcont {
  width: 80%;
  margin: 0;
  padding: 0;
  white-space: pre-wrap;
}
.today-box .today-right-contents ul li .Bbox .ttlbold {
  font-weight: bold;
}

.pickup-flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media (max-width: 940px) {
  .pickup-flex {
    margin: 0 -5px;
  }
}
.pickup-flex a {
  display: flex;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 23%;
  margin: 1%;
  transition: 0.3s;
}
@media (max-width: 940px) {
  .pickup-flex a {
    width: 48%;
  }
}
.pickup-flex a:hover {
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
@media (max-width: 940px) {
  .pickup-flex a:hover {
    transform: none;
  }
}

.pickup-box {
  padding: 5%;
  background-color: #ffffff;
  width: 100%;
}
.pickup-box .pickup-left-images {
  width: 100%;
}
.pickup-box .pickup-left-images img {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 940px) {
  .pickup-box .pickup-left-images img {
    height: 100px;
  }
}
.pickup-box .pickup-right-contents {
  width: 100%;
  color: #000000;
}
.pickup-box .pickup-right-contents ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pickup-box .pickup-right-contents ul li {
  list-style: none;
}
.pickup-box .pickup-right-contents ul li .event-date {
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 5px;
}
@media (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-date {
    margin-bottom: 0;
  }
}
.pickup-box .pickup-right-contents ul li .event-date .date-text {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin-right: 0px;
}
@media (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-date .date-text {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.pickup-box .pickup-right-contents ul li .event-date .week-text {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin-right: 5px;
}
@media (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-date .week-text {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.pickup-box .pickup-right-contents ul li .event-date .eventtime-box {
  color: #ffffff;
  padding: 3px 5px;
  font-size: 10px;
  font-size: 1rem;
  text-transform: uppercase;
}
.pickup-box .pickup-right-contents ul li .event-title {
  border-bottom: dashed 1px #cccccc;
  padding-bottom: 10px;
  margin: 0px 0px;
}
@media (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-title {
    margin-bottom: 10px;
  }
}
.pickup-box .pickup-right-contents ul li .event-title .item-text {
  font-weight: bold;
  margin-right: 5px;
}
.pickup-box .pickup-right-contents ul li .event-title .ttlbold {
  font-weight: bold;
}
@media (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-title .ttlbold {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.pickup-box .pickup-right-contents ul li .event-act {
  margin: 10px 0px;
}
@media (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-act {
    font-size: 11px;
    font-size: 1.1rem;
    margin: 0px;
  }
}
.pickup-box .pickup-right-contents ul li .event-act .item-text {
  font-weight: bold;
  margin-right: 5px;
}
.pickup-box .pickup-right-contents ul li .event-time .item-text {
  font-weight: bold;
  margin-right: 5px;
}

@media only screen and (min-width: 500px) and (max-width: 940px) {
  .pickup-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) and (max-width: 940px) {
  .pickup-flex {
    margin: 0 -5px;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) {
  .pickup-flex a {
    display: flex;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 31.333333%;
    margin: 1%;
    transition: 0.3s;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) and (max-width: 940px) {
  .pickup-flex a {
    width: 48%;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) {
  .pickup-flex a:hover {
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) {
  .pickup-box {
    padding: 5%;
    background-color: #ffffff;
    width: 100%;
  }
  .pickup-box .pickup-left-images {
    width: 100%;
  }
  .pickup-box .pickup-left-images img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) and (max-width: 940px) {
  .pickup-box .pickup-left-images img {
    height: 180px;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) {
  .pickup-box .pickup-right-contents {
    width: 100%;
  }
  .pickup-box .pickup-right-contents ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .pickup-box .pickup-right-contents ul li {
    list-style: none;
  }
  .pickup-box .pickup-right-contents ul li .event-date {
    font-family: "Roboto", sans-serif;
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .pickup-box .pickup-right-contents ul li .event-date .date-text {
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
    margin-right: 0px;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) and (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-date .date-text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-date .week-text {
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
    margin-right: 5px;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) and (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-date .week-text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-date .eventtime-box {
    color: #ffffff;
    padding: 3px 5px;
    font-size: 10px;
    font-size: 1rem;
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-title {
    border-bottom: dashed 1px #cccccc;
    padding-bottom: 10px;
    margin: 0px 0px;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) and (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-title {
    border: none;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-title .item-text {
    font-weight: bold;
    margin-right: 5px;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-title .ttlbold {
    font-weight: bold;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) and (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-title .ttlbold {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-act {
    margin: 10px 0px;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) and (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-act {
    margin: 0px;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-act .item-text {
    font-weight: bold;
    margin-right: 5px;
  }
}
@media only screen and (min-width: 500px) and (max-width: 940px) {
  .pickup-box .pickup-right-contents ul li .event-time .item-text {
    font-weight: bold;
    margin-right: 5px;
  }
}
.site-main {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 940px) {
  .site-main {
    flex-direction: column;
  }
}
.site-main .site-box {
  width: 72%;
}
@media (max-width: 940px) {
  .site-main .site-box {
    width: 100%;
  }
}
.site-main .site-box .archives-date {
  margin-bottom: 20px;
}
@media (max-width: 940px) {
  .site-main .site-box .archives-date {
    margin-top: 10px;
    margin-bottom: 15px;
  }
}
.site-main .site-box .archives-date ul {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #000000;
}
.site-main .site-box .archives-date ul .achives-year {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
  margin-right: 5px;
  color: #ebb800;
}
@media (max-width: 940px) {
  .site-main .site-box .archives-date ul .achives-year {
    margin-right: 0px;
    font-size: 20px;
    font-size: 2rem;
  }
}
.site-main .site-box .archives-date ul .last-mounth {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: bold;
}
.site-main .site-box .archives-date ul .last-mounth a {
  padding-left: 20px;
  position: relative;
  color: #ffffff;
}
.site-main .site-box .archives-date ul .last-mounth a:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 16px;
  background: url(../images/svg1.svg);
  background-repeat: no-repeat;
  top: 56%;
  left: 0;
  transform: translate(0, -56%);
  transition: all 0.2s linear;
}
.site-main .site-box .archives-date ul .next-mounth {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: bold;
  margin-right: 5px;
}
.site-main .site-box .archives-date ul .next-mounth a {
  padding-right: 20px;
  position: relative;
  color: #ffffff;
}
.site-main .site-box .archives-date ul .next-mounth a:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 16px;
  background: url(../images/svg0.svg);
  background-repeat: no-repeat;
  top: 56%;
  right: 0;
  transform: translate(0, -56%);
  transition: all 0.2s linear;
}
.site-main .sche-archives-flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.site-main .sche-archives-flex a {
  width: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-bottom: 20px;
  padding: 5%;
  background-color: #ffffff;
  transition: 0.3s;
}
.site-main .sche-archives-flex a:hover {
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
@media (max-width: 940px) {
  .site-main .sche-archives-flex a:hover {
    transform: none;
  }
}
.site-main .sche-archives-flex .sche-archives-box {
  display: flex;
  justify-content: space-between;
}
.site-main .sche-archives-flex .sche-archives-box .sche-archives-left-images {
  width: 35%;
}
.site-main .sche-archives-flex .sche-archives-box .sche-archives-left-images img {
  width: 100%;
}
.site-main .sche-archives-flex .sche-archives-box .sche-archives-right-contents {
  width: 60%;
  color: #000000;
}
@media (max-width: 940px) {
  .site-main .sche-archives-flex .sche-archives-box .sche-archives-right-contents {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.site-main .sche-archives-flex .sche-archives-box .sche-archives-right-contents ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-main .sche-archives-flex .sche-archives-box .sche-archives-right-contents ul li .event-date {
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 5px;
}
.site-main .sche-archives-flex .sche-archives-box .sche-archives-right-contents ul li .event-date .date-text {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin-right: 0px;
}
.site-main .sche-archives-flex .sche-archives-box .sche-archives-right-contents ul li .event-date .week-text {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin-right: 5px;
}
.site-main .sche-archives-flex .sche-archives-box .sche-archives-right-contents ul li .event-date .eventtime-box {
  color: #ffffff;
  padding: 3px 5px;
  font-size: 10px;
  font-size: 1rem;
  text-transform: uppercase;
}
.site-main .sche-archives-flex .sche-archives-box .sche-archives-right-contents ul li .Bbox {
  display: flex;
  margin: 10px 0px;
}
.site-main .sche-archives-flex .sche-archives-box .sche-archives-right-contents ul li .Bbox .Bttl {
  width: 20%;
}
@media (max-width: 940px) {
  .site-main .sche-archives-flex .sche-archives-box .sche-archives-right-contents ul li .Bbox .Bttl {
    width: 32%;
  }
}
.site-main .sche-archives-flex .sche-archives-box .sche-archives-right-contents ul li .Bbox .Bcont {
  width: 75%;
  margin: 0;
  padding: 0;
  white-space: pre-wrap;
}
.site-main .sche-archives-flex .sche-archives-box .sche-archives-right-contents ul li .Bbox .ttlbold {
  font-weight: bold;
}
.site-main .sche-archives-flex .sche-archives-box .sche-archives-right-contents ul li .event-title {
  border-bottom: dashed 1px #cccccc;
  padding-bottom: 10px;
  margin: 0px 0px;
}

.site-single-main {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 940px) {
  .site-single-main {
    flex-direction: column;
  }
}
.site-single-main .site-box {
  width: 72%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 3%;
  background-color: #ffffff;
}
@media (max-width: 940px) {
  .site-single-main .site-box {
    width: 100%;
  }
}
.site-single-main .site-box .event-date {
  display: flex;
  align-items: center;
}
.site-single-main .site-box .event-date .date-text {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin-right: 0px;
}
.site-single-main .site-box .event-date .week-text {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin-right: 5px;
}
.site-single-main .site-box .event-date .eventtime-box {
  color: #ffffff;
  padding: 3px 5px;
  font-size: 10px;
  font-size: 1rem;
  text-transform: uppercase;
}
.site-single-main .site-box .artist-image {
  margin: 20px 0px;
}
@media (max-width: 940px) {
  .site-single-main .site-box .artist-image {
    margin-bottom: 10px;
  }
}
.site-single-main .site-box .artist-image-sub {
  margin: 0px 0px;
}
.site-single-main .site-box .artist-image-sub ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-single-main .site-box .artist-image-sub ul li {
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 940px) {
  .site-single-main .site-box .artist-image-sub ul li {
    margin-bottom: 10px;
  }
}
.site-single-main .site-box .artist-image-sub ul li:last-child {
  margin: 0;
}
.site-single-main .site-box .detail-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-single-main .site-box .detail-box ul li .Bbox {
  display: flex;
  margin: 15px 0px;
  border-bottom: dashed 1px #cccccc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.site-single-main .site-box .detail-box ul li .Bbox:last-child {
  border: none;
}
.site-single-main .site-box .detail-box ul li .Bbox .Bttl {
  width: 16%;
}
@media (max-width: 940px) {
  .site-single-main .site-box .detail-box ul li .Bbox .Bttl {
    width: 20%;
  }
}
.site-single-main .site-box .detail-box ul li .Bbox .Bcont {
  width: 75%;
  margin: 0;
  padding: 0;
}
.site-single-main .site-box .detail-box ul li .Bbox .Bcont a {
  color: #ff5e00;
}
.site-single-main .site-box .detail-single {
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 30px;
  background-color: #e7e7e7;
}
@media (max-width: 940px) {
  .site-single-main .site-box .detail-single {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.site-single-main .sche-archives-flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.site-single-main .sche-archives-flex a {
  width: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-bottom: 20px;
  padding: 3%;
}

.notice-box {
  width: 100%;
  background-color: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 3%;
}
.notice-box .notice-text {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
}
.notice-box .notice-text .name {
  margin-bottom: 10px;
  font-weight: bold;
}
.notice-box .notice-text a {
  color: #ebb800;
}

.sidebar {
  width: 25%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #ffffff;
  padding: 3%;
  height: 90%;
  top: 120px;
  position: sticky;
}
@media (max-width: 940px) {
  .sidebar {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.sidebar h2 {
  border-bottom: solid 3px #292929;
  text-align: center;
  padding-bottom: 10px;
}
.sidebar li {
  list-style: none;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.sidebar li a {
  display: block;
  position: relative;
  color: #000000;
}
.sidebar li a::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 16px;
  background: url(../images/svg0.svg);
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  transition: all 0.2s linear;
}
.sidebar li a:hover:after {
  right: -5px;
}

footer {
  background-color: #ebb800;
  color: #333333;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 5%;
  margin-top: auto;
  font-size: 11px;
  font-size: 1.1rem;
}
footer .gmap {
  width: 100%;
  margin-bottom: 30px;
}
footer .gmap iframe {
  vertical-align: bottom;
}
footer .adress {
  margin-top: 20px;
  font-size: 13px;
  font-size: 1.3rem;
}
@media (max-width: 940px) {
  footer .adress {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
footer .adress .foot-logo {
  font-weight: bold;
  margin: 0 auto;
  margin-bottom: 20px;
}
footer .copy {
  margin-top: 20px;
}

iframe {
  vertical-align: bottom;
}

.pager {
  margin-top: 20px;
}
@media (max-width: 940px) {
  .pager {
    margin-top: 5px;
    margin-bottom: 10px;
  }
}

.page-numbers {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 10px;
}

span.page-numbers.current {
  color: #888888;
}

.tikcetttl {
  margin-bottom: 5px;
}

.tikcetbox {
  margin-bottom: 15px;
}

label {
  display: inline-block;
  width: 100%;
}

.cf7-form {
  border-bottom: 1px dotted #d8d8d8;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

input {
  width: 100%;
}

input[type=submit] {
  background: #ff4500;
  color: #ffffff;
  font-size: 18px;
}

input[type=submit]:hover {
  background: #000000;
  color: #ffffff;
  opacity: 0.8;
}

.cf7-hissu {
  background: #ff0000;
  color: #ffffff;
  text-align: center;
  padding: 2px 5px 2px 5px;
  margin-left: 10px;
}

.cf7-nini {
  background: #999999;
  color: #ffffff;
  text-align: center;
  padding: 2px 5px 2px 5px;
  margin-left: 10px;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  height: 40px;
}

.contact-ttl {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 940px) {
  .contact-ttl {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.c-submit {
  width: 50%;
  margin: 0 auto;
  margin-top: 20px;
}

input[type=button],
input[type=text],
input[type=submit],
input[type=email],
input[type=tel],
input[type=image],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

.foot-banner {
  margin-top: 30px;
}
.foot-banner ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.foot-banner ul li {
  list-style: none;
  width: 200px;
  margin: 10px;
}
@media (max-width: 940px) {
  .foot-banner ul li {
    width: 130px;
  }
}
.foot-banner a:hover {
  opacity: 0.8;
}

.site-branding {
  text-align: center;
}

.news_date {
  width: 60px;
}
@media (max-width: 940px) {
  .news_date {
    width: 80px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.oldsite {
  margin-top: 20px;
  font-size: 14px;
}
.oldsite a {
  color: #ffffff;
}/*# sourceMappingURL=style.css.map */