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

body, h1, h2, h3, h4, h5, h6, 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 {
  --yellow: #D5A80F;
  --darkYellow: #AF8612;
  --orange: #FFB600;
  --red: #C1272D;
  --green: #006837;
  --coral: #FF9A7B;
  --bgColor: #F4F4F4;
  --fontMainColor: #000000;
  --fontSubColor: #777777;
  --borderMainColor: #eeeeee;
  --borderSubColor: #cccccc;
  --mainFont: "Noto Sans JP", sans-serif;
  --minchoFont: "Noto Serif JP", serif;
  --scroll-padding-top: 30px;
  --scroll-padding-top-tab: 120px;
  --scroll-padding-top-sp: 70px;
}

/* ---------------------------
  mixin
----------------------------- */
/* ---------------------------
  function
----------------------------- */
/* ---------------------------
  base
----------------------------- */
html {
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding-top);
}
@media screen and (max-width: 896px) {
  html {
    scroll-padding-top: var(--scroll-padding-top-tab);
  }
}
@media screen and (max-width: 640px) {
  html {
    scroll-padding-top: var(--scroll-padding-top-sp);
  }
}

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;
}
@media screen and (max-width: 640px) {
  body {
    font-size: 14px;
  }
}

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;
  gap: 12px;
  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: 1080px) {
  .header__logo img {
    width: 200px;
    height: 44px;
  }
}
@media screen and (max-width: 640px) {
  .header__logo img {
    width: 119px;
    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;
    overflow-y: auto;
  }
}
@media screen and (max-width: 640px) {
  .header__nav {
    padding-top: 50px;
  }
}

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

@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;
  white-space: nowrap;
}
@media screen and (min-width: 640px) {
  .g-nav__item a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1080px) {
  .g-nav__item a {
    font-size: 12px;
    padding-left: 0.8em;
  }
}
@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: 1080px) {
  .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;
  background-color: var(--yellow);
}
@media screen and (max-width: 896px) {
  .header-menu {
    display: none;
  }
}

.g-menu {
  display: grid;
  grid-template-columns: 58px 1fr 1fr 1fr 1fr 1fr 1fr;
}

.g-menu__item {
  border-left: 1px solid #A67C52;
}
.g-menu__item:last-of-type {
  border-right: 1px solid #A67C52;
}
.g-menu__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
  padding: 0 0.5em;
  transition: 0.2s ease-in;
  color: #ffffff;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (min-width: 640px) {
  .g-menu__item a:hover {
    background-color: var(--darkYellow);
  }
}
@media screen and (max-width: 1080px) {
  .g-menu__item a {
    font-size: 14px;
  }
}
.g-menu__item .current {
  background-color: var(--darkYellow);
}

/* ---------------------------
  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.is_active .menu-trigger__inner {
  transform: translateX(4px);
}
.menu-trigger.is_active .menu-trigger__inner span:nth-of-type(1) {
  transform: rotate(36deg);
}
.menu-trigger.is_active .menu-trigger__inner span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.is_active .menu-trigger__inner span:nth-of-type(3) {
  transform: rotate(-36deg);
}

.menu-trigger__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: 0.3s ease-in-out;
}
.menu-trigger__inner span {
  display: block;
  width: 100%;
  height: 1px;
  opacity: 1;
  background-color: var(--fontMainColor);
  transform-origin: left;
  transition: 0.3s ease-in-out;
}

/* ---------------------------
  footer
----------------------------- */
.footer {
  padding-top: 30px;
  border-top: 1px solid #cccccc;
}

.footer__pagetop {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (max-width: 896px) {
  .footer__pagetop {
    display: none;
  }
}
.footer__pagetop a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: var(--yellow);
  margin-left: auto;
  margin-right: 0;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .footer__pagetop a:hover {
    opacity: 0.8;
  }
}

.footer__copyright {
  border-top: 1px solid #cccccc;
  display: block;
  text-align: center;
  font-size: 12px;
  padding: 1.4em;
}
.footer__copyright small {
  font-size: 1em;
}
@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 12px;
  }
}

.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 100px;
}
@media screen and (max-width: 640px) {
  .top-common-section {
    padding: 20px 0 80px;
  }
}

/* ---------------------------
  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;
    height: 420px;
  }
}

.hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero__img img, .hero__img picture {
  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: 24px;
    margin-bottom: 0.5em;
    padding-bottom: 0.4em;
  }
}
@media screen and (max-width: 480px) {
  .hero__slogan h2 {
    font-size: 20px;
  }
}
.hero__slogan p {
  font-size: 28px;
}
@media screen and (max-width: 896px) {
  .hero__slogan p {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .hero__slogan p {
    font-size: 14px;
  }
}
.hero__slogan span {
  display: block;
  font-size: 16px;
}
@media screen and (max-width: 896px) {
  .hero__slogan span {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .hero__slogan span {
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  .hero__slogan span {
    font-size: 10px;
  }
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.hero__img .swiper {
  width: 100%;
  height: 100%;
}
.hero__img .swiper-slide img {
  animation: fadezoom 15s linear infinite alternate forwards running;
}

/* ---------------------------
  main
----------------------------- */
.top-main {
  position: relative;
}
.top-main + .top-main {
  margin-top: 50px;
}
@media screen and (max-width: 640px) {
  .top-main + .top-main {
    margin-top: 32px;
  }
}

.top-main__img {
  position: relative;
  z-index: 1;
}

.top-main__text {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 50px;
  max-width: 680px;
  color: #ffffff;
}
@media screen and (max-width: 896px) {
  .top-main__text {
    padding: 24px 40px 32px;
  }
}
@media screen and (max-width: 640px) {
  .top-main__text {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
    padding: 0 5px;
    color: var(--fontMainColor);
  }
}
.top-main__text h2 {
  padding-left: 0.5em;
  border-left: 5px solid var(--yellow);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0.8em;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .top-main__text h2 {
    font-size: 16px;
  }
}
.top-main__text p {
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .top-main__text p {
    font-weight: normal;
    font-size: 13px;
  }
}
.top-main__text ul {
  margin-top: 24px;
}
@media screen and (max-width: 640px) {
  .top-main__text ul {
    margin-top: 16px;
  }
}
.top-main__text li {
  display: grid;
  grid-template-columns: 30px auto;
  gap: 1em;
  font-weight: bold;
}
.top-main__text li:not(:last-of-type) {
  margin-bottom: 1em;
}
@media screen and (max-width: 640px) {
  .top-main__text li {
    font-weight: normal;
    grid-template-columns: 25px auto;
    font-size: 13px;
  }
}
.top-main__text li span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background-color: var(--yellow);
  color: #ffffff;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .top-main__text li span {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }
}

/* ---------------------------
  topics
----------------------------- */
.top-topics-section {
  background-color: var(--bgColor);
}

.top-topics-head {
  text-align: center;
  font-size: 32px;
  font-family: var(--minchoFont);
  font-weight: 400;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 896px) {
  .top-topics-head {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .top-topics-head {
    font-size: 24px;
    margin-bottom: 1em;
    padding-top: 1em;
  }
}
.top-topics-head span {
  display: block;
  font-size: 16px;
  font-family: var(--minchoFont);
  color: var(--yellow);
}
@media screen and (max-width: 896px) {
  .top-topics-head span {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .top-topics-head span {
    font-size: 12px;
  }
}

.topics-list {
  max-width: 960px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 27px;
}
@media screen and (max-width: 896px) {
  .topics-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .topics-list {
    max-width: 300px;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.topics-list__item img {
  width: 100%;
  border: 1px solid #cccccc;
}
.topics-list__item a {
  display: block;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .topics-list__item a:hover {
    opacity: 0.8;
  }
}
.topics-list__item time {
  display: block;
  font-size: 13px;
  margin-top: 1em;
  margin-bottom: 0.1em;
}
.topics-list__item .title {
  font-size: 14px;
  font-weight: normal;
}

.top-news-more {
  display: block;
  max-width: 240px;
  width: 100%;
  margin-inline: auto;
  margin-top: 48px;
  padding: 1em;
  background-color: #ffffff;
  text-align: center;
  border: 1px solid #999999;
}
@media screen and (max-width: 640px) {
  .top-news-more {
    font-size: 13px;
    margin-top: 32px;
    max-width: 140px;
  }
}

/* ---------------------------
  page common
----------------------------- */
.cover {
  background-color: var(--darkYellow);
}
@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/logo_icon_white.svg);
  background-size: 40px;
  background-position: left center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100px;
  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;
    background-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .cover__title {
    font-size: 24px;
    padding-left: 32px;
    background-size: 28px;
  }
}

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

.page-section {
  padding-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .page-section {
    padding-bottom: 32px;
  }
}
.page-section + .page-section {
  padding-top: 50px;
}
@media screen and (max-width: 640px) {
  .page-section + .page-section {
    padding-top: 32px;
  }
}

.page-child-section + .page-child-section {
  padding-top: 50px;
}
@media screen and (max-width: 640px) {
  .page-child-section + .page-child-section {
    padding-top: 40px;
  }
}

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

.page-head {
  font-family: var(--minchoFont);
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  padding: 0.25em;
  border-top: 5px solid var(--yellow);
  border-bottom: 5px solid var(--yellow);
  margin-bottom: 1.5em;
}
@media screen and (max-width: 896px) {
  .page-head {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .page-head {
    font-size: 24px;
  }
}
.page-head span {
  display: block;
  text-align: center;
  font-size: 14px;
  font-family: var(--mainFont);
  font-weight: normal;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 640px) {
  .page-head span {
    font-size: 12px;
  }
}
.page-head--flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
}
.page-head--flex span {
  padding-bottom: 0;
  font-family: var(--minchoFont);
}

.page-child-head {
  font-family: var(--minchoFont);
  font-size: 28px;
  font-weight: 400;
  padding: 0.25em 0.5em;
  border-left: solid 8px var(--yellow);
  margin-bottom: 1em;
  margin-top: 2em;
  line-height: 1.2;
}
@media screen and (max-width: 896px) {
  .page-child-head {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .page-child-head {
    font-size: 20px;
    border-width: 5px;
  }
}
.page-child-head--red {
  border-color: var(--red);
}
.page-child-head--orange {
  border-color: var(--orange);
}
.page-child-head--green {
  border-color: var(--green);
}

.page-grand-child-head {
  font-size: 18px;
  font-weight: 400;
  padding-left: 0.5em;
  border-left: solid 5px var(--yellow);
  margin-bottom: 1em;
  margin-top: 2em;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 896px) {
  .page-grand-child-head {
    font-size: 17px;
  }
}
@media screen and (max-width: 640px) {
  .page-grand-child-head {
    font-size: 16px;
  }
}

.page-round-head {
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  background-color: var(--fontMainColor);
  max-width: 300px;
  width: 100%;
  margin-inline: auto;
  padding: 0.5em;
  border-radius: 2.5em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 896px) {
  .page-round-head {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .page-round-head {
    font-size: 14px;
  }
}

.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: normal;
  background-color: #F2F2F2;
  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;
}
.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 > * {
    width: 860px;
    max-width: inherit;
  }
}

.page-2cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 896px) {
  .page-2cols {
    gap: 32px;
  }
}
@media screen and (max-width: 640px) {
  .page-2cols {
    gap: 24px;
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ---------------------------
  dept
----------------------------- */
.dept-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
}
@media screen and (max-width: 640px) {
  .dept-cats {
    gap: 16px;
    margin-top: 32px;
  }
}
.dept-cats img {
  margin-inline: auto;
}
.dept-cats span {
  display: block;
  font-family: var(--minchoFont);
  text-align: center;
  font-size: 18px;
  margin-top: 0.8em;
}
@media screen and (max-width: 896px) {
  .dept-cats span {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .dept-cats span {
    font-size: 14px;
  }
}

.dept-chart {
  display: block;
  margin-top: 56px;
}
@media screen and (max-width: 640px) {
  .dept-chart {
    margin-top: 32px;
  }
}
.dept-chart img {
  margin-inline: auto;
}
.dept-chart figcaption {
  text-align: center;
  font-weight: bold;
  margin-top: 1.5em;
}

.dept-list li {
  font-size: 18px;
  line-height: 2.3;
  position: relative;
  padding-left: 32px;
}
@media screen and (max-width: 896px) {
  .dept-list li {
    font-size: 16px;
    padding-left: 28px;
  }
}
@media screen and (max-width: 640px) {
  .dept-list li {
    font-size: 14px;
    padding-left: 24px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 640px) {
  .dept-list li:not(:last-of-type) {
    margin-bottom: 0.5em;
  }
}
.dept-list li::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: var(--darkYellow);
  position: absolute;
  top: 9px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 896px) {
  .dept-list li::before {
    width: 20px;
    height: 20px;
    top: 8px;
  }
}
@media screen and (max-width: 640px) {
  .dept-list li::before {
    width: 16px;
    height: 16px;
    top: 3px;
  }
}

@media screen and (max-width: 640px) {
  .dept-cat-img {
    max-width: 260px;
    margin-inline: auto;
  }
}
.dept-cat-img img {
  margin-inline: auto;
}

.dept-cat-title {
  max-width: 520px;
  text-align: center;
  color: #ffffff;
  font-size: 21px;
  font-weight: bold;
  padding: 0.6em 1em;
  position: relative;
  margin-inline: auto;
  margin-bottom: 1.5em;
  margin-top: 1.5em;
}
@media screen and (max-width: 896px) {
  .dept-cat-title {
    font-size: 19px;
  }
}
@media screen and (max-width: 640px) {
  .dept-cat-title {
    font-size: 17px;
  }
}
.dept-cat-title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skew(-10deg);
  content: "";
  z-index: -1;
}
.dept-cat-title--red::before {
  background-color: var(--red);
}
.dept-cat-title--orange::before {
  background-color: var(--orange);
}
.dept-cat-title--green::before {
  background-color: var(--green);
}

.dept-2cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}
@media screen and (max-width: 896px) {
  .dept-2cols {
    gap: 32px;
  }
}
@media screen and (max-width: 640px) {
  .dept-2cols {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 32px;
  }
}
.dept-2cols img {
  width: 100%;
  border: 10px solid #E6E6E6;
}
@media screen and (max-width: 640px) {
  .dept-2cols img {
    border-width: 6px;
  }
}
.dept-2cols h4 {
  padding-left: 0.5em;
  border-left: 5px solid var(--red);
  font-weight: bold;
  font-size: 18px;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .dept-2cols h4 {
    font-size: 16px;
    margin-top: 1em;
  }
}
.dept-2cols p {
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .dept-2cols p {
    font-size: 13px;
  }
}

/* ---------------------------
  employment
----------------------------- */
.employment-2cols {
  margin-bottom: 64px;
}
@media screen and (max-width: 640px) {
  .employment-2cols {
    margin-bottom: 40px;
  }
}

.employment-table {
  table-layout: fixed;
}
.employment-table th, .employment-table td {
  vertical-align: middle;
  font-size: 12px;
}
@media screen and (max-width: 640px) {
  .employment-table th, .employment-table td {
    font-size: 11px;
  }
}
.employment-table thead th {
  font-weight: bold;
  background-color: #E6E6E6;
  height: 60px;
}
@media screen and (max-width: 640px) {
  .employment-table thead th {
    height: inherit;
  }
}
.employment-table tbody th {
  background-color: #f2f2f2;
}

.employment-table-notice {
  text-align: right;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .employment-table-notice {
    font-size: 12px;
  }
}
.employment-table-notice + .employment-table {
  margin-top: 0;
}

/* ---------------------------
  graduate school
----------------------------- */
.grad-mainimg img {
  width: 100%;
  margin-inline: auto;
}

.grad-box {
  max-width: 840px;
  margin-inline: auto;
  border: 1px solid #000000;
  padding: 40px;
}
@media screen and (max-width: 640px) {
  .grad-box {
    padding: 32px 16px;
  }
}
.grad-box .page-round-head:not(:first-of-type) {
  margin-top: 3em;
}
@media screen and (max-width: 640px) {
  .grad-box .page-round-head:not(:first-of-type) {
    margin-top: 2.5em;
  }
}
.grad-box h5 {
  padding-left: 0.5em;
  line-height: 1.4;
  border-left: 5px solid var(--yellow);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 640px) {
  .grad-box h5 {
    font-size: 16px;
    margin-bottom: 1em;
  }
}
.grad-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 640px) {
  .grad-box ul {
    gap: 8px 5px;
  }
}
.grad-box li {
  font-size: 15px;
  text-align: center;
  border-radius: 2.5em;
  border: 1px solid #000000;
  padding: 0.5em 2em;
  width: 100%;
  max-width: 200px;
}
@media screen and (max-width: 640px) {
  .grad-box li {
    font-size: 12px;
    width: auto;
    padding-inline-start: 0.5em 1em;
  }
}
.grad-box li span {
  font-weight: bold;
  color: var(--red);
}
.grad-box figure {
  display: block;
  margin-top: 60px;
  padding: 0 20px;
}
@media screen and (max-width: 640px) {
  .grad-box figure {
    padding: 0;
    margin-top: 32px;
  }
}
.grad-box figure img {
  width: 100%;
}
.grad-box figure figcaption {
  text-align: center;
  font-size: 14px;
  margin-top: 1.8em;
}
@media screen and (max-width: 640px) {
  .grad-box figure figcaption {
    font-size: 12px;
  }
}

.grad-table th, .grad-table td {
  vertical-align: middle;
  font-weight: normal;
}
@media screen and (max-width: 640px) {
  .grad-table th, .grad-table td {
    font-size: 12px;
  }
}
.grad-table .bg-orange {
  background-color: #FFCC00;
}
.grad-table .bg-coral {
  background-color: var(--coral);
}
.grad-table .bg-gray {
  background-color: #f2f2f2;
}
.grad-table .aligncenter {
  text-align: center;
}
.grad-table .vertical {
  writing-mode: vertical-rl;
  text-align: center;
  padding: 0.8em;
}

.grad-lab {
  border: 20px solid #f2f2f2;
  padding: 30px;
}
@media screen and (max-width: 896px) {
  .grad-lab {
    border-width: 10px;
  }
}
@media screen and (max-width: 640px) {
  .grad-lab {
    padding: 24px 16px;
    border-width: 5px;
  }
}
.grad-lab + .grad-lab {
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  .grad-lab + .grad-lab {
    margin-top: 16px;
  }
}

.grad-lab__head {
  border-top: 5px solid var(--yellow);
  border-bottom: 5px solid var(--yellow);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 10px;
}
@media screen and (max-width: 640px) {
  .grad-lab__head {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0;
  }
}
.grad-lab__head h4 {
  font-weight: bold;
  font-size: 21px;
  font-family: var(--minchoFont);
}
@media screen and (max-width: 896px) {
  .grad-lab__head h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .grad-lab__head h4 {
    font-size: 16px;
  }
}
.grad-lab__head h4 span {
  font-weight: normal;
  font-size: 16px;
  display: inline-block;
  margin-left: 0.5em;
}
@media screen and (max-width: 896px) {
  .grad-lab__head h4 span {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .grad-lab__head h4 span {
    font-size: 12px;
  }
}
.grad-lab__head .ruby {
  font-size: 14px;
  font-family: var(--minchoFont);
}
@media screen and (max-width: 896px) {
  .grad-lab__head .ruby {
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  .grad-lab__head .ruby {
    font-size: 10px;
  }
}
.grad-lab__head .cat {
  font-size: 11px;
  background-color: #000000;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  padding: 0.2em 1em 0.3em;
  color: #ffffff;
}
@media screen and (max-width: 640px) {
  .grad-lab__head .cat {
    font-size: 10px;
    padding: 0.2em 0.5em 0.3em;
  }
}

.grad-lab__body {
  padding-top: 16px;
  padding-left: 10px;
}
@media screen and (max-width: 640px) {
  .grad-lab__body {
    padding-left: 0;
  }
}
.grad-lab__body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.grad-lab__body li {
  border: 1px solid #000000;
  padding: 0.2em 1.2em;
  text-align: center;
  font-size: 14px;
  border-radius: 2.5em;
}
@media screen and (max-width: 640px) {
  .grad-lab__body li {
    font-size: 12px;
  }
}
.grad-lab__body p {
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .grad-lab__body p {
    font-size: 13px;
  }
}
.grad-lab__body table {
  width: fit-content;
  border-collapse: collapse;
  margin-top: 24px;
}
.grad-lab__body th, .grad-lab__body td {
  font-size: 14px;
  padding: 0.8em 1.5em;
  border: 1px solid #000000;
}
@media screen and (max-width: 640px) {
  .grad-lab__body th, .grad-lab__body td {
    font-size: 12px;
  }
}
.grad-lab__body td {
  background-color: #FFB600;
}
.grad-lab__body th {
  font-weight: bold;
  background-color: #F2F2F2;
}
.grad-lab__body .bg-blue {
  background-color: #359ED8;
}
.grad-lab__body .bg-pink {
  background-color: #ED747D;
}

.grad-career-table th, .grad-career-table td {
  vertical-align: middle;
  font-weight: normal;
}
.grad-career-table tbody th {
  text-align: center;
  background-color: #F2F2F2;
  width: 240px;
}
@media screen and (max-width: 896px) {
  .grad-career-table tbody th {
    width: auto;
  }
}
.grad-career-table tbody span {
  color: var(--red);
}

.grad-table-notice {
  text-align: right;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .grad-table-notice {
    font-size: 12px;
    text-align: left;
  }
}
.grad-table-notice--top {
  margin-bottom: 0.8em;
}
.grad-table-notice--bottom {
  margin-top: 0.8em;
  color: var(--red);
}

.grad-round-head {
  margin-top: 56px;
}
@media screen and (max-width: 640px) {
  .grad-round-head {
    margin-top: 32px;
  }
}

/* ---------------------------
  qual
----------------------------- */
.qual-section + .qual-section {
  border-top: 1px solid #eeeeee;
}
.qual-section p:not([class]) {
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .qual-section p:not([class]) {
    font-size: 13px;
  }
}
.qual-section ul:not([class]) li {
  font-size: 14px;
  padding-left: 1em;
  background-image: url(../theme-images/right_chevron_yellow.svg);
  background-size: 6px;
  background-repeat: no-repeat;
  background-position: left top 0.7em;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .qual-section ul:not([class]) li {
    font-size: 13px;
  }
}
.qual-section ul:not([class]) a {
  transition: text-decoration 0.1s ease-in-out;
}
@media screen and (min-width: 640px) {
  .qual-section ul:not([class]) a:hover {
    text-decoration: underline;
  }
}
hr {
  border: none;
  border-top: 1px solid #eeeeee;
  display: block;
  margin: 40px 0;
}
@media screen and (max-width: 640px) {
  hr {
    margin: 24px 0;
  }
}

.qual-child-section {
  border-top: 1px solid #eeeeee;
  padding: 40px 0;
}
@media screen and (max-width: 640px) {
  .qual-child-section {
    padding: 32px 0;
  }
}
.qual-child-section--mt {
  margin-top: 40px;
}
.qual-child-section .page-round-head {
  margin-top: 2em;
}

.qual-head {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 896px) {
  .qual-head {
    font-size: 22px;
  }
}
@media screen and (max-width: 640px) {
  .qual-head {
    font-size: 18px;
  }
}

.qual-child-head {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 0.5em;
  margin-top: 2em;
}
@media screen and (max-width: 640px) {
  .qual-child-head {
    font-size: 13px;
    margin-top: 1.5em;
  }
}

.qual-anchor {
  display: flex;
  gap: 1px;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .qual-anchor {
    margin-bottom: 20px;
  }
}
.qual-anchor li {
  width: 50%;
  max-width: 260px;
  position: relative;
}
.qual-anchor li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  border: 10px solid #fff;
  border-left-color: transparent;
  border-bottom-color: transparent;
  height: 0;
  width: 0;
}
.qual-anchor a {
  padding: 0.5em 1em;
  background-color: #cccccc;
  color: #ffffff;
  display: block;
  font-weight: bold;
  font-size: 21px;
  text-align: center;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .qual-anchor a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 896px) {
  .qual-anchor a {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .qual-anchor a {
    font-size: 16px;
  }
}

.qual-anchor__current a {
  background-color: var(--yellow);
}

.qual-lead {
  text-align: center;
  font-family: var(--minchoFont);
  font-size: 32px;
  margin-bottom: 1em;
}
@media screen and (max-width: 896px) {
  .qual-lead {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .qual-lead {
    font-size: 20px;
  }
}

.qual-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
@media screen and (max-width: 640px) {
  .qual-list {
    gap: 8px 5px;
  }
}
.qual-list li {
  width: 100%;
  max-width: 260px;
}
@media screen and (max-width: 640px) {
  .qual-list li {
    width: calc(50% - 3px);
  }
}
.qual-list a {
  display: block;
  border: 1px solid #000000;
  padding: 0.4em 1.5em 0.5em;
  padding-right: 44px;
  background-image: url(../theme-images/right_chevron_disc.svg);
  background-repeat: no-repeat;
  background-position: center right 20px;
  background-size: 13px;
  font-size: 15px;
  text-align: left;
  border-radius: 2.5em;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .qual-list a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 896px) {
  .qual-list a {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .qual-list a {
    font-size: 12px;
    padding-right: 20px;
    padding-left: 1em;
    background-position: right 8px center;
  }
}

.qual-link {
  width: 100%;
  max-width: 260px;
  display: block;
  border: 1px solid #000000;
  padding: 0.4em 1.5em 0.5em;
  padding-right: 44px;
  background-image: url(../theme-images/right_chevron_disc.svg);
  background-repeat: no-repeat;
  background-position: center right 20px;
  background-size: 13px;
  font-size: 15px;
  text-align: left;
  border-radius: 2.5em;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .qual-link:hover {
    opacity: 0.8;
  }
}

.qual-list-notice {
  text-align: right;
  margin-top: 1em;
  font-size: 15px;
}
@media screen and (max-width: 640px) {
  .qual-list-notice {
    font-size: 12px;
    text-align: left;
  }
}

.qual-info {
  padding: 60px 0;
}
@media screen and (max-width: 640px) {
  .qual-info {
    padding: 32px 0;
  }
}

.qual-info__inner {
  max-width: 840px;
  margin-inline: auto;
  border: 1px solid #000000;
  padding: 40px;
}
@media screen and (max-width: 640px) {
  .qual-info__inner {
    padding: 24px 16px;
  }
}
.qual-info__inner a {
  word-wrap: break-word;
}

/* ---------------------------
  laboratory
----------------------------- */
.lab-section {
  padding: 30px;
  border: 20px solid #E6E6E6;
}
.lab-section + .lab-section {
  margin-top: 20px;
}
@media screen and (max-width: 896px) {
  .lab-section {
    padding: 10px;
  }
}
@media screen and (max-width: 640px) {
  .lab-section {
    padding: 16px 0;
    border-width: 0;
  }
}

.lab-section__head {
  font-family: var(--minchoFont);
  font-weight: 400;
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 7px 10px 8px;
  border-top: 5px solid var(--yellow);
  border-bottom: 5px solid var(--yellow);
}
@media screen and (max-width: 896px) {
  .lab-section__head {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .lab-section__head {
    font-size: 20px;
    border-width: 3px;
  }
}
.lab-section__head span {
  display: block;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .lab-section__head span {
    font-size: 12px;
  }
}

.lab-section__childhead {
  text-align: center;
  font-size: 32px;
  font-family: var(--minchoFont);
  font-weight: 400;
  margin: 0.8em 0 0.9em;
}
@media screen and (max-width: 896px) {
  .lab-section__childhead {
    font-size: 26px;
  }
}
@media screen and (max-width: 640px) {
  .lab-section__childhead {
    font-size: 20px;
  }
}

.lab-common-head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 640px) {
  .lab-common-head {
    gap: 16px;
  }
}
.lab-common-head > div:first-of-type {
  order: 2;
}
.lab-common-head .title {
  font-size: 32px;
  font-family: var(--minchoFont);
  font-weight: bold;
}
@media screen and (max-width: 896px) {
  .lab-common-head .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .lab-common-head .title {
    font-size: 22px;
  }
}
.lab-common-head .title span {
  display: inline-block;
  margin-left: 0.8em;
  font-size: 21px;
  font-weight: normal;
}
@media screen and (max-width: 896px) {
  .lab-common-head .title span {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .lab-common-head .title span {
    font-size: 14px;
  }
}
.lab-common-head .ruby {
  margin-top: 0.2em;
  font-size: 12px;
  font-family: var(--minchoFont);
}
@media screen and (max-width: 640px) {
  .lab-common-head .ruby {
    font-size: 10px;
  }
}
.lab-common-head .cat {
  width: fit-content;
  font-size: 13px;
  font-weight: bold;
  color: #ffffff;
  background-color: #000000;
  border-radius: 5px;
  text-align: center;
  padding: 0.2em 1em 0.3em;
  margin-top: 1.2em;
}
@media screen and (max-width: 640px) {
  .lab-common-head .cat {
    font-size: 11px;
  }
}
.lab-common-head img {
  border: 5px solid #f2f2f2;
  margin-left: auto;
}
@media screen and (max-width: 640px) {
  .lab-common-head img {
    border-width: 3px;
  }
}

.lab-article {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background-color: #f2f2f2;
  padding: 40px;
}
@media screen and (max-width: 896px) {
  .lab-article {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .lab-article {
    padding: 24px 16px;
  }
}
.lab-article + .lab-article {
  margin-top: 20px;
}

.lab-article__head .title {
  font-size: 21px;
}
@media screen and (max-width: 640px) {
  .lab-article__head .title {
    font-size: 18px;
  }
}
.lab-article__head .title span {
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .lab-article__head .title span {
    font-size: 13px;
  }
}
.lab-article__head img {
  border: none;
}

.labs-article__body h5 {
  font-size: 21px;
  font-family: var(--minchoFont);
  font-weight: normal;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 896px) {
  .labs-article__body h5 {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .labs-article__body h5 {
    font-size: 16px;
  }
}
.labs-article__body p {
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  .labs-article__body p {
    font-size: 13px;
  }
}
.labs-article__body a {
  display: block;
  max-width: 145px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  margin-top: 1em;
  font-size: 15px;
  border: 1px solid #000000;
  border-radius: 2.5em;
  background-color: #fff;
  padding: 0.5em 1em;
  padding-right: 32px;
  background-image: url(../theme-images/right_chevron_disc.svg);
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: right 18px center;
  text-align: center;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 640px) {
  .labs-article__body a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 640px) {
  .labs-article__body a {
    margin-inline: auto;
  }
}

.lab-single-lead {
  text-align: center;
  font-family: var(--minchoFont);
  font-weight: normal;
  font-size: 28px;
  margin-bottom: 1em;
}
@media screen and (max-width: 896px) {
  .lab-single-lead {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .lab-single-lead {
    font-size: 20px;
  }
}

.lab-single-article {
  padding: 40px;
  border: 20px solid #E6E6E6;
}
@media screen and (max-width: 896px) {
  .lab-single-article {
    border-width: 10px;
  }
}
@media screen and (max-width: 640px) {
  .lab-single-article {
    border-width: 0;
    padding: 0 5px;
  }
}
.lab-single-article + .lab-single-article {
  margin-top: 20px;
}

.lab-single-article__body {
  padding-top: 40px;
}
@media screen and (max-width: 640px) {
  .lab-single-article__body {
    padding-top: 24px;
  }
}
.lab-single-article__body > * {
  margin-top: 1em;
  margin-bottom: 1em;
  max-width: 100%;
}
.lab-single-article__body > *:first-child {
  margin-top: 0 !important;
}
.lab-single-article__body > *:last-child {
  margin-bottom: 0 !important;
}
.lab-single-article__body h3:not([class]) {
  font-size: 21px;
  font-weight: normal;
  font-family: var(--minchoFont);
  text-align: center;
  padding: 0.3em;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 640px) {
  .lab-single-article__body h3:not([class]) {
    font-size: 18px;
  }
}
.lab-single-article__body h4:not([class]) {
  font-size: 18px;
  font-weight: normal;
  font-family: var(--minchoFont);
  margin-bottom: 0.5em;
  margin-top: 1.5em;
}
@media screen and (max-width: 640px) {
  .lab-single-article__body h4:not([class]) {
    font-size: 16px;
  }
}
.lab-single-article__body h4 + p {
  margin-top: 0.5em;
}
.lab-single-article__body img {
  margin-inline: auto;
}
.lab-single-article__body figcaption {
  text-align: center;
  margin-top: 1em;
  font-size: 13px;
}
@media screen and (max-width: 640px) {
  .lab-single-article__body figcaption {
    font-size: 11px;
  }
}

/* ---------------------------
  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(--yellow);
}
@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(--yellow);
}
@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(--yellow);
  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: 21px;
  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;
}
@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(--yellow);
  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;
  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: var(--darkYellow);
  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;
  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);
  color: #ffffff;
  border-radius: 50%;
  background-color: var(--darkYellow);
  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: #F2F2F2;
  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(--yellow);
  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;
  }
}
.entry::after,.post::after{
  content: "";
  display: block;
  clear: both;
}

.mt-image-right{
    float: right;
    margin: 0 0 20px 20px;
}

.mt-image-left{
    float: left;
    margin: 0 20px 20px 0;
}

.mt-image-center{
    margin: 0px auto 20px; display: block;
}

@media screen and (max-width: 640px) {
    .mt-image-right,.mt-image-left,.mt-image-center,.mt-image-none{
            float:none !important;
            margin: 0px auto 20px !important;
            display: block !important;
    }
}

.pager{
  margin-top:20px;
  text-align:center;
}

.pager .current_page{
  background:#AF8612;
  color:#FFFFFF;
}

.pager span,.pager a{
  border: 1px solid #AF8612;
  padding: 0px 6px 2px;
}
.pager a{
  color:#AF8612;
}

.btn_history{
  background: #AF8612;
  color: #FFFFFF;
  padding: 8px 14px;
  display: inline-block;
  transition: opacity 0.3s ease-in-out;
}
.btn_history:hover{
  opacity:0.8;
}