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

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

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

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

@media print {
  body {
    padding-top: 0;
  }
  header {
    position: relative !important;
  }
  .pc_dn {
    display: none !important;
  }
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  background: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.hd_bg .hd {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  max-width: 1160px;
  height: 175px;
  margin: 0 auto;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.hd_bg .hd > .hd_logo {
  position: absolute;
  top: 25px;
  left: 0;
}

.hd_bg .hd > .hd_logo img {
  width: 308px;
  height: auto;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.hd_bg .hd > .hd_nav {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.hd_bg .hd > .hd_nav .hd_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 50px;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li {
  position: relative;
  display: inline-block;
  /*z-index: 1000;*/
}

.hd_bg .hd > .hd_nav .hd_nav_list > li::after {
  position: absolute;
  top: 50%;
  right: -20px;
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #999;
  -webkit-transform: translate(0, -50%) rotate(-70deg);
          transform: translate(0, -50%) rotate(-70deg);
}

.hd_bg .hd > .hd_nav .hd_nav_list > li > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  color: #333;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: default;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li > a::after {
  position: absolute;
  bottom: 8px;
  left: 10%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #333;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li > a:hover::after {
  width: 80%;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li.current a::after {
  width: 80%;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li:hover .sub-menu {
  visibility: visible;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
          animation: nav_active 1s ease 0s 1 alternate;
}

@-webkit-keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 200px;
  background: #fff;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
  visibility: hidden;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li {
  position: relative;
  width: 100%;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li > a {
  position: relative;
  z-index: 100;
  display: block;
  height: 100%;
  padding: 10px 15px;
  color: #fff;
  background: #008E66;
  font-size: 0.812rem;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li > a:hover, .hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li > a.current {
  opacity: 0.9;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li:hover .sub-menu {
  visibility: visible;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
          animation: nav_active 1s ease 0s 1 alternate;
}

@-webkit-keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 200px;
  background: #fff;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
  visibility: hidden;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li .sub-menu > li {
  position: relative;
  width: 100%;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li .sub-menu > li > a {
  display: block;
  width: 100%;
  padding: 10px 15px;
  background: #006649;
  color: #fff;
  font-size: 0.812rem;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li .sub-menu > li > a:hover, .hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li .sub-menu > li > a.current {
  opacity: 0.9;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li .sub-menu > li:hover .sub-menu {
  visibility: visible;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
          animation: nav_active 1s ease 0s 1 alternate;
}

@-webkit-keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li .sub-menu > li .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 200px;
  background: #fff;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
  visibility: hidden;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li .sub-menu > li .sub-menu > li {
  position: relative;
  width: 100%;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li .sub-menu > li .sub-menu > li > a {
  display: block;
  width: 100%;
  padding: 10px 15px;
  background: #00533c;
  color: #fff;
  font-size: 0.812rem;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li .sub-menu > li .sub-menu > li > a:hover, .hd_bg .hd > .hd_nav .hd_nav_list > li .sub-menu > li .sub-menu > li .sub-menu > li > a.current {
  opacity: 0.9;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li:nth-last-of-type(2) > .sub-menu .sub-menu {
  right: 100%;
  left: auto;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li:last-of-type::after {
  display: none;
}

.hd_bg .hd > .hd_nav .hd_nav_list > li:last-of-type > .sub-menu .sub-menu {
  right: 100%;
  left: auto;
}

.hd_bg .hd > .hd_lang {
  position: absolute;
  top: 65px;
  right: 10px;
  width: 400px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.hd_bg .hd > .hd_lang .hd_lang_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.hd_bg .hd > .hd_lang .hd_lang_list li {
  position: relative;
  width: calc((100% - 20px * 4) / 5);
}

.hd_bg .hd > .hd_lang .hd_lang_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: #333;
  font-size: 0.625rem;
  text-decoration: none;
}

.hd_bg .hd > .hd_lang .hd_lang_list li.search a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-bottom: 5px;
  background: url(./../images/icon_hd_01.svg) no-repeat center center;
  background-size: cover;
}

.hd_bg .hd > .hd_lang .hd_lang_list li.f_size a::before {
  content: "";
  display: block;
  width: 21px;
  height: 15px;
  margin-bottom: 5px;
  background: url(./../images/icon_hd_02.svg) no-repeat center center;
  background-size: cover;
}

.hd_bg .hd > .hd_lang .hd_lang_list li.f_size:hover .f_size_box_wrap {
  visibility: visible;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
          animation: nav_active 1s ease 0s 1 alternate;
}

.hd_bg .hd > .hd_lang .hd_lang_list li.f_size .f_size_box_wrap {
  position: absolute;
  top: 40px;
  left: 50%;
  z-index: 100;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-top: 10px;
  visibility: hidden;
}

.hd_bg .hd > .hd_lang .hd_lang_list li.f_size .f_size_box_wrap .f_size_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  padding: 10px;
  background: #f2f2f2;
}

.hd_bg .hd > .hd_lang .hd_lang_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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hd_bg .hd > .hd_lang .hd_lang_list li.f_size .f_size_box_wrap .f_size_box .size-button:hover, .hd_bg .hd > .hd_lang .hd_lang_list li.f_size .f_size_box_wrap .f_size_box .size-button.f_size_active {
  background: #008E66;
  color: #fff;
}

.hd_bg .hd > .hd_lang .hd_lang_list li.access a::before {
  content: "";
  display: block;
  width: 18px;
  height: 21px;
  margin-bottom: 5px;
  background: url(./../images/icon_hd_03.svg) no-repeat center center;
  background-size: cover;
}

.hd_bg .hd > .hd_lang .hd_lang_list li.contact a::before {
  content: "";
  display: block;
  width: 20px;
  height: 17px;
  margin-bottom: 5px;
  background: url(./../images/icon_hd_04.svg) no-repeat center center;
  background-size: cover;
}

.hd_bg .hd > .hd_lang .hd_lang_list li.lang a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-bottom: 5px;
  background: url(./../images/icon_hd_05.svg) no-repeat center center;
  background-size: cover;
}

.hd_bg .hd > .hd_donation {
  position: absolute;
  top: 0;
  right: 20px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.hd_bg .hd > .hd_donation:hover {
  opacity: 0.8;
}

.hd_bg.is-animation .hd {
  height: 120px;
}

.hd_bg.is-animation .hd .hd_logo {
  top: 10px;
}

.hd_bg.is-animation .hd .hd_logo img {
  width: 200px;
}

.hd_bg.is-animation .hd .hd_lang {
  position: absolute;
  top: 15px;
  right: 220px;
}

.hd_bg.is-animation .hd .hd_donation {
  position: absolute;
  top: 15px;
  right: 20px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** search
******************************************************************************
----------------------------------------------------------------------------*/
#search-wrap {
  position: absolute;
  /*固定配置にして*/
  top: 120px;
  left: 0;
  z-index: -1;
  /*最背面に設定*/
  opacity: 0;
  /*透過を0に*/
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /*transitionを使ってスムースに現れる*/
  /*ボタンクリック後、JSで#search-wrapにpanelactiveクラスが付与された後の見た目*/
  /*==検索窓のエリア*/
  /*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後*/
  /*==検索フォームの設定*/
  /*==テキスト入力とボタンinput共通設定*/
  /*テキスト入力input設定*/
  /*ボタンinput設定*/
}

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

#search-wrap.panelactive {
  opacity: 1;
  /*不透明に変更*/
  z-index: 10;
  /*全面に出現*/
  /*中の要素を天地中央揃えにする設定*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  background: #f2f2f2;
}

#search-wrap.search-area {
  display: none;
  /*検索窓のエリアは、はじめ非表示*/
}

#search-wrap.panelactive .search-area {
  position: relative;
  display: block;
  /*検索窓エリアを表示*/
  width: 80%;
}

#search-wrap form {
  position: relative;
  height: 66px;
  border-bottom: 2px solid #666;
}

#search-wrap input {
  -webkit-appearance: none;
  /*SafariやChromeのデフォルトの設定を無効*/
  outline: none;
  cursor: pointer;
  /*カーソルを指マークに*/
}

#search-wrap input[type="text"] {
  width: 94% !important;
  padding: 20px !important;
  border: none !important;
  -webkit-transition: all 0.5s !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(./../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;
  -webkit-transform: translateY(-50%);
          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;
  -webkit-transform: translateY(6px) rotate(-135deg);
          transform: translateY(6px) rotate(-135deg);
  width: 50%;
}

.close-btn span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  -webkit-transform: translateY(-6px) rotate(135deg);
          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(./../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: #3e3a39;
}

.nav_bg .nav {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  overflow: visible;
}

.nav_bg .nav .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 70%;
  height: 50px;
  margin: 0 auto;
}

.nav_bg .nav .nav_list > li {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.nav_bg .nav .nav_list > li > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  text-decoration: none;
  cursor: default;
}

.nav_bg .nav .nav_list > li > a span {
  position: relative;
}

.nav_bg .nav .nav_list > li > a span::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.nav_bg .nav .nav_list > li > a:hover span::after {
  width: 100%;
}

.nav_bg .nav .nav_list > li.pointer > a {
  cursor: pointer;
}

.nav_bg .nav .nav_list > li.current a span::after {
  width: 100%;
}

.nav_bg .nav .nav_list > li:hover .sub-menu {
  visibility: visible;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
          animation: nav_active 1s ease 0s 1 alternate;
}

@-webkit-keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.nav_bg .nav .nav_list > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 200px;
  background: #fff;
  -webkit-transition: All 0.3s ease;
  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 {
  position: relative;
  z-index: 100;
  display: block;
  height: 100%;
  padding: 10px 20px;
  color: #fff;
  background: #008E66;
  font-size: 0.812rem;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}

.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;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
          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: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 200px;
  background: #fff;
  visibility: hidden;
}

.nav_bg .nav .nav_list > li > .sub-menu > li > .sub-menu > li {
  position: relative;
  width: 100%;
}

.nav_bg .nav .nav_list > li > .sub-menu > li > .sub-menu > li > a {
  display: block;
  width: 100%;
  padding: 10px 20px;
  background: #006649;
  color: #fff;
  font-size: 0.812rem;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}

.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;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
          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: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  visibility: hidden;
}

.nav_bg .nav .nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: #003325;
  color: #fff;
  font-size: 12px;
  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: #111111;
}

.nav_bg .nav .nav_list > li:last-of-type > .sub-menu li > .sub-menu {
  left: -200px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  overflow: hidden;
}

.con_bg .con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 50px;
}

.con_bg .con .main {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
}

.con_bg .con .main .btn_pdf {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none !important;
}

.con_bg .con .main .btn_pdf span {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 0.7em 1em;
  background: #01836F;
  color: #fff !important;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
  border-radius: 4px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.con_bg .con .main .btn_pdf span:hover {
  opacity: 0.8;
}

.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(./../images/icon_pdf.png) no-repeat center right;
  background-size: contain;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      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(./../images/icon_zip.png) no-repeat center right;
  background-size: contain;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
}

.con_bg .con .main a[href$=".zip"].no_icon::after {
  display: none;
}

.con_bg .con .main a[href$=".doc"]::after,
.con_bg .con .main a[href$=".docx"]::after {
  position: relative;
  top: 3px;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 0 0 10px;
  background: url(./../images/icon_word.png) no-repeat center right;
  background-size: contain;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
}

.con_bg .con .main a[href$=".doc"].no_icon::after,
.con_bg .con .main a[href$=".docx"].no_icon::after {
  display: none;
}

.con_bg .con .main a[href$=".xlsx"]::after,
.con_bg .con .main a[href$=".xls"]::after,
.con_bg .con .main a[href$=".xlw"]::after {
  position: relative;
  top: 3px;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 0 0 10px;
  background: url(./../images/icon_excel.png) no-repeat center right;
  background-size: contain;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
}

.con_bg .con .main a[href$=".xlsx"].no_icon::after,
.con_bg .con .main a[href$=".xls"].no_icon::after,
.con_bg .con .main a[href$=".xlw"].no_icon::after {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  border-top: 1px solid #ccc;
}

.ft_bg .ft .ft_con_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 0;
}

.ft_bg .ft .ft_con_top .ft_nav_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 120px;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8em;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul li a {
  color: #111;
  text-decoration: none;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul li a:hover {
  text-decoration: underline;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul li .sub-menu {
  display: none;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.link {
  gap: 1.2em;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.link li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 25px;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.link li a::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(./../images/icon_elink_black.png) no-repeat center center;
  background-size: cover;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.link li:last-of-type a {
  color: #00CC42;
}

.ft_bg .ft .ft_con_btm {
  background: #3e3a39;
}

.ft_bg .ft .ft_con_btm > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 0;
}

.ft_bg .ft .ft_con_btm > * .ft_nav_btm ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.ft_bg .ft .ft_con_btm > * .ft_nav_btm ul li a {
  color: #fff;
  text-decoration: none;
}

.ft_bg .ft .ft_con_btm > * .ft_nav_btm ul li a:hover {
  text-decoration: underline;
}

.ft_bg .ft .ft_con_btm > * .ft_copy {
  color: #fff;
  font-size: 10px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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;
  -webkit-transform: rotate(45deg);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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;
  -webkit-transition: all 0.5s ease;
  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: auto;
}

.index_slider_bg .index_slider .index_slider_title {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
}

.index_slider_bg .index_slider .index_slider_title .index_slider_title_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
  text-align: center;
}

.index_slider_bg .index_slider .index_slider_title .index_slider_title_item span:first-of-type {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.0;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  text-stroke: 1px rgba(255, 255, 255, 0.8);
}

.index_slider_bg .index_slider .index_slider_title .index_slider_title_item span:last-of-type {
  color: #fff;
  font-size: 20px;
}

.index_main {
  width: 100%;
}

.index_main .index_important {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.index_main .index_important .index_important_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 330px;
  padding: 30px 0;
  border-right: 1px solid #ccc;
}

.index_main .index_important .index_important_title h2 {
  margin-bottom: 30px;
  font-size: 1.75rem;
  font-weight: 500;
}

.index_main .index_important .index_important_title > .more a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
}

.index_main .index_important .index_important_title > .more a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  background: url(./../images/icon_archive.svg) no-repeat center center;
  background-size: contain;
  image-rendering: -webkit-optimize-contrast;
}

.index_main .index_important .index_important_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 830px;
  padding: 20px 0 20px 90px;
}

.index_main .index_important .index_important_list .index_important_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.index_main .index_important .index_important_list .index_important_item:last-of-type {
  border-bottom: none;
}

.index_main .index_important .index_important_list .index_important_item .index_important_item_date {
  width: 120px;
  color: #333;
  font-weight: 700;
}

.index_main .index_important .index_important_list .index_important_item .index_important_item_ttl {
  position: relative;
  width: calc(100% - 130px);
  padding-right: 30px;
}

.index_main .index_important .index_important_list .index_important_item .index_important_item_ttl::after {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 10px;
  background: url(./../images/icon_arrow_black_01.svg) no-repeat center center;
  background-size: contain;
}

.index_main .index_important .index_important_list .index_important_item .index_important_item_ttl .index_important_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}

.index_main .index_important .index_important_list .index_important_item .index_important_item_ttl .index_important_item_icon_new:before {
  content: "NEW";
}

.index_main .index_bnr_top {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 90px 0;
  background: #f2f2f2;
}

.index_main .index_bnr_top .index_bnr_top_list {
  width: 1160px;
  margin: 0 auto;
}

.index_main .index_bnr_top .index_bnr_top_list img {
  width: calc(100% - 20px) !important;
  height: 160px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  font-family: "object-fit: cover;" !important;
}

.index_main .index_bnr_top .index_bnr_top_list .slick-dots {
  bottom: -60px !important;
}

.index_main .index_bnr_top .index_bnr_top_list .slick-dots li button::before {
  content: "" !important;
  width: 25px;
  height: 6px;
  background: #999;
}

.index_main .index_bnr_top .index_bnr_top_list .slick-dots li.slick-active button::before {
  content: "" !important;
  width: 25px;
  height: 6px;
  background: #8CC14A;
}

.index_main .index_weekly {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 40px 0 90px;
  background: #f2f2f2;
}

.index_main .index_weekly .index_weekly_wrap {
  position: relative;
}

.index_main .index_weekly .index_weekly_wrap h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333;
  font-size: 30px;
  font-weight: 500;
}

.index_main .index_weekly .index_weekly_wrap .index_weekly_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0 0;
}

.index_main .index_weekly .index_weekly_wrap .index_weekly_list .index_weekly_item {
  width: calc((100% - 30px * 2) / 3);
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 7px rgba(52, 52, 52, 0.1);
          box-shadow: 0 2px 7px rgba(52, 52, 52, 0.1);
  overflow: hidden;
}

.index_main .index_weekly .index_weekly_wrap .index_weekly_list .index_weekly_item a {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #333;
  font-size: 16px;
  text-decoration: none;
}

.index_main .index_weekly .index_weekly_wrap .index_weekly_list .index_weekly_item a .index_weekly_item_img img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.index_main .index_weekly .index_weekly_wrap .index_weekly_list .index_weekly_item a .index_weekly_item_ttl {
  padding: 10px 30px 20px;
}

.index_main .index_weekly .index_weekly_wrap .index_weekly_list .index_weekly_item a .index_weekly_item_ttl time {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  color: #666;
  font-size: 12px;
  font-weight: 700;
}

.index_main .index_weekly .index_weekly_wrap .index_weekly_list .index_weekly_item a .index_weekly_item_ttl time::before {
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 3px;
  background: #8CC14A;
}

.index_main .index_weekly .index_weekly_wrap .more {
  position: absolute;
  top: 30px;
  right: 0;
}

.index_main .index_weekly .index_weekly_wrap .more a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.index_main .index_weekly .index_weekly_wrap .more a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  background: url(./../images/icon_archive.svg) no-repeat center center;
  background-size: contain;
  image-rendering: -webkit-optimize-contrast;
}

.index_main .index_news {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 40px 0 90px;
  background: url(./../images/news_bg.jpg) no-repeat right bottom;
  background-size: contain;
}

.index_main .index_news .index_news_wrap {
  position: relative;
}

.index_main .index_news .index_news_wrap h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333;
  font-size: 30px;
  font-weight: 500;
}

.index_main .index_news .index_news_wrap .index_news_con {
  margin: 50px 0 0;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 80px;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_tab > div {
  width: calc((100% - 5px * 4) / 5);
  cursor: pointer;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_tab > div > span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 14px 0;
  background: #F0F0EE;
  color: #3E3A39;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-bottom: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_tab > div > span::after {
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 12px 0 12px;
  border-color: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_tab > div > span.active {
  background: #3E3A39;
  color: #fff;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_tab > div > span.active::after {
  border-color: #3E3A39 transparent transparent transparent;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_item:last-of-type {
  border-bottom: none;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_item .index_news_item_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 25px;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_item .index_news_item_date time {
  color: #666;
  font-weight: 500;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_item .index_news_item_date .index_news_item_cate {
  width: 100px;
  margin-left: 20px;
  padding: 5px;
  color: #8CC14A;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #8CC14A;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_item .index_news_item_ttl {
  padding: 0 10px;
}

.index_main .index_news .index_news_wrap .index_news_con .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_wrap .index_news_con .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}

.index_main .index_news .index_news_wrap .more {
  position: absolute;
  top: 30px;
  right: 0;
}

.index_main .index_news .index_news_wrap .more a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.index_main .index_news .index_news_wrap .more a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  background: url(./../images/icon_archive.svg) no-repeat center center;
  background-size: contain;
  image-rendering: -webkit-optimize-contrast;
}

.index_main .index_news .index_news_wrap .btn_fb {
  width: 515px;
  height: 70px;
  margin: 40px auto 0;
}

.index_main .index_news .index_news_wrap .btn_fb a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: #1778f2;
  color: #FFF;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.index_main .index_news .index_news_wrap .btn_fb a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
  padding: 3px 20px 3px 0;
  font-size: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
}

.index_main .index_news .index_news_wrap .btn_fb a span::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background: url(./../images/icon_facebook.svg) no-repeat center center;
  background-size: contain;
}

@media all and (min-width: 1280px) {
  .index_main .index_news {
    background-size: cover;
  }
}

.index_main .index_event {
  padding: 40px 0 250px;
}

.index_main .index_event .index_event_wrap {
  position: relative;
}

.index_main .index_event .index_event_wrap h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333;
  font-size: 30px;
  font-weight: 500;
}

.index_main .index_event .index_event_wrap .index_event_list {
  margin: 50px 0 0;
  /* slick slider */
}

.index_main .index_event .index_event_wrap .index_event_list .index_event_item {
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 7px rgba(52, 52, 52, 0.1);
          box-shadow: 0 2px 7px rgba(52, 52, 52, 0.1);
}

.index_main .index_event .index_event_wrap .index_event_list .index_event_item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  border-radius: 10px;
}

.index_main .index_event .index_event_wrap .index_event_list .index_event_item a .index_event_item_img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.index_main .index_event .index_event_wrap .index_event_list .index_event_item a .index_event_item_img img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.index_main .index_event .index_event_wrap .index_event_list .index_event_item a .index_event_item_date {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 10;
  padding: 5px 10px;
  background: #3E3A39;
  color: #fff;
  line-height: 1.2;
}

.index_main .index_event .index_event_wrap .index_event_list .index_event_item a .index_event_item_date span {
  display: block;
}

.index_main .index_event .index_event_wrap .index_event_list .index_event_item a .index_event_item_date span:first-of-type {
  font-size: 13px;
}

.index_main .index_event .index_event_wrap .index_event_list .index_event_item a .index_event_item_date span:last-of-type {
  font-size: 30px;
  font-weight: 700;
}

.index_main .index_event .index_event_wrap .index_event_list .index_event_item a .index_event_item_ttl {
  padding: 20px 30px 20px;
}

.index_main .index_event .index_event_wrap .index_event_list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.index_main .index_event .index_event_wrap .index_event_list .slick-slide {
  height: auto !important;
}

.index_main .index_event .index_event_wrap .index_event_list .slick-list {
  padding-top: 10px;
  padding-bottom: 10px;
}

.index_main .index_event .index_event_wrap .index_event_list .slick-dots {
  bottom: -50px !important;
}

.index_main .index_event .index_event_wrap .index_event_list .slick-dots li button::before {
  content: "" !important;
  width: 25px;
  height: 6px;
  background: #999;
}

.index_main .index_event .index_event_wrap .index_event_list .slick-dots li.slick-active button::before {
  content: "" !important;
  width: 25px;
  height: 6px;
  background: #8CC14A;
}

.index_main .index_event .index_event_wrap .more {
  position: absolute;
  top: 30px;
  right: 0;
}

.index_main .index_event .index_event_wrap .more a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.index_main .index_event .index_event_wrap .more a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  background: url(./../images/icon_archive.svg) no-repeat center center;
  background-size: contain;
  image-rendering: -webkit-optimize-contrast;
}

.index_main .index_faculty {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 140px 0 75px;
  background: url(./../images/faculty_bg.jpg) no-repeat center center;
  background-size: cover;
}

.index_main .index_faculty .index_faculty_wrap {
  position: relative;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_ttl {
  position: absolute;
  top: -208px;
  left: 50%;
  width: 150px;
  height: 150px;
  background: #8CC14A;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_ttl h2 {
  position: relative;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_ttl h2 span {
  position: absolute;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  width: 150px;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.08em;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 950px;
  margin: 0 auto 50px;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_list .index_faculty_link {
  width: calc((100% - 20px * 2) / 3);
  min-height: 80px;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_list .index_faculty_link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 10px;
  background: #f0efec;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_movie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 750px;
  margin: 0 auto;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_movie .index_faculty_movie_ttl {
  color: #fff;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_movie .index_faculty_movie_ttl h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_movie .index_faculty_movie_ttl h3::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 21px;
  margin: 3px 10px 0 0;
  background: url(./../images/icon_youtube.png) no-repeat center center;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_movie .index_faculty_movie_ttl h4 {
  margin: 0 25px 15px;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_movie .index_faculty_movie_ttl h4 a {
  color: #fff;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_movie .index_faculty_movie_ttl h4 a:hover {
  text-decoration: none;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_movie .index_faculty_movie_ttl p {
  font-size: 16px;
  text-align: center;
  line-height: 1.8;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_movie .index_faculty_movie_wrap {
  width: 355px;
  height: 200px;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_movie .index_faculty_movie_wrap iframe {
  width: 100%;
  height: 100%;
}

.index_main .index_examination {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 100px 0 90px;
  background: url(./../images/examination_bg.jpg) no-repeat center top;
  background-size: cover;
}

.index_main .index_examination .index_examination_wrap {
  position: relative;
}

.index_main .index_examination .index_examination_wrap h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333;
  font-size: 30px;
  font-weight: 500;
}

.index_main .index_examination .index_examination_wrap .index_examination_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link {
  width: calc((100% - 15px * 4) / 5);
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px 0;
  background: #fff;
  text-decoration: none;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 7px rgba(52, 52, 52, 0.1);
          box-shadow: 0 2px 7px rgba(52, 52, 52, 0.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link a:hover {
  background: #8CC14A;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link a:hover span {
  color: #fff;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link:first-of-type a span::before {
  content: "";
  display: block;
  width: 76px;
  height: 66px;
  margin-bottom: 10px;
  background: url(./../images/icon_examination_01.svg) no-repeat center center;
  background-size: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link:first-of-type a:hover span::before {
  background: url(./../images/icon_examination_01_ov.svg) no-repeat center center;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link:nth-of-type(2) a span::before {
  content: "";
  display: block;
  width: 68px;
  height: 68px;
  margin-bottom: 10px;
  background: url(./../images/icon_examination_02.svg) no-repeat center center;
  background-size: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link:nth-of-type(2) a:hover span::before {
  background: url(./../images/icon_examination_02_ov.svg) no-repeat center center;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link:nth-of-type(3) a span::before {
  content: "";
  display: block;
  width: 78px;
  height: 72px;
  margin-bottom: 10px;
  background: url(./../images/icon_examination_03.svg) no-repeat center center;
  background-size: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link:nth-of-type(3) a:hover span::before {
  background: url(./../images/icon_examination_03_ov.svg) no-repeat center center;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link:nth-of-type(4) a span::before {
  content: "";
  display: block;
  width: 88px;
  height: 76px;
  margin-bottom: 10px;
  background: url(./../images/icon_examination_04.svg) no-repeat center center;
  background-size: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link:nth-of-type(4) a:hover span::before {
  background: url(./../images/icon_examination_04_ov.svg) no-repeat center center;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link:nth-of-type(5) a span::before {
  content: "";
  display: block;
  width: 76px;
  height: 70px;
  margin-bottom: 10px;
  background: url(./../images/icon_examination_05.svg) no-repeat center center;
  background-size: contain;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link:nth-of-type(5) a:hover span::before {
  background: url(./../images/icon_examination_05_ov.svg) no-repeat center center;
}

.index_main .index_bnr_btm {
  padding: 90px 0 40px;
}

.index_main .index_bnr_btm .index_bnr_btm_list img {
  width: 100% !important;
  height: 80px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  font-family: "object-fit: cover;" !important;
}

.index_main .index_bnr_btm .index_bnr_btm_list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.index_main .index_bnr_btm .index_bnr_btm_list .slick-dots {
  bottom: -60px !important;
}

.index_main .index_bnr_btm .index_bnr_btm_list .slick-dots li button::before {
  content: "" !important;
  width: 25px;
  height: 6px;
  background: #999;
}

.index_main .index_bnr_btm .index_bnr_btm_list .slick-dots li.slick-active button::before {
  content: "" !important;
  width: 25px;
  height: 6px;
  background: #8CC14A;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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;
  -webkit-transform: rotate(45deg);
  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;
}

.news_list .news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 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 {
  width: 100px;
  margin-left: 20px;
  padding: 5px;
  color: #8CC14A;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #8CC14A;
}

.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: #bb3838;
  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";
}

.introduction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.introduction figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 260px;
  height: auto;
  margin-right: 30px;
}

.introduction figure img {
  width: 100%;
  height: auto;
}

.introduction ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-item-align: baseline;
      align-self: baseline;
  width: 100%;
  margin: 0 !important;
}

.introduction ul li {
  position: relative;
  width: calc((100% - 30px) / 2);
  height: 100%;
  margin: 0 30px 0 0 !important;
}

.introduction ul li:nth-child(2n) {
  margin-right: 0 !important;
}

.introduction ul li::before {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 5px;
  height: 5px;
  border: 5px solid transparent;
  border-left: 5px solid #8CC14A;
}

.introduction ul li::after {
  position: absolute;
  top: 50%;
  right: 3px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  width: 12px;
  height: 1px;
  border-left: 10px solid #8CC14A;
}

.introduction ul li a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 20px 0;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

.introduction ul li.arrow_none::before, .introduction ul li.arrow_none::after {
  display: none;
}

.introduction ul li.link {
  position: relative;
}

.introduction ul li.link::before, .introduction ul li.link::after {
  display: none;
}

.introduction ul li.link::before {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: url(./../images/icon_elink_green.png) no-repeat center center;
  background-size: cover;
  border: none;
}

.introduction ul li.link a {
  position: relative;
}

.introduction ul li.under::before {
  top: 35px;
}

.introduction ul li > ul li {
  width: 100%;
  margin: 0 !important;
}

.introduction ul li > ul li a {
  width: 100% !important;
  padding: 15px !important;
  font-size: 0.875rem !important;
}

.introduction_02 ul {
  width: 100%;
  margin: 0 !important;
}

.introduction_02 ul li {
  position: relative;
  padding: 20px 0px !important;
  border-bottom: 1px solid #ccc;
}

.introduction_02 ul li::before {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 5px;
  height: 5px;
  border: 5px solid transparent;
  border-left: 5px solid #8CC14A;
}

.introduction_02 ul li::after {
  position: absolute;
  top: 50%;
  right: 3px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  width: 12px;
  height: 1px;
  border-left: 10px solid #8CC14A;
}

.introduction_02 ul li a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding-right: 20px;
  color: #111;
  text-decoration: none;
}

.introduction_02 ul li.link {
  position: relative;
}

.introduction_02 ul li.link::before, .introduction_02 ul li.link::after {
  display: none;
}

.introduction_02 ul li.link::before {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: url(./../images/icon_elink_green.png) no-repeat center center;
  background-size: cover;
  border: none;
}

.introduction_02 ul li.link a {
  position: relative;
}

.acd .acd-check {
  display: none;
}

.acd .acd-label {
  position: relative;
  display: block;
  cursor: pointer;
}

.acd .acd-label::after, .acd .acd-label::before {
  content: "";
  position: absolute;
  top: 0.75em;
  right: 1.25em;
  width: 2px;
  height: 0.75em;
  background: #008E66;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.acd .acd-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.acd .acd-con {
  height: 0;
  margin: 0;
  -webkit-transition: .5s;
  transition: .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 {
  -webkit-transform: rotate(90deg) !important;
          transform: rotate(90deg) !important;
}

.news_wrap {
  margin: 0 0 40px;
}

.news_wrap .news_list {
  max-height: 150px;
  overflow: auto;
}

.news_wrap .news_list .news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.news_wrap .news_list .news_item:last-of-type {
  border-bottom: none;
}

.news_wrap .news_list .news_item .news_item_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 25px;
}

.news_wrap .news_list .news_item .news_item_date time {
  color: #666;
  font-weight: 500;
}

.news_wrap .news_list .news_item .news_item_date .news_item_cate {
  width: 100px;
  margin-left: 20px;
  padding: 5px;
  color: #8CC14A;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #8CC14A;
}

.news_wrap .news_list .news_item .news_item_ttl {
  padding: 0 10px;
}

.news_wrap .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_wrap .news_list .news_item .news_item_ttl .news_item_icon_new:before {
  content: "NEW";
}

.news_wrap .news_ttl {
  position: relative;
  padding: 10px 10px 10px 20px;
  background: #8CC14A;
  color: #fff;
  border-left: 5px solid #008e66;
}

.parent_news {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 60px;
}

.parent_news .parent_news_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 330px;
  padding: 30px 0;
  border-right: 1px solid #ccc;
}

.parent_news .parent_news_title h2 {
  margin: 0;
  padding: 0;
  font-size: 1.75rem;
  font-weight: 500;
  border: none;
}

.parent_news .parent_news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 830px;
  padding: 20px 0 20px 90px;
}

.parent_news .parent_news_list .parent_news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.parent_news .parent_news_list .parent_news_item:last-of-type {
  border-bottom: none;
}

.parent_news .parent_news_list .parent_news_item .parent_news_item_date {
  width: 120px;
  color: #333;
  font-weight: 700;
}

.parent_news .parent_news_list .parent_news_item .parent_news_item_ttl {
  position: relative;
  width: calc(100% - 130px);
  padding-right: 30px;
}

.parent_news .parent_news_list .parent_news_item .parent_news_item_ttl::after {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 10px;
  background: url(./../images/icon_arrow_black_01.svg) no-repeat center center;
  background-size: contain;
}

.parent_news .parent_news_list .parent_news_item .parent_news_item_ttl .parent_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}

.parent_news .parent_news_list .parent_news_item .parent_news_item_ttl .parent_news_item_icon_new:before {
  content: "NEW";
}

.year_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin: 0 !important;
  padding: 0 0 40px;
  border-bottom: 1px solid #ccc;
}

.year_list > li {
  width: calc((100% - 20px * 7) / 8);
  margin: 0 !important;
  list-style: none !important;
}

.year_list > li > .year_list_item_ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 15px;
  background: #3E3A39;
  color: #fff;
  text-decoration: none;
  border: 1px solid #3E3A39;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.year_list > li > .year_list_item_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.year_list > li > .year_list_item_ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  height: 10px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.year_list > li > .year_list_item_ttl.open {
  background: #8CC14A;
  border: 1px solid #8CC14A;
}

.year_list > li > .year_list_item_ttl.open::after {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.year_list > li > ul {
  display: none;
  margin: 0 !important;
}

.year_list > li > ul li {
  margin: 0 !important;
  border: 1px solid #8CC14A;
  border-bottom: none;
}

.year_list > li > ul li:first-of-type {
  border-top: none;
}

.year_list > li > ul li:last-of-type {
  border-bottom: 1px solid #8CC14A;
}

.year_list > li > ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  color: #111;
  font-size: 0.875rem;
  text-decoration: none;
}

.weekly_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0 0;
}

.weekly_list .weekly_item {
  width: calc((100% - 30px * 2) / 3);
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 7px rgba(52, 52, 52, 0.1);
          box-shadow: 0 2px 7px rgba(52, 52, 52, 0.1);
  overflow: hidden;
}

.weekly_list .weekly_item a {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #333;
  font-size: 16px;
  text-decoration: none;
}

.weekly_list .weekly_item a .weekly_item_img img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.weekly_list .weekly_item a .weekly_item_ttl {
  padding: 10px 30px 20px;
}

.weekly_list .weekly_item a .weekly_item_ttl time {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  color: #666;
  font-size: 12px;
  font-weight: 700;
}

.weekly_list .weekly_item a .weekly_item_ttl time::before {
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 3px;
  background: #8CC14A;
}

.event_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0 0;
}

.event_list .event_item {
  width: calc((100% - 30px * 2) / 3);
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 7px rgba(52, 52, 52, 0.1);
          box-shadow: 0 2px 7px rgba(52, 52, 52, 0.1);
}

.event_list .event_item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  border-radius: 10px;
}

.event_list .event_item a .event_item_img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.event_list .event_item a .event_item_img img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.event_list .event_item a .event_item_date {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 1;
  padding: 5px 10px;
  background: #3E3A39;
  color: #fff;
  line-height: 1.2;
}

.event_list .event_item a .event_item_date span {
  display: block;
}

.event_list .event_item a .event_item_date span:first-of-type {
  font-size: 13px;
}

.event_list .event_item a .event_item_date span:last-of-type {
  font-size: 30px;
  font-weight: 700;
}

.event_list .event_item a .event_item_ttl {
  padding: 20px 30px 20px;
}

.yamame_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 50px;
}

.yamame_nav_list .yamame_nav_item {
  width: calc((100% - 10px * 2) / 3);
}

.yamame_nav_list .yamame_nav_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: #2a8756;
  color: #fff;
  text-decoration: none;
  border: 1px solid #2a8756;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.yamame_nav_list .yamame_nav_item a:hover, .yamame_nav_list .yamame_nav_item a.current {
  background: #fff;
  color: #2a8756;
}

.recruitment_list .recruitment_head {
  display: block;
  width: 100%;
}

.recruitment_list .recruitment_head tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.recruitment_list .recruitment_body {
  display: block;
  width: 100%;
}

.recruitment_list .recruitment_body tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.recruitment_list .recruitment_body tr td .recruitment_link_icon a::after {
  position: relative;
  top: 3px;
  display: inline-block;
  content: "";
  width: 14px;
  height: 14px;
  margin: 0 0 0 10px;
  background: url(./../images/icon_elink_green.png) no-repeat center center;
  background-size: cover;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
}

.recruitment_list.new .recruitment_body {
  max-height: 250px;
  overflow-y: auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** admission page
******************************************************************************
----------------------------------------------------------------------------*/
.exam_news {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
  border: 1px solid #ccc;
}

.exam_news .exam_news_title {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 240px;
  border-right: 1px solid #ccc;
}

.exam_news .exam_news_title h2 {
  position: absolute;
  top: 30px;
  left: 30px;
  margin: 0;
  padding: 0;
  font-size: 1.75rem;
  font-weight: 500;
  border: none;
}

.exam_news .exam_news_list {
  width: 100%;
  max-width: 925px;
  padding: 20px 40px;
}

.exam_news .exam_news_list .exam_news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.exam_news .exam_news_list .exam_news_item:last-of-type {
  border-bottom: none;
}

.exam_news .exam_news_list .exam_news_item .exam_news_item_date {
  width: 120px;
  color: #333;
  font-weight: 700;
}

.exam_news .exam_news_list .exam_news_item .exam_news_item_ttl {
  position: relative;
  width: calc(100% - 130px);
  padding-right: 30px;
}

.exam_news .exam_news_list .exam_news_item .exam_news_item_ttl::after {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 10px;
  background: url(./../images/icon_arrow_black_01.svg) no-repeat center center;
  background-size: contain;
}

.exam_news .exam_news_list .exam_news_item .exam_news_item_ttl .exam_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}

.exam_news .exam_news_list .exam_news_item .exam_news_item_ttl .exam_news_item_icon_new:before {
  content: "NEW";
}

.exam_news .more {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.exam_news .more a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
}

.exam_news .more a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  background: url(./../images/icon_archive.svg) no-repeat center center;
  background-size: contain;
  image-rendering: -webkit-optimize-contrast;
}

.exam_bnr_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 60px 0 100px;
  background: #f2f2f2;
}

.exam_bnr_wrap .exam_bnr .exam_bnr_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 25px;
}

.exam_bnr_wrap .exam_bnr .exam_bnr_top > * {
  width: calc((100% - 25px) / 2);
}

.exam_bnr_wrap .exam_bnr .exam_bnr_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
}

.exam_bnr_wrap .exam_bnr .exam_bnr_bottom .exam_bnr_bottom_item {
  width: calc((100% - 25px * 3) / 4);
}

.exam_bnr_wrap .exam_bnr .exam_bnr_bottom .exam_bnr_bottom_item a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
}

.exam_bnr_wrap .exam_bnr .exam_bnr_bottom .exam_bnr_bottom_item a p {
  margin: 0;
  padding: 10px;
  background: #3e3a39;
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.exam_info_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 130px 0 100px;
  background: url(./../images/exam_info_bg.jpg) no-repeat center top fixed;
}

.exam_info_wrap .exam_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.exam_info_wrap .exam_info .exam_info_item {
  width: calc((100% - 100px - 1px) / 2);
  margin: 0 50px 30px 0;
}

.exam_info_wrap .exam_info .exam_info_item:last-of-type {
  margin-right: 0;
}

.exam_info_wrap .exam_info .exam_info_item.acd .acd-check {
  display: none;
}

.exam_info_wrap .exam_info .exam_info_item.acd .acd-label {
  position: relative;
  display: block;
  cursor: pointer;
}

.exam_info_wrap .exam_info .exam_info_item.acd .acd-label::after, .exam_info_wrap .exam_info .exam_info_item.acd .acd-label::before {
  content: "";
  position: absolute;
  top: 1.8em;
  right: 1.25em;
  width: 2px;
  height: 0.75em;
  background: #008E66;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.exam_info_wrap .exam_info .exam_info_item.acd .acd-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.exam_info_wrap .exam_info .exam_info_item.acd .acd-label h2 {
  margin: 0 !important;
  padding: 15px 20px !important;
  background: #fff;
  border: none;
}

.exam_info_wrap .exam_info .exam_info_item.acd .acd-con {
  height: 0;
  margin: 0;
  -webkit-transition: .5s;
  transition: .5s;
  visibility: hidden;
  opacity: 0;
}

.exam_info_wrap .exam_info .exam_info_item.acd .acd-check:checked + .acd-label + .acd-con {
  height: auto;
  padding: 30px 20px !important;
  background: #8CC14A;
  opacity: 1;
  visibility: visible;
}

.exam_info_wrap .exam_info .exam_info_item.acd .acd-check:checked + .acd-label::before {
  -webkit-transform: rotate(90deg) !important;
          transform: rotate(90deg) !important;
}

.exam_info_wrap .exam_info .exam_info_item.acd .exam_info_con .exam_info_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}

.exam_info_wrap .exam_info .exam_info_item.acd .exam_info_con .exam_info_link li {
  margin: 0;
  list-style: none;
}

.exam_info_wrap .exam_info .exam_info_item.acd .exam_info_con .exam_info_link li a {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #333;
  font-size: 1.125rem;
  text-decoration: none;
}

.exam_info_wrap .exam_info .exam_info_item.acd .exam_info_con .exam_info_link li a::before, .exam_info_wrap .exam_info .exam_info_item.acd .exam_info_con .exam_info_link li a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.exam_info_wrap .exam_info .exam_info_item.acd .exam_info_con .exam_info_link li a::before {
  left: 3px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.exam_faculty {
  padding: 120px 0 70px;
}

.exam_faculty h2 {
  display: block;
  margin: 0 0 40px !important;
  padding: 0 !important;
  font-size: 2rem !important;
  text-align: center;
  border: none !important;
}

.exam_faculty h2::before {
  content: attr(data-text);
  display: block;
  color: #8CC14A;
  font-size: 0.875rem;
  font-weight: 300;
}

.exam_faculty .exam_faculty_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 35px;
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item {
  width: calc((100% - 35px * 2) / 3);
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item a {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 100%;
  min-height: 230px;
  color: #fff;
  text-decoration: none;
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgba(255, 255, 255, 0)), color-stop(90%, black));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 30%, black 90%);
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item a .exam_faculty_list_title {
  position: relative;
  z-index: 1;
  padding: 35px 10px;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.humanities a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(./../images/exam_faculty_01.jpg) no-repeat center center;
  background-size: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.humanities a:hover::after {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.education a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(./../images/exam_faculty_02.jpg) no-repeat center center;
  background-size: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.education a:hover::after {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.economics a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(./../images/exam_faculty_01.jpg) no-repeat center center;
  background-size: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.economics a:hover::after {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.science a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(./../images/exam_faculty_04.jpg) no-repeat center center;
  background-size: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.science a:hover::after {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.medicine a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(./../images/exam_faculty_05.jpg) no-repeat center center;
  background-size: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.medicine a:hover::after {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.engineering a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(./../images/exam_faculty_06.jpg) no-repeat center center;
  background-size: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.engineering a:hover::after {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.global a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(./../images/exam_faculty_07.jpg) no-repeat center center;
  background-size: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.global a:hover::after {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.veterinary a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(./../images/exam_faculty_08.jpg) no-repeat center center;
  background-size: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.veterinary a:hover::after {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.agriculture a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(./../images/exam_faculty_09.jpg) no-repeat center center;
  background-size: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.exam_faculty .exam_faculty_list .exam_faculty_list_item.agriculture a:hover::after {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}

.mcon a img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mcon h1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100vw;
  height: 500px;
  margin: 0 calc(50% - 50vw) 20px;
  background: url(./../images/slideshow/i_img.jpg) no-repeat center center;
  background-size: cover;
}

.mcon h1 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1160px;
  margin: 0 auto 40px;
  color: #fff;
  font-size: 2.857rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

.admission .mcon h1 {
  background: url(./../images/exam_main_img.jpg) no-repeat center center;
  background-size: cover;
}

.admission .mcon h1 .exam_main_title {
  position: relative;
  display: block;
  height: 500px;
}

.admission .mcon h1 .exam_main_title span {
  position: absolute;
  top: 50%;
  right: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 40px;
  background: rgba(255, 255, 255, 0.7);
  color: #333;
}

.admission .mcon h1 .exam_main_title span::before {
  position: absolute;
  top: -50px;
  left: 20px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  content: "";
  width: 1px;
  height: 150px;
  background: #666;
}

.admission .mcon h1 .exam_main_title span::after {
  position: absolute;
  right: 20px;
  bottom: -50px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  content: "";
  width: 1px;
  height: 150px;
  background: #666;
}

.mcon h1.title_bg_none {
  height: auto;
  max-height: 500px;
  background: #8CC14A;
}

.mcon h1.title_bg_none span {
  margin: 40px 0;
}

.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;
  -webkit-transform: translateY(-50%);
          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 {
  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 */