@charset "UTF-8";
.information__link {
  color: #bf0a28;
  text-decoration: none;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: 500;
}
.information__link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.information__link::before {
  content: "→";
  display: inline-block;
  margin-left: 0.5rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.information__link:hover {
  color: #ffffff;
}
.information__link:hover::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.information__link:hover::before {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.information-category {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.4rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .information-category {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 3.2rem;
    margin-bottom: 3.2rem;
  }
}
.information-category__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .information-category__col {
    gap: 1.6rem;
  }
}
.information-category__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  padding: 3.2rem 3.6rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media screen and (max-width: 1024px) {
  .information-category__item {
    padding: 2.4rem 2.4rem;
  }
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .information-category__item {
    padding: 2rem 2rem;
  }
}
.information-category__label {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .information-category__label {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .information-category__label {
    font-size: 2rem;
  }
}
.information-category__desc {
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .information-category__desc {
    font-size: 1.3rem;
  }
}
.information-category__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .information-category__button {
    gap: 1.5rem;
  }
}
.information-category__button-icon {
  position: relative;
  overflow: hidden;
  width: 5.6rem;
  height: 5.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #707070;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .information-category__button-icon {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.information-category__button-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #bf0a28;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.information-category__button-icon img {
  position: relative;
  z-index: 1;
  width: 1.6rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .information-category__button-icon img {
    width: 1.3rem;
  }
}
.information-category__button-text {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  color: #ffffff;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .information-category__button-text {
    font-size: 1.3rem;
  }
}
.information-category__button:hover .information-category__button-icon::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.information-category__button:hover .information-category__button-icon img {
  -webkit-animation: info-arrow-slide 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
          animation: info-arrow-slide 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
}

@-webkit-keyframes info-arrow-slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  38% {
    -webkit-transform: translateX(220%);
            transform: translateX(220%);
    opacity: 0;
  }
  39% {
    -webkit-transform: translateX(-220%);
            transform: translateX(-220%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes info-arrow-slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  38% {
    -webkit-transform: translateX(220%);
            transform: translateX(220%);
    opacity: 0;
  }
  39% {
    -webkit-transform: translateX(-220%);
            transform: translateX(-220%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.information-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.information-list .information-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .information-list .information-card {
    gap: 1.6rem;
    padding: 1.6rem 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.information-list .information-card:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.information-list .information-card:hover {
  opacity: 0.75;
}
.information-list .information-card:hover .information-card__more-arrow {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.information-list .information-card__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22rem;
          flex: 0 0 22rem;
  width: 22rem;
  height: auto;
  aspect-ratio: 2/1;
  overflow: hidden;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .information-list .information-card__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 9rem;
            flex: 0 0 9rem;
    width: 9rem;
    height: 6rem;
  }
}
.information-list .information-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.information-list .information-card__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.information-list .information-card__category-label {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  min-width: 7rem;
  text-align: center;
  font-size: 1.3rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .information-list .information-card__category-label {
    font-size: 1.1rem;
    min-width: 5rem;
    line-height: 1.3;
  }
}
.information-list .information-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.information-list .information-card__content .text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0.4rem 0;
}
.information-list .information-card__content .heading03 {
  font-size: 1.5rem;
  line-height: 1.7333333333;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 0;
  margin-bottom: 0;
}
.information-list .information-card__content .heading03::before {
  display: none;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .information-list .information-card__content .heading03 {
    font-size: 1.3rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.information-list .information-card__more {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .information-list .information-card__more {
    display: none;
  }
}
.information-list .information-card__more-arrow {
  font-size: 2rem;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.information-list .information-card__more-arrow {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer {
  position: relative;
  z-index: 3;
}

.pagePagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 5rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .pagePagination {
    margin-top: 3.2rem;
    gap: 0.6rem;
  }
}
.pagePagination .page-numbers {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 3.6rem;
  height: 3.6rem;
  padding: 0 1rem;
  font-size: 1.5rem;
  font-family: "Cinzel", serif;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid transparent;
  overflow: hidden;
  -webkit-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .pagePagination .page-numbers {
    min-width: 3rem;
    height: 3rem;
    font-size: 1.4rem;
  }
}
.pagePagination .page-numbers::before {
  content: "";
  position: absolute;
  top: -5%;
  left: 0;
  width: 120%;
  height: 110%;
  background: #bf0a28;
  -webkit-transform: translateX(-115%) skewX(-8deg);
          transform: translateX(-115%) skewX(-8deg);
  -webkit-transition: -webkit-transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.pagePagination .page-numbers:hover {
  color: #ffffff;
  border-color: transparent;
}
.pagePagination .page-numbers:hover::before {
  -webkit-transform: translateX(-8%) skewX(-8deg);
          transform: translateX(-8%) skewX(-8deg);
}
.pagePagination .page-numbers.current {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  pointer-events: none;
}
.pagePagination .page-numbers.current::before {
  display: none;
}
.pagePagination .page-numbers.dots {
  pointer-events: none;
  color: rgba(255, 255, 255, 0.35);
}
.pagePagination .page-numbers.dots::before {
  display: none;
}
.pagePagination .prev,
.pagePagination .next {
  min-width: 3.6rem;
  height: 3.6rem;
  padding: 0;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .pagePagination .prev,
  .pagePagination .next {
    min-width: 3rem;
    height: 3rem;
  }
}
.pagePagination .prev::after,
.pagePagination .next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.pagePagination .prev::after {
  -webkit-transform: translate(-30%, -50%) rotate(-135deg);
          transform: translate(-30%, -50%) rotate(-135deg);
}
.pagePagination .next::after {
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
          transform: translate(-70%, -50%) rotate(45deg);
}
/*# sourceMappingURL=information.css.map */