@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 {
  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 {
  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 {
  border: 1px solid #004EA2;
}
button.btn-arrow:hover::before, a.btn-arrow: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, a.btn-light {
  background: #E5EDF6;
  padding: 0.6em 1em;
  color: #004EA2;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  border-radius: 6px;
}
button.btn-light:hover, a.btn-light:hover {
  background: #004EA2;
  color: #fff;
}
button.btn-light span, a.btn-light 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;
}

.archive__item {
  border-bottom: 1px solid #E5EDF6;
}
.archive__item a {
  width: 100%;
  height: 100%;
  display: inline-block;
  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 {
    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;
}

@media screen and (min-width: 768px) {
  body.home {
    background: #EBD3C6;
  }
}
body.home main {
  position: relative;
}
@media screen and (max-width: 767.9px) {
  body.home main {
    background: url(../images/bg-top_sp.jpg) no-repeat center/cover;
  }
}
@media screen and (min-width: 768px) {
  body.home main {
    height: calc(100vh - 6rem);
    background: url(../images/bg-top.jpg) no-repeat center bottom 11rem/cover;
  }
}
@media screen and (min-aspect-ratio: 1.5) {
  body.home main {
    background: url(../images/bg-top.jpg) no-repeat center bottom calc(15rem - 7vw)/100% auto;
  }
}

@media screen and (max-width: 767.9px) {
  .mainvisual {
    padding: 16rem 1rem;
    text-align: center;
  }
}
@media screen and (max-width: 767.9px) and (min-aspect-ratio: 0.4) {
  .mainvisual {
    padding: 15vh 1rem;
  }
}
.mainvisual__bg {
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 768px) {
  .mainvisual__bg {
    width: 43rem;
    padding: 3rem;
    position: absolute;
    top: calc(100vh - 75% - 60px);
    right: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .mainvisual__bg {
    width: 100%;
    margin: 0 auto;
    padding: 4rem 1.5rem;
  }
}
.mainvisual__title {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #004EA2;
  line-height: 1.8em;
}
@media screen and (max-width: 767.9px) {
  .mainvisual__title {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.mainvisual__title .sm {
  display: block;
  margin-top: 0.15em;
  font-size: 0.68em;
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1.4em;
}
@media screen and (min-width: 768px) {
  .mainvisual__title br.sp {
    display: none;
  }
}
.mainvisual__text {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #004EA2;
  text-align: left;
  letter-spacing: 0.05em;
  line-height: 2.16em;
}
@media screen and (max-width: 767.9px) {
  .mainvisual__text {
    font-size: 1.3rem;
    margin-top: 3rem;
    line-height: 2.3em;
  }
}
@media screen and (min-width: 768px) {
  .mainvisual__text {
    padding-right: 1.6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .mainvisual__text br {
    display: none;
  }
}
.mainvisual.en .mainvisual__title .sm {
  letter-spacing: 0.02em;
}
.mainvisual.en .mainvisual__text {
  letter-spacing: 0.02em;
}

.topArchive {
  width: 100%;
  background: #fff;
  padding: 2.5rem 0 3rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
}
@media screen and (max-width: 767.9px) {
  .topArchive {
    padding: 3rem 0 1.5rem;
    position: static;
  }
}
@media screen and (min-width: 768px) {
  .topArchive {
    max-height: calc(100vh - 75%);
    overflow-y: scroll;
  }
}
@media screen and (min-width: 768px) {
  .topArchive .inner {
    display: flex;
    justify-content: flex-start;
  }
}
.topArchive__heading {
  width: 12rem;
}
.topArchive__heading h2 {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .topArchive__content {
    width: calc(100% - 16rem);
    margin-left: 4rem;
  }
}
@media screen and (max-width: 767.9px) {
  .topArchive__content {
    margin-top: 2rem;
  }
}
.topArchive__nopost {
  margin: 2rem 0;
  font-size: 1.2rem;
  line-height: 1.8em;
  color: #000;
  text-align: center;
}
.topArchive__list {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.6em;
}
.topArchive__list a {
  color: inherit;
}
@media screen and (min-width: 768px) {
  .topArchive__list a {
    display: flex;
    justify-content: flex-start;
  }
}
.topArchive__list a:hover .topArchive__title {
  text-decoration: underline;
}
.topArchive__list a.disabled {
  pointer-events: none;
}
@media screen and (max-width: 767.9px) {
  .topArchive__list + dl {
    margin-top: 0.7rem;
  }
}
@media screen and (min-width: 768px) {
  .topArchive__list + dl {
    margin-top: 0.5rem;
  }
}
.topArchive__date {
  color: rgba(0, 0, 0, 0.5);
  font-size: inherit;
}
@media screen and (max-width: 767.9px) {
  .topArchive__date {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .topArchive__date {
    width: 10.5rem;
  }
}
.topArchive__title {
  color: #000;
  font-size: inherit;
}
@media screen and (max-width: 767.9px) {
  .topArchive__title {
    width: 100%;
    margin-top: 0.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
  }
}
@media screen and (min-width: 768px) {
  .topArchive__title {
    margin-left: 2rem;
    /*overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;*/
  }
}
.topArchive__link {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767.9px) {
  .topArchive__link {
    margin-right: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .topArchive__link {
    margin-right: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .topArchive__link a:hover {
    transform: translateX(0.6rem);
  }
}