@charset "UTF-8";
/* ---------------------------
  A Modern CSS Reset
----------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

ul {
  padding: 0;
}

ul, ol {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ---------------------------
  variable
----------------------------- */
:root {
  --purple: #705899;
  --orange: #e7780f;
  --blue: #3B7D9D;
  --fontMainColor: #000000;
  --fontSubColor: #777777;
  --borderMainColor: #eeeeee;
  --borderSubColor: #cccccc;
  --mainFont: "Noto Sans JP", sans-serif;
  --minchoFont: "Noto Serif JP", serif;
}

/* ---------------------------
  mixin
----------------------------- */
/* ---------------------------
  function
----------------------------- */
/* ---------------------------
  base
----------------------------- */
html {
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  color: var(--fontMainColor);
  font-size: 16px;
  line-height: 1.75;
  font-family: var(--mainFont);
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
}

html.is_not_scroll, body.is_not_scroll {
  overflow: hidden;
}

body > footer {
  position: sticky;
  top: 100vh;
}

a {
  color: var(--fontMainColor);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

/* ---------------------------
  utility
----------------------------- */
.wrapper {
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 640px) {
  .wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.inner {
  max-width: 960px;
  margin: 0 auto;
}

.br-pc {
  display: inline;
}
@media screen and (max-width: 640px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .br-sp {
    display: inline;
  }
}

/* ---------------------------
  header
----------------------------- */
.header {
  width: 100%;
}
@media screen and (max-width: 896px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #fff;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
@media screen and (max-width: 640px) {
  .header-inner {
    height: 50px;
  }
}

.header__logo {
  position: relative;
  z-index: 1000;
}
.header__logo a {
  display: block;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .header__logo a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .header__logo img {
    width: 214px;
    height: 44px;
  }
}
@media screen and (max-width: 640px) {
  .header__logo img {
    width: 144px;
    height: 30px;
  }
}

@media screen and (max-width: 896px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    height: 100vh;
    background-color: #fff;
    padding-top: 100px;
  }
}
@media screen and (max-width: 640px) {
  .header__nav {
    padding-top: 50px;
  }
}

.g-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  .g-nav {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .g-nav {
    gap: 20px;
  }
}
@media screen and (max-width: 896px) {
  .g-nav {
    display: block;
    padding: 20px;
  }
}

@media screen and (max-width: 896px) {
  .g-nav__item {
    border-bottom: 1px solid #cccccc;
  }
}
.g-nav__item .g-nav__item:first-of-type {
  border-top: 1px solid #cccccc;
}
.g-nav__item a {
  display: block;
  transition: opacity 0.3s ease-in-out;
  font-size: 13px;
  padding-left: 1em;
  padding-top: 1em;
  padding-bottom: 1em;
  background-image: url(../theme-images/right_chevron.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 6px;
}
@media screen and (min-width: 640px) {
  .g-nav__item a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 896px) {
  .g-nav__item a {
    font-size: 14px;
  }
}

.g-nav__item--secondary {
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .g-nav__item--secondary {
    margin-left: 0;
  }
}
.g-nav__item--secondary a {
  background: none;
  padding-left: 0;
}

.g-nav__item--sp {
  display: none;
}
@media screen and (max-width: 896px) {
  .g-nav__item--sp {
    display: block;
  }
}

/* ---------------------------
  menu
----------------------------- */
.header-menu {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 896px) {
  .header-menu {
    display: none;
  }
}

.g-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-menu__item {
  max-width: 300px;
  width: 100%;
}
.g-menu__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
  padding: 0.5em;
  transition: 0.2s ease-in;
}
@media screen and (min-width: 640px) {
  .g-menu__item a:hover {
    background-color: var(--purple);
    color: #ffffff;
  }
}
.g-menu__item .current {
  background-color: var(--purple);
  color: #ffffff;
}

/* ---------------------------
  hamb
----------------------------- */
.menu-trigger {
  display: none;
  width: 50px;
  height: 50px;
  padding: 16px 10px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  z-index: 10000;
}
@media screen and (max-width: 896px) {
  .menu-trigger {
    display: block;
  }
}
.menu-trigger span {
  display: block;
  width: 100%;
  height: 1px;
  opacity: 1;
  background-color: var(--fontMainColor);
  transform-origin: left;
  transition: 0.3s ease-in-out;
}
.menu-trigger.is_active span:nth-of-type(1) {
  transform: rotate(36deg);
}
.menu-trigger.is_active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.is_active span:nth-of-type(3) {
  transform: rotate(-36deg);
}
.menu-trigger.is_active .menu-trigger__inner {
  transform: translateX(4px);
}

.menu-trigger__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: 0.3s ease-in-out;
}

/* ---------------------------
  footer
----------------------------- */
.footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #cccccc;
}
@media screen and (max-width: 640px) {
  .footer {
    margin-top: 40px;
  }
}

.footer__pagetop {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media screen and (max-width: 896px) {
  .footer__pagetop {
    display: none;
  }
}
.footer__pagetop button {
  cursor: pointer;
  width: 120px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #ffffff;
  background-color: var(--purple);
  font-size: 13px;
  margin-left: auto;
  margin-right: 0;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .footer__pagetop button:hover {
    opacity: 0.8;
  }
}

.footer__copyright {
  border-top: 1px solid #cccccc;
  display: block;
  text-align: center;
  font-size: 12px;
  padding: 1.4em;
}
@media screen and (max-width: 640px) {
  .footer__copyright {
    padding: 0.8em;
    font-size: 10px;
  }
}

.footer-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 30px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .footer-info {
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
    gap: 24px;
  }
}

@media screen and (max-width: 640px) {
  .footer-info__logo img {
    width: 177px;
    height: 40px;
  }
}

.footer-info__address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.7;
}

.f-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 640px) {
  .f-nav {
    gap: 16px 32px;
  }
}

.f-nav__item a {
  display: block;
  transition: opacity 0.3s ease-in-out;
  font-size: 13px;
  text-align: center;
  padding-left: 1em;
  background-image: url(../theme-images/right_chevron.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 6px;
}
@media screen and (min-width: 640px) {
  .f-nav__item a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 640px) {
  .f-nav__item a {
    width: fit-content;
    margin: 0 auto;
  }
}

@media screen and (max-width: 640px) {
  .f-nav__item--secondary {
    width: 100%;
  }
}

/* ---------------------------
  top
----------------------------- */
.top-common-section {
  padding: 50px 0;
}
@media screen and (max-width: 640px) {
  .top-common-section {
    padding: 40px 0 10px;
  }
}
.top-common-section--border {
  margin-top: 50px;
  padding: 100px 0 70px;
  border-top: 1px solid var(--borderSubColor);
}
@media screen and (max-width: 640px) {
  .top-common-section--border {
    margin-top: 40px;
    padding: 60px 0 40px;
  }
}

.top-common-head {
  text-align: center;
  font-family: var(--minchoFont);
  font-size: 28px;
  margin-bottom: 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 500;
}
@media screen and (max-width: 896px) {
  .top-common-head {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .top-common-head {
    font-size: 20px;
  }
}
.top-common-head::before, .top-common-head::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--purple);
}

.top-common-lead {
  width: fit-content;
  margin-inline: auto;
  font-weight: 400;
  font-family: var(--minchoFont);
  margin-bottom: 2em;
}
@media screen and (max-width: 640px) {
  .top-common-lead {
    font-size: 14px;
  }
}

/* ---------------------------
  hero
----------------------------- */
.hero {
  width: 100%;
  height: 720px;
  max-height: calc(100vh - 100px);
  position: relative;
}
@media screen and (max-width: 896px) {
  .hero {
    margin-top: 100px;
  }
}
@media screen and (max-width: 640px) {
  .hero {
    margin-top: 50px;
    max-height: calc(100vh - 50px);
  }
}
.hero::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 36, 121, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.hero video,
.hero picture,
.hero img {
  position: relative;
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
.hero-inner .wrapper {
  width: 100%;
  height: 100%;
}

.hero__slogan {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-align: center;
  font-family: var(--minchoFont);
}
.hero__slogan h2 {
  font-size: 36px;
  font-weight: 500;
  display: inline-block;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0.3em;
  padding-bottom: 0.2em;
}
@media screen and (max-width: 896px) {
  .hero__slogan h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 640px) {
  .hero__slogan h2 {
    font-size: 26px;
    margin-bottom: 0.5em;
    padding-bottom: 0.4em;
  }
}
@media screen and (max-width: 480px) {
  .hero__slogan h2 {
    font-size: 21px;
  }
}
.hero__slogan p {
  font-size: 18px;
  letter-spacing: 0.2em;
  display: inline-block;
}
@media screen and (max-width: 896px) {
  .hero__slogan p {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .hero__slogan p {
    font-size: 14px;
  }
}

.top-section-bg {
  background-image: url(../theme-images/background.jpg);
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .top-section-bg {
    background: none;
  }
}

.movie-embed {
  max-width: 640px;
  height: 357px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border: 20px solid rgba(112, 88, 153, 0.3);
}
@media screen and (max-width: 640px) {
  .movie-embed {
    border-width: 10px;
    height: 100%;
  }
}
.movie-embed iframe {
  width: 100%;
  height: 100%;
}

.top-purpose {
  max-width: 960px;
  margin: 0 auto;
}

.top-purpose__item {
  border-top: 1px solid #eeeeee;
  padding: 1.5em 1em;
  text-align: center;
  font-weight: 600;
  color: var(--purple);
}
@media screen and (max-width: 640px) {
  .top-purpose__item {
    font-size: 14px;
    text-align: left;
    padding: 1em;
  }
}
.top-purpose__item:last-of-type {
  border-bottom: 1px solid #eeeeee;
}

.top-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}
@media screen and (max-width: 640px) {
  .top-links {
    grid-template-columns: 1fr;
  }
}
.top-links__item {
  text-align: center;
}
.top-links__item img {
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  .top-links__item img {
    width: 100px;
  }
}
.top-links__item h2 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 0.8em;
}
@media screen and (max-width: 640px) {
  .top-links__item h2 {
    font-size: 20px;
  }
}
.top-links__item p {
  font-size: 14px;
  margin-top: 0.5em;
}
.top-links__item a {
  display: block;
  width: fit-content;
  margin-inline: auto;
  margin-top: 1.5em;
  padding: 0.5em 1.5em;
  background-color: var(--blue);
  color: #ffffff;
}
.top-links__item a:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
}

/* ---------------------------
  page common
----------------------------- */
@media screen and (max-width: 896px) {
  .cover {
    margin-top: 100px;
  }
}
@media screen and (max-width: 640px) {
  .cover {
    margin-top: 50px;
  }
}

.cover__title {
  background-image: url(../theme-images/cover.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 28px;
  color: #ffffff;
  font-weight: 400;
  font-family: var(--minchoFont);
  padding-left: 60px;
}
@media screen and (max-width: 896px) {
  .cover__title {
    font-size: 26px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 640px) {
  .cover__title {
    font-size: 24px;
    padding-left: 24px;
    height: 100px;
  }
}

.cover-secondary {
  padding-top: 60px;
}
.cover-secondary__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 90px;
  padding: 10px 40px;
  background-color: var(--purple);
}
.cover-secondary__title {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
}
.cover-secondary__icon {
  height: 60px;
  width: auto;
}
@media screen and (max-width: 896px) {
  .cover-secondary {
    padding-top: 100px;
  }
}
@media screen and (max-width: 640px) {
  .cover-secondary {
    padding-top: 50px;
  }
  .cover-secondary__inner {
    gap: 16px;
    padding: 10px 16px;
  }
  .cover-secondary__title {
    font-size: 22px;
  }
  .cover-secondary__icon {
    height: 40px;
  }
}

.page-wrapper {
  padding-top: 50px;
  padding-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .page-wrapper {
    padding-bottom: 0;
  }
}

.page-section {
  padding-bottom: 50px;
}
.page-section + .page-section {
  padding-top: 50px;
}

.page-border + .page-border {
  border-top: 1px solid #eeeeee;
}

.page-head {
  font-family: var(--minchoFont);
  font-size: 28px;
  font-weight: 400;
  padding: 0.25em 0.5em;
  background: transparent;
  border-left: solid 5px var(--purple);
  margin-bottom: 1em;
}
@media screen and (max-width: 640px) {
  .page-head {
    font-size: 20px;
  }
}

.page-table {
  width: 100%;
  border-collapse: collapse;
}
.page-table th, .page-table td {
  font-size: 14px;
  padding: 0.8em 1.4em;
  border: 1px solid #777777;
  vertical-align: baseline;
}
@media screen and (max-width: 896px) {
  .page-table th, .page-table td {
    padding: 0.8em;
  }
}
@media screen and (max-width: 640px) {
  .page-table th, .page-table td {
    font-size: 13px;
  }
}
.page-table thead th {
  font-weight: 500;
  background-color: #B1D1DD;
  text-align: center;
  white-space: nowrap;
}
.page-table tbody th, .page-table tbody td {
  text-align: left;
}
.page-table a {
  text-decoration: underline;
  transition: text-decoration 0.1s ease-in-out;
}
@media screen and (min-width: 640px) {
  .page-table a:hover {
    text-decoration: none;
  }
}
.page-table a::before {
  content: "";
  width: 6px;
  height: 8px;
  background-image: url(../theme-images/right_chevron_purple.svg);
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 0.3em;
  margin-bottom: 0.1em;
}
.unmarked a::before {
  content: "";
  width: 0px;
  height: 0px;
  background-image: none;
  margin-right: 0em;
  margin-bottom: 0em;
}
.page-table th.bg {
  text-align: center;
  font-weight: bold;
  background-color: #d2cae5;
}

@media screen and (max-width: 640px) {
  .page-overflow {
    overflow-x: scroll;
  }
}
@media screen and (max-width: 640px) {
  .page-overflow::before {
    content: "↔︎スクロールできます";
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 640px) {
  .page-overflow > *:first-child {
    width: 860px;
    max-width: inherit;
  }
}

/* details */
.page-details {
  display: block;
}
.page-details__summary {
  display: block;
  cursor: pointer;
  padding: 4px 0;
}
.page-details__summary-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 20px auto;
  gap: 10px;
  align-items: center;
}
.page-details__summary-inner span {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #dddddd;
}
.page-details__summary-inner span::before,
.page-details__summary-inner span::after {
  content: "";
  display: block;
  background-color: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform-origin: center;
  transform: translate(-50%, -50%);
}
.page-details__summary-inner span::before {
  width: 2px;
  height: 8px;
}
.page-details__summary-inner span::after {
  width: 8px;
  height: 2px;
}
.page-details__content {
  padding-bottom: 16px;
}
.page-details__content ol {
  list-style: decimal;
  padding-left: 44px;
}
.page-details__content li {
  font-size: 13px;
  margin: 0.4em 0;
}
@media screen and (max-width: 640px) {
  .page-details__content li {
    font-size: 12px;
  }
}
.page-details.is-opened .page-details__summary-inner span::before {
  opacity: 0;
}

/* ---------------------------
  labs
----------------------------- */
.labs-layout {
  display: grid;
  grid-template-columns: 150px auto;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .labs-layout {
    gap: 40px;
  }
}
@media screen and (max-width: 896px) {
  .labs-layout {
    grid-template-columns: 120px auto;
    gap: 32px;
  }
}
@media screen and (max-width: 640px) {
  .labs-layout {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.labs-photo {
  margin: 0 auto;
}

.labs-head {
  font-family: var(--minchoFont);
  font-size: 28px;
  font-weight: 400;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 640px) {
  .labs-head {
    font-size: 24px;
  }
}
.labs-head span {
  font-family: var(--minchoFont);
  font-weight: 400;
  font-size: 13px;
}
@media screen and (max-width: 640px) {
  .labs-head span {
    font-size: 12px;
  }
}

.labs-info {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 4px;
}
.labs-info dt {
  display: inline-block;
  width: fit-content;
  height: fit-content;
  background-color: var(--purple);
  color: #ffffff;
  font-size: 11px;
  text-align: center;
  padding: 0 0.5em 0.2em;
  white-space: nowrap;
  margin-top: 0.4em;
}
@media screen and (max-width: 640px) {
  .labs-info dt {
    margin-top: 0.2em;
  }
}
.labs-info dd {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--minchoFont);
}
@media screen and (max-width: 640px) {
  .labs-info dd {
    font-size: 14px;
  }
}

.labs-intro {
  font-size: 14px;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 640px) {
  .labs-intro {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

.labs-content {
  margin-top: 28px;
  margin-bottom: 30px;
  border: 10px solid #f2f2f2;
}
@media screen and (max-width: 640px) {
  .labs-content {
    border-width: 5px;
  }
}
.labs-content img {
  margin: 0 auto;
}

.labs-topics__control {
  display: flex;
  gap: 1px;
  background-color: #fff;
  border-bottom: 2px solid var(--purple);
}
.labs-topics__control button {
  background-color: var(--purple);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  max-width: 170px;
  width: 33%;
  padding: 0.5em;
  cursor: pointer;
  background-image: url(../theme-images/btn_triangle.svg);
  background-position: top right;
  background-size: 15px;
  background-repeat: no-repeat;
  line-height: 1.5;
}
@media screen and (max-width: 896px) {
  .labs-topics__control button {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .labs-topics__control button {
    font-size: 13px;
  }
}
.labs-topics__control button.is_active {
  background-color: #332479;
}

.labs-topics__display article {
  display: none;
  padding: 30px 20px 50px;
  background-color: #f1f1f1;
}
@media screen and (max-width: 640px) {
  .labs-topics__display article {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 30px;
  }
}
.labs-topics__display article.is_active {
  display: block;
}
.labs-topics__display article > * {
  margin-top: 1em;
  margin-bottom: 1em;
}
.labs-topics__display article > *:first-child {
  margin-top: 0 !important;
}
.labs-topics__display article > *:last-child {
  margin-bottom: 0 !important;
}
.labs-topics__display h3 {
  font-size: 16px;
  font-weight: 500;
  padding-left: 0.6em;
  border-left: 3px solid var(--purple);
  line-height: 1.5;
  margin-bottom: 1em;
}
@media screen and (max-width: 640px) {
  .labs-topics__display h3 {
    font-size: 15px;
  }
}
.labs-topics__display p {
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .labs-topics__display p {
    font-size: 13px;
  }
}
.labs-topics__display img {
  margin-top: 2em;
  margin-bottom: 2em;
}
@media screen and (max-width: 640px) {
  .labs-topics__display img {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }
}

/* ---------------------------
  career
----------------------------- */
.career-head {
  font-family: var(--minchoFont);
  font-size: 28px;
  font-weight: 400;
  padding: 0.25em 0.5em;
  background: transparent;
  border-left: solid 5px var(--purple);
  margin-bottom: 1em;
}
.career-layout p {
  font-family: var(--minchoFont);
}
@media screen and (max-width: 640px) {
  .career-head {
    font-size: 20px;
  }
}

.career-lead {
  width: fit-content;
  margin-inline: auto;
  font-weight: 400;
  font-family: var(--minchoFont);
  margin-bottom: 2em;
}
@media screen and (max-width: 640px) {
  .career-lead {
    font-size: 14px;
  }
}

.nc {
  text-align: center !important;
  vertical-align: middle !important;
  color: var(--purple);
}

.qname {
  width: 20%;
}
@media screen and (max-width: 640px) {
  .qname {
    width: 33%;
  }
}

/* ---------------------------
  graduate school
----------------------------- */
.grad-policy li {
  display: flex;
  padding: 24px 10px;
  border-bottom: 1px solid #eeeeee;
}
@media screen and (max-width: 640px) {
  .grad-policy li {
    padding: 18px 10px;
  }
}
.grad-policy li:first-of-type {
  padding-top: 0;
}
.grad-policy span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--purple);
  color: #ffffff;
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-family: var(--minchoFont);
  margin-top: 6px;
  padding-bottom: 2px;
}
@media screen and (max-width: 640px) {
  .grad-policy span {
    font-size: 14px;
    width: 24px;
    height: 24px;
  }
}
.grad-policy p {
  display: block;
  width: calc(100% - 30px);
  padding-left: 20px;
  font-family: var(--minchoFont);
}
@media screen and (max-width: 640px) {
  .grad-policy p {
    font-size: 14px;
    width: calc(100% - 24px);
    padding-left: 14px;
  }
}

.grad-subhead {
  text-align: center;
  background-color: var(--purple);
  color: #ffffff;
  font-weight: bold;
  font-size: 28px;
  padding: 0.2em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 640px) {
  .grad-subhead {
    font-size: 20px;
  }
}

.grad-concept {
  max-width: 840px;
  margin: 0 auto;
  border: 1px solid #d2cae5;
  background-color: #fff;
  padding: 40px;
  position: relative;
}
.grad-concept p {
  margin-bottom: 1rem;
}

.grad-concept > *:last-child {
    margin: 0;
}
@media screen and (max-width: 640px) {
  .grad-concept {
    width: calc(100% - 20px);
  }
}
.grad-concept::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #d2cae5;
  transform: translate(10px, 10px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .grad-concept {
    padding: 20px 20px 24px;
  }
}
.grad-concept h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  font-weight: normal;
  font-family: var(--minchoFont);
  margin-bottom: 1em;
}
@media screen and (max-width: 640px) {
  .grad-concept h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .grad-concept h3 img {
    width: 40px;
    height: 40px;
  }
}
.grad-concept p {
  font-size: 16px;
  font-family: var(--minchoFont);
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .grad-concept p {
    font-size: 14px;
    line-height: 1.8;
  }
}

.grad-test-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}
@media screen and (max-width: 640px) {
  .grad-test-layout {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 10px;
  }
}

.grad-test {
  border: 1px solid var(--purple);
  padding: 0 16px 30px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.grad-test--single {
  max-width: 460px;
  margin-inline: auto;
}
.grad-test h3 {
  font-size: 21px;
  text-align: center;
  color: #ffffff;
  background-color: var(--purple);
  padding: 0.3em;
  font-weight: bold;
  border-radius: 2em;
  max-width: 320px;
  width: 100%;
  margin-inline: auto;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .grad-test h3 {
    font-size: 18px;
  }
}
.grad-test h4 {
  font-size: 21px;
  font-weight: bold;
  font-family: var(--minchoFont);
  text-align: center;
}
@media screen and (max-width: 640px) {
  .grad-test h4 {
    font-size: 18px;
  }
}
.grad-test p {
  font-size: 14px;
  font-family: var(--minchoFont);
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 640px) {
  .grad-test p {
    font-size: 13px;
    text-align: left;
  }
}
.grad-test a {
  display: block;
  margin-inline: auto;
  font-size: 16px;
  font-family: var(--minchoFont);
  border: 1px solid var(--purple);
  background-color: #e1dded;
  max-width: 200px;
  width: 100%;
  padding: 0.6em;
  text-align: center;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .grad-test a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 640px) {
  .grad-test a {
    font-size: 15px;
  }
}

.grad-test__inner {
  margin-bottom: 24px;
}
@media screen and (max-width: 640px) {
  .grad-test__inner {
    margin-bottom: 20px;
  }
}

.grad-subject-lead {
  font-weight: 400;
  font-family: var(--minchoFont);
  margin-bottom: 1.5em;
}
@media screen and (max-width: 640px) {
  .grad-subject-lead {
    font-size: 14px;
  }
}

.grad-program-head {
  font-size: 24px;
  font-family: var(--minchoFont);
  font-weight: 400;
  margin-bottom: 1em;
  padding-left: 0.5em;
  border-left: 6px solid #705899;
}
@media screen and (max-width: 640px) {
  .grad-program-head {
    font-size: 16px;
  }
}
.grad-program-lead {
  font-weight: 400;
  font-family: var(--minchoFont);
  margin-bottom: 1.2em;
}
@media screen and (max-width: 640px) {
  .grad-program-lead {
    font-size: 14px;
  }
}
.grad-program-list li {
  font-weight: 400;
  font-family: var(--minchoFont);
  position: relative;
  padding-left: 1.2em;
}
@media screen and (max-width: 640px) {
  .grad-program-list li {
    font-size: 14px;
  }
}
.grad-program-list li + li {
  margin-top: 0.3em;
}
.grad-program-list li::before {
  content: "●";
  color: #B7AFCE;
  font-size: 1em;
  position: absolute;
  top: 0;
  left: 0;
}

.grad-table-head {
  max-width: 160px;
  width: 100%;
  padding: 0.3em 0.5em;
  background-color: #705899;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 1em;
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .grad-table-head {
    max-width: 130px;
    font-size: 14px;
  }
}
.grad-timetable {
  width: 100%;
  border-collapse: collapse;
}
.grad-timetable th, .grad-timetable td {
  vertical-align: middle;
  border: 1px solid #000000;
  padding: 0.5em;
  font-size: 13px;
  max-width: 130px;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  .grad-timetable th, .grad-timetable td {
    font-size: 12px;
  }
}
.grad-timetable td span {
  font-size: 0.8em;
}
.grad-timetable thead th {
  background-color: #D2CAE5;
  font-weight: bold;
  white-space: nowrap;
  height: 50px;
}
.grad-timetable tbody th {
  white-space: nowrap;
  font-weight: bold;
}
.grad-timetable .bg-gray td,
.grad-timetable .bg-gray th:not([rowspan="2"]) {
  background-color: #F1F1F1;
}
.grad-timetable .spacer {
  border-left: none;
  border-right: none;
}

.grad-timetable-sub {
  width: fit-content;
  border-collapse: collapse;
  margin-top: 24px;
}
.grad-timetable-sub th, .grad-timetable-sub td {
  vertical-align: middle;
  border: 1px solid #000000;
  padding: 0.5em 1.5em;
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
  height: 50px;
}
.grad-timetable-sub thead th {
  background-color: #D2CAE5;
  font-weight: bold;
  white-space: nowrap;
  height: 50px;
}
.grad-timetable-sub .bg-gray {
  background-color: #f1f1f1;
}
.grad-timetable-sub caption {
  font-weight: 400;
  font-family: var(--minchoFont);
  margin-bottom: 0.5em;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .grad-timetable-sub caption {
    font-size: 14px;
  }
}

.grad-timetable-sub-caption {
  margin-top: 30px;
}
.grad-timetable-sub-caption p {
  font-size: 14px;
  margin-top: 1em;
}
@media screen and (max-width: 640px) {
  .grad-timetable-sub-caption p {
    font-size: 12px;
  }
}
.grad-timetable-sub-caption dl {
  display: flex;
  align-items: center;
}
.grad-timetable-sub-caption dt {
  text-indent: -9999px;
  color: transparent;
  width: 80px;
  height: 30px;
  border: 1px solid #000000;
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .grad-timetable-sub-caption dt {
    width: 60px;
    height: 20px;
  }
}
.grad-timetable-sub-caption .bg-gray {
  background-color: #f1f1f1;
}
.grad-timetable-sub-caption dd {
  font-size: 14px;
  padding-left: 0.8em;
  margin-right: 1.8em;
}
@media screen and (max-width: 640px) {
  .grad-timetable-sub-caption dd {
    font-size: 13px;
  }
}


.grad-subject-table {
  width: 100%;
  border-collapse: collapse;
}
.grad-subject-table th, .grad-subject-table td {
  vertical-align: middle;
  border: 1px solid #000000;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .grad-subject-table th, .grad-subject-table td {
    padding: 14px;
  }
}
.grad-subject-table th {
  background-color: #e1dded;
}
@media screen and (max-width: 640px) {
  .grad-subject-table th {
    font-size: 13px;
  }
}
.grad-subject-table td ul {
  padding-left: 0;
}
.grad-subject-table td li {
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .grad-subject-table td li {
    font-size: 13px;
  }
}
.grad-subject-table td ul + span {
  display: inline-block;
  padding-left: 1em;
}
@media screen and (max-width: 640px) {
  .grad-subject-table td ul + span {
    font-size: 13px;
  }
}
.grad-subject-table thead th {
  font-size: 14px;
  text-align: center;
  padding: 14px 16px;
}
@media screen and (max-width: 640px) {
  .grad-subject-table thead th {
    padding: 14px;
  }
}
.grad-subject-table .bg-lightpurple {
  background-color: #d2cae5;
  font-size: 28px;
  padding: 14px 16px;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .grad-subject-table .bg-lightpurple {
    font-size: 24px;
    padding: 14px;
  }
}
.grad-subject-table td p {
  text-align: center;
}
.grad-subject-table .bg-blue {
  background-color: #4ca4d6;
}
.grad-subject-table .bg-pink {
  background-color: #ef9a9a;
}
.grad-subject-table .bg-orange {
  background-color: #f2a151;
}
.grad-subject-table .bg-green {
  background-color: #97b765;
}
.grad-subject-table .bg-lightblue {
  background-color: #b0cad6;
  vertical-align: baseline;
}
.grad-subject-table .bg-lightblue li::before {
  color: #4ca4d6;
}
.grad-subject-table .bg-lightpink {
  background-color: #f7cdcd;
  vertical-align: baseline;
}
.grad-subject-table .bg-lightpink li::before {
  color: #ef9a9a;
}
.grad-subject-table .bg-lightorange {
  background-color: #f2cead;
  vertical-align: baseline;
}
.grad-subject-table .bg-lightorange li::before {
  color: #f2a151;
}
.grad-subject-table .bg-lightgreen {
  background-color: #c9d3b8;
  vertical-align: baseline;
}
.grad-subject-table .bg-lightgreen li::before {
  color: #97b765;
}
.grad-subject-table .bg-beige {
  background-color: #e2decf;
  text-align: left;
}
.grad-subject-table .bg-beige ul {
  width: fit-content;
  margin-inline: auto;
}
.grad-subject-table .bg-beige li::before {
  color: #c69c6d;
}
.grad-subject-table .nowrap {
  white-space: nowrap;
}
.grad-subject-table-notice {
  text-align: right;
  font-size: 14px;
  margin-top: 0.5em;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .grad-subject-table-notice {
    width: 860px;
  }
}


/* ---------------------------
  post
----------------------------- */
.entry > *,.post > * {
  margin-top: 1em;
  margin-bottom: 1em;
  max-width: 100%;
}
.entry > *:first-child,.post > *:first-child {
  margin-top: 0 !important;
}
.entry > *:last-child,.post > *:last-child {
  margin-bottom: 0 !important;
}
.entry h2:not([class]),.post h2:not([class]) {
  margin-top: 80px;
  font-size: 28px;
  font-weight: 400;
  font-family: var(--minchoFont);
  padding-left: 0.5em;
  border-left: 4px solid var(--blue);
}
@media screen and (max-width: 640px) {
  .entry h2:not([class]),.post h2:not([class]) {
    margin-top: 40px;
    font-size: 20px;
  }
}
.entry h3:not([class]),.post h3:not([class]) {
  margin-top: 80px;
  font-size: 24px;
  font-weight: 400;
  font-family: var(--minchoFont);
  padding-left: 0.5em;
  border-left: 6px solid var(--blue);
}
@media screen and (max-width: 640px) {
  .entry h3:not([class]),.post h3:not([class]) {
    margin-top: 40px;
    font-size: 18px;
  }
}
.entry h4:not([class]),.post h4:not([class]) {
  margin-top: 80px;
  font-size: 21px;
  font-weight: 400;
  font-family: var(--minchoFont);
}
.entry h4:not([class])::before,.post h4:not([class])::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--blue);
  margin-right: 0.2em;
  margin-bottom: 0.1em;
}
@media screen and (max-width: 640px) {
  .entry h4:not([class]),.post h4:not([class]) {
    margin-top: 40px;
    font-size: 17px;
  }
}
.entry h5:not([class]),.post h5:not([class]) {
  margin-top: 80px;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--minchoFont);
}
@media screen and (max-width: 640px) {
  .entry h5:not([class]),.post h5:not([class]) {
    margin-top: 40px;
    font-size: 16px;
  }
}
.entry p:not([class]),.post p:not([class]) {
  font-size: 16px;
  line-height: 1.75;
  font-family: var(--minchoFont);
}
@media screen and (max-width: 640px) {
  .entry p:not([class]),.post p:not([class]) {
    font-size: 14px;
  }
}
.entry strong, .entry strong > *,.post strong, .post strong > * {
  font-weight: bold;
}
.entry em, .entry em > *,.post em, .post em > * {
  font-style: italic;
}
.entry del,.post del {
  text-decoration: line-through double var(--noticeColor);
}
.entry blockquote,.post blockquote {
  padding: 0.5em;
  background-color: #f2f2f2;
}
.entry a:not([class]),.post a:not([class]) {
  color: var(--purple);
  text-decoration: underline;
  transition: text-decoration 0.1s ease-in-out;
  font-size: 16px;
  line-height: 2;
}
@media screen and (min-width: 640px) {
  .entry a:not([class]):hover,.post a:not([class]):hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 640px) {
  .entry a:not([class]),.post a:not([class]) {
    font-size: 14px;
  }
}
.entry ul:not([class]),.post ul:not([class]) {
  list-style: none;
  margin: 1em 0;
}
.entry ul:not([class]) li,.post ul:not([class]) li {
  font-size: 16px;
  font-family: var(--minchoFont);
  padding-left: 1.2em;
  position: relative;
  margin: 0.2em 0;
}
@media screen and (max-width: 640px) {
  .entry ul:not([class]) li,.post ul:not([class]) li {
    font-size: 14px;
    padding-left: 1.4em;
    margin: 0.8em 0;
  }
}
.entry ul:not([class]) li:first-of-type,.post ul:not([class]) li:first-of-type {
  margin-top: 0;
}
.entry ul:not([class]) li:last-of-type,.post ul:not([class]) li:last-of-type {
  margin-bottom: 0;
}
.entry ul:not([class]) li::before,.post ul:not([class]) li::before {
  display: inline-block;
  content: "";
  border-radius: 50%;
  background-color: #B1D1DD;
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  position: absolute;
  top: 8px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .entry ul:not([class]) li::before,.post ul:not([class]) li::before {
    top: 6px;
  }
}
.entry ol:not([class]),.post ol:not([class]) {
  list-style: none;
  counter-reset: ol_number;
  margin: 1em 0;
  padding-left: 0;
}
.entry ol:not([class]) li,.post ol:not([class]) li {
  font-size: 16px;
  font-family: var(--minchoFont);
  margin: 0.8em 0;
  padding-left: 1.8em;
  position: relative;
}
@media screen and (max-width: 640px) {
  .entry ol:not([class]) li,.post ol:not([class]) li {
    font-size: 14px;
    padding-left: 2em;
  }
}
.entry ol:not([class]) li:first-of-type,.post ol:not([class]) li:first-of-type {
  margin-top: 0;
}
.entry ol:not([class]) li:last-of-type,.post ol:not([class]) li:last-of-type {
  margin-bottom: 0;
}
.entry ol:not([class]) li::before,.post ol:not([class]) li::before {
  counter-increment: ol_number;
  content: counter(ol_number);
  border-radius: 50%;
  background-color: var(--blue);
  color: #ffffff;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  font-size: 0.8em;
  font-family: var(--mainFont);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 1;
}
.entry table,.post table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.entry table caption,.post table caption {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.8em;
  text-align: left;
}
.entry table th, .entry table td,.post table th, .post table td {
  padding: 0.8em 1.4em;
  font-size: 14px;
  vertical-align: middle;
  border: 1px solid #777777;
}
@media screen and (max-width: 640px) {
  .entry table th, .entry table td,.post table th, .post table td {
    font-size: 13px;
    padding: 0.8em 1em;
  }
}
.entry table td,.post table td {
  text-align: left;
}
.entry table th,.post table th {
  background-color: #B1D1DD;
  font-weight: bold;
  text-align: center;
  width: 200px;
}
@media screen and (max-width: 640px) {
  .entry table th,.post table th {
    width: auto;
    min-width: 80px;
  }
}
.entry table a:not([class]),.post table a:not([class]) {
  font-size: 1em;
  color: var(--purple);
  text-decoration: underline;
  transition: text-decoration 0.1s ease-in-out;
  word-break: break-all;
}
@media screen and (min-width: 640px) {
  .entry table a:not([class]):hover,.post table a:not([class]):hover {
    text-decoration: none;
  }
}
.entry .br-sp,.post .br-sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .entry .br-sp,.post .br-sp {
    display: inline;
  }
}
.entry .br-sp-none,.post .br-sp-none {
  display: inline;
}
@media screen and (max-width: 640px) {
  .entry .br-sp-none,.post .br-sp-none {
    display: none;
  }
}

/* ---------------------------
  department
----------------------------- */
.department-head {
  font-family: var(--minchoFont);
  font-size: 28px;
  font-weight: 400;
  padding: 0.25em 0.5em;
  background: transparent;
  border-left: solid 5px var(--purple);
  margin-bottom: 1em;
}
@media screen and (max-width: 640px) {
  .department-head {
    font-size: 20px;
  }
}

.department-layout p {
  width: fit-content;
  font-weight: 400;
  font-family: var(--minchoFont);
  margin-bottom: 3em;
}
@media screen and (max-width: 640px) {
  .department-layout p {
    font-size: 14px;
  }
}

.department-layout p {
  margin-bottom: 1em;
}
.department-layout p:last-child {
margin-bottom: 0;
}

.department-layout h3 {
  margin-bottom: 0.8em;
  font-size: 21px;
  font-weight: 400;
  font-family: var(--minchoFont);
}
.department-layout h3::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--purple);
  margin-right: 0.2em;
  margin-bottom: 0.1em;
}

.department-layout h3:last-of-type {
     margin-top: 2em;
}

@media screen and (max-width: 640px) {
  .department-layout h3 {
    margin-top: 40px;
    font-size: 17px;
  }
}

.department-content {
  margin-top: 28px;
  margin-bottom: 30px;
  border: 10px solid #f2f2f2;
}
@media screen and (max-width: 640px) {
  .department-content {
    border-width: 5px;
  }
}
.department-content img {
  margin: 0 auto;
}

/* ---------------------------
  interview
----------------------------- */
.interview-content {
  max-width: 840px;
  margin: 0 auto;
  border: 1px solid #d2cae5;
  background-color: #fff;
  padding: 40px;
  position: relative;
}

.interview-content p {
  margin-bottom: 1rem;
}

.interview-content > *:last-child {
    margin: 0;
}

@media screen and (max-width: 640px) {
  .interview-content {
    width: calc(100% - 20px);
  }
}
.interview-content::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #d2cae5;
  transform: translate(10px, 10px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .interview-content {
    padding: 20px 20px 24px;
  }
}
.interview-content h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 24px;
  font-weight: normal;
  font-family: var(--minchoFont);
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: solid 1px #d2cae5;
}
@media screen and (max-width: 640px) {
  .interview-content h3 {
    font-size: 18px;
  }
}
.interview-content h4 {
  display: flex;
  align-items: center;
  gap: 0.5em;
  justify-content: center;
  color: var(--purple);
  font-size: 21px;
  font-weight: bold;
  font-family: var(--minchoFont);
  margin-bottom: 1em;
}
@media screen and (max-width: 640px) {
  .interview-content h4 {
    font-size: 16px;
  }
}
.interview-content p {
  font-size: 16px;
  font-family: var(--minchoFont);
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .interview-content p {
    font-size: 14px;
    line-height: 1.8;
  }
}
.interview-img {
  margin-top: 28px;
  margin-bottom: 30px;
  border: 10px solid #f2f2f2;
}
@media screen and (max-width: 640px) {
  .interview-img {
    border-width: 5px;
  }
}
.interview-img img {
  margin: 0 auto;
}
.interview-content hr {
  width: 100%;
  margin-bottom: 24px;
  border-width: 1px 0 0 0;
  border-color: #cccccc;
}
.grade {
  font-size: 0.75em;
}
.studentname:after{
	content: "さん";
    font-size: 0.75em;
}

/* ---------------------------
  login
----------------------------- */
.login {
  max-width: 470px;
  margin-inline: auto;
  border: 1px solid var(--blue);
  padding: 0 24px 30px;
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .login {
    margin-top: 64px;
  }
}
.login__head {
  max-width: 340px;
  width: 100%;
  margin-inline: auto;
  font-size: 21px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  padding: 0.4em 1em;
  border-radius: 2em;
  background-color: var(--blue);
  translate: 0 -50%;
}
@media screen and (max-width: 640px) {
  .login__head {
    font-size: 16px;
  }
}
.login__text {
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .login__text {
    font-size: 13px;
    text-align: left;
  }
}
.login__form {
  max-width: 360px;
  margin-inline: auto;
}
.login__form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
.login__form fieldset + fieldset {
  margin-top: 24px;
}
.login__form legend {
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 0.5em;
}
.login__form input {
  padding: 0.5em 1em;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #cccccc;
  width: 100%;
}
.login__form button {
  display: block;
  max-width: 200px;
  margin-inline: auto;
  width: 100%;
  padding: 0.8em;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: var(--blue);
  margin-top: 30px;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .login__form button:hover {
    opacity: 0.8;
  }
}

/* ---------------------------
  society
----------------------------- */
.society-lead {
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .society-lead {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

/* ---------------------------
  news
----------------------------- */
.news-list__item a {
  display: grid;
  grid-template-columns: 100px auto;
  gap: 0.2em 1em;
  padding: 0.8em 0.6em;
  background-color: #ffffff;
  border-bottom: 1px solid #cccccc;
  transition: opacity .2s ease-in;
}
.news-list__item a:hover {
  opacity: 0.7;
}
.news-list__item time {
  font-size: 16px;
  font-weight: normal;
  font-family: var(--minchoFont);
}
.news-list__item h2 {
  font-size: 16px;
  font-weight: normal;
  font-family: var(--minchoFont);
}
@media screen and (max-width: 640px) {
  .news-list__item a {
    grid-template-columns: 1fr;
    font-size: 14px;
  }
  .news-list__item time {
    font-size: 12px;
  }
  .news-list__item h2 {
    font-size: 14px;
  }
}
.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 40px;
}
.news-pagination a,
.news-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 40px;
  height: 40px;
  background-color: #B3B3B3;
  color: #ffffff;
  font-size: 16px;
}
.news-pagination a {
  transition: background-color .2s ease-in;
}
.news-pagination a:hover {
  background-color: var(--blue);
}
.news-pagination span {
  background-color: var(--blue);
}
@media screen and (max-width: 640px) {
  .news-pagination a,
  .news-pagination span {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* ---------------------------
  theme
----------------------------- */
@media screen and (max-width: 1024px) {
  .header__logo img {
    width: 320px;
  }
}
@media screen and (max-width: 640px) {
  .header__logo img {
    width: 280px;
  }
}
.g-nav {
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .g-nav {
    gap: 20px;
  }
}
.g-menu__item .current {
  background-color: var(--blue);
}
@media screen and (min-width: 640px) {
  .g-menu__item a:hover {
    background-color: var(--blue);
  }
}
.g-menu__item .current {
  background-color: var(--blue);
}
.cover-secondary__inner {
  background-color: var(--blue);
}
.top-common-head::before,
.top-common-head::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--blue);
}
.page-head {
  border-left: solid 5px var(--purple);
}
.hero::before {
  background-color: rgba(0, 0, 0, 0.35);
}
.infoBox p span {
  color: var(--fontMainColor);
}
.btn_news {
  background-color: var(--blue);
}
.top-table {
  width: 100%;
  border-collapse: collapse;
}
.top-table td,
.top-table th {
  font-size: 14px;
  padding: 0.8em 1.2em;
  border: 1px solid #000;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  .top-table td,
  .top-table th {
    font-size: 13px;
  }
}
.top-table th {
  font-weight: bold;
}
.top-table thead th {
  padding: 1em;
  background-color: #B1D1DD;
  text-align: center;
}
.top-table tbody th {
  width: 30%;
  font-weight: bold;
  text-align: left;
}
.top-table tbody tr:nth-of-type(even) td,
.top-table tbody tr:nth-of-type(even) th {
  background-color: #F7F7F7;
}
@media screen and (max-width: 640px) {
  .top-table thead {
    display: none;
  }
  .top-table tbody th,
  .top-table tbody td {
    width: 100%;
    display: block;
  }
  .top-table th,
  .top-table td {
    border-top: none;
  }
  .top-table tr:first-of-type > *:first-child {
    border-top: 1px solid #000;
  }
}

.page-table th, .page-table td {
  vertical-align: middle;
}
.page-table a::before {
  background-image: url(../theme-images/right_chevron_blue.svg);
}
.page-table th.bg {
  background-color: #B1D1DD;
}
.page-table tbody tr:nth-child(even) th,
.page-table tbody tr:nth-child(even) td {
  background-color: #F7F7F7;
}

/* login */
.login {
  border: 1px solid var(--blue);
}
.login__head {
  background-color: var(--blue);
}
.login__form button {
  background-color: var(--blue);
}
.headerline {
  border-bottom: 1px solid #cccccc;
}
.js-details{
  display:none;
}