@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.scssにおいて ( 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-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.w_base {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** department-category
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base font
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header & global nav
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  transition: all 0.5s ease;
  background: #fff;
  /* Keyframes for nav animation */
}
.hd_bg .hd_menu_bg {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 10000;
  background: #fff;
  overflow-y: scroll;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.hd_bg .hd_menu_bg-open {
  left: 0;
}
.hd_bg .hd_menu_bg .hd_menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 !important;
  width: 100vw;
}
.hd_bg .hd_menu_bg .hd_menu .hd_menu_list {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hd_bg .hd_menu_bg .hd_menu .hd_menu_list li {
  display: block;
  width: 100%;
  border-bottom: 1px solid;
  position: relative;
  font-size: 15px;
  margin: 0;
  color: inherit;
}
.hd_bg .hd_menu_bg .hd_menu .hd_menu_list li a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 1em;
}
.hd_bg .hd_menu_bg .hd_menu .hd_menu_list li .child_wrap {
  width: 100%;
}
.hd_bg .hd_menu_bg .hd_menu .hd_menu_list li .child_wrap .sub-menu {
  padding: 0 0 1em 1em;
  margin: 0;
}
.hd_bg .hd_menu_bg .hd_menu .hd_menu_list li .child_wrap .sub-menu > li {
  list-style: none;
  margin-bottom: 0;
  border: none;
}
.hd_bg .hd_menu_bg .hd_menu .hd_menu_list li .child_wrap .sub-menu > li > a {
  padding: 0.5em 1em;
}
.hd_bg .hd_menu_bg .hd_menu .hd_menu_list li:hover .child_wrap {
  opacity: 1;
  visibility: visible;
}
.hd_bg .hd_menu_bg .hd_menu .hd_menu_lang_btn {
  display: flex;
  align-items: center;
}
.hd_bg .hd_menu_bg .hd_menu .hd_menu_lang_btn p {
  background: #1F3734;
  padding: 0 10px;
  margin: 0;
  color: #fff;
  font-weight: 100;
}
.hd_bg .hd_menu_bg .hd_menu .hd_menu_lang_btn a {
  background: #FFF;
  padding: 0 10px;
  color: #000;
  text-decoration: none;
}
.hd_bg .hd {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
}
.hd_bg .hd .row01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hd_bg .hd .row02 {
  width: 100%;
}
.hd_bg .hd_logo {
  padding: 10px 20px;
  width: 100%;
  border-bottom: 1px solid #ddd;
}
.hd_bg .hd_logo a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  color: #000;
  width: -moz-max-content;
  width: max-content;
}
.hd_bg .hd_logo a img {
  height: 40px;
}
.hd_bg .hd_logo a p {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 0.8em;
}
.hd_bg .hd_nav {
  overflow: visible;
  display: flex;
  align-items: center;
  width: 100%;
}
.hd_bg .hd_nav_list {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
  height: 100%;
  margin: auto;
  padding: 0;
  list-style: none;
}
.hd_bg .hd_nav_list > li {
  position: relative;
  z-index: 1000;
  height: 100%;
  width: 100%;
  margin: 0;
  background-color: #fff;
}
.hd_bg .hd_nav_list > li.researcher {
  border-bottom: 2px solid #1A91C8;
}
.hd_bg .hd_nav_list > li.researcher > a {
  background-image: linear-gradient(0deg, rgb(209, 232, 242), rgba(255, 255, 255, 0) 50%);
}
.hd_bg .hd_nav_list > li.researcher > a::before {
  content: "";
  background-image: url(../images/researcher.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
}
.hd_bg .hd_nav_list > li.student {
  border-bottom: 2px solid #F18E42;
}
.hd_bg .hd_nav_list > li.student > a {
  background-image: linear-gradient(0deg, rgb(242, 222, 209), rgba(255, 255, 255, 0) 50%);
}
.hd_bg .hd_nav_list > li.student > a::before {
  content: "";
  background-image: url(../images/student.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
}
.hd_bg .hd_nav_list > li.public {
  border-bottom: 2px solid #48AC52;
}
.hd_bg .hd_nav_list > li.public > a {
  background-image: linear-gradient(0deg, rgb(217, 242, 209), rgba(255, 255, 255, 0) 50%);
}
.hd_bg .hd_nav_list > li.public > a::before {
  content: "";
  background-image: url(../images/public.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
}
.hd_bg .hd_nav_list > li.collaborate {
  border-bottom: 2px solid #9C6EC4;
}
.hd_bg .hd_nav_list > li.collaborate > a {
  background-image: linear-gradient(0deg, rgb(229, 209, 242), rgba(255, 255, 255, 0) 50%);
}
.hd_bg .hd_nav_list > li.collaborate > a::before {
  content: "";
  background-image: url(../images/collaborate.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
}
.hd_bg .hd_nav_list > li > a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5em;
  height: 100%;
  color: #707070;
  font-size: clamp(1rem, -1.5rem + 2.5vw, 1.5rem);
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.5s ease;
  background-position: 0 0;
  background-size: auto 200%;
  transition: all 0.3s ease 0s;
}
.hd_bg .hd_nav_list > li > a:focus, .hd_bg .hd_nav_list > li > a:hover {
  background-position: 0 100%;
}
.hd_bg .hd_nav_list > li.current a {
  color: #1F2C60;
}
.hd_bg .hd_nav_list > li.current a span::after {
  transform: scale(1, 1);
}
.hd_bg .hd_nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.hd_bg .hd_nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: none;
  width: -moz-max-content;
  width: max-content;
  background: #1F2C60;
  transition: all 0.3s ease;
}
.hd_bg .hd_nav_list > li > .child_wrap > .sub-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
  max-width: 1160px;
  padding: 20px;
}
.hd_bg .hd_nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
  display: flex;
  width: calc((100% - 2rem) / 3);
  background: #fff;
}
.hd_bg .hd_nav_list > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
  background: #fff;
  color: #707070;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hd_bg .hd_nav_list > li > .child_wrap > .sub-menu > li > a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid #1F2C60;
  border-right: 1px solid #1F2C60;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
.hd_bg .hd_nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  background: #1F2C60;
}
.hd_bg .hd_nav_list > li > .child_wrap > .sub-menu > li > a:hover span {
  color: #fff;
}
.hd_bg .hd_nav_list > li > .child_wrap > .sub-menu > li > a:hover::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.hd_bg .hd_nav_list > li > .child_wrap > .sub-menu > li:hover .sub-menu {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.hd_bg .hd_nav_list > li > .child_wrap > .sub-menu > li > .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
.hd_bg .hd_nav_list > li > .child_wrap > .sub-menu > li > .sub-menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.hd_bg .hd_nav_list > li > .child_wrap > .sub-menu > li > .sub-menu > li > a {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: block;
  padding: 10px;
  text-decoration: none;
}
.hd_bg .hd_nav_list > li > .child_wrap > .sub-menu > li > .sub-menu > li > a:hover, .hd_bg .hd_nav_list > li > .child_wrap > .sub-menu > li > .sub-menu > li > a.current {
  background: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.hd_bg .hd_nav_search #hd_con_form {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 26px;
  background: #fff;
  border-radius: 50vh;
  overflow: hidden;
}
.hd_bg .hd_nav_search #hd_con_form .search_input {
  width: 100%;
  max-width: 75px;
  background: #fff;
  font-size: 1.3rem;
  border: none;
  outline: 0;
}
.hd_bg .hd_nav_search #hd_con_form #sbtn2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5px 0 0;
  background: #fff;
  border: none;
  outline: 0;
}
.hd_bg .hd_nav_search #hd_con_form #sbtn5:hover {
  color: #b2d3a7;
}
.hd_bg .hd_nav_lang {
  cursor: pointer;
  position: relative;
  padding-left: 1em;
}
.hd_bg .hd_nav_lang:before, .hd_bg .hd_nav_lang:after {
  content: "";
  width: 0.5em;
  height: 2px;
  position: absolute;
  left: 0;
  background-color: #000;
  top: 50%;
}
.hd_bg .hd_nav_lang:after {
  transition: 0.5s;
  transform: rotate(-90deg);
}
.hd_bg .hd_nav_lang:hover::after {
  transform: rotate(0);
}
.hd_bg .hd_nav_lang ul {
  position: absolute;
  left: 0;
  background-color: #fff;
  width: calc(100% + 2rem);
  text-align: center;
  transition: 0.5s;
  opacity: 0;
}
.hd_bg .hd_nav_lang ul li {
  height: 0;
  transition: 0.5s;
}
.hd_bg .hd_nav_lang ul li:hover {
  background-color: #f1f9ff;
}
.hd_bg .hd_nav_lang ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.hd_bg .hd_nav_lang:hover ul {
  opacity: 1;
}
.hd_bg .hd_nav_lang:hover ul li {
  height: 2em;
}
.hd_bg .hd_nav_lang a {
  color: #707070;
  font-size: clamp(1rem, -1.5rem + 2.5vw, 1.5rem);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.5s ease;
}
.hd_bg .hd_nav_lang a:focus, .hd_bg .hd_nav_lang a:hover {
  color: #1F2C60;
}
.hd_bg .hd_icon {
  display: flex;
  gap: 20px;
  position: fixed;
  left: 100%;
}
.hd_bg .hd_icon a {
  display: block;
}
.hd_bg .hd_icon a img {
  width: 33px;
}
.hd_bg .hd_lang_sp {
  display: none;
}
.hd_bg .hd_toggle {
  background-color: #000;
  position: fixed;
  top: 0;
  right: 0;
  aspect-ratio: 1;
  cursor: pointer;
}
.hd_bg .hd_toggle span {
  position: absolute;
  left: 50%;
  width: 60%;
  height: 2px;
  background: #ffffff;
  border-radius: 5%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.hd_bg .hd_toggle span:nth-child(1) {
  top: 35%;
}
.hd_bg .hd_toggle span:nth-child(2) {
  top: 50%;
}
.hd_bg .hd_toggle span:nth-child(3) {
  top: 65%;
}
.hd_bg .hd_toggle-open span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
}
.hd_bg .hd_toggle-open span:nth-child(2) {
  opacity: 0;
}
.hd_bg .hd_toggle-open span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
}
.hd_bg .hd_sub_menu {
  display: flex;
  justify-content: flex-start;
  margin: auto;
  padding: 0;
  list-style: none;
  width: -moz-max-content;
  width: max-content;
}
.hd_bg .hd_sub_menu li {
  margin: 0;
  white-space: nowrap;
  font-size: 0.8em;
}
.hd_bg .hd_sub_menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  transition: background-color 0.3s;
}
.hd_bg .hd_sub_menu li .child_wrap {
  display: none;
}
.hd_bg .hd_researcher_bg {
  background: #1A91C8;
}
.hd_bg .hd_researcher_bg .hd_researcher {
  overflow-x: scroll;
}
.hd_bg .hd_researcher_bg .hd_researcher ul li a {
  background-color: #1A91C8;
}
.hd_bg .hd_researcher_bg .hd_researcher ul li a:hover {
  background-color: rgb(20.1327433628, 112.2787610619, 154.8672566372);
}
.hd_bg .hd_student_bg {
  background: #f18e42;
}
.hd_bg .hd_student_bg .hd_student {
  overflow-x: scroll;
}
.hd_bg .hd_student_bg .hd_student ul li a {
  background-color: #f18e42;
}
.hd_bg .hd_student_bg .hd_student ul li a:hover {
  background-color: rgb(237.4827586207, 113.6108374384, 18.5172413793);
}
.hd_bg .hd_public_bg {
  background: #48ac52;
}
.hd_bg .hd_public_bg .hd_public {
  overflow-x: scroll;
}
.hd_bg .hd_public_bg .hd_public ul li a {
  background-color: #48ac52;
}
.hd_bg .hd_public_bg .hd_public ul li a:hover {
  background-color: rgb(56.9508196721, 136.0491803279, 64.8606557377);
}
.hd_bg .hd_collaborate_bg {
  background: #9c6ec4;
}
.hd_bg .hd_collaborate_bg .hd_collaborate {
  overflow-x: scroll;
}
.hd_bg .hd_collaborate_bg .hd_collaborate ul li a {
  background-color: #9c6ec4;
}
.hd_bg .hd_collaborate_bg .hd_collaborate ul li a:hover {
  background-color: rgb(131.25, 73.75, 181.25);
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.sp_nav_trigger {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  background: #fff;
  flex: 1;
}
.con_bg .con {
  width: 100%;
}
.con_bg .con .main {
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  background: #1F2C60;
  margin-top: 60px;
  padding: 40px 0 20px;
}
.ft_bg .ft {
  width: 100%;
  padding: 0 20px;
}
.ft_bg .ft_nav {
  margin-bottom: 40px;
}
.ft_bg .ft_nav_list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ft_bg .ft_nav_list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ft_bg .ft_nav_list > li > a {
  display: block;
  padding: 15px 0;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.ft_bg .ft_nav_list > li > a span {
  display: block;
  margin-bottom: 5px;
  font-size: 1.2rem;
  opacity: 0.7;
}
.ft_bg .ft_nav_list > li .child_wrap .sub-menu {
  margin: 0;
  padding: 0 0 10px 20px;
}
.ft_bg .ft_nav_list > li .child_wrap .sub-menu > li {
  list-style: none;
  margin-bottom: 10px;
}
.ft_bg .ft_nav_list > li .child_wrap .sub-menu > li a {
  display: block;
  padding: 5px 0;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.ft_bg .ft_address {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 1.2rem;
}
.ft_bg .ft_address address {
  font-style: normal;
  line-height: 1.6;
}
.ft_bg .ft_address p {
  margin: 0;
  line-height: 1.6;
}
.ft_bg .ft_copy {
  display: block;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.6;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  cursor: pointer;
  position: fixed;
  right: 15px;
  bottom: 70px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid #1F2C60;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
}
.pt.is-show {
  opacity: 1;
}
.pt .pt_btn {
  cursor: pointer;
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 6px;
  background: none;
  border: none;
  transform: rotate(45deg);
}
.pt .pt_btn::before, .pt .pt_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: #1F2C60;
  transition: all 0.3s ease;
}
.pt .pt_btn::before {
  width: 2px;
  bottom: 0;
}
.pt .pt_btn::after {
  height: 2px;
  right: 0;
}
.pt:active {
  background: #1F2C60;
  transform: scale(0.95);
}
.pt:active .pt_btn::before, .pt:active .pt_btn::after {
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg {
  margin-top: -110px;
}
.index_slider_bg .index_slider {
  position: relative;
  overflow: hidden;
  height: 50vh;
  min-height: 300px;
}
.index_slider_bg .index_slider .index_slider_img {
  width: 100%;
  height: 100%;
}
.index_slider_bg .index_slider .index_slider_img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.index_main {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #fff;
}
.index_main .more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding: 0 20px;
}
.index_main .more a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 40px 12px 20px;
  color: #1F2C60;
  font-family: "Noto Sans JP";
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid #1F2C60;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.index_main .more a::after {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 18px;
  height: 12px;
  background: url(../images/icon_arrow_blue.svg) no-repeat center center;
  background-size: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}
.index_main .more a:active {
  background: #1F2C60;
  color: #fff;
}
.index_main .more a:active::after {
  filter: brightness(0) invert(1);
}
.index_main .more2 a {
  color: #fff;
  border: 2px solid #fff;
}
.index_main .more2 a::after {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 18px;
  height: 12px;
  background: url(../images/icon_arrow_blue.svg) no-repeat center center;
  background-size: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}
.index_main .more2 a:active {
  background: #fff;
  color: #1F2C60;
}
.index_main .more2 a:active::after {
  filter: brightness(0) invert(1);
}
.index_main .index_news {
  padding: 40px 20px;
}
.index_main .index_news h2 {
  font-family: "Noto Sans JP";
  font-size: 2.4rem;
  font-weight: 500;
  border: none;
  line-height: 1.2;
  margin: 0 0 20px 0;
  padding: 0;
}
.index_main .index_news_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.index_main .index_news_list .index_news_item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.index_main .index_news_list .index_news_item_thumb {
  width: 100%;
  border: 1px solid #A5A7AC;
  margin-bottom: 8px;
}
.index_main .index_news_list .index_news_item_thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.index_main .index_news_list .index_news_item_date {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}
.index_main .index_news_list .index_news_item_date time {
  color: #A5A7AC;
  font-size: 1.1rem;
  font-family: "Noto Sans JP";
}
.index_main .index_news_list .index_news_item_date .cate {
  display: inline-block;
  min-width: 60px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  padding: 3px 6px;
  border-radius: 3px;
}
.index_main .index_news_list .index_news_item_date .cate.topics {
  background: #67BDE4;
}
.index_main .index_news_list .index_news_item_date .cate.news {
  background: #C3A5DF;
}
.index_main .index_news_list .index_news_item_date .cate.award {
  background: #87C96A;
}
.index_main .index_news_list .index_news_item_date .cate.event {
  background: #FB9EC2;
}
.index_main .index_news_list .index_news_item_date .cate.other {
  background: #B7B4B4;
}
.index_main .index_news_list .index_news_item_ttl h3 {
  margin: 0 0 8px 0;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  border: none;
}
.index_main .index_news_list .index_news_item_ttl a {
  color: #707070;
  text-decoration: none;
  transition: all 0.3s ease;
}
.index_main .index_news_list .index_news_item_ttl a:active {
  color: #1F2C60;
}
.index_main .index_news_list .index_news_item_ttl p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  color: #707070;
  margin: 0;
}
.index_main .index_topics_wrap {
  width: 100vw;
  margin: 60px calc(50% - 50vw);
  padding: 40px 0;
  background: #1F2C60;
  color: #fff;
}
.index_main .index_topics_wrap .index_topics {
  width: 100%;
  padding: 0 20px;
}
.index_main .index_topics_wrap .index_topics h2 {
  position: relative;
  margin-bottom: 40px;
  padding-top: 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  line-height: 1.3;
  border: none;
}
.index_main .index_topics_wrap .index_topics h2::before {
  content: attr(data-subttl);
  display: block;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 5px;
  opacity: 0.8;
}
.index_main .index_topics_wrap .index_topics h2::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #fff;
}
.index_main .index_topics_wrap .index_topics_tab_caution {
  display: block;
  margin-bottom: 15px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}
.index_main .index_topics_wrap .index_topics_tab {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
  margin-bottom: 30px;
}
.index_main .index_topics_wrap .index_topics_tab::-webkit-scrollbar {
  display: none;
}
.index_main .index_topics_wrap .index_topics_tab > div {
  flex-shrink: 0;
  width: auto;
  min-width: 100px;
}
.index_main .index_topics_wrap .index_topics_tab > div .js_tab_pnl {
  cursor: pointer;
  display: block;
  padding: 12px 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
  background: transparent;
}
.index_main .index_topics_wrap .index_topics_tab > div .js_tab_pnl.all {
  border-bottom: 3px solid #F18E42;
}
.index_main .index_topics_wrap .index_topics_tab > div .js_tab_pnl.topics {
  border-bottom: 3px solid #67BDE4;
}
.index_main .index_topics_wrap .index_topics_tab > div .js_tab_pnl.news {
  border-bottom: 3px solid #C3A5DF;
}
.index_main .index_topics_wrap .index_topics_tab > div .js_tab_pnl.award {
  border-bottom: 3px solid #87C96A;
}
.index_main .index_topics_wrap .index_topics_tab > div .js_tab_pnl.event {
  border-bottom: 3px solid #FB9EC2;
}
.index_main .index_topics_wrap .index_topics_tab > div .js_tab_pnl.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-bottom-color: #fff;
}
.index_main .index_topics_wrap .index_topics_tab_pnl {
  display: none;
}
.index_main .index_topics_wrap .index_topics_tab_pnl.active {
  display: block;
}
.index_main .index_topics_wrap .index_topics_tab_pnl .index_topics_list {
  width: 100%;
}
.index_main .index_topics_wrap .index_topics_tab_pnl .index_topics_list .index_topics_item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.index_main .index_topics_wrap .index_topics_tab_pnl .index_topics_list .index_topics_item_date {
  display: flex;
  align-items: center;
  gap: 10px;
}
.index_main .index_topics_wrap .index_topics_tab_pnl .index_topics_list .index_topics_item_date time {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Noto Sans JP";
}
.index_main .index_topics_wrap .index_topics_tab_pnl .index_topics_list .index_topics_item_date .cate {
  display: inline-block;
  min-width: 80px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  padding: 3px 8px;
  border-radius: 3px;
}
.index_main .index_topics_wrap .index_topics_tab_pnl .index_topics_list .index_topics_item_date .cate.topics {
  background: #67BDE4;
}
.index_main .index_topics_wrap .index_topics_tab_pnl .index_topics_list .index_topics_item_date .cate.news {
  background: #C3A5DF;
}
.index_main .index_topics_wrap .index_topics_tab_pnl .index_topics_list .index_topics_item_date .cate.award {
  background: #87C96A;
}
.index_main .index_topics_wrap .index_topics_tab_pnl .index_topics_list .index_topics_item_date .cate.event {
  background: #FB9EC2;
}
.index_main .index_topics_wrap .index_topics_tab_pnl .index_topics_list .index_topics_item_date .cate.other {
  background: #B7B4B4;
}
.index_main .index_topics_wrap .index_topics_tab_pnl .index_topics_list .index_topics_item_ttl h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  padding: 0;
  border: none;
  line-height: 1.5;
  color: #fff;
}
.index_main .index_topics_wrap .index_topics_tab_pnl .index_topics_list .index_topics_item_ttl a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.index_main .index_topics_wrap .index_topics_tab_pnl .index_topics_list .index_topics_item_ttl a:active {
  opacity: 0.7;
}
.index_main .index_topics_wrap .index_topics_tab_pnl .index_topics_list .index_topics_item_ttl p {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.index_main .index_bnr_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.index_main .index_bnr_list_item {
  width: 100%;
  height: auto;
  min-height: 60px;
  border: 1px solid #BBBBBB;
  border-radius: 4px;
  overflow: hidden;
}
.index_main .index_bnr_list_item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.index_main .index_bnr_list_item a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.index_main section.index_menu.mt_60 {
  margin-top: 20vh !important;
}
.index_main .index_menu_list {
  display: grid;
  gap: 15px;
}
.index_main .index_menu_list_item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  height: 12vh;
  width: -webkit-fill-available;
}
.index_main .index_menu_list_item:hover img {
  transform: scale(1.2);
}
.index_main .index_menu_list_item img {
  width: 100%;
  height: 100%;
  filter: brightness(0.5);
  transition: 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_main .index_menu_list_item p {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #fff;
  font-size: 1.25em;
  font-weight: bold;
  border-left: 2px solid;
  padding-left: 10px;
  margin: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon_ttl {
  width: 100vw;
  margin: -110px calc(50% - 50vw) 0;
  padding: 130px 20px 40px;
  background: url(../images/ttl_bg.png) no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.mcon_ttl h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  border-radius: 4px;
}
.mcon_ttl h1 span {
  display: block;
  width: 100%;
}
.mcon_ttl h1:before {
  content: attr(data-subttl);
  display: block;
  font-size: 1.2rem;
  margin-bottom: 5px;
  opacity: 0.7;
}
.mcon_page {
  position: relative;
  z-index: 1;
  margin-top: -20px;
  padding: 30px 20px;
  background: #fff;
}
.mcon_page .breadcrumbs {
  margin-bottom: 25px;
  font-size: 1.2rem;
  color: #707070;
}
.mcon_page .breadcrumbs a {
  color: #1F2C60;
  text-decoration: none;
}
.mcon_page .breadcrumbs a:active {
  opacity: 0.7;
}
.mcon_page .news_date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.mcon_page .news_date time {
  font-family: "Noto Sans JP";
  font-size: 1.3rem;
  font-weight: 500;
  color: #A5A7AC;
}
.mcon_page .news_date .cate {
  display: inline-block;
  min-width: 80px;
  background: #DBE1EA;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  padding: 3px 8px;
  border-radius: 3px;
}
.mcon_page .news_date .cate.study {
  color: #008DD6;
}
.mcon_page .news_date .cate.lecture {
  color: #00b36e;
}
.mcon_page .news_date .cate.symposium {
  color: #0044d6;
}
.mcon_page .news_date .cate.info {
  color: #FC940B;
}
.mcon_page .news_date .cate.media {
  color: #6a8100;
}
.mcon_page .news_date .cate.events {
  color: #4b0bfc;
}
.mcon .index_topics {
  width: 100%;
  padding: 0 20px;
  background: #1F2C60;
}
.mcon .index_topics h2 {
  position: relative;
  margin-bottom: 40px;
  padding-top: 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  line-height: 1.3;
  border: none;
}
.mcon .index_topics h2::before {
  content: attr(data-subttl);
  display: block;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 5px;
  opacity: 0.8;
}
.mcon .index_topics h2::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #fff;
}
.mcon .index_topics_tab_caution {
  display: block;
  margin-bottom: 15px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}
.mcon .index_topics_tab {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
  margin-bottom: 30px;
}
.mcon .index_topics_tab::-webkit-scrollbar {
  display: none;
}
.mcon .index_topics_tab > div {
  flex-shrink: 0;
  width: auto;
  min-width: 100px;
}
.mcon .index_topics_tab > div .js_tab_pnl {
  cursor: pointer;
  display: block;
  padding: 12px 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
  background: transparent;
}
.mcon .index_topics_tab > div .js_tab_pnl.all {
  border-bottom: 3px solid #F18E42;
}
.mcon .index_topics_tab > div .js_tab_pnl.topics {
  border-bottom: 3px solid #67BDE4;
}
.mcon .index_topics_tab > div .js_tab_pnl.news {
  border-bottom: 3px solid #C3A5DF;
}
.mcon .index_topics_tab > div .js_tab_pnl.award {
  border-bottom: 3px solid #87C96A;
}
.mcon .index_topics_tab > div .js_tab_pnl.event {
  border-bottom: 3px solid #FB9EC2;
}
.mcon .index_topics_tab > div .js_tab_pnl.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-bottom-color: #fff;
}
.mcon .index_topics_tab_pnl {
  display: none;
}
.mcon .index_topics_tab_pnl.active {
  display: block;
}
.mcon .index_topics_tab_pnl .index_topics_list {
  width: 100%;
}
.mcon .index_topics_tab_pnl .index_topics_list .index_topics_item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mcon .index_topics_tab_pnl .index_topics_list .index_topics_item_date {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mcon .index_topics_tab_pnl .index_topics_list .index_topics_item_date time {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Noto Sans JP";
}
.mcon .index_topics_tab_pnl .index_topics_list .index_topics_item_date .cate {
  display: inline-block;
  min-width: 80px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  padding: 3px 8px;
  border-radius: 3px;
}
.mcon .index_topics_tab_pnl .index_topics_list .index_topics_item_date .cate.topics {
  background: #67BDE4;
}
.mcon .index_topics_tab_pnl .index_topics_list .index_topics_item_date .cate.news {
  background: #C3A5DF;
}
.mcon .index_topics_tab_pnl .index_topics_list .index_topics_item_date .cate.award {
  background: #87C96A;
}
.mcon .index_topics_tab_pnl .index_topics_list .index_topics_item_date .cate.event {
  background: #FB9EC2;
}
.mcon .index_topics_tab_pnl .index_topics_list .index_topics_item_date .cate.other {
  background: #B7B4B4;
}
.mcon .index_topics_tab_pnl .index_topics_list .index_topics_item_ttl h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  padding: 0;
  border: none;
  line-height: 1.5;
  color: #fff;
}
.mcon .index_topics_tab_pnl .index_topics_list .index_topics_item_ttl a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mcon .index_topics_tab_pnl .index_topics_list .index_topics_item_ttl a:active {
  opacity: 0.7;
}
.mcon .index_topics_tab_pnl .index_topics_list .index_topics_item_ttl p {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style (コンテンツ内の基本スタイル)
******************************************************************************
----------------------------------------------------------------------------*/
h2 {
  margin: 30px 0 20px;
  padding: 0 0 12px 0;
  font-family: "Noto Sans JP";
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  border-bottom: 2px solid #1F2C60;
}
h2 span {
  display: block;
  color: #1F2C60;
  font-family: "Noto Sans JP";
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 5px;
  opacity: 0.8;
}

h3 {
  position: relative;
  margin: 25px 0 15px;
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  border-bottom: 1px solid rgba(112, 112, 112, 0.22);
}

h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 15px;
  color: #1F2C60;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}
h4::before {
  content: "";
  width: 4px;
  height: 18px;
  background: #1F2C60;
  flex-shrink: 0;
}

h5,
h6 {
  margin: 20px 0 10px;
  padding-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  border-bottom: 1px solid rgba(112, 112, 112, 0.22);
}

p {
  margin-bottom: 1.5em;
  font-size: 1.5rem;
  line-height: 1.8;
}

a {
  color: #1F2C60;
  text-decoration: underline;
  transition: all 0.3s ease;
}
a:active {
  opacity: 0.7;
}

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

hr {
  border: none;
  border-top: 1px dotted rgba(0, 0, 0, 0.2);
  margin: 30px 0;
}

iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

ul,
ol {
  margin: 1.5em 0;
  padding-left: 1.5em;
}
ul li,
ol li {
  margin-bottom: 0.8em;
  font-size: 1.5rem;
  line-height: 1.8;
}

table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  font-size: 1.4rem;
  overflow-x: auto;
  display: block;
}
table th,
table td {
  padding: 12px 10px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}
table th {
  background: #1F2C60;
  color: #fff;
  font-weight: 600;
}
table tr:nth-child(even) {
  background: #f9f9f9;
}

.img_pc_dn {
  display: block !important;
}

.list_link {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px;
  padding: 0;
  margin: 30px 0;
}
.list_link .wp-block-button {
  display: block !important;
  margin: 0 !important;
}
.list_link .wp-block-button a {
  display: block;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.list_link .wp-block-button.pink a {
  background-color: #ea508c;
  color: #fff;
}
.list_link .wp-block-button.green a {
  background-color: #3caf50;
  color: #fff;
}
.list_link .wp-block-button.blue a {
  background-color: #3b52af;
  color: #fff;
}
.list_link .wp-block-button.orange a {
  background-color: #fa843e;
  color: #fff;
}
.list_link .wp-block-button.tealgreen a {
  background-color: #006a6c;
}
.list_link .wp-block-button.sky a {
  background-color: #2585af;
  color: #fff;
}
.list_link .wp-block-button.red a {
  background-color: #ea5050;
  color: #fff;
}

.team-id1 {
  border-bottom: 3px solid #ea508c;
}

.team-id2 {
  border-bottom: 3px solid #3caf50;
}

.team-id3 {
  border-bottom: 3px solid #3b52af;
}

.team-id4 {
  border-bottom: 3px solid #fa843e;
}

.team-id5 {
  border-bottom: 3px solid #2585af;
}

.team-id6 {
  border-bottom: 3px solid #ea5050;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.pager .pager_list .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  color: #1F2C60 !important;
  text-align: center;
  font-size: 1.4rem;
  border: 1px solid #1F2C60;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.pager .pager_list .page-numbers:active, .pager .pager_list .page-numbers.current {
  background: #1F2C60;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: transparent;
}

/*----------------------------------------------------------------------------
******************************************************************************
** topics page
******************************************************************************
----------------------------------------------------------------------------*/
.topics_tab_caution {
  display: block;
  margin-bottom: 15px;
  padding: 10px 15px;
  background: #f5f5f5;
  border-radius: 4px;
  text-align: center;
  font-size: 1.2rem;
  color: #707070;
}

.topics_tab {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 8px;
  margin-bottom: 25px;
}
.topics_tab::-webkit-scrollbar {
  display: none;
}
.topics_tab a {
  cursor: pointer;
  display: block;
  flex-shrink: 0;
  padding: 10px 20px;
  color: #C8C9CC;
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #E0E0E0;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.3s ease;
  background: #fff;
}
.topics_tab a.active {
  color: #fff;
  background: #1F2C60;
  border: 1px solid #1F2C60;
}

.topics_list {
  width: 100%;
}
.topics_list .topics_item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid #F0F0F1;
}
.topics_list .topics_item:last-of-type {
  border-bottom: 1px solid #F0F0F1;
}
.topics_list .topics_item_date {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topics_list .topics_item_date time {
  color: #A5A7AC;
  font-size: 1.3rem;
  font-family: "Noto Sans JP";
}
.topics_list .topics_item_date .cate {
  display: inline-block;
  min-width: 80px;
  background: #DBE1EA;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  padding: 3px 8px;
  border-radius: 3px;
}
.topics_list .topics_item_date .cate.study {
  color: #008DD6;
}
.topics_list .topics_item_date .cate.lecture {
  color: #00b36e;
}
.topics_list .topics_item_date .cate.symposium {
  color: #0044d6;
}
.topics_list .topics_item_date .cate.info {
  color: #FC940B;
}
.topics_list .topics_item_date .cate.media {
  color: #6a8100;
}
.topics_list .topics_item_date .cate.events {
  color: #4b0bfc;
}
.topics_list .topics_item_ttl a {
  color: #707070;
  text-decoration: none;
  transition: all 0.3s ease;
}
.topics_list .topics_item_ttl a:active {
  color: #1F2C60;
}
.topics_list .topics_item_ttl a h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 8px 0;
}
.topics_list .topics_item_ttl p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #707070;
  margin: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** researcher list
******************************************************************************
----------------------------------------------------------------------------*/
.re-list-list h3 {
  position: relative;
  margin: 25px 0 15px;
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid rgba(112, 112, 112, 0.22);
}
.re-list-list p {
  margin: 0 !important;
}
.re-list-list a {
  display: block;
  background: linear-gradient(90deg, rgb(84, 181, 225) 0%, rgb(37, 80, 158) 100%);
  border-radius: 50px;
  margin: 20px auto;
  padding: 12px 50px 12px 20px;
  text-decoration: none;
  color: #fff;
  position: relative;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.re-list-list a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  z-index: 1;
}
.re-list-list a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 28px;
  height: 28px;
}
.re-list-list a:active {
  opacity: 0.8;
  transform: scale(0.98);
}
.re-list-list .wp-block-columns {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 !important;
}
.re-list-list .wp-block-group__inner-container {
  border-bottom: dotted 1px rgba(0, 0, 0, 0.15);
}
.re-list-list .wp-block-column-is-layout-flow {
  flex-basis: 1rem !important;
}
.re-list-list .is-not-stacked-on-mobile {
  margin: 0 !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 検索結果ページ(スマホ)
******************************************************************************
----------------------------------------------------------------------------*/
@media screen and (max-width: 750px) {
  .search-results-count {
    margin-bottom: 20px;
    padding: 12px 15px;
    font-size: 1.4rem;
  }
  .search-result-item {
    padding: 20px 0;
  }
  .search-result-item h2 {
    margin-bottom: 10px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .search-result-item .search-result-excerpt {
    margin-bottom: 12px;
    font-size: 1.3rem;
    line-height: 1.7;
  }
  .search-result-item .search-result-link {
    font-size: 1.3rem;
    padding-right: 18px;
  }
  .search-result-item .search-result-link::after {
    width: 10px;
    height: 10px;
  }
  .no-results {
    padding: 40px 20px;
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=sp.css.map */