/*====================
  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%;
    }
  }

}


/*====================
  nav
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .nav {
    width: 100%;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 5;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  }
  .nav__list {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }
  .nav__item {
    /* width: calc( 100% / 5 ); */
    width: calc( 100% / 4 );
    min-height: 60px;
  }
  .nav__item a {
    display: grid;
    place-content: center;
    width: 100%;
    height: 100%;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.08em;
    color: #104C92;
    transition: 0.3s all ease;
    position: relative;
  }
  .nav__item.active a::before,
  .nav__item a:hover::before {
    content: "";
    width: 100%;
    height: 2px;
    color: #104C92;
    background-color: #104C92;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
/*===== SP =====*/
@media screen and (max-width: 767px) {
  .nav {
    width: 100%;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 5;
    box-shadow: 0 1.067vw 1.067vw 0 rgba(0, 0, 0, 0.25);
    overflow-x: scroll;
  }
  .nav__list {
    display: flex;
    justify-content: center;
    width: 190vw;
    margin: 0 auto;
  }
  html[lang="en"] .nav__list {
    width: 160vw;
  }
  .nav__item {
    /* width: calc( 100% / 5 ); */
    width: calc( 100% / 4 );
    min-height: 16vw;
  }
  .nav__item a {
    display: grid;
    place-content: center;
    width: 100%;
    height: 100%;
    font-size: 4.267vw;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.08em;
    color: #104C92;
    transition: 0.3s all ease;
    position: relative;
  }
  .nav__item.active a::before,
  .nav__item a:hover::before {
    content: "";
    width: 100%;
    height: 0.533vw;
    color: #104C92;
    background-color: #104C92;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}


/*====================
  lead
====================*/

/*===== Monitor =====*/
@media screen and (min-width: 1431px) {
  .lead {
    overflow-x: hidden;
    position: relative;
  }
  .lead::before {
    content: "";
    width: 46vw;
    height: 100%;
    background-color: #F5F5F5;
    position: absolute;
    top: 0;
    right: 0;
  }
  .lead__wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 0;
    box-sizing: border-box;
    position: relative;
  }
  .lead__inner {
    width: 100%;
    padding: 40px 185px;
    box-sizing: border-box;
    position: relative;
  }
  .lead__inner::before {
    content: "";
    width: 180px;
    height: 330px;
    background-color: rgba(245, 245, 245, 0.7);
    position: absolute;
    top: -8px;
    left: 120px;
  }
  .lead__box {
    display: grid;
    row-gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 65px 150px;
    background-color: #104C92;
    box-sizing: border-box;
    position: relative;
  }
  .lead__box::before {
    content: "";
    width: 370px;
    height: 185px;
    background-image: url("/nnmoa/uploads/lead_bg01_new.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -40px;
    right: -220px;
  }
  .lead__box::after {
    content: "";
    width: 370px;
    height: 202px;
    background-image: url("/nnmoa/uploads/lead_bg02_new.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -18px;
    left: -220px;
  }
  .lead__title {
    font-size: 32px;
    text-align: center;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .lead__textarea {
    display: grid;
    row-gap: 8px;
  }
  .lead__text {
    font-size: 16px;
    text-align: center;
    line-height: 2;
    color: #fff;
  }

  /* .lead.active */
  .lead::before {
    opacity: 0;
  }
  .lead.active::before {
    opacity: 0;
    animation-name: fadeinLead01;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinLead01 {
    0% {
      opacity: 1;
      transform: translateX(46vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .lead__box::before {
    opacity: 0;
  }
  .lead.active .lead__box::before {
    animation-name: fadeinLead02;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinLead02 {
    0% {
      opacity: 1;
      transform: translateX(370px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .lead__inner::before {
    opacity: 0;
  }
  .lead.active .lead__inner::before {
    animation-name: fadeinLead03;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinLead03 {
    0% {
      opacity: 1;
      transform: translateY(330px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .lead__box::after {
    opacity: 0;
  }
  .lead.active .lead__box::after {
    animation-name: fadeinLead04;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinLead04 {
    0% {
      opacity: 1;
      transform: translateX(-202px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .lead__textarea {
    opacity: 0;
  }
  .lead__textarea.active {
    animation-name: fadeinLead05;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinLead05 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
/*===== PC =====*/
@media screen and (max-width: 1430px) and (min-width: 768px) {
  .lead {
    overflow-x: hidden;
    padding: 160px 0;
    position: relative;
  }
  .lead::before {
    content: "";
    width: 80vw;
    height: 92px;
    background-color: #F5F5F5;
    position: absolute;
    top: 85px;
    right: 0;
  }
  .lead__wrap {
    width: 100%;
  }
  .lead__inner {
    width: 100%;
    position: relative;
  }
  .lead__inner::before {
    content: "";
    width: 42.667vw;
    height: 177px;
    background-color: rgba(245, 245, 245, 0.7);
    position: absolute;
    bottom: -159px;
    left: 0;
  }
  .lead__box {
    display: grid;
    row-gap: 40px;
    padding: 95px 185px 115px;
    background-color: #104C92;
    position: relative;
  }
  .lead__box::before {
    content: "";
    width: 370px;
    height: 185px;
    background-image: url("/nnmoa/uploads/lead_bg01_new.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -100px;
    right: 0px;
  }
  .lead__box::after {
    content: "";
    width: 370px;
    height: 202px;
    background-image: url("/nnmoa/uploads/lead_bg02_new.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -100px;
    left: 0px;
  }
  .lead__title {
    font-size: 32px;
    text-align: center;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .lead__textarea {
    display: grid;
    row-gap: 8px;
  }
  .lead__text {
    font-size: 16px;
    text-align: center;
    line-height: 2;
    color: #fff;
  }

  /* .lead.active */
  .lead::before {
    opacity: 0;
  }
  .lead.active::before {
    opacity: 0;
    animation-name: fadeinLead01;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinLead01 {
    0% {
      opacity: 1;
      transform: translateX(46vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .lead__box::before {
    opacity: 0;
  }
  .lead.active .lead__box::before {
    animation-name: fadeinLead02;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinLead02 {
    0% {
      opacity: 1;
      transform: translateX(370px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .lead__inner::before {
    opacity: 0;
  }
  .lead.active .lead__inner::before {
    animation-name: fadeinLead03;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinLead03 {
    0% {
      opacity: 1;
      transform: translateY(330px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .lead__box::after {
    opacity: 0;
  }
  .lead.active .lead__box::after {
    animation-name: fadeinLead04;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinLead04 {
    0% {
      opacity: 1;
      transform: translateX(-202px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .lead__textarea {
    opacity: 0;
  }
  .lead__textarea.active {
    animation-name: fadeinLead05;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinLead05 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
/*===== SP =====*/
@media screen and (max-width: 767px) {
  .lead {
    padding: 42.667vw 0;
    position: relative;
    overflow: hidden;
  }
  .lead::before {
    content: "";
    width: 80vw;
    height: 24.533vw;
    background-color: #F5F5F5;
    position: absolute;
    top: 22.667vw;
    right: 0;
  }
  .lead__wrap {
    width: 100%;
  }
  .lead__inner {
    width: 100%;
    position: relative;
  }
  .lead__inner::before {
    content: "";
    width: 42.667vw;
    height: 47.2vw;
    background-color: rgba(245, 245, 245, 0.7);
    position: absolute;
    bottom: -42.667vw;
    left: 0;
  }
  .lead__box {
    display: grid;
    row-gap: 5.333vw;
    padding: 18.667vw 5.333vw 28vw;
    background-color: #104C92;
    position: relative;
  }
  .lead__box::before {
    content: "";
    width: 68.267vw;
    height: 34.133vw;
    background-image: url("/nnmoa/uploads/lead_bg01_new.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -26.667vw;
    right: 0px;
  }
  .lead__box::after {
    content: "";
    width: 80vw;
    height: 43.733vw;
    background-image: url("/nnmoa/uploads/lead_bg02_new.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -26.667vw;
    left: 0px;
  }
  .lead__title {
    font-size: 7.467vw;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .lead__textarea {
    display: grid;
    row-gap: 2.133vw;
  }
  .lead__text {
    font-size: 3.733vw;
    line-height: 2;
    color: #fff;
  }

  /* .lead.active */
  .lead::before {
    opacity: 0;
  }
  .lead.active::before {
    opacity: 0;
    animation-name: fadeinLead01;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinLead01 {
    0% {
      opacity: 1;
      transform: translateX(46vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .lead__box::before {
    opacity: 0;
  }
  .lead.active .lead__box::before {
    animation-name: fadeinLead02;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinLead02 {
    0% {
      opacity: 1;
      transform: translateX(46vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .lead__inner::before {
    opacity: 0;
  }
  .lead.active .lead__inner::before {
    animation-name: fadeinLead03;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinLead03 {
    0% {
      opacity: 1;
      transform: translateY(40vw);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .lead__box::after {
    opacity: 0;
  }
  .lead.active .lead__box::after {
    animation-name: fadeinLead04;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinLead04 {
    0% {
      opacity: 1;
      transform: translateX(-46vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .lead__textarea {
    opacity: 0;
  }
  .lead__textarea.active {
    animation-name: fadeinLead05;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinLead05 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}


/*====================
  museum
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .museum {
    display: grid;
    row-gap: 60px;
    padding: 120px 0;
    position: relative;
    z-index: 3;
    overflow: hidden;
    background-color: #000;
  }
  .museum::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("/nnmoa/uploads/museum_bg2.jpg");
    background-size: 2560px auto;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  .museum::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .museum__heading {
    display: grid;
    row-gap: 16px;
    color: #fff;
    text-align: center;
    padding-bottom: 32px;
    position: relative;
  }
  .museum__heading::before {
    content: "";
    width: 90px;
    height: 4px;
    color: #fff;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .museum__heading-text {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .museum__heading-title {
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  html[lang="en"] .museum__heading-title {
    line-height: 1.2;
  }
  .museum__wrap {
    display: grid;
    row-gap: 80px;
    max-width: 1000px;
    padding: 0 30px;
    margin: 0 auto;
  }
  .museum-content {
    display: grid;
    row-gap: 40px;
  }
  .museum-content__title {
    font-size: 32px;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .museum-content__textarea {
    display: grid;
    row-gap: 20px;
  }
  .museum-content__morearea {
    display: none;
  }
  .museum-content__morearea-textarea {
    display: grid;
    row-gap: 20px;
  }
  .museum-content__more-button {
    display: grid;
    place-content: center;
    max-width: 335px;
    width: 100%;
    min-height: 44px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #fff;
    cursor: pointer;
  }
  .museum-content__more-button span {
    padding-right: 17px;
    position: relative;
  }
  .museum-content__more-button span::before {
    content: "";
    width: 13px;
    height: 13px;
    background-image: url("/common/img/nnmoa/index/museum_icon_plus.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .museum-content__more-button.open span::before {
    content: "";
    width: 13px;
    height: 2px;
    background-image: url("/common/img/nnmoa/index/museum_icon_minus.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .museum-content__text {
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 2;
  }
  .museum-greeting {
    padding-top: 40px;
    padding-left: 144px;
    position: relative;
  }
  .museum-greeting__thumb {
    width: 180px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .museum-greeting__box {
    display: grid;
    row-gap: 20px;
    max-width: 856px;
    margin-left: auto;
    padding: 40px 40px 40px 80px;
    background-color: #fff;
    box-sizing: border-box;
  }
  .museum-greeting__title {
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .museum-greeting__text {
    font-size: 16px;
    line-height: 2;
  }

  /* .museum.active */
  .museum .museum__heading {
    opacity: 0;
  }
  .museum.active .museum__heading {
    opacity: 0;
    animation-name: fadeinMuseum01;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinMuseum01 {
    0% {
      opacity: 1;
      transform: translateX(-15vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .museum-content__textarea,
  .museum .button {
    opacity: 0;
  }
  .museum-content__textarea.active,
  .museum .button.active {
    opacity: 0;
    animation-name: fadeinMuseum02;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  .museum .button.active {
    animation-delay: 0.2s;
  }
  @keyframes fadeinMuseum02 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
/*===== SP =====*/
@media screen and (max-width: 767px) {
  .museum {
    display: grid;
    row-gap: 10.667vw;
    padding: 16vw 5.333vw;
    position: relative;
    z-index: 3;
    overflow: hidden;
    background-color: #000;
    box-sizing: border-box;
  }
  .museum::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("/nnmoa/uploads/museum_bg2.jpg");
    background-size: calc( 2560px * 1.2 ) auto;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  html[lang="en"] .museum::before {
    background-size: calc( 2560px * 1.3 ) auto;
  }
  .museum::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .museum__heading {
    display: grid;
    row-gap: 1.067vw;
    color: #fff;
    padding-bottom: 5.333vw;
    position: relative;
  }
  .museum__heading::before {
    content: "";
    width: 12vw;
    height: 0.533vw;
    color: #fff;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .museum__heading-text {
    font-size: 3.733vw;
    line-height: 1.7;
    letter-spacing: 0.08em;
  }
  .museum__heading-title {
    font-size: 7.467vw;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  html[lang="en"] .museum__heading-title {
    line-height: 1.2;
  }
  .museum__wrap {
    display: grid;
    row-gap: 10.667vw;
    width: 100%;
    margin: 0 auto;
  }
  .museum-content {
    display: grid;
    row-gap: 5.333vw;
  }
  .museum-content__title {
    font-size: 6.4vw;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .museum-content__textarea {
    display: grid;
    row-gap: 2.667vw;
  }
  .museum-content__morearea {
    display: none;
  }
  .museum-content__morearea-textarea {
    display: grid;
    row-gap: 2.667vw;
  }
  .museum-content__more-button {
    display: grid;
    place-content: center;
    width: 100%;
    min-height: 11.733vw;
    margin: 0 auto;
    font-size: 3.733vw;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #fff;
    cursor: pointer;
  }
  .museum-content__more-button span {
    padding-right: 4.533vw;
    position: relative;
  }
  .museum-content__more-button span::before {
    content: "";
    width: 3.467vw;
    height: 3.467vw;
    background-image: url("/common/img/nnmoa/index/museum_icon_plus.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .museum-content__more-button.open span::before {
    content: "";
    width: 3.467vw;
    height: 0.533vw;
    background-image: url("/common/img/nnmoa/index/museum_icon_minus.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .museum-content__text {
    font-size: 3.733vw;
    color: #fff;
    line-height: 2;
  }

  /* .museum.active */
  .museum .museum__heading {
    opacity: 0;
  }
  .museum.active .museum__heading {
    opacity: 0;
    animation-name: fadeinMuseum01;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinMuseum01 {
    0% {
      opacity: 1;
      transform: translateX(-40vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .museum-content__textarea,
  .museum .button {
    opacity: 0;
  }
  .museum-content__textarea.active,
  .museum .button.active {
    opacity: 0;
    animation-name: fadeinMuseum02;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  .museum .button.active {
    animation-delay: 0.2s;
  }
  @keyframes fadeinMuseum02 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fadeinMuseum02 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}


/*====================
  exhibition
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .exhibition,
  .art {
    display: grid;
    row-gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 30px 120px;
  }
  .exhibition__heading {
    display: grid;
    row-gap: 16px;
    padding-bottom: 32px;
    position: relative;
  }
  .exhibition__heading::before {
    content: "";
    width: 90px;
    height: 4px;
    color: #104C92;
    background-color: #104C92;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .exhibition__heading-text {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .exhibition__heading-title {
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .exhibition-content {
    display: grid;
    row-gap: 20px;
  }
  .exhibition-content__title {
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .exhibition-content__text {
    font-size: 16px;
    line-height: 2;
  }

  /* .exhibition.active */
  .exhibition .exhibition__heading {
    opacity: 0;
  }
  .exhibition.active .exhibition__heading {
    opacity: 0;
    animation-name: fadeinExhibition01;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinExhibition01 {
    0% {
      opacity: 0;
      transform: translateX(-30vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .exhibition-content__text,
  .exhibition .button {
    opacity: 0;
  }
  .exhibition-content__text.active,
  .exhibition .button.active {
    opacity: 0;
    animation-name: fadeinExhibition02;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  .exhibition .button.active {
    animation-delay: 0.2s;
  }
  @keyframes fadeinExhibition02 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /* .art.active */
  .art .exhibition__heading {
    opacity: 0;
  }
  .art.active .exhibition__heading {
    opacity: 0;
    animation-name: fadeinExhibition01;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  .art .button {
    opacity: 0;
  }
  .art .exhibition-content__text.active,
  .art .button.active {
    opacity: 0;
    animation-name: fadeinExhibition02;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  .art .button.active {
    animation-delay: 0.2s;
  }
  @keyframes fadeinExhibition02 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
/*===== SP =====*/
@media screen and (max-width: 767px) {
  .exhibition,
  .art {
    display: grid;
    row-gap: 10.667vw;
    width: 100%;
    margin: 0 auto;
    padding: 9.067vw 5.333vw 10.667vw;
    box-sizing: border-box;
  }
  .exhibition__heading {
    display: grid;
    row-gap: 1.067vw;
    padding-bottom: 5.333vw;
    position: relative;
  }
  .exhibition__heading::before {
    content: "";
    width: 12vw;
    height: 0.533vw;
    color: #104C92;
    background-color: #104C92;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .exhibition__heading-text {
    font-size: 3.733vw;
    line-height: 1.7;
    letter-spacing: 0.08em;
  }
  .exhibition__heading-title {
    font-size: 7.467vw;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .exhibition-content {
    display: grid;
    row-gap: 5.333vw;
  }
  .exhibition-content__title {
    font-size: 6.4vw;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .exhibition-content__text {
    font-size: 3.733vw;
    line-height: 2;
  }

  /* .exhibition.active */
  .exhibition .exhibition__heading {
    opacity: 0;
  }
  .exhibition.active .exhibition__heading {
    opacity: 0;
    animation-name: fadeinExhibition01;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinExhibition01 {
    0% {
      opacity: 0;
      transform: translateX(-40vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .exhibition-content__text,
  .exhibition .button {
    opacity: 0;
  }
  .exhibition-content__text.active,
  .exhibition .button.active {
    opacity: 0;
    animation-name: fadeinExhibition02;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  .exhibition .button.active {
    animation-delay: 0.2s;
  }
  @keyframes fadeinExhibition02 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /* .art.active */
  .art .exhibition__heading {
    opacity: 0;
  }
  .art.active .exhibition__heading {
    opacity: 0;
    animation-name: fadeinExhibition01;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  .art .button {
    opacity: 0;
  }
  .art .exhibition-content__text.active,
  .art .button.active {
    opacity: 0;
    animation-name: fadeinExhibition02;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  .art .button.active {
    animation-delay: 0.2s;
  }
  @keyframes fadeinExhibition02 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}


/*====================
  special
====================*/
/*===== Monitor =====*/
@media screen and (min-width: 1431px) {
  .special {
    padding-top: 170px;
    position: relative;
    overflow: hidden;
  }
  .special::before {
    content: "";
    width: 59.5vw;
    height: 120px;
    background-color: #EEF5FB;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 2;
  }
  .special__background {
    padding-bottom: 120px;
    background-color: #EEF5FB;
    position: relative;
  }
  .special__background::before {
    content: "";
    width: 40.5vw;
    height: 242px;
    background-color: #333333;
    position: absolute;
    top: -68px;
    right: 0;
    z-index: 2;
  }
  .special__wrap {
    display: grid;
    row-gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
  }
  .special__wrap::before {
    content: "";
    width: 492px;
    height: 277px;
    background-image: url("/nnmoa/uploads/special_bg01_new.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: calc( -120px - 50px );
    right: 30px;
    z-index: 3;
  }
  .special__heading {
    display: grid;
    row-gap: 16px;
    padding-bottom: 32px;
    position: relative;
  }
  .special__heading::before {
    content: "";
    width: 90px;
    height: 4px;
    color: #104C92;
    background-color: #104C92;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .special__heading-text {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .special__heading-title {
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .special-lead {
    display: grid;
    row-gap: 40px;
  }
  .special-lead__title {
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .special-lead__text {
    font-size: 16px;
    line-height: 2;
  }
  .special-article {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .special-article__item {
    width: calc( ( 100% - 40px )/ 3);
    background-color: #fff;
    border: 1px solid #333;
    box-sizing: border-box;
  }
  .special-article__thumb {
    width: 100%;
  }
  .special-article__thumb img {
    width: 100%;
  }
  .special-article__box {
    display: grid;
    row-gap: 20px;
    padding: 20px;
  }
  .special-article__textarea {
    display: grid;
    row-gap: 10px;
  }
  .special-article__title {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
  .special-article__text {
    font-size: 14px;
    line-height: 1.7;
  }
  .special-article__linkarea {
    text-align: right;
  }
  .special-article__link-text {
    display: inline-block;
    font-size: 14px;
    line-height: 1.7;
    color: #104C92;
    padding-right: 16px;
    position: relative;
    transition: all 0.3s ease;
  }
  .special-article__link-text:hover {
    color: #104C92;
    text-decoration: underline;
  }
  .special-article__link-text::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("/common/img/icon_arrow_accent_blue.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 2px;
    right: 0;
  }

  /* .special.active */
  .special .special__heading {
    opacity: 0;
  }
  .special.active .special__heading {
    opacity: 0;
    animation-name: fadeinSpecial01;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinSpecial01 {
    0% {
      opacity: 1;
      transform: translateX(-30vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .special .special__wrap::before,
  .special .special__background::before {
    opacity: 0;
  }
  .special.active .special__wrap::before,
  .special.active .special__background::before {
    opacity: 0;
    animation-name: fadeinSpecial02;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinSpecial02 {
    0% {
      opacity: 1;
      transform: translateX(30vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .special-lead__text,
  .special-article {
    opacity: 0;
  }
  .special-lead__text.active,
  .special-article.active {
    opacity: 0;
    animation-name: fadeinSpecial03;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  .special-article.active {
    animation-delay: 0.2s;
  }
  @keyframes fadeinSpecial03 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
/*===== PC =====*/
@media screen and (max-width: 1430px) and (min-width: 768px) {
  .special {
    padding-top: 263px;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  .special::before {
    content: "";
    width: 72vw;
    height: 55px;
    background-color: #EEF5FB;
    position: absolute;
    top: calc( 263px - 55px );
    left: 0;
    z-index: 2;
  }
  .special__background {
    padding-bottom: 60px;
    background-color: #EEF5FB;
    position: relative;
  }
  .special__background::before {
    content: "";
    width: 74.667vw;
    height: 300px;
    background-color: #333333;
    position: absolute;
    top: -263px;
    right: 0;
    z-index: -1;
  }
  .special__wrap {
    display: grid;
    row-gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
  }
  .special__wrap::before {
    content: "";
    width: 325px;
    height: 183px;
    background-image: url("/nnmoa/uploads/special_bg01_new.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: calc( -183px - 20px );
    right: 15px;
    z-index: 3;
  }
  .special__heading {
    display: grid;
    row-gap: 16px;
    padding-bottom: 32px;
    position: relative;
  }
  .special__heading::before {
    content: "";
    width: 90px;
    height: 4px;
    color: #104C92;
    background-color: #104C92;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .special__heading-text {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .special__heading-title {
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .special-lead {
    display: grid;
    row-gap: 40px;
  }
  .special-lead__title {
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .special-lead__text {
    font-size: 16px;
    line-height: 2;
  }
  .special-article {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .special-article__item {
    width: calc( ( 100% - 40px )/ 3);
    background-color: #fff;
    border: 1px solid #333;
    box-sizing: border-box;
  }
  .special-article__thumb {
    width: 100%;
  }
  .special-article__thumb img {
    width: 100%;
  }
  .special-article__box {
    display: grid;
    row-gap: 20px;
    padding: 20px;
  }
  .special-article__textarea {
    display: grid;
    row-gap: 10px;
  }
  .special-article__title {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
  .special-article__text {
    font-size: 14px;
    line-height: 1.7;
  }
  .special-article__linkarea {
    text-align: right;
  }
  .special-article__link-text {
    display: inline-block;
    font-size: 14px;
    line-height: 1.7;
    color: #104C92;
    padding-right: 16px;
    position: relative;
    transition: all 0.3s ease;
  }
  .special-article__link-text:hover {
    color: #104C92;
    text-decoration: underline;
  }
  .special-article__link-text::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("/common/img/icon_arrow_accent_blue.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 2px;
    right: 0;
  }

  /* .special.active */
  .special .special__heading {
    opacity: 0;
  }
  .special.active .special__heading {
    opacity: 0;
    animation-name: fadeinSpecial01;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinSpecial01 {
    0% {
      opacity: 1;
      transform: translateX(-30vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .special .special__wrap::before,
  .special .special__background::before {
    opacity: 0;
  }
  .special.active .special__wrap::before,
  .special.active .special__background::before {
    opacity: 0;
    animation-name: fadeinSpecial02;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinSpecial02 {
    0% {
      opacity: 1;
      transform: translateX(30vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .special-lead__text,
  .special-article {
    opacity: 0;
  }
  .special-lead__text.active,
  .special-article.active {
    opacity: 0;
    animation-name: fadeinSpecial03;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  .special-article.active {
    animation-delay: 0.2s;
  }
  @keyframes fadeinSpecial03 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
/*===== SP =====*/
@media screen and (max-width: 767px) {
  .special {
    padding-top: 70.133vw;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  .special::before {
    content: "";
    width: 72vw;
    height: 6.333vw;
    background-color: #EEF5FB;
    position: absolute;
    top: calc( 70.133vw - 6vw );
    left: 0;
    z-index: 2;
  }
  .special::after {
    content: "";
    width: 62.133vw;
    height: 15vw;
    background-color: #EEF5FB;
    position: absolute;
    top: calc( 70.133vw - 15vw );
    left: 0;
    z-index: 2;
  }
  .special__background {
    padding-bottom: 16vw;
    background-color: #EEF5FB;
    position: relative;
  }
  .special__background::before {
    content: "";
    width: 74.667vw;
    height: 80vw;
    background-color: #333333;
    position: absolute;
    top: -70.133vw;
    right: 0;
    z-index: -1;
  }
  .special__wrap {
    display: grid;
    row-gap: 10.667vw;
    width: 100%;
    margin: 0 auto;
    padding: 0 5.333vw;
    position: relative;
    box-sizing: border-box;
  }
  .special__wrap::before {
    content: "";
    width: 86.667vw;
    height: 48.8vw;
    background-image: url("/nnmoa/uploads/special_bg01_new.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: calc( -48.8vw - 5.333vw );
    right: 6.667vw;
    z-index: 3;
  }
  .special__heading {
    display: grid;
    row-gap: 1.067vw;
    padding-bottom: 5.333vw;
    position: relative;
  }
  .special__heading::before {
    content: "";
    width: 12vw;
    height: 0.533vw;
    color: #104C92;
    background-color: #104C92;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .special__heading-text {
    font-size: 3.733vw;
    line-height: 1.7;
    letter-spacing: 0.08em;
  }
  .special__heading-title {
    font-size: 7.467vw;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .special-lead {
    display: grid;
    row-gap: 5.333vw;
  }
  .special-lead__title {
    font-size: 6.4vw;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .special-lead__text {
    font-size: 3.733vw;
    line-height: 2;
  }
  .special-article {
    display: grid;
    row-gap: 5.333vw;
  }
  .special-article__item {
    width: 100%;
    background-color: #fff;
    border: 0.267vw solid #333;
    box-sizing: border-box;
  }
  .special-article__thumb {
    width: 100%;
  }
  .special-article__thumb img {
    width: 100%;
  }
  .special-article__box {
    display: grid;
    row-gap: 5.333vw;
    padding: 5.333vw;
  }
  .special-article__textarea {
    display: grid;
    row-gap: 2.667vw;
  }
  .special-article__title {
    font-size: 5.333vw;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
  .special-article__text {
    font-size: 3.733vw;
    line-height: 1.7;
  }
  .special-article__linkarea {
    text-align: right;
  }
  .special-article__link-text {
    display: inline-block;
    font-size: 3.733vw;
    line-height: 1.7;
    color: #104C92;
    padding-right: 4.267vw;
    position: relative;
    transition: all 0.3s ease;
  }
  .special-article__link-text:hover {
    color: #104C92;
    text-decoration: underline;
  }
  .special-article__link-text::before {
    content: "";
    width: 2.667vw;
    height: 2.667vw;
    background-image: url("/common/img/icon_arrow_accent_blue.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0.533vw;
    right: 0;
  }

  /* .special.active */
  .special .special__heading {
    opacity: 0;
  }
  .special.active .special__heading {
    opacity: 0;
    animation-name: fadeinSpecial01;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinSpecial01 {
    0% {
      opacity: 1;
      transform: translateX(-40vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .special .special__wrap::before,
  .special .special__background::before {
    opacity: 0;
  }
  .special.active .special__wrap::before,
  .special.active .special__background::before {
    opacity: 0;
    animation-name: fadeinSpecial02;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinSpecial02 {
    0% {
      opacity: 1;
      transform: translateX(40vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .special-lead__text,
  .special-article {
    opacity: 0;
  }
  .special-lead__text.active,
  .special-article.active {
    opacity: 0;
    animation-name: fadeinSpecial03;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  .special-article.active {
    animation-delay: 0.2s;
  }
  @keyframes fadeinSpecial03 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}


/*====================
  news
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .news {
    padding: 120px 0;
    background-color: #333;
  }
  .news__wrap {
    display: grid;
    row-gap: 60px;
    max-width: 1000px;
    padding: 0 30px;
    margin: 0 auto;
  }
  .news__heading {
    display: grid;
    row-gap: 16px;
    padding-bottom: 32px;
    position: relative;
  }
  .news__heading::before {
    content: "";
    width: 90px;
    height: 4px;
    color: #fff;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .news__heading-text {
    font-size: 20px;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .news__heading-title {
    font-size: 40px;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .news__content {
    display: grid;
    row-gap: 40px;
  }
  .news__list {
    display: grid;
    row-gap: 20px;
  }
  .news__item {
    display: inline-grid;
    justify-content: flex-start;
    row-gap: 4px;
  }
  .news__date {
    font-size: 16px;
    color: #fff;
    line-height: 2;
  }
  a.news__title {
    font-size: 16px;
    color: #fff;
    line-height: 2;
  }
  a.news__title:hover {
    text-decoration: underline;
  }
  .news__more {
    text-align: right;
  }
  .news__more-link {
    display: inline-block;
    font-size: 14px;
    line-height: 1.7;
    color: #3799cc;
    padding-right: 16px;
    position: relative;
    transition: all 0.3s ease;
  }
  .news__more-link:hover {
    color: #3799cc;
    text-decoration: underline;
  }
  .news__more-link::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("/common/img/icon_arrow_blue.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 2px;
    right: 0;
  }

  /* .news.active */
  .news .news__wrap {
    opacity: 0;
  }
  .news.active .news__wrap {
    opacity: 0;
    animation-name: fadeinNews01;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinNews01 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
/*===== SP =====*/
@media screen and (max-width: 767px) {
  .news {
    padding: 16vw 0;
    background-color: #333;
  }
  .news__wrap {
    display: grid;
    row-gap: 10.667vw;
    width: 100%;
    padding: 0 5.333vw;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .news__heading {
    display: grid;
    row-gap: 1.067vw;
    padding-bottom: 5.333vw;
    position: relative;
  }
  .news__heading::before {
    content: "";
    width: 12vw;
    height: 0.533vw;
    color: #fff;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .news__heading-text {
    font-size: 3.733vw;
    color: #fff;
    line-height: 1.7;
    letter-spacing: 0.08em;
  }
  .news__heading-title {
    font-size: 7.467vw;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .news__content {
    display: grid;
    row-gap: 10.667vw;
  }
  .news__list {
    display: grid;
    row-gap: 5.333vw;
  }
  .news__item {
    display: inline-grid;
    justify-content: flex-start;
    row-gap: 1.067vw;
  }
  .news__date {
    font-size: 3.733vw;
    color: #fff;
    line-height: 2;
  }
  a.news__title {
    font-size: 3.733vw;
    color: #fff;
    line-height: 2;
  }
  a.news__title:hover {
    text-decoration: underline;
  }
  .news__more {
    text-align: right;
  }
  .news__more-link {
    display: inline-block;
    font-size: 3.733vw;
    line-height: 1.7;
    color: #3799cc;
    padding-right: 4.267vw;
    position: relative;
    transition: all 0.3s ease;
  }
  .news__more-link:hover {
    color: #3799cc;
    text-decoration: underline;
  }
  .news__more-link::before {
    content: "";
    width: 2.667vw;
    height: 2.667vw;
    background-image: url("/common/img/icon_arrow_blue.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0.533vw;
    right: 0;
  }

  /* .news.active */
  .news .news__wrap {
    opacity: 0;
  }
  .news.active .news__wrap {
    opacity: 0;
    animation-name: fadeinNews01;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadeinNews01 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}