/* ------------------------------------------------------------
// Information
------------------------------------------------------------ */
.ripples {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/index/ripples-img.png);
  background-size: cover;
  z-index: 1;
}

.category-select-box {
  padding: 40px;
  background: #fafafa;
  border-radius: 20px;
}
.category-select-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.category-select-box ul li {
  width: calc((100% - 30px) / 4);
}
.category-select-box ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  height: 40px;
  padding: 10px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  z-index: 0;
}
.category-select-box ul li a.category-gray {
  background: #cccccc;
}
.category-select-box ul li a.category-orange {
  background: #f29a01;
}
.category-select-box ul li a.category-blue {
  background: #0066ff;
}
.category-select-box ul li a.category-green {
  background: #85ed51;
}
.category-select-box ul li a.category-red {
  background: #d62828;
}
.category-select-box ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  z-index: 1;
  pointer-events: none;
  animation: none;
}
.category-select-box ul li a:hover {
  filter: brightness(0.9);
}
.category-select-box ul li a:hover::before {
  animation: slide-glow-left 1.2s forwards;
}
.category-select-box ul li a:not(:hover)::before {
  animation: slide-out-right 0.8s forwards;
}
@keyframes slide-glow-left {
  0% {
    left: -100%;
  }
  60% {
    left: 0%;
  }
  100% {
    left: 0%;
  }
}
@keyframes slide-out-right {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
@media print, screen and (max-width: 991px) {
  .category-select-box ul li {
    width: calc((100% - 20px) / 3);
  }
}
@media print, screen and (max-width: 767px) {
  .category-select-box {
    padding: 20px 10px;
    border-radius: 10px;
  }
  .category-select-box ul li {
    width: calc((100% - 10px) / 2);
  }
}

.information-box {
  margin: 0 auto;
  padding: 100px 40px 40px;
}
.information-box ul li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #434343;
}
.information-box ul li .date {
  width: 180px;
}
.information-box ul li .date .year {
  font-size: 18px;
  line-height: 1.4;
}
.information-box ul li .date .month-day {
  font-size: 48px;
  line-height: 1;
}
.information-box ul li .category {
  width: 160px;
  padding: 30px;
  border-right: 1px solid #d2d2d2;
  border-left: 1px solid #d2d2d2;
}
.information-box ul li .category span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.2;
  min-height: 27px;
  padding: 5px 10px 6px;
  background: #cccccc;
}
.information-box ul li .category span.category-gray {
  background: #cccccc;
}
.information-box ul li .category span.category-orange {
  background: #f29a01;
}
.information-box ul li .category span.category-blue {
  background: #0066ff;
}
.information-box ul li .category span.category-green {
  background: #85ed51;
}
.information-box ul li .category span.category-red {
  background: #d62828;
}
.information-box ul li .txt {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 18px;
  padding: 0 40px 0 80px;
}
.information-box ul li .txt .new {
  position: absolute;
  left: 40px;
  font-size: 10px;
  color: #d62828;
}
.information-box ul li .txt a {
  transition: 0.3s;
}
.information-box ul li .txt a:hover {
  color: #003380;
  text-decoration: underline;
}
.information-box ul li .arrow {
  width: 31px;
}
@media screen and (max-width: 767px) {
  .information-box ul li {
    position: relative;
    flex-direction: column;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #434343;
  }
  .information-box ul li .date {
    width: 100%;
  }
  .information-box ul li .date .year {
    font-size: 15px;
    line-height: 1.2;
  }
  .information-box ul li .date .month-day {
    font-size: 30px;
    line-height: 1;
  }
  .information-box ul li .category {
    position: absolute;
    top: 15px;
    right: 0;
    width: 100px;
    padding: 0;
    border-right: none;
    border-left: none;
  }
  .information-box ul li .category span {
    font-size: 11px;
    min-height: 24px;
    padding: 4px 10px 5px;
  }
  .information-box ul li .txt {
    font-size: 16px;
    width: 100%;
    margin-top: 40px;
    padding: 0;
  }
  .information-box ul li .txt .new {
    top: -15px;
    left: 0;
  }
  .information-box ul li .arrow {
    display: none;
  }
}

.information-entry-box .entry-ttl {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #434343;
}
.information-entry-box .entry-ttl .date {
  font-size: 18px;
  color: #cccccc;
  letter-spacing: 0.1em;
}
.information-entry-box .entry-ttl .txt {
  font-size: 24px;
  line-height: 1.3;
}
.information-entry-box .box {
  padding: 0 40px;
}
.information-entry-box .box .entry-txt-box {
  margin: 40px 0;
  padding: 40px;
  background: #fafafa;
}
.information-entry-box .box .pdf-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0;
}
.information-entry-box .box .pdf-link-list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  line-height: 1.3;
  padding: 10px 15px;
  background: #434343;
  border-radius: 3px;
}
.information-entry-box .box .pdf-link-list li a i {
  color: #ffffff;
}
@media print, screen and (max-width: 767px) {
  .information-entry-box .box {
    padding: 0 10px;
  }
}
.information-entry-box .link-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 100px;
}
.information-entry-box .link-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 100%;
  max-width: 300px;
  height: 80px;
  background: #0066ff;
  border: none;
  border-radius: 40px;
  transition: 0.3s;
}
.information-entry-box .link-box a:hover {
  color: #ffffff;
  background: #003380;
}
.information-entry-box .link-box a.index {
  color: #121212;
  background: #fafafa;
  border: 1px solid #cccccc;
}
.information-entry-box .link-box a.index:hover {
  background: #cccccc;
}
@media print, screen and (max-width: 767px) {
  .information-entry-box .link-box {
    gap: 10px;
    margin-top: 50px;
  }
  .information-entry-box .link-box a {
    font-size: 14px;
    height: 50px;
  }
}

.slider-wrap .slick,
.slider-wrap .thumbnail {
  max-width: 900px;
  margin: 0 auto;
}
.slider-wrap .thumbnail {
  margin: 10px auto 0;
}
.slider-wrap .thumbnail .slick-slide {
  margin: 0 3px;
  padding: 3px;
  border: 2px solid #eeeeee;
  cursor: pointer;
}
.slider-wrap .thumbnail .slick-slide.slick-current {
  border-color: #0066ff;
}
@media print, screen and (max-width: 767px) {
  .slider-wrap .thumbnail .slick-slide {
    padding: 2px;
    border: 1px solid #eeeeee;
  }
}
.slider-wrap .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 18px;
  color: #333;
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s;
}
.slider-wrap .arrow.prev {
  left: 0;
  border-radius: 0 10px 10px 0;
}
.slider-wrap .arrow.next {
  right: 0;
  border-radius: 10px 0 0 10px;
}
.slider-wrap .arrow:hover {
  background: #003380;
  color: #fff;
}
@media print, screen and (max-width: 767px) {
  .slider-wrap .arrow {
    font-size: 12px;
    padding: 4px 8px;
  }
  .slider-wrap .arrow.prev {
    left: -30px;
  }
  .slider-wrap .arrow.next {
    right: -30px;
  }
}