/*---------------------------------------

	コラム一覧 ページネーション

----------------------------------------*/

.column-pagination {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 auto 4.5rem;
}

.column-pagination a:hover {
  opacity: 0.8;
}

.column-pagination .prev,
.column-pagination .next {
  height: 2.25rem;
  margin: 0 0.5rem;
  overflow: hidden;
  position: relative;
  text-indent: -9999rem;
  width: 2.25rem;
}

.column-pagination .prev::before,
.column-pagination .next::before {
  content: "";
  height: 0.625rem;
  position: absolute;
  top: calc(50% - 1px);
  width: 0.625rem;
}

.column-pagination .prev::before {
  border-bottom: 2px solid #1c1917;
  border-left: 2px solid #1c1917;
  left: 50%;
  transform: rotate(45deg) translate(-50%);
}

.column-pagination .next::before {
  border-right: 2px solid #1c1917;
  border-top: 2px solid #1c1917;
  left: calc(50% - 4px);
  transform: rotate(45deg) translate(-50%);
}

.column-pagination .disabled {
  opacity: 0.5;
  pointer-events: none;
}

.column-page-numbers .number {
  background: #f3f5f5;
  display: inline-block;
  font-size: 1rem;
  margin: 0 0.25rem;
  padding: 0.25rem 0;
  text-align: center;
  width: 2.25rem;
}

.column-page-numbers .active {
  background: #292524;
  color: #fff;
  pointer-events: none;
}

/*---------------------------------------

	TOP セミナー告知バナー

----------------------------------------*/

.seminar-banner {
  width: 100%;
}

.seminar-banner > a {
  box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.25);
}

@media (min-width: 576px) {
  .seminar-banner {
    padding-top: 1.5rem;
    width: 30.5rem;
  }
}

@media (max-width: 575px) {
  .seminar-banner {
    margin-top: 8rem;
    padding-right: 1.5rem;
  }
}

/*---------------------------------------

	TOP セミナー告知エリア

----------------------------------------*/

.announcement {
  column-gap: 1.5rem;
  padding: 1.5rem;
}

.announcement + .announcement {
  border-top: 1px solid #a8a29e;
}

.announcement .announcement-image {
  max-width: 100%;
}

.announcement .announcement-inner {
  flex: 1;
}

.announcement .announcement-head {
  column-gap: 0.5rem;
  color: #105488;
}

.announcement .announcement-head .badge {
  background-color: #105488;
  border: none;
  border-radius: 0.25rem;
  color: #fff;
  width: 100px;
}

.announcement .announcement-inner .date {
  color: #105488;
  column-gap: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.announcement .announcement-inner .announcement-title {
  margin-bottom: 0.5rem;
}

/* カルーセル時のパーツ */

.calousel-arrow {
  color: #a8a29e;
  font-size: 2.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.calousel-dots {
  bottom: 2rem;
  column-gap: 0.5rem;
  left: 50%;
  margin-top: 2rem;
  position: absolute;
  transform: translateX(-50%);
}

.calousel-dots li {
  border: 1px solid #a8a29e;
  border-radius: 6px;
  height: 12px;
  width: 12px;
}

.calousel-dots li.current {
  background-color: #105488;
  border: none;
}

@media (min-width: 1200px) {
  .announcement-area {
    padding: 4rem 0;
  }
}

@media (min-width: 768px) {
  .announcement:hover {
    background-color: #f3f3f3;
  }

  .announcement .announcement-image {
    max-width: 15rem;
  }

  .announcement .announcement-inner .date {
    font-size: 1.25rem;
  }

  .announcement .announcement-inner .announcement-title {
    font-size: 1.25rem;
  }

  .announcement .announcement-link {
    bottom: 1.5rem;
    position: absolute;
    right: 1.5rem;
  }

  .calousel-arrow {
    font-size: 2rem;
  }

  .calousel-arrow.prev {
    left: -3rem;
  }

  .calousel-arrow.next {
    right: -3rem;
  }
}

@media (max-width: 767px) {
  .announcement {
    flex-direction: column;
    row-gap: 1rem;
  }

  .announcement .announcement-inner .announcement-title,
  .announcement .announcement-detail {
    display: none;
  }

  /* カルーセル時のパーツ */

  .calousel-arrow.prev {
    left: 0;
  }

  .calousel-arrow.next {
    right: 0;
  }
}

/*---------------------------------------

	TOP お知らせ

----------------------------------------*/
@media (min-width: 768px) {
  .p-news__list--item .text {
    flex: 1;
  }
}

/*---------------------------------------

	カスタマイズ用

----------------------------------------*/

a:hover img {
  opacity: 0.8;
  transition: 0.3s ease-out;
}

.mt-5 {
  margin-top: calc(1rem * 5);
}

.mt-4 {
  margin-top: calc(1rem * 4);
}

.mt-3 {
  margin-top: calc(1rem * 3);
}

.max-w-full {
  max-width: 100%;
}
