@charset "UTF-8";
/*
 * 変数
 */
/*
 * ブレークポイント
 */
/*
 * 480pxより広くなったら改行なくす
 */
@media (min-width: 560px) {
  .br_sp {
    display: none;
  }
}

/*
 * 780pxより広くなったら改行なくす
 */
@media (min-width: 880px) {
  .br_tab {
    display: none;
  }
}

/*
 * 780pxより狭くなったら改行なくす
 */
@media (max-width: 880px) {
  .pc_br {
    display: none;
  }
}

/*
 * トランジション
 */
.arc-column-top-tit img {
  max-width: 320px;
}
@media (max-width: 560px) {
  .arc-column-top-tit img {
    width: 77%;
  }
}

.info-column-top-tit img {
  max-width: 415px;
}
@media (max-width: 560px) {
  .info-column-top-tit img {
    width: 77%;
  }
}

.news-column-top-tit img {
  max-width: 205px;
}

.category-eria {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin: 0 2%;
  padding-bottom: 8px;
}
.category-eria span {
  font-weight: bold;
}

.content--block {
  margin-top: 5%;
  padding-bottom: 7%;
}

.content--block-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  width: 93%;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 2em;
}
@media (max-width: 880px) {
  .content--block-inner {
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (max-width: 560px) {
  .content--block-inner {
    padding: 0;
    margin-bottom: 14%;
  }
}

.content_archive {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin-top: 85px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .content_archive {
    flex-direction: column;
    align-items: center;
  }
}

.archive_box {
  width: 75%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 1000px) {
  .archive_box {
    width: 100%;
  }
}

.arc-list {
  width: 32%;
  margin-bottom: 3%;
  position: relative;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
  margin-right: 2%;
}
.arc-list:nth-child(3n) {
  margin-right: 0;
}
.arc-list::before, .arc-list::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.arc-list::after {
  z-index: 10;
  width: 0;
  background-image: linear-gradient(45deg, #3bbd2a 0%, #b5e448 100%);
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (max-width: 880px) {
  .arc-list {
    width: 47%;
  }
}
@media (max-width: 560px) {
  .arc-list {
    width: 100%;
    margin-right: 0;
  }
}

.arc-list:hover::after {
  width: 100%;
}
.arc-list:hover .tit-p {
  color: #003F88;
}
.arc-list:hover .list_img_box img {
  transform: scale(1.05);
}
.arc-list:hover .more-btn-box a {
  transform: translateX(5px);
}
.arc-list:hover .more-btn-box a::before {
  opacity: 0;
}

.list_box {
  display: flex;
  padding: 7%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.arc-image-box {
  text-align: center;
  width: 100%;
}

.category_list_eria {
  width: 270px;
  text-align: left;
  margin: 0 auto;
}

.list_img_box {
  width: 100%;
  overflow: hidden;
  max-height: 195px;
  border: 1px solid #ccc;
  margin: 0 auto;
}
.list_img_box img {
  height: auto;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
  transition-property: transform;
}

.arc-text-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 4%;
}

a.arc-wrap-link {
  pointer-events: auto;
}
a.arc-wrap-link::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
  background-color: transparent;
}

.cat-day-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 880px) {
  .cat-day-box {
    margin-top: 5%;
  }
}

p.archive-day {
  color: #4a8a53;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
}

.arc-cat {
  color: white;
  font-size: 13px;
  padding: 1px 3px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
}
.arc-cat span {
  padding-right: 5px;
  padding-left: 5px;
  display: inline-block;
  background-color: #003F88;
}
.arc-cat span.ippan {
  background-color: #8FC31F;
}
.arc-cat span.daihyou {
  background-color: #003F88;
}
.arc-cat span.gikai-date {
  background-color: #FCAE00;
}
.arc-cat span.info {
  background-color: #824a8a;
}

.text-sp {
  padding-top: 1%;
  padding-bottom: 6%;
}
.text-sp .tit-p {
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
  color: #003F88;
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 1%;
}
@media (max-width: 880px) {
  .text-sp {
    padding-bottom: 4%;
  }
}

.more-btn-box {
  width: 100%;
  text-align: right;
  margin-top: auto;
}
.more-btn-box a {
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(45deg, #3bbd2a 0%, #b5e448 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 0;
  position: relative;
}
.more-btn-box a::before {
  background: #003F88;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.3s ease-out;
  width: 100%;
  border-radius: 50%;
}
.more-btn-box a i {
  line-height: 1;
  font-size: 1.5em;
  vertical-align: sub;
  color: white;
  z-index: 2;
}

.m-pagenation {
  width: 100%;
  margin-top: 9%;
}
@media (max-width: 560px) {
  .m-pagenation {
    margin-top: 6%;
    margin-bottom: 6%;
  }
}

.m-pagenation__body {
  display: flex;
  justify-content: center;
}
.m-pagenation__body li {
  margin: 0 5px;
  font-weight: 500;
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
  transition-property: color;
  width: 34px;
  height: 34px;
  position: relative;
  line-height: 1.2;
  transition: all 0.3s ease;
  border-radius: 50%;
  border: 1px solid #003F88;
}
.m-pagenation__body li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  color: #003F88;
  pointer-events: auto;
  background-color: white;
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
}
.m-pagenation__body li a:hover {
  color: white;
  background-color: #003F88;
}
.m-pagenation__body li.-current {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #9a9a9a;
  border: 1px solid #9a9a9a;
}
.m-pagenation__body li.notNumbering {
  border: none;
  pointer-events: none;
}
.m-pagenation__body svg.pager-svg {
  fill: currentColor;
}

.m-pagenation__result {
  text-align: center;
  margin-top: 5px;
  font-size: 12px;
}

aside#sidebar {
  width: 24%;
  font-size: 16px;
  color: #003F88;
}
@media (max-width: 880px) {
  aside#sidebar {
    width: 100%;
  }
}
@media (max-width: 560px) {
  aside#sidebar {
    width: 95%;
    margin: 0 auto;
    margin-top: 9%;
  }
}

.sidebar-wrapper {
  margin-bottom: 20%;
}
@media (max-width: 880px) {
  .sidebar-wrapper {
    margin-bottom: 6%;
  }
}

.sidebar-title {
  background: #003F88;
  color: white;
  padding: 3px 10px 1px;
  position: relative;
  width: 90%;
  z-index: 2;
}
.sidebar-title:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  left: 22px;
  top: 0%;
  transform: skewX(-36deg);
  transform-origin: 100% 0;
  background: #003F88;
  z-index: -1;
}
@media (max-width: 560px) {
  .sidebar-title:after {
    transform: skewX(-31deg);
  }
}

.sidebar-wrapper {
  margin-bottom: 6%;
  margin-top: 9%;
}

/*
 * カテゴリー
 */
.side-item-list li a {
  color: #383838;
}
.side-item-list li a:hover {
  color: #8FC31F;
}

.year-archive-inner {
  position: relative;
  overflow: hidden;
  margin-top: 2%;
  font-size: 15px;
}

.grad-trigger.is-show + .year-archive-inner {
  /*バーの太さ*/
  /*バーの色*/
}
.grad-trigger.is-show + .year-archive-inner::-webkit-scrollbar {
  width: 6px;
}
.grad-trigger.is-show + .year-archive-inner::-webkit-scrollbar-thumb {
  background: rgba(65, 174, 214, 0.64);
  border-radius: 30px;
}

p.year-current {
  position: relative;
  cursor: pointer;
  padding: 2px 11px;
  transition: 0.2s ease;
}
p.year-current::before {
  background: url(../images/plus.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  height: 12px;
  content: "";
  margin-right: 6px;
  display: inline-block;
  color: #003F88;
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.3, 0.9), -webkit-transform 0.3s cubic-bezier(0.7, 0.3, 0.3, 0.9);
}
p.year-current:hover {
  color: #8FC31F;
}

/* 開いたときのアイコン*/
p.year-current.on::before {
  content: "";
  width: 12px;
  height: 3px;
  margin-bottom: 5px;
  background: #003F88;
  transform: rotate(180deg);
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.3, 0.9), -webkit-transform 0.3s cubic-bezier(0.7, 0.3, 0.3, 0.9);
}

.sidemenu-year-all {
  display: none;
}
.sidemenu-year-all a {
  padding: 6px 23px;
  display: block;
  position: relative;
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
}
.sidemenu-year-all a::after {
  content: "";
  background: url(../images/chevron-right-b.svg);
  width: 14px;
  height: 14px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  bottom: 10px;
  left: 87px;
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
}
.sidemenu-year-all:hover a {
  color: #003F88;
}
.sidemenu-year-all:hover a::after {
  background: url(../images/chevron-right-b-h.svg);
  background-repeat: no-repeat;
  background-position: center right;
  width: 18px;
}

.tag-inner {
  margin-top: 2%;
  font-weight: 500;
}
.tag-inner a {
  display: block;
  padding: 3px 9px;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  font-size: 15px;
}
.tag-inner a:hover {
  color: #8FC31F;
}

/*# sourceMappingURL=archive.css.map */
