/**
 * News
 */
#news {
  --news-blue: #0173b8;
  --news-blue-2: #d9eff6;
  --news-red: #c40a00;
  --news-gray: #666;
}
#news .title-area {
  margin: 0;
}
#news .content-box-inner {
  max-width: none;
}
#news .pagenation_block {
  margin: auto;
}
#news .cat-title {
  display: inline-flex;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: normal;
  padding: 4px 16px;
  margin: 0;
  background-color: var(--fuji-po-blue-1);
  border-radius: 7px;
}
#news .news-heading {
  display: flex;
  align-items: center;
}
#news .news-heading .cat-title {
  margin-left: 1.25em;
}
#news .news-contents {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 30px;
  margin: 40px auto 100px;
}
#news .news-side {
  flex-basis: 230px;
  margin: 0 auto;
}
#news .news-body {
  flex: 1;
}
#news .news-body .cat-title {
  display: none;
}
#news .news-nav {
  position: sticky;
  top: 115px;
  background-color: #fff;
  border-radius: 15px;
  padding: 5px 0;
  filter: drop-shadow(6px 6px 4px rgba(0, 0, 0, 0.1));
}
#news .news-nav .heading {
  display: flex;
  justify-content: center;
  color: var(--fuji-po-blue-1);
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin: 0;
  padding: 20px;
}
#news .news-nav .heading-arrow {
  display: none;
  fill: var(--fuji-po-blue-1);
}
#news .news-nav ul {
  list-style: none;
  margin: 0 15px 25px;
}
#news .news-nav ul li:not(:first-child) {
  margin-top: 10px;
}
#news .news-nav ul li a {
  display: block;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.3;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.2s;
}
#news .news-nav ul li a:hover {
  background-color: #f5f5f5;
}
#news .news-nav ul .current a,
#news .news-nav ul .current a:hover {
  color: var(--fuji-po-blue-1);
  font-weight: bold;
  background-color: var(--news-blue-2);
  border-color: var(--news-blue-2);
}
#news .news-box {
  padding: 0;
}
#news .news-box .news-link {
  padding: 30px 10px;
}
#news .news-box .news-link:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
#news .news-box .news-link:hover .news-arrow {
  fill: var(--news-red);
}
#news .news-box .news-day {
  flex: 0 1 15%;
}
#news .news-box .news-category-area {
  flex: 0 1 19%;
}
#news .news-box .news-title {
  flex: 0 1 auto;
  line-height: 1.3;
}
#news .news-box .news-arrow {
  flex: 0 1 9px;
  width: 9px;
  height: 18px;
  fill: var(--news-gray);
  transition: all 0.3s;
}
#news .accordion-nav-toggle {
  display: none;
}
#news .accordion-nav-button {
  display: block;
  text-align: center;
  margin: 0;
}
#news .pagination-container {
  margin: 25px auto 0;
}
#news .pagination-container .pagination {
  gap: 8px;
  margin: 0;
}
#news .pagination-container .pagination li {
  border-radius: 0;
  transition: 0.2s;
}
#news .pagination-container .pagination li:hover {
  opacity: 0.7;
}
#news .pagination-container .pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  max-width: 44px;
  max-height: 44px;
  padding: 0;
  margin: 0;
  border-right: 0;
  border-radius: 10px;
}
#news .pagination-container .pagination .navi-active {
  pointer-events: none;
}
#news .pagination-container .pagination .disabled {
  display: none;
}
#news .no-result {
  margin: 50px auto;
}
#news .no-result p {
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: center;
}
#news .no-result + .news-box-area {
  display: none;
}
@media (max-width: 767px) {
  #news .news-heading .cat-title {
    display: none;
  }
  #news .news-contents {
    gap: 40px;
    flex-direction: column-reverse;
    margin: 30px auto;
  }
  #news .news-side {
    flex-basis: 100%;
    width: 100%;
    max-width: 360px;
  }
  #news .news-body .cat-title {
    display: inline-flex;
    margin-bottom: 15px;
  }
  #news .news-nav {
    position: relative;
    top: 0;
    padding: 0;
    border-radius: 10px;
  }
  #news .news-nav .heading {
    padding: 20px;
  }
  #news .news-nav .heading-arrow {
    display: block;
  }
  #news .news-nav ul {
    margin: 0 20px 25px;
  }
  #news .news-box {
    padding: 0;
  }
  #news .news-box .news-link {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.3s;
  }
  #news .news-box .news-day {
    flex: 0 1 26%;
  }
  #news .news-box .news-category-area {
    flex: 0 1 auto;
    display: flex;
  }
  #news .news-box .news-category {
    width: 47%;
  }
  #news .news-box .news-title {
    padding-left: 0;
    margin-top: 15px;
  }
  #news .accordion-nav-button {
    cursor: pointer;
  }
  #news .accordion-nav-contents {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s;
  }
  #news .accordion-nav .accordion-nav-arrow {
    position: relative;
    width: 10px;
    height: 20px;
    margin-left: 20px;
    transform: rotate(90deg) scale(1, 1);
    transition: transform 0.3s;
  }
  #news .accordion-nav-toggle:checked ~ .accordion-nav-container > .accordion-nav-button .accordion-nav-arrow {
    transform: rotate(90deg) scale(-1, 1);
  }
  #news .accordion-nav-toggle:checked ~ .accordion-nav-container > .accordion-nav-contents {
    max-height: 50vh;
    opacity: 1;
  }
  #news .pagination-container .pagination li a {
    width: 10vw;
    height: 10vw;
  }
}