@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: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
}
.hd_bg .hd {
  padding: 10px 20px;
}
.hd_bg .hd .hd_logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: calc(100% - 25vw);
}
.hd_bg .hd .hd_logo a {
  display: inline-flex;
  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: #0b2242;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.75rem;
}

/*----------------------------------------------------------------------------
******************************************************************************
** search
******************************************************************************
----------------------------------------------------------------------------*/
/*==検索窓背景のエリア*/
#search-wrap {
  position: fixed; /*固定配置にして*/
  top: 0;
  left: 0;
  z-index: -1; /*最背面に設定*/
  opacity: 0; /*透過を0に*/
  width: 100%;
  transition: all 0.3s; /*transitionを使ってスムースに現れる*/
  /*ボタンクリック後、JSで#search-wrapにpanelactiveクラスが付与された後の見た目*/
}
#search-wrap.panelactive {
  opacity: 1; /*不透明に変更*/
  z-index: 100; /*全面に出現*/
  /*中の要素を天地中央揃えにする設定*/
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: rgba(242, 242, 242, 0.8);
}
#search-wrap {
  /*==検索窓のエリア*/
}
#search-wrap.search-area {
  display: none; /*検索窓のエリアは、はじめ非表示*/
}
#search-wrap {
  /*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後*/
}
#search-wrap.panelactive .search-area {
  position: relative;
  display: block; /*検索窓エリアを表示*/
  width: 90%;
}
#search-wrap {
  /*==検索フォームの設定*/
}
#search-wrap form {
  position: relative;
  height: 66px;
  border-bottom: 2px solid #666;
}
#search-wrap {
  /*==テキスト入力とボタンinput共通設定*/
}
#search-wrap input {
  -webkit-appearance: none; /*SafariやChromeのデフォルトの設定を無効*/
  outline: none;
  cursor: pointer; /*カーソルを指マークに*/
}
#search-wrap {
  /*テキスト入力input設定*/
}
#search-wrap input[type=text] {
  width: 85%;
  padding: 20px 10px;
  border: none;
  transition: all 0.5s;
  letter-spacing: 0.05em;
}
#search-wrap input[type=text]:focus {
  background: #fff;
}
#search-wrap {
  /*ボタンinput設定*/
}
#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;
  transform: translateY(6px) rotate(-135deg);
  width: 50%;
}
.close-btn span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(135deg);
  width: 50%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: 70px;
  right: -100%;
  overflow-x: none;
  overflow-y: auto;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  width: 100%;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  background: #f2f2f2;
  transition: All 0.5s ease;
}
.nav > * {
  width: 50%;
}
.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: 0.8em 1em 0.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;
  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;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.nav .hd_lang_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #fff;
  border-top: 1px solid #fff;
}
.nav .hd_lang_list li {
  width: 25%;
}
.nav .hd_lang_list li:nth-last-child(-n+2) {
  width: 50%;
  border-top: 1px solid #ccc;
}
.nav .hd_lang_list li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  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 {
  align-items: center;
  background: #3e3a39;
  color: #fff;
}
.nav .hd_lang_list li.lang_ja a span {
  position: relative;
  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;
}

.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;
  transition: all 0.4s;
  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;
  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) {
  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) {
  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: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 80px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 20px;
  background: #f4f4f4;
}
.ft_bg .ft .ft_nav ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.8em;
}
.ft_bg .ft .ft_nav ul li a {
  color: #111;
  font-size: 0.875rem;
  text-decoration: none;
}
.ft_bg .ft .ft_nav ul li a:hover {
  text-decoration: underline;
}
.ft_bg .ft .ft_link a {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 20px 0;
  color: #0b2242;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
}
.ft_bg .ft .ft_link a span {
  display: flex;
  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: flex;
    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: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 0;
    background: none;
  }
  .ft_bg .ft .ft_nav ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0.8em;
  }
  .ft_bg .ft .ft_nav ul li a {
    color: #111;
    font-size: 0.875rem;
    text-decoration: none;
  }
  .ft_bg .ft .ft_nav ul li a:hover {
    text-decoration: underline;
  }
  .ft_bg .ft .ft_link {
    display: none;
  }
}
.ft_bg .ft_copy {
  padding: 18px 0;
  background: #0b2242;
  color: #fff;
  font-size: 10px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: 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;
  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: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #8CC14A;
  border-radius: 5px;
  color: #8CC14A !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #8CC14A;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #8CC14A;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.69) 100%, rgba(0, 0, 0, 0.8) 100%);
}
.index_slider_bg .index_slider img {
  width: 100%;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_slider_bg .index_slider .index_slider_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
.index_slider_bg .index_slider .index_slider_title .index_slider_title_item img {
  width: 100%;
  height: auto !important;
}
@media all and (min-width: 768px) and (max-width: 1024px) {
  .index_slider_bg .index_slider .index_slider_title {
    width: 50%;
  }
}

.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: flex;
  flex-direction: column;
  justify-content: center;
  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: flex;
  justify-content: flex-start;
  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: flex;
  flex-wrap: wrap;
  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: flex;
  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% - 15px) / 4);
}
.index_main .index_news .index_news_wrap .index_news_con .index_news_tab > div span {
  position: relative;
  display: flex;
  justify-content: 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;
  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%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0 7px;
  border-color: transparent;
  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: flex;
  justify-content: flex-start;
  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: flex;
  justify-content: 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: flex;
  flex-wrap: wrap;
  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: flex;
  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%;
  transform: scale(1);
  transition: 0.4s ease-in-out;
}
.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_img::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(0, 142, 102, 0.2) 100%);
}
.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_img::after {
  position: absolute;
  top: 3%;
  left: 1%;
  z-index: 1;
  content: "";
  width: 97.5%;
  height: 93%;
  border: 1px solid #ccc;
}
.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_ttl {
  padding: 20px 20px;
}
.index_main .index_pickup_wrap .index_pickup .index_pickup_list .index_pickup_item a .index_pickup_item_ttl h3 {
  color: #0b2242;
  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 {
  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: flex;
  flex-wrap: wrap;
  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: flex;
  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;
  transition: all 0.5s ease;
}
.index_main .index_course .index_course_list .index_course_item a::before, .index_main .index_course .index_course_list .index_course_item a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: all 0.5s ease;
}
.index_main .index_course .index_course_list .index_course_item a::before {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #00913a;
}
.index_main .index_course .index_course_list .index_course_item a::after {
  right: 16px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.index_main .index_course .index_course_list .index_course_item a:hover {
  background: #00913a;
  color: #fff;
}
.index_main .index_course .index_course_list .index_course_item a:hover::before {
  background: #fff;
}
.index_main .index_course .index_course_list .index_course_item a:hover::after {
  border-top: 2px solid #00913a;
  border-right: 2px solid #00913a;
}
@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: flex;
  flex-wrap: wrap;
  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: flex;
  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: flex;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 10px;
  text-decoration: none;
  border: 1px solid #ccc;
}
.index_main .index_other .index_other_list .index_other_item a .index_other_item_img {
  overflow: hidden;
  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%;
  transform: scale(1);
  transition: 0.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 {
  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: flex;
  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 span {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  z-index: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item:first-of-type a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  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:first-of-type a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(./../images/i_link_bg_01.jpg) no-repeat center center;
  background-size: cover;
  transform: scale(1);
  transition: 0.5s ease-in-out;
}
.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item:first-of-type a:hover::after {
  transform: scale(1.3);
}
.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item:last-of-type a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  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:last-of-type a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(./../images/i_link_bg_02.jpg) no-repeat center center;
  background-size: cover;
  transform: scale(1);
  transition: 0.5s ease-in-out;
}
.index_main .index_link_wrap .index_link .index_link_list_01 .index_link_item:last-of-type a:hover::after {
  transform: scale(1.3);
}
.index_main .index_link_wrap .index_link .index_link_list_02 {
  display: flex;
  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: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 30px;
  background: #fff;
  color: #0b2242;
  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;
  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;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 34px;
  height: 80%;
  background: #0b2242;
}
.index_main .index_link_wrap .index_link .index_link_list_02 .index_link_item:first-of-type a::before {
  right: 18px;
  transform: translateY(-50%) rotate(0deg);
  width: 16px;
  height: 16px;
  background: url(./../images/icon_elink_white.svg) no-repeat center center;
  background-size: cover;
  border: none;
}
@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: flex;
  gap: 10px;
}
.index_main .index_bnr_min .index_bnr_min_list .slick-dots {
  bottom: -60px !important;
}
.index_main .index_bnr_min .index_bnr_min_list .slick-dots li button::before {
  content: "" !important;
  width: 25px;
  height: 6px;
  background: #999;
}
.index_main .index_bnr_min .index_bnr_min_list .slick-dots li.slick-active button::before {
  content: "" !important;
  width: 25px;
  height: 6px;
  background: #8CC14A;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em 3em;
  margin: 20px 0px !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;
  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 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: flex;
  justify-content: flex-start;
  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;
  transition: all 0.3s ease;
}
.mcon h1 {
  position: relative;
  display: flex;
  justify-content: center;
  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: 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-top: 20px;
  margin-bottom: 10px;
  padding-left: 15px;
  font-size: 1.25rem;
  font-weight: 500;
  border-left: 5px solid #8CC14A;
}
.mcon h3 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 16px;
}
.mcon h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.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;
}/*# sourceMappingURL=sp.css.map */

/*# トップページ特設コンテンツ案内用 */
.special_notice {
	margin-top: 48px;
	margin-bottom: 20px;
}

.special_notice_inner {
	background: linear-gradient(135deg, #f5f9ff 0%, #eef4ff 100%);
	border: 1px solid #d7e3f5;
	border-radius: 16px;
	padding: 36px 40px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	position: relative;
	overflow: hidden;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special_notice_inner:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.special_notice_inner::before {
	content: "";
	position: absolute;
	top: -40px;
	right: -40px;
	width: 160px;
	height: 160px;
	background: rgba(44, 94, 160, 0.08);
	border-radius: 50%;
	transition: transform 0.4s ease, background 0.4s ease;
	transform: scale(1) translate(0, 0);
	transform-origin: center;
	z-index: 0;
}

.special_notice_inner:hover::before {
	transform: scale(1.8) translate(-8px, 8px);
	background: rgba(44, 94, 160, 0.01);
}

.special_notice_title {
	margin: 0 0 14px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
	color: #1d3557;
	position: relative;
	z-index: 1;
}

.special_notice_text {
	margin: 0 0 24px;
	font-size: 16px;
	line-height: 1.9;
	color: #333;
	position: relative;
	z-index: 1;
	text-align: center;
}

.special_notice_link {
	position: relative;
	z-index: 1;
	text-align: center;
}

.special_notice_link a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	padding: 14px 24px;
	background: #2c5ea0;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 999px;
	transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 6px 16px rgba(44, 94, 160, 0.25);
}

.special_notice_link a:hover {
	background: #1f497d;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(44, 94, 160, 0.3);
}

.special_notice_link a::after {
	content: "↗";
	margin-left: 8px;
	font-size: 14px;
}

@media screen and (max-width: 767px) {
	.special_notice {
		margin-top: 32px;
	}

	.special_notice_inner {
		padding: 24px 20px;
		border-radius: 12px;
	}

	.special_notice_title {
		font-size: 22px;
	}

	.special_notice_text {
		font-size: 14px;
		line-height: 1.8;
	}

	.special_notice_link a {
		width: 100%;
		min-width: auto;
		padding: 13px 18px;
		font-size: 14px;
	}
}

/* hero slider title image size adjustment for smartphone */
@media only screen and (max-width: 768px) {
  .home .index_slider_bg,
  .page-id-7126 .index_slider_bg {
    position: relative;
    overflow: hidden;
    height: 270px;
  }

  .home .index_slider_bg .index_slider,
  .page-id-7126 .index_slider_bg .index_slider {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 270px;
    opacity: 0;
    visibility: hidden;
  }

  .home .index_slider_bg .index_slider.is-active,
  .page-id-7126 .index_slider_bg .index_slider.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  .home .index_slider_bg .index_slider .slider_slick,
  .home .index_slider_bg .index_slider .slider_slick > div,
  .home .index_slider_bg .index_slider .slider_slick img,
  .page-id-7126 .index_slider_bg .index_slider .slider_slick,
  .page-id-7126 .index_slider_bg .index_slider .slider_slick > div,
  .page-id-7126 .index_slider_bg .index_slider .slider_slick img {
    width: 100%;
    height: 270px;
  }

  .home .index_slider_bg .index_slider .index_slider_title,
  .page-id-7126 .index_slider_bg .index_slider .index_slider_title {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 66vw !important;
    max-width: 180px !important;
    min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    z-index: 3;
  }

  .home .index_slider_bg .index_slider .index_slider_title .index_slider_title_item,
  .page-id-7126 .index_slider_bg .index_slider .index_slider_title .index_slider_title_item {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .home .index_slider_bg .index_slider .index_slider_title .index_slider_title_item img,
  .page-id-7126 .index_slider_bg .index_slider .index_slider_title .index_slider_title_item img {
    display: block;
    width: 100%;
    height: auto !important;
    margin: 0 auto;
  }
}
