@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;
}

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;
}

@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: 100;
  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: 180px;
  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: 460px;
  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% - 100px) / 6);
}
.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(/edu/wp-content/themes/faculty-edu-ja/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(/edu/wp-content/themes/faculty-edu-ja/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(/edu/wp-content/themes/faculty-edu-ja/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(/edu/wp-content/themes/faculty-edu-ja/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(/edu/wp-content/themes/faculty-edu-ja/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(/edu/wp-content/themes/faculty-edu-ja/images/icon_hd_05.svg) no-repeat center center;
  background-size: cover;
}
.hd_bg .hd .hd_lang {
  position: absolute;
  top: 0;
  left: 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;
}
.hd_bg .hd .hd_lang .hd_lang_list li.ja a span::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  background: url(/edu/wp-content/themes/faculty-edu-ja/images/icon_hd_lang.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;
  /*×î±³Ãæ¤ËÔO¶¨*/
  opacity: 0;
  /*Í¸ß^¤ò0¤Ë*/
  width: 100%;
  height: auto;
  transition: all 0.3s;
  /*transition¤òÊ¹¤Ã¤Æ¥¹¥à©`¥¹¤Ë¬F¤ì¤ë*/
  /*¥Ü¥¿¥ó¥¯¥ê¥Ã¥¯áá¡¢JS¤Ç#search-wrap¤Ëpanelactive¥¯¥é¥¹¤¬¸¶Óë¤µ¤ì¤¿áá¤ÎÒŠ¤¿Ä¿*/
  /*==—ÊË÷·™¤Î¥¨¥ê¥¢*/
  /*¥Ü¥¿¥ó¥¯¥ê¥Ã¥¯áá¡¢JS¤Ç#search-wrap¤Ë panelactive ¥¯¥é¥¹¤¬¸¶Óë¤µ¤ì¤¿áá*/
  /*==—ÊË÷¥Õ¥©©`¥à¤ÎÔO¶¨*/
  /*==¥Æ¥­¥¹¥ÈÈëÁ¦¤È¥Ü¥¿¥óinput¹²Í¨ÔO¶¨*/
  /*¥Æ¥­¥¹¥ÈÈëÁ¦inputÔO¶¨*/
  /*¥Ü¥¿¥óinputÔO¶¨*/
}

.is-animation #search-wrap {
  top: 120px;
}

#search-wrap {
  /*==—ÊË÷¥Õ¥©©`¥à¤ÎÔO¶¨*/
  /*==¥Æ¥­¥¹¥ÈÈëÁ¦¤È¥Ü¥¿¥óinput¹²Í¨ÔO¶¨*/
}
#search-wrap.panelactive {
  opacity: 1;
  /*²»Í¸Ã÷¤Ë‰ä¸ü*/
  z-index: 10;
  /*È«Ãæ¤Ë³ö¬F*/
  /*ÖÐ¤ÎÒªËØ¤òÌìµØÖÐÑë“B¤¨¤Ë¤¹¤ëÔO¶¨*/
  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¤Î¥Ç¥Õ¥©¥ë¥È¤ÎÔO¶¨¤òŸo„¿*/
  outline: none;
  cursor: pointer; /*¥«©`¥½¥ë¤òÖ¸¥Þ©`¥¯¤Ë*/
}
#search-wrap input[type=text] {
  width: 94% !important;
  padding: 20px !important;
  border: none !important;
  transition: all 0.5s !important;
  letter-spacing: 0.05em !important;
}
#search-wrap input[type=text]:focus {
  background: #fff;
}
#search-wrap input[type=submit] {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 6% !important;
  height: 64px !important;
  padding: 0 !important;
  background: url(/edu/wp-content/themes/faculty-edu-ja/images/icon_hd_01.png) #fff no-repeat center center !important;
  background-size: 20px 20px !important;
  border: none !important;
}

/*======= 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%;
}

/*======= google search ========*/
.gsc-control-cse {
  padding: 0 !important;
  border: none !important;
}

form.gsc-search-box {
  margin-bottom: 0 !important;
}

table.gsc-search-box {
  margin-bottom: 0 !important;
}

.gsc-input-box {
  border: none !important;
}

.gsib_a {
  padding: 0 !important;
}

.gsc-search-button-v2 {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 6% !important;
  height: 64px !important;
  padding: 0 !important;
  background: url(/edu/wp-content/themes/faculty-edu-ja/images/icon_hd_01.png) #fff no-repeat center center !important;
  background-size: 20px 20px !important;
  border: none !important;
}

.gsc-search-button-v2 svg {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
  background: #efefef;
}
.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 {
  position: relative;
  display: inline-block;
  z-index: 1;
  width: 20%;
  margin: 0 !important;
  border-left: 1px solid #fff;
}
.nav_bg .nav .hd_nav_list > li:last-of-type,
.nav_bg .nav .nav_list > li:last-of-type {
  border-right: 1px 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: #2a8756;
  color: #fff;
}
.nav_bg .nav .hd_nav_list > li a[href$=".pdf"]::after,
.nav_bg .nav .nav_list > li a[href$=".pdf"]::after {
  position: relative;
  top: 3px;
  content: "";
  display: inline-block;
  width: 14px;
  height: 17px;
  margin: 0 0 0 10px;
  background: url(/edu/wp-content/themes/faculty-edu-ja/images/icon_pdf.png) no-repeat center right;
  background-size: contain;
  image-rendering: pixelated;
}
.nav_bg .nav .hd_nav_list > li a[href$=".pdf"].no_icon::after,
.nav_bg .nav .nav_list > li a[href$=".pdf"].no_icon::after {
  display: none;
}
.nav_bg .nav .hd_nav_list > li.current a,
.nav_bg .nav .nav_list > li.current a {
  background: #3e3a39;
  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;
  width: 100%;
  margin: 0 !important;
  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 {
  position: relative;
  width: 100%;
  margin: 0 !important;
  list-style-type: none !important;
  border-bottom: 1px solid #fff;
}
.nav_bg .nav .hd_nav_list > li > .sub-menu > li:last-of-type,
.nav_bg .nav .nav_list > li > .sub-menu > li:last-of-type {
  border-bottom: none;
}
.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;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
}
.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: 0;
  left: 100%;
  width: 100%;
  background: #222;
  visibility: hidden;
}
.nav_bg .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li,
.nav_bg .nav .nav_list > li > .sub-menu > li > .sub-menu > li {
  position: relative;
  width: 100%;
  margin: 0 !important;
  list-style-type: none !important;
  border-bottom: 1px solid #fff;
}
.nav_bg .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li:last-of-type,
.nav_bg .nav .nav_list > li > .sub-menu > li > .sub-menu > li:last-of-type {
  border-bottom: none;
}
.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: 15px 10px;
  font-size: 0.875rem;
  text-align: center;
  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: 0;
  left: 100%;
  width: 100%;
  background: #111;
  visibility: hidden;
}
.nav_bg .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li,
.nav_bg .nav .nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li {
  position: relative;
  width: 100%;
  margin: 0 !important;
  list-style-type: none !important;
  border-bottom: 1px solid #fff;
}
.nav_bg .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li:last-of-type,
.nav_bg .nav .nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li:last-of-type {
  border-bottom: none;
}
.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: 15px 10px;
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  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);
}
.nav_bg .nav .hd_nav_list > li:last-of-type,
.nav_bg .nav .nav_list > li:last-of-type {
  border-right: 1px solid #fff;
}
.nav_bg .nav .hd_nav_list > li:last-of-type > .sub-menu > li > .sub-menu,
.nav_bg .nav .nav_list > li:last-of-type > .sub-menu > li > .sub-menu {
  left: -100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  overflow: hidden;
}
.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 {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  margin: 0 auto;
}
.con_bg .con .nav_wrap .nav .nav_list > li {
  position: relative;
  display: inline-block;
  z-index: 10;
  width: 20%;
  margin: 0 !important;
  border-left: 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 a[href$=".pdf"]::after {
  position: relative;
  top: 3px;
  content: "";
  display: inline-block;
  width: 14px;
  height: 17px;
  margin: 0 0 0 10px;
  background: url(/edu/wp-content/themes/faculty-edu-ja/images/icon_pdf.png) no-repeat center right;
  background-size: contain;
  image-rendering: pixelated;
}
.con_bg .con .nav_wrap .nav .nav_list > li a[href$=".pdf"].no_icon::after {
  display: none;
}
.con_bg .con .nav_wrap .nav .nav_list > li.current a {
  background: #3e3a39;
  color: #fff;
}
.con_bg .con .nav_wrap .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;
  }
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0 !important;
  background: #333;
  transition: All 0.3s ease;
  visibility: hidden;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li {
  position: relative;
  width: 100%;
  margin: 0 !important;
  list-style-type: none !important;
  border-bottom: 1px solid #fff;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li:last-of-type {
  border-bottom: none;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li > a {
  display: block;
  width: 100%;
  padding: 15px 10px;
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li > a:hover, .con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li > a.current {
  opacity: 0.9;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li:hover .sub-menu {
  visibility: visible;
  animation: nav_active 1s ease 0s 1 alternate;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  background: #222;
  visibility: hidden;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li .sub-menu > li {
  position: relative;
  width: 100%;
  margin: 0 !important;
  list-style-type: none !important;
  border-bottom: 1px solid #fff;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li .sub-menu > li:last-of-type {
  border-bottom: none;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li .sub-menu > li > a {
  display: block;
  width: 100%;
  padding: 15px 10px;
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li .sub-menu > li > a:hover, .con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li .sub-menu > li > a.current {
  opacity: 0.9;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li .sub-menu > li:hover .sub-menu {
  visibility: visible;
  animation: nav_active 1s ease 0s 1 alternate;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li .sub-menu > li > .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  background: #111;
  visibility: hidden;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li .sub-menu > li > .sub-menu > li {
  position: relative;
  width: 100%;
  margin: 0 !important;
  list-style-type: none !important;
  border-bottom: 1px solid #fff;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li .sub-menu > li > .sub-menu > li:last-of-type {
  border-bottom: none;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li .sub-menu > li > .sub-menu > li > a {
  display: block;
  width: 100%;
  padding: 15px 10px;
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
}
.con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li .sub-menu > li > .sub-menu > li > a:hover, .con_bg .con .nav_wrap .nav .nav_list > li > .sub-menu > li .sub-menu > li > .sub-menu > li > a.current {
  background: rgb(17, 17, 17);
}
.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:last-of-type > .sub-menu > li > .sub-menu {
  left: -100%;
}
.con_bg .con .main {
  order: 1;
  width: 100%;
}
.con_bg .con .main a[href$=".pdf"]::after {
  position: relative;
  top: 3px;
  content: "";
  display: inline-block;
  width: 14px;
  height: 17px;
  margin: 0 0 0 10px;
  background: url(/edu/wp-content/themes/faculty-edu-ja/images/icon_pdf.png) no-repeat center right;
  background-size: contain;
  image-rendering: pixelated;
}
.con_bg .con .main a[href$=".pdf"].no_icon::after {
  display: none;
}
.con_bg .con .main a[href$=".zip"]::after {
  position: relative;
  top: 3px;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 0 0 10px;
  background: url(/edu/wp-content/themes/faculty-edu-ja/images/icon_zip.png) no-repeat center right;
  background-size: contain;
  image-rendering: pixelated;
}
.con_bg .con .main a[href$=".zip"].no_icon::after {
  display: none;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  border-top: 1px solid #ccc;
}
.ft_bg .ft {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  padding: 60px 10px;
}
.ft_bg .ft .ft_address .ft_logo {
  width: 500px;
  margin-bottom: 20px;
}
.ft_bg .ft .ft_address .ft_logo img {
  width: 100%;
  height: 100%;
}
.ft_bg .ft .ft_address address {
  font-size: 0.875rem;
  line-height: 1.8;
}
.ft_bg .ft .ft_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.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_link {
  display: none;
}
.ft_bg .ft_copy {
  padding: 36px 0;
  background: #2a8856;
  color: #fff;
  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: #3e3a39;
  color: #fff;
  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 #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::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%);
}
.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%;
}
.index_main .index_important_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  border-bottom: 1px solid #ccc;
}
@media print {
  .index_main .index_important_wrap {
    width: 100%;
    margin: 0;
  }
}
.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 90px;
}
.index_main .index_news 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_news .index_news_con {
  margin: 50px 0 0;
}
.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% - 10px) / 3);
  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 {
  border: 1px solid #ccc;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item {
  display: flex;
  align-content: space-between;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}
.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;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item .index_news_item_date .index_news_item_cate.news {
  color: #3aad6e;
  border: 1px solid #3aad6e;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item .index_news_item_date .index_news_item_cate.event {
  color: #00a0e9;
  border: 1px solid #00a0e9;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item .index_news_item_date .index_news_item_cate.topics {
  color: #8CC14A;
  border: 1px solid #8CC14A;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item .index_news_item_date .index_news_item_cate.ryo-everyday {
  color: #1B1464;
  border: 1px solid #1B1464;
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item .index_news_item_date .index_news_item_cate.ryo-everyday::before {
  content: "š°ÈÕÈÕÕI";
}
.index_main .index_news .index_news_con .tab_pnl .index_news_item .index_news_item_date .index_news_item_cate.important {
  color: #c30d23;
  border: 1px solid #c30d23;
}
.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;
  top: 60px;
  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(/edu/wp-content/themes/faculty-edu-ja/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_pickup_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 80px 0 60px;
  background: #f4f4f4;
}
@media print {
  .index_main .index_pickup_wrap {
    width: 100%;
    margin: 0;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.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: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px 30px 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_facility {
  padding: 40px 0 60px;
}
.index_main .index_facility h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.index_main .index_facility h3 {
  width: 90%;
  margin: 20px auto;
  padding-left: 20px;
  font-size: 1.125rem;
  font-weight: 500;
  border-left: 5px solid #8CC14A;
}
.index_main .index_facility .index_facility_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 90%;
  margin: 20px auto 40px;
}
.index_main .index_facility .index_facility_list .index_facility_item {
  width: calc((100% - 60px) / 4);
}
.index_main .index_facility .index_facility_list .index_facility_item a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px 30px 15px 10px;
  background: #f4f4f4;
  color: #00913a;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.5s ease;
}
.index_main .index_facility .index_facility_list .index_facility_item a::before, .index_main .index_facility .index_facility_list .index_facility_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_facility .index_facility_list .index_facility_item a::before {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #00913a;
}
.index_main .index_facility .index_facility_list .index_facility_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_facility .index_facility_list .index_facility_item a:hover {
  background: #00913a;
  color: #fff;
}
.index_main .index_facility .index_facility_list .index_facility_item a:hover::before {
  background: #fff;
}
.index_main .index_facility .index_facility_list .index_facility_item a:hover::after {
  border-top: 2px solid #00913a;
  border-right: 2px solid #00913a;
}
.index_main .index_other {
  padding: 40px 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 {
  flex: 1;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
  max-width: 140px;
  height: 100%;
  max-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%;
  -o-object-fit: cover;
     object-fit: cover;
  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 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_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: #8CC14A;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0 50px !important;
}
.breadcrumb li {
  position: relative;
  margin-right: 3em !important;
  margin-bottom: 0.5em !important;
  color: #9CC45F;
  font-size: 13px;
}
.breadcrumb li:last-of-type {
  margin-right: 0 !important;
}
.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(/edu/wp-content/themes/faculty-edu-ja/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-top: 20px;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 1.375rem;
  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.25rem;
  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;
}

.news_tab {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 80px;
}
.news_tab > div {
  width: calc((100% - 15px) / 4);
  cursor: pointer;
}
.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;
}
.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;
}
.news_tab > div > span.active {
  background: #3E3A39;
  color: #fff;
}
.news_tab > div > span.active::after {
  border-color: #3E3A39 transparent transparent transparent;
}
.news_tab.gs > div {
  width: calc((100% - 5px) / 2);
}

.news_list {
  border: 1px solid #ccc;
}
.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;
}
.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: #8CC14A;
  border: 1px solid #8CC14A;
}
.news_list .news_item .news_item_date .news_item_cate.ryo-everyday {
  color: #1B1464;
  border: 1px solid #1B1464;
}
.news_list .news_item .news_item_date .news_item_cate.ryo-everyday::before {
  content: "š°ÈÕÈÕÕI";
}
.news_list .news_item .news_item_date .news_item_cate.important {
  color: #c30d23;
  border: 1px solid #c30d23;
}
.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";
}

.gs_center_comennt {
  font-size: 14px;
}

.course_news_list {
  margin-top: 20px;
  border: 1px solid #ccc;
}
.course_news_list .course_news_item {
  display: flex;
  align-content: space-between;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}
.course_news_list .course_news_item:last-of-type {
  border-bottom: none;
}
.course_news_list .course_news_item .course_news_item_date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px 0 25px;
}
.course_news_list .course_news_item .course_news_item_date time {
  color: #666;
  font-weight: 500;
}
.course_news_list .course_news_item .course_news_item_ttl {
  padding: 0 10px;
}
.course_news_list .course_news_item .course_news_item_ttl .course_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.course_news_list .course_news_item .course_news_item_ttl .course_news_item_icon_new:before {
  content: "NEW";
}

.about_common_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}
.about_common_list .about_common_item {
  width: calc((100% - 60px) / 3);
}
.about_common_list .about_common_item .about_common_item_ttl {
  width: 100%;
  border: 1px solid #ccc;
}
.about_common_list .about_common_item .about_common_item_ttl .about_common_item_ttl_txt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #2a8856;
  font-size: 1.125rem;
  text-decoration: none;
}
.about_common_list .about_common_item .about_common_item_ttl .about_common_item_ttl_txt a {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 70px 20px 20px;
  background-image: none;
  color: #2a8856;
  text-decoration: none;
}
.about_common_list .about_common_item .about_common_item_ttl .about_common_item_ttl_txt 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;
}
.about_common_list .about_common_item .about_common_item_ttl .about_common_item_ttl_txt a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 34px;
  height: 70%;
  background: #2a8856;
}
.about_common_list .about_common_item.acd .about_common_item_ttl {
  position: relative;
  cursor: pointer;
}
.about_common_list .about_common_item.acd .about_common_item_ttl .about_common_item_ttl_txt {
  padding: 20px 50px 20px 20px;
}
.about_common_list .about_common_item.acd .about_common_item_ttl .icon-wrap {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translatey(-50%);
  width: 34px;
  height: 70%;
  background: #2a8756;
}
.about_common_list .about_common_item.acd .about_common_item_ttl .icon-wrap .icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  /*£«¡¢£­ÇÐ¤êÌæ¤¨*/
}
.about_common_list .about_common_item.acd .about_common_item_ttl .icon-wrap .icon:before, .about_common_list .about_common_item.acd .about_common_item_ttl .icon-wrap .icon:after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #fff;
  left: 50%;
  top: 50%;
  width: 40%;
  height: 2px;
  transform: translate(-50%, -50%);
}
.about_common_list .about_common_item.acd .about_common_item_ttl .icon-wrap .icon:before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.about_common_list .about_common_item.acd .about_common_item_ttl .icon-wrap .icon.open:before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.about_common_list .about_common_item.acd .about_common_item_con {
  display: none;
  border: 1px solid #ccc;
  border-top: none;
}
.about_common_list .about_common_item.acd .about_common_item_con ul {
  margin: 0;
}
.about_common_list .about_common_item.acd .about_common_item_con ul li {
  margin: 0;
  list-style-type: none;
}
.about_common_list .about_common_item.acd .about_common_item_con ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  background: #f4f4f4;
  color: #00913a;
  text-decoration: none;
  transition: all 0.5s ease;
}
.about_common_list .about_common_item.acd .about_common_item_con ul li a:hover {
  background: #00913a;
  color: #fff;
}

.everyday_link_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 40px !important;
}
.everyday_link_list li {
  width: calc((100% - 100px) / 6);
  margin: 0 !important;
  list-style-type: none !important;
}
.everyday_link_list li a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px 30px 15px 10px;
  background: #f4f4f4;
  color: #00913a;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.5s ease;
}
.everyday_link_list li a::before, .everyday_link_list li a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.everyday_link_list li a::before {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #00913a;
}
.everyday_link_list li a::after {
  right: 16px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.everyday_link_list li a:hover, .everyday_link_list li a[aria-current] {
  background: #00913a;
  color: #fff;
}
.everyday_link_list li a:hover::before, .everyday_link_list li a[aria-current]::before {
  background: #fff;
}
.everyday_link_list li a:hover::after, .everyday_link_list li a[aria-current]::after {
  border-top: 2px solid #00913a;
  border-right: 2px solid #00913a;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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(/edu/wp-content/themes/faculty-edu-ja/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: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  color: #fff;
  font-size: 46px;
  font-weight: 400;
  letter-spacing: 0.15em;
}
.mcon h1.title_bg_center {
  background: url(/edu/wp-content/themes/faculty-edu-ja/images/center_main_img.jpg) no-repeat center center;
  background-size: cover;
}

.entrance_exam .mcon h1 {
  background: url(/edu/wp-content/themes/faculty-edu-ja/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;
}

.center_iert .mcon h1 {
  background: url(/edu/wp-content/themes/faculty-edu-ja/images/center_main_img.jpg) no-repeat center center;
  background-size: cover;
}
.center_iert .mcon h1::before, .center_iert .mcon h1 span {
  display: none;
}

.mcon h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 1.375rem;
  font-weight: 500;
  border-left: 5px solid #8CC14A;
}
.mcon h3 {
  position: relative;
  margin: 20px 0 10px;
  padding-bottom: 5px;
  font-size: 1.25rem;
  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: block;
  margin: 20px 0 10px;
  padding-left: 2em;
  font-size: 1.125rem;
  font-weight: 500;
}
.mcon h4::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  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 .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;
}

/*# sourceMappingURL=style.css.map */