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

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

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

/*
 * トランジション
 */
.arc-main-tit {
  position: relative;
  text-align: center;
  z-index: 1;
  padding-top: 4%;
  padding-top: 8%;
  padding-bottom: 10%;
  margin-right: 11%;
  text-align: end;
}
.arc-main-tit h2 {
  display: inline-block;
  color: #00AEBB;
}
.arc-main-tit h2 .ri-seedling-line {
  color: #CCE9EB;
}
.arc-main-tit span {
  color: #CCE9EB;
  display: block;
  margin-left: 1%;
  line-height: 1;
}
.arc-main-tit h2 {
  color: white;
}
.arc-main-tit span {
  display: inline-block;
}

.archive_box {
  width: 76%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: space-around;
}
@media (max-width: 820px) {
  .archive_box {
    width: 100%;
    padding-bottom: 3%;
    border-bottom: 2px solid #CCE9EB;
    margin-bottom: 6%;
  }
}

.arc-list {
  width: 33%;
  margin-bottom: 3%;
  pointer-events: none;
  position: relative;
  max-width: 274px;
}
@media (max-width: 820px) {
  .arc-list {
    margin-bottom: 4%;
    width: 30%;
  }
}
@media (max-width: 560px) {
  .arc-list {
    width: 95%;
  }
  .arc-list:after {
    transform: none;
    width: 99%;
  }
}

.arc-list:hover .tit-p {
  color: #00AEBB;
}
.arc-list:hover .list_img_box img {
  transform: scale(1.05);
}
.arc-list:hover .more-btn-box i {
  transform: translateX(5px);
}
.arc-list:hover .more-btn-box::before {
  border-radius: 50% 50% 0 0/0 0 0 0;
  transition: transform 0.48s cubic-bezier(0.165, 0.84, 0.44, 1), border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 20ms;
  transform: scale(1, 1);
}

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;
}

.list_box {
  display: flex;
  padding: 5% 7%;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
  transition-property: transform;
}
@media (max-width: 820px) {
  .list_box {
    padding: 5% 4%;
  }
}
@media (max-width: 560px) {
  .list_box {
    padding: 7%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.arc-image-box {
  display: flex;
  flex-wrap: wrap;
}

.list_img_box {
  width: 100%;
  overflow: hidden;
  border: 1px solid #00AEBB;
}
.list_img_box img {
  max-width: 257px;
  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 {
  width: 100%;
  max-width: 420px;
  margin-top: 7%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 560px) {
  .arc-text-box {
    margin-top: 0;
    margin-left: 0;
  }
}

.more-btn-box {
  background: #CCE9EB;
  border-radius: 999px;
  box-sizing: border-box;
  color: #00AEBB;
  cursor: pointer;
  font-weight: 700;
  line-height: 24px;
  opacity: 1;
  outline: 0 solid transparent;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  word-break: break-word;
  position: relative;
  border: 0;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  text-align: center;
}
.more-btn-box a {
  z-index: 1;
  position: relative;
  padding: 14px 4em;
  display: inline-block;
}
.more-btn-box a i {
  display: inline-block;
  transition: 0.3s ease;
}
@media (max-width: 560px) {
  .more-btn-box a {
    padding: 12px 4em 10px;
  }
}
.more-btn-box span {
  vertical-align: text-bottom;
}
.more-btn-box::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #acdde0;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  transition: transform 0.48s cubic-bezier(0.895, 0.03, 0.685, 0.22), border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 40ms;
  transform: scale(1, 0);
  transform-origin: 50% 100%;
}
.more-btn-box:hover i {
  transform: translateX(5px);
}
.more-btn-box:hover::before {
  border-radius: 50% 50% 0 0/0 0 0 0;
  transition: transform 0.48s cubic-bezier(0.165, 0.84, 0.44, 1), border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 20ms;
  transform: scale(1, 1);
}
.more-btn-box a {
  padding: 9px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-btn-box a i {
  line-height: 1;
  font-size: 1.5em;
  vertical-align: sub;
}

.cat-day-box {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 3%;
}

p.archive-day {
  color: #AFAFAF;
  display: inline-block;
  vertical-align: middle;
}

.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;
  width: 34%;
}
.arc-cat::before {
  content: "";
  position: absolute;
  left: 0;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  border-top: 12px solid #00AEBB;
  border-right: 6px solid transparent;
  border-bottom: 12px solid #00AEBB;
  border-left: 0;
  border-radius: 3px;
  z-index: -1;
}
.arc-cat span {
  padding-right: 2px;
}

.text-sp {
  margin-bottom: 6px;
}
@media (max-width: 560px) {
  .text-sp {
    padding-top: 6%;
    text-align: center;
  }
}

p.tit-p {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
  transition: all 0.5s cubic-bezier(0.37, 0.16, 0.12, 1);
  transition-property: color;
}
@media (max-width: 560px) {
  p.tit-p {
    margin-top: 5px;
  }
}

.category-select {
  overflow: hidden;
  width: 63%;
  margin-left: 34%;
  margin-bottom: 2%;
  position: relative;
  border-bottom: 2px solid #00AEBB;
}
.category-select::before {
  position: absolute;
  top: 0.8em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #00AEBB;
  pointer-events: none;
}
@media (max-width: 820px) {
  .category-select {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 4%;
  }
}

/*カテゴリーページ*/
.category-select select {
  padding: 8px 38px 8px 8px;
  color: #00AEBB;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: #CCE9EB;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
}

.category-select select::-ms-expand {
  display: none;
}

.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;
  color: #383838;
  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%;
  background-color: #CCE9EB;
}
.m-pagenation__body li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  color: #00AEBB;
}
.m-pagenation__body li a:hover {
  opacity: 0.6;
}
.m-pagenation__body li.-current {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #00AEBB;
}
.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;
}

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