@charset "UTF-8";
.spacing-1 {
  margin-top: 0.5rem;
}

.spacing-2 {
  margin-top: 1rem;
}

.spacing-3 {
  margin-top: 1.5rem;
}

.spacing-4 {
  margin-top: 2.5rem;
}

.spacing-5 {
  margin-top: 4rem;
}

.spacing-6 {
  margin-top: 6.5rem;
}

.spacing-7 {
  margin-top: 10.5rem;
}

.spacing-8 {
  margin-top: 17rem;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

.header {
  position: fixed;
  top: 0;
  left: 24px;
  width: 80%;
  margin: 24px auto;
  height: auto;
  z-index: 100;
}

.header::after {
  content: "";
  display: block;
  height: 24px;
}

@media (max-width: 600px) {
  .header::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .header {
    width: 100%;
    background: #fff;
    left: 0;
    padding: 16px;
    margin: 0;
  }
}

.header-logo {
  height: 24px;
}

.header-logo > img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.KV {
  position: relative;
  width: 100%;
}

@media (max-width: 600px) {
  .KV {
    margin-bottom: 4rem;
  }
}

.KV::before {
  content: "";
  display: block;
  padding-top: 28.125%;
}

@media (max-width: 600px) {
  .KV::before {
    padding-top: 56.25%;
  }
}

.KV_content {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.KV_content > img, .KV_content > source {
  width: 100%;
}

.flex-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 24px 0px;
}

@media (max-width: 600px) {
  .flex-wrap {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
}

.map-title {
  margin-top: 70px;
}

.map-area {
  position: sticky;
  top: 100px;
  width: 60%;
  height: auto;
}

@media (max-width: 600px) {
  .map-area {
    width: 100%;
    top: 0px;
  }
}

#map {
  position: relative;
  width: 100%;
  height: auto;
}

#map::before {
  content: "";
  display: block;
  padding-top: 70%;
}

.info {
  width: 35%;
  margin: auto;
  margin-bottom: 6.5rem;
}

@media (max-width: 600px) {
  .info {
    width: 100%;
    margin-top: 6.5rem;
    padding: 0 16px;
  }
}

.info_ttl {
  font-size: 24px;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #523f30;
}

.info_section {
  margin-top: 2.5rem;
}

.info_subttl {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #523f30;
}

.info_subttl::before {
  content: "";
  display: block;
  background: #523f30;
  width: 0.3em;
  height: 1em;
  margin-right: 0.5em;
}

.info_list {
  margin-top: 1.5rem;
}

.info_item {
  justify-content: flex-start;
  align-items: baseline;
  padding: 1em 1em;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all .3s;
  list-style: none;
}

.info_item:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.info_item_place {
  font-size: 16px;
  font-weight: bold;
  margin-top: 0px;
}

@media (max-width: 600px) {
  .info_item_place {
    font-size: 16px;
  }
}

.info_item_address {
  font-size: 14px;
  padding-left: 6em;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .info_item_address {
    font-size: 13px;
  }
}

.info_item_address::before {
  content: "住所";
  display: inline-block;
  width: 5em;
  border-right: 1px solid #9b9b9b;
  color: rgba(0, 0, 0, 0.7);
  margin-right: 1em;
  margin-left: -6em;
}

.info_item_date {
  font-size: 14px;
  padding-left: 6em;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .info_item_date {
    font-size: 13px;
  }
}

.info_item_date::before {
  content: "開催日時";
  display: inline-block;
  width: 5em;
  border-right: 1px solid #9b9b9b;
  color: rgba(0, 0, 0, 0.7);
  margin-right: 1em;
  margin-left: -6em;
}

.info_item.active {
  background: #523f30;
  color: #fff;
}

.info_item.active > * {
  color: #fff;
}

.info_item.active > *::before {
  color: #fff;
}

.info_empty {
  margin-top: 1.5rem;
  font-size: 16px;
  line-height: 1.75;
}

.info-window > .info_item_place {
  font-size: 16px;
  font-weight: bold;
}

.info-window > .info_item_address {
  margin-top: 1em;
  font-size: 13px;
  padding-left: 6em;
  line-height: 1.5;
}

.info-window > .info_item_address::before {
  content: "住所";
  display: inline-block;
  width: 5em;
  border-right: 1px solid #9b9b9b;
  color: rgba(0, 0, 0, 0.7);
  margin-right: 1em;
  margin-left: -6em;
}

.info-window > .info_item_date {
  margin-top: 0.5em;
  font-size: 13px;
  padding-left: 6em;
  line-height: 1.5;
}

.info-window > .info_item_date::before {
  content: "開催日時";
  display: inline-block;
  width: 5em;
  border-right: 1px solid #9b9b9b;
  color: rgba(0, 0, 0, 0.7);
  margin-right: 1em;
  margin-left: -6em;
}
