@charset "UTF-8";
/* ==================================================
Mixin
================================================== */
/*
 * Easing function
 * Original：http://easings.net/
 */
/*
 * keyframes
 */
@-webkit-keyframes line-move {
  0% {
    background-position: 0 0;
    background-size: 0 100%;
  }
  19% {
    background-position: 0 0;
    background-size: 100% 100%;
  }
  21% {
    background-position: 100% 0;
    background-size: 100% 100%;
  }
  50% {
    background-position: 100% 0;
    background-size: 0 100%;
  }
  to {
    background-position: 0 0;
    background-size: 0 100%;
  }
}
@keyframes line-move {
  0% {
    background-position: 0 0;
    background-size: 0 100%;
  }
  19% {
    background-position: 0 0;
    background-size: 100% 100%;
  }
  21% {
    background-position: 100% 0;
    background-size: 100% 100%;
  }
  50% {
    background-position: 100% 0;
    background-size: 0 100%;
  }
  to {
    background-position: 0 0;
    background-size: 0 100%;
  }
}

/* ==================================================
KeyFrames
================================================== */
@-webkit-keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

.news-list {
  width: 100%;
}

.news-list__item {
  border-bottom: 1px solid #000;
}

@media all and (min-width: 768px) {
  .news-list__item {
    padding: 8rem 0;
  }
}

@media screen and (max-width: 767px) {
  .news-list__item {
    padding: 4.15rem 0;
  }
}

.news-list__item:first-child {
  padding-top: 0;
}

@media all and (min-width: 768px) {
  .news-list-head {
    width: 100%;
  }
  .news-list-head::after {
    content: "";
    display: block;
    border-bottom: 0.2rem solid #000;
    width: 5.6rem;
    padding-top: 3.5rem;
  }
}

@media screen and (max-width: 767px) {
  .news-list-head {
    width: 100%;
  }
  .news-list-head::after {
    content: "";
    display: block;
    border-bottom: 0.1rem solid #000;
    width: 2.8rem;
    padding-top: 2.5rem;
  }
}

.news-list-head__date {
  display: inline-flex;
  align-items: center;
  background-color: #000;
  color: #fff;
  font-style: italic;
}

@media all and (min-width: 768px) {
  .news-list-head__date {
    font-size: 1.5rem;
    padding: 0 1.6rem;
    min-height: 2.7rem;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .news-list-head__date {
    font-size: 1.15rem;
    padding: 0 1rem;
    min-height: 2rem;
    margin-bottom: 1rem;
  }
}

.news-list-head__label {
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.2rem;
}

@media all and (min-width: 768px) {
  .news-list-head__label {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 767px) {
  .news-list-head__label {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.news-list-content {
  display: flex;
}

@media all and (min-width: 768px) {
  .news-list-content {
    margin-top: 3.2rem;
  }
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  .news-list-content {
    flex-flow: column;
  }
}

@media screen and (max-width: 767px) {
  .news-list-content {
    flex-flow: column;
    margin-top: 3.2rem;
  }
}

@media all and (min-width: 768px) {
  .news-list-text {
    font-size: 1.4rem;
    padding-right: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .news-list-text {
    font-size: 1.3rem;
  }
}

.news-list-text__notes {
  margin-top: 7rem;
  font-size: 1.1rem;
}

@media screen and (max-width: 767px) {
  .news-list-imgs {
    width: 100%;
    margin-top: 3.4rem;
  }
}

.news-list-imgs__item {
  border: 1px solid #b6b6b6;
}

@media all and (min-width: 768px) {
  .news-list-imgs__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32.1rem;
    height: 32.1rem;
  }
}

@media screen and (max-width: 767px) {
  .news-list-imgs__item {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 100%;
  }
  .news-list-imgs__item + .news-list-imgs__item {
    margin-top: 2rem;
  }
  .news-list-imgs__item > img {
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media all and (min-width: 1025px) {
  .news-list-imgs__item + .news-list-imgs__item {
    margin-top: 2rem;
  }
}

@media all and (min-width: 768px) {
  .news-list-footer {
    padding-top: 7.8rem;
  }
}

@media screen and (max-width: 767px) {
  .news-list-footer {
    margin-top: 3rem;
  }
}

.news-list-footer__category, .news-list-footer__date {
  font-style: italic;
}

@media all and (min-width: 768px) {
  .news-list-footer__category, .news-list-footer__date {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .news-list-footer__category, .news-list-footer__date {
    font-size: 1.15rem;
  }
}

.news-list-footer__category::after {
  content: "／";
}

.news-list-links {
  margin-top: 7rem;
}

.news-list-links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5.8rem;
  cursor: pointer;
  border: 1px solid #000;
  font-size: 1.8rem;
  transition: .1s;
}

.news-list-links__item:hover {
  background-color: #000;
  color: #fff;
}

.news-list-links__item:not(:last-child) {
  margin-bottom: 1.4rem;
}

/* modal */
@media all and (min-width: 768px) {
  body.is-opened-modal {
    position: fixed;
    width: 100%;
    overflow-y: hidden;
  }
}

@media screen and (max-width: 767px) {
  body.is-opened-modal {
    position: fixed;
    width: 100%;
    overflow-y: hidden;
  }
}

@media all and (min-width: 768px) {
  .news-modal-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    overflow: hidden;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .is-opened-modal .news-modal-wrap {
    opacity: 1;
  }
  .is-closed-modal .news-modal-wrap {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .news-modal-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    overflow: hidden;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .is-opened-modal .news-modal-wrap {
    opacity: 1;
  }
  .is-closed-modal .news-modal-wrap {
    opacity: 0;
  }
}

@media all and (min-width: 768px) {
  .news-modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
  }
}

@media screen and (max-width: 767px) {
  .news-modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
  }
}

@media all and (min-width: 768px) {
  .news-modal-panel {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .news-modal-panel {
    display: flex;
  }
}

@media all and (min-width: 768px) {
  .news-modal-panel__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 800px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 0 4rem;
  }
}

@media screen and (max-width: 767px) {
  .news-modal-panel__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    height: 100%;
    min-height: 100vh;
    margin: 0 auto;
  }
}

@media all and (min-width: 768px) {
  .news-modal__inner {
    position: relative;
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .news-modal__inner {
    position: relative;
    width: 100%;
    padding: 0 3.5rem;
  }
}

.news-modal-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media all and (min-width: 768px) {
  .news-modal-img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .news-modal-img {
    width: calc(100% - 11rem);
  }
}

@media all and (min-width: 768px) {
  .news-modal-close-btn {
    position: fixed;
    top: 3rem;
    right: 3rem;
    width: 6rem;
    height: 6rem;
    padding: 0;
    cursor: pointer;
  }
}

@media screen and (max-width: 767px) {
  .news-modal-close-btn {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    padding: 0;
    cursor: pointer;
  }
}

@media all and (min-width: 768px) {
  .news-modal-close-btn__icon {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  .news-modal-close-btn__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6rem;
    height: 2px;
    background: #fff;
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
  }
  .news-modal-close-btn__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6rem;
    height: 2px;
    background: #fff;
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  }
}

@media screen and (max-width: 767px) {
  .news-modal-close-btn__icon {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  .news-modal-close-btn__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3rem;
    height: 1px;
    background: #fff;
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
  }
  .news-modal-close-btn__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3rem;
    height: 1px;
    background: #fff;
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  }
}

@media all and (min-width: 768px) {
  .news-modal-next-btn, .news-modal-prev-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
    cursor: pointer;
  }
}

@media screen and (max-width: 767px) {
  .news-modal-next-btn, .news-modal-prev-btn {
    position: absolute;
    top: 50%;
    right: -3rem;
    transform: translateY(-50%);
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    cursor: pointer;
  }
}

.news-modal-next-btn__arrow, .news-modal-prev-btn__arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media all and (min-width: 768px) {
  .news-modal-next-btn__arrow, .news-modal-prev-btn__arrow {
    width: 3.5rem;
    height: 3.5rem;
  }
}

@media screen and (max-width: 767px) {
  .news-modal-next-btn__arrow, .news-modal-prev-btn__arrow {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.news-modal-next-btn__arrow::before, .news-modal-prev-btn__arrow::before {
  content: "";
  position: absolute;
  width: 1.7rem;
  height: 1.7rem;
  transition: .2s;
}

@media all and (min-width: 768px) {
  .news-modal-next-btn {
    right: -3.5rem;
  }
}

@media screen and (max-width: 767px) {
  .news-modal-next-btn {
    right: 0.5rem;
  }
}

.news-modal-next-btn__arrow::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  right: 0.85rem;
}

@media all and (min-width: 768px) {
  .news-modal-prev-btn {
    left: -3.5rem;
  }
}

@media screen and (max-width: 767px) {
  .news-modal-prev-btn {
    left: 0.5rem;
  }
}

.news-modal-prev-btn__arrow::before {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  left: 0.85rem;
}

.news-backnumber {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.news-backnumber-btn {
  width: 100%;
  background-color: #1d1d1d;
  cursor: pointer;
}

@media all and (min-width: 768px) {
  .news-backnumber-btn {
    max-width: 30rem;
    min-height: 7rem;
  }
}

@media screen and (max-width: 767px) {
  .news-backnumber-btn {
    min-height: 4.7rem;
    margin-bottom: 5.85rem;
  }
}

.news-backnumber-btn__label {
  display: block;
  font-size: 0;
  margin: auto;
}

@media all and (min-width: 768px) {
  .news-backnumber-btn__label {
    width: 12.2rem;
  }
}

@media screen and (max-width: 767px) {
  .news-backnumber-btn__label {
    width: 9.4rem;
  }
}

.news-backnumber__title {
  color: #fff;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .news-backnumber__title {
    margin-bottom: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .news-backnumber__title {
    margin-bottom: 3.85rem;
  }
}

.news-backnumber__title-label {
  display: block;
  font-size: 0;
}

@media all and (min-width: 768px) {
  .news-backnumber__title-label {
    width: 19rem;
  }
}

@media screen and (max-width: 767px) {
  .news-backnumber__title-label {
    width: 14.25rem;
    margin: auto;
  }
}

.news-backnumber-box {
  display: none;
  position: absolute;
  z-index: 3;
  width: 100%;
  background-color: #1d1d1d;
  left: 0;
}

@media all and (min-width: 768px) {
  .news-backnumber-box {
    top: 0;
    padding: 7rem;
  }
}

@media screen and (max-width: 767px) {
  .news-backnumber-box {
    top: 4.8rem;
    padding: 4.85rem 3.1rem 5.7rem;
  }
}

.news-backnumber-list {
  position: relative;
  z-index: 0;
  display: flex;
  flex-flow: wrap;
  margin-bottom: -2.5rem;
}

@media all and (min-width: 1025px) {
  .news-backnumber-list__item {
    width: calc(100% / 5);
    margin-bottom: 2.5rem;
  }
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  .news-backnumber-list__item {
    margin-right: 2.3vw;
    margin-bottom: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .news-backnumber-list__item {
    line-height: 1;
    width: calc(100% / 2);
    margin-bottom: 2.2rem;
    justify-content: space-between;
    text-align: center;
  }
}

.news-backnumber-list__item > a {
  color: #fff;
  font-style: italic;
  text-decoration: none;
}

@media all and (min-width: 768px) {
  .news-backnumber-list__item > a {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .news-backnumber-list__item > a {
    line-height: 1;
    font-size: 1.1rem;
  }
}

@media all and (min-width: 768px) {
  .news-backnumber-close-btn {
    position: absolute;
    top: 3rem;
    right: 3rem;
    width: 2rem;
    height: 2rem;
    padding: 0;
    cursor: pointer;
  }
}

@media screen and (max-width: 767px) {
  .news-backnumber-close-btn {
    display: none;
  }
}

@media all and (min-width: 768px) {
  .news-backnumber-close-btn__icon {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  .news-backnumber-close-btn__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3rem;
    height: 2px;
    background: #fff;
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
  }
  .news-backnumber-close-btn__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3rem;
    height: 2px;
    background: #fff;
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  }
}
