@charset "UTF-8";
.spContent {
  display: none !important;
}
@media only screen and (max-width: 960px) {
  .spContent {
    display: block !important;
  }
}

.pcContent {
  display: block !important;
}
@media only screen and (max-width: 960px) {
  .pcContent {
    display: none !important;
  }
}

.newsContentsDetails {
  background-image: url("../img/bg.webp");
  background-color: rgba(241, 241, 241, 0.8);
  background-blend-mode: hue;
  background-size: 1444px 2167px;
  background-position: left top;
  background-repeat: repeat;
}

html,
body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

strong {
  font-weight: bold;
}

table {
  width: 100%;
  margin-bottom: 1.5em;
  border-spacing: 0;
  border-collapse: collapse;
}

table th,
table td {
  padding: 0.5em;
  border: 1px solid #000;
}

table th {
  font-weight: bold;
}

caption,
table th,
table td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q::before,
q::after,
blockquote::before,
blockquote::after {
  content: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
  word-break: break-word;
}

a {
  color: inherit;
}

a:hover {
  text-decoration: none;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a img {
  border: none;
}

input,
label,
select,
button {
  line-height: inherit;
}

input,
label,
select,
button,
textarea {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  word-break: normal;
  vertical-align: middle;
  white-space: normal;
  -webkit-appearance: none;
}

button {
  color: inherit;
}

textarea {
  overflow: auto;
  line-height: 1.5;
  white-space: pre-line;
  resize: none;
}

button:focus {
  outline: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  display: none;
}

html {
  scroll-behavior: smooth;
}

header {
  height: 8rem;
  position: sticky;
  top: 0;
  z-index: 20;
  pointer-events: none;
}
@media only screen and (max-width: 960px) {
  header {
    height: 6rem;
  }
}

.menu,
.menu__wrap,
.headerButton,
.menu__close {
  pointer-events: auto;
}

.menu__wrap {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease, -webkit-backdrop-filter 0.5s ease;
  transition: opacity 0.5s ease, backdrop-filter 0.5s ease;
  transition: opacity 0.5s ease, backdrop-filter 0.5s ease, -webkit-backdrop-filter 0.5s ease;
}

.menu__wrap.active {
  display: block;
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -8rem;
  filter: blur(0.4rem);
  z-index: 3;
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
  background: rgba(255, 255, 255, 0.01);
  opacity: 1;
}
@media only screen and (max-width: 960px) {
  .menu__wrap.active {
    display: none;
  }
}

.header {
  max-width: 144rem;
  width: 100%;
  text-align: right;
  margin-inline: auto;
  overflow: hidden;
}
@media only screen and (max-width: 960px) {
  .header {
    display: block;
  }
}
.header .menu {
  background: #fff;
  padding: 4.8rem 2.4rem;
  position: fixed;
  top: -8rem;
  right: -100%;
  width: 72rem;
  height: 100vh;
  z-index: 3;
  position: relative;
  transition: right 0.4s ease;
  overflow-y: auto;
  display: inline-block;
}
.header .menu ul {
  text-align: left;
  list-style: none;
}
.header .menu ul li a {
  text-decoration: none;
  font-size: 3.2rem;
  font-weight: bold;
  padding: 0 0.4rem;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.header .menu ul li a:hover {
  background-color: #080707;
  color: #fafafa;
}
@media only screen and (max-width: 960px) {
  .header .menu ul li a {
    font-size: 2.6rem;
  }
}
.header .menu ul li + li {
  margin-top: 2rem;
}
@media only screen and (max-width: 960px) {
  .header .menu ul li + li {
    margin-top: 1.6rem;
  }
}
@media only screen and (max-width: 960px) {
  .header .menu {
    width: 100%;
    top: -6rem;
  }
}
.header .menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 41.7rem;
  height: 34.2rem;
  background-image: url("../img/header__bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: -1;
  pointer-events: none;
}
@media only screen and (max-width: 960px) {
  .header .menu::before {
    width: 23.5rem;
    height: 19.3rem;
  }
}
.header .menu__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 10;
}
.header .menu__button {
  margin-top: 6rem;
  background-color: #DB0101;
  padding: 0.8rem 3.2rem;
  color: #fafafa;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  text-decoration: none;
  display: inline-block;
  text-align: left;
}
@media only screen and (max-width: 960px) {
  .header .menu__button {
    font-size: 1.8rem;
  }
}
.header .menu.is-open {
  display: inline-block;
  text-align: left;
  right: 0;
}
.header .headerButton {
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto 0;
}
.header .headerButton img {
  width: 5.4rem;
  height: auto;
}
@media only screen and (max-width: 960px) {
  .header .headerButton img {
    width: 4.4rem;
  }
}
@media only screen and (max-width: 960px) {
  .header .headerButton {
    width: 6rem;
    height: 6rem;
  }
}
.header .headerButton:hover {
  opacity: 0.75;
}

.footer {
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #fafafa;
  background-color: #080707;
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: center;
  line-height: 2;
}
@media only screen and (max-width: 960px) {
  .footer {
    font-size: 10px;
    line-height: 1.4;
  }
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 960px) {
  html {
    font-size: 2.6666666667vw;
  }
}

main {
  overflow: hidden;
}

/* ニュース詳細ページ */
.news {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 40rem;
}
@media only screen and (max-width: 960px) {
  .news {
    padding-bottom: 18.4rem;
  }
}
@media (min-width: 691px) and (max-width: 1280px) {
  .news {
    padding-inline: 4rem;
  }
}

.newsContents,
.newsList {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
  padding-top: 8rem;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 960px) {
  .newsContents,
  .newsList {
    padding-inline: 1.6rem;
  }
}

.newsContentsTitle {
  display: inline-flex;
  flex-direction: column;
}

.newsContentsTitle__text .newsContentsTitle__textSpan {
  background: #080707;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: #fafafa;
  font-size: 5.6rem;
  line-height: 1.5;
  padding-inline-start: 0.8rem;
  font-weight: bold;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 960px) {
  .newsContentsTitle__text .newsContentsTitle__textSpan {
    font-size: 4rem;
    line-height: 1.7;
  }
}

.newsContentsTitle__date {
  margin-top: 1.1rem;
  font-size: 2rem;
  line-height: 1.7;
  font-weight: bold;
}

.newsContentsDetails {
  margin-top: 4rem;
  padding: 8rem;
  font-size: 2rem;
  border-radius: 1rem;
  color: #080707;
  width: 100%;
}
.newsContentsDetails * + * {
  margin-top: 2.4rem;
}
.newsContentsDetails a {
  display: inline-block;
}
@media only screen and (max-width: 960px) {
  .newsContentsDetails {
    margin-top: 8rem;
    padding: 8rem 2.4rem;
  }
}

.newsContents__back {
  margin-top: 1.6rem;
}
.newsContents__back a {
  font-weight: bold;
  text-decoration: none;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
}
.newsContents__back a::before {
  content: "";
  flex-shrink: 0;
  transform: rotate(-135deg);
  margin-right: 1.2rem;
  width: 1.1rem;
  height: 1.1rem;
  border-top: 0.2rem solid #080707;
  border-right: 0.2rem solid #080707;
}
.newsContents__back a:hover {
  opacity: 0.75;
}

.newsContents__image {
  min-width: 200rem;
  max-width: 200rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: auto;
  bottom: 0;
}
@media only screen and (max-width: 960px) {
  .newsContents__image {
    min-width: 54rem;
    max-width: 54rem;
  }
}
@media only screen and (min-width: 541px) and (max-width: 960px) {
  .newsContents__image {
    min-width: 100%;
    max-width: 100%;
  }
}

/* ニュース一覧 */
.newsList__title {
  color: #080707;
  font-weight: bold;
  font-size: 8rem;
  position: relative;
}
@media only screen and (max-width: 960px) {
  .newsList__title {
    font-size: 6.4rem;
  }
}

.newsList__item {
  margin-top: 8rem;
}

.newsList__itemPage ul li a .icon--left, .newsList__itemPage ul li a .icon--right {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.newsList__itemPage ul li a .icon--left::before, .newsList__itemPage ul li a .icon--right::before {
  content: "";
  flex-shrink: 0;
  margin-right: 1.2rem;
  width: 1.1rem;
  height: 1.1rem;
  border-top: 0.2rem solid #DB0101;
  border-right: 0.2rem solid #DB0101;
}

.newsList__itemWrap {
  list-style: none;
}
.newsList__itemWrap li {
  border-bottom: #ddd solid 0.1rem;
  padding: 2rem;
}
.newsList__itemWrap li a {
  font-size: 1.8rem;
  line-height: 2;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 960px) {
  .newsList__itemWrap li a {
    flex-direction: column;
    align-items: flex-start;
  }
}
.newsList__itemWrap li a:hover {
  opacity: 0.75;
}
.newsList__itemWrap li a time {
  min-width: 12.1rem;
  max-width: 12.1rem;
}
@media only screen and (max-width: 960px) {
  .newsList__itemWrap li a time {
    min-width: 100%;
    max-width: 100%;
  }
}

.newsList__itemPage {
  margin-top: 8rem;
  text-align: center;
}
.newsList__itemPage ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem;
  font-size: 1.5rem;
}
.newsList__itemPage ul li {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsList__itemPage ul li.current {
  background-color: #DB0101;
  color: #fafafa;
  border-radius: 3rem;
}
.newsList__itemPage ul li.dots {
  letter-spacing: -0.1rem;
}
.newsList__itemPage ul li:hover {
  opacity: 0.75;
}
.newsList__itemPage ul li a {
  text-decoration: none;
}
.newsList__itemPage ul li a .icon--right:before {
  transform: rotate(45deg);
}
.newsList__itemPage ul li a .icon--left:before {
  transform: rotate(-135deg);
}

/* 記事パーツ */
.newsContents__button {
  background-color: #DB0101;
  color: #fafafa;
  font-size: 2rem;
  padding: 0.8rem 2rem;
  width: 100%;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  margin-top: 6.4rem;
}

.newsContents__titleWrap {
  display: inline-block;
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.newsContents__titleWrap .newsContents__titleWrapAnimation {
  display: inline-block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.newsContents__titleWrap.-visible, .newsContents__titleWrap.-visible .newsContents__titleWrapAnimation {
  transform: translate(0, 0);
}

.newsList__titleWrap {
  display: inline-block;
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.newsList__titleWrap span {
  display: inline-block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.newsList__titleWrap.-visible, .newsList__titleWrap.-visible span {
  transform: translate(0, 0);
}

.newsList__titleSubWrap {
  display: inline-block;
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  position: absolute;
  bottom: -1.8rem;
  left: 16rem;
}
.newsList__titleSubWrap img {
  width: 29.1rem;
  height: auto;
}
@media only screen and (max-width: 960px) {
  .newsList__titleSubWrap img {
    width: 17rem;
  }
}
@media only screen and (max-width: 960px) {
  .newsList__titleSubWrap {
    bottom: -2rem;
    left: 14.8rem;
  }
}
.newsList__titleSubWrap span {
  display: inline-block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.newsList__titleSubWrap.-visible, .newsList__titleSubWrap.-visible span {
  transform: translate(0, 0);
}
/*# sourceMappingURL=news.css.map */