@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap');

/*====================
  common
====================*/
.nnmoaIndex-main {
  background-color: #fff;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.js-splitText span {
  opacity: 0;
  transition: all 0.1s ease-in-out;
}
.active .js-splitText span {
  opacity: 1;
}

/*===== PC =====*/
@media screen and (min-width: 768px) {
  a.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 335px;
    height: 60px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 1.5;
    margin-right: auto;
    margin-left: auto;
    padding-right: 40px;
    padding-left: 40px;
    background-color: #104C92;
    position: relative;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
  }
  a.button:hover {
    opacity: 0.8 !important;
  }
  a.button.button--left {
    margin-left: unset;
  }
  a.button.button--right {
    margin-right: unset;
  }
  a.button::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("/common/img/icon_arrow_white.svg");
    background-repeat: no-repeat;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 20px;
  }
  a.button:hover {
    opacity: 0.8;
  }
}
/*===== SP =====*/
@media screen and (max-width: 767px) {
  a.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 89.333vw;
    height: 16vw;
    font-size: 4.8vw;
    color: #ffffff;
    text-align: center;
    line-height: 1.5;
    margin-right: auto;
    margin-left: auto;
    padding-right: 5.333vw;
    padding-left: 5.333vw;
    background-color: #104C92;
    position: relative;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
  }
  a.button:hover {
    opacity: 0.8 !important;
  }
  a.button.button--left {
    margin-left: unset;
  }
  a.button.button--right {
    margin-right: unset;
  }
  a.button::before {
    content: "";
    width: 2.667vw;
    height: 2.667vw;
    background-image: url("/common/img/icon_arrow_white.svg");
    background-repeat: no-repeat;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 5.333vw;
  }
  a.button:hover {
    opacity: 0.8;
  }
}


/*====================
  kv
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .kv {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  .kv::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
  }
  .kv.active::before {
    animation: kvAnime 3s;
    background-color: transparent;
  }
  /* kv Animation */
  @keyframes kvAnime {
    0%   { background-color: rgba(255, 255, 255, 0.5); }
    100% { background-color: transparent; }
  }

  .kv__heading01 {
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    filter: drop-shadow(0 4px 40px rgba(204,235,255,1))
            drop-shadow(0 0 80px rgba(204,235,255,1));
  }
  .kv__heading01 img {
    width: 100%;
  }
  .kv__heading01::before {
    content: "";
    width: 441px;
    height: 165px;
    background-color: rgba(255, 255, 255, 0.2);
    filter: blur(75px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  .kv__thumb {
    width: 100%;
    height: 100vh;
    transform: scale(1.3);
  }
  .kv__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .kv.active .kv__thumb {
    animation: slideAnime 20s infinite;
    animation-timing-function: ease-out;
  }

  /* slide Animation */
  @keyframes slideAnime {
    0% { transform: scale(1.3) translateX( 0px); }
    100% { transform: scale(1.3) translateX(-8%); }
  }

  .kv-scroll {
    width: 50px;
    margin: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
    filter: drop-shadow(0 0 4px rgba(0,0,0,1))
            drop-shadow(0 0 10px rgba(0,0,0,1));
  }
  .kv-scroll__text {
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin-bottom: 5px;
  }
  .kv-scroll__bar {
    width: 1px;
    height: 3.8888888889vw;
    margin: auto;
  }
  /* scroll Animation */
  .kv-scroll__bar-data {
    width: 100%;
    height: 100%;
    background-color: #fff;
    animation: scrolldown 1.8s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  @keyframes scrolldown {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    50.1% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }
}
/*===== SP =====*/
@media screen and (max-width: 767px) {
  .kv {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  .kv::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
  }
  .kv.active::before {
    animation: kvAnime 3s;
    background-color: transparent;
  }
  /* kv Animation */
  @keyframes kvAnime {
    0%   { background-color: rgba(255, 255, 255, 0.5); }
    100% { background-color: transparent; }
  }

  .kv__heading01 {
    width: 67.467vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    filter: drop-shadow(0 1.067vw 10.667vw rgba(204,235,255,1))
            drop-shadow(0 0 21.333vw rgba(204,235,255,1));
  }
  .kv__heading01 img {
    width: 100%;
  }
  .kv__heading01::before {
    content: "";
    width: 86.933vw;
    height: 32.533vw;
    background-color: rgba(255, 255, 255, 0.2);
    filter: blur(65px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  .kv__thumb {
    width: auto;
    height: 100vh;
    position: absolute;
    left: 0;
  }
  .kv__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* .kv.active .kv__thumb {
    animation: slideAnime 30s infinite;
    animation-timing-function: ease-out;
  } */

  /* slide Animation */
  /* @keyframes slideAnime {
    0% { left: 0; }
    100% { left: -130vh; }
  } */

  .kv-scroll {
    width: 13.333vw;
    margin: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
    filter: drop-shadow(0 0 1.067vw rgba(0,0,0,1))
            drop-shadow(0 0 2.667vw rgba(0,0,0,1));
  }
  .kv-scroll__text {
    font-size: 3.2vw;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.333vw;
  }
  .kv-scroll__bar {
    width: 0.267vw;
    height: 11.733vw;
    margin: auto;
  }
  /* scroll Animation */
  .kv-scroll__bar-data {
    width: 100%;
    height: 100%;
    background-color: #fff;
    animation: scrolldown 1.8s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  @keyframes scrolldown {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    50.1% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }

}


/*====================
  news
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .news {
    padding: 60px 20px 80px;
  }

  .news__wrap {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
  }

  .news__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    width: 100%;
    position: relative;
    padding-bottom: 32px;
  }

  .news__heading::before {
    content: "";
    width: 90px;
    height: 4px;
    color: #104C92;
    background-color: #104C92;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .news__heading-text {
    color: #333;
    font-family: "Zen Kaku Gothic New";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 34px */
    letter-spacing: 1.6px;
  }

  .news__heading-title {
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 60px */
    letter-spacing: 3.2px;
  }

  .news__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
  }

  .news__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
  }

  .news__item {
    width: 100%;
  }

  .news__date {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
  }

  a.news__title {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
  }

  a.news__title:hover {
    text-decoration: underline;
  }

  .news__more {
    width: 100%;
    text-align: right;
  }

  a.news__more-link {
    color: #104C92;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
  }

  a.news__more-link:hover {
    text-decoration: underline;
  }

  a.news__more-link::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url(/common/img/icon_arrow_accent_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 6px;
  }
}
/*===== SP =====*/
@media screen and (max-width: 767px) {
  .news {
    padding: 10.667vw 5.333vw 16vw;
  }

  .news__wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10.667vw;
  }

  .news__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.067vw;
    align-self: stretch;
    width: 100%;
    position: relative;
    padding-bottom: 5.333vw;
  }

  .news__heading::before {
    content: "";
    width: 12vw;
    height: 1.067vw;
    color: #104C92;
    background-color: #104C92;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .news__heading-text {
    color: #333;
    font-family: "Zen Kaku Gothic New";
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 9.067vw */
    letter-spacing: 0.299vw;
  }

  .news__heading-title {
    color: #333;
    font-size: 7.467vw;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 16vw */
    letter-spacing: 0.597vw;
  }

  .news__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10.667vw;
    width: 100%;
  }

  .news__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 5.333vw;
  }

  .news__item {
    width: 100%;
  }

  .news__date {
    color: #333;
    font-size: 4.267vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 7.68vw */
    letter-spacing: 0.341vw;
  }

  a.news__title {
    color: #333;
    font-size: 4.267vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 7.68vw */
    letter-spacing: 0.341vw;
  }

  a.news__title:hover {
    text-decoration: underline;
  }

  .news__more {
    width: 100%;
    text-align: right;
  }

  a.news__more-link {
    color: #104C92;
    text-align: center;
    font-size: 4.267vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 7.68vw */
    letter-spacing: 0.341vw;
  }

  a.news__more-link:hover {
    text-decoration: underline;
  }

  a.news__more-link::after {
    content: "";
    display: inline-block;
    width: 3.2vw;
    height: 3.2vw;
    background-image: url(/common/img/icon_arrow_accent_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 1.6vw;
  }
}


/*====================
  exhibition
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .exhibition {
    padding: 120px 20px;
    background-color: #F5F5F5;
  }

  .exhibition__wrap {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
  }

  .exhibition__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    width: 100%;
    position: relative;
    padding-bottom: 32px;
  }

  .exhibition__heading::before {
    content: "";
    width: 90px;
    height: 4px;
    color: #104C92;
    background-color: #104C92;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .exhibition__heading-text {
    color: #333;
    font-family: "Zen Kaku Gothic New";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 34px */
    letter-spacing: 1.6px;
  }

  .exhibition__heading-title {
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 60px */
    letter-spacing: 3.2px;
  }

  .exhibition-card-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
  }

  .exhibition-card {
    padding: 40px 0 20px 0;
    background-color: #fff;
    width: calc((100% - 40px) / 2);
  }

  .exhibition-card.exhibition-card--large {
    width: 100%;
    padding: 20px 0;
  }

  .exhibition-card.exhibition-card--large:has(.exhibition-card__image) {
    padding: 0;
  }

  .exhibition-card__inner {
    display: flex;
    align-items: center;
    align-self: stretch;
  }

  .exhibition-card__image {
    width: 58.6%;
  }

  .exhibition-card__body {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 40px;
  }

  .exhibition-card.exhibition-card--large:has(.exhibition-card__image) .exhibition-card__body {
    width: 41.4%;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .exhibition-card.exhibition-card--large:not(:has(.exhibition-card__image)) .exhibition-card__body {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .exhibition-card__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .exhibition-card__heading-title {
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 36px */
    letter-spacing: 1.92px;
  }

  .exhibition-card.exhibition-card--large:has(.exhibition-card__image) .exhibition-card__heading-title {
    color: #333;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 48px */
    letter-spacing: 2.56px;
  }

  .exhibition-card__heading-date {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
    display: flex;
    align-items: center;
    position: relative;
  }

  .exhibition-card__heading-date::before {
    content: "";
    display: inline-block;
    background-image: url(/common/img/nnmoa/calendar_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    flex-shrink: 0;
  }

  .exhibition-card__body a.button {
    width: 100%;
  }

  a.exhibition-card__link {
    width: 100%;
    color: #104C92;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
  }

  a.exhibition-card__link:hover {
    text-decoration: underline;
  }

  .exhibition-card.exhibition-card--large:not(:has(.exhibition-card__image)) a.exhibition-card__link {
    width: auto;
  }

  a.exhibition-card__link::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url(/common/img/icon_arrow_accent_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 6px;
  }
}
/*===== SP =====*/
@media screen and (max-width: 767px) {
  .exhibition {
    padding: 16vw 5.333vw;
    background-color: #F5F5F5;
  }

  .exhibition__wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10.667vw;
  }

  .exhibition__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.067vw;
    align-self: stretch;
    width: 100%;
    position: relative;
    padding-bottom: 5.333vw;
  }

  .exhibition__heading::before {
    content: "";
    width: 12vw;
    height: 1.067vw;
    color: #104C92;
    background-color: #104C92;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .exhibition__heading-text {
    color: #333;
    font-family: "Zen Kaku Gothic New";
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 9.067vw */
    letter-spacing: 0.299vw;
  }

  .exhibition__heading-title {
    color: #333;
    font-size: 7.467vw;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 16vw */
    letter-spacing: 0.597vw;
  }

  .exhibition-card-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8vw;
    align-self: stretch;
  }

  .exhibition-card {
    background-color: #fff;
    width: 100%;
  }

  .exhibition-card__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    width: 100%;
  }

  .exhibition-card__image {
    width: 100%;
  }

  .exhibition-card__body {
    padding: 5.333vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    gap: 10.667vw;
  }

  .exhibition-card.exhibition-card--large:has(.exhibition-card__image) .exhibition-card__body {
    gap: 5.333vw;
  }

  .exhibition-card__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.667vw;
  }

  .exhibition-card__heading-title {
    color: #333;
    font-size: 6.4vw;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 9.6vw */
    letter-spacing: 0.512vw;
  }

  .exhibition-card.exhibition-card--large:has(.exhibition-card__image) .exhibition-card__heading-title {
    color: #333;
    font-size: 6.4vw;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 12.8vw */
    letter-spacing: 0.512vw;
  }

  .exhibition-card__heading-date {
    color: #000;
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 7.68vw */
    letter-spacing: 0.341vw;
    display: flex;
    align-items: center;
    position: relative;
  }

  .exhibition-card__heading-date::before {
    content: "";
    display: inline-block;
    background-image: url(/common/img/nnmoa/calendar_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 4.8vw;
    height: 4.8vw;
    margin-right: 1.6vw;
    flex-shrink: 0;
  }
  .exhibition-card__body a.button {
    width: 100%;
  }

  a.exhibition-card__link {
    width: 100%;
    color: #104C92;
    text-align: right;
    font-size: 4.267vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 7.68vw */
    letter-spacing: 0.341vw;
  }

  a.exhibition-card__link:hover {
    text-decoration: underline;
  }

  a.exhibition-card__link::after {
    content: "";
    display: inline-block;
    width: 3.2vw;
    height: 3.2vw;
    background-image: url(/common/img/icon_arrow_accent_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 1.6vw;
  }
}


/*====================
  special
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .special {
    padding: 120px 20px 200px;
    background-color: #EEF5FB;
  }

  .special__wrap {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
  }

  .special__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    width: 100%;
    position: relative;
    padding-bottom: 32px;
  }

  .special__heading::before {
    content: "";
    width: 90px;
    height: 4px;
    color: #104C92;
    background-color: #104C92;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .special__heading-title {
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 60px */
    letter-spacing: 3.2px;
  }

  .special__heading-text {
    color: #333;
    font-family: "Zen Kaku Gothic New";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 34px */
    letter-spacing: 1.6px;
  }

  .special-card-grid {
    display: flex;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
  }

  .special-card {
    width: calc((100% - 40px) / 3);
    background-color: #fff;
    border: 1px solid #333;
  }

  .special-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .special-card__image {
    width: 100%;
  }

  .special-card__image.special-card__image--noimage {
    background: #F3F3F3;
    display: flex;
    padding: 18px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    aspect-ratio: 91/60;
    box-sizing: border-box;
  }

  .special-card__image-text {
    background: #fff;
    padding: 0 10px;
    color: #333;
    font-size: 24px;
    font-weight: 500;
    line-height: 160%; /* 38.4px */
    letter-spacing: 1.92px;
  }

  .special-card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    flex: 1;
  }

  .special-card__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }


  .special-card__date {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
    display: flex;
    position: relative;
  }

  .special-card__date::before {
    content: "";
    display: inline-block;
    background-image: url(/common/img/nnmoa/calendar_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    margin-top: 3px;
    flex-shrink: 0;
  }

  .special-card__title {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 32px */
    letter-spacing: 1.6px;
  }

  .special-card__text {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
  }

  a.special-card__link {
    color: var(--accent_new02, #104C92);
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
  }

  a.special-card__link:hover {
    text-decoration: underline;
  }

  a.special-card__link::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url(/common/img/icon_arrow_accent_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 6px;
  }

  .special-card__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .special-card__labels-item {
    display: flex;
    padding: 2px 9px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
    white-space: nowrap;
  }

  .special-card__labels-item.special-card__labels-item--active {
    background-color: #333;
    color: #FFF;
  }

  .special-card__labels-item.special-card__labels-item--closed {
    background-color: #646464;
    color: #FFF;
  }

  .special-card__labels-item.special-card__labels-item--paid {
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
  }

  .special-card__labels-item.special-card__labels-item--free {
    border: 1px solid #646464;
    background-color: #F5F5F5;
    color: #646464;
  }

  .special-card__labels-item.special-card__labels-item--category {
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
  }

  .special-card__labels-item.special-card__labels-item--noentry {
    background-color: #D8D8D8;
  }
}
/*===== SP =====*/
@media screen and (max-width: 767px) {
  .special {
    padding: 16vw 5.333vw 21.333vw;
    background-color: #EEF5FB;
  }

  .special__wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10.667vw;
  }

  .special__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.067vw;
    align-self: stretch;
    width: 100%;
    position: relative;
    padding-bottom: 5.333vw;
  }

  .special__heading::before {
    content: "";
    width: 12vw;
    height: 1.067vw;
    color: #104C92;
    background-color: #104C92;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .special__heading-title {
    color: #333;
    font-size: 7.467vw;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 16vw */
    letter-spacing: 0.587vw;
  }

  .special__heading-text {
    color: #333;
    font-family: "Zen Kaku Gothic New";
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 9.067vw */
    letter-spacing: 0.299vw;
  }

  .special-card-grid {
    display: flex;
    width: 100%;
    gap: 10.667vw;
    flex-wrap: wrap;
  }

  .special-card {
    width: 100%;
    background-color: #fff;
    border: 0.267vw solid #333;
  }

  .special-card__inner {
    display: flex;
    flex-direction: column;
  }

  .special-card__image {
    width: 100%;
  }

  .special-card__image.special-card__image--noimage {
    background: #F3F3F3;
    display: flex;
    padding: 4.8vw 5.333vw;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2.133vw;
    align-self: stretch;
    aspect-ratio: 91/60;
    box-sizing: border-box;
  }

  .special-card__image-text {
    background: #fff;
    padding: 0 2.667vw;
    color: #333;
    font-size: 6.4vw;
    font-weight: 500;
    line-height: 160%; /* 10.24vw */
    letter-spacing: 0.512vw;
  }

  .special-card__image img {
    width: 100%;
  }

  .special-card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5.333vw;
    padding: 5.333vw;
  }

  .special-card__content {
    display: flex;
    flex-direction: column;
    gap: 2.667vw;
  }

  .special-card__date {
    color: #000;
    font-size: 4.267vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 7.68vw */
    letter-spacing: 0.341vw;
    display: flex;
    position: relative;
  }

  .special-card__date::before {
    content: "";
    display: inline-block;
    background-image: url(/common/img/nnmoa/calendar_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 4.8vw;
    height: 4.8vw;
    margin-right: 1.6vw;
    margin-top: 0.8vw;
    flex-shrink: 0;
  }

  .special-card__title {
    color: #000;
    font-size: 5.333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 8.533vw */
    letter-spacing: 0.427vw;
  }

  .special-card__text {
    color: #333;
    font-size: 4.267vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 7.68vw */
    letter-spacing: 0.341vw;
  }

  a.special-card__link {
    color: var(--accent_new02, #104C92);
    text-align: right;
    font-size: 4.267vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 7.68vw */
    letter-spacing: 0.341vw;
  }

  a.special-card__link:hover {
    text-decoration: underline;
  }

  a.special-card__link::after {
    content: "";
    display: inline-block;
    width: 3.2vw;
    height: 3.2vw;
    background-image: url(/common/img/icon_arrow_accent_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 1.6vw;
  }

  .special-card__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 2.667vw;
  }

  .special-card__labels-item {
    display: flex;
    padding: 0.533vw 2.4vw;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 4.267vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 7.68vw */
    letter-spacing: 0.341vw;
    white-space: nowrap;
  }

  .special-card__labels-item.special-card__labels-item--active {
    background-color: #333;
    color: #FFF;
  }

  .special-card__labels-item.special-card__labels-item--closed {
    background-color: #646464;
    color: #FFF;
  }

  .special-card__labels-item.special-card__labels-item--paid {
    border: 0.267vw solid #333;
    background-color: #fff;
    color: #333;
  }

  .special-card__labels-item.special-card__labels-item--free {
    border: 0.267vw solid #646464;
    background-color: #F5F5F5;
    color: #646464;
  }

  .special-card__labels-item.special-card__labels-item--category {
    border: 0.267vw solid #333;
    background-color: #fff;
    color: #333;
  }

  .special-card__labels-item.special-card__labels-item--noentry {
    background-color: #D8D8D8;
  }
}


/*====================
  art
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .art {
    padding: 200px 20px;
    position: relative;
  }

  .art::before {
    content: "";
    display: block;
    width: 540px;
    height: 261px;
    position: absolute;
    right: 0;
    top: 0;
    background: var(--Default_Text, #333);
    z-index: 0;
  }

  .art__wrap::before {
    content: "";
    width: 492px;
    height: 277px;
    background-image: url(/common/img/nnmoa/index/special_bg01_new.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -80px;
    right: 225px;
    z-index: 1;
  }

  .art__wrap {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
  }

  .art__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    width: 100%;
    position: relative;
    padding-bottom: 32px;
  }

  .art__heading::before {
    content: "";
    width: 90px;
    height: 4px;
    color: #104C92;
    background-color: #104C92;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .art__heading-title {
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 60px */
    letter-spacing: 3.2px;
  }

  .art__heading-text {
    color: #333;
    font-family: "Zen Kaku Gothic New";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 34px */
    letter-spacing: 1.6px;
  }

  .art-content__text {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 250%; /* 40px */
  }
}
/*===== SP =====*/
@media screen and (max-width: 767px) {
  .art {
    padding: 80vw 5.333vw 16vw;
    position: relative;
  }

  .art::before {
    content: "";
    display: block;
    width: 74.667vw;
    height: 64vw;
    position: absolute;
    right: 0;
    top: 0;
    background: var(--Default_Text, #333);
    z-index: 0;
  }

  .art__wrap::before {
    content: "";
    width: 86.667vw;
    height: 48.8vw;
    background-image: url(/common/img/nnmoa/index/special_bg01_new.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -6.667vw;
    right: 6.667vw;
    z-index: 1;
  }

  .art__wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10.667vw;
  }

  .art__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.067vw;
    align-self: stretch;
    width: 100%;
    position: relative;
    padding-bottom: 5.333vw;
  }

  .art__heading::before {
    content: "";
    width: 12vw;
    height: 1.067vw;
    color: #104C92;
    background-color: #104C92;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .art__heading-title {
    color: #333;
    font-size: 7.467vw;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 16vw */
    letter-spacing: 0.597vw;
  }

  .art__heading-text {
    color: #333;
    font-family: "Zen Kaku Gothic New";
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 9.067vw */
    letter-spacing: 0.299vw;
  }

  .art-content__text {
    color: #333;
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 10.667vw */
  }
}


/*====================
  header ※あとで移行する
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  header.n-header {
    height: auto;
  }

  button.n-menu-toggle {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    display: flex;
    width: 70px;
    height: 70px;
    padding-top: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background: var(--accent_new02, #104C92);
    border: none;
  }

  .n-menu-toggle__icon {}

  .n-menu-toggle__text {
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 18px */
  }

  nav.n-nav {
    position: fixed;
    z-index: 99;
    width: 100%;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(8px);
    padding: 60px 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* 隠れている時はクリック不可 */
    transition: opacity 0.4s ease, visibility 0.4s; /* ふわっと出す */
  }
  
  nav.n-nav.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .n-nav-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .n-nav__list {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .n-nav__list li a {
    color: #333;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
  }

  .n-nav__list li a:hover {
    text-decoration: underline;
  }

  .n-nav__list li a::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url(/common/img/icon_arrow_accent_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 6px;
    flex-shrink: 0;
  }

  .n-nav-box__ttl a {
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 36px */
    letter-spacing: 1.92px;
    display: flex;
    align-items: center;    /* 上下センター */
    justify-content: center; /* 左右センター */
    position: relative;
  }
  
  .n-nav-box__ttl a:hover {
    text-decoration: underline;
  }

  .n-nav-box__ttl a::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url(/common/img/icon_arrow_accent_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 6px;
    flex-shrink: 0;
  }

  .n-nav__list li a[href^="#"]::before {
    transform: rotate(90deg);
  }

  .n-nav__grid {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }

  .n-nav__grid .n-nav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .n-nav__border {
    border: none;
    border-top: 1px solid var(--border-gray, #BABABA);
    width: 100%;
    margin: 0;
  }

  .n-nav-language {
    position: relative;
    width: 100%;
  }

  a.n-nav-language-title-link {
    display: inline-block;
    font-size: 10px;
    font-weight: normal;
    color: #000000;
  }

  .n-nav-language-title {
    position: relative;
    text-align: right;
  }

  .n-nav-language-menu {
    display: none;
    box-sizing: border-box;
    border: solid 1px #dddddd;
    background-color: #ffffff;
    width: 120px;
    position: absolute;
    top: 30px;
    right: 0;
  }

  ul.n-nav-language-menu.is-active {
    display: block;
  }

  .n-nav-language-menu__item:not(:last-child) {
    border-bottom: solid 1px #dddddd;
  }

  a.n-nav-language-menu__link {
    display: block;
    background-color: #ffffff;
    font-size: 10px;
    font-weight: normal;
    color: #000000;
    text-align: center;
    line-height: 1.0;
    padding: 5px;
  }

  a.n-nav-language-title-link::after {
    content: "";
    display: inline-block;
    background-image: url(/common/img/header_icon_language_black.svg);
    background-repeat: no-repeat;
    width: 7px;
    height: 6px;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s ease;
    transform-origin: center center;
  }

  a.n-nav-language-title-link.is-active::after {
    transform: rotate(180deg);
  }

  .n-nav-language-menu:has(li:nth-child(2):last-child) {
    display: flex !important;
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    gap: 10px;
    background: none;
    box-shadow: none;
    padding: 0;
    border: none;
    justify-content: flex-end;
    width: 100%;
  }

  .n-nav-language:has(.n-nav-language-menu__item:nth-child(2):last-child) .n-nav-language-title {
    display: none;
  }

  .n-nav-language-menu:has(li:nth-child(2):last-child) .n-nav-language-menu__link {
    color: #646464;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    padding: 0;
    background-color: transparent;
    border-bottom: 1px solid #BABABA;
  }

  .n-nav-language-menu:has(li:nth-child(2):last-child) .n-nav-language-menu__link.is-active {
    color: #333;
    border-bottom: 2px solid #104C92;
  }

  .n-nav-language-menu:has(li:nth-child(2):last-child) .n-nav-language-menu__link:hover {
    color: #333;
    border-bottom: 2px solid #104C92;
  }

  .n-nav-language-menu:has(li:nth-child(2):last-child) li {
    display: flex;
    align-items: center;
    border: none;
  }

  .n-nav-language-menu:has(li:nth-child(2):last-child) .n-nav-language-menu__item:first-child::after {
    content: "/";
    pointer-events: none;
    margin-left: 10px;
  }
}
/*===== SP =====*/
@media screen and (max-width: 767px) {
  header.n-header {
    height: auto;
  }

  button.n-menu-toggle {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    display: flex;
    width: 18.667vw;
    height: 18.667vw;
    padding-top: 1.6vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8vw;
    background: var(--accent_new02, #104C92);
    border: none;
  }

  .n-menu-toggle__icon {}

  .n-menu-toggle__text {
    color: #FFF;
    text-align: center;
    font-size: 3.2vw;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 4.8vw */
  }

  nav.n-nav {
    position: fixed;
    z-index: 99;
    width: 100%;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(2.133vw);
    padding: 10.667vw 5.333vw 10.667vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5.333vw;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* 隠れている時はクリック不可 */
    transition: opacity 0.4s ease, visibility 0.4s; /* ふわっと出す */
  }
  
  nav.n-nav.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    height: 100dvh;
    overflow: scroll;
  }

  .n-nav-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5.333vw;
  }

  .n-nav__list {
    display: flex;
    flex-direction: column;
    gap: 5.333vw;
  }

  .n-nav__list li a {
    color: #333;
    text-align: center;
    font-size: 4.267vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 7.68vw */
    letter-spacing: 0.341vw;
  }

  .n-nav__list li a:hover {
    text-decoration: underline;
  }

  .n-nav__list li a::before {
    content: "";
    display: inline-block;
    width: 3.2vw;
    height: 3.2vw;
    background-image: url(/common/img/icon_arrow_accent_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 1.6vw;
    flex-shrink: 0;
  }

  .n-nav-box__ttl a {
    color: #333;
    font-size: 5.333vw;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 9.6vw */
    letter-spacing: 0.427vw;
    display: flex;
    align-items: center;    /* 上下センター */
    justify-content: center; /* 左右センター */
    position: relative;
  }

  .n-nav-box__ttl a:hover {
    text-decoration: underline;
  }

  .n-nav-box__ttl a::before {
    content: "";
    display: inline-block;
    width: 3.2vw;
    height: 3.2vw;
    background-image: url(/common/img/icon_arrow_accent_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 1.6vw;
    flex-shrink: 0;
  }

  .n-nav__list li a[href^="#"]::before {
    transform: rotate(90deg);
  }

  .n-nav__grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5.333vw;
  }

  .n-nav__grid .n-nav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5.333vw;
  }

  .n-nav__border {
    border: none;
    border-top: 0.267vw solid var(--border-gray, #BABABA);
    width: 100%;
    margin: 0;
  }

  .n-nav__list:not(:first-child) {
    padding-left: 5.333vw;
  }

  .n-nav-language {
    position: relative;
    width: 100%;
  }

  a.n-nav-language-title-link {
    display: inline-block;
    font-size: 2.667vw;
    font-weight: normal;
    color: #000000;
  }

  .n-nav-language-title {
    position: relative;
    text-align: right;
  }

  .n-nav-language-menu {
    display: none;
    box-sizing: border-box;
    border: solid 0.267vw #dddddd;
    background-color: #ffffff;
    width: 32vw;
    position: absolute;
    top: 8vw;
    right: 0;
    z-index: 2;
  }

  ul.n-nav-language-menu.is-active {
    display: block;
  }

  .n-nav-language-menu__item:not(:last-child) {
    border-bottom: solid 0.267vw #dddddd;
  }

  a.n-nav-language-menu__link {
    display: block;
    background-color: #ffffff;
    font-size: 2.667vw;
    font-weight: normal;
    color: #000000;
    text-align: center;
    line-height: 1.0;
    padding: 1.333vw;
  }

  a.n-nav-language-title-link::after {
    content: "";
    display: inline-block;
    background-image: url(/common/img/header_icon_language_black.svg);
    background-repeat: no-repeat;
    width: 1.867vw;
    height: 1.6vw;
    margin-left: 1.6vw;
    vertical-align: middle;
    transition: transform 0.3s ease;
    transform-origin: center center;
  }

  a.n-nav-language-title-link.is-active::after {
    transform: rotate(180deg);
  }

  .n-nav-language-menu:has(li:nth-child(2):last-child) {
    display: flex !important;
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    gap: 2.667vw;
    background: none;
    box-shadow: none;
    padding: 0;
    border: none;
    justify-content: flex-start;
    width: 100%;
  }

  .n-nav-language:has(.n-nav-language-menu__item:nth-child(2):last-child) .n-nav-language-title {
    display: none;
  }

  .n-nav-language-menu:has(li:nth-child(2):last-child) .n-nav-language-menu__link {
    color: #646464;
    text-align: center;
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    padding: 0;
    background-color: transparent;
    border-bottom: 0.267vw solid #BABABA;
  }

  .n-nav-language-menu:has(li:nth-child(2):last-child) .n-nav-language-menu__link.is-active {
    color: #333;
    border-bottom: 0.533vw solid #104C92;
  }

  .n-nav-language-menu:has(li:nth-child(2):last-child) .n-nav-language-menu__link:hover {
    color: #333;
    border-bottom: 0.533vw solid #104C92;
  }
  
  .n-nav-language-menu:has(li:nth-child(2):last-child) li {
    display: flex;
    align-items: center;
    border: none;
  }

  .n-nav-language-menu:has(li:nth-child(2):last-child) .n-nav-language-menu__item:first-child::after {
    content: "/";
    pointer-events: none;
    margin-left: 2.667vw;
  }
}