@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** 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: 70px;
}

body {
  min-height: 100vh;
  padding-top: 70px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 70px;
  background: #fff;
  -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.hd_bg .hd {
  padding: 10px 10px;
}

.hd_bg .hd .hd_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 15vw);
}

.hd_bg .hd .hd_logo img {
  width: 150px;
  height: auto;
}

.hd_bg .hd .hd_donation {
  display: none;
}

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

#search-wrap.panelactive {
  opacity: 1;
  /*不透明に変更*/
  z-index: 100;
  /*全面に出現*/
  /*中の要素を天地中央揃えにする設定*/
  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;
  height: 100vh;
  background: rgba(242, 242, 242, 0.8);
}

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

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

#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: 85% !important;
  padding: 20px 10px !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;
  top: 0;
  right: 0;
  width: 15%;
  height: 64px;
  background: url(./../images/icon_hd_01.png) #fff no-repeat center center;
  background-size: 20px 20px;
  border: none;
}

/*=======　開くためのボタン　========*/
#sp_search_btn {
  position: absolute;
  top: 20px;
  right: 80px;
}

#sp_search_btn::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(./../images/icon_hd_01.svg) no-repeat center center;
  background-size: cover;
}

/*=======　閉じるためのボタン　========*/
.close-btn {
  position: absolute;
  top: -60px;
  right: -15px;
  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 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border: none !important;
}

.gsib_a {
  padding: 0 !important;
}

.gsc-search-button-v2 {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 15% !important;
  height: 64px !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;
}

.gsc-results-wrapper-overlay {
  top: 50% !important;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
  height: 75% !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: 70px;
  right: -100%;
  overflow-x: none;
  overflow-y: auto;
  z-index: 100;
  width: 100%;
  height: 100vh;
  padding-bottom: 70px;
  background: #f2f2f2;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
}

.nav > * {
  width: 100%;
}

.nav .nav_list, .nav .hd_nav_list {
  background: #3e3a39;
}

.nav .nav_list > li > a, .nav .hd_nav_list > li > a {
  position: relative;
  display: block;
  padding: 1em 1em 1em 1.5em;
  color: #fff;
  font-size: 0.875rem;
  text-decoration: none;
}

.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current, .nav .hd_nav_list > li > a:hover, .nav .hd_nav_list > li > a.current {
  background: rgba(0, 0, 0, 0.2);
}

.nav .nav_list > li > a::before, .nav .nav_list > li > a::after, .nav .hd_nav_list > li > a::before, .nav .hd_nav_list > li > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  height: 0.75em;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav .nav_list > li > a::after, .nav .hd_nav_list > li > a::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.nav .nav_list > li > a.close::before, .nav .hd_nav_list > li > a.close::before {
  -webkit-transform: translateY(-50%) rotate(90deg) !important;
          transform: translateY(-50%) rotate(90deg) !important;
}

.nav .nav_list > li.pointer a::before, .nav .nav_list > li.pointer a::after, .nav .hd_nav_list > li.pointer a::before, .nav .hd_nav_list > li.pointer a::after {
  display: none;
}

.nav .nav_list > li > .sub-menu, .nav .hd_nav_list > li > .sub-menu {
  display: none;
}

.nav .nav_list > li > .sub-menu > li, .nav .hd_nav_list > li > .sub-menu > li {
  position: relative;
}

.nav .nav_list > li > .sub-menu > li > a, .nav .hd_nav_list > li > .sub-menu > li > a {
  background: #008E66;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 13px;
  padding: .8em 1em .8em 2.5em;
  text-decoration: none;
}

.nav .nav_list > li > .sub-menu > li > a:hover, .nav .nav_list > li > .sub-menu > li > a.current, .nav .hd_nav_list > li > .sub-menu > li > a:hover, .nav .hd_nav_list > li > .sub-menu > li > a.current {
  background: rgba(0, 142, 102, 0.8);
}

.nav .nav_list > li > .sub-menu > li.sub-toggle > a, .nav .hd_nav_list > li > .sub-menu > li.sub-toggle > a {
  position: relative;
}

.nav .nav_list > li > .sub-menu > li.sub-toggle > a::before, .nav .nav_list > li > .sub-menu > li.sub-toggle > a::after, .nav .hd_nav_list > li > .sub-menu > li.sub-toggle > a::before, .nav .hd_nav_list > li > .sub-menu > li.sub-toggle > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  height: 0.75em;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav .nav_list > li > .sub-menu > li.sub-toggle > a::after, .nav .hd_nav_list > li > .sub-menu > li.sub-toggle > a::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.nav .nav_list > li > .sub-menu > li.sub-toggle > a.close::before, .nav .hd_nav_list > li > .sub-menu > li.sub-toggle > a.close::before {
  -webkit-transform: translateY(-50%) rotate(90deg) !important;
          transform: translateY(-50%) rotate(90deg) !important;
}

.nav .nav_list > li > .sub-menu > li > .sub-menu, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu {
  display: none;
}

.nav .nav_list > li > .sub-menu > li > .sub-menu > li > a, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li > a {
  background: #006649;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 1em 1em 1em 3.5em;
  text-decoration: none;
}

.nav .nav_list > li > .sub-menu > li > .sub-menu > li > a:hover, .nav .nav_list > li > .sub-menu > li > .sub-menu > li > a.current, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li > a:hover, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li > a.current {
  background: rgba(0, 142, 102, 0.8);
}

.nav .nav_list > li > .sub-menu > li > .sub-menu > li.sub-toggle > a, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li.sub-toggle > a {
  position: relative;
}

.nav .nav_list > li > .sub-menu > li > .sub-menu > li.sub-toggle > a::before, .nav .nav_list > li > .sub-menu > li > .sub-menu > li.sub-toggle > a::after, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li.sub-toggle > a::before, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li.sub-toggle > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  height: 0.75em;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav .nav_list > li > .sub-menu > li > .sub-menu > li.sub-toggle > a::after, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li.sub-toggle > a::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.nav .nav_list > li > .sub-menu > li > .sub-menu > li.sub-toggle > a.close::before, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li.sub-toggle > a.close::before {
  -webkit-transform: translateY(-50%) rotate(90deg) !important;
          transform: translateY(-50%) rotate(90deg) !important;
}

.nav .nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu {
  display: none;
}

.nav .nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a {
  background: #004d37;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 1em 1em 1em 5.5em;
  text-decoration: none;
}

.nav .nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a:hover, .nav .nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a.current, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a:hover, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li > a.current {
  background: rgba(0, 142, 102, 0.8);
}

.nav .nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li.sub-toggle > a, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li.sub-toggle > a {
  position: relative;
}

.nav .nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li.sub-toggle > a::before, .nav .nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li.sub-toggle > a::after, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li.sub-toggle > a::before, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li.sub-toggle > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  height: 0.75em;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav .nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li.sub-toggle > a::after, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li.sub-toggle > a::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.nav .nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li.sub-toggle > a.close::before, .nav .hd_nav_list > li > .sub-menu > li > .sub-menu > li > .sub-menu > li.sub-toggle > a.close::before {
  -webkit-transform: translateY(-50%) rotate(90deg) !important;
          transform: translateY(-50%) rotate(90deg) !important;
}

.nav .hd_lang_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  padding: 15px 10px;
  background: #fff;
  border-top: 1px solid #fff;
}

.nav .hd_lang_list li {
  width: calc((100% - 10px * 2) / 3);
}

.nav .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: 10px;
  text-decoration: none;
}

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

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

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

.nav .hd_donation {
  width: 100%;
}

.nav .hd_donation a {
  display: block;
  width: 100%;
  padding: 5px;
  background: #8CC14A;
  text-align: center;
}

.nav .hd_donation a img {
  width: 180px;
  height: 40px;
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 25px;
  right: 15px;
  margin-top: -5px;
  width: 36px;
  height: 24px;
}

.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #3e3a39;
  border-radius: 4px;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sp_nav_trigger span:nth-of-type(1) {
  top: 0;
}

.sp_nav_trigger span:nth-of-type(2) {
  top: 10px;
}

.sp_nav_trigger span:nth-of-type(3) {
  bottom: 0;
}

.sp_nav_trigger::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  content: 'MENU';
  display: block;
  width: 100%;
  padding-top: 20px;
  color: #3e3a39;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.sp_nav_trigger.sp_active::after {
  content: 'CLOSE';
  bottom: -25px;
  color: #3e3a39;
}

.sp_nav_trigger.sp_active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
  color: #3e3a39;
}

.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
  color: #3e3a39;
}

.sp_nav_trigger.sp_active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
  color: #3e3a39;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding: 20px 10px 30px;
}

.con .main {
  margin-bottom: 30px;
}

.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 .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 .main .btn_pdf span:hover {
  opacity: 0.8;
}

.con .main .btn_pdf:after {
  content: url(./../images/icon_pdf.png);
  display: block;
  width: 14px;
  height: 17px;
}

.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 .main a[href$=".pdf"].no_icon::after {
  display: none;
}

.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 .main a[href$=".zip"].no_icon::after {
  display: none;
}

.con .main a[href$=".doc"]::after,
.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 .main a[href$=".doc"].no_icon::after,
.con .main a[href$=".docx"].no_icon::after {
  display: none;
}

.con .main a[href$=".xlsx"]::after,
.con .main a[href$=".xls"]::after,
.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 .main a[href$=".xlsx"].no_icon::after,
.con .main a[href$=".xls"].no_icon::after,
.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-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ft_bg .ft .ft_con_top .ft_nav_top {
  width: 100%;
}

.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.ft_nav_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: 10px;
  margin: 10px 4% 20px;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.ft_nav_list li {
  width: calc((100% - 10px) / 2);
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.ft_nav_list 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: 8px;
  color: #8CC14A;
  font-size: 0.812rem;
  border: 1px solid #8CC14A;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.link {
  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;
  border-top: 1px solid #ccc;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.link li {
  width: calc(100% / 4);
  border-right: 1px solid #ccc;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.link li:last-of-type {
  border: none;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.link 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;
  width: 100%;
  padding: 20px 10px;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.link li a span {
  display: none;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.link li a img {
  display: none;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.link li.fb a::before {
  content: "";
  display: block;
  width: 12px;
  height: 25px;
  background: url(./../images/icon_fb_sp.svg) no-repeat center center;
  background-size: contain;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.link li.youtube a::before {
  content: "";
  display: block;
  width: 30px;
  height: 28px;
  background: url(./../images/icon_youtube_sp.svg) no-repeat center center;
  background-size: contain;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.link li.line a::before {
  content: "";
  display: block;
  width: 27px;
  height: 26px;
  background: url(./../images/icon_line_sp.svg) no-repeat center center;
  background-size: contain;
}

.ft_bg .ft .ft_con_top .ft_nav_top ul.link li.twitter a::before {
  content: "";
  display: block;
  width: 30px;
  height: 28px;
  background: url(./../images/icon_twitter_sp.svg) no-repeat center center;
  background-size: contain;
}

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

.ft_bg .ft .ft_con_btm > * {
  padding: 20px 0;
}

.ft_bg .ft .ft_con_btm > * .ft_nav_btm {
  display: none;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 10px;
  bottom: 10px;
  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;
  width: 60px;
  height: 60px;
  background: #8CC14A;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
}

.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
}

.pt_btn::before, .pt_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: #fff;
  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;
}

@media all and (max-width: 769px) {
  .index_slider_bg .index_slider img {
    width: 100%;
    height: 40vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media all and (max-width: 599px) {
  .index_slider_bg .index_slider img {
    width: 100%;
    height: 90vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.index_slider_bg .index_slider .index_slider_title {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.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%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.index_slider_bg .index_slider .index_slider_title .index_slider_title_item span:first-of-type {
  font-size: 46px;
  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 {
  margin-top: 5px;
  color: #fff;
  font-size: 14px;
}

.index_main .index_important {
  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;
}

.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: 100%;
  border-right: 1px solid #ccc;
}

.index_main .index_important .index_important_title 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: 26px;
  font-weight: 500;
}

.index_main .index_important .index_important_list {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  padding: 0 0 20px;
}

.index_main .index_important .index_important_list .index_important_item {
  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 {
  color: #333;
  font-weight: 700;
}

.index_main .index_important .index_important_list .index_important_item .index_important_item_ttl {
  position: relative;
  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_important .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 90px;
}

.index_main .index_important .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_important .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_bnr_top {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 40px 10px;
  background: #f2f2f2;
}

.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 20px 90px;
  background: #f2f2f2;
  border-bottom: 1px solid #ccc;
}

.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: 26px;
  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: 20px 10px 0;
}

.index_main .index_weekly .index_weekly_wrap .index_weekly_list .index_weekly_item {
  width: 100%;
  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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px auto 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 {
  padding: 40px 0 90px;
  border-bottom: 1px solid #ccc;
}

.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: 26px;
  font-weight: 500;
}

.index_main .index_news .index_news_wrap .index_news_con {
  margin: 30px 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: 10px;
}

.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: 10px 0;
  background: #F0F0EE;
  color: #3E3A39;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  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: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0 7px;
  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 {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px 10px;
}

.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: 500;
  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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.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 {
  position: relative;
  width: 100%;
  margin: 40px auto 0;
}

.index_main .index_news .index_news_wrap .btn_fb::before {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background: url(./../images/icon_facebook.svg) no-repeat center center;
  background-size: contain;
}

.index_main .index_news .index_news_wrap .btn_fb a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 10px 10px 70px;
  background: #1778f2;
  color: #FFF;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.index_main .index_news .index_news_wrap .btn_fb a span {
  display: block;
  font-size: 26px;
  letter-spacing: 0.08em;
}

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

.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: 26px;
  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: 20px;
}

.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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}

.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: 100px 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: -140px;
  left: 50%;
  width: 100px;
  height: 100px;
  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: 33px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.08em;
  color: #fff;
  font-size: 20px;
  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: 10px;
  margin: 0 auto 50px;
  padding: 0 10px;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_list .index_faculty_link {
  width: calc((100% - 10px) / 2);
}

.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: 15px 10px;
  background: #f0efec;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_movie {
  padding: 30px 10px 20px;
  background: #000;
}

.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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  font-size: 20px;
  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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}

.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 h4 a span {
  display: inline-block;
  padding: 10px 20px;
  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 p {
  text-align: center;
  line-height: 1.8;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_movie .index_faculty_movie_wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.index_main .index_faculty .index_faculty_wrap .index_faculty_movie .index_faculty_movie_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.index_main .index_examination {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 50px 20px;
  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: 26px;
  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) / 2);
}

.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: 15px 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 {
  width: 100%;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link:first-of-type a {
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 15px 30px;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link:first-of-type a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(./../images/icon_elink_black.png) no-repeat center center;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link:first-of-type a span {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.index_main .index_examination .index_examination_wrap .index_examination_list .index_examination_link:first-of-type a span::before {
  content: "";
  display: block;
  width: 42px;
  height: 37px;
  margin-right: 20px;
  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: 34px;
  height: 35px;
  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: 34px;
  height: 34px;
  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: 42px;
  height: 36px;
  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: 30px;
  height: 27px;
  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 .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;
}

@media screen and (min-width: 600px) {
  .index_main .index_bnr_top .index_bnr_top_list img {
    width: calc(100% - 20px) !important;
  }
  .index_main .index_weekly .index_weekly_wrap .index_weekly_list {
    gap: 20px;
  }
  .index_main .index_weekly .index_weekly_wrap .index_weekly_list .index_weekly_item {
    width: calc((100% - 20px * 2) / 3);
  }
  .index_main .index_weekly .index_weekly_wrap .index_weekly_list .index_weekly_item a .index_weekly_item_img img {
    width: 100%;
    height: 130px;
    -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_img img {
    width: 100%;
    height: 130px;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .index_main .index_bnr_btm {
    padding: 90px 0 40px;
  }
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3em;
  margin: 0 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 {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px 10px;
}

.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: 500;
  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: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}

.news_list .news_item .news_item_ttl .news_item_icon_new:before {
  content: "NEW";
}

.introduction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.introduction figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 70%;
  height: auto;
  margin: 0 auto 20px;
}

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

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

.introduction ul li {
  position: relative;
  width: 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 30px 20px 0;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

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

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

.introduction ul li.link a::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;
}

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

.introduction_02 ul li {
  position: relative;
  width: 100%;
  margin: 0 30px 0 0 !important;
  padding: 20px 0 !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: 35px;
  color: #111;
  text-decoration: none;
}

.introduction_02 ul li.arrow_none::before, .introduction_02 ul li.arrow_none::after {
  display: 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 a {
  position: relative;
}

.introduction_02 ul li.link a::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;
}

.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.6em;
  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 {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
}

.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 {
  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;
  margin: 0 0 40px;
}

.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: 100%;
  border-right: 1px solid #ccc;
}

.parent_news .parent_news_title 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;
  margin: 0 0 10px;
  padding: 0;
  color: #333;
  font-size: 26px;
  font-weight: 500;
  border: none;
}

.parent_news .parent_news_list {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  padding: 0 0 20px;
}

.parent_news .parent_news_list .parent_news_item {
  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 {
  color: #333;
  font-weight: 700;
}

.parent_news .parent_news_list .parent_news_item .parent_news_item_ttl {
  position: relative;
  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";
}

section.weekly_section,
section.event_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.year_list {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  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;
  margin: 40px 0 0 !important;
}

.year_list > .year_list_item {
  width: 100%;
  margin: 0 !important;
  list-style: none !important;
}

.year_list > .year_list_item > .year_list_item_ttl {
  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;
  padding: 8px 5px;
  background: #3E3A39;
  color: #fff;
  text-decoration: none;
  border: 1px solid #3E3A39;
  border-bottom: 1px solid #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.year_list > .year_list_item > .year_list_item_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  -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 > .year_list_item > .year_list_item_ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  -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 > .year_list_item > .year_list_item_ttl.open {
  background: #8CC14A;
  border: 1px solid #8CC14A;
}

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

.year_list > .year_list_item > ul {
  display: none;
}

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

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

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

.year_list > .year_list_item > 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;
}

.weekly_list .weekly_item {
  width: 100%;
  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: 40px;
  padding: 0 10px;
}

.event_list .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);
}

.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: 10;
  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);
}

.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: 15px 10px;
  background: #2a8756;
  color: #fff;
  font-size: 0.785rem;
  text-decoration: none;
  line-height: 1.3;
  letter-spacing: -0.05em;
  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;
}

/*----------------------------------------------------------------------------
******************************************************************************
** admission page
******************************************************************************
----------------------------------------------------------------------------*/
.exam_news {
  position: relative;
  margin-bottom: 60px;
}

.exam_news .exam_news_title {
  position: relative;
}

.exam_news .exam_news_title h2 {
  margin: 0;
  padding: 0 10px;
  font-size: 1.5rem;
  font-weight: 500;
  border: none;
}

.exam_news .exam_news_list {
  width: 100%;
  padding: 20px 10px;
}

.exam_news .exam_news_list .exam_news_item {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.exam_news .exam_news_list .exam_news_item .exam_news_item_date {
  color: #8CC14A;
}

.exam_news .exam_news_list .exam_news_item .exam_news_item_ttl {
  position: relative;
  width: 100%;
  padding-right: 20px;
}

.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;
  top: 5px;
  right: 10px;
}

.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: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.exam_news .more a::before {
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  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: 0 20px 50px;
}

.exam_bnr_wrap .exam_bnr .exam_bnr_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

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

.exam_bnr_wrap .exam_bnr .exam_bnr_bottom .exam_bnr_bottom_item {
  width: calc((100% - 20px) / 2);
}

.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: 0.75rem;
}

.exam_info_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 40px 20px;
}

.exam_info_wrap h2.exam_info_ttl {
  display: block;
  margin: 0 0 50px !important;
  padding: 0 !important;
  font-size: 1.625rem !important;
  font-weight: 500;
  text-align: center;
  border: none !important;
}

.exam_info_wrap .exam_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.exam_info_wrap .exam_info .exam_info_item {
  width: 100%;
}

.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.0em;
  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: 5px 15px !important;
  background: #fff;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
  border-left: 5px solid #8CC14A;
}

.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: 20px 10px 0 !important;
  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 #8CC14A;
  border-right: 2px solid #8CC14A;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.exam_faculty {
  margin-bottom: -60px;
  padding: 50px 0 0;
}

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

.exam_faculty .exam_faculty_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 20px 20px 100px;
  background: url(./../images/sp_exam_faculty_bg.png) #f2f2f2 no-repeat right bottom;
  background-size: contain;
}

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

.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: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  color: #333;
  background: #fff;
  text-decoration: none;
  border: 1px solid #333;
}

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

.recruitment_list {
  width: 100%;
  border-top: none;
}

.recruitment_list .recruitment_head {
  display: none;
}

.recruitment_list .recruitment_body {
  display: block;
  overflow-y: auto;
  max-height: 40vh;
}

.recruitment_list .recruitment_body tr {
  display: block;
  width: auto;
}

.recruitment_list .recruitment_body td {
  display: block;
  width: auto;
}

.recruitment_list .recruitment_body td::before {
  content: attr(aria-label);
  display: block;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}

.recruitment_list .recruitment_body 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;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  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: 20vh;
  margin: -20px 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: 100%;
  margin: 0 10px 20px;
  color: #fff;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.admission .mcon h1 {
  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: 50vh;
  margin: -20px calc(50% - 50vw) 20px;
  position: relative;
  background: url(./../images/exam_main_img.jpg) no-repeat 35% center;
  background-size: cover;
}

.admission .mcon h1 .exam_main_title span {
  position: absolute;
  top: 50%;
  right: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: #333;
}

.mcon h1.title_bg_none {
  height: auto;
  background: #8CC14A;
}

.mcon h1.title_bg_none span {
  width: 90%;
  margin: 20px auto;
}

.mcon h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 15px;
  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.25rem;
  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 {
  margin-bottom: 2px;
  margin-top: 5px;
}

.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}

.mcon iframe {
  max-width: 100%;
}

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

.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}

.mcon p {
  margin-bottom: 1em;
}

.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}

.mcon .alignright {
  display: block;
  margin: 0 0 0 auto !important;
}

.mcon .alignleft {
  display: block;
  margin: 0 auto 0 0 !important;
}

.mcon .aligncenter {
  display: block;
  margin: 0 auto !important;
}

.mcon .table_scroll {
  width: 100%;
  table-layout: inherit;
  white-space: inherit;
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
  white-space: nowrap;
  display: block;
}
/*# sourceMappingURL=sp.css.map */