/* archive -------------------------- */

#event-top {
  background-image: url(../img/gray_bg_pc.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 90px;
}

.event_content {
  width: 88%;
  margin: auto;
  background: #fff;
  padding: 80px;
  display: flex;
  align-items: start;
  gap: 10vw;
}

.return-btn {
  text-align: left;
  width: 88%;
  margin: auto;
}

.event-return {
  color: #ebb000;
  font-size: 16px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 600;
  font-style: normal;
  display: inline-block;
  text-align: center;
  margin: auto;
  padding-top: 40px;
  transition: 0.3s;
}

.event-return:hover {
  opacity: 0.8;
}

.event-return-top {
  text-align: left;
  margin: 0 0 30px 40px;
}

.event-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #ebb000;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-45%) rotate(-135deg);
  margin-top: 2px;
  margin-right: 5px;
}

.event_archive{
  display: flex;
  flex-flow: column;
  gap: 50px;
  flex: 1;
  position: sticky;
  top: 80px;
}

.event_archive h2{
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: solid 1px #E4E4E4;
  margin-bottom: 20px;
}

.archive_category ul{
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.archive_category a{
  color: #EBB000;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 3px 30px;
  border: solid 1px #EBB000;
  border-radius: 100px;
  transition: 0.3s;
}

.archive_category a:hover{
  color: #fff;
  background: #EBB000;
}

.archive_lately ul{
  display: flex;
  flex-flow: column;
  gap: 15px;
}

.archive_lately a{
  color: #333;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: 0.3s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.archive_lately a:hover{
  opacity: 0.6;
}

.archive_lately a::before{
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: rotate(45deg);
  margin-right: 10px;
}

.archive_monthly ul{
  display: flex;
  flex-flow: column;
  gap: 15px;
}

.archive_monthly a{
  color: #333;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

.archive_monthly a:hover{
  opacity: 0.6;
}

.archive_monthly a::before{
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: rotate(45deg);
  margin-right: 10px;
}

.event_inner{
  flex: 1.95;
  padding: 40px 80px 0;
}

.event_inner ul{
  display: flex;
  flex-flow: column;
  gap: 60px;
}

.event_inner li{
  padding-bottom: 30px;
  border-bottom: solid #505050 1px;
}

.event_inner a{
  color: #505050;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: 0.3s;
}

.event_inner a:hover{
  opacity: 0.6;
}

.event_date{
  color: #EBB000;
  font-weight: 500;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.nav-links{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 80px;
}

.page-numbers{
  color: #000000;
  background: #FFFFFF;
  font-size: 14px;
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: 0.3s;
}

.page-numbers.current,
.page-numbers:hover{
  color: #EBB000;
}

.next{
  width: 0.8rem;
  height: 0.8rem;
  transform: translateX(-25%) translateY(-10%) rotate(45deg);
  background: transparent;
  margin-left: 10px;
  border-radius: 0;
  text-indent: -100px;
  overflow: hidden;
}

.next::before{
  content: '';
  background: #EBB000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}

.next::after{
  content: '';
  background: #EBB000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}

.prev{
  width: 0.8rem;
  height: 0.8rem;
  transform: translateX(25%) translateY(-10%) rotate(225deg);
  background: transparent;
  margin-right: 10px;
  border-radius: 0;
  border: none;
  text-indent: -100px;
  overflow: hidden;
}

.prev::before{
  content: '';
  background: #EBB000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}

.prev::after{
  content: '';
  background: #EBB000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}


/* single -------------------------- */

.event-single-page .event_inner{
  padding: 0;
}

.single_header{
  display: flex;
  align-items: center;
  gap: 20px;
}

.category{
  color: #EBB000;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 3px 30px;
  border: solid 1px #EBB000;
  border-radius: 100px;
  transition: 0.3s;
}

.event-date{
  color: #EBB000;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.single_title{
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.6;
  padding: 20px 10px;
  border-bottom: solid 1px #EBB000;
  margin-bottom: 30px;
}

.single_img img{
  width: 100%;
  margin-bottom: 30px;
}

.single_text{
  line-height: 1.85;
  letter-spacing: 0.15rem;
}

.event-single-page .event_inner a {
	display: inline;
}

.event-single-page .event_inner a.single_back{
  color: #EBB000;
  font-weight: 500;
  display: block;
  text-align: center;
  margin-top: 40px;
}

.event-single-page .single_back::before{
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid #EBB000;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: rotate(225deg);
  margin-right: 10px;
}

.wp-caption{
  width: 100%!important;
}

.wp-caption img{
  margin: 20px 0;
}


@media (max-width: 1024px) {
  .event_content{
    padding: 60px;
    gap: 60px;
  }

  .event_archive{
    top: 60px;
  }

  .event_inner{
    padding: 0;
  }

  .event_inner a{
    flex-flow: column;
    align-items: start;
    gap: 10px;
  }

  .single_title{
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  #event-top{
    padding-top: 80px;
  }
  
  .event-return{
    font-size: 14px;
  }

  .event-return-top{
    margin: 0 0 20px 20px;
    padding: 0;
  }

  .event_content{
    padding: 40px 20px 40px 20px;
    flex-flow: column-reverse;
  }

  .event_archive{
    position: static;
  }

  .nav-links{
    margin-top: 60px;
  }

  .event_date{
    font-size: 14px;
  }

  .single_text{
    font-size: 14px;
  }

  .single_title{
    font-size: 20px;
    padding: 20px 0;
  }
}