/* ------------------------------------------------------------
// Information
------------------------------------------------------------ */
.content-ttl-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  background: url(../images/information/content-ttl-img.png) no-repeat center center/cover;
}
.content-ttl-img h2 {
  font-size: 128px;
  color: #2aa8da;
  line-height: 1;
  text-shadow: 1px 1px 0 #ffffff, -1px 1px 0 #ffffff, 1px -1px 0 #ffffff, -1px -1px 0 #ffffff;
  padding: 0 20px;
}
.content-ttl-img h2 span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #204483;
  text-align: center;
  width: 100%;
}
@media print, screen and (max-width: 767px) {
  .content-ttl-img {
    width: 100%;
    height: 150px;
  }
  .content-ttl-img h2 {
    font-size: 100px;
  }
  .content-ttl-img h2 span {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .content-ttl-img {
    height: 150px;
  }
  .content-ttl-img h2 {
    font-size: 50px;
  }
  .content-ttl-img h2 span {
    font-size: 16px;
  }
}

.category-select-box {
  margin-bottom: 150px;
}
.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.cat-other {
  background: #cccccc;
}
.category-select-box ul li a.cat-all {
  background: #ff9600;
}
.category-select-box ul li a.cat-tennis {
  background: #ffcc00;
}
.category-select-box ul li a.cat-futsal {
  background: #2aa8da;
}
.category-select-box ul li a.cat-drone {
  background: #11e8a7;
}
.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 screen and (max-width: 991px) {
  .category-select-box ul li {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .category-select-box ul li {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 575px) {
  .category-select-box {
    margin-bottom: 100px;
  }
  .category-select-box ul {
    flex-direction: column;
  }
  .category-select-box ul li {
    width: 100%;
  }
}

.info-list li {
  position: relative;
  padding-left: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ececec;
}
.info-list li:not(:last-child) {
  margin-bottom: 30px;
}
.info-list li .new {
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 14px;
}
.info-list li .date {
  display: flex;
  gap: 1em;
  margin-bottom: 30px;
}
.info-list li .date .cat-other,
.info-list li .date .cat-all,
.info-list li .date .cat-tennis,
.info-list li .date .cat-futsal,
.info-list li .date .cat-drone {
  display: inline-flex;
  padding: 0 1em 1px;
}
.info-list li .date .cat-other {
  background: #cccccc;
}
.info-list li .date .cat-all {
  background: #ff9600;
}
.info-list li .date .cat-tennis {
  background: #ffcc00;
}
.info-list li .date .cat-futsal {
  background: #2aa8da;
}
.info-list li .date .cat-drone {
  background: #11e8a7;
}
.info-list li .txt {
  position: relative;
  padding-right: 100px;
}
.info-list li .txt a {
  transition: 0.3s;
}
.info-list li .txt a.arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #333333;
  border-radius: 50%;
  transition: 0.3s;
}
.info-list li .txt a.arrow i {
  font-size: 22px;
  color: #ffffff;
}
.info-list li .txt a.arrow:hover {
  color: #ffffff;
  background: #2aa8da;
}
.info-list li .txt a.arrow:hover i {
  color: #ffffff;
}
@media screen and (max-width: 575px) {
  .info-list li {
    padding-left: 0;
    padding-bottom: 30px;
  }
  .info-list li .date {
    padding-left: 50px;
  }
  .info-list li .date .cat-tennis,
  .info-list li .date .cat-futsal,
  .info-list li .date .cat-drone {
    font-size: 15px;
    padding: 0 0.5em 1px;
  }
  .info-list li .txt {
    padding-right: 70px;
  }
  .info-list li .txt a.arrow {
    width: 40px;
    height: 40px;
  }
  .info-list li .txt a.arrow i {
    font-size: 20px;
  }
}

.paging {
  text-align: center;
  margin-top: 50px;
}

/* ------------------------------------------------------------
// Information Enty
------------------------------------------------------------ */
.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: #ffffff;
  border: 1px dashed #cccccc;
}
.information-entry-box .box .pdf-link-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  margin: 50px 0 100px;
}
.information-entry-box .box .pdf-link-list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #ffffff;
  line-height: 1.3;
  padding: 10px 15px;
  background: #434343;
  border-radius: 3px;
  transition: 0.3s;
}
.information-entry-box .box .pdf-link-list li a i {
  color: #ffffff;
}
.information-entry-box .box .pdf-link-list li a:hover {
  background: #c80000;
}
@media screen and (max-width: 767px) {
  .information-entry-box .box {
    padding: 0 10px;
  }
}

.info-btn {
  display: flex;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .info-btn {
    flex-direction: column;
    gap: 10px;
  }
}

.slider-wrap .slick-initialized .slick-slide {
  border: 4px solid #cccccc;
}
.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 #ffffff;
  cursor: pointer;
}
.slider-wrap .thumbnail .slick-slide.slick-current {
  border-color: #2aa8da;
}
@media screen and (max-width: 767px) {
  .slider-wrap .thumbnail .slick-slide {
    padding: 2px;
    border: 1px solid #ffffff;
  }
}
.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: #2aa8da;
  color: #fff;
}
@media 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;
  }
}