@charset "UTF-8";

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

#news_index_contents .news_box {
  width: 90%;
  max-width: 1280px;
}

#news_index_contents .news_box.w800 {
  width: 90%;
  max-width: 1280px;
}

#contents_wrap #news_index_contents .news_box > .news_filter_part:not(.news_filter_part-bottom) {
  margin-bottom: 0;
}

.news_filter_part-bottom {
  margin-top: 20px;
}

.news_filter_bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid #2f2f2f;
}

.news_filter_bar.news_filter_bar-bottom {
  padding-bottom: 0;
  border-bottom: none;
}

.news_filter_label {
  margin: 0;
  font-family: 'Bebas Neue', 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #2f2f2f;
}

#news_index_contents .select_wrap {
  position: relative;
  width: min(100%, 160px);
}

#news_index_contents .select_wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  margin-top: -6px;
  border-right: 1px solid #2f2f2f;
  border-bottom: 1px solid #2f2f2f;
  transform: rotate(45deg);
  pointer-events: none;
}

#news_index_contents .select_list {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 40px;
  padding: 0 40px 0 14px;
  border: 1px solid #d9d4cb;
  background: #f3efe7;
  border-radius: 0;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: #2f2f2f;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}

#news_index_contents .select_list:hover,
#news_index_contents .select_list:focus {
  border-color: #2f2f2f;
  background: #fffdf8;
  outline: none;
}

.news_archive_list.archive_ul {
  margin-top: 0;
  border-top: none;
  border-bottom: 2px solid #2f2f2f;
}

.news_archive_list.archive_ul .news_archive_item {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ddd6cc;
}

.news_archive_list.archive_ul .news_archive_item:last-child {
  border-bottom: none;
}

.news_archive_link {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) 32px;
  grid-template-rows: auto auto;
  gap: 8px 24px;
  padding: 22px 18px 22px 8px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.news_archive_link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(243, 239, 231, 0.5);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
  pointer-events: none;
}

.news_archive_item.is-link .news_archive_link:hover::before,
.news_archive_item.is-link .news_archive_link:focus-visible::before {
  transform: scaleX(1);
}

.news_archive_meta,
.news_archive_list.archive_ul .news_archive_item .date {
  position: relative;
  z-index: 1;
}

.news_archive_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  grid-column: 1;
  grid-row: 1;
}

.news_archive_list.archive_ul .news_archive_item .date {
  margin: 0;
  flex-basis: auto;
}

.news_archive_list.archive_ul .news_archive_item .date time {
  color: #2f2f2f;
  font-family: 'Bebas Neue', 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.news_archive_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news_archive_tag {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  background: #565656;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news_archive_tag-info {
  background: #2c3e50;
}

.news_archive_tag-live {
  background: #b36b00;
}

.news_archive_tag-staff {
  background: #5a4a7a;
}

.news_archive_tag-release {
  background: #3e7c99;
}

.news_archive_list.archive_ul .news_archive_item .title {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.news_archive_arrow {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: end;
  font-size: 2rem;
  line-height: 1;
  color: #2f2f2f;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.news_archive_item.is-link .news_archive_link:hover .news_archive_arrow,
.news_archive_item.is-link
  .news_archive_link:focus-visible
  .news_archive_arrow {
  transform: translateX(6px);
}

.news_archive_item.is-static .news_archive_link {
  cursor: default;
}

.news_archive_empty {
  padding: 28px 0 0;
}

.news_archive_empty p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.8;
}

.news_pagination {
  margin-top: 18px;
}

#news_index_contents .news_pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  text-align: left;
}

#news_index_contents .news_pagination .page-numbers {
  display: inline-block;
  margin-right: 0;
  margin-bottom: 0;
  width: 32px;
  line-height: 30px;
  border: 1px solid #333;
  background: #fff;
  color: #2f2f2f;
  font-size: 1.2rem;
  text-align: center;
  text-decoration: none;
}

#news_index_contents .news_pagination .page-numbers.current,
#news_index_contents .news_pagination a.page-numbers:hover,
#news_index_contents .news_pagination a.page-numbers:focus-visible {
  border-color: #2f2f2f;
  background: #2f2f2f;
  color: #fff;
}

#news_index_contents .news_pagination .page-numbers.dots {
  width: auto;
  border: none;
  background: transparent;
  color: #2f2f2f;
}

/*--------------------------------------
	single
---------------------------------------*/

#news_single_contents #single_news_box {
  width: 90%;
  max-width: 1280px;
}

.news_single_back {
  margin: 0 0 12px;
  line-height: 1;
}

.news_single_back a {
  color: #999;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.news_single_back a:hover,
.news_single_back a:focus-visible {
  color: #2f2f2f;
}

.news_single_layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 8.5vw;
  align-items: start;
}

.news_single_main {
  min-width: 0;
  padding-top: 32px;
  border-top: 2px solid #2f2f2f;
}

.news_single_header {
  margin-bottom: 38px;
}

.news_single_meta,
.news_latest_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.news_single_meta .date,
.news_latest_meta .date {
  margin: 0;
}

.news_single_meta .date time,
.news_latest_meta .date time {
  color: #2f2f2f;
  font-family: 'Bebas Neue', 'Noto Sans JP', sans-serif;
  line-height: 1;
  letter-spacing: 0.04em;
}

.news_single_meta .date time {
  font-size: 2rem;
}

.news_single_title {
  margin: 18px 0 0;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.news_single_body {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.06em;
}

.news_single_body > *:first-child {
  margin-top: 0;
}

.news_single_body > *:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 901px) {
  .news_single_layout {
    align-items: stretch;
  }

  .news_single_main {
    display: flex;
    flex-direction: column;
  }

  .news_single_body {
    flex: 1;
  }

  .news_single_sidebar {
    align-self: start;
  }
}

.news_single_nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
  padding: 18px 0 20px;
  border-top: 2px solid #2f2f2f;
}

.news_single_nav_item a {
  display: block;
  min-height: 82px;
  color: inherit;
  text-decoration: none;
}

.news_single_nav_item-next {
  text-align: right;
}

.news_single_nav_label,
.news_single_nav_date,
.news_single_nav_title {
  display: block;
}

.news_single_nav_label {
  color: #999;
  font-family: 'Bebas Neue', 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.news_single_nav_date {
  margin-top: 12px;
  color: #999;
  font-family: 'Bebas Neue', 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.news_single_nav_title {
  margin-top: 12px;
  font-size: 1.3rem;
  line-height: 1.7;
}

.news_single_sidebar {
  padding-top: 32px;
  border-top: 1px solid #999;
}

.news_single_sidebar_heading {
  margin: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid #999;
  font-family: 'Bebas Neue', 'Noto Sans JP', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.news_latest_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news_latest_item {
  border-bottom: 1px solid #999;
}

.news_latest_link {
  position: relative;
  display: block;
  padding: 20px 2px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.news_latest_link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(243, 239, 231, 0.5);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
  pointer-events: none;
}

.news_latest_link:hover::before,
.news_latest_link:focus-visible::before {
  transform: scaleX(1);
}

.news_latest_meta,
.news_latest_title {
  position: relative;
  z-index: 1;
}

.news_latest_meta .date time {
  color: #999;
  font-size: 1.6rem;
}

.news_latest_title {
  margin: 16px 0 0;
  font-size: 1.3rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

/*--------------------------------------
	responsive
---------------------------------------*/

@media screen and (min-width: 600px) {
  .news_archive_link {
    padding: 24px 10px;
  }
}

@media screen and (max-width: 900px) {
  .news_single_layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .news_single_nav {
    margin-top: 32px;
  }
}

@media screen and (max-width: 599px) {
  .news_filter_bar {
    padding-bottom: 16px;
  }

  .news_filter_label {
    width: 100%;
  }

  #news_index_contents .select_wrap {
    width: 100%;
    max-width: 180px;
  }

  .news_archive_link {
    gap: 10px 14px;
    padding: 18px 18px 18px 0;
  }

  .news_archive_list.archive_ul .news_archive_item .date time {
    font-size: 1.8rem;
  }

  .news_archive_list.archive_ul .news_archive_item .title {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .news_archive_arrow {
    font-size: 1.6rem;
  }

  .news_single_main,
  .news_single_sidebar {
    padding-top: 24px;
  }

  .news_single_header {
    margin-bottom: 28px;
  }

  .news_single_title {
    font-size: 2.2rem;
    line-height: 1.55;
  }

  .news_single_body {
    font-size: 1.4rem;
    line-height: 1.9;
  }

  .news_single_nav {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news_single_nav_item-prev {
    padding-bottom: 18px;
    border-bottom: 1px solid #ddd;
  }

  .news_single_nav_item-prev:not(:has(a)) {
    display: none;
  }

  .news_single_nav_item-next {
    padding-bottom: 0;
    border-bottom: none;
    text-align: left;
  }

  .news_single_sidebar_heading {
    font-size: 2.4rem;
  }
}
