@charset "UTF-8";
/* ------------------------------------------------------------
// INFORMATION
------------------------------------------------------------ */
.content-ttl-img {
  display: flex;
  align-items: center;
  width: 100%;
  height: 300px;
  padding: 0 20px;
  background: url(../images/information/content-ttl-img.png) no-repeat center center/cover;
}
.content-ttl-img .content-ttl-box {
  display: inline-block;
}
.content-ttl-img .content-ttl-box .ttl-en {
  font-size: 60px;
  font-weight: 500;
  color: #ffffff;
}
.content-ttl-img .content-ttl-box .ttl-en::first-letter {
  font-size: 90px;
  font-weight: 700;
  color: #c7000a;
  padding-right: 2px;
}
.content-ttl-img .content-ttl-box .ttl-jp {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}
.content-ttl-img .content-ttl-box .ttl-jp::before {
  content: "";
  height: 2px;
  flex-grow: 1;
  background-color: #c7000a;
}
.content-ttl-img .content-ttl-box .ttl-jp::before {
  margin-right: 0.5em;
}
@media screen and (max-width: 575px) {
  .content-ttl-img {
    height: 140px;
  }
  .content-ttl-img .content-ttl-box {
    padding-bottom: 20px;
  }
  .content-ttl-img .content-ttl-box .ttl-en {
    font-size: 24px;
  }
  .content-ttl-img .content-ttl-box .ttl-en::first-letter {
    font-size: 36px;
  }
  .content-ttl-img .content-ttl-box .ttl-jp {
    font-size: 16px;
  }
}

.category-select-box {
  margin-bottom: 60px;
}
.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;
  background: #c7000a;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  z-index: 0;
}
.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 {
    margin-bottom: 40px;
  }
  .category-select-box ul li {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 575px) {
  .category-select-box ul {
    flex-direction: column;
  }
  .category-select-box ul li {
    width: 100%;
  }
}

.info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 120px;
}
.info-list li.entry-item {
  width: calc((100% - 40px) / 3);
  padding: 30px 20px 40px;
  border: 3px solid #111111;
}
.info-list li.entry-item .entry-ttl {
  margin-bottom: 30px;
  padding: 5px 5px 3px;
  border-left: 5px solid #c7000a;
  font-size: 20px;
  font-weight: 500;
  margin: 40px 0 20px;
}
.info-list li.entry-item .main-date {
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-list li.entry-item .main-date li {
  font-size: 14px;
  color: #999999;
}
.info-list li.entry-item .main-date li.category {
  font-size: 13px;
  color: #ffffff;
  padding: 1px 5px 0;
  background: #111111;
}
@media only screen and (max-width: 991px) {
  .info-list li.entry-item {
    width: calc((100% - 20px) / 2);
    padding: 30px 15px 40px;
  }
  .info-list li.entry-item .entry-ttl {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .info-list li.entry-item {
    width: 100%;
  }
  .info-list li.entry-item .entry-ttl {
    font-size: 18px;
  }
}

/* ------------------------------------------------------------
// Information Enty
------------------------------------------------------------ */
.information-entry-box .entry-ttl {
  margin-bottom: 30px;
  padding: 15px 10px;
  border-top: 3px solid #c7000a;
  border-bottom: 3px solid #c7000a;
}
.information-entry-box .entry-ttl h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.information-entry-box .entry-ttl .main-date {
  display: flex;
  align-items: center;
  gap: 10px;
}
.information-entry-box .entry-ttl .main-date li {
  font-size: 14px;
  color: #999999;
}
.information-entry-box .entry-ttl .main-date li.category {
  font-size: 13px;
  color: #ffffff;
  padding: 1px 5px 0;
  background: #111111;
}
@media only screen and (max-width: 767px) {
  .information-entry-box .entry-ttl h3 {
    font-size: 18px;
  }
}
.information-entry-box .box {
  padding: 0 40px;
}
.information-entry-box .box .entry-txt-box {
  max-width: 900px;
  margin: 40px auto 60px;
  padding: 40px;
  background: #ffffff;
  border: 1px dashed #cccccc;
}
@media screen and (max-width: 767px) {
  .information-entry-box .box {
    padding: 0 10px;
  }
}

.button-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.button-box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #111111;
  padding: 10px 60px;
  border: 1px solid #cccccc;
  transition: 0.3s;
}
.button-box a i {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #948a54;
}
.button-box a:hover {
  background: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 51, 128, 0.3);
}
.button-box a.return {
  position: relative;
  color: #ffffff;
  background: #cccccc;
  border: 1px solid #cccccc;
}
.button-box a.return i {
  position: absolute;
  top: 50%;
  right: auto;
  left: 15px;
  transform: translateY(-50%);
  color: #948a54;
}
.button-box a.return:hover {
  background: #111111;
}
@media screen and (max-width: 575px) {
  .button-box {
    flex-direction: column;
  }
  .button-box a {
    width: 240px;
    height: 44px;
    margin: 0 auto;
    border-radius: 22px;
  }
  .button-box a i {
    font-size: 12px;
    right: 15px;
  }
}
@media print, screen and (max-width: 767px) {
  .button-box button {
    height: 50px;
  }
}

.slider-wrap .slick-initialized .slick-slide {
  border: 2px 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;
  cursor: pointer;
}
.slider-wrap .thumbnail .slick-slide.slick-current {
  border-color: #c7000a;
}
@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: #c7000a;
  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;
  }
}

/* Slider Caption */
.slick-slide {
  position: relative; /* キャプションを配置するために必要 */
}

.slick-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* 黒の透過背景 */
  color: #fff; /* 白文字 */
  padding: 10px;
  box-sizing: border-box;
  font-size: 16px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .slick-caption {
    font-size: 14px;
    padding: 8px;
  }
}