.EventScheduleAreaMenu {
  display: none;
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  .EventScheduleAreaMenu {
    margin-top: 5px;
  }
}

.EventScheduleAreaMenu.is-active {
  display: block;
}

.EventScheduleAreaMenu__title {
  margin-bottom: 20px;
  text-align: center;
  color: #00479d;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .EventScheduleAreaMenu__title {
    margin-bottom: 10px;
  }
}

.EventScheduleAreaMenu__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.EventScheduleAreaMenu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 30px;
  margin: 4px 8px;
  background-color: #00479d;
  border: 1px solid #00479d;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .EventScheduleAreaMenu__item {
    width: 58px;
    height: 24px;
    margin: 2px 2px;
    font-size:12px;
  }
}


.EventScheduleAreaMenu__item.is-active {
  background-color: #ffffff;
  color: #00479d;
}

.EventScheduleCard {
  padding: 25px;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 640px) {
  .EventScheduleCard {
    padding: 20px 15px;
    border-radius: 10px;
  }
}

.EventScheduleCard__body {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

@media screen and (max-width: 640px) {
  .EventScheduleCard__body {
    display: block;
  }
}

.EventScheduleCard__info {
  flex: 1;
  margin-right: 20px;
}

@media screen and (max-width: 640px) {
  .EventScheduleCard__info {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.EventScheduleCard__info-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
}

.EventScheduleCard__info-heading .__badge {
  flex-shrink: 0;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: 80px;
  border: 1px solid #4974a7;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1;
  color: #00479d;
}

.EventScheduleCard__info-heading .__name {
  color: #00479d;
  font-size: 24px;
  font-weight: bold;
  word-break: break-all;
}

.EventScheduleCard__info-heading .__name a {
  color: #00479d;
  text-decoration: none;
}

@media screen and (max-width: 640px) {
  .EventScheduleCard__info-heading .__badge {
    margin-right: 15px;
    height: 20px;
    width: 60px;
    font-size: 12px;
  }
  .EventScheduleCard__info-heading .__name {
    font-size: 18px;
  }
}

.EventScheduleCard__info-date {
}

.EventScheduleCard__info-date .__row {
  margin-bottom: 8px;
}

.EventScheduleCard__info-date .__row:last-child {
  margin-bottom: 0;
}

.EventScheduleCard__info-date .__title {
  margin-bottom: 4px;
  color: #00479d;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
}

.EventScheduleCard__info-date .__content {
  color: #00479d;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (max-width: 640px) {
  .EventScheduleCard__info-date {
  }
  .EventScheduleCard__info-date .__content {
    font-size: 18px;
  }
}

.EventScheduleCard__info-addition {
  color: #666666;
  line-height: 1.5;
}

.EventScheduleCard__info-addition a {
  color: #666666;
  text-decoration: underline;
}

.EventScheduleCard__map {
  width: 300px;
  flex-shrink: 0;
}

@media screen and (max-width: 640px) {
  .EventScheduleCard__map {
    width: 100%;
  }
}

.EventScheduleCard__map-inner {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #eeeeee;
}

.EventScheduleCard__map-inner iframe {
  width: 100%;
  height: 100%;
}

.EventScheduleCard__addition .material-icons{
  color: #666666;
  vertical-align: middle;
  padding-bottom: 3px;
  width: 24px;
  font-size: 24px;
}

.EventScheduleCard__addition {
  width: 300px;
  flex-shrink: 0;
  color: #666666;
  line-height: 1.5;
}

.EventScheduleCard__addition a{
  color: #666666;
  text-decoration: underline;
}

@media screen and (max-width: 640px) {
  .EventScheduleCard__addition {
    width: 100%;
  }
}

.EventScheduleCard__footing {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 15px;
}

.EventScheduleCard__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background-color: #00479d;
  border-radius: 10px;
  color: #ffffff;
}

a.EventScheduleCard__button {
  text-decoration: none;
  color: #ffffff;
}

.EventScheduleCard__button:after {
  content: '';
  position: relative;
  margin-left: 10px;
  width: 0.6em;
  height: 0.6em;
  transform: rotate(45deg);
  box-shadow: 2px -2px 0 0 #fff;
}

.EventScheduleCardNoResult {
  padding: 25px 25px 15px;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 640px) {
  .EventScheduleCardNoResult {
    padding: 20px 15px;
    border-radius: 10px;
  }
}

.EventScheduleCardNoResult__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: #666666;
}

.EventScheduleItems {
  display: none;
  margin-top: 60px;
  margin-bottom: 80px;
}


.EventScheduleItems.is-active {
  display: block;
}


.EventScheduleItems .EventScheduleCard {
  margin-bottom: 20px;
}

.EventScheduleItems .EventScheduleCard:last-child {
  margin-bottom: 0;
}

.EventScheduleItems__title {
  margin-bottom: 20px;
  text-align: center;
  color: #00479d;
  font-weight: bold;
  font-size: 16px;
}


.EventScheduleItems__footing{
  display: none;
}


.EventScheduleItems__footing .__button{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
  max-width:300px;
  height: 60px;
  background-color: #fff;
  border-radius: 10px;
  color: #00479d;
  border:1px solid #00479d;
  cursor: pointer;
}


.EventScheduleItems__footing.is-active{
  display: flex;
  align-items: center;
  justify-content: center;
}


.EventScheduleRegionMenu {
}

.EventScheduleRegionMenu__title {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  color: #00479d;
  font-weight: bold;
  font-size: 16px;
}

@media screen and (max-width: 640px) {
  .EventScheduleRegionMenu__title {
    margin-bottom: 10px;
  }
}


.EventScheduleRegionMenu__items {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.EventScheduleRegionMenu__item {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #00479d;

  cursor: pointer;
}

@media screen and (max-width: 640px) {
  .EventScheduleRegionMenu__item {
    height: 32px;
    font-size:13px;
  }
}
.EventScheduleRegionMenu__items {
    border: 1px solid #00479d;
}

.EventScheduleRegionMenu__item.is-active {
  background-color: #ffffff;
  color: #00479d;
}

@media screen and (min-width: 641px) {
  .EventScheduleRegionMenu__item {
    width: 33.3%;
    border-bottom: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
  }
  .EventScheduleRegionMenu__item:nth-child(1), .EventScheduleRegionMenu__item:nth-child(2), .EventScheduleRegionMenu__item:nth-child(3) {
    border-top: 1px solid #ffffff;
  }
  .EventScheduleRegionMenu__item:nth-child(3n) {
    border-right: 1px solid #ffffff;
  }
}

@media screen and (max-width: 640px) {
  .EventScheduleRegionMenu__item {
    width: 33.3%;
    border-bottom: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
  }
  .EventScheduleRegionMenu__item:nth-child(1), .EventScheduleRegionMenu__item:nth-child(2), .EventScheduleRegionMenu__item:nth-child(3) {
    border-top: 1px solid #ffffff;
  }
  .EventScheduleRegionMenu__item:nth-child(3n) {
    border-right: 1px solid #ffffff;
  }
}


.EventScheduleRegionTab{
    z-index: 2;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 30px;
}
@media screen and (max-width: 960px) {
    .EventScheduleRegionTab{
        top: 60px;
        padding: 15px 30px;
    }
}


.EventScheduleReset{
    position: absolute;
    top: calc(50% - 12px);
    right: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 24px;
    border-radius:4px;
    background-color: #00479d;
    border:1px solid #00479d;
    color: #ffffff;
    font-size: 13px;
    cursor: pointer;
}


.EventScheduleReset.is-active{
    background-color: #ffffff;
    color: #00479d;
}
