  @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¤ÎÃüÃûÒŽ„t¤ÏApplicats¥ª¥ê¥¸¥Ê¥ë¤ÎÃüÃûÒŽ„t¤ò’ñÓÃ¤·¤Æ¤¤¤Þ¤¹¡£
** -- ³õÆÚ¥Õ¥©¥ó¥È¥µ¥¤¥º¤Ïreset.css¤Ë¤Æ13px¤Ë¥ê¥»¥Ã¥È¤·¤Æ¤¤¤Þ¤¹¡£
** -- ÐÐég¤Ï1.6¤Ë¥ê¥»¥Ã¥È¤·¤Æ¤¤¤Þ¤¹¡£
**        …gÎ»¤Ï²»Òª¤Ç¤¹¡£(¥¹¥¿¥¤¥ë±À¤ì¤¹¤ë¿ÉÄÜÐÔÓÐ)
** -- ¥³¥ó¥Æ¥ó¥ÄÄÚ¤Î¥Õ¥©¥ó¥È¥µ¥¤¥º?ÐÐég¤Ï
**        [ base ]¤Îcontents¥¯¥é¥¹¤ÇÖ¸¶¨¤·¤Æ¤¤¤Þ¤¹¡£
**        ‰ä¸ü¤¹¤ëˆöºÏ¤Ï¤³¤Á¤é¤ò‰ä¸ü¤·¤Æ¤¯¤À¤µ¤¤¡£
**
***
***/
/*-------------------------------------------------------------------------------------------------------


*
* PC¥¹¥¿¥¤¥ë
*


-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
***
** base
***
----------------------------------------------------------------------------*/
html, body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

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

@media print {
  body {
    padding-top: 0;
  }
  header {
    position: relative !important;
  }
  .pt {
    display: none !important;
  }
  .pc_dn {
    display: none !important;
  }
}
/*----------------------------------------------------------------------------
***
** 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;
  height: 190px;
  transition: all 0.3s ease;
}
.hd_bg .hd .hd_logo {
  position: absolute;
  top: 70px;
  left: 0;
  transition: all 0.3s ease;
}
.hd_bg .hd .hd_logo a {
  position: relative;
  display: flex;
  align-items: center;
  color: #000;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
}
.hd_bg .hd .hd_logo a::before {
  content: "";
  display: block;
  width: 68px;
  height: 61px;
  margin-right: 20px;
  background: url(/agr-en/wp-content/themes/faculty-agr-en/images/logo.png) no-repeat center center;
  background-size: contain;
}
.hd_bg .hd .hd_faculty_logo {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  padding: 5px 15px;
  background: #2a8756;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.hd_bg .hd .hd_nav {
  position: absolute;
  top: 90px;
  right: 0;
  display: flex;
  justify-content: flex-end;
  transition: all 0.3s ease;
}
.hd_bg .hd .hd_nav .hd_nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.hd_bg .hd .hd_nav .hd_nav_list > li {
  display: inline-block;
}
.hd_bg .hd .hd_nav .hd_nav_list > li > a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  color: #333;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}
.hd_bg .hd .hd_nav .hd_nav_list > li > a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background: #000;
  transition: 0.3s;
}
.hd_bg .hd .hd_nav .hd_nav_list > li > a:hover::after {
  width: 100%;
}
.hd_bg .hd .hd_nav .search-area {
  position: relative;
  min-width: 260px;
  margin-left: 50px;
}
.hd_bg .hd .hd_nav .search-area form {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.hd_bg .hd .hd_nav .search-area form input {
  -webkit-appearance: none; /*Safari¤äChrome¤Î¥Ç¥Õ¥©¥ë¥È¤ÎÔO¶¨¤òŸo„¿*/
  outline: none;
  cursor: pointer; /*¥«©`¥½¥ë¤òÖ¸¥Þ©`¥¯¤Ë*/
}
.hd_bg .hd .hd_nav .search-area form input[type=text] {
  width: 100%;
  padding: 3px;
  border: 1px solid #000;
  transition: all 0.5s;
  letter-spacing: 0.05em;
}
.hd_bg .hd .hd_nav .search-area form input[type=text]:focus {
  background: #f0f4f5;
}
.hd_bg .hd .hd_nav .search-area form input[type=submit] {
  min-width: 30px;
  min-height: 30px;
  background: url(/agr-en/wp-content/themes/faculty-agr-en/images/icon_search.svg) #000 no-repeat center center;
  background-size: 14px 14px;
  border: none;
}
.hd_bg .hd .hd_nav .search-area .gsc-control-cse {
  padding: 0 !important;
}
.hd_bg .hd .hd_nav .search-area form.gsc-search-box.gsc-search-box-tools {
  margin: 0;
}
.hd_bg .hd .hd_nav .search-area .gsc-search-button-v2 {
  min-width: 30px;
  min-height: 30px;
  background: url(/agr-en/wp-content/themes/faculty-agr-en/images/icon_search.svg) #000 no-repeat center center;
  background-size: 14px 14px;
  border: none;
}
.hd_bg .hd .hd_nav .search-area .gsc-search-button-v2 svg {
  display: none;
}
.hd_bg .hd .hd_nav_sub {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.hd_bg .hd .hd_nav_sub .hd_nav_sub_item {
  position: relative;
  width: calc((100% - 60px) / 4);
  background: #fff;
}
.hd_bg .hd .hd_nav_sub .hd_nav_sub_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  background: url(/agr-en/wp-content/themes/faculty-agr-en/images/i_nav_bg.png) no-repeat center bottom;
  background-size: cover;
  color: #000;
  font-size: 0.937rem;
  font-weight: 900;
  text-decoration: none;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_nav_sub .hd_nav_sub_item a:hover {
  opacity: 0.7;
}
.hd_bg .hd .hd_nav_sub .hd_nav_sub_item:first-of-type::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  background: #008e66;
}
.hd_bg .hd .hd_nav_sub .hd_nav_sub_item:nth-of-type(2)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  background: #00ca93;
}
.hd_bg .hd .hd_nav_sub .hd_nav_sub_item:nth-of-type(3)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  background: #9cc45f;
}
.hd_bg .hd .hd_nav_sub .hd_nav_sub_item:last-of-type::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  background: #d0e3b5;
}
.hd_bg .hd .hd_lang {
  position: absolute;
  top: 20px;
  right: 0;
  display: flex;
  justify-content: flex-end;
  transition: all 0.3s ease;
}
.hd_bg .hd .hd_lang .f_size {
  position: relative;
  display: flex;
  align-items: center;
}
.hd_bg .hd .hd_lang .f_size > span {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}
.hd_bg .hd .hd_lang .f_size .f_size_box_wrap .f_size_box {
  display: flex;
  gap: 10px;
  margin-left: 10px;
}
.hd_bg .hd .hd_lang .f_size .f_size_box_wrap .f_size_box .size-button {
  cursor: pointer;
  display: inline-block;
  padding: 5px;
  background: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 0.812rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  border: none;
  transition: all 0.3s ease;
}
.hd_bg .hd .hd_lang .f_size .f_size_box_wrap .f_size_box .size-button:hover, .hd_bg .hd .hd_lang .f_size .f_size_box_wrap .f_size_box .size-button.f_size_active {
  background: #000;
  color: #fff;
}
.hd_bg .hd .hd_lang .hd_lang_list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 100px;
}
.hd_bg .hd .hd_lang .hd_lang_list li {
  position: relative;
  border-right: 1px solid #666;
}
.hd_bg .hd .hd_lang .hd_lang_list li a {
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}
.hd_bg .hd .hd_lang .hd_lang_list li a span {
  position: relative;
}
.hd_bg .hd .hd_lang .hd_lang_list li a span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background: #000;
  transition: 0.3s;
}
.hd_bg .hd .hd_lang .hd_lang_list li a:hover span::after {
  width: 100%;
}
.hd_bg .hd .hd_lang .hd_lang_list li:last-of-type {
  border-right: none;
}
.hd_bg .hd .hd_lang .hd_lang_list li:last-of-type a {
  padding-right: 0;
}
.hd_bg.is-animation .hd {
  height: 130px;
}
.hd_bg.is-animation .hd .hd_logo {
  top: 10px;
}
.hd_bg.is-animation .hd .hd_nav {
  position: absolute;
  top: 45px;
}
.hd_bg.is-animation .hd .hd_lang {
  top: 5px;
}
.hd_bg.is-animation .nav_bg .nav .nav_list {
  height: 90px;
}

/*----------------------------------------------------------------------------
***
** global nav
***
----------------------------------------------------------------------------*/
.nav_bg .nav {
  position: relative;
  overflow: visible;
}
.nav_bg .nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  height: 90px;
  margin: 0 auto;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16.6666666667%;
  height: 100%;
  z-index: 1;
}
.nav_bg .nav .nav_list > li::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 14px;
  background: #aaa;
}
.nav_bg .nav .nav_list > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  color: #000;
  font-size: 0.937rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.nav_bg .nav .nav_list > li > a span {
  position: relative;
  transition: 0.3s;
}
.nav_bg .nav .nav_list > li > a span::after {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 1px;
  background: #000;
  transition: 0.3s;
}
.nav_bg .nav .nav_list > li > a:hover span::after {
  width: 100%;
}
.nav_bg .nav .nav_list > li.current a span::after {
  width: 100%;
}
.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 .nav_list > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #333;
  transition: All 0.3s ease;
  visibility: hidden;
}
.nav_bg .nav .nav_list > li > .sub-menu > li {
  position: relative;
  width: 100%;
}
.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;
}
.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 .nav_list > li > .sub-menu > li:hover .sub-menu {
  visibility: visible;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .nav .nav_list > li > .sub-menu > li > .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  background: #222;
  visibility: hidden;
}
.nav_bg .nav .nav_list > li > .sub-menu > li > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .sub-menu > li > .sub-menu > li > a {
  display: block;
  width: 100%;
  padding: 15px 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.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 .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 .nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  background: #111;
  visibility: hidden;
}
.nav_bg .nav .nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.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);
}
.nav_bg .nav .nav_list > li:first-of-type::before {
  display: none;
}
.nav_bg .nav .nav_list > li:last-of-type {
  padding-right: 0;
}
.nav_bg .nav .nav_list > li:last-of-type > .sub-menu > li > .sub-menu {
  left: -100%;
}
.nav_bg .nav .nav_list > li:last-of-type > .sub-menu > li > .sub-menu > li > .sub-menu {
  left: -100%;
}

/*----------------------------------------------------------------------------
***
** 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;
}
@media print {
  .con_bg .con .nav_wrap {
    width: 100%;
    margin: 0;
  }
}
.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:nth-of-type(5) {
  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: #000;
  font-weight: 700;
  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;
}
.ft_bg .ft {
  padding: 80px 0;
}
.ft_bg .ft .ft_logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  font-size: 1.375rem;
  font-weight: 700;
}
.ft_bg .ft .ft_logo span {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.ft_bg .ft .ft_logo span::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 28px;
  margin-right: 10px;
  background: url(/agr-en/wp-content/themes/faculty-agr-en/images/logo.png) no-repeat center center;
  background-size: contain;
}
.ft_bg .ft .ft_logo .ft_faculty_logo {
  color: #2a8856;
  font-family: "Open Sans", sans-serif;
  font-size: 1.125rem;
}
.ft_bg .ft .ft_nav {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid #333;
}
.ft_bg .ft .ft_nav .ft_nav_l {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.ft_bg .ft .ft_nav .ft_nav_l ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.ft_bg .ft .ft_nav .ft_nav_l ul li a {
  display: block;
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  text-decoration: none;
}
.ft_bg .ft .ft_nav .ft_nav_l ul li a:hover {
  text-decoration: underline;
}
.ft_bg .ft .ft_nav .ft_nav_r {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.ft_bg .ft .ft_nav .ft_nav_r ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ft_bg .ft .ft_nav .ft_nav_r ul li a {
  display: block;
  transition: all 0.5s ease;
}
.ft_bg .ft .ft_nav .ft_nav_r ul li a:hover {
  opacity: 0.7;
}
.ft_bg .ft .ft_link {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 100px;
  padding: 90px 0;
  background: url(/agr-en/wp-content/themes/faculty-agr-en/images/i_link_bg.png) #f6f6f6 repeat-x bottom;
}
@media print {
  .ft_bg .ft .ft_link {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.ft_bg .ft .ft_link h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  font-size: 2.25rem;
}
.ft_bg .ft .ft_link .ft_link_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ft_bg .ft .ft_link .ft_link_list .ft_link_list_item a {
  transition: all 0.5s ease;
}
.ft_bg .ft .ft_link .ft_link_list .ft_link_list_item a img {
  width: 100%;
  height: 100%;
}
.ft_bg .ft .ft_link .ft_link_list .ft_link_list_item a:hover {
  opacity: 0.7;
}
.ft_bg .ft_copy {
  padding: 20px 0;
  background: #000;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  text-align: center;
}

/*----------------------------------------------------------------------------
***
** pagetop
***
----------------------------------------------------------------------------*/
.pt {
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  right: 30px;
  width: 86px;
  height: 86px;
  background: #8CC14A;
  color: #fff;
  border-radius: 50%;
}
.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 25px;
  height: 25px;
  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 #8CC14A;
  border-radius: 5px;
  color: #8CC14A !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: #8CC14A;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #8CC14A;
}

/*----------------------------------------------------------------------------
***
** index
***
----------------------------------------------------------------------------*/
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider img {
  width: 100%;
  height: 280px;
  -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: 560px;
}
.index_slider_bg .index_slider .index_slider_title .index_slider_title_item img {
  width: 100%;
  height: auto !important;
}

.index_main {
  width: 100%;
}
.index_main .index_info {
  position: relative;
  margin-top: 50px;
  margin-bottom: 80px;
}
.index_main .index_info h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
}
.index_main .index_info .index_info_con {
  width: 100%;
}
.index_main .index_info .index_info_con .index_info_item {
  display: flex;
  font-size: 1.125rem;
  border-bottom: 1px solid #ccc;
}
.index_main .index_info .index_info_con .index_info_item .index_info_item_date {
  width: 180px;
  padding: 10px;
  text-align: center;
  border-right: 1px solid #ccc;
}
.index_main .index_info .index_info_con .index_info_item .index_info_item_date time {
  display: flex;
  align-items: center;
  height: 100%;
}
.index_main .index_info .index_info_con .index_info_item .index_info_item_ttl {
  width: 85%;
  padding: 10px;
}
.index_main .index_info .index_info_con .index_info_item .index_info_item_ttl a {
  color: #000;
}
.index_main .index_info .index_info_con .index_info_item .index_info_item_ttl a:hover {
  text-decoration: none;
}
.index_main .index_info .index_info_con .index_info_item:last-of-type {
  border-bottom: none;
}
.index_main .index_info .more {
  position: absolute;
  top: 20px;
  left: 30px;
}
.index_main .index_info .more a {
  color: #000;
}
.index_main .index_info .more a:hover {
  text-decoration: none;
}
.index_main .index_department_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 80px 0 60px;
  background: #f4f4f4;
}
@media print {
  .index_main .index_department_wrap {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.index_main .index_department_wrap .index_department {
  position: relative;
}
.index_main .index_department_wrap .index_department h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
}
.index_main .index_department_wrap .index_department .index_department_list {
  margin-top: 50px;
}
.index_main .index_department_wrap .index_department .index_department_list .index_department_item {
  margin: 0 0 40px;
}
.index_main .index_department_wrap .index_department .index_department_list .index_department_item a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  background: #fff;
  color: #111;
  text-decoration: none;
  border: 1px solid #2a8756;
  border-top: 5px solid #2a8756;
}
.index_main .index_department_wrap .index_department .index_department_list .index_department_item a .index_department_item_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 20px;
}
.index_main .index_department_wrap .index_department .index_department_list .index_department_item a .index_department_item_txt h3 {
  color: #2a8756;
  font-size: 1.375rem;
  font-weight: 500;
  border: none;
}
.index_main .index_department_wrap .index_department .index_department_list .index_department_item a .index_department_item_txt h3::before {
  display: none;
}
.index_main .index_department_wrap .index_department .index_department_list .index_department_item a .index_department_item_img {
  position: relative;
  overflow: hidden;
  width: 50%;
}
.index_main .index_department_wrap .index_department .index_department_list .index_department_item a .index_department_item_img img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transform: scale(1);
  transition: 0.5s ease-in-out;
}
.index_main .index_department_wrap .index_department .index_department_list .index_department_item a:hover .index_department_item_img img {
  transform: scale(1.3);
}
.index_main .index_graduate {
  position: relative;
  padding: 80px 0 60px;
}
.index_main .index_graduate h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
}
.index_main .index_graduate .index_graduate_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 50px 0 0;
}
.index_main .index_graduate .index_graduate_list .index_graduate_item {
  width: calc((100% - 40px) / 2);
}
.index_main .index_graduate .index_graduate_list .index_graduate_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_graduate .index_graduate_list .index_graduate_item a .index_graduate_item_img {
  position: relative;
  overflow: hidden;
}
.index_main .index_graduate .index_graduate_list .index_graduate_item a .index_graduate_item_img img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: 0.4s ease-in-out;
}
.index_main .index_graduate .index_graduate_list .index_graduate_item a .index_graduate_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_graduate .index_graduate_list .index_graduate_item a .index_graduate_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_graduate .index_graduate_list .index_graduate_item a .index_graduate_item_ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 20px 30px;
}
.index_main .index_graduate .index_graduate_list .index_graduate_item a .index_graduate_item_ttl h3 {
  color: #2a8756;
  font-size: 1.125rem;
  font-weight: 500;
}
.index_main .index_graduate .index_graduate_list .index_graduate_item a .index_graduate_item_ttl p {
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
}
.index_main .index_graduate .index_graduate_list .index_graduate_item a:hover .index_graduate_item_img {
  position: relative;
}
.index_main .index_graduate .index_graduate_list .index_graduate_item a:hover .index_graduate_item_img img {
  transform: scale(1.3);
}
.index_main .index_institutions_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 80px 0 60px;
  background: #f4f4f4;
}
@media print {
  .index_main .index_institutions_wrap {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.index_main .index_institutions_wrap .index_institutions {
  position: relative;
}
.index_main .index_institutions_wrap .index_institutions h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
}
.index_main .index_institutions_wrap .index_institutions .index_institutions_list {
  margin-top: 50px;
}
.index_main .index_institutions_wrap .index_institutions .index_institutions_list .index_institutions_item a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  background: #fff;
  color: #111;
  text-decoration: none;
  border: 1px solid #2a8756;
  border-top: 5px solid #2a8756;
}
.index_main .index_institutions_wrap .index_institutions .index_institutions_list .index_institutions_item a .index_institutions_item_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 20px;
}
.index_main .index_institutions_wrap .index_institutions .index_institutions_list .index_institutions_item a .index_institutions_item_txt h3 {
  color: #2a8756;
  font-size: 1.375rem;
  font-weight: 500;
  border: none;
}
.index_main .index_institutions_wrap .index_institutions .index_institutions_list .index_institutions_item a .index_institutions_item_txt h3::before {
  display: none;
}
.index_main .index_institutions_wrap .index_institutions .index_institutions_list .index_institutions_item a .index_institutions_item_img {
  position: relative;
  overflow: hidden;
  width: 50%;
}
.index_main .index_institutions_wrap .index_institutions .index_institutions_list .index_institutions_item a .index_institutions_item_img img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transform: scale(1);
  transition: 0.5s ease-in-out;
}
.index_main .index_institutions_wrap .index_institutions .index_institutions_list .index_institutions_item a:hover .index_institutions_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;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
}
.index_main .index_course .index_course_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 70%;
  margin: 50px auto 0;
}
.index_main .index_course .index_course_list .index_course_item {
  width: calc((100% - 20px) / 2);
}
.index_main .index_course .index_course_list .index_course_item:nth-child(-n+3) {
  width: calc((100% - 40px) / 3);
}
.index_main .index_course .index_course_list .index_course_item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 20px;
  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: 50px 0;
}
.index_main .index_other h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
}
.index_main .index_other .index_other_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}
.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;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  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 {
  flex: 1;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
  max-width: 140px;
  height: 100%;
  max-height: 140px;
  margin-left: 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 {
  flex: 1;
}
.index_main .index_other .index_other_list .index_other_item a .index_other_item_ttl p {
  color: #333;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.index_main .index_other .index_other_list .index_other_item a:hover .index_other_item_img img {
  transform: scale(1.3);
}
.index_main .index_other .index_other_link_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.index_main .index_other .index_other_link_list .index_link_item {
  width: calc((100% - 60px) / 3);
}
.index_main .index_other .index_other_link_list .index_link_item a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px 50px 30px 30px;
  background: #fff;
  color: #2a8856;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #ccc;
}
.index_main .index_other .index_other_link_list .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_other .index_other_link_list .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_other .index_other_link_list .index_link_item a[href$=".pdf"]::before {
  right: 18px;
  transform: translateY(-50%) rotate(0deg);
  width: 16px;
  height: 16px;
  background: url(/agr-en/wp-content/themes/faculty-agr-en/images/icon_elink_white.svg) no-repeat center center;
  background-size: cover;
  border: none;
}

/*----------------------------------------------------------------------------
***
** page
***
----------------------------------------------------------------------------*/
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 3em;
  margin: 20px 0 50px !important;
}
.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 #8CC14A;
}
.introduction ul li a::after {
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translate(0, -50%);
  content: "";
  width: 12px;
  height: 1px;
  border-left: 10px solid #8CC14A;
}
.introduction ul li.link::before {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: url(/agr-en/wp-content/themes/faculty-agr-en/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 > span {
  display: block;
}
.acd .acd-label > span.ttl {
  display: block;
  width: 100%;
  margin: 20px 0;
  padding-left: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  border-left: 5px solid #8CC14A;
}
.acd .acd-label > span.ttl_sub {
  position: relative;
  display: block;
  width: 100%;
  margin: 20px 0 10px;
  padding-bottom: 5px;
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 2px solid #ddd;
}
.acd .acd-label > span.ttl_sub::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 8em;
  height: 2px;
  background: #8CC14A;
}
.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;
}

.info_list {
  width: 100%;
}
.info_list .info_item {
  display: flex;
  font-size: 1.125rem;
  border-bottom: 1px solid #ccc;
}
.info_list .info_item .info_item_date {
  width: 180px;
  padding: 10px;
  text-align: center;
  border-right: 1px solid #ccc;
}
.info_list .info_item .info_item_date time {
  display: flex;
  align-items: center;
  height: 100%;
}
.info_list .info_item .info_item_ttl {
  width: 85%;
  padding: 10px;
}
.info_list .info_item .info_item_ttl a {
  color: #000;
}
.info_list .info_item .info_item_ttl a:hover {
  text-decoration: none;
}
.info_list .info_item:last-of-type {
  border-bottom: none;
}

.teacher_item {
  margin: 30px 0;
  padding: 20px;
  border-bottom: 1px dotted #ccc;
}
.teacher_item.bioenvi {
  background: #e2f3d8;
}
.teacher_item.biochemi {
  background: #d8ecf3;
}
.teacher_item:last-of-type {
  margin-bottom: 0;
}
.teacher_item .teacher_item_profile {
  display: flex;
  justify-content: flex-start;
}
.teacher_item .teacher_item_profile .teacher_item_profile_img {
  flex-shrink: 0;
  width: 200px;
  height: auto;
}
.teacher_item .teacher_item_profile .teacher_item_profile_img img {
  width: 100%;
  height: auto;
}
.teacher_item .teacher_item_profile .teacher_item_profile_txt {
  width: 100%;
  margin-left: 40px;
}
.teacher_item .teacher_item_profile .teacher_item_profile_txt .name {
  font-size: 1.285rem;
}
.teacher_item .teacher_item_profile .teacher_item_profile_txt .data {
  display: flex;
  flex-wrap: wrap;
}
.teacher_item .teacher_item_profile .teacher_item_profile_txt .data dt {
  flex-shrink: 0;
  width: 25%;
  margin-bottom: 10px;
  font-weight: 500;
}
.teacher_item .teacher_item_profile .teacher_item_profile_txt .data dd {
  width: 75%;
  margin-bottom: 10px;
}
.teacher_item .teacher_item_link ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  margin: 20px 0 0 !important;
}
.teacher_item .teacher_item_link ul li {
  width: calc((100% - 80px) / 5);
  margin: 0 !important;
  list-style-type: none;
}
.teacher_item .teacher_item_link ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  color: #2a8756;
  text-decoration: none;
  border: 1px solid #2a8756;
  transition: all 0.5s ease;
}
.teacher_item .teacher_item_link ul li a:hover {
  background: #2a8756;
  color: #fff;
}
@media all and (max-width: 935px) {
  .teacher_item .teacher_item_link ul li a {
    font-size: clamp(0.813rem, -0.056rem + 1.81vw, 1rem);
  }
}

/*----------------------------------------------------------------------------
***
** style
***
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.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: 500px;
  margin: 0 calc(50% - 50vw);
  background: url(/agr-en/wp-content/themes/faculty-agr-en/images/i_img.jpg) no-repeat center center;
  background-size: cover;
}
.mcon h1::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 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%);
}
.mcon h1 span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 40px;
  color: #fff;
  font-size: 46px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.15em;
}
.mcon .page_title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100vw;
  height: 280px;
  margin: 0 calc(50% - 50vw);
}
.mcon .page_title .page_title_txt {
  position: relative;
  width: 50%;
  height: 100%;
  margin: 0 !important;
  padding: 30px;
  background: #8CC14A !important;
}
.mcon .page_title .page_title_txt > h1 {
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  background: none;
}
.mcon .page_title .page_title_txt > h1::before {
  display: none;
}
.mcon .page_title .page_title_txt > h1 span {
  justify-content: flex-start;
  margin: 0 !important;
}
.mcon .page_title .page_title_txt.biochemi {
  background: #8CC14A !important;
}
.mcon .page_title .page_title_txt.biochemi {
  background: #00a0e9 !important;
}
.mcon .page_title .page_title_txt.experimental-farm {
  background: #CE9B0E !important;
}
.mcon .page_title .page_title_slider {
  width: 50%;
}
.mcon .page_title .page_title_slider img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.mcon h2 {
  margin: 20px 0;
  padding-left: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  border-left: 5px solid #8CC14A;
}
.mcon h3 {
  position: relative;
  margin: 20px 0 10px;
  padding-bottom: 5px;
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 2px solid #ddd;
}
.mcon h3::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 8em;
  height: 2px;
  background: #8CC14A;
}
.mcon h4 {
  position: relative;
  display: inline-block;
  margin: 20px 0 10px;
  padding-left: 2em;
  font-size: 0.937rem;
  font-weight: 500;
}
.mcon h4::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 #000;
}
.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 p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon ul.triangle li {
  list-style-image: url(/agr-en/wp-content/themes/faculty-agr-en/images/triangle.gif);
  margin: 4px 0 0 22px;
  line-height: 150%;
}
.mcon .alignright {
  display: block;
  margin: 0 0 0 auto !important;
}
.mcon .alignleft {
  display: block;
  margin: 0 auto 0 0 !important;
}
.mcon .aligncenter {
  display: block;
  margin: 0 auto !important;
}
@media screen and (max-width: 1159px) {
  .mcon > section {
    padding-right: 10px;
    padding-left: 10px;
  }
}

body.biochemi .mcon h2 {
  border-left: 5px solid #00a0e9;
}
body.biochemi .mcon h3::before {
  background: #00a0e9;
}
body.biochemi .mcon h4::before {
  background: #00a0e9;
}

body.experimental-farm .mcon h2 {
  border-left: 5px solid #CE9B0E;
}
body.experimental-farm .mcon h2::before {
  background: #CE9B0E;
}
body.experimental-farm .mcon h3::before {
  background: #CE9B0E;
}
body.experimental-farm .mcon h4::before {
  background: #CE9B0E;
}/*# sourceMappingURL=style.css.map */