@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
  box-sizing: border-box;
}

button {
  border: none;
  appearance: none;
}

img, iframe {
  max-width: 100%;
}

table {
  border-collapse: collapse;
  table-layout: fixed;
}

/* ======
@include mq() {}
デフォルトは1024px以上
@include mq(md) {} : 768px以上
@include mq(sm) {} : 426px以上
====== */
/* ======
@include mq() {}
デフォルトは1024px以上
@include mq(md) {} : 768px以上
@include mq(sm) {} : 426px以上
====== */
html {
  scroll-behavior: smooth;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767.9px) {
  html {
    font-size: 2.5641025641vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  width: 100%;
  max-width: 100%;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Noto Sans", -apple-system, YuGothic, "Yu Gothic Medium", "Yu Gothic", Arial, sans-serif;
  min-height: 100vh;
  color: #000;
  font-weight: 400;
  line-height: 1.5em;
  position: relative;
}

b,
strong {
  font-weight: 700;
}

sup, sub {
  font-size: 0.4rem;
}
sup *, sub * {
  font-size: inherit;
}

s {
  text-decoration: line-through;
}

a {
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media screen and (min-width: 768px) {
  table {
    max-width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  table {
    width: auto;
    overflow-x: auto;
  }
}

/* ======
@include mq() {}
デフォルトは1024px以上
@include mq(md) {} : 768px以上
@include mq(sm) {} : 426px以上
====== */
@media screen and (min-width: 768px) {
  br.sp {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  br.md {
    display: none;
  }
}
@media screen and (max-width: 1023.9px) {
  br.pc {
    display: none;
  }
}

header {
  width: 100%;
  overflow-y: hidden;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6000;
  border-bottom: 1px solid #E5EDF6;
}
@media screen and (min-width: 1024px) {
  header {
    height: 6rem;
    padding: 1.25rem;
  }
}
@media screen and (max-width: 1023.9px) {
  header {
    height: 5.6rem;
    max-height: 56px;
    padding: 1.2rem 1rem 0.8rem;
    border-bottom: 12x solid #E5EDF6;
  }
}

.header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1023.9px) {
  .header__inner {
    height: 100%;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .header__nav {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .header__lang {
    margin-left: 1.5rem;
  }
}
@media screen and (max-width: 767.9px) {
  .header__lang {
    display: none;
  }
}
@media screen and (max-width: 1023.9px) {
  .header__title {
    height: 35px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.header__title h2 {
  font-size: 1.3rem;
}
@media screen and (min-width: 1024px) {
  .header__title h2 {
    display: flex;
    justify-content: flex-start;
  }
}
.header__title--logo {
  width: 11rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .header__title--logo {
    margin-right: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .header__title--text {
    font-size: 1em;
    line-height: 1.6em;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 1023.9px) {
  .header__title--text {
    display: none;
  }
}
.header__title--text .en {
  display: block;
  font-size: 0.846em;
  line-height: 1em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .header__lang {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 0.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .header__lang {
    position: absolute;
    bottom: 0;
    right: 6rem;
  }
}
.header__lang li {
  font-size: 1.3rem;
  position: relative;
}
.header__lang li a {
  font-size: inherit;
  color: #000;
  line-height: 1.3em;
  padding: 0 0.6em;
}
.header__lang li + li {
  padding-left: 1.4em;
}
.header__lang li + li::before {
  content: "";
  display: inline-block;
  width: 1.4em;
  height: 1px;
  background: #004EA2;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
}
.header__lang li.current a, .header__lang li.current-lang a {
  color: #004EA2;
}
.header__drawer {
  width: 3rem;
}
@media screen and (min-width: 1024px) {
  .header__drawer {
    display: none;
  }
}
.header__drawer img {
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}
.header__link ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header__link ul li {
  width: 8rem;
}
@media screen and (max-width: 767.9px) {
  .header__link ul li {
    max-width: 70px;
  }
}
.header__link ul li + li {
  margin-left: 0.5rem;
}
.header__link ul li a {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.header__link ul li a:hover {
  opacity: 0.8;
}
.header__link ul li a img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}

@media screen and (min-width: 1024px) {
  .drawer {
    display: none;
  }
}
@media screen and (max-width: 1023.9px) {
  .drawer {
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -5;
    transition: 0.6s;
  }
}
.drawer__close {
  position: fixed;
  top: 6rem;
  right: 1.5rem;
  transition: 0.2s;
  transition-delay: 0.7s;
}
.drawer__inner {
  width: 30rem;
  height: 100%;
  background: #004EA2;
  padding-top: 0.3vh;
  position: fixed;
  top: 0;
  left: -8%;
  transition: 0.2s;
  z-index: -5;
}
@media screen and (min-width: 768px) {
  .drawer__inner {
    padding-top: 5vh;
  }
}
.drawer__lang {
  padding: 1.6rem 1.3rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.drawer__lang li {
  font-size: 1.6rem;
  position: relative;
}
.drawer__lang li a {
  font-size: inherit;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3em;
  padding: 0 0.6em;
}
.drawer__lang li + li {
  padding-left: 1.4em;
}
.drawer__lang li + li::before {
  content: "";
  display: inline-block;
  width: 1.4em;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
}
.drawer__lang li.current a, .drawer__lang li.current-lang a {
  color: white;
}
@media screen and (max-width: 1023.9px) {
  .drawer__bottom {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 479.9px) {
  .drawer__bottom {
    margin-top: 3rem;
  }
}
.drawer__sns {
  display: flex;
  justify-content: center;
}
.drawer__sns li {
  margin: 0 0.5rem 1rem;
}
.drawer__sns li a {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.drawer__sns li a img {
  width: 100%;
}
.drawer__sns--x {
  width: 3.4rem;
}
.drawer.isOpen {
  opacity: 1;
  display: block;
  z-index: 7900;
}
.drawer.isOpen .drawer__close {
  z-index: 8005;
}
.drawer.isOpen .drawer__inner {
  left: 0;
  z-index: 8002;
}

@media screen and (max-width: 1023.9px) {
  footer.-pc {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  footer.-pc {
    width: 100%;
    height: 100%;
    max-width: calc(100vh - 20rem);
    position: relative;
  }
}
footer.-pc .sidebar__menu {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
@media screen and (min-width: 1024px) {
  footer.-sp {
    display: none;
  }
}
@media screen and (max-width: 1023.9px) {
  footer.-sp {
    width: 100%;
    background: url(../images/common/bg-footer.jpg) no-repeat left center/65% auto, #185BA6;
    padding: 0.7rem 0 1rem;
    color: #fff;
  }
}
@media screen and (max-width: 767.9px) {
  footer.-sp {
    background: url(../images/common/bg-footer.jpg) no-repeat left center/cover;
  }
}

.footer__bottom {
  width: 100%;
  padding-top: 2rem;
  background: #004EA2;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 5100;
}
.footer__sns {
  margin-bottom: 0.4rem;
  display: flex;
  justify-content: center;
}
.footer__sns li {
  margin: 0 0.5rem 1rem;
}
.footer__sns li a {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.footer__sns li a img {
  width: 100%;
}
.footer__sns--x {
  width: 2rem;
}
.footer__copy {
  width: 100%;
  text-align: center;
  line-height: 1.2em;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 767.9px) {
  .footer__copy {
    font-size: 1.1rem;
  }
}

.container {
  width: 100%;
  max-width: 100%;
}
.container::before {
  content: "";
  display: inline-block;
  width: 12.8rem;
  height: 6.6rem;
  background: url(../images/common/bg-page.svg) no-repeat center top/contain;
  position: absolute;
  top: 5.6rem;
  right: 4rem;
}
@media screen and (max-width: 767.9px) {
  .container::before {
    right: 0.7rem;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    padding-top: 6rem;
    padding-left: 220px;
  }
}
@media screen and (max-width: 1023.9px) {
  .container {
    min-height: calc(100vh - 3rem);
    padding-top: 5.6rem;
  }
}

body.home .container::before {
  display: none;
}
body.single-post .container::before, body#news .container::before, body#news-en .container::before, body.category .container::before {
  width: 13.6rem;
  height: 8.3rem;
  background: url(../images/common/bg-news.svg) no-repeat center top/contain;
  right: 1.3rem;
}
@media screen and (max-width: 767.9px) {
  body.single-post .container::before, body#news .container::before, body#news-en .container::before, body.category .container::before {
    right: 0.2rem;
  }
}
body.single-member .container::before, body.post-type-archive-member .container::before {
  width: 10.6rem;
  height: 7.1rem;
  background: url(../images/common/bg-member.svg) no-repeat center top/contain;
  right: 2.8rem;
}
@media screen and (max-width: 767.9px) {
  body.single-member .container::before, body.post-type-archive-member .container::before {
    right: 0.4rem;
  }
}
body.single-courses .container::before, body#courses-current .container::before, body#courses-current-en .container::before, body.post-type-archive-courses .container::before {
  width: 14.6rem;
  height: 8.2rem;
  background: url(../images/common/bg-education.svg) no-repeat center top/contain;
  right: 0.8rem;
}
@media screen and (max-width: 767.9px) {
  body.single-courses .container::before, body#courses-current .container::before, body#courses-current-en .container::before, body.post-type-archive-courses .container::before {
    width: 13rem;
    top: 4.8rem;
    right: -1.6rem;
  }
}
body.single-seminar-event .container::before, body.post-type-archive-seminar-event .container::before {
  width: 11rem;
  height: 8.3rem;
  background: url(../images/common/bg-seminar.svg) no-repeat center top/contain;
  right: 3.6rem;
}
@media screen and (max-width: 767.9px) {
  body.single-seminar-event .container::before, body.post-type-archive-seminar-event .container::before {
    right: 0.5rem;
  }
}
body.single-research .container::before, body.post-type-archive-research .container::before {
  width: 16.1rem;
  height: 11.7rem;
  background: url(../images/common/bg-research.svg) no-repeat center bottom/contain;
  top: 3.6rem;
  right: 0.6rem;
}
@media screen and (max-width: 767.9px) {
  body.single-research .container::before, body.post-type-archive-research .container::before {
    right: -2.7rem;
  }
}
body.single-publications .container::before, body.post-type-archive-publications .container::before {
  width: 110px;
  height: 124px;
  background: url(../images/common/bg-publications.svg) no-repeat center top/contain;
}

@media screen and (min-width: 1024px) {
  .sidebar {
    width: 220px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
  }
}
@media screen and (max-width: 1023.9px) {
  .sidebar {
    display: none;
  }
}

main {
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  main.under-page {
    padding: 3rem 0 5rem;
  }
}
@media screen and (min-width: 768px) {
  main.under-page {
    padding: 4rem 0 8rem;
  }
}

.inner {
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .inner {
    width: 94%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.9px) {
  .inner {
    width: 85%;
  }
}
@media screen and (min-width: 1024px) {
  .inner {
    width: 76%;
    max-width: 1400px;
  }
}

@media screen and (min-width: 1024px) {
  .sidebar {
    background: #004EA2;
    padding: 10rem 0 1.5rem;
    color: #fff;
  }
}
@media screen and (max-width: 1023.9px) {
  .sidebar__menu {
    overflow-y: auto;
    max-height: calc(95vh - 14.3rem);
  }
}
@media screen and (max-width: 767.9px) {
  .sidebar__menu {
    max-height: calc(100vh - 14.3rem);
  }
}
@media screen and (max-width: 479.9px) {
  .sidebar__menu {
    max-height: calc(100vh - 13.3rem);
  }
}

.menu__list li {
  width: 100%;
  display: block;
}
.menu__list li a {
  width: 100%;
  display: inline-block;
  padding: 1.4rem 6rem 1.4rem 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 1023.9px) {
  .menu__list li a {
    font-size: 1.6rem;
    padding: 1.4em 6rem 1.4em 1.25em;
  }
}
.menu__list li a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/common/icon/icn-arrow_circle.svg) no-repeat center/contain;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
}
.menu__list li.current-menu-item a {
  background: #2669B0;
}
.menu__list li.current-menu-item a::after {
  background: url(../images/common/icon/icn-arow_circle_active.svg) no-repeat center/contain;
}

body.single-post .menu__list li a[href*="/news/"] {
  background: #2669B0;
}
body.single-post .menu__list li a[href*="/news/"]::after {
  background: url(../images/common/icon/icn-arow_circle_active.svg) no-repeat center/contain;
}
body.page-about .menu__list li a[href*="/about/"] {
  background: #2669B0;
}
body.page-about .menu__list li a[href*="/about/"]::after {
  background: url(../images/common/icon/icn-arow_circle_active.svg) no-repeat center/contain;
}
body.single-member .menu__list li a[href*="/member/"], body.post-type-archive-member .menu__list li a[href*="/member/"] {
  background: #2669B0;
}
body.single-member .menu__list li a[href*="/member/"]::after, body.post-type-archive-member .menu__list li a[href*="/member/"]::after {
  background: url(../images/common/icon/icn-arow_circle_active.svg) no-repeat center/contain;
}
body.single-courses .menu__list li a[href*="/courses-current"], body.page-courses-current .menu__list li a[href*="/courses-current"], body.post-type-archive-courses .menu__list li a[href*="/courses-current"] {
  background: #2669B0;
}
body.single-courses .menu__list li a[href*="/courses-current"]::after, body.page-courses-current .menu__list li a[href*="/courses-current"]::after, body.post-type-archive-courses .menu__list li a[href*="/courses-current"]::after {
  background: url(../images/common/icon/icn-arow_circle_active.svg) no-repeat center/contain;
}
body.single-seminar-event .menu__list li a[href*="/seminar-event/"], body.post-type-archive-seminar-event .menu__list li a[href*="/seminar-event/"] {
  background: #2669B0;
}
body.single-seminar-event .menu__list li a[href*="/seminar-event/"]::after, body.post-type-archive-seminar-event .menu__list li a[href*="/seminar-event/"]::after {
  background: url(../images/common/icon/icn-arow_circle_active.svg) no-repeat center/contain;
}
body.single-research .menu__list li a[href*="/research/"], body.post-type-archive-research .menu__list li a[href*="/research/"] {
  background: #2669B0;
}
body.single-research .menu__list li a[href*="/research/"]::after, body.post-type-archive-research .menu__list li a[href*="/research/"]::after {
  background: url(../images/common/icon/icn-arow_circle_active.svg) no-repeat center/contain;
}
body.single-publications .menu__list li a[href*="/publications/"], body.post-type-archive-publications .menu__list li a[href*="/publications/"] {
  background: #2669B0;
}
body.single-publications .menu__list li a[href*="/publications/"]::after, body.post-type-archive-publications .menu__list li a[href*="/publications/"]::after {
  background: url(../images/common/icon/icn-arow_circle_active.svg) no-repeat center/contain;
}

h2.category-title {
  margin-bottom: 3rem;
  display: inline-block;
  padding: 0 6.5rem 0 0;
  font-family: "League Gothic", sans-serif;
  font-size: 3.4rem;
  color: #004EA2;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.05em;
  position: relative;
}
h2.category-title .ja {
  display: block;
  margin-top: 0.2em;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Noto Sans", -apple-system, YuGothic, "Yu Gothic Medium", "Yu Gothic", Arial, sans-serif;
  font-size: 0.41em;
  line-height: 1.2em;
  font-weight: 600;
  letter-spacing: 0.05em;
}
h2.category-title::before {
  content: "";
  display: inline-block;
  width: 7rem;
  height: 1px;
  background: #004EA2;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}
h2.section-title, .post__content h2 {
  width: 100%;
  display: block;
  margin-bottom: 2.5rem;
  padding: 5px 15px;
  background: #E5EDF6;
  border-left: 4px solid #004EA2;
  font-size: 1.8rem;
  letter-spacing: 0;
  font-weight: 600;
  line-height: 1.6em;
}

h3.icon-title, .post__content h3 {
  min-height: 3.3rem;
  margin-bottom: 1.25em;
  padding-left: 4rem;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.8em;
  color: #004EA2;
  position: relative;
}
h3.icon-title::before, .post__content h3::before {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 3.3rem;
  background: url(../images/common/img-iconheading.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

h4.blue-title, .post__content h4 {
  margin-bottom: 1em;
  color: #004EA2;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6em;
}

.post__content h4 {
  margin-bottom: 0.4em;
}

.btnWrap {
  margin-top: 3rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.btnWrap.-center {
  justify-content: center;
}
.btnWrap.-left {
  justify-content: flex-start;
}
.btnWrap.-right {
  justify-content: flex-end;
}
.btnWrap a, .btnWrap button[class^=btn-] {
  margin: 0 0.5rem 1rem;
}

button, a {
  display: inline-block;
  transition: 0.3s;
  line-height: 1.7em;
  cursor: pointer;
}
button.btn-arrow, a.btn-arrow, #courses-current .archive__item a,
#courses-current-en .archive__item a,
.post-type-archive-courses .archive__item a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5em;
  color: #000;
  padding: 1.4em 3rem 1.4em 1.5rem;
  border-radius: 5px;
  border: 1px solid #D7D7D7;
  display: flex;
  justify-content: flex-start;
  position: relative;
  transition: 0.3s;
}
button.btn-arrow::before, a.btn-arrow::before, #courses-current .archive__item a::before,
#courses-current-en .archive__item a::before,
.post-type-archive-courses .archive__item a::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../images/common/icon/icn-circle_blue.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  transition: 0.3s;
}
button.btn-arrow:hover, a.btn-arrow:hover, #courses-current .archive__item a:hover,
#courses-current-en .archive__item a:hover,
.post-type-archive-courses .archive__item a:hover {
  border: 1px solid #004EA2;
}
button.btn-arrow:hover::before, a.btn-arrow:hover::before, #courses-current .archive__item a:hover::before,
#courses-current-en .archive__item a:hover::before,
.post-type-archive-courses .archive__item a:hover::before {
  right: 1.2rem;
}
button.btn-blue, a.btn-blue {
  min-width: 15rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  background: #004EA2;
  border: 1px solid #004EA2;
  padding: 0.9em 1em;
  border-radius: 6px;
}
button.btn-blue:hover, a.btn-blue:hover {
  background: #2669b0;
  color: #fff;
}
button.btn-blue span, a.btn-blue span {
  color: inherit;
}
button.btn-light, .post__content button.wp-block-button__link, a.btn-light, .post__content a.wp-block-button__link {
  background: #E5EDF6;
  padding: 0.6em 1em;
  color: #004EA2;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  border-radius: 6px;
}
button.btn-light:hover, .post__content button.wp-block-button__link:hover, a.btn-light:hover, .post__content a.wp-block-button__link:hover {
  background: #004EA2;
  color: #fff;
}
button.btn-light span, .post__content button.wp-block-button__link span, a.btn-light span, .post__content a.wp-block-button__link span {
  color: inherit;
}

.totop {
  width: 6rem;
  height: 6rem;
  border-radius: 3rem;
  font-size: 1.5rem;
  line-height: 1.4em;
  color: #fff;
  font-weight: 600;
  text-align: center;
  position: fixed;
  bottom: 2rem;
  right: 2.3rem;
}
@media screen and (max-width: 767.9px) {
  .totop {
    width: 5rem;
    height: 5rem;
    right: 2vw;
    font-size: 1.25rem;
  }
}
.totop a {
  width: 100%;
  height: 100%;
  background: rgba(0, 78, 162, 0.9);
  border-radius: 3rem;
  color: inherit;
  font-size: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}
.totop a:hover {
  background: rgba(38, 105, 176, 0.9);
}

h2.category-title {
  margin-bottom: 3rem;
  display: inline-block;
  padding: 0 6.5rem 0 0;
  font-family: "League Gothic", sans-serif;
  font-size: 3.4rem;
  color: #004EA2;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.05em;
  position: relative;
}
h2.category-title .ja {
  display: block;
  margin-top: 0.2em;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Noto Sans", -apple-system, YuGothic, "Yu Gothic Medium", "Yu Gothic", Arial, sans-serif;
  font-size: 0.41em;
  line-height: 1.2em;
  font-weight: 600;
  letter-spacing: 0.05em;
}
h2.category-title::before {
  content: "";
  display: inline-block;
  width: 7rem;
  height: 1px;
  background: #004EA2;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}
h2.section-title, .post__content h2 {
  width: 100%;
  display: block;
  margin-bottom: 2.5rem;
  padding: 5px 15px;
  background: #E5EDF6;
  border-left: 4px solid #004EA2;
  font-size: 1.8rem;
  letter-spacing: 0;
  font-weight: 600;
  line-height: 1.6em;
}

h3.icon-title, .post__content h3 {
  min-height: 3.3rem;
  margin-bottom: 1.25em;
  padding-left: 4rem;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.8em;
  color: #004EA2;
  position: relative;
}
h3.icon-title::before, .post__content h3::before {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 3.3rem;
  background: url(../images/common/img-iconheading.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

h4.blue-title, .post__content h4 {
  margin-bottom: 1em;
  color: #004EA2;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6em;
}

.post__content h4 {
  margin-bottom: 0.4em;
}

.post__content {
  padding-bottom: 3rem;
}
.post__content p, .post__content a, .post__content span, .post__content b, .post__content s, .post__content i, .post__content strong, .post__content em, .post__content li, .post__content dt, .post__content dd {
  font-size: 1.6rem;
  color: #000;
}
.post__content p a, .post__content a a, .post__content span a, .post__content b a, .post__content s a, .post__content i a, .post__content strong a, .post__content em a, .post__content li a, .post__content dt a, .post__content dd a {
  color: #004EA2;
  text-decoration: underline;
}
.post__content p a:hover, .post__content a a:hover, .post__content span a:hover, .post__content b a:hover, .post__content s a:hover, .post__content i a:hover, .post__content strong a:hover, .post__content em a:hover, .post__content li a:hover, .post__content dt a:hover, .post__content dd a:hover {
  opacity: 0.75;
}
.post__content p a[target=_blank]::after, .post__content a a[target=_blank]::after, .post__content span a[target=_blank]::after, .post__content b a[target=_blank]::after, .post__content s a[target=_blank]::after, .post__content i a[target=_blank]::after, .post__content strong a[target=_blank]::after, .post__content em a[target=_blank]::after, .post__content li a[target=_blank]::after, .post__content dt a[target=_blank]::after, .post__content dd a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.8em;
  opacity: 0.75;
  margin: 0 0.6em 0 0.15em;
  vertical-align: middle;
  background: url(../images/common/icon/icn-blank.svg) no-repeat center/contain;
}
.post__content p a[href$=pdf]::after, .post__content a a[href$=pdf]::after, .post__content span a[href$=pdf]::after, .post__content b a[href$=pdf]::after, .post__content s a[href$=pdf]::after, .post__content i a[href$=pdf]::after, .post__content strong a[href$=pdf]::after, .post__content em a[href$=pdf]::after, .post__content li a[href$=pdf]::after, .post__content dt a[href$=pdf]::after, .post__content dd a[href$=pdf]::after {
  width: auto;
  height: auto;
  display: none;
  background: none;
}
.post__content .btnWrap {
  margin-top: 3rem;
}
.post__content .pdfsize {
  margin-left: 0.15em;
  font-size: 0.98em;
  word-break: keep-all;
  white-space: nowrap;
}
.post__content a.btn-blue {
  font-size: 1.3rem;
  color: #fff;
}
.post__content .wp-block-buttons {
  margin: 1.25rem 0 2.5rem;
  gap: 1rem;
}
.post__content .wp-block-button__link[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1.8em;
  height: 1.8em;
  margin-left: 0.76em;
  vertical-align: middle;
  background: url(../images/common/icon/icn-blank.svg) no-repeat center/contain;
}
.post__content .wp-block-button__link:hover::after {
  background: url(../images/common/icon/icn-blank_w.svg) no-repeat center/contain;
}
.post__content sup, .post__content sub {
  font-size: 0.4rem;
  color: #808080;
}
.post__content sup *, .post__content sub * {
  font-size: inherit;
  color: inherit;
}
.post__content p {
  line-height: 1.8em;
}
.post__content p + p, .post__content p + figure, .post__content p + table, .post__content p + ul {
  margin-top: 1.25em;
}
.post__content p + h2, .post__content p + h3, .post__content p + h4 {
  margin-top: 2.5rem;
}
.post__content p small {
  font-size: 0.8em;
}
.post__content ul, .post__content ol {
  margin: 1.25em 0 2.5rem;
}
.post__content ul li, .post__content ol li {
  font-size: 1.6rem;
  line-height: 1.6em;
  position: relative;
}
.post__content ul li + li, .post__content ol li + li {
  margin-top: 0.86rem;
}
.post__content ul li::before, .post__content ol li::before {
  display: inline-block;
  position: absolute;
  font-size: 1em;
}
.post__content ul li ul, .post__content ul li ol, .post__content ol li ul, .post__content ol li ol {
  margin: 1rem 0 1.25rem;
}
.post__content ul li ul li, .post__content ul li ol li, .post__content ol li ul li, .post__content ol li ol li {
  font-size: 1.5rem;
  line-height: 1.6em;
}
.post__content ul li ul li + li, .post__content ul li ol li + li, .post__content ol li ul li + li, .post__content ol li ol li + li {
  margin-top: 0.7rem;
}
.post__content ul > li {
  padding-left: 1.2em;
}
.post__content ul > li::before {
  content: "";
  width: 0.3em;
  height: 0.3em;
  background: #000;
  border-radius: 1em;
  top: 0.8em;
  left: 0.2em;
}
.post__content ol:not(.wp-block-footnotes) {
  counter-reset: numList;
}
.post__content ol:not(.wp-block-footnotes) > li {
  padding-left: 1.7em;
  counter-increment: numList;
}
.post__content ol:not(.wp-block-footnotes) > li::before {
  content: counter(numList);
  width: 1.1em;
  height: 1.1em;
  font-size: 0.84em;
  color: #000;
  line-height: 1.2em;
  top: 0.38em;
  left: 0.12em;
  text-align: center;
  border: 1px solid #000;
  border-radius: 1em;
}
.post__content section + .wp-block-group,
.post__content .wp-block-group + .wp-block-group {
  margin-top: 3rem;
}
.post__content figure, .post__content iframe {
  max-width: 100%;
  margin: 1.25rem 0 2.5rem;
}
.post__content figure {
  text-align: center;
}
.post__content figure + p, .post__content figure + figure, .post__content figure + table {
  margin-top: 1.25rem;
}
.post__content figure img {
  margin: 0 auto;
}
.post__content figure figcaption {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #808080;
  text-align: left;
  line-height: 1.8em;
}
.post__content figure.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: 100%;
  margin: 0 0 0.5rem;
}
.post__content figure + h2, .post__content figure + h3, .post__content figure + h4 {
  margin-top: 2.5rem;
}
.post__content .wp-block-footnotes {
  counter-reset: footnotes;
}
.post__content .wp-block-footnotes li {
  counter-increment: footnotes;
  font-size: 1.2rem;
  line-height: 1.6em;
  color: #808080;
  padding-left: 1.8em;
  position: relative;
}
.post__content .wp-block-footnotes li::after {
  content: "※" counter(footnotes);
  font-size: 0.75em;
  color: #808080;
  line-height: 1.5em;
  position: absolute;
  top: 0.36em;
  left: 0;
}
.post__content .wp-block-table {
  max-width: 100%;
  overflow-x: auto;
}
@media screen and (max-width: 767.9px) {
  .post__content .wp-block-table table {
    width: auto;
  }
}
.post__content table th, .post__content table td {
  padding: 0.7rem 1rem;
  line-height: 1.5em;
  vertical-align: middle;
  border: 1px solid #E5EDF6;
}
.post__content table th .red, .post__content table td .red {
  color: #D0121B;
}
.post__content table th p, .post__content table th a, .post__content table td p, .post__content table td a {
  font-size: inherit;
  word-break: break-all;
}
.post__content table th a, .post__content table td a {
  display: inline;
  color: #004EA2;
}
.post__content table th a[target=_blank]::after, .post__content table td a[target=_blank]::after {
  display: none;
}
.post__content table thead, .post__content table tbody {
  width: auto;
}
.post__content table thead {
  border-bottom: none;
}
.post__content table thead tr th + th {
  border-left: 1px solid #E5EDF6;
}
.post__content table thead tr th:first-of-type {
  width: 8rem;
  min-width: 8rem;
}
.post__content table thead tr th:nth-of-type(n+2) {
  width: calc((100% - 8rem) / 2);
  min-width: 20rem;
}
.post__content table th {
  background: #004EA2;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .post__content table th {
    font-size: 1.4rem;
  }
}
.post__content table td {
  font-size: 1.5em;
  border-right: 1px solid #E5EDF6;
  border-bottom: 1px solid #E5EDF6;
  text-align: start;
}
@media screen and (max-width: 767.9px) {
  .post__content table td {
    font-size: 1.3rem;
  }
}
.post__content table td.has-text-align-center {
  text-align: center;
}
.post__content table td.has-text-align-left {
  text-align: left;
}
.post__content table td.has-text-align-right {
  text-align: right;
}
.post__content table td small {
  font-size: 0.8em;
  line-height: 1em;
  margin: 0 0.1em;
}
.post__content table tbody tr + tr td {
  border-top: 1px solid #E5EDF6;
}
.post__content table tbody tr td:first-of-type {
  width: 8rem;
  min-width: 8rem;
  border-left: 1px solid #E5EDF6;
}
.post__content table tbody tr td:nth-of-type(n+2) {
  width: calc((100% - 8rem) / 2);
  min-width: 20rem;
}

.archive__item {
  border-bottom: 1px solid #E5EDF6;
}
.archive__item a {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 2rem 0;
}
.archive__item a.disabled {
  pointer-events: none;
}
.archive__item:first-of-type a:not([class^=btn]) {
  padding-top: 0.5rem;
}
.archive__inner {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
.archive__thumb {
  width: 12rem;
  height: 12rem;
}
@media screen and (max-width: 767.9px) {
  .archive__thumb {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
  }
}
.archive__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive__date {
  display: inline;
  color: #808080;
  font-size: 1.6rem;
  line-height: 1.6em;
  margin-right: 1.5rem;
}
.archive__category {
  margin-right: 1.5rem;
}
.archive__category .category__label {
  width: 10.5rem;
  display: inline-block;
  padding: 0.28em 0.6em;
  font-size: 1.3rem;
  color: #004EA2;
  text-align: center;
  font-weight: 400;
  line-height: 1.3em;
  background: #E5EDF6;
}
.archive__title {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6em;
  color: #000;
}
@media screen and (max-width: 767.9px) {
  .archive__title {
    width: 100%;
    margin-top: 0.5rem;
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .archive__btn {
    justify-content: flex-end;
    width: 13rem;
    margin-top: 0;
    margin-left: 2rem;
  }
}
@media screen and (max-width: 767.9px) {
  .archive__btn {
    width: 100%;
    margin-top: 1.5rem;
    justify-content: center;
  }
}
.archive__btn button {
  width: 13rem;
  margin: 0 !important;
}
.archive__btn button.-light {
  padding: 0.6em 0.5em;
}

.pagingNav {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.pagingNav .page-numbers {
  min-width: 1.8em;
  height: 1.8em;
  padding: 0.3em;
  background: #E5EDF6;
  display: inline-block;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 5px;
  color: #004EA2;
  line-height: 1.3em;
}
.pagingNav .page-numbers + .page-numbers {
  margin-left: 1rem;
}
.pagingNav .page-numbers.current {
  background: #004EA2;
  color: #fff;
}
.pagingNav .page-numbers.next, .pagingNav .page-numbers.prev {
  position: relative;
}
.pagingNav .page-numbers.next::before, .pagingNav .page-numbers.prev::before {
  content: "";
  display: inline-block;
  width: 70%;
  height: 70%;
  background: url(../images/common/icon/icn-arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
}
.pagingNav .page-numbers.next {
  margin-left: 2rem;
}
.pagingNav .page-numbers.next::before {
  transform: translate(-50%, -50%);
}
.pagingNav .page-numbers.prev {
  margin-right: 2rem;
}
.pagingNav .page-numbers.prev::before {
  transform: translate(-50%, -50%) scale(-1, 1);
}
.pagingNav .page-numbers.dots {
  background: none;
}

.archive__section + .archive__section {
  margin-top: 3rem;
}
.archive__container {
  width: 100%;
}
.archive__nopost {
  margin: 2rem 0;
  font-size: 1.6rem;
  text-align: center;
}
.archive__notes {
  font-size: 1.4rem;
  margin: 20px 0;
}
.archive__thumb {
  margin: 0;
}

#news .archive,
#news-en .archive,
.category .archive {
  /*&__inner{
      align-items: center;
  }
  &__item{
    a{
      &[target="_blank"]{

      }
    }
  }
  /*&__title{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    @include mq-up(){
        width: calc(100% - 23.5rem);
    }
  }*/
}
@media screen and (min-width: 768px) {
  #news .archive__item a,
  #news-en .archive__item a,
  .category .archive__item a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
#news .archive__inner,
#news-en .archive__inner,
.category .archive__inner {
  width: calc(100% - 10rem);
  margin-left: 2rem;
}
@media screen and (min-width: 768px) {
  #news .archive__inner,
  #news-en .archive__inner,
  .category .archive__inner {
    width: calc(100% - 14rem);
    margin-left: 2rem;
  }
}
#news .archive__title,
#news-en .archive__title,
.category .archive__title {
  width: 100%;
  display: block;
  margin-top: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}

@media screen and (min-width: 768px) {
  #courses-current .archive__list,
  #courses-current-en .archive__list,
  .post-type-archive-courses .archive__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#courses-current .archive__item,
#courses-current-en .archive__item,
.post-type-archive-courses .archive__item {
  border: none;
}
@media screen and (max-width: 767.9px) {
  #courses-current .archive__item,
  #courses-current-en .archive__item,
  .post-type-archive-courses .archive__item {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  #courses-current .archive__item,
  #courses-current-en .archive__item,
  .post-type-archive-courses .archive__item {
    width: calc(50% - 1rem);
  }
}
@media screen and (min-width: 768px) {
  #courses-current .archive__item + .archive__item,
  #courses-current-en .archive__item + .archive__item,
  .post-type-archive-courses .archive__item + .archive__item {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 767.9px) {
  #courses-current .archive__item + .archive__item,
  #courses-current-en .archive__item + .archive__item,
  .post-type-archive-courses .archive__item + .archive__item {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 768px) {
  #courses-current .archive__item:nth-child(2),
  #courses-current-en .archive__item:nth-child(2),
  .post-type-archive-courses .archive__item:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 880px) and (max-width: 1023.9px) {
  #courses-current .archive__item a br.lg,
  #courses-current-en .archive__item a br.lg,
  .post-type-archive-courses .archive__item a br.lg {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  #courses-current .archive__item a br.lg,
  #courses-current-en .archive__item a br.lg,
  .post-type-archive-courses .archive__item a br.lg {
    display: none;
  }
}

.post-type-archive-member .archive__item a:hover .btn-light, .post-type-archive-member .archive__item a:hover .post__content .wp-block-button__link, .post__content .post-type-archive-member .archive__item a:hover .wp-block-button__link {
  background: #004EA2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .post-type-archive-member .archive__title {
    width: calc(100% - 27.5rem);
  }
}
@media screen and (min-width: 768px) {
  .post-type-archive-member .archive__content {
    width: calc(100% - 15rem);
  }
}
@media screen and (max-width: 767.9px) {
  .post-type-archive-member .archive__content {
    width: 100%;
  }
}
.post-type-archive-member .archive__title {
  font-weight: 600;
}
.post-type-archive-member .archive__department {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  line-height: 1.5em;
  color: #000;
}
.post-type-archive-member .archive__department ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.post-type-archive-member .archive__department ul li {
  font-size: 1em;
  color: #000;
}
.post-type-archive-member .archive__department ul li + li::before {
  content: "/ ";
  margin-left: 0.4em;
}
.post-type-archive-seminar-event .archive {
  /*&__title{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    @include mq-up(){
      width: calc(100% - 12.5rem);
    }
  }*/
}
@media screen and (min-width: 768px) {
  .post-type-archive-seminar-event .archive__item a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.post-type-archive-seminar-event .archive__inner {
  width: calc(100% - 10rem);
  margin-left: 2rem;
}
@media screen and (min-width: 768px) {
  .post-type-archive-seminar-event .archive__inner {
    width: calc(100% - 14rem);
    margin-left: 2rem;
  }
}
.post-type-archive-seminar-event .archive__title {
  width: 100%;
  display: block;
  margin-top: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
.post-type-archive-research .archive__item a:hover .btn-light, .post-type-archive-research .archive__item a:hover .post__content .wp-block-button__link, .post__content .post-type-archive-research .archive__item a:hover .wp-block-button__link {
  background: #004EA2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .post-type-archive-research .archive__inner {
    display: flex;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .post-type-archive-research .archive__content {
    width: calc(100% - 15rem);
  }
}
@media screen and (max-width: 767.9px) {
  .post-type-archive-research .archive__content {
    width: 100%;
  }
}
.post-type-archive-research .archive__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
@media screen and (min-width: 768px) {
  .post-type-archive-research .archive__title {
    width: 100%;
    margin-top: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .post-type-archive-publications .archive__item a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.post-type-archive-publications .archive__inner {
  width: calc(100% - 10rem);
  margin-left: 2rem;
}
@media screen and (min-width: 768px) {
  .post-type-archive-publications .archive__inner {
    width: calc(100% - 14rem);
    margin-left: 2rem;
  }
}
.post-type-archive-publications .archive__title {
  width: 100%;
  display: block;
  margin-top: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
.post-type-archive-publications .archive__category .category__label {
  width: auto;
}
.post-type-archive-publications .archive__category .category__label.media, .post-type-archive-publications .archive__category .category__label.media-ja, .post-type-archive-publications .archive__category .category__label.media-en {
  background: #FAE7E8;
  color: #D0121B;
}