@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 20px;
}

.hd_bg .hd .hd_logo {
  width: calc(100% - 25vw);
}

.hd_bg .hd .hd_logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
}

.hd_bg .hd .hd_logo a img {
  width: 90px;
  height: auto;
  margin-bottom: 5px;
}

.hd_bg .hd .hd_logo a span {
  display: inline-block;
  padding: 2px 4px;
  background: #2a8756;
  color: #fff;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 0.75rem;
}

.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%;
  padding: 20px 10px;
  border: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  letter-spacing: 0.05em;
}

#search-wrap input[type="text"]:focus {
  background: #fff;
}

#search-wrap input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  width: 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%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: 70px;
  right: -100%;
  overflow-x: none;
  overflow-y: auto;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  width: 100%;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  background: #f2f2f2;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
}

.nav > * {
  width: calc(100% / 2);
}

.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 .sub-menu > li > a, .nav .hd_nav_list > li .sub-menu > li > a {
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 13px;
  padding: .8em 1em .8em 2em;
  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: #000;
  -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.nav .nav_list > li .sub-menu > li .sub-menu > li > a, .nav .hd_nav_list > li .sub-menu > li .sub-menu > li > a {
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 1em 1em 1em 3em;
  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: #000;
  -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.nav .hd_lang_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  background: #fff;
  border-top: 1px solid #fff;
}

.nav .hd_lang_list li {
  width: calc(100% / 4);
}

.nav .hd_lang_list li:nth-last-child(-n+2) {
  width: calc(100% /2);
  border-top: 1px solid #ccc;
}

.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%;
  padding: 15px 10px;
  color: #333;
  font-size: 10px;
  text-decoration: none;
}

.nav .hd_lang_list li.sitemap a::before {
  content: "";
  display: block;
  width: 28px;
  height: 21px;
  margin-bottom: 5px;
  background: url(./../images/icon_hd_06.svg) no-repeat center center;
  background-size: cover;
}

.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_lang_list li.lang_ja a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #3e3a39;
  color: #fff;
}

.nav .hd_lang_list li.lang_ja a span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav .hd_lang_list li.lang_ja a span::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  background: url(./../images/icon_hd_lang.svg) no-repeat center center;
  background-size: contain;
}

.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;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  border-top: 1px solid #ccc;
}

.ft_bg .ft {
  padding: 60px 20px 0;
}

.ft_bg .ft .ft_address {
  margin-bottom: 30px;
}

.ft_bg .ft .ft_address .ft_logo {
  width: 100%;
  margin-bottom: 20px;
}

.ft_bg .ft .ft_address .ft_logo img {
  width: 100%;
  height: 100%;
}

.ft_bg .ft .ft_address address {
  font-size: 0.875rem;
  line-height: 1.8;
}

.ft_bg .ft .ft_nav {
  display: -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;
  gap: 80px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 20px;
  background: #f4f4f4;
}

.ft_bg .ft .ft_nav 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_nav ul li a {
  color: #111;
  font-size: 0.875rem;
  text-decoration: none;
}

.ft_bg .ft .ft_nav ul li a:hover {
  text-decoration: underline;
}

.ft_bg .ft .ft_link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 20px 0;
  color: #2a8856;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
}

.ft_bg .ft .ft_link a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ft_bg .ft .ft_link a span::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 5px;
  background: url(./../images/icon_elink_green.svg) no-repeat center center;
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  .ft_bg .ft .ft_link {
    display: none;
  }
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  .ft_bg .ft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 60px 10px;
  }
  .ft_bg .ft .ft_address .ft_logo {
    width: 80%;
    margin-bottom: 20px;
  }
  .ft_bg .ft .ft_address .ft_logo img {
    width: 100%;
    height: 100%;
  }
  .ft_bg .ft .ft_address address {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .ft_bg .ft .ft_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px;
    padding: 0;
    background: none;
  }
  .ft_bg .ft .ft_nav 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_nav ul li a {
    color: #111;
    font-size: 0.875rem;
    text-decoration: none;
  }
  .ft_bg .ft .ft_nav ul li a:hover {
    text-decoration: underline;
  }
  .ft_bg .ft .ft_link {
    display: none;
  }
}

.ft_bg .ft_copy {
  padding: 18px 0;
  background: #2a8856;
  color: #fff;
  font-size: 10px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 0;
  bottom: 0;
  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: 52px;
  height: 52px;
  background: #3e3a39;
  color: #fff;
  font-size: 0.687rem;
}

.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 15px;
  height: 15px;
  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: 10px;
}

.pt_btn::before {
  width: 3px;
  bottom: 0;
}

.pt_btn::after {
  height: 3px;
  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::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.69)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.69) 100%, rgba(0, 0, 0, 0.8) 100%);
}

.index_slider_bg .index_slider img {
  width: 100%;
  height: 270px !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.index_main .index_nav_wrap {
  display: none;
}

.index_main .index_important {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 20px;
  border-bottom: 1px solid #ccc;
}

.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%;
}

.index_main .index_important .index_important_title h2 {
  color: #c30d23;
  font-weight: 500;
}

.index_main .index_important .index_important_list .index_important_item {
  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;
  width: 100%;
  padding: 15px 0;
  font-size: 0.812rem;
  border-bottom: none;
}

.index_main .index_important .index_important_list .index_important_item .index_important_item_date {
  color: #c30d23;
  font-weight: 700;
}

.index_main .index_important .index_important_list .index_important_item .index_important_item_ttl {
  position: relative;
  padding-left: 15px;
  color: #c30d23;
}

.index_main .index_important .index_important_list .index_important_item .index_important_item_ttl a {
  color: #c30d23;
  text-decoration: none;
}

.index_main .index_important .index_important_list .index_important_item .index_important_item_ttl a:hover {
  text-decoration: underline;
}

.index_main .index_news {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 40px 0 90px;
}

.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-family: 'Noto Serif JP', serif;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.index_main .index_news .index_news_wrap .index_news_con {
  margin: 30px 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: 40px;
  padding: 0 15px;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_tab > div {
  width: calc((100% - 5px * 3) / 4);
}

.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: 0.687rem;
  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 15px;
  border-bottom: 1px solid #ccc;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_item:first-of-type {
  border-top: 1px solid #ccc;
}

.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;
  margin-bottom: 10px;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_item .index_news_item_date time {
  color: #666;
  font-size: 0.812rem;
  font-weight: 500;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_item .index_news_item_date .index_news_item_cate {
  min-width: 95px;
  margin-left: 20px;
  padding: 3px 5px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  border-radius: 20px;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_item .index_news_item_date .index_news_item_cate.news {
  color: #3aad6e;
  border: 1px solid #3aad6e;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_item .index_news_item_date .index_news_item_cate.event {
  color: #00a0e9;
  border: 1px solid #00a0e9;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_item .index_news_item_date .index_news_item_cate.topics {
  color: #8CC14A;
  border: 1px solid #8CC14A;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_item .index_news_item_date .index_news_item_cate.important {
  color: #c30d23;
  border: 1px solid #c30d23;
}

.index_main .index_news .index_news_wrap .index_news_con .index_news_item .index_news_item_ttl {
  font-size: 0.812rem;
}

.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.812rem;
  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 {
  width: 50%;
  margin: 0 auto;
}

.index_main .index_news .index_news_wrap .more 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: 15px 10px;
  background: #2b8756;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.index_main .index_pickup_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 80px 20px 60px;
  background: #f4f4f4;
}

.index_main .index_pickup_wrap .index_pickup {
  position: relative;
}

.index_main .index_pickup_wrap .index_pickup 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-family: 'Noto Serif JP', serif;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.index_main .index_pickup_wrap .index_pickup .index_pickup_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin: 50px 0 0;
}

.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item {
  width: 100%;
}

.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid #ccc;
}

.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_img {
  position: relative;
  overflow: hidden;
}

.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_img img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_img::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(0, 142, 102, 0.2)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(0, 142, 102, 0.2) 100%);
}

.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_img::after {
  position: absolute;
  top: 3%;
  left: 1%;
  z-index: 1;
  content: "";
  width: 97.5%;
  height: 93%;
  border: 1px solid #ccc;
}

.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_ttl {
  padding: 20px 20px;
}

.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_ttl h3 {
  color: #2a8756;
  font-size: 0.875rem;
  font-weight: 500;
}

.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_ttl p {
  font-size: 0.812rem;
}

.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a:hover .index_pickup_item_img {
  position: relative;
}

.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a:hover .index_pickup_item_img img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  .index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item {
    width: calc((100% - 20px) / 2);
  }
}

.index_main .index_course {
  padding: 80px 0 60px;
}

.index_main .index_course 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-family: 'Noto Serif JP', serif;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.index_main .index_course .index_course_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  width: 90%;
  margin: 40px auto 0;
}

.index_main .index_course .index_course_list .index_course_item {
  width: 100%;
}

.index_main .index_course .index_course_list .index_course_item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 10px;
  background: #f4f4f4;
  color: #00913a;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_course .index_course_list .index_course_item a::before, .index_main .index_course .index_course_list .index_course_item a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  content: "";
  vertical-align: middle;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_course .index_course_list .index_course_item a::before {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #00913a;
}

.index_main .index_course .index_course_list .index_course_item a::after {
  right: 16px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.index_main .index_course .index_course_list .index_course_item a:hover {
  background: #00913a;
  color: #fff;
}

.index_main .index_course .index_course_list .index_course_item a:hover::before {
  background: #fff;
}

.index_main .index_course .index_course_list .index_course_item a:hover::after {
  border-top: 2px solid #00913a;
  border-right: 2px solid #00913a;
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  .index_main .index_course .index_course_list .index_course_item {
    width: calc((100% - 20px) / 2);
  }
}

.index_main .index_other {
  padding: 60px 0;
}

.index_main .index_other 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-family: 'Noto Serif JP', serif;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.index_main .index_other .index_other_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin: 50px auto 0;
}

.index_main .index_other .index_other_list .index_other_item {
  width: 100%;
}

.index_main .index_other .index_other_list .index_other_item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 10px;
  text-decoration: none;
  border: 1px solid #ccc;
}

.index_main .index_other .index_other_list .index_other_item a .index_other_item_img {
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 120px;
  height: 120px;
  margin-right: 15px;
}

.index_main .index_other .index_other_list .index_other_item a .index_other_item_img img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.index_main .index_other .index_other_list .index_other_item a .index_other_item_ttl h3 {
  margin-bottom: 5px;
  color: #00913a;
  font-size: 1rem;
  font-weight: 500;
}

.index_main .index_other .index_other_list .index_other_item a .index_other_item_ttl p {
  color: #333;
  font-size: 1rem;
  text-align: justify;
}

.index_main .index_other .index_other_list .index_other_item a:hover .index_other_item_img img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  .index_main .index_other .index_other_list .index_other_item {
    width: calc((100% - 20px) / 2);
  }
}

.index_main .index_bnr {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 40px 10px;
  background: #f2f2f2;
}

.index_main .index_bnr .index_bnr_list .slick-dots {
  bottom: -60px !important;
}

.index_main .index_bnr .index_bnr_list .slick-dots li button::before {
  content: "" !important;
  width: 25px;
  height: 6px;
  background: #999;
}

.index_main .index_bnr .index_bnr_list .slick-dots li.slick-active button::before {
  content: "" !important;
  width: 25px;
  height: 6px;
  background: #8CC14A;
}

.index_main .index_link_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 60px 10px;
  background: #f4f4f4;
}

.index_main .index_link_wrap .index_link .index_link_list_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item {
  width: 100%;
}

.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item a {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 145px;
  color: #fff;
  text-decoration: none;
}

.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.6)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
}

.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item a:hover::after {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item a span {
  position: absolute;
  top: 50%;
  left: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.index_main .index_link_wrap .index_link .index_link_list_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.index_main .index_link_wrap .index_link .index_link_list_02 .index_link_item {
  width: 100%;
}

.index_main .index_link_wrap .index_link .index_link_list_02 .index_link_item 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;
  width: 100%;
  height: 100%;
  padding: 20px 30px;
  background: #fff;
  color: #2a8856;
  font-size: 1.125rem;
  text-decoration: none;
  border: 1px solid #ccc;
}

.index_main .index_link_wrap .index_link .index_link_list_02 .index_link_item a::before {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  z-index: 1;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.index_main .index_link_wrap .index_link .index_link_list_02 .index_link_item a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 34px;
  height: 80%;
  background: #2a8856;
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  .index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item {
    width: calc((100% - 20px) / 2);
  }
}

.index_main .index_bnr_min {
  padding: 90px 0 40px;
}

.index_main .index_bnr_min .index_bnr_min_list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.index_main .index_bnr_min .index_bnr_min_list .slick-dots {
  bottom: -60px !important;
}

.index_main .index_bnr_min .index_bnr_min_list .slick-dots li button::before {
  content: "" !important;
  width: 25px;
  height: 6px;
  background: #999;
}

.index_main .index_bnr_min .index_bnr_min_list .slick-dots li.slick-active button::before {
  content: "" !important;
  width: 25px;
  height: 6px;
  background: #8CC14A;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.breadcrumb {
  display: -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: 0.5em 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.9em;
  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;
}

.news_list .news_item {
  width: 100%;
  padding: 20px 15px;
  border-bottom: 1px solid #ccc;
}

.news_list .news_item:first-of-type {
  border-top: 1px solid #ccc;
}

.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;
  margin-bottom: 10px;
}

.news_list .news_item .news_item_date time {
  color: #666;
  font-size: 0.812rem;
  font-weight: 500;
}

.news_list .news_item .news_item_date .news_item_cate {
  min-width: 95px;
  margin-left: 20px;
  padding: 3px 5px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  border-radius: 20px;
}

.news_list .news_item .news_item_date .news_item_cate.news {
  color: #3aad6e;
  border: 1px solid #3aad6e;
}

.news_list .news_item .news_item_date .news_item_cate.event {
  color: #00a0e9;
  border: 1px solid #00a0e9;
}

.news_list .news_item .news_item_date .news_item_cate.topics {
  color: #8CC14A;
  border: 1px solid #8CC14A;
}

.news_list .news_item .news_item_ttl {
  font-size: 0.812rem;
}

.news_list .news_item .news_item_ttl .news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.812rem;
  font-weight: bold;
  margin-left: 0.3em;
}

.news_list .news_item .news_item_ttl .news_item_icon_new:before {
  content: "NEW";
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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;
  min-height: 20vh;
  margin: -20px calc(50% - 50vw) 20px;
  background: url(./../images/slideshow/i_img.jpg) no-repeat center center;
  background-size: cover;
}

.mcon h1::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(99%, rgba(0, 0, 0, 0.79)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.79) 99%, rgba(0, 0, 0, 0.8) 100%);
}

.mcon h1 span {
  position: relative;
  z-index: 1;
  display: block;
  margin: 40px 10px 20px;
  color: #fff;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

/*

.mcon h2 {
  margin: 20px 0;
  padding-left: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  border-left: 5px solid #8CC14A;
}

.mcon h3 {
  position: relative;
  margin: 20px 0 10px;
  padding-bottom: 5px;
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 2px solid #ddd;
}

.mcon h3::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 8em;
  height: 2px;
  background: #8CC14A;
}

.mcon h4 {
  position: relative;
  display: inline-block;
  margin: 20px 0 10px;
  padding-left: 2em;
  font-size: 0.937rem;
  font-weight: 500;
}

.mcon h4::before {
  position: absolute;
  top: 50%;
  left: 0;
  -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;
}

*/

/* h2 h3 h4 h5 再定義 */

.mcon h2 {
  margin: 20px 0;
  padding-left: 20px;
  font-size: 1.35rem;
  font-weight: 500;
  border-left: 5px solid #8CC14A;
}

.mcon h3 {
  position: relative;
  margin: 45px 0 16px;
  padding-bottom: 6px;
  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: 36px 0 16px;
    padding-left: 1.25em;
    font-size: 1.0rem;
    font-weight: 500;
    color: #449401;
/*    border-top: 1px solid #8dbf62;
    border-bottom: 1px solid #8dbf62; */
    padding: 5px 20px;
    background: #f1f1f1;
}

.mcon h4::before {
    width: 0px;
    height: 0px;
}

.mcon h5 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 30px;
}

.mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}

.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}

.mcon iframe {
  max-width: 100%;
}

.mcon img {
  max-width: 100%;
  height: auto;
}

.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}

.mcon p {
  margin-bottom: 1em;
}

.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}

.mcon .alignright {
  display: block;
  margin: 0 0 0 auto !important;
}

.mcon .alignleft {
  display: block;
  margin: 0 auto 0 0 !important;
}

.mcon .aligncenter {
  display: block;
  margin: 0 auto !important;
}

.mcon .table_scroll {
  width: 100%;
  table-layout: inherit;
  white-space: inherit;
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
  white-space: nowrap;
  display: block;
}

.about_common_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

.about_common_list .about_common_item {
  width: 100%;
}

.about_common_list .about_common_item .about_common_item_ttl {
  width: 100%;
  border: 1px solid #ccc;
}

.about_common_list .about_common_item .about_common_item_ttl .about_common_item_ttl_txt {
  display: -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;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #2a8856;
  font-size: 1.125rem;
  text-decoration: none;
}

.about_common_list .about_common_item .about_common_item_ttl .about_common_item_ttl_txt a {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 30px 20px 20px;
  background-image: none;
  color: #2a8856;
  text-decoration: none;
}

.about_common_list .about_common_item .about_common_item_ttl .about_common_item_ttl_txt a::before {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.about_common_list .about_common_item .about_common_item_ttl .about_common_item_ttl_txt a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 34px;
  height: 70%;
  background: #2a8856;
}

.about_common_list .about_common_item.acd .about_common_item_ttl {
  position: relative;
  cursor: pointer;
}

.about_common_list .about_common_item.acd .about_common_item_ttl .about_common_item_ttl_txt {
  padding: 20px 50px 20px 20px;
}

.about_common_list .about_common_item.acd .about_common_item_ttl .icon-wrap {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  width: 34px;
  height: 70%;
  background: #2a8756;
}

.about_common_list .about_common_item.acd .about_common_item_ttl .icon-wrap .icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  /*＋、－切り替え*/
}

.about_common_list .about_common_item.acd .about_common_item_ttl .icon-wrap .icon:before, .about_common_list .about_common_item.acd .about_common_item_ttl .icon-wrap .icon:after {
  position: absolute;
  content: "";
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #fff;
  left: 50%;
  top: 50%;
  width: 40%;
  height: 2px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about_common_list .about_common_item.acd .about_common_item_ttl .icon-wrap .icon:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.about_common_list .about_common_item.acd .about_common_item_ttl .icon-wrap .icon.open:before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}

.about_common_list .about_common_item.acd .about_common_item_con {
  display: none;
  border: 1px solid #ccc;
  border-top: none;
}

.about_common_list .about_common_item.acd .about_common_item_con ul {
  margin: 0;
}

.about_common_list .about_common_item.acd .about_common_item_con ul li {
  margin: 0;
  list-style-type: none;
}

.about_common_list .about_common_item.acd .about_common_item_con ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  background: #f4f4f4;
  color: #00913a;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.about_common_list .about_common_item.acd .about_common_item_con ul li a:hover {
  background: #00913a;
  color: #fff;
}

/*# sourceMappingURL=sp.css.map */