
/* =================== */
/* ニュース */
/* =================== */
.news {
  padding-block: 9rem 27.22vw;
  position: relative;
  overflow: hidden;
  z-index: var(--indexMostTopText);

  .animationLine-svg {
    z-index: -1;
  }
}

.news__container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;

}
.news__contents {
  flex: 0 0 10rem;
}
.news__categories {
  flex: 0 0 8rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.news__categories-button {
  border: none;
  background-color: inherit;
  display: inline-block;
  width: fit-content;
  position: relative;
  transition: all .3s;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
  padding: 1em;
}
.news__categories-button::before {
  content: "";
  background-color: #A6A6A6;
  width: 0.3125rem;
  height: 0.3125rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: all .3s;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.news__categories-button.is-active {
  color: var(--textRed);
  &::before {
    background-color: var(--textRed);
    width: 0.375rem;
    height: 0.375rem;
  }
}
@media (hover:hover) {
  .news__categories-button:hover {
    color: var(--textRed);
    cursor: pointer;
    padding-inline: 1.2rem 0.8rem;
  }
  .news__categories-button:hover::before {
    background-color: var(--textRed);
    width: 0.375rem;
    height: 0.375rem;
  }
  .news__categories-button.is-active:hover {
    padding-inline: 1rem;
  }
}
.news__categories-button:focus-visible {
  color: var(--textRed);
  cursor: pointer;
}
.news__categories-button:focus-visible::before {
  background-color: var(--textRed);
  width: 0.375rem;
  height: 0.375rem;
}

.news__lists {
  flex: 0 1 74.53125%;
  margin-top: 0.8rem;
}
.news__lists ul {
  margin-bottom: 2rem;
}
.newsList {
  border-bottom: 1px solid #eee;
  position: relative;
}
.newsList::after {
  content: "";
  background: url(../../images/common/icon_button-blue-_arrow-right.svg) no-repeat center center / contain;
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 0;
  bottom: 2.5rem;
  opacity: 0;
  transition: opacity .3s;
}
.newsList__link {
  display: block;
  padding-block: 1.9rem;
}
.newsList__time {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 2rem;
  display: inline-block;
  width: fit-content;
  color: #A6A6A6;
  font-family: var(--familyPoppins);
}
.newsList__tag {
  display: inline-block;
  width: fit-content;
  margin-left: 0.5rem;
  border-radius: 2px;
  background-color: #eee;
  color: #A6A6A6;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.4em 1.2em;
}
.newsList__title {
  /* margin-top: 0.5rem; */
  font-weight: 400;
  line-height: 2;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media (hover:hover) {
  .newsList:hover::after {
    opacity: 1;
  }
  .newsList:hover .newsList__title {
    padding-right: 3.5rem;
  }
}
.newsList:focus-visible::after {
  opacity: 1;
}
.newsList:focus-visible .newsList__title {
  padding-right: 3.5rem;
}

.news__button {
  margin-top: 6rem;
  text-align: right;
}

/* 年選択 */
.yearSelect__frame {
  border-top: 1px solid #E7E7E7;
  padding-top: 1rem;
}

/* 共通アコーディオン調整 */
.faq__heading {
  padding: 0;
  display: block;
  width: 100%;
  border: none;
  border-radius: 6px;
  background-color: inherit;
  font-family: var(--familyNotoSans);
}

.faqList__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0;

  p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 2;
  }
}
.product .faqList__head {
  padding: 1.5rem 2rem;
}

.faqList__question {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  width: 100%;
  text-align: left;
}
.faqList__icon-block {
  display: grid;
  place-content: center;
}

.faqList__icon {
  width: 1.1875rem;
  height: 1.1875rem;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid var(--linkBlue);
  background-color: var(--linkBlue);
  position: relative;
  aspect-ratio: 1 / 1;
}

.faqList__icon::before {
  content: "";
  background-color: var(--colorWhite);
  border-radius: 100px;
  width: 0.4375rem;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faqList__icon::after {
  content: "";
  background-color: var(--colorWhite);
  border-radius: 100px;
  height: 0.4375rem;
  width: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform .3s;
}

.js-accordItem.open .faqList__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__answer {
  padding: 1rem 0 0 0;
}
.js-accordHeading {
  cursor: pointer;
}

.js-accordBody {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.yearSelect__list {
  width: 100%;
}
.yearSelect__link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2rem;
  padding-inline: 0.857143em;
  transition: all .3s;
  width: 100%;
}
@media (hover:hover) {
  a.yearSelect__link:hover {
    background-color: #eee;
    opacity: 0.7;
  }
}
a.yearSelect__link:focus-visible {
  opacity: 0.7;
}

.news__bg {
  position: absolute;
  bottom: -10vw;
  left: 0;
  width: 100%;
  z-index: -2;

  .news__bg-line-1 {
    position: absolute;
    bottom: 0vw;
    left: -4vw;
    width: 104%;
    z-index: var(--indexLine);
  }
  .news__bg-line-2 {
    position: absolute;
    bottom: -5vw;
    left: 0;
    width: 104%;
    z-index: var(--indexLine);
  }
  .news__ring {
    position: absolute;
    img {
      width: 100%;
    }
  }
  .item-1-bottom {
    width: 10.34583vw;
    bottom: -8vw;
    left: 12.5vw;
    z-index: var(--indexRingBottom);
  }
  .item-1-top {
    width: 10.524305vw;
    bottom: -8vw;
    left: 12.5vw;
    z-index: var(--indexRingTop);
  }
}
@media screen and (max-width: 1180px) {
  .news__bg {
    .news__bg-line-1 {
      bottom: -8vw;
    }
    .news__bg-line-2 {
      bottom: -8vw;
    }
  }
}

@media screen and (max-width: 768px) {
  .news {
    padding-block: 4.5rem 56vw;
  }
  .news__contents {
    flex: auto;
  }
  .news__container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .news__categories {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    flex: auto;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .news__categories-button {
    padding: 0 0 0 0.8125rem;
  }
  .yearSelect__frame {
    background-color: #f7f7f7;
    border-top: none;
    padding-top: 0;
    border-radius: 8px;
  }
  .faq__heading {
    padding: 0.75rem 1rem;
  }
  .faq__answer {
    padding: 0 0.75rem 1rem 0.75rem;
  }
  .faqList__icon {
    height: 2rem;
    width: 2rem;
  }
  .faqList__icon::before {
    height: 0.15rem;
    width: 0.62rem;
  }
  .faqList__icon::after {
    height: 0.62rem;
    width: 0.15rem;
  }
  .newsList__link {
    padding-block: 1.25rem;
  }

  .news__lists {
    margin-top: 0;
  }
  .newsList__time {
    font-size: 0.75rem;
    line-height: 266.667%;
  }
  .newsList__title {
    margin-top: 0.025rem;
    line-height: 171.429%;
    -webkit-line-clamp: 3;
  }
  .news__button {
    margin-top: 2rem;
  }

  .yearSelect__link,
  .faqList__head p {
    font-weight: 500;
  }
}