.site-navigation {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 60px;
  z-index: 1000;
  background-color: #282828;
}

.site-navigation .container {
  max-width: 850px;
}

@media (min-width: 992px) {
  .site-navigation {
    height: auto;
  }
}

.site-navigation ul {
  margin: 0;
  padding: 0;
}

.site-navigation ul li {
  list-style: none;
}

.site-navigation ul li a {
  display: block;
  padding: 20px;
  color: #fff;
  transition: all .2s ease;
}

.site-navigation ul li a:hover {
  text-decoration: none;
  opacity: .8;
}

.site-navigation #h-nav {
  margin-bottom: 0;
  display: none;
  transform: translateY(-100%);
  position: absolute;
  top: 60px;
  background: #000;
  width: 100%;
  width: 100vw;
  left: 0;
}

.site-navigation #h-nav.active {
  transform: translateY(0);
  display: block;
  transition: all .2s ease;
}

@media (min-width: 992px) {
  .site-navigation #h-nav {
    transform: translateY(0);
    position: relative;
    display: block;
    top: 0;
    background: none;
    width: auto;
  }
}

.site-navigation #h-nav ul > li {
  position: relative;
}

.site-navigation #h-nav ul > li > .sub-menu {
  overflow: hidden;
  width: 100%;
  opacity: 0;
  height: 0;
  transition: all .2s ease;
}

@media (min-width: 992px) {
  .site-navigation #h-nav ul > li > .sub-menu {
    width: auto;
    min-width: 200px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }
}

.site-navigation #h-nav ul > li > .sub-menu a {
  background: #000;
  padding: 10px 20px;
}

.site-navigation #h-nav ul > li:hover .sub-menu {
  height: auto;
  width: 100%;
  display: block;
  opacity: 1;
}

.site-navigation #h-nav ul > li:hover .sub-menu li a {
  background: #2a2a2a;
  padding-left: 30px;
}

@media (min-width: 992px) {
  .site-navigation #h-nav ul > li:hover .sub-menu li a {
    padding-left: 20px;
  }
}

.site-navigation #h-nav .menu-item-has-children {
  position: relative;
}

.site-navigation #h-nav .menu-item-has-children a {
  padding-right: 100px;
}

@media (min-width: 992px) {
  .site-navigation #h-nav .menu-item-has-children a {
    padding-right: 20px;
  }
}

.site-navigation #h-nav .menu-item-has-children:before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 100;
  right: 0;
  top: 0;
}

.site-navigation #h-nav .menu-item-has-children:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 28px;
  top: 24px;
  z-index: 110;
  transform: rotate(-45deg) scaleY(1);
  transition: all .2s ease;
}

.site-navigation #h-nav .menu-item-has-children.active:after {
  transform: rotate(45deg) scaleY(-1);
}

@media (min-width: 992px) {
  .site-navigation #h-nav .menu-item-has-children:before, .site-navigation #h-nav .menu-item-has-children:after {
    content: none;
  }
}

header .site-title {
  height: 60px;
  margin-bottom: 0;
}

header .site-title a {
  display: flex;
  height: 100%;
  align-items: center;
}

header .site-title img {
  width: 70vw;
  max-width: 342px;
}

header #h-nav-btn {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
}

@media (min-width: 992px) {
  header #h-nav-btn {
    display: none;
  }
}

header #h-nav-btn a,
header #h-nav-btn a span {
  display: inline-block;
  z-index: 1100;
  transition: all .4s;
  box-sizing: border-box;
}

header #h-nav-btn a {
  padding: 20px 13px;
  position: relative;
  width: 60px;
  height: 60px;
}

header #h-nav-btn a span {
  position: absolute;
  left: 13px;
  width: 28px;
  height: 3px;
  background-color: #fff;
}

header #h-nav-btn a span:nth-of-type(1) {
  top: 20px;
}

header #h-nav-btn a span:nth-of-type(2) {
  top: 28px;
}

header #h-nav-btn a span:nth-of-type(3) {
  top: 36px;
}

header #h-nav-btn a.active {
  position: fixed;
}

header #h-nav-btn a.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}

header #h-nav-btn a.active span:nth-of-type(2) {
  opacity: 0;
}

header #h-nav-btn a.active span:nth-of-type(3) {
  top: 37px;
  transform: translateY(-8px) rotate(45deg);
}

.site-content {
  background: url(../img/img_bg04.jpg);
  background-attachment: fixed;
  min-height: calc(100vh - 135px);
}

.single .site-main > .container {
  max-width: 852px;
  margin: 0 auto;
  background: #fff;
  border-right: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
}

.home .page-header {
  background: url(../img/main.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center 60px;
}

.home .page-header .container {
  min-height: 40vw;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.25;
}

.entry-header .entry-title {
  text-align: center;
  padding: 100px 0 20px;
  font-size: 1.6rem;
}

@media (min-width: 768px) {
  .entry-header .entry-title {
    font-size: 2rem;
  }
}

.home .entry-header .entry-title {
  padding: 60px 0 20px;
}

.single-event .entry-header .entry-title {
  padding: 80px 0 0;
}

@media (min-width: 768px) {
  .single-event .entry-header .entry-title {
    padding: 100px 0 0;
  }
}

.entry-content {
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .entry-content {
    padding-bottom: 100px;
  }
}

@media (min-width: 576px) {
  .event-list {
    margin-left: -5%;
  }
}

.event-column {
  margin-bottom: 30px;
  background: #fff;
  border: 1px solid #dfdfdf;
}

@media (min-width: 576px) {
  .event-column {
    width: calc(50% - 5%);
    margin-left: 5%;
  }
}

@media (min-width: 992px) {
  .event-column {
    width: calc(33.33333% - 5%);
  }
}

.event-column a {
  display: block;
  height: 100%;
  color: inherit;
}

.event-column a:hover {
  text-decoration: none;
}

.event-column a:hover .thumb img {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}

.event-column a:hover .summary {
  opacity: .8;
}

.event-column .thumb {
  max-width: 100%;
  position: relative;
  height: 60vw;
  max-height: 330px;
  overflow: hidden;
}

@media (min-width: 576px) {
  .event-column .thumb {
    max-height: 160px;
  }
}

@media (min-width: 768px) {
  .event-column .thumb {
    max-height: 217px;
  }
}

@media (min-width: 992px) {
  .event-column .thumb {
    max-height: 184px;
  }
}

@media (min-width: 1200px) {
  .event-column .thumb {
    max-height: 220px;
  }
}

.event-column .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1, 1);
  transition: all .1s ease-in;
  width: 100%;
  height: auto;
}

.event-column .thumb .category {
  position: absolute;
  display: inline-block;
  right: 0;
  bottom: 0;
  line-height: 2rem;
  color: #fff;
  width: 6rem;
  text-align: center;
}

.event-column .summary {
  transition: opacity .1s ease-in;
  padding: 20px;
}

.event-column .time {
  font-weight: bold;
  color: #a23d89;
}

.event-column .time:before {
  content: "\f017";
  color: #212529;
  font-family: "Font Awesome 5 Free";
  font-weight: normal;
}

.event-column h2 {
  margin: 5px 0 10px;
  font-size: 1.25rem;
}

.event-column .meta .tag,
.event-column .meta .price,
.event-column .meta .ticket {
  display: inline-block;
}

.event-column .meta .price:before {
  content: '/';
}

.event-column .meta .ticket:before {
  content: '/';
}

.event-column .meta .status {
  margin-top: 5px;
}

.event-column .meta .status > span {
  display: inline-block;
  width: 80px;
  text-align: center;
  line-height: 1.6rem;
}

.event-column .meta .status .status-type1 {
  color: #222;
  background: #d2d2d2;
}

.event-column .meta .status .status-type2 {
  color: #fff;
  background: #5caacd;
}

.event-column .meta .status .status-type3 {
  color: #fff;
  background: #de2727;
}

.single-event-header::after {
  display: block;
  clear: both;
  content: "";
}

@media (min-width: 576px) {
  .single-event-header .sub-title {
    text-align: center;
  }
}

.single-event-header .participation {
  line-height: 2rem;
}

@media (min-width: 576px) {
  .single-event-header .participation {
    width: 300px;
  }
}

.single-event-header .participation .status {
  display: block;
  text-align: center;
  margin-right: 5px;
  float: left;
}

.single-event-header .participation .status > span {
  display: block;
  width: 120px;
}

.single-event-header .participation .status .status-type1 {
  color: #222;
  background: #d2d2d2;
}

.single-event-header .participation .status .status-type2 {
  color: #fff;
  background: #5caacd;
}

.single-event-header .participation .status .status-type3 {
  color: #fff;
  background: #de2727;
}

.single-event-header .participation .space {
  display: block;
  overflow: hidden;
  background: #efefef;
  padding: 0 5px;
}

.single-event-header .participation .space :first-child {
  font-weight: bold;
  font-size: 1.5rem;
  vertical-align: bottom;
}

@media (min-width: 768px) {
  .single-event-header .participation .space {
    text-align: right;
  }
}

.single-event-header .participation .space strong {
  display: block;
}

@media (min-width: 768px) {
  .single-event-header .participation {
    float: right;
  }
}

.single-event-meta {
  border: solid 1px #efefef;
  border-top: #a23d89 solid 3px;
}

@media (min-width: 768px) {
  .single-event-meta {
    display: flex;
    flex-wrap: wrap;
  }
}

.single-event-meta > div {
  background: #fff;
  padding: 10px 0;
  border: solid 1px #efefef;
}

@media (min-width: 768px) {
  .single-event-meta > div {
    width: 50%;
  }
}

.single-event-meta > div p {
  margin-bottom: 0;
  line-height: 2rem;
}

.single-event-meta > div p strong {
  line-height: 2rem;
  display: block;
  width: 110px;
  margin-right: 10px;
  padding-left: 20px;
  float: left;
}

.single-event-meta > div p strong + span,
.single-event-meta > div p strong + .ticket {
  display: block;
  overflow: hidden;
}

.single-event-meta > div.date p:first-of-type span {
  font-size: 1.3rem;
  line-height: 1.8rem;
}

.single-event-contents {
  margin: 30px 0;
}

.single-event-contents h2 {
  background: #efefef;
  color: #a23d89;
  margin-bottom: 14px;
  padding: 10px;
  font-size: 1.6rem;
}

.single-event-contents h2.event-content-title {
  font-size: 1.2rem;
  display: inline-block;
  background: #fff;
  padding: 10px 0;
  color: inherit;
}

@media (min-width: 768px) {
  .single-event-contents h2 {
    font-size: 2rem;
    padding: 10px 20px;
  }
  .single-event-contents h2.event-content-title {
    font-size: 1.6rem;
  }
}

.single-event-contents h3 {
  border-bottom: 3px solid #a23d89;
  padding: 10px 0;
  margin-bottom: 14px;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .single-event-contents h3 {
    font-size: 1.75rem;
  }
}

.single-event-contents h4 {
  color: #a23d89;
  margin-bottom: 14px;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .single-event-contents h4 {
    font-size: 1.5rem;
  }
}

.single-event-contents h5 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .single-event-contents h5 {
    font-size: 1.25rem;
  }
}

.single-event-contents h6 {
  margin-bottom: 14px;
}

.single-event-contents img {
  max-width: 100%;
  height: auto;
}

.single-event-category {
  text-align: right;
}

.single-event-category .item {
  display: inline-block;
  line-height: 2rem;
  color: #fff;
  width: 6rem;
  text-align: center;
  margin-right: 10px;
}

.single-event-category .item a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.em-booking-container {
  margin-top: 50px;
}

.single-event-price {
  margin: 20px 0;
  background: #f8f9fa;
  padding: 10px 20px;
}

@media (min-width: 768px) {
  .single-event-price {
    margin: 10px 0 40px;
  }
}

@media (min-width: 576px) {
  .single-event-list .event-list {
    margin-left: -2%;
  }
}

@media (min-width: 576px) {
  .single-event-list .event-column {
    width: calc(50% - 2%);
    margin-left: 2%;
  }
}

@media (min-width: 992px) {
  .single-event-list .event-column {
    width: calc(33.33333% - 2%);
  }
}

.single-event-list .event-column .thumb {
  height: 60vw;
}

@media (min-width: 576px) {
  .single-event-list .event-column .thumb {
    max-height: 160px;
  }
}

@media (min-width: 768px) {
  .single-event-list .event-column .thumb {
    max-height: 217px;
  }
}

@media (min-width: 992px) {
  .single-event-list .event-column .thumb {
    max-height: 175px;
  }
}

@media (min-width: 1200px) {
  .single-event-list .event-column .thumb {
    max-height: 175px;
  }
}

footer {
  background: #282828;
  color: #fff;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #fff;
}

footer .f-navi {
  background: #474747;
}

div.css-search div.em-search-main .em-search-submit {
  background: #a23d89;
  border-radius: 0;
  cursor: pointer;
}

div.css-search div.em-search-main .em-search-submit:hover {
  background: #a23d89;
  opacity: .8;
}

.ui-datepicker .ui-datepicker-title select {
  height: 1.8em;
}

.em-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 30px -5px;
}

.em-pagination > * {
  margin: 5px;
}

.em-pagination .page-numbers {
  display: block;
  width: 2.4em;
  line-height: 2.4em;
  text-align: center;
  border: 1px solid #dac7d8;
}

.em-pagination .page-numbers.current {
  border: 1px solid #a23d89;
  background: #a23d89;
  color: #fff;
}

.em-pagination a:hover {
  text-decoration: none;
  background: #dac7d8;
}

.em-booking-form-details {
  width: auto;
  float: none;
}

.em-booking .clear {
  display: none;
}

.em-booking .em-booking-form {
  padding-bottom: 20px;
}

.em-booking div.em-booking-login {
  border-top: 1px solid #dfdfdf;
}

@media (min-width: 768px) {
  .em-booking {
    display: flex;
  }
  .em-booking .em-booking-form {
    width: 50%;
    padding-right: 30px;
  }
  .em-booking div.em-booking-login {
    width: 50%;
    border-top: none;
    border-left: 1px solid #dfdfdf;
    padding-left: 30px;
  }
}

.em-booking-form .note {
  display: block;
  font-size: .8rem;
  background: #f8f9fa;
  padding: 5px;
  margin-bottom: 5px;
  max-width: 350px;
}

div.em-booking-login {
  margin-left: 0;
  border: none;
  padding: 10px;
}

div.em-booking-login input {
  margin: 0px;
  max-width: 100%;
}

div.em-booking-login #em_wp-submit {
  display: block;
  margin-bottom: 10px;
}

div.em-booking-login label {
  display: inline-block;
  width: auto;
  max-width: 92%;
}
