@charset "utf-8";
table.unit_table_side tr th {
  padding: 2px 0;
  margin-right: 1em;
}
/*新着イベント情報*/
.news_link {
  display: flex;
  margin: 2em auto;
  padding: 0;
  list-style-type: none;
}
.news_link li {
  pointer-events: none;
  background: none;
  color: #666;
  width: auto;
  margin: 0;
  padding: 0;
  display: none;
}
.news_link li:first-child {
  margin-left: 0;
}
.news_link li:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid #3D7417;
  display: none;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}
.news_link li.active, .news_link li:hover {
  background: #3D7417;
  color: #fff;
  font-weight: 500;
}
.news_link li.active:after, .news_link li:hover:after {
  display: block;
}
.news-content {
  margin-bottom: 30px;
}
.news-content .title {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
.news-content em {
  font-weight: normal;
  font-size: .7em;
  color: #494949;
  background: #D1D1D1;
  vertical-align: middle;
  padding: 0 3px;
  margin-right: 10px;
}
.news-content span.date {
  margin-right: 1em;
  color: #036EB7;
  font-weight: 500;
}
.news-content h5 {
  font-weight: normal;
  font-size: 1em;
}
.news-content span.tag {
  display: inline-block;
  background: #036EB7;
  width: 200px;
  text-align: center;
  color: #fff;
  vertical-align: middle;
  margin-right: 1em;
  font-size: .9em;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
/*==================================================
アコーディオンのためのcss
===================================*/
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  max-width: auto;
  margin: 0 auto;
  background: none;
  width: auto;
}
.accordion-area li {
  margin: 0 0 3em 0;
  border: 1px solid #036EB7;
}
.accordion-area ul.col_mark_circle li {
  margin: 0;
  border: none;
}
/*アコーディオンタイトル*/
.accordion-area li .title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: inherit;
  pointer-events: none;
  font-weight: normal;
  padding: 1.4em 1em 1.1em 1em;
  transition: all .5s ease;
  border-bottom: 1px dashed #95ACBC;
  font-size: clamp(0.875rem, 0.761rem + 0.57vw, 1.188rem);
  background: #fff;
}
.accordion-area li .title .tag {
  display: none;
}
.accordion-area li .title .date span {
  display: none;
}
.accordion-area li .title .date em {
  font-size: .85em;
  padding: 0 1em;
  border-radius: 5px;
  margin-right: 0;
}
/*アコーディオンで現れるエリア*/
.accordion-area li .box {
  padding: 0 1em 1.4em 1em;
  display: block;
  background: #fff;
  border-bottom: 1px dashed #E2EFD3;
  width: auto;
  margin: 0 auto;
}
.accordion-area li .box tr th {
  width: 15%;
  font-size: .9em;
}
.accordion-area li .box tr td {
  font-size: .9em;
  width: 100vw;
}
@media screen and (max-width:768px) {
	.news-content .title > div{
		display: inline-block;
	}
	.news-content span.date{
display: inline;
	}
  .accordion-area li.box {
    table-layout: fixed;
  }
  .accordion-area li .box tr th {
    width: 30% !important;
    font-size: .8em;
    padding: 1em;
    text-align: center;
  }
  .accordion-area li .box tr td {
    line-height: 1.5;
  }
  .accordion-area li .box tr:nth-child(odd) {
    background: #F7F7F7;
    padding: 1em;
  }
  .accordion-area li .box {
    padding: 0;
  }
}
/*イベントindex目次*/
.l_link_btn_flex {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}
.l_link_btn_flex li {
  text-align: center;
}
.l_link_btn_flex li em {
  display: block;
  font-size: .7em;
  font-weight: normal;
  color: #9B9B9B;
}
.news-content em.on {
  background: #E6F1D9;
  color: #759C7A;
}
.l_link_btn_flex li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: auto;
  margin: 0 auto;
  padding: .9em 2em;
  border: 1px solid #5fb027;
  border-radius: 5px;
  background-color: #fff;
  color: #5fb027;
  font-size: 1em;
}
.l_link_btn_flex li a:hover {
  animation: button 1s;
}
@keyframes button {
  0% {
    box-shadow: 0 0 0 0 rgb(204 232 184 / 50%);
  }
  100% {
    box-shadow: 0 0 0 1.2em rgb(0 0 0 / 0%);
  }
}
.l_link_btn_flex li a::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #5fb027;
  border-right: 2px solid #5fb027;
  content: '';
}
table.unit_table_side tr th {
  width: auto;
  text-align: left;
}
@media screen and (max-width:960px) {
  .l_link_btn_flex {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width:768px) {
  .news-content .title {
    padding: .4em !important;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: nowrap;
  }
  .news-content span.date {
    padding: 0;
  }
  .l_link_btn_flex {
    display: block;
  }
  .l_link_btn_flex li {
    margin-bottom: 1em;
  }
}
/*-------------*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  list-style-type: none;
  padding: 0;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.pagination a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-radius: 5px;
  background-color: #f2f2f2;
  color: #2589d0;
  padding: 0 1.4em;
}
.pagination a:not(:hover) {
  text-decoration: none;
}
.pagination .current a {
  background-color: #2589d0;
  color: #fff;
  pointer-events: none;
}
.l_flex_reverse {
  display: flex;
  flex-direction: column-reverse;
}