@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
}

.con_base {
  margin: 0 auto;
  max-width: 1800px;
  width: 100%;
}

.w_base {
  margin: 0 auto;
  max-width: 1260px;
  width: 100%;
  padding-inline: 30px;
}

a {
  text-decoration: none;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.hd_bg {
  position: relative;
  width: 100%;
  padding: 20px;
  color: #fff;
  transition: all 0.5s ease;
}
.hd_bg .hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hd_bg .hd .hd_logo a {
  color: #2d56a0;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_logo a .hd_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 30px;
  white-space: nowrap;
}
.hd_bg .hd .hd_logo a .hd_item img {
  width: 100px;
  height: auto;
  height: auto;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_logo a .hd_item .sub_ttl {
  font-size: 0.38em;
  line-height: 1.5em;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.nav_bg {
  width: 100%;
  max-width: calc(100% - 400px);
  height: 100%;
}
.nav_bg .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 2em;
  column-gap: 2em;
  height: 100%;
  overflow: visible;
}
.nav_bg .nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 10px;
}
.nav_bg .nav .nav_list .nav_icon {
  display: none;
}
.nav_bg .nav .nav_list .nav_hd_logo {
  display: none;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
}
.nav_bg .nav .nav_list > li > a {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.5s ease;
}
.nav_bg .nav .nav_list > li > a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #2d56a0;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.nav_bg .nav .nav_list > li > a:hover::after {
  transform: scale(1, 1);
}
.nav_bg .nav .nav_list > li.current a {
  color: #2d56a0;
}
.nav_bg .nav .sub_nav_list {
  display: flex;
  gap: 0 5px;
}
.nav_bg .nav .sub_nav_list > li {
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.nav_bg .nav .sub_nav_list > li > a {
  display: flex;
  position: relative;
  align-items: center;
  color: #6a6a6a;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.5s ease;
  white-space: nowrap;
}
.nav_bg .nav .sub_nav_list > li > a:hover {
  opacity: 0.8;
}
.nav_bg .nav .sub_nav_list > li::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: center center/contain no-repeat;
}
.nav_bg .nav .sub_nav_list > li.admission::before {
  background-image: url("../images/icon_book.svg");
}
.nav_bg .nav .sub_nav_list > li.access::before {
  background-image: url("../images/icon_map.svg");
}
.nav_bg .nav .sub_nav_list > li.lang::before {
  background-image: url("../images/icon_lang.svg");
}
.nav_bg .nav .sub_nav_list > li.lang::after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 3px;
  margin-left: 3px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(-45deg);
  transition: all 0.5s ease;
}
.nav_bg .nav .sub_nav_list > li.lang:hover::after {
  transform: rotate(45deg);
}
.nav_bg .nav .sub-menu {
  display: none;
  position: absolute;
  z-index: 1050;
  width: 130px;
  top: 100%;
  left: 35px;
  transition: All 0.5s ease;
}
.nav_bg .nav .sub-menu > li {
  position: relative;
  background: #fff;
}
.nav_bg .nav .sub-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 30px;
  color: #404040;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid #2d56a0;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .sub-menu > li > a:hover {
  color: #32a6f3;
}
.nav_bg .nav .sub-menu > li > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .sub-menu > li > .sub-menu > li > a {
  display: flex;
  position: relative;
  justify-content: end;
  align-items: center;
  padding: 10px 0px 10px 30px;
  color: #404040;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .sub-menu > li > .sub-menu > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translatey(-50%);
  width: 10px;
  height: 1px;
  margin-left: 40px;
  background-color: #404040;
}
.nav_bg .nav .sub-menu > li > .sub-menu > li > a:hover {
  color: #ff0000;
}
.nav_bg .nav .sub-menu > li > .sub-menu > li > a:hover::before {
  background-color: #ff0000;
}
.nav_bg .nav li:has(.sub-menu):hover .sub-menu {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con_bg {
  width: 100%;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.ft_bg {
  width: 100%;
  margin-top: auto;
  border-top: 1px solid #2d56a0;
}
.ft_bg .ft_con {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.ft_bg .ft_con .ft_box .ft_logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
  color: #2d56a0;
  font-size: 30px;
  white-space: nowrap;
}
.ft_bg .ft_con .ft_box .ft_logo img {
  width: 100px;
  height: auto;
}
.ft_bg .ft_con .ft_box .ft_logo .sub_ttl {
  font-size: 0.38em;
  line-height: 1.5em;
}
.ft_bg .ft_con .ft_box .ft_address {
  font-size: 0.9em;
}
.ft_bg .ft {
  padding: 20px 0;
  background-color: #32a6f3;
}
.ft_bg .ft .ft_copy {
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.ft_nav_bg {
  height: 100%;
}
.ft_nav_bg .ft_nav {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  overflow: visible;
  margin-top: 20px;
}
.ft_nav_bg .ft_nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 10px;
}
.ft_nav_bg .ft_nav .nav_list > li {
  position: relative;
  z-index: 1000;
}
.ft_nav_bg .ft_nav .nav_list > li > a {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.5s ease;
}
.ft_nav_bg .ft_nav .nav_list > li > a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #2d56a0;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.ft_nav_bg .ft_nav .nav_list > li > a:hover::after {
  transform: scale(1, 1);
}
.ft_nav_bg .ft_nav .nav_list > li.current a {
  color: #2d56a0;
}
.ft_nav_bg .ft_nav .sub_nav_list {
  display: flex;
  gap: 0 5px;
}
.ft_nav_bg .ft_nav .sub_nav_list > li {
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.ft_nav_bg .ft_nav .sub_nav_list > li > a {
  display: flex;
  position: relative;
  align-items: center;
  color: #6a6a6a;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.5s ease;
  white-space: nowrap;
}
.ft_nav_bg .ft_nav .sub_nav_list > li > a:hover {
  opacity: 0.8;
}
.ft_nav_bg .ft_nav .sub_nav_list > li::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: center center/contain no-repeat;
}
.ft_nav_bg .ft_nav .sub_nav_list > li.admission::before {
  background-image: url("../images/icon_book.svg");
}
.ft_nav_bg .ft_nav .sub_nav_list > li.access::before {
  background-image: url("../images/icon_map.svg");
}
.ft_nav_bg .ft_nav .sub_nav_list > li.lang {
  display: none;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** pagetop
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #2d56a0;
  bottom: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  right: 30px;
  position: fixed;
  width: 60px;
  z-index: 100;
  transition: all 0.3s ease;
  opacity: 0;
}
.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
  opacity: 0;
}
.pt_btn::before, .pt_btn::after {
  background-color: #fff;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt_btn::before {
  width: 7px;
  bottom: 0;
}
.pt_btn::after {
  height: 7px;
  right: 0;
}

.advent.pt {
  opacity: 1;
  transition: all 0.3s ease;
}
.advent.pt .pt_btn {
  opacity: 1;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
----------------------------------------------------------------------------*/
.row_rev {
  flex-direction: row-reverse;
}

.index_slider_bg {
  width: 100%;
}
.index_slider_bg .index_slider {
  width: 100%;
  position: relative;
}
.index_slider_bg .index_slider .catchcopy_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-inline: 30px;
}
.index_slider_bg .index_slider .catchcopy_bg > p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-inline: 30px;
  max-width: 1400px;
  transform: translateY(-100%);
  font-size: 1.6rem;
  font-weight: 500;
  text-shadow: 0px 3px 4px #fff;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy {
  position: relative;
  top: 10%;
  max-width: 1400px;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 {
  font-family: Poppins, "Noto Sans JP", sans-serif;
  font-size: min(60px, 4vw);
  font-weight: 500;
  line-height: 1.2;
  color: #2d56a0;
  text-shadow: 0px 3px 4px #fff;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 span {
  font-size: 0.7em;
}
.index_slider_bg .index_slider img {
  width: 100%;
  min-width: 100%;
  height: auto;
  max-height: 730px !important;
  -o-object-fit: cover;
  object-fit: cover;
}
.index_slider_bg .index_slider .slider_slick {
  width: 100%;
}

.index_con_bg {
  background-image: linear-gradient(to bottom, #32a6f3 0%, #fff 100%), url(../images/con_bg.svg);
  background-repeat: no-repeat;
  background-blend-mode: screen;
  background-position: top, center 60%;
  background-size: 100%;
}

.index_about_bg,
.index_curriculum_bg,
.index_laboratory_bg {
  min-height: 500px;
  height: 100%;
  position: relative;
  z-index: 0;
}

.index_news,
.index_con,
.index_about,
.index_curriculum,
.index_laboratory,
.index_future {
  display: flex;
  padding-block: 30px;
}
.index_news_box,
.index_con_box,
.index_about_box,
.index_curriculum_box,
.index_laboratory_box,
.index_future_box {
  width: 66.6666666667%;
  padding: 50px 80px;
  padding-left: 0;
}
.index_news_box h2,
.index_con_box h2,
.index_about_box h2,
.index_curriculum_box h2,
.index_laboratory_box h2,
.index_future_box h2 {
  font-family: Poppins, "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(60px, 4vw);
  line-height: 1.2;
  color: #32a6f3;
}
.index_news_box h2 span,
.index_con_box h2 span,
.index_about_box h2 span,
.index_curriculum_box h2 span,
.index_laboratory_box h2 span,
.index_future_box h2 span {
  display: block;
  font-size: 1rem;
  color: #a7a7a7;
}
.index_news_box h3,
.index_con_box h3,
.index_about_box h3,
.index_curriculum_box h3,
.index_laboratory_box h3,
.index_future_box h3 {
  font-weight: 500;
  font-size: min(26px, 1.5vw);
  line-height: 1.5;
  margin: 1em 0;
}
.index_news_box p,
.index_con_box p,
.index_about_box p,
.index_curriculum_box p,
.index_laboratory_box p,
.index_future_box p {
  font-size: 15px;
  margin: 1.5em 0;
}
.index_news_img,
.index_con_img,
.index_about_img,
.index_curriculum_img,
.index_laboratory_img,
.index_future_img {
  width: 33.3333333333%;
}
.index_news_img img,
.index_con_img img,
.index_about_img img,
.index_curriculum_img img,
.index_laboratory_img img,
.index_future_img img {
  width: calc(100% + 40px);
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  transform: translate(-40px, -30px);
}

.index_news_bg {
  background: url(../images/news_bg.svg) no-repeat;
  background-size: 100%;
}
.index_news_bg .index_news {
  flex-direction: column;
  padding-block: 50px;
}
.index_news_bg .index_news_box {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
}

form {
  width: 100%;
}
form fieldset {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  transform: translateY(10px);
}
form fieldset > div {
  padding: 5px 10px;
}
form fieldset > div input[type=radio] {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
form fieldset > div input[type=radio]:checked + label::after {
  background-color: var(--cat-color);
}
form fieldset > div label {
  position: relative;
  display: block;
  cursor: pointer;
  padding-left: 32px;
  color: var(--cat-color);
}
form fieldset > div label::before, form fieldset > div label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
form fieldset > div label::before {
  background-color: #fff;
  border: 1px solid #a7a7a7;
  width: 20px;
  height: 20px;
  left: 5px;
}
form fieldset > div label::after {
  background-color: #ededed;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  left: 10px;
}

.news_scrl {
  display: flex;
  flex-direction: column;
  margin: 30px 0 60px;
}
.news_scrl .news_item {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 100%;
  padding: 30px 25px;
  border-bottom: solid 1px #dcdcdc;
}
.news_scrl .news_item:first-child {
  border-top: solid 1px #dcdcdc;
}
.news_scrl .news_item_date {
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #aeaeae;
}
.news_scrl .news_item_cat span {
  display: block;
  width: 160px;
  padding: 3px 8px;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  text-align: center;
}
.news_scrl .news_item_ttl > a {
  color: #000;
  transition: 0.3s ease;
}
.news_scrl .news_item_ttl > a:hover {
  opacity: 0.8;
}

.index_con {
  display: block;
  padding-block: 130px;
}
.index_con_box {
  width: 100%;
  padding: 0;
  text-align: center;
}
.index_con_box h2 {
  color: #fff;
  line-height: 1.6;
}
.index_con_box h2 span {
  color: #fff;
}
.index_con_box p {
  font-size: 1.6rem;
}
.index_con_box p strong {
  font-size: 2em;
  font-weight: 500;
  color: #32a6f3;
}

.asymmetry {
  background: url(../images/asymmetry_bg.svg) top/cover repeat-y;
  background-size: 100%;
}
.asymmetry .index_about::before,
.asymmetry .index_curriculum::before,
.asymmetry .index_laboratory::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  background: #e8f4fc;
  padding-left: calc(50% - 600px);
  width: 800px;
  height: calc(100% - 60px);
  min-height: 500px;
}
.asymmetry .index_about.row_rev .index_about_box,
.asymmetry .index_about.row_rev .index_curriculum_box,
.asymmetry .index_about.row_rev .index_laboratory_box,
.asymmetry .index_curriculum.row_rev .index_about_box,
.asymmetry .index_curriculum.row_rev .index_curriculum_box,
.asymmetry .index_curriculum.row_rev .index_laboratory_box,
.asymmetry .index_laboratory.row_rev .index_about_box,
.asymmetry .index_laboratory.row_rev .index_curriculum_box,
.asymmetry .index_laboratory.row_rev .index_laboratory_box {
  padding: 50px 0px;
  padding-left: 80px;
}
.asymmetry .index_about.row_rev .index_about_img img,
.asymmetry .index_about.row_rev .index_curriculum_img img,
.asymmetry .index_about.row_rev .index_laboratory_img img,
.asymmetry .index_curriculum.row_rev .index_about_img img,
.asymmetry .index_curriculum.row_rev .index_curriculum_img img,
.asymmetry .index_curriculum.row_rev .index_laboratory_img img,
.asymmetry .index_laboratory.row_rev .index_about_img img,
.asymmetry .index_laboratory.row_rev .index_curriculum_img img,
.asymmetry .index_laboratory.row_rev .index_laboratory_img img {
  transform: translate(0, -30px);
}
.asymmetry .index_about.row_rev::before,
.asymmetry .index_curriculum.row_rev::before,
.asymmetry .index_laboratory.row_rev::before {
  left: auto;
  right: 0;
  padding-left: 0;
  padding-right: calc(50% - 600px);
}

.index_future_bg {
  min-height: 500px;
  height: 100%;
  background: url(../images/future_bg.jpg) center/cover no-repeat;
}
.index_future_bg .index_future_box {
  background-color: #fff;
  width: 45%;
  margin: 30px 0;
  padding: 40px;
}

.index_bnr_bg {
  border-bottom: 1px solid #a7a7a7;
}
.index_bnr_bg .index_bnr {
  padding: 90px 30px;
}
.index_bnr_bg .index_bnr .index_bnr_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 100px;
  gap: 2em;
}
.index_bnr_bg .index_bnr .index_bnr_list a {
  display: block;
  border: 1px solid #a7a7a7;
  transition: all 0.3s ease;
}
.index_bnr_bg .index_bnr .index_bnr_list a img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  background: #fff;
}
.index_bnr_bg .index_bnr .index_bnr_list a:hover {
  opacity: 0.8;
}

.index_btn {
  position: relative;
  display: grid;
  place-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  height: 50px;
  padding-inline: 30px;
  background: transparent;
  border: 1px solid #a7a7a7;
  border-radius: 25px;
  color: #000;
  font-size: 14px;
  transition: 0.3s;
}
.index_btn::after {
  position: absolute;
  content: "";
  right: 20px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
.index_btn:hover::after {
  right: 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #2d56a0;
  border-radius: 5px;
  color: #2d56a0 !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #2d56a0;
  color: #fff !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #2d56a0;
}
.pager .pager_list.single .page-numbers {
  padding: 0;
}
.pager .pager_list.single .page-numbers > a {
  display: block;
  padding: 5px 0;
  transition: all 0.5s ease;
}
.pager .pager_list.single .page-numbers.prev, .pager .pager_list.single .page-numbers.next {
  width: 130px;
}
.pager .pager_list.single .page-numbers.archive {
  width: 100px;
}
.pager .pager_list.single .page-numbers:hover > a {
  color: #fff !important;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.page_slider_bg {
  width: 100%;
}
.page_slider_bg .page_slider {
  position: relative;
}
.page_slider_bg .page_slider .catchcopy_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy {
  color: #fff;
  text-align: center;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy h1 {
  font-size: 4vw;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy p {
  font-size: 2vw;
}
.page_slider_bg .page_slider .slick {
  width: 100%;
}
.page_slider_bg .page_slider .slick img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}

.page {
  padding-top: 30px;
  padding-bottom: 60px;
  background: url(../images/news_bg.svg) center/cover repeat-y;
  background-size: 100%;
}
.page a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.page h2 {
  font-family: Poppins, "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(42px, 3vw);
  line-height: 1.2;
  color: #32a6f3;
  margin-bottom: 20px;
  margin-top: 30px;
}
.page h3 {
  font-size: min(30px, 2.2vw);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
  margin-top: 25px;
}
.page h4 {
  font-size: min(20px, 1.5vw);
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 20px;
}
.page h5,
.page h6 {
  font-size: 18px;
  margin-bottom: 2px;
  margin-top: 15px;
}
.page hr {
  border: none;
  border-top: 1px dotted #000;
}
.page iframe {
  max-width: 100%;
}
.page img {
  max-width: 1920px;
  width: 100%;
  height: auto;
}
.page ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.page p {
  line-height: 2em;
  margin-bottom: 1em;
}
.page ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.page .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page .box .box_item {
  width: 50%;
  padding: 10px;
}

select#year-select {
  border-radius: 10px;
  padding: 10px 5px;
  color: #2d56a0;
  width: 200px;
  margin-bottom: 50px;
}

.tablepress.tab_pnl.active {
  display: table !important;
}

.labo_list {
  display: flex;
  flex-direction: column;
}
.labo_list_item {
  border-bottom: 1px solid #2d56a0;
  padding: 1.5em 0;
}
.labo_list_item:first-child {
  border-top: 1px solid #2d56a0;
}
.labo_list .teachers_ttl {
  position: relative;
}
.labo_list .teachers_ttl_intro {
  display: flex;
  width: calc(100% - 60px);
  gap: 2em;
}
.labo_list .teachers_ttl_intro .upper,
.labo_list .teachers_ttl_intro .lower {
  gap: 2em;
}
.labo_list .teachers_ttl_intro .upper > *,
.labo_list .teachers_ttl_intro .lower > * {
  margin: 0;
}
.labo_list .teachers_ttl_intro .labo_name {
  font-size: min(1.8em, 2vw);
  flex-basis: 320px;
}
.labo_list .teachers_ttl_intro .teachers {
  flex-basis: 60%;
  line-height: 1;
  gap: 1em;
}
.labo_list .teachers_ttl_intro .teachers_name {
  margin: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid #32a6f3;
  text-align: right;
  outline: none;
}
.labo_list .teachers_ttl_intro .teachers_name a {
  padding-right: 25px;
  color: #333;
  background: url("../images/icon_elink_black.png") top right/contain no-repeat;
  background-size: 16px;
  transition: all 0.3s;
}
.labo_list .teachers_ttl_intro .teachers_name a:hover {
  opacity: 0.8;
}
.labo_list .teachers_ttl_intro .teachers_furigana {
  margin: 0;
  font-size: min(1.3em, 1.5vw);
  color: #555;
  text-align: right;
  line-height: 1.2;
}
.labo_list .teachers_ttl_intro .keyword {
  display: flex;
  align-items: center;
  gap: 2em;
}
.labo_list .teachers_ttl_intro .keyword .ttl {
  min-width: 120px;
  padding-left: 28px;
  font-size: 18px;
  background: url("../images/keyword.png") bottom left/contain no-repeat;
  background-size: 26px;
}
.labo_list .teachers_ttl_intro .keyword span {
  display: inline-block;
  background: #2d56a0;
  border-radius: 16px;
  color: #fff;
  margin-bottom: 5px;
  padding: 5px 1em;
}
.labo_list_trigger {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
  padding: 10px;
  cursor: pointer;
}
.labo_list_trigger span {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 3px;
  background-color: #2d56a0;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.labo_list_trigger span:nth-child(2) {
  transform: translateY(-50%) rotate(90deg);
}
.labo_list_trigger.active span {
  transform: translateY(-50%) rotate(0deg);
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
  ----------------------------------------------------------------------------*/
@media screen and (max-width: 1024px) {
  .con_base {
    padding: 0 10px;
  }
  .nav_bg {
    max-width: calc(100% - 350px);
  }
  .nav_bg .nav .nav_list {
    justify-content: flex-end;
  }
  .nav_bg .nav .nav_list > li > a {
    padding: 10px;
  }
  .index_slider_bg .index_slider .catchcopy_bg > p {
    font-size: 1em;
  }
  .index_con {
    padding-block: 80px;
  }
  .index_news_bg .index_news {
    padding-inline: 30px;
  }
  .index_news_bg .index_news_box {
    justify-content: center;
    flex-wrap: wrap;
  }
  form fieldset {
    flex-wrap: wrap;
  }
  .index_future_bg {
    background-position: center left;
  }
  .index_future_bg .index_future_box {
    width: 60%;
  }
  .index_bnr_bg .index_bnr {
    padding: 60px 30px;
  }
}/*# sourceMappingURL=style.css.map */