@charset "utf-8";
/* CSS Document */

/* --------------------------------------------------------
* news
* -------------------------------------------------------*/

@media screen and (min-width: 768px) {
  #main {
    width: 1080px;
    margin-inline: auto;
  }
}

.newsArea[v-cloak] {
  visibility: hidden;
}

.newsArea * {
  box-sizing: border-box;
  line-height: normal;
}

.newsArea .newsController {
  background: #edf4fa;
}
@media screen and (min-width: 768px) {
  .newsArea .newsController {
    padding: 30px 40px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 767px) {
  .newsArea .newsController {
    padding: 24px;
    border-radius: 4px;
  }
}

.newsArea .newsControllerBlock {
  display: flex;
}
@media screen and (min-width: 768px) {
  .newsArea .newsControllerBlock {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .newsArea .newsControllerBlock {
    flex-direction: column;
    gap: 14px;
  }
}

.newsArea .newsControllerLabel {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .newsArea .newsControllerLabel {
    width: 140px;
    font-weight: 500;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .newsArea .newsControllerLabel {
    font-size: 14px;
  }
}

.newsArea .newsControllerLabel::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: #d4220a;
  border-radius: 50%;
}

.newsArea .yearController {
  margin-bottom: 20px;
}

.newsArea .yearSelectWrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .newsArea .yearSelectWrap {
    width: 200px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .newsArea .yearSelectWrap {
    width: 180px;
    height: 46px;
  }
}

.newsArea .yearSelectWrap::after {
  content: '';
  position: absolute;
  content: url(../img/icon_bullet_news_down.svg);
  width: 20px;
  height: 20px;
  display: block;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.newsArea .yearSelectLabel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: white;
  pointer-events: none;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .newsArea .yearSelectLabel {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .newsArea .yearSelectLabel {
    font-size: 14px;
  }
}

.newsArea .yearSelect {
  appearance: none;
  border: none;
  border-radius: 999px;
  background: #fff;
  font-size: 16px;
  color: transparent;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.newsArea .yearSelect:focus {
  outline: none;
}

.newsArea .yearSelect::-ms-expand {
  display: none;
}

.newsArea .newsTypeController {
  position: relative;
}

.newsArea .newsTypeController .newsTab {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .newsArea .newsTypeController .newsTab {
    gap: 14px;
  }
}
@media screen and (max-width: 767px) {
  .newsArea .newsTypeController .newsTab {
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .newsArea .newsTypeController {
    margin-bottom: 0;
  }
  .newsArea .newsTypeController .newsTab {
    width: 100%;
  }
}

.newsArea .newsTypeController .newsTab li button {
  background-color: #ffffff;
  border-radius: 2px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  word-break: break-all;
  text-align: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  border: 1px solid white;
}
@media screen and (min-width: 768px) {
  .newsArea .newsTypeController .newsTab li button {
    height: 40px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .newsArea .newsTypeController .newsTab li button {
    padding: 0 16px;
    height: 34px;
    font-size: 12px;
  }
}

.newsArea .newsTypeController .newsTab li button:hover {
  background-color: #333333;
  color: white;
}

.newsArea .newsTypeController .newsTab li button.active {
  background-color: #333333;
  color: white;
}

/* list
----------------- */
.newsArea .noDataText {
  margin-top: 80px;
}

.newsArea .newsDataArea .newsBlock {
  display: none;
}

.newsArea .newsDataArea .newsBlock.show {
  display: block;
}

.newsArea .newsDataArea .newsBlock.hide {
  opacity: 0;
  padding-bottom: 30px;
}

.newsArea .newsDataArea .newsBlock:first-child {
  margin-top: 0;
}

.newsArea .newsDataArea .newsBlock .yearHeading {
  background-color: transparent;
  border-left: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .newsArea .newsDataArea .newsBlock .yearHeading {
    padding: 0 0 16px;
  }
}
@media screen and (max-width: 767px) {
  .newsArea .newsDataArea .newsBlock .yearHeading {
    padding: 0 0 12px;
    margin: 40px 0 20px;
  }
}

.newsArea .newsDataArea .newsBlock .yearHeading span {
  font-family: 'Noto Serif JP', serif;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .newsArea .newsDataArea .newsBlock .yearHeading span {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .newsArea .newsDataArea .newsBlock .yearHeading span {
    font-size: 22px;
  }
}

.newsArea .newsDataArea .newsBlock .yearHeading::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .newsArea .newsDataArea .newsBlock .yearHeading::after {
    background: linear-gradient(to right, #d4220a 0 250px, #d9d9d9 250px 100%);
  }
}
@media screen and (max-width: 767px) {
  .newsArea .newsDataArea .newsBlock .yearHeading::after {
    background: linear-gradient(to right, #d4220a 0 80px, #d9d9d9 80px 100%);
  }
}

.newsArea .newsDataArea .newsBlock .newsIrList {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-wrap: anywhere;
}

/* newsItem
----------------- */
.newsArea .newsDataArea .newsBlock .newsIrList .newsItem {
  display: flex;
  border-bottom: 1px solid #dbdbdb;
}
@media screen and (min-width: 768px) {
  .newsArea .newsDataArea .newsBlock .newsIrList .newsItem {
    padding: 30px 0;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .newsArea .newsDataArea .newsBlock .newsIrList .newsItem {
    flex-direction: column;
    padding: 20px 0;
    gap: 14px;
  }
}

.newsArea .newsDataArea .newsBlock .newsIrList .newsItem:first-child {
  margin-top: 0;
}

.newsArea .newsDataArea .newsBlock .newsIrList .newsItemHasLinkIcon {
  position: relative;
}

.newsArea .newsDataArea .newsBlock .newsIrList .newsItemHasLinkIcon::after {
  position: absolute;
  content: url(../img/news-link-icon.svg);
  width: 20px;
  height: 20px;
  display: block;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsHead {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsHead {
    gap: 16px;
    justify-content: space-between;
    width: 205px;
  }
}
@media screen and (max-width: 767px) {
  .newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsHead {
    gap: 10px;
  }
}

.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .itemDate time {
  letter-spacing: 0.08em;
  color: #899399;
}
@media screen and (min-width: 768px) {
  .newsArea .newsDataArea .newsBlock .newsIrList .newsItem .itemDate time {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .newsArea .newsDataArea .newsBlock .newsIrList .newsItem .itemDate time {
    font-size: 12px;
  }
}

.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .itemCategory {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #899399;
  border-radius: 2px;
  letter-spacing: 0.08em;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .newsArea .newsDataArea .newsBlock .newsIrList .newsItem .itemCategory {
    width: 100px;
    padding: 4px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .newsArea .newsDataArea .newsBlock .newsIrList .newsItem .itemCategory {
    min-width: 80px;
    padding: 2px 5px;
    font-size: 12px;
  }
}

.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox {
  order: 5;
  display: block;
  flex-grow: 1;
  padding-right: 40px;
}

@media screen and (max-width: 767px) {
  .newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox {
    width: 100%;
    margin: 0;
  }
}

/* newsBox
----------------- */
.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox .title {
  display: inline;
  position: relative;
}

.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox .title a {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox .title a .titleText {
    font-size: 14px;
  }
}

.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox .title .titleComment {
  display: block;
  font-size: 0.8em;
  margin-top: 2em;
}

.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox .title a:hover {
  text-decoration: underline;
  color: #c91716;
}
.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox .title a:hover span {
  color: #c91716;
}

.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox .title a.blank::after {
  display: inline-block;
  width: 12px;
  height: 12px;
  content: url('../img/icon_blank.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  margin-left: 5px;
}
.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox .title a.pdf::after {
  display: inline-block;
  width: 16px;
  height: 16px;
  content: url('../img/icon_pdf.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  margin-left: 5px;
}
.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox .title a.doc::after {
  display: inline-block;
  width: 16px;
  height: 16px;
  content: url('../img/icon_doc.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  margin-left: 5px;
}
.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox .title a.xls::after {
  display: inline-block;
  width: 16px;
  height: 16px;
  content: url('../img/icon_xls.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  margin-left: 5px;
}
.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox .title a.movie .titleText i {
  display: none !important;
}
.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox .title a.movie::after {
  display: inline-block;
  width: 16px;
  height: 16px;
  content: url('../img/icon_movie.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  margin-left: 5px;
}

.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox .title a .iconblank {
  display: none;
}

.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox .itemSize {
  display: inline;
  margin: 0 5px;
}

.newsArea .newsDataArea .newsBlock .newsIrList .newsItem .newsBox .comment span {
  font-size: 12.8px;
}

/* pdfNote
----------------- */
.newsArea .pdfNote {
  display: flex;
  margin-top: 80px;
}
.newsArea .pdfNoteItem {
  margin-left: 20px;
  font-size: 15px;
}
.newsArea .pdfNoteItem:first-child {
  margin-left: 0;
}

.newsArea .pdfNote img {
  width: auto;
}

@media screen and (max-width: 767px) {
  .newsArea .pdfNote {
    flex-direction: column;
  }
  .newsArea p {
    margin-bottom: 10px;
  }
  .newsArea .pdfNoteItem {
    margin-left: 0;
  }
}

.spOnly {
  display: none;
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
  .spOnly {
    display: block;
  }
}
