:root {
  --color-white: #fff;
  --color-black: #000;
}

@keyframes loop_x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes shape_hand {
  0% {
    transform: translateX(-5%);
  }
  50% {
    transform: translateX(5%);
  }
  100% {
    transform: translateX(-5%);
  }
}
@keyframes vibration {
  0% {
    transform: translateY(0);
  }
  16% {
    transform: translateY(20px);
  }
  32% {
    transform: translateY(-15px);
  }
  48% {
    transform: translateY(5px);
  }
  64% {
    transform: translateY(-3px);
  }
  80% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes tenmetu {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0.3;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.p-news__list {
  background-color: rgba(0, 0, 0, 0.5);
  transform: translateY(30px);
  opacity: 0;
}
.is-load .p-news__list {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.2s;
}
.p-news__list-item {
  border-top: 1px solid var(--color-white);
}
.p-news__list-item:last-child {
  border-bottom: 1px solid var(--color-white);
}
.p-news__list-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  text-decoration: none;
  color: var(--color-white);
  position: relative;
}
@media screen and (min-width: 1600px) {
  .p-news__list-inner {
    max-width: 1400px;
  }
}
@media (hover: hover) {
  .p-news__list-inner:hover::before {
    opacity: 1;
  }
}
.p-news__list-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-news__list-date {
  border-right: 1px solid var(--color-white);
  flex-shrink: 0;
  width: 16rem;
  font-family: YakuHanJP, "begum", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 400;
  font-style: italic;
  position: relative;
  padding: 2.1rem 2rem 2.4rem;
}
@media screen and (max-width: 859px) {
  .p-news__list-date {
    width: 6.8rem;
    padding: 1.4rem 0.7rem 1.6rem;
  }
}
.p-news__list-date-year {
  margin-bottom: 0.4rem;
  padding-left: 0.2rem;
}
@media screen and (max-width: 859px) {
  .p-news__list-date-year {
    font-size: 1.1rem;
  }
}
.p-news__list-date-day {
  font-size: 4rem;
}
@media screen and (max-width: 859px) {
  .p-news__list-date-day {
    font-size: 1.5rem;
  }
}
.p-news__list-date-day span {
  vertical-align: baseline;
  display: inline-block;
  position: relative;
}
.p-news__list-date-day .is-day {
  padding-left: 3rem;
  position: relative;
}
@media screen and (max-width: 859px) {
  .p-news__list-date-day .is-day {
    padding-left: 1.5rem;
  }
}
.p-news__list-date-day .is-day::before {
  content: "";
  width: 1px;
  height: 75%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(28deg);
  left: 1.4rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 859px) {
  .p-news__list-date-day .is-day::before {
    height: 90%;
    left: 0.7rem;
  }
}
.p-news__list-ttl {
  font-size: 1.8rem;
  padding: 0 3.3rem;
  padding-right: 10rem;
  line-height: 1.7;
  display: flex;
  align-items: center;
  padding-bottom: 0.4rem;
  position: relative;
  width: calc(100% - 16rem);
}
@media screen and (max-width: 859px) {
  .p-news__list-ttl {
    padding: 0 0.7rem;
    width: calc(100% - 6.8rem);
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
.p-news__list-ttl::before {
  content: "";
  width: 4.5rem;
  height: 4.5rem;
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  -webkit-mask: url(../img/arrow.svg) no-repeat center center;
  mask: url(../img/arrow.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-white);
}
@media screen and (max-width: 859px) {
  .p-news__list-ttl::before {
    content: none;
  }
}
.p-news__list-ttl-text {
  width: 100%;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.p-news__foot {
  margin-top: 3.6rem;
  transform: translateY(30px);
  opacity: 0;
}
.is-load .p-news__foot {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.4s;
}
@media screen and (max-width: 859px) {
  .p-news__foot {
    margin-top: 2.7rem;
  }
}

.p-news_detail {
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  background-color: rgba(0, 0, 0, 0.5);
  transform: translateY(30px);
  opacity: 0;
}
.is-load .p-news_detail {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.2s;
}
.p-news_detail__head {
  padding: 4.9rem 5rem 4.7rem;
  border-bottom: 1px solid var(--color-white);
}
@media screen and (max-width: 859px) {
  .p-news_detail__head {
    padding: 2.4rem 1.6rem 1.9rem;
  }
}
.p-news_detail__head-date {
  font-family: YakuHanJP, "begum", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
@media screen and (max-width: 859px) {
  .p-news_detail__head-date {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
  }
}
.p-news_detail__head-ttl {
  font-size: 2.5rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 859px) {
  .p-news_detail__head-ttl {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}
.p-news_detail__content {
  padding: 3.7rem 5rem 7.7rem;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 859px) {
  .p-news_detail__content {
    padding: 2.1rem 1.6rem 5.1rem;
    font-size: 1.3rem;
  }
}
.p-news_detail__content a {
  color: var(--color-white);
  -webkit-text-decoration-color: rgba(255, 255, 255, 0.3);
  text-decoration-color: rgba(255, 255, 255, 0.3);
}
@media (hover: hover) {
  .p-news_detail__content a:hover {
    text-decoration: none;
  }
}
.p-news_detail__content img {
  width: auto !important;
  height: auto !important;
}
.p-news_detail__content iframe {
  width: 100% !important;
  height: auto !important;
}
@media screen and (min-width: 860px) {
  .p-news_detail__content iframe {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 859px) {
  .p-news_detail__content iframe {
    height: 51.73vw !important;
  }
}