@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-direction: column;
  overflow-x: hidden;
}

html {
  scroll-padding-top: 180px;
}

body {
  min-height: 100vh;
  padding-top: 180px;
  overflow-y: hidden;
}

.w_base {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

a {
  color: #0096A5;
}

a[target=_blank]::after {
  content: "";
  background: url(./../images/icon_elink_green.svg) no-repeat center center;
  padding-left: 0.8em;
  margin-left: 0.4em;
}

.has-background {
  padding: 1.25em 2.375em;
}

header a[target=_blank] span::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  background: url(./../images/icon_elink_white.svg) no-repeat center center;
  background-size: contain;
}
header a[target=_blank]::after {
  background: none;
  padding: 0;
  margin: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  background: #fff;
  transition: all 0.3s ease;
}
.hd_bg .hd {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: 1160px;
  height: 120px;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.hd_bg .hd .hd_logo {
  position: absolute;
  bottom: 10px;
  left: 0;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
}
.hd_bg .hd .hd_logo a img {
  flex-shrink: 0;
  width: 566px;
  height: 100%;
}
.hd_bg .hd .hd_logo a span {
  margin-left: 20px;
  padding: 10px;
  background: #2a8756;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1rem;
}
.hd_bg .hd .hd_nav {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 320px;
  transition: all 0.3s ease;
}
.hd_bg .hd .hd_nav .hd_nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hd_bg .hd .hd_nav .hd_nav_list li {
  position: relative;
  width: calc((100% - 60px) / 4);
}
.hd_bg .hd .hd_nav .hd_nav_list li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  color: #333;
  font-size: 0.625rem;
  text-decoration: none;
  white-space: nowrap;
}
.hd_bg .hd .hd_nav .hd_nav_list li.search a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-bottom: 5px;
  background: url(./../images/icon_hd_01.svg) no-repeat center center;
  background-size: cover;
}
.hd_bg .hd .hd_nav .hd_nav_list li.sitemap a::before {
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  margin-bottom: 5px;
  background: url(./../images/icon_hd_06.svg) no-repeat center center;
  background-size: contain;
}
.hd_bg .hd .hd_nav .hd_nav_list li.f_size a::before {
  content: "";
  display: block;
  width: 21px;
  height: 15px;
  margin-bottom: 5px;
  background: url(./../images/icon_hd_02.svg) no-repeat center center;
  background-size: cover;
}
.hd_bg .hd .hd_nav .hd_nav_list li.f_size:hover .f_size_box_wrap {
  visibility: visible;
  animation: nav_active 1s ease 0s 1 alternate;
}
.hd_bg .hd .hd_nav .hd_nav_list li.f_size .f_size_box_wrap {
  position: absolute;
  top: 40px;
  left: 50%;
  z-index: 100;
  transform: translateX(-50%);
  padding-top: 10px;
  visibility: hidden;
}
.hd_bg .hd .hd_nav .hd_nav_list li.f_size .f_size_box_wrap .f_size_box {
  display: flex;
  gap: 5px;
  padding: 10px;
  background: #e2e2e2;
}
.hd_bg .hd .hd_nav .hd_nav_list li.f_size .f_size_box_wrap .f_size_box .size-button {
  cursor: pointer;
  display: inline-block;
  width: 40px;
  padding: 11px;
  background: #fff;
  font-size: 1rem;
  text-align: center;
  line-height: 1;
  border: none;
  transition: all 0.3s ease;
}
.hd_bg .hd .hd_nav .hd_nav_list li.f_size .f_size_box_wrap .f_size_box .size-button:hover, .hd_bg .hd .hd_nav .hd_nav_list li.f_size .f_size_box_wrap .f_size_box .size-button.f_size_active {
  background: #008E66;
  color: #fff;
}
.hd_bg .hd .hd_nav .hd_nav_list li.access a::before {
  content: "";
  display: block;
  width: 18px;
  height: 21px;
  margin-bottom: 5px;
  background: url(./../images/icon_hd_03.svg) no-repeat center center;
  background-size: cover;
}
.hd_bg .hd .hd_nav .hd_nav_list li.contact a::before {
  content: "";
  display: block;
  width: 20px;
  height: 17px;
  margin-bottom: 5px;
  background: url(./../images/icon_hd_04.svg) no-repeat center center;
  background-size: cover;
}
.hd_bg .hd .hd_nav .hd_nav_list li.lang a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-bottom: 5px;
  background: url(./../images/icon_hd_05.svg) no-repeat center center;
  background-size: cover;
}
.hd_bg .hd .hd_lang {
  position: absolute;
  top: 0;
  right: 0;
}
.hd_bg .hd .hd_lang .hd_lang_list {
  display: flex;
  flex-wrap: wrap;
}
.hd_bg .hd .hd_lang .hd_lang_list li a {
  display: block;
  padding: 8px 20px;
  color: #333;
  font-size: 0.687rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
}
.hd_bg .hd .hd_lang .hd_lang_list li.ja a {
  background: #3e3a39;
  color: #fff;
}
.hd_bg .hd .hd_lang .hd_lang_list li.ja a span {
  position: relative;
  display: flex;
  /*&::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    background: url(./../images/icon_elink_white.svg) no-repeat center center;
    background-size: contain;
  }*/
}
.hd_bg .hd .hd_donation {
  position: absolute;
  top: 0;
  right: 20px;
  transition: all 0.3s ease;
}
.hd_bg .hd .hd_donation:hover {
  opacity: 0.8;
}

/*----------------------------------------------------------------------------
******************************************************************************
** search
******************************************************************************
----------------------------------------------------------------------------*/
#search-wrap {
  position: absolute;
  /*固定配置にして*/
  top: 120px;
  left: 0;
  z-index: -1;
  /*最背面に設定*/
  opacity: 0;
  /*透過を0に*/
  width: 100%;
  height: auto;
  transition: all 0.3s;
  /*transitionを使ってスムースに現れる*/
  /*ボタンクリック後、JSで#search-wrapにpanelactiveクラスが付与された後の見た目*/
  /*==検索窓のエリア*/
  /*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後*/
  /*==検索フォームの設定*/
  /*==テキスト入力とボタンinput共通設定*/
  /*テキスト入力input設定*/
  /*ボタンinput設定*/
}
.is-animation #search-wrap {
  top: 120px;
}
#search-wrap.panelactive {
  opacity: 1;
  /*不透明に変更*/
  z-index: 10;
  /*全面に出現*/
  /*中の要素を天地中央揃えにする設定*/
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  background: #f2f2f2;
}
#search-wrap.search-area {
  display: none;
  /*検索窓のエリアは、はじめ非表示*/
}
#search-wrap.panelactive .search-area {
  position: relative;
  display: block;
  /*検索窓エリアを表示*/
  width: 80%;
}
#search-wrap form {
  position: relative;
  height: 66px;
  border-bottom: 2px solid #666;
}
#search-wrap input {
  -webkit-appearance: none;
  /*SafariやChromeのデフォルトの設定を無効*/
  outline: none;
  cursor: pointer;
  /*カーソルを指マークに*/
}
#search-wrap input[type=text] {
  width: 94%;
  padding: 20px;
  border: none;
  transition: all 0.5s;
  letter-spacing: 0.05em;
}
#search-wrap input[type=text]:focus {
  background: #fff;
}
#search-wrap input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  width: 6%;
  height: 64px;
  padding: 0;
  background: url(./../images/icon_hd_01.png) #fff no-repeat center center;
  background-size: 20px 20px;
  border: none;
}

/*======= close button ========*/
.close-btn {
  position: absolute;
  top: 50%;
  right: -65px;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
}
.close-btn span {
  position: absolute;
  left: 14px;
  display: inline-block;
  height: 3px;
  background: #333;
  border-radius: 2px;
  /*×マーク*/
}
.close-btn span:nth-of-type(1) {
  top: 21px;
  left: 16px;
  transform: translateY(6px) rotate(-135deg);
  width: 50%;
}
.close-btn span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(135deg);
  width: 50%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
  background: #f6f6f6;
  border-top: solid 1px #e7e7e7;
  background: #f6f6f6;
}
.nav_bg .nav {
  position: relative;
  overflow: visible;
}
.nav_bg .nav .hd_nav_list,
.nav_bg .nav .nav_list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  margin: 0 auto;
}
.nav_bg .nav .hd_nav_list > li,
.nav_bg .nav .nav_list > li {
  display: inline-block;
  z-index: 1;
  width: 20%;
  margin: 0 !important;
  border-left: 0px solid #fff;
}
.nav_bg .nav .hd_nav_list > li:last-of-type,
.nav_bg .nav .nav_list > li:last-of-type {
  border-right: 0px solid #fff;
}
.nav_bg .nav .hd_nav_list > li > a,
.nav_bg .nav .nav_list > li > a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #333;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.5s ease;
}
.nav_bg .nav .hd_nav_list > li > a:hover,
.nav_bg .nav .nav_list > li > a:hover {
  background: #ffffff;
  color: #333;
}
.nav_bg .nav .hd_nav_list > li.current a,
.nav_bg .nav .nav_list > li.current a {
  background: #017952;
  color: #fff;
}
.nav_bg .nav .hd_nav_list > li:hover .sub-menu,
.nav_bg .nav .nav_list > li:hover .sub-menu {
  visibility: visible;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_bg .nav .hd_nav_list > li .sub-menu,
.nav_bg .nav .nav_list > li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  width: 100%;
  background: #333;
  transition: All 0.3s ease;
  visibility: hidden;
}
.nav_bg .nav .hd_nav_list > li .sub-menu > li,
.nav_bg .nav .nav_list > li .sub-menu > li {
  width: 20%;
}
.nav_bg .nav .hd_nav_list > li .sub-menu > li > a,
.nav_bg .nav .nav_list > li .sub-menu > li > a {
  display: block;
  width: 100%;
  padding: 15px 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
}
.nav_bg .nav .hd_nav_list > li .sub-menu > li > a:hover, .nav_bg .nav .hd_nav_list > li .sub-menu > li > a.current,
.nav_bg .nav .nav_list > li .sub-menu > li > a:hover,
.nav_bg .nav .nav_list > li .sub-menu > li > a.current {
  opacity: 0.9;
}
.nav_bg .nav .hd_nav_list > li .sub-menu > li:hover .sub-menu,
.nav_bg .nav .nav_list > li .sub-menu > li:hover .sub-menu {
  visibility: visible;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .nav .hd_nav_list > li .sub-menu > li .sub-menu,
.nav_bg .nav .nav_list > li .sub-menu > li .sub-menu {
  position: absolute;
  top: 50px;
  left: 0;
  display: flex;
  width: 100%;
  background: #222;
  visibility: hidden;
}
.nav_bg .nav .hd_nav_list > li .sub-menu > li .sub-menu > li > a,
.nav_bg .nav .nav_list > li .sub-menu > li .sub-menu > li > a {
  color: #fff;
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 13px;
  text-decoration: none;
}
.nav_bg .nav .hd_nav_list > li .sub-menu > li .sub-menu > li > a:hover, .nav_bg .nav .hd_nav_list > li .sub-menu > li .sub-menu > li > a.current,
.nav_bg .nav .nav_list > li .sub-menu > li .sub-menu > li > a:hover,
.nav_bg .nav .nav_list > li .sub-menu > li .sub-menu > li > a.current {
  opacity: 0.9;
}
.nav_bg .nav .hd_nav_list > li .sub-menu > li .sub-menu > li:hover .sub-menu,
.nav_bg .nav .nav_list > li .sub-menu > li .sub-menu > li:hover .sub-menu {
  visibility: visible;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .nav .hd_nav_list > li .sub-menu > li .sub-menu > li .sub-menu,
.nav_bg .nav .nav_list > li .sub-menu > li .sub-menu > li .sub-menu {
  position: absolute;
  top: 40px;
  left: 0;
  display: flex;
  width: 100%;
  background: #111;
  visibility: hidden;
}
.nav_bg .nav .hd_nav_list > li .sub-menu > li .sub-menu > li .sub-menu > li > a,
.nav_bg .nav .nav_list > li .sub-menu > li .sub-menu > li .sub-menu > li > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}
.nav_bg .nav .hd_nav_list > li .sub-menu > li .sub-menu > li .sub-menu > li > a:hover, .nav_bg .nav .hd_nav_list > li .sub-menu > li .sub-menu > li .sub-menu > li > a.current,
.nav_bg .nav .nav_list > li .sub-menu > li .sub-menu > li .sub-menu > li > a:hover,
.nav_bg .nav .nav_list > li .sub-menu > li .sub-menu > li .sub-menu > li > a.current {
  background: rgb(17, 17, 17);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 0 50px;
}
.con_bg .con .nav_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #f4f4f4;
}
.con_bg .con .nav_wrap .nav .nav_list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  margin: 0 auto;
}
.con_bg .con .nav_wrap .nav .nav_list > li {
  display: inline-block;
  z-index: 1;
  width: 20%;
  margin: 0 !important;
  border-left: 1px solid #fff;
}
.con_bg .con .nav_wrap .nav .nav_list > li:last-of-type {
  border-right: 1px solid #fff;
}
.con_bg .con .nav_wrap .nav .nav_list > li > a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #333;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.5s ease;
}
.con_bg .con .nav_wrap .nav .nav_list > li > a:hover {
  background: #2a8756;
  color: #fff;
}
.con_bg .con .nav_wrap .nav .nav_list > li.current a {
  background: #3e3a39;
  color: #fff;
}
.con_bg .con .main {
  order: 1;
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  border-top: 1px solid #e7e7e7;
}
.ft_bg .ft {
  padding: 60px 10px;
  display: flex;
}
.ft_bg .ft .ft_address {
  display: flex;
  width: 70%;
}
.ft_bg .ft .ft_address .ft_logo {
  width: 160px;
  margin-bottom: 20px;
}
.ft_bg .ft .ft_address .ft_logo img {
  width: 100%;
}
.ft_bg .ft .ft_address address {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1em;
}
.ft_bg .ft .ft_address address span {
  font-weight: bold;
}
.ft_bg .ft .ft_address p {
  font-size: 80%;
}
.ft_bg .ft .ft_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  width: 30%;
}
.ft_bg .ft .ft_nav ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.8em;
}
.ft_bg .ft .ft_nav ul li a {
  color: #111;
  font-size: 0.875rem;
  text-decoration: none;
}
.ft_bg .ft .ft_nav ul li a:hover {
  text-decoration: underline;
}
.ft_bg .ft .ft_nav ul li a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-bottom: -2px;
  background: url(./../images/icon_arrow_s.png) no-repeat center center;
  background-size: contain;
  image-rendering: -webkit-optimize-contrast;
}
.ft_bg .ft .ft_nav ul .sub-menu {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 1.2em;
       column-gap: 1.2em;
  row-gap: 0.2em;
  margin-left: 1.6em;
}
.ft_bg .ft .ft_nav ul .sub-menu li a {
  border-right: solid 1px #ccc;
  padding: 0 1.2em 0 0;
}
.ft_bg .ft .ft_nav ul .sub-menu li a::before {
  background: none;
  width: 0;
  margin: 0;
}
.ft_bg .ft .ft_link {
  display: none;
}
.ft_bg .ft_copy {
  padding: 36px 0;
  font-size: 10px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  cursor: pointer;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 89px;
  height: 89px;
  background: #017952;
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
}
.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
}
.pt_btn::before, .pt_btn::after {
  background: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 3px;
}
.pt_btn::before {
  width: 4px;
  bottom: 0;
}
.pt_btn::after {
  height: 4px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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 #017952;
  border-radius: 5px;
  color: #017952 !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: #017952;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #017952;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg .index_slider {
  position: relative;
  /*&::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.79) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.79) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.79) 99%, rgba(0, 0, 0, 0.8) 100%);
  }*/
}
.index_slider_bg .index_slider img {
  width: 100%;
  height: 545px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.index_slider_bg .index_slider .index_slider_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 590px;
}
.index_slider_bg .index_slider .index_slider_title .index_slider_title_item img {
  width: 100%;
  height: auto !important;
}

.index_main {
  width: 100%;
  background: url(./../images/img_home_staff01.png) no-repeat right -50px bottom 320px/25%;
}
.index_main .index_important_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  border-bottom: 1px solid #ccc;
}
.index_main .index_important_wrap .index_important {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.index_main .index_important_wrap .index_important .index_important_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}
.index_main .index_important_wrap .index_important .index_important_title h2 {
  color: #c30d23;
  font-weight: 500;
}
.index_main .index_important_wrap .index_important .index_important_list {
  width: 100%;
  padding: 15px 0 15px 30px;
}
.index_main .index_important_wrap .index_important .index_important_list .index_important_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  border-bottom: none;
}
.index_main .index_important_wrap .index_important .index_important_list .index_important_item .index_important_item_date {
  color: #c30d23;
  font-weight: 700;
}
.index_main .index_important_wrap .index_important .index_important_list .index_important_item .index_important_item_ttl {
  position: relative;
  padding-left: 30px;
  color: #c30d23;
}
.index_main .index_important_wrap .index_important .index_important_list .index_important_item .index_important_item_ttl a {
  color: #c30d23;
  text-decoration: none;
}
.index_main .index_important_wrap .index_important .index_important_list .index_important_item .index_important_item_ttl a:hover {
  text-decoration: underline;
}
.index_main .index_news {
  position: relative;
  padding: 40px 0 0px;
  max-width: 1160px;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  margin-top: -40px;
  margin-bottom: 90px;
}
.index_main .index_news .index_news_wrap {
  display: flex;
  padding: 40px;
}
.index_main .index_news h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #333;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #017952;
}
.index_main .index_news .index_news_con {
  margin: 0 0 0 40px;
}
.index_main .index_news .index_news_con .index_news_tab {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 80px;
}
.index_main .index_news .index_news_con .index_news_tab > div {
  width: calc((100% - 15px) / 4);
  cursor: pointer;
}
.index_main .index_news .index_news_con .index_news_tab > div span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  background: #F0F0EE;
  color: #3E3A39;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-bottom: none;
  transition: all 0.5s ease;
}
.index_main .index_news .index_news_con .index_news_tab > div span::after {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 12px 0 12px;
  border-color: transparent;
  transition: all 0.5s ease;
}
.index_main .index_news .index_news_con .index_news_tab > div span.active {
  background: #3E3A39;
  color: #fff;
}
.index_main .index_news .index_news_con .index_news_tab > div span.active::after {
  border-color: #3E3A39 transparent transparent transparent;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item {
  display: flex;
  align-content: space-between;
  width: 100%;
  padding: 15px 0;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item:last-of-type {
  border-bottom: none;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item .index_news_item_date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px 0 25px;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item .index_news_item_date time {
  color: #666;
  font-weight: 500;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item .index_news_item_date .index_news_item_cate {
  min-width: 95px;
  margin-left: 20px;
  padding: 5px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  border-radius: 20px;
  color: #017952;
  border: 1px solid #017952;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item .index_news_item_date .index_news_item_cate.seminar {
  color: #017952;
  border: 1px solid #017952;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item .index_news_item_date .index_news_item_cate.research {
  color: #E07412;
  border: 1px solid #E07412;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item .index_news_item_date .index_news_item_cate.recruitment {
  color: #E07412;
  border: 1px solid #E07412;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item .index_news_item_ttl {
  padding: 0 10px;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}
.index_main .index_news .more {
  position: absolute;
  right: 0;
}
.index_main .index_news .more a {
  position: relative;
  display: flex;
  align-items: center;
  color: #666;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
}
.index_main .index_news .more a::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  background: url(./../images/icon_archive.svg) no-repeat center center;
  background-size: contain;
  image-rendering: -webkit-optimize-contrast;
}
.index_main .index_news .more a:hover {
  text-decoration: underline;
}
.index_main .index_news .index_important_item {
  display: flex;
  padding: 15px 22px;
  color: #C00;
  font-weight: bold;
}
.index_main .index_news .index_important_item a {
  color: #C00;
  text-decoration: none;
}
.index_main .index_news .index_important_item .index_important_item_date {
  margin-right: 20px;
}
.index_main .index_news .index_important_item .index_important_item_date::after {
  content: "重要なお知らせ";
  font-size: 0.7em;
  padding: 0.4em 1em;
  margin: 0 1em;
  border: solid 1px #C00;
  border-radius: 2em;
}
.index_main .index_pickup_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 80px 0 60px;
  background: #f4f4f4;
}
.index_main .index_pickup_wrap .index_pickup {
  position: relative;
}
.index_main .index_pickup_wrap .index_pickup h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.index_main .index_pickup_wrap .index_pickup .index_pickup_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 50px 0 0;
}
.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item {
  width: calc((100% - 40px) / 2);
}
.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid #ccc;
}
.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_img {
  position: relative;
  overflow: hidden;
}
.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_img img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: 0.4s ease-in-out;
}
.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_img::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(0, 142, 102, 0.2) 100%);
}
.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_img::after {
  position: absolute;
  top: 3%;
  left: 1%;
  z-index: 1;
  content: "";
  width: 97.5%;
  height: 93%;
  border: 1px solid #ccc;
}
.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_ttl {
  padding: 20px 30px;
}
.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_ttl h3 {
  color: #2a8756;
  font-size: 1.125rem;
  font-weight: 500;
}
.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a:hover .index_pickup_item_img {
  position: relative;
}
.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a:hover .index_pickup_item_img img {
  transform: scale(1.3);
}
.index_main .index_course {
  padding: 80px 0 60px;
}
.index_main .index_course h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.index_main .index_course .index_course_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 90%;
  margin: 50px auto 0;
}
.index_main .index_course .index_course_list .index_course_item {
  width: calc((100% - 60px) / 4);
}
.index_main .index_course .index_course_list .index_course_item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 10px;
  background: #f4f4f4;
  color: #00913a;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.5s ease;
}
.index_main .index_course .index_course_list .index_course_item a::before, .index_main .index_course .index_course_list .index_course_item a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: all 0.5s ease;
}
.index_main .index_course .index_course_list .index_course_item a::before {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #00913a;
}
.index_main .index_course .index_course_list .index_course_item a::after {
  right: 16px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.index_main .index_course .index_course_list .index_course_item a:hover {
  background: #00913a;
  color: #fff;
}
.index_main .index_course .index_course_list .index_course_item a:hover::before {
  background: #fff;
}
.index_main .index_course .index_course_list .index_course_item a:hover::after {
  border-top: 2px solid #00913a;
  border-right: 2px solid #00913a;
}
.index_main .index_other {
  padding: 80px 0 60px;
}
.index_main .index_other h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.index_main .index_other .index_other_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  margin: 50px auto 0;
}
.index_main .index_other .index_other_list .index_other_item {
  width: calc((100% - 60px) / 3);
}
.index_main .index_other .index_other_list .index_other_item a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 10px;
  text-decoration: none;
  border: 1px solid #ccc;
}
.index_main .index_other .index_other_list .index_other_item a .index_other_item_img {
  overflow: hidden;
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  margin-right: 15px;
}
.index_main .index_other .index_other_list .index_other_item a .index_other_item_img img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
.index_main .index_other .index_other_list .index_other_item a .index_other_item_ttl h3 {
  margin-bottom: 5px;
  color: #00913a;
  font-size: 1rem;
  font-weight: 500;
}
.index_main .index_other .index_other_list .index_other_item a .index_other_item_ttl p {
  color: #333;
  font-size: 1rem;
  text-align: justify;
}
.index_main .index_other .index_other_list .index_other_item a:hover .index_other_item_img img {
  transform: scale(1.3);
}
.index_main .index_link_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 60px 0;
  background: #f4f4f4;
}
.index_main .index_link_wrap .index_link .index_link_list_01 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}
.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item {
  width: calc((100% - 50px) / 2);
}
.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item a {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  color: #fff;
  text-decoration: none;
}
.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item a span {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item:first-of-type a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
}
.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item:first-of-type a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(./../images/i_link_bg_01.jpg) no-repeat center center;
  background-size: cover;
  transform: scale(1);
  transition: 0.5s ease-in-out;
}
.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item:first-of-type a:hover::after {
  transform: scale(1.3);
}
.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item:last-of-type a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
}
.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item:last-of-type a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(./../images/i_link_bg_02.jpg) no-repeat center center;
  background-size: cover;
  transform: scale(1);
  transition: 0.5s ease-in-out;
}
.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item:last-of-type a:hover::after {
  transform: scale(1.3);
}
.index_main .index_link_wrap .index_link .index_link_list_02 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.index_main .index_link_wrap .index_link .index_link_list_02 .index_link_item {
  width: calc((100% - 60px) / 3);
}
.index_main .index_link_wrap .index_link .index_link_list_02 .index_link_item a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 30px;
  background: #fff;
  color: #2a8856;
  font-size: 1.125rem;
  text-decoration: none;
  border: 1px solid #ccc;
}
.index_main .index_link_wrap .index_link .index_link_list_02 .index_link_item a::before {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.index_main .index_link_wrap .index_link .index_link_list_02 .index_link_item a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 34px;
  height: 80%;
  background: #2a8856;
}
.index_main .index_link_wrap .index_link .index_link_list_02 .index_link_item:first-of-type a::before {
  right: 18px;
  transform: translateY(-50%) rotate(0deg);
  width: 16px;
  height: 16px;
  background: url(./../images/icon_elink_white.svg) no-repeat center center;
  background-size: cover;
  border: none;
}
.index_main .index_bnr_min {
  padding: 90px 0 40px;
}
.index_main .index_bnr_min .index_bnr_min_list .slick-track {
  display: flex;
  gap: 10px;
}
.index_main .index_bnr_min .index_bnr_min_list .slick-dots {
  bottom: -60px !important;
}
.index_main .index_bnr_min .index_bnr_min_list .slick-dots li button::before {
  content: "" !important;
  width: 25px;
  height: 6px;
  background: #999;
}
.index_main .index_bnr_min .index_bnr_min_list .slick-dots li.slick-active button::before {
  content: "" !important;
  width: 25px;
  height: 6px;
  background: #017952;
}

/*----------------------------------------------------------------------------
******************************************************************************
** フロントページに　固定ページ home　を設定
******************************************************************************
----------------------------------------------------------------------------*/
.home .nav_bg .nav .hd_nav_list > li.current a {
  background: #f6f6f6;
  color: #333;
}
.home .nav_bg .nav .hd_nav_list > li.current a:hover {
  background-color: #fff;
}
.home .con {
  background: url(./../images/img_home_bg01.png) no-repeat top 460px right/16%;
  padding-bottom: 0;
}
.home .mcon h2 {
  border-bottom: 0px;
  text-align: center;
}
.home .home_about {
  display: flex;
  background: url(./../images/img_home_bg02.png) no-repeat bottom left/30%;
}
.home .home_about h2 {
  margin: 0 100px 0 -80px;
}
.home .home_about h3 {
  display: block;
  color: #017952;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.5em 0;
  margin-bottom: 1em;
}
.home .home_about h3::before {
  background: none;
}
.home .home_about h3::after {
  content: "";
  width: 220px;
  height: 2px;
  display: inline-block;
  background-color: currentColor;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 110px);
}
.home .home_about ol {
  list-style: none;
  counter-reset: number;
}
.home .home_about ol li {
  position: relative;
  padding-left: 80px;
  margin-bottom: 2em;
}
.home .home_about ol li::before {
  counter-increment: number;
  content: "0" counter(number);
  position: absolute;
  left: 0;
  font-size: 3em;
  color: #017952;
  margin-top: -20px;
}
.home .home_menu .wp-block-column {
  border-top: dotted 2px #0096A5;
  border-bottom: dotted 2px #0096A5;
  padding: 2em 0;
}
.home .home_menu figure {
  max-width: 200px;
  margin: 0 auto;
}
.home .home_menu h2 {
  font-size: 1.6rem;
  margin: 0;
  display: flex;
  justify-content: center;
}
.home .home_menu h2 a {
  text-decoration: none;
  color: #333;
}
.home .home_menu h2::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: url(./../images/icon_arrow.png) no-repeat center center;
  background-size: contain;
  image-rendering: -webkit-optimize-contrast;
}
.home .home_menu p {
  text-align: left;
  margin-bottom: 0;
}
.home .home_strains {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background: url(./../images/img_home_strains_bg.jpg) no-repeat center center/cover;
  padding: 160px 0 120px 0;
}
.home .home_strains > .wp-block-group {
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 100px 80px 100px;
  text-align: center;
}
.home .home_strains > .wp-block-group h2 {
  margin-bottom: 0;
}
.home .home_strains > .wp-block-group .wp-block-buttons {
  justify-content: center;
}
.home .home_strains > .wp-block-group .wp-block-buttons a[target=_blank]::after {
  background: none;
  padding-left: 0;
}
.home .home_organization .wp-block-buttons {
  gap: 1.5em;
  justify-content: center;
}
.home .home_organization .wp-block-buttons .wp-block-button {
  width: 40%;
}
.home .home_organization .wp-block-buttons .wp-block-button a {
  border-right: 0px !important;
  border-left: 0px !important;
  border-top: dotted 2px #0096A5 !important;
  border-bottom: dotted 2px #0096A5 !important;
  padding: 2.5em 1.5em;
  color: #333;
  text-align: left;
  padding-left: 100px;
  background: url(./../images/icon_organization_f.png) no-repeat center left 10px/80px;
}
.home .home_organization .wp-block-buttons .wp-block-button:nth-of-type(2) a {
  background-image: url(./../images/icon_organization_em.png);
}
.home .home_organization .wp-block-buttons .wp-block-button:nth-of-type(3) a {
  background-image: url(./../images/icon_organization_md.png);
}
.home .home_organization .wp-block-buttons .wp-block-button:nth-of-type(4) a {
  background-image: url(./../images/icon_organization_fm.png);
}
.home .home_staff {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background: #F5FCFA url(./../images/img_home_staff02.png) no-repeat left bottom/13%;
  padding: 120px 0 80px 0;
}
.home .home_staff > .wp-block-buttons {
  max-width: 920px;
  margin: 0 auto;
  -moz-column-gap: 40px;
       column-gap: 40px;
  justify-content: center;
}
.home .home_staff > .wp-block-buttons .wp-block-button a {
  border: 0px !important;
  border-radius: 10px !important;
  width: 400px;
  height: 130px;
  color: #fff;
  font-size: 1.6rem;
  background: url(./../images/img_home_staff_bg01.png) no-repeat center center/cover;
  display: table-cell !important;
  vertical-align: middle;
}
.home .home_staff > .wp-block-buttons .wp-block-button a span {
  font-size: 0.8rem;
  margin-left: 2em;
  letter-spacing: 0.2em;
}
.home .home_staff > .wp-block-buttons .wp-block-button a::after {
  border-color: currentColor !important;
}
.home .home_staff > .wp-block-buttons .wp-block-button:nth-of-type(2) a {
  background-image: url(./../images/img_home_staff_bg02.png);
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.breadcrumbs {
  margin-bottom: 80px;
}

.breadcrumb {
  display: flex;
  gap: 1em;
  margin: 20px 0 50px !important;
  font-size: 0.8rem;
}
.breadcrumb li {
  position: relative;
  margin-bottom: 0 !important;
  color: #9CC45F;
  font-size: 13px;
}
.breadcrumb li::before {
  position: absolute;
  top: 7px;
  right: -1.75em;
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}
.breadcrumb li:last-of-type::before {
  display: none;
}
.breadcrumb li a {
  color: #333;
  font-size: 13px;
  text-decoration: none;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}

.introduction {
  display: flex;
  justify-content: space-between;
}
.introduction figure {
  flex-shrink: 0;
  width: 260px;
  height: auto;
  margin-right: 30px;
}
.introduction figure img {
  width: 100%;
  height: auto;
}
.introduction ul {
  display: flex;
  flex-wrap: wrap;
  align-self: baseline;
  width: 100%;
  margin: 0 !important;
}
.introduction ul li {
  position: relative;
  width: calc((100% - 30px) / 2);
  margin: 0 30px 0 0 !important;
}
.introduction ul li:nth-child(2n) {
  margin-right: 0 !important;
}
.introduction ul li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 0;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}
.introduction ul li a::before {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
  content: "";
  box-sizing: border-box;
  width: 5px;
  height: 5px;
  border: 5px solid transparent;
  border-left: 5px solid #017952;
}
.introduction ul li a::after {
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translate(0, -50%);
  content: "";
  width: 12px;
  height: 1px;
  border-left: 10px solid #017952;
}
.introduction ul li.link::before {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: url(./../images/icon_elink_green.png) no-repeat center center;
  background-size: cover;
}
.introduction ul li.link a::before, .introduction ul li.link a::after {
  display: none;
}

.acd .acd-check {
  display: none;
}
.acd .acd-label {
  position: relative;
  display: block;
  cursor: pointer;
}
.acd .acd-label::after, .acd .acd-label::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background: #008E66;
  transition: all 0.3s;
}
.acd .acd-label::after {
  transform: rotate(90deg);
}
.acd .acd-con {
  height: 0;
  margin: 0;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}
.acd .acd-check:checked + .acd-label + .acd-con {
  height: 100%;
  opacity: 1;
  margin-top: 30px;
  margin-bottom: 50px;
  visibility: visible;
}
.acd .acd-check:checked + .acd-label::before {
  transform: rotate(90deg) !important;
}

.news_list .news_item {
  display: flex;
  align-content: space-between;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}
.news_list .news_item:last-of-type {
  border-bottom: none;
}
.news_list .news_item .news_item_date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px 0 25px;
}
.news_list .news_item .news_item_date time {
  color: #666;
  font-weight: 500;
}
.news_list .news_item .news_item_date .news_item_cate {
  min-width: 95px;
  margin-left: 20px;
  padding: 5px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  border-radius: 20px;
  color: #017952;
  border: 1px solid #017952;
}
.news_list .news_item .news_item_date .news_item_cate.news {
  color: #3aad6e;
  border: 1px solid #3aad6e;
}
.news_list .news_item .news_item_date .news_item_cate.event {
  color: #00a0e9;
  border: 1px solid #00a0e9;
}
.news_list .news_item .news_item_date .news_item_cate.topics {
  color: #017952;
  border: 1px solid #017952;
}
.news_list .news_item .news_item_date .news_item_cate.important {
  color: #c30d23;
  border: 1px solid #c30d23;
}
.news_list .news_item .news_item_date .news_item_cate.seminar {
  color: #017952;
  border: 1px solid #017952;
}
.news_list .news_item .news_item_date .news_item_cate.research {
  color: #E07412;
  border: 1px solid #E07412;
}
.news_list .news_item .news_item_date .news_item_cate.recruitment {
  color: #E07412;
  border: 1px solid #E07412;
}
.news_list .news_item .news_item_ttl {
  padding: 0 10px;
}
.news_list .news_item .news_item_ttl .news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.news_list .news_item .news_item_ttl .news_item_icon_new:before {
  content: "NEW";
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
  max-width: 920px;
  margin: 0 auto;
  /* WordPress　ブロックエディタ用　ボタン */
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100vw;
  height: 240px;
  margin: 0 calc(50% - 50vw);
  background: url(./../images/img_page_mainimage.jpg) no-repeat center center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.4);
  background-blend-mode: lighten;
}
.mcon h1::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  /*background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(99%, rgba(0, 0, 0, 0.79)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.79) 99%, rgba(0, 0, 0, 0.8) 100%);*/
}
.mcon h1 span {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 100px;
  color: #333;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.15em;
}
.entrance_exam .mcon h1 {
  background: url(./../images/exam_main_img.jpg) no-repeat center center;
  background-size: cover;
}
.entrance_exam .mcon h1 .exam_main_title {
  position: relative;
  display: block;
  height: 500px;
}
.entrance_exam .mcon h1 .exam_main_title span {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  padding: 40px;
  background: rgba(255, 255, 255, 0.7);
  color: #333;
}
.entrance_exam .mcon h1 .exam_main_title span::before {
  position: absolute;
  top: -50px;
  left: 20px;
  transform: rotate(35deg);
  content: "";
  width: 1px;
  height: 150px;
  background: #666;
}
.entrance_exam .mcon h1 .exam_main_title span::after {
  position: absolute;
  right: 20px;
  bottom: -50px;
  transform: rotate(35deg);
  content: "";
  width: 1px;
  height: 150px;
  background: #666;
}
.mcon h2 {
  color: #017952;
  margin: 40px 0;
  padding: 15px 0;
  font-size: 2rem;
  font-weight: 500;
  border-bottom: 4px solid #e7e7e7;
}
.mcon h3 {
  position: relative;
  margin: 20px 0 10px;
  padding-bottom: 5px;
  font-size: 1.4rem;
  font-weight: 500;
  display: table-cell;
  padding-left: 35px;
}
.mcon h3::before {
  /*position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 8em;
  height: 2px;
  background: $main-color;*/
  position: absolute;
  content: "";
  top: calc(50% - 5px);
  width: 20px;
  left: 0;
  height: 6px;
  background: #9BC561;
  border-radius: 3px;
}
.mcon h4 {
  position: relative;
  display: inline-block;
  margin: 20px 0 10px;
  font-weight: bold;
  color: #017952;
  /*&::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 1.5em;
    height: 0.01em;
    background: #8CC14A;
  }*/
}
.mcon h5,
.mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #cccccc;
  margin: 2em 0;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 2em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 3em;
  line-height: 2;
}
.mcon p:has(+ ul),
.mcon p:has(+ ol) {
  margin-bottom: 1em;
}
.mcon figure {
  text-align: center;
}
.mcon figcaption {
  padding: 0.5em 3em;
  background-color: #f5f5f5;
  color: #333;
  text-align: center;
  font-size: 0.8em;
  font-weight: bold;
}
.mcon .wp-block-buttons .wp-block-button {
  color: #017952;
}
.mcon .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link {
  border: solid 1px currentColor;
  border-radius: 0;
  display: block;
  font-weight: bold;
  position: relative;
  /* position: relative;で矢印の位置を基点とさせます */
  text-align: center;
  padding-right: 3.3em;
}
.mcon .wp-block-buttons .wp-block-button.is-style-outline a::after {
  /* 擬似要素で矢印アイコンをつくる */
  content: "";
  border: 0;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  display: inline-block;
  width: 10px;
  height: 10px;
  /* 矢印アイコンの位置を設定 */
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(45deg);
}
.mcon .wp-block-buttons .wp-block-button.is-style-outline a:hover {
  opacity: 0.8;
}

table tr th {
  font-size: 0.8rem;
  padding: 1em;
  border-bottom: solid 1px #ccc;
  background: #f8f8f8;
}
table tr td {
  padding: 1em;
  border-bottom: solid 1px #ccc;
}

.btn_organization.wp-block-buttons {
  -moz-column-gap: 1.5em;
       column-gap: 1.5em;
  row-gap: 1em;
}
.btn_organization .wp-block-button {
  width: 48%;
}
.btn_organization .wp-block-button a {
  display: block;
  border: 0px;
  border-radius: 5px;
  color: #fff !important;
  font-weight: bold;
  padding: 1.6em;
  position: relative;
  /* position: relative;で矢印の位置を基点とさせます */
  text-align: center;
}
.btn_organization .wp-block-button a:hover {
  opacity: 0.8;
}
.btn_organization .wp-block-button a::after {
  /* 擬似要素で矢印アイコンをつくる */
  content: "";
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  display: inline-block;
  width: 10px;
  height: 10px;
  /* 矢印アイコンの位置を設定 */
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(45deg);
}
.btn_organization .wp-block-button:nth-child(1) a {
  background: #017952;
}
.btn_organization .wp-block-button:nth-child(2) a {
  background: #33A47F;
}
.btn_organization .wp-block-button:nth-child(3) a {
  background: #0DA613;
}
.btn_organization .wp-block-button:nth-child(4) a {
  background: #0096A5;
}

.mcon .list_for_btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.86em;
  row-gap: 0.8em;
}
.mcon .list_for_btn li {
  list-style-type: none;
}
.mcon .list_for_btn li a {
  padding: 0.5em 1em;
  border: solid 1px currentColor;
  text-decoration: none;
  border-radius: 0;
  display: block;
  position: relative;
  /* position: relative;で矢印の位置を基点とさせます */
  text-align: center;
  padding-right: 2.3em;
}
.mcon .list_for_btn li a:hover {
  opacity: 0.8;
}
.mcon .list_for_btn li a::after {
  /* 擬似要素で矢印アイコンをつくる */
  content: "";
  border: 0;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  display: inline-block;
  width: 6px;
  height: 6px;
  /* 矢印アイコンの位置を設定 */
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(135deg);
}

.table_cooperativeresearch th:nth-of-type(1) {
  width: 4em;
}
.table_cooperativeresearch td:nth-of-type(2) {
  width: 8em;
}
.table_cooperativeresearch td:nth-of-type(5) {
  width: 5em;
}

.staff_profiles .wp-block-columns h3 {
  display: inline-block;
  padding-left: 0;
  margin-top: 0;
}
.staff_profiles .wp-block-columns h3::before {
  display: none;
}
.staff_profiles .wp-block-columns h3 + p {
  display: inline-block;
  font-size: 0.8rem;
  margin-right: 2em;
}
.staff_profiles .wp-block-columns h4 {
  font-size: 0.8rem;
  font-weight: bold;
  color: #017952;
  display: block;
  padding-left: 0;
  margin-bottom: 0;
}
.staff_profiles .wp-block-columns h4::before {
  display: none;
}
.staff_profiles .wp-block-columns .wp-block-buttons {
  display: inline-block;
}
.staff_profiles .wp-block-columns .wp-block-buttons a {
  font-size: 0.8rem;
  border: solid 1px #017952;
  padding: 4px 10px;
  border-radius: 3px;
  color: #017952;
}
.staff_profiles .wp-block-columns .wp-block-buttons a:hover {
  background: #EFF9F6;
}
.staff_profiles .wp-block-columns .wp-block-buttons a::after {
  width: 5px !important;
  height: 5px !important;
  right: 15px !important;
}
.staff_profiles .wp-block-columns .wp-block-buttons a[target=_blank]::after {
  background: none;
  padding-left: 0;
}
.staff_profiles .wp-block-columns p {
  margin-bottom: 1em;
}
.staff_profiles .wp-block-columns ul li {
  margin-bottom: 0.5em;
}
.staff_profiles .staff_organization_btn .wp-block-button {
  font-size: 0.8rem;
  width: 24%;
}
.staff_profiles .staff_organization_btn .wp-block-button a {
  border: solid 1px #ccc;
  border-radius: 5px;
  transition: all 0.5s ease;
}
.staff_profiles .staff_organization_btn .wp-block-button a:hover {
  background: #e7e7e7;
}

.equipment .wp-block-group .wp-block-image {
  margin-bottom: 0.5em;
}
.equipment .wp-block-group .wp-block-image img {
  width: 200px;
  height: 200px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  background: #f7f7f7;
}
.equipment .wp-block-group h3 {
  padding-left: 0;
  font-size: 1.2rem;
  margin: 5px 0;
  padding: 0;
}
.equipment .wp-block-group h3::before {
  width: 0;
}
.equipment .wp-block-group p {
  font-size: 0.8em;
  line-height: 1.2;
  margin-bottom: 5px;
}
.equipment .wp-block-group p:nth-of-type(2) {
  display: inline;
  margin-right: 1em;
  font-weight: bold;
  color: #017952;
}
.equipment .wp-block-group p:nth-of-type(3) {
  display: inline;
}
.equipment .wp-block-group p:last-child {
  color: #666;
  padding: 0.5em 0;
  border-top: dotted 1px #ccc;
}
.achievements_li .mcon ul li, .activity_report .mcon ul li, .exchange .mcon ul li, .parent-pageid-120 .mcon ul li, .parent-pageid-12 .mcon ul li, .parent-pageid-16 .mcon ul li, .parent-pageid-26 .mcon ul li {
  margin-bottom: 2em;
}

.single_ft {
  font-size: 0.8em;
}
.single_ft .cat {
  display: flex;
  justify-content: center;
  background: #f7f7f7;
  padding: 0.5em 0;
}
.single_ft .cat p {
  margin-bottom: 0;
}
.single_ft .cat ul {
  margin: 0.2em 0;
}
.single_ft .cat ul li {
  list-style: none;
  margin: 0 0 0 0.5em;
}
.single_ft .btn_before_next {
  border-bottom: dotted 1px #ccc;
  border-top: dotted 1px #ccc;
  display: flex;
  justify-content: center;
  -moz-column-gap: 2em;
       column-gap: 2em;
  padding: 1em 0;
}

.fermentation_bg .mcon h1, .parent-pageid-26 .mcon h1, .fermentation .mcon h1 {
  background: url(./../images/img_organization_mainimage_01.jpg) no-repeat center center/cover;
}

.environmental_microbiology_bg .mcon h1, .parent-pageid-16 .mcon h1, .environmental_microbiology .mcon h1 {
  background: url(./../images/img_organization_mainimage_02.jpg) no-repeat center center/cover;
}

.micobial_disease_bg .mcon h1, .parent-pageid-12 .mcon h1, .micobial_disease .mcon h1 {
  background: url(./../images/img_organization_mainimage_03.jpg) no-repeat center center/cover;
}

.fundamental_research_bg .mcon h1, .parent-pageid-120 .mcon h1, .fundamental_research .mcon h1 {
  background: url(./../images/img_organization_mainimage_04.jpg) no-repeat center center/cover;
}/*# sourceMappingURL=style.css.map */