/*====================
  header ※あとで移行する
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  header.n-header {
    height: auto;
  }

  .n-header__main {
    background-color: #fff;
    padding: 13px 0 13px 100px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    height: 70px;
  }

  .n-header__icon {
    width: 181px;
  }

  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;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(8px);
    padding: 72px 220px 60px;
    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;
  }

  .n-header__main {
    background-color: #fff;
    padding: 17px 0 17px 20px;
    box-sizing: border-box;
    width: 100%;
  }

  .n-header__icon {
    width: 148px;
  }

  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;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(8px);
    padding: 100px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    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: 20px;
  }

  .n-nav__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .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: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 36px */
    letter-spacing: 1.6px;
    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;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .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__list:not(:first-child) {
    padding-left: 20px;
  }

  .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;
    z-index: 2;
  }

  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-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: 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;
  }
}


/*====================
  nnmoa-main,nnmoa-sec,nnmoa-cont,nnmoa-text
====================*/
.u-bg-gray {
  background-color: #f5f5f5;
}

.nnmoa-main.u-bg-gray {
  background-color: #f5f5f5;
}

/*===== PC =====*/
@media screen and (min-width: 768px) {
  .nnmoa-main {
    background-color: #fff;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .nnmoa-sec {
    max-width: 1040px;
    width: 100%;
    display: flex;
    padding: 60px 20px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .nnmoa-sec + .nnmoa-sec {
    padding-top: 100px;
  }

  .nnmoa-sec + *:has(> .nnmoa-sec) {
    margin-top: 100px;
  }

  .nnmoa-main > .nnmoa-sec:first-child {
    padding-top: 130px;
  }

  .nnmoa-sec:last-child {
    padding-bottom: 100px;
  }

  .nnmoa-sec:has(.nnmoa-top__nav) {
    padding-bottom: 60px;
  }

  .nnmoa-cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .nnmoa-text {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    /* 25.2px */
  }

  .nnmoa-text__note {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
  }

  .nnmoa-text__note .nnmoa-text__link {
    color: #104C92;
  }

  .nnmoa-text.nnmoa-text--right {
    text-align: right;
  }

  .nnmoa-text.nnmoa-text--credit {
    color: #666;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 25.2px */
  }

  a.nnmoa-link {
    color: #104C92;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
    display: flex;
    align-items: center;
    margin-top: 10px;
  }

  .nnmoa-text a.nnmoa-link {
    justify-content: flex-end;
  }

  a.nnmoa-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;
  }

  a.nnmoa-link[href*=".pdf"]::after {
    background-image: url(/common/img/education/icon_pdf.svg);
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(17%) sepia(85%) saturate(2099%) hue-rotate(201deg) brightness(94%) contrast(88%);
  }
}

/*===== SP =====*/
@media screen and (max-width: 767px) {
  .nnmoa-main {
    background-color: #fff;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .nnmoa-sec {
    display: flex;
    padding: 16vw 5.333vw 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10.667vw;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .nnmoa-sec + .nnmoa-sec {
    padding-top: 26.667vw;
  }

  .nnmoa-sec + *:has(> .nnmoa-sec) {
    margin-top: 26.667vw;
  }

  .nnmoa-main > .nnmoa-sec:first-child {
    padding-top: 10.667vw;
  }

  .nnmoa-sec:last-child {
    padding-bottom: 26.667vw;
  }

  .nnmoa-sec:has(.nnmoa-top__nav) {
    padding-bottom: 16vw;
  }

  .nnmoa-cont {
    display: flex;
    flex-direction: column;
    gap: 5.333vw;
  }

  .nnmoa-text {
    color: #333;
    font-size: 4.267vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    /* 6.72vw */
  }

  .nnmoa-text__note {
    font-size: 3.2vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
  }

  .nnmoa-text__note .nnmoa-text__link {
    color: #104C92;
  }

  .nnmoa-text.nnmoa-text--right {
    text-align: right;
  }

  .nnmoa-text.nnmoa-text--credit {
    color: #666;
    font-size: 3.2vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
  }

  a.nnmoa-link {
    color: #104C92;
    font-size: 4.267vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 7.68vw */
    letter-spacing: 0.341vw;
    display: flex;
    align-items: center;
    margin-top: 2.667vw;
  }

  .nnmoa-text a.nnmoa-link {
    justify-content: flex-end;
  }

  a.nnmoa-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;
  }

  a.nnmoa-link[href*=".pdf"]::after {
    background-image: url(/common/img/education/icon_pdf.svg);
    width: 6.4vw;
    height: 6.4vw;
    filter: brightness(0) saturate(100%) invert(17%) sepia(85%) saturate(2099%) hue-rotate(201deg) brightness(94%) contrast(88%);
  }
}

/*====================
  nnmoa-heading
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .nnmoa-heading01 {
    background: #F5F5F5;
    display: flex;
    padding: 150px 0 40px 0;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nnmoa-heading01__title {
    color: #333;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 36px */
    letter-spacing: 1.92px;
  }

  .nnmoa-heading02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nnmoa-heading02__title {
    color: #333;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 32px */
    letter-spacing: 1.6px;
  }

  .nnmoa-heading02__text {
    color: #333;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    /* 28.8px */
    letter-spacing: 1.28px;
  }

  .nnmoa-heading03 {
    position: relative;
    padding-bottom: 20px;
  }

  .nnmoa-heading03__title {
    color: #333;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 27px */
  }

  .nnmoa-heading03__title .-small {
    color: #333;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 27px */
  }

  .nnmoa-heading03::before {
    content: "";
    width: 70px;
    height: 1px;
    color: #fff;
    background-color: #BABABA;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*===== SP =====*/
@media screen and (max-width: 767px) {
  .nnmoa-heading01 {
    background: #F5F5F5;
    display: flex;
    padding: 21.333vw 0 10.667vw 0;
    flex-direction: column;
    align-items: center;
    gap: 2.667vw;
  }

  .nnmoa-heading01__title {
    color: #333;
    text-align: center;
    font-size: 6.4vw;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 9.6vw */
    letter-spacing: 0.512vw;
  }

  .nnmoa-heading02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.667vw;
  }

  .nnmoa-heading02__title {
    color: #333;
    text-align: center;
    font-size: 5.333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 8.533vw */
    letter-spacing: 0.427vw;
  }

  .nnmoa-heading02__text {
    color: #333;
    text-align: center;
    font-size: 4.267vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    /* 7.68vw */
    letter-spacing: 0.341vw;
  }

  .nnmoa-heading03 {
    position: relative;
    padding-bottom: 5.333vw;
  }

  .nnmoa-heading03__title {
    color: #333;
    text-align: center;
    font-size: 4.8vw;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 7.2vw */
  }

  .nnmoa-heading03__title .-small {
    color: #333;
    text-align: center;
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 7.2vw */
  }

  .nnmoa-heading03::before {
    content: "";
    width: 18.667vw;
    height: 0.267vw;
    color: #fff;
    background-color: #BABABA;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}


/*====================
  nnmoa-profile
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .nnmoa-profile__list {
    max-width: 728px;
    width: 100%;
  }

  .nnmoa-profile__item {
    display: flex;
    padding: 30px 0;
    align-items: stretch;
    gap: 40px;
    position: relative;
    border-bottom: 1px solid #646464;
    background: #FFF;
  }

  .nnmoa-profile__content:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .nnmoa-profile__content {
    flex: 1;
  }

  hr.nnmoa-profile__border {
    background-color: #BABABA;
    border: none;
    width: 1px;
  }

  .nnmoa-profile__name {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 27px */
  }

  .nnmoa-profile__name-en {
    color: #646464;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    /* 23.8px */
    letter-spacing: 1.4px;
  }

  .nnmoa-profile__text {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    /* 25.2px */
  }
}

/*===== SP =====*/
@media screen and (max-width: 767px) {
  .nnmoa-profile__list {
    width: 100%;
    box-sizing: border-box;
  }

  .nnmoa-profile__item {
    display: flex;
    flex-direction: column;
    padding: 5.333vw 2.667vw;
    align-items: stretch;
    gap: 2.133vw;
    position: relative;
    border-bottom: 0.267vw solid #646464;
    background: #FFF;
  }

  .nnmoa-profile__content {
    width: 100%;
  }

  hr.nnmoa-profile__border {
    background-color: #BABABA;
    border: none;
    width: 100%;
    height: 0.267vw;
    margin: 0;
  }

  .nnmoa-profile__name {
    color: #000;
    font-size: 4.8vw;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 7.2vw */
  }

  .nnmoa-profile__name-en {
    color: #646464;
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    /* 6.347vw */
    letter-spacing: 0.373vw;
  }

  .nnmoa-profile__text {
    color: #000;
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    /* 6.72vw */
  }
}


/*====================
  nnmoa-ex-galler
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {

  /* メインギャラリー全体 */
  .nnmoa-ex-gallery {
    width: 100vw;
    overflow: hidden;
    /* 左右のはみ出しを許容しつつ、ページからはみ出さない */
  }

  /* メインスライダー */
  .nnmoa-ex-gallery__main {
    margin-bottom: 40px;
    position: relative;
  }

  .nnmoa-ex-gallery__item {
    width: 840px;
    /* 固定幅 */
    padding: 0 10px;
    /* 画像間の隙間 */
    transition: opacity 0.3s ease;
  }

  .nnmoa-ex-gallery__image-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 560px;
    margin: 0 auto;
  }

  .nnmoa-ex-gallery__ambient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    opacity: 0.5;
    z-index: 1;
  }

  .js-main-img {
    position: relative;
    z-index: 2;
    height: 100%;
    width: auto;
  }

  .nnmoa-ex-gallery__item img {
    width: auto;
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
  }

  .nnmoa-ex-gallery__caption {
    color: #666;
    text-align: left;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 21.6px */
    margin-top: 8px;
    text-decoration: none;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
  }

  .nnmoa-ex-gallery__caption.is-over::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url(/common/img/icon_arrow_accent_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nnmoa-ex-gallery__caption.is-over {
    padding-left: 16px;
    cursor: pointer;
  }

  .nnmoa-ex-gallery__caption.is-over:hover {
    text-decoration: underline;
  }

  /* サムネイル */
  .nnmoa-ex-gallery__thumb {
    max-width: 1102px;
    /* デザインに合わせた最大幅 */
    width: 100%;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
  }

  .nnmoa-ex-gallery__thumb-list {
    padding: 0 52px;
    /* 矢印ボタンのスペース */
  }

  .nnmoa-ex-gallery__thumb-item {
    width: 134px !important;
    /* デザイナー指定の固定幅 */
    aspect-ratio: 105.65/70.40;
    margin: 0 5px;
    cursor: pointer;
  }

  .nnmoa-ex-gallery__thumb-visual {
    aspect-ratio: 105.65/70.40;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nnmoa-ex-gallery__thumb-item img {
    width: auto;
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
  }

  /* 矢印のカスタマイズ */
  .js-thumb-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 0px;
    width: 32px;
    height: 32px;
    padding: 0;
  }

  .js-thumb-slider .slick-arrow img {
    width: 100%;
  }

  .js-thumb-slider .slick-prev {
    left: 0;
  }

  .js-thumb-slider .slick-next {
    right: 0;
  }

  .js-thumb-slider .slick-next img {
    transform: rotate(180deg);
  }

  /* 例：スライダーの最上部に固定する場合 */
  .nnmoa-ex-gallery {
    position: relative;
    padding-top: 4px;
    /* バーのスペースを空ける */
  }

  .nnmoa-ex-gallery__progress-wrap {
    position: absolute;
    top: 545px;
    left: 0;
    right: 0;
    width: 840px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    z-index: 10;
    width: 540px;
    margin: 0 auto;
    overflow: hidden;
  }

  .nnmoa-ex-gallery__progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #ffffff;
  }
}

/*===== SP =====*/
@media screen and (max-width: 767px) {

  /* メインギャラリー全体 */
  .nnmoa-ex-gallery {
    width: 100vw;
    overflow: hidden;
    /* 左右のはみ出しを許容しつつ、ページからはみ出さない */
  }

  /* メインスライダー */
  .nnmoa-ex-gallery__main {
    margin-bottom: 5.333vw;
    position: relative;
  }

  .nnmoa-ex-gallery__item {
    width: 100vw;
    /* 固定幅 */
    padding: 0;
    /* 画像間の隙間 */
    transition: opacity 0.3s ease;
  }

  .nnmoa-ex-gallery__image-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 3 / 2;
  }

  .nnmoa-ex-gallery__ambient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(1.333vw);
    opacity: 0.5;
    z-index: 1;
  }

  .js-main-img {
    position: relative;
    z-index: 2;
    height: 100%;
    width: auto;
  }

  .nnmoa-ex-gallery__item img {
    width: auto;
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
  }

  .nnmoa-ex-gallery__caption {
    color: #666;
    text-align: left;
    font-size: 3.2vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 5.76vw */
    margin-top: 2.133vw;
    text-decoration: none;
    padding: 0 5.333vw 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
  }

  .nnmoa-ex-gallery__caption.is-over {
    padding-left: 9.6vw;
    cursor: pointer;
  }

  .nnmoa-ex-gallery__caption.is-over:hover {
    text-decoration: underline;
  }

  .nnmoa-ex-gallery__caption.is-over::before {
    content: "";
    display: block;
    width: 3.2vw;
    height: 3.2vw;
    background-image: url(/common/img/icon_arrow_accent_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 5.333vw;
    top: 50%;
    transform: translateY(-50%);
  }

  .caption-more-btn {
    
  }

  /* サムネイル */
  .nnmoa-ex-gallery__thumb {
    width: 100%;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
  }

  .nnmoa-ex-gallery__thumb-list {
    padding: 0 5.333vw;
    /* 矢印ボタンのスペース */
  }

  .nnmoa-ex-gallery__thumb-item {
    width: 28vw !important;
    /* デザイナー指定の固定幅 */
    aspect-ratio: 105.65/70.40;
    margin: 0 1.067vw;
    cursor: pointer;
  }

  .nnmoa-ex-gallery__thumb-visual {
    aspect-ratio: 105.65/70.40;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nnmoa-ex-gallery__thumb-item img {
    width: auto;
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
  }

  /* 矢印のカスタマイズ */
  .js-thumb-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 0vw;
    width: 8.533vw;
    height: 8.533vw;
    padding: 0;
  }

  .js-thumb-slider .slick-arrow img {
    width: 100%;
  }

  .js-thumb-slider .slick-prev {
    left: 2.667vw;
  }

  .js-thumb-slider .slick-next {
    right: 2.667vw;
  }

  .js-thumb-slider .slick-next img {
    transform: rotate(180deg);
  }

  .nnmoa-ex-gallery__progress-wrap {
    position: absolute;
    top: 61.333vw;
    left: 0;
    right: 0;
    width: 90%;
    height: 0.8vw;
    background: rgba(255, 255, 255, 0.4);
    z-index: 10;
    margin: 0 auto;
    overflow: hidden;
  }

  .nnmoa-ex-gallery__progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #ffffff;
  }
}


/*====================
  nnmoa-tabs
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .nnmoa-tabs {
    padding-top: 60px;
  }

  .nnmoa-heading01+.nnmoa-tabs {
    padding-top: 20px;
  }

  /* 基本は非表示 */
  .nnmoa-tabs__content {
    display: none;
  }

  /* activeクラスがついた時だけ表示 */
  .nnmoa-tabs__content.is-active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
  }

  .nnmoa-tabs__nav {
    max-width: 1000px;
    width: 100%;
    display: flex;
    margin: 0 auto;
  }

  .nnmoa-tabs__trigger {
    width: 50%;
    cursor: pointer;
    border: none;
    background: none;
    padding: 16px 10px;
    transition: opacity 0.3s;
    color: #333;
    font-family: 'I-OTF-UD明朝Pro R';
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 27px */
    background-color: #fff;
    border-bottom: 1px solid #BABABA;
  }

  .nnmoa-tabs__trigger:hover {
    border-bottom: 2px solid #104C92;
    color: #104C92;
  }

  .nnmoa-tabs__trigger.is-active {
    border-bottom: 2px solid #104C92;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }
}

/*===== SP =====*/
@media screen and (max-width: 767px) {
  .nnmoa-tabs {
    padding-top: 16vw;
  }

  .nnmoa-heading01+.nnmoa-tabs {
    padding-top: 5.333vw;
  }

  /* 基本は非表示 */
  .nnmoa-tabs__content {
    display: none;
  }

  /* activeクラスがついた時だけ表示 */
  .nnmoa-tabs__content.is-active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
  }

  .nnmoa-tabs__nav {
    width: 100%;
    display: flex;
    margin: 0 auto;
  }

  .nnmoa-tabs__trigger {
    width: 50%;
    cursor: pointer;
    border: none;
    background: none;
    padding: 4.267vw 2.667vw;
    transition: opacity 0.3s;
    color: #333;
    font-family: 'I-OTF-UD明朝Pro R';
    text-align: center;
    font-size: 4.8vw;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 7.2vw */
    background-color: #fff;
    border-bottom: 0.267vw solid #BABABA;
  }

  .nnmoa-tabs__trigger.is-active {
    border-bottom: 0.533vw solid #104C92;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }
}


/*====================
  nnmoa-card
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .nnmoa-card-grid {
    display: flex;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
  }

  .nnmoa-card {
    width: calc((100% - 40px) / 3);
    background-color: #fff;
    border: 1px solid #333;
    box-sizing: border-box;
  }

  .nnmoa-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .nnmoa-card__image {
    width: 100%;
  }

  .nnmoa-card__image.nnmoa-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;
  }

  .nnmoa-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;
  }

  .nnmoa-card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    flex: 1;
  }

  .nnmoa-card__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .nnmoa-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;
  }

  .nnmoa-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;
  }

  .nnmoa-card__title {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 32px */
    letter-spacing: 1.6px;
  }

  .nnmoa-card__text {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    /* 28.8px */
    letter-spacing: 1.28px;
  }

  a.nnmoa-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.nnmoa-card__link:hover {
    text-decoration: underline;
  }

  a.nnmoa-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;
  }

  .nnmoa-card__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nnmoa-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;
  }

  .nnmoa-card__labels-item.nnmoa-card__labels-item--active {
    background-color: #333;
    color: #FFF;
  }

  .nnmoa-card__labels-item.nnmoa-card__labels-item--closed {
    background-color: #646464;
    color: #FFF;
  }

  .nnmoa-card__labels-item.nnmoa-card__labels-item--paid {
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
  }

  .nnmoa-card__labels-item.nnmoa-card__labels-item--free {
    border: 1px solid #646464;
    background-color: #F5F5F5;
    color: #646464;
  }

  .nnmoa-card__labels-item.nnmoa-card__labels-item--category {
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
  }

  .nnmoa-card__labels-item.nnmoa-card__labels-item---noentry {
    background-color: #D8D8D8;
  }
}

/*===== SP =====*/
@media screen and (max-width: 767px) {
  .nnmoa-card-grid {
    display: flex;
    width: 100%;
    gap: 10.667vw;
    flex-wrap: wrap;
  }

  .nnmoa-card {
    width: 100%;
    background-color: #fff;
    border: 0.267vw solid #333;
    box-sizing: border-box;
  }

  .nnmoa-card__inner {
    display: flex;
    flex-direction: column;
  }

  .nnmoa-card__image {
    width: 100%;
  }

  .nnmoa-card__image img {
    width: 100%;
  }

  .nnmoa-card__image.nnmoa-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;
  }

  .nnmoa-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;
  }

  .nnmoa-card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5.333vw;
    padding: 5.333vw;
  }

  .nnmoa-card__content {
    display: flex;
    flex-direction: column;
    gap: 2.667vw;
  }

  .nnmoa-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;
  }

  .nnmoa-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;
  }

  .nnmoa-card__title {
    color: #000;
    font-size: 5.333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 8.533vw */
    letter-spacing: 0.427vw;
  }

  .nnmoa-card__text {
    color: #333;
    font-size: 4.267vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    /* 7.68vw */
    letter-spacing: 0.341vw;
  }

  a.nnmoa-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.nnmoa-card__link:hover {
    text-decoration: underline;
  }

  a.nnmoa-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;
  }

  .nnmoa-card__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 2.667vw;
  }

  .nnmoa-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;
  }

  .nnmoa-card__labels-item.nnmoa-card__labels-item--active {
    background-color: #333;
    color: #FFF;
  }

  .nnmoa-card__labels-item.nnmoa-card__labels-item--closed {
    background-color: #646464;
    color: #FFF;
  }

  .nnmoa-card__labels-item.nnmoa-card__labels-item--paid {
    border: 0.267vw solid #333;
    background-color: #fff;
    color: #333;
  }

  .nnmoa-card__labels-item.nnmoa-card__labels-item--free {
    border: 0.267vw solid #646464;
    background-color: #F5F5F5;
    color: #646464;
  }

  .nnmoa-card__labels-item.nnmoa-card__labels-item--category {
    border: 0.267vw solid #333;
    background-color: #fff;
    color: #333;
  }

  .nnmoa-card__labels-item.nnmoa-card__labels-item---noentry {
    background-color: #D8D8D8;
  }
}

/*====================
  nnmoa-top__nav
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .nnmoa-top__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
  }

  .nnmoa-top__nav-item {
    width: calc((100% - 40px) / 3);
    min-height: 72px;
  }

  .g-link {
    font-size: 16px;
    line-height: 1.31;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
  }

  .g-link:hover {
    opacity: .7;
  }

  .g-link.g-link__blue {
    color: #ffffff;
    background-color: #104C92;
  }

  .g-link:link::after {
    content: "";
    background-image: url(/common/img/icon_arrow_white.svg);
    background-repeat: no-repeat;
    width: 10px;
    height: 10px;
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
  }

  .g-link__anc:link {
    background-color: #D8D8D8;
    color: #000;
  }

  .g-link.g-link__anc:link::after {
    content: "";
    background-image: url(/common/img/icon_under_arrow_black.svg);
    background-repeat: no-repeat;
    width: 10px;
    height: 10px;
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
  }
}

/*===== SP =====*/
@media screen and (max-width: 767px) {

  .nnmoa-top__nav {
    display: flex;
    flex-direction: column;
    gap: 2.564vw;
    width: 100%;
    box-sizing: border-box;
  }

  .nnmoa-top__nav-item {
    width: 100%;
    min-height: 16vw;
  }

  .g-link {
    font-size: 4.8vw;
    line-height: 1.78;
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 16vw;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
  }

  .g-link:hover {
    opacity: .7;
  }

  .g-link.g-link__blue {
    color: #ffffff;
    background-color: #104C92;
  }

  .g-link::after {
    content: "";
    background-image: url(/common/img/icon_arrow_white.svg);
    background-repeat: no-repeat;
    width: 2.667vw;
    height: 2.667vw;
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5.333vw;
  }

  .g-link.g-link__anc {
    background-color: #D8D8D8;
    color: #000;
  }

  .g-link.g-link__anc:link::after {
    content: "";
    background-image: url(/common/img/icon_under_arrow_black.svg);
    background-repeat: no-repeat;
    width: 2.667vw;
    height: 2.667vw;
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5.333vw;
  }
}


/*====================
  nnmoa-bio__list,nnmoa-bio__item
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .nnmoa-picture__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .nnmoa-picture__thumb-image {
    display: block;
    margin: 0 auto;
  }

  .nnmoa-picture__thumb-caption {
    color: #666;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 25.2px */
  }

  .nnmoa-bio__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .nnmoa-bio__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background-color: #fff;
    box-sizing: border-box;
  }

  .nnmoa-bio__content:not(:last-of-type) {
    padding-bottom: 16px;
    border-bottom: 1px solid #D8D8D8;
  }

  .nnmoa-bio__name {
    font-size: 14px;
    line-height: 1.5;
    display: block;
    text-align: center;
  }

  .nnmoa-bio__name strong {
    display: block;
  }

  .nnmoa-bio__name em {
    font-size: 12px;
    line-height: 1.5;
    color: #A0A0A0;
  }

  .nnmoa-bio__flex {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 32px;
  }

  .nnmoa-bio__thumb {
    max-width: 151px;
    width: 100%;
  }

  .nnmoa-bio__text {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
  }

  .nnmoa-bio__note {
    font-size: 12px;
  }

}

/*===== SP =====*/
@media screen and (max-width: 767px) {
  .nnmoa-picture__list {
    display: flex;
    flex-direction: column;
    gap: 8.533vw;
  }

  .nnmoa-picture__thumb-caption {
    color: #666;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 25.2px */
  }

  .nnmoa-bio__list {
    display: flex;
    flex-direction: column;
    gap: 8.533vw;
  }

  .nnmoa-bio__item {
    display: flex;
    flex-direction: column;
    gap: 4.267vw;
    padding: 5.333vw;
    background-color: #fff;
    box-sizing: border-box;
  }

  .nnmoa-bio__content:not(:last-of-type) {
    padding-bottom: 4.267vw;
    border-bottom: 1px solid #D8D8D8;
  }

  .nnmoa-bio__name {
    font-size: 3.733vw;
    line-height: 1.5;
    display: block;
    text-align: center;
  }

  .nnmoa-bio__name strong {
    display: block;
  }

  .nnmoa-bio__name em {
    font-size: 3.2vw;
    line-height: 1.5;
    color: #A0A0A0;
  }

  .nnmoa-bio__flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4.267vw;
    column-gap: 4.267vw;
  }

  .nnmoa-bio__thumb {
    width: 40.267vw;
  }

  .nnmoa-bio__text {
    font-size: 3.733vw;
    line-height: 1.6;
  }

  .nnmoa-bio__note {
    font-size: 3.2vw;
  }
}


/*====================
  nnmoa-intro
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .nnmoa-intro {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
  }

  .nnmoa-intro_body {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nnmoa-intro.nnmoa-intro--02 .nnmoa-intro_body {
    width: 55%;
  }

  .nnmoa-intro__thumb {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nnmoa-intro.nnmoa-intro--02 .nnmoa-intro__thumb {
    width: 40%;
  }

  .nnmoa-intro__thumb.nnmoa-intro__thumb--noimage {
    background: #F3F3F3;
    display: flex;
    padding: 0 40px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    aspect-ratio: 301/201;
    box-sizing: border-box;
    gap: 15px;
  }

  .nnmoa-intro__thumb-text {
    background: #fff;
    color: #333;
    font-size: 40px;
    font-weight: 500;
    line-height: 160%; /* 64px */
    letter-spacing: 3.2px;
    padding: 0 20px;;
  }

  .nnmoa-intro > .nnmoa-text {
    width: 100%;
  }

  .nnmoa-intro__caption {
    color: #666;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 25.2px */
  }

  .nnmoa-intro__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nnmoa-intro__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nnmoa-intro__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%;
    letter-spacing: 1.28px;
    white-space: nowrap;
  }

  .nnmoa-intro__labels-item.nnmoa-intro__labels-item--active {
    background-color: #333;
    color: #FFF;
  }

  .nnmoa-intro__labels-item.nnmoa-intro__labels-item--closed {
    background-color: #646464;
    color: #FFF;
  }

  .nnmoa-intro__labels-item.nnmoa-intro__labels-item--paid {
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
  }

  .nnmoa-intro__labels-item.nnmoa-intro__labels-item--free {
    border: 1px solid #646464;
    background-color: #F5F5F5;
    color: #646464;
  }

  .nnmoa-intro__labels-item.nnmoa-intro__labels-item--category {
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
  }

  .nnmoa-intro__date {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
    display: flex;
    position: relative;
  }

  .nnmoa-intro__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;
  }

  .nnmoa-intro__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nnmoa-intro__heading-text {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 32px */
    letter-spacing: 1.6px;
  }

  .nnmoa-intro__heading-title {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 48px */
    letter-spacing: 2.56px;
  }

  .nnmoa-intro a.button {
    display: flex;
    max-width: 320px;
    width: 100%;
    padding: 15px 60px;
    justify-content: center;
    align-items: center;
    background: #104C92;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 27px */
    box-sizing: border-box;
    transition: opacity 0.3s ease;
    position: relative;
  }

  .nnmoa-intro 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;
  }

  .nnmoa-intro a.button:hover {
    opacity: 0.8
  }
}

/*===== SP =====*/
@media screen and (max-width: 767px) {
  .nnmoa-intro {
    display: flex;
    flex-direction: column;
    gap: 5.333vw;
    width: 100%;
  }

  .nnmoa-intro_body {
    width: 33.5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5.333vw;
  }

  .nnmoa-intro__thumb {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.067vw;
    width: 100vw;
    margin: 0 -5.333vw;
  }

  .nnmoa-intro.nnmoa-intro--02 .nnmoa-intro__thumb {
    width: 100%;
    margin: 0;
  }

  
  .nnmoa-intro__thumb.nnmoa-intro__thumb--noimage {
    background: #F3F3F3;
    display: flex;
    padding: 4.8vw 5.333vw 4.533vw 5.333vw;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    aspect-ratio: 167/110;
    box-sizing: border-box;
    gap: 2.667vw;
  }

  .nnmoa-intro__thumb-text {
    background: #fff;
    color: #333;
    font-size: 6.4vw;
    font-weight: 500;
    line-height: 160%; /* 17.067vw */
    letter-spacing: 0.512vw;
    padding: 0 2.933vw;
  }

  .nnmoa-intro > .nnmoa-text {
    width: 100%;
  }

  .nnmoa-intro__caption {
    color: #666;
    font-size: 3.2vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 6.72vw */
    padding: 0 5.333vw;
    width: 100%;
    box-sizing: border-box;
  }

  .nnmoa-intro.nnmoa-intro--02 .nnmoa-intro__caption {
    padding: 0;
  }

  .nnmoa-intro__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.667vw;
  }

  .nnmoa-intro__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 2.667vw;
  }

  .nnmoa-intro__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%;
    letter-spacing: 0.341vw;
    white-space: nowrap;
  }

  .nnmoa-intro__labels-item.nnmoa-intro__labels-item--active {
    background-color: #333;
    color: #FFF;
  }

  .nnmoa-intro__labels-item.nnmoa-intro__labels-item--closed {
    background-color: #646464;
    color: #FFF;
  }

  .nnmoa-intro__labels-item.nnmoa-intro__labels-item--paid {
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
  }

  .nnmoa-intro__labels-item.nnmoa-intro__labels-item--free {
    border: 1px solid #646464;
    background-color: #F5F5F5;
    color: #646464;
  }

  .nnmoa-intro__labels-item.nnmoa-intro__labels-item--category {
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
  }

  .nnmoa-intro__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;
  }

  .nnmoa-intro__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;
  }

  .nnmoa-intro__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nnmoa-intro__heading-text {
    color: #000;
    font-size: 4.8vw;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 8.533vw */
  }

  .nnmoa-intro__heading-title {
    color: #000;
    font-size: 6.4vw;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 12.8vw */
    letter-spacing: 0.512vw;
  }

  .nnmoa-intro a.button {
    display: flex;
    width: 100%;
    padding: 4vw 16vw;
    justify-content: center;
    align-items: center;
    background: #104C92;
    color: #FFF;
    font-size: 4.8vw;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 7.2vw */
    box-sizing: border-box;
    transition: opacity 0.3s ease;
    position: relative;
  }

  .nnmoa-intro 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;
  }

  .nnmoa-intro a.button:hover {
    opacity: 0.8
  }
}


/*====================
  nnmoa-detail
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .nnmoa-detail-info {
    display: flex;
    flex-direction: column;
    gap: 26px;
    max-width: 535px;
    width: 100%;
  }

  .nnmoa-detail-info__item {
    display: flex;
    gap: 35px;
  }

  .nnmoa-detail-info__item .nnmoa-text:nth-child(1) {
    max-width: 90px;
    width: 100%;
    border-right: 1px solid #BABABA;
  }

  html[lang="en"] .nnmoa-detail-info__item .nnmoa-text:nth-child(1) {
    max-width: 165px;
  }

  .nnmoa-detail-info__item .nnmoa-text:nth-child(2) {
    flex: 1;
  }
}

/*===== SP =====*/
@media screen and (max-width: 767px) {
  .nnmoa-detail-info {
    display: flex;
    flex-direction: column;
    gap: 6.933vw;
    width: 100%;
  }

  .nnmoa-detail-info__item {
    display: flex;
    gap: 9.333vw;
  }

  html[lang="en"] .nnmoa-detail-info__item {
    gap: 6.667vw;
  }

  .nnmoa-detail-info__item .nnmoa-text:nth-child(1) {
    width: 18.667vw;
    border-right: 0.267vw solid #BABABA;
  }

  html[lang="en"] .nnmoa-detail-info__item .nnmoa-text:nth-child(1) {
    flex: 0.267vw;
    width: auto;
  }

  .nnmoa-detail-info__item .nnmoa-text:nth-child(2) {
    flex: 1;
  }
}


/*====================
  nnmoa-speaker
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .nnmoa-speaker {
    display: flex;
    gap: 40px;
  }

  .nnmoa-speaker__thumb {
    width: 35.3%;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .nnmoa-speaker__body {
    width: 60.7%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .nnmoa-speaker__caption {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 25.2px */
  }

  .nnmoa-speaker__contents {
    display: flex;
    flex-direction: column;
  }

  .nnmoa-speaker-name {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
  }

  .nnmoa-speaker-name-en {
    color: #646464;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 25.2px */
  }
}

/*===== SP =====*/
@media screen and (max-width: 767px) {
  .nnmoa-speaker {
    display: flex;
    flex-direction: column;
    gap: 5.333vw;
  }

  .nnmoa-speaker__thumb {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.067vw;
  }

  .nnmoa-speaker__body {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5.333vw;
  }

  .nnmoa-speaker__caption {
    color: #333;
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 6.72vw */
  }

  .nnmoa-speaker__contents {
    display: flex;
    flex-direction: column;
  }

  .nnmoa-speaker__contents:has(.nnmoa-speaker-name) {
    align-items: center;
  }

  .nnmoa-speaker-name {
    color: #333;
    font-size: 4.267vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 7.68vw */
    letter-spacing: 0.341vw;
  }

  .nnmoa-speaker-name-en {
    color: #646464;
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 6.72vw */
  }

}


/*====================
  nnmoa-index
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .nnmoa-index {
    width: 100%;
    border: 1px solid #646464;
    background: #FFF;
    display: flex;
    padding: 30px 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
  }

  .nnmoa-index__title {
    color: #333;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
    border-bottom: 1px solid #BABABA;
    width: 100%;
    padding-bottom: 20px;
  }

  .nnmoa-index__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 780px;
  }

  .nnmoa-index__header {
    display: flex;
  }

  .nnmoa-index__item:has(.nnmoa-index__link):hover .nnmoa-index__header {
    text-decoration: underline;
    color: #104C92;
  }

  .nnmoa-index__num {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
  }

  .nnmoa-index__item:has(.nnmoa-index__link) .nnmoa-index__num {
    color: #104C92;
  }

  .nnmoa-index__text {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 1.28px;
  }

  a.nnmoa-index__link {
    color: #104C92;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 1.28px;
  }

  .nnmoa-index-item__desc {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 25.2px */
    padding-left: 24px;
  }
}

/*===== SP =====*/
@media screen and (max-width: 767px) {
  .nnmoa-index {
    width: 100%;
    border: 0.267vw solid #646464;
    background: #FFF;
    display: flex;
    padding: 8vw 5.333vw;
    flex-direction: column;
    align-items: center;
    gap: 5.333vw;
    box-sizing: border-box;
  }

  .nnmoa-index__title {
    color: #333;
    text-align: center;
    font-size: 4.8vw;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 7.2vw */
    border-bottom: 0.267vw solid #BABABA;
    width: 100%;
    padding-bottom: 5.333vw;
  }

  .nnmoa-index__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.667vw;
    width: 100%;
  }

  .nnmoa-index__header {
    display: flex;
  }

  .nnmoa-index__item:has(.nnmoa-index__link):hover .nnmoa-index__header {
    text-decoration: underline;
    color: #104C92;
  }

  .nnmoa-index__num {
    color: #333;
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 7.68vw */
    letter-spacing: 0.341vw;
  }

  .nnmoa-index__item:has(.nnmoa-index__link) .nnmoa-index__num {
    color: #104C92;
  }

  .nnmoa-index__text {
    color: #333;
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    /* letter-spacing: 0.341vw; */
  }

  a.nnmoa-index__link {
    color: #104C92;
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 7.68vw */
    /* letter-spacing: 0.341vw; */
  }

  .nnmoa-index-item__desc {
    color: #333;
    font-size: 3.733vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 6.72vw */
    padding-left: 6.4vw;
  }
}



/*====================
  nnmoa-production__yt
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .nnmoa-production {
    max-width: 728px;
    width: 100%;
    margin: 0 auto;
  }

  .nnmoa-production__yt {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .nnmoa-production__yt iframe {
    width: 100%;
    height: 100%;
  }
}

/*===== SP =====*/
@media screen and (max-width: 767px) {
  .nnmoa-production {
    width: 100%;
    margin: 0 auto;
  }

  .nnmoa-production__yt {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .nnmoa-production__yt iframe {
    width: 100%;
    height: 100%;
  }
}


/*====================
  nnmoa-modal
====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {
  .nnmoa-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  .nnmoa-modal.is-open {
    display: flex;
  }

  .nnmoa-modal__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
  }

  .nnmoa-modal__inner {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 856px;
    min-width: 383px;
    box-sizing: border-box;
  }

  .nnmoa-modal__content {
    padding: 40px 20px;
    max-height: 70vh;
    height: auto;
    overflow-y: scroll;
    box-sizing: border-box;
  }

  .nnmoa-modal__close {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .nnmoa-modal__close img {
    width: 100%;
  }
}

/*===== SP =====*/
@media screen and (max-width: 767px) {
  .nnmoa-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  .nnmoa-modal.is-open {
    display: flex;
  }

  .nnmoa-modal__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
  }

  .nnmoa-modal__inner {
    position: relative;
    background: #fff;
    width: 90%;
    box-sizing: border-box;
  }

  .nnmoa-modal__content {
    padding: 10.667vw 5.333vw;
    max-height: 90dvh;
    height: auto;
    overflow-y: scroll;
    box-sizing: border-box;
  }

  .nnmoa-modal__close {
    position: absolute;
    top: -4vw;
    right: -4vw;
    width: 8vw;
    height: 8vw;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .nnmoa-modal__close img {
    width: 100%;
  }
}


/*====================

====================*/
/*===== PC =====*/
@media screen and (min-width: 768px) {}

/*===== SP =====*/
@media screen and (max-width: 767px) {}