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

body {
  display: none;
  min-height: 100vh;
}

.w_base {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
}
.hd_bg .hd {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 130px;
}
.hd_bg .hd .hd_logo {
  padding-left: 25px;
}
.hd_bg .hd .hd_logo img {
  width: 100%;
  height: auto;
}
.hd_bg .hd .hd_lang {
  position: absolute;
  top: 0;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  max-width: 1165px;
  height: 100%;
}
.nav_bg .nav {
  overflow: visible;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-right: 20px;
}
.nav_bg .nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1em;
  width: 100%;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
}
.nav_bg .nav .nav_list > li > a {
  display: block;
  color: #3e4040;
  font-size: clamp(0.875rem, 0.589rem + 0.45vw, 1.125rem);
  font-weight: 700;
  text-align: center;
  transition: all 0.5s ease;
}
.nav_bg .nav .nav_list > li > a:hover {
  color: #2eb05d;
}
.nav_bg .nav .nav_list > li.current > a {
  color: #2eb05d;
}
.nav_bg .nav .nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_bg .nav .nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: none;
  width: -moz-max-content;
  width: max-content;
  transition: All 0.5s ease;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.3));
}
.nav_bg .nav .nav_list > li > .child_wrap::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 16px;
  height: 16px;
  background: #fff;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin-top: 16px;
  background: #fff;
  border-radius: 10px;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
  padding: 0 20px;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 5px 10px 15px;
  color: #010101;
  font-size: clamp(0.813rem, 0.598rem + 0.34vw, 1rem);
  text-decoration: none;
  border-bottom: 1px dotted #a6a6a6;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a::before {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 6px;
  border-color: transparent transparent transparent #2eb05d;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  color: #2eb05d;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li:last-of-type a {
  border-bottom: none;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  position: absolute;
  top: 0;
  left: 108%;
  z-index: 100;
  display: none;
  width: 100%;
  background: #fff;
  border-radius: 10px;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap::before {
  position: absolute;
  top: 15px;
  left: -8px;
  transform: translateX(-50%) rotate(-90deg);
  content: "";
  width: 16px;
  height: 16px;
  background: #fff;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li {
  position: relative;
  padding: 0 20px;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 5px 10px 15px;
  color: #010101;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px dotted #a6a6a6;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a::before {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 6px;
  border-color: transparent transparent transparent #2eb05d;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover {
  color: #2eb05d;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li:last-of-type a {
  border-bottom: none;
}
.nav_bg .nav .nav_list > li:last-of-type > .child_wrap > .sub-menu > li > .child_wrap {
  left: -100%;
}
.nav_bg .nav .nav_lang {
  display: flex;
  width: 100%;
  max-width: 150px;
  height: 40px;
  margin-left: 2em;
}
.nav_bg .nav .nav_lang li {
  width: 50%;
}
.nav_bg .nav .nav_lang li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #838383;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #ccc;
}
.nav_bg .nav .nav_lang li.ja a {
  border-radius: 3px 0 0 3px;
}
.nav_bg .nav .nav_lang li.ja:hover a, .nav_bg .nav .nav_lang li.ja.current a {
  background: #2eb05d;
  background: linear-gradient(90deg, #2eb05d 25%, rgb(124, 193, 82) 100%);
  color: #fff;
  border: none;
}
.nav_bg .nav .nav_lang li.en a {
  border-radius: 0 3px 3px 0;
}
.nav_bg .nav .nav_lang li.en:hover a, .nav_bg .nav .nav_lang li.en.current a {
  background: rgb(103, 173, 98);
  background: linear-gradient(90deg, rgb(124, 193, 82) 25%, #2eb05d 100%);
  color: #fff;
  border: none;
}
.nav_bg .nav_link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 40px;
  padding-right: 20px;
  background: rgb(230, 230, 230);
  background: linear-gradient(270deg, rgb(230, 230, 230) 54%, rgb(255, 255, 255) 100%);
}
.nav_bg .nav_link a {
  display: flex;
  align-items: center;
  color: #010101;
  font-size: 14px;
  font-weight: 500;
}
.nav_bg .nav_link a::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 10px;
  background: url(../images/icon_elink_red.png) no-repeat center center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg.page {
  background: url(../images/con_bg.png) no-repeat;
}
.con_bg .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.con_bg .con .main {
  order: 1;
  width: 100%;
  background: #fff;
  border-radius: 10px;
}
.con_bg .con .main .more a {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  border: 2px solid rgb(0, 186, 163);
  -o-border-image: linear-gradient(90deg, rgb(0, 186, 163) 0%, rgb(86, 206, 135) 100%);
     border-image: linear-gradient(90deg, rgb(0, 186, 163) 0%, rgb(86, 206, 135) 100%);
  border-image-slice: 1;
  transition: all 0.5s ease;
}
.con_bg .con .main .more a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(0, 186, 163) 0%, rgb(86, 206, 135) 100%);
  transition: all 0.5s ease;
}
.con_bg .con .main .more a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
}
.con_bg .con .main .more a:hover {
  color: #2eb05d;
}
.con_bg .con .main .more a:hover:before {
  opacity: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  background: linear-gradient(90deg, rgb(0, 186, 163) 0%, rgb(86, 206, 135) 100%);
}
.ft_bg .ft_nav_bg {
  position: relative;
}
.ft_bg .ft_nav_bg::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 186, 163, 0.4) 0%, rgba(86, 206, 135, 0.4) 100%);
  mix-blend-mode: multiply;
}
.ft_bg .ft_nav_bg .ft_nav {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #99cdb6;
}
.ft_bg .ft_nav_bg .ft_nav .ft_nav_list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.ft_bg .ft_nav_bg .ft_nav .ft_nav_list li {
  border-left: 1px solid #6bc081;
}
.ft_bg .ft_nav_bg .ft_nav .ft_nav_list li:last-of-type {
  border-right: 1px solid #6bc081;
}
.ft_bg .ft_nav_bg .ft_nav .ft_nav_list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 15px;
  color: #fff;
}
.ft_bg .ft .ft_address {
  padding: 25px 0;
  color: #fff;
  text-align: center;
  line-height: 1.8;
  border-bottom: 1px solid #99cdb6;
}
.ft_bg .ft .ft_address address {
  font-size: 14px;
}
.ft_bg .ft .ft_copy {
  padding: 20px 0;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** breadcrumb
******************************************************************************
----------------------------------------------------------------------------*/
.breadcrumb {
  padding: 30px 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}
.breadcrumb ol li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #010101;
  font-size: 18px;
}
.breadcrumb ol li:not(:last-of-type)::after {
  content: "›";
  margin: 0 0.6em;
  color: #010101;
  font-size: 22px;
}
.breadcrumb ol li a {
  color: #010101;
  text-decoration: underline;
}
.breadcrumb ol li a:hover {
  text-decoration: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #3f5294;
  border-radius: 50%;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
}
.pt .pt_btn::before, .pt .pt_btn::after {
  background-color: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt .pt_btn::before {
  width: 7px;
  bottom: 0;
}
.pt .pt_btn::after {
  height: 7px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg {
  position: relative;
  min-height: 645px;
  padding-top: 95px;
  background: url(../images/i_main_bg.png) no-repeat;
  background-size: cover;
}
.index_slider_bg .index_slider {
  position: absolute;
  right: 250px;
  bottom: 20px;
  width: 100%;
  max-width: 750px;
  height: 100%;
  max-height: 490px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}
.index_slider_bg .index_slider img {
  width: 100%;
  height: 490px !important;
  -o-object-fit: cover !important;
  object-fit: cover;
  border-radius: 5px;
}
@media all and (min-width: 1025px) and (max-width: 1919px) {
  .index_slider_bg .index_slider {
    right: 10%;
  }
}
@media all and (min-width: 1380px) and (max-width: 1789px) {
  .index_slider_bg .index_slider {
    right: 8%;
    width: 100%;
    max-width: 700px;
    height: 100%;
    max-height: 458px;
  }
  .index_slider_bg .index_slider img {
    width: 100%;
    height: 458px !important;
  }
}
@media all and (min-width: 1280px) and (max-width: 1379px) {
  .index_slider_bg .index_slider {
    right: 8%;
    bottom: 15%;
    width: 100%;
    max-width: 600px;
    height: 100%;
    max-height: 392px;
  }
  .index_slider_bg .index_slider img {
    width: 100%;
    height: 392px !important;
  }
}
@media all and (min-width: 1025px) and (max-width: 1280px) {
  .index_slider_bg .index_slider {
    right: 5%;
    bottom: 25%;
    width: 100%;
    max-width: 500px;
    height: 100%;
    max-height: 325px;
  }
  .index_slider_bg .index_slider img {
    width: 100%;
    height: 325px !important;
  }
}
.index_slider_bg .index_slider_ttl_wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1193px;
  margin-left: calc(50% - 50vw);
  background: rgba(255, 255, 255, 0.5);
}
.index_slider_bg .index_slider_ttl_wrap .index_slider_ttl {
  padding: 75px 0 55px 200px;
}
@media all and (min-width: 1025px) and (max-width: 1699px) {
  .index_slider_bg .index_slider_ttl_wrap .index_slider_ttl {
    padding-left: 7%;
  }
}
.index_slider_bg .index_slider_ttl_wrap .index_slider_ttl h2 {
  margin-bottom: 20px;
  color: #010101;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  line-height: 1.5;
}
.index_slider_bg .index_slider_ttl_wrap .index_slider_ttl h2 .large {
  font-size: 48px;
}
.index_slider_bg .index_slider_ttl_wrap .index_slider_ttl h2 .green {
  color: #1d683d;
}
@media all and (min-width: 1025px) and (max-width: 1549px) {
  .index_slider_bg .index_slider_ttl_wrap .index_slider_ttl h2 {
    font-size: 18px;
  }
  .index_slider_bg .index_slider_ttl_wrap .index_slider_ttl h2 .large {
    font-size: 38px;
  }
}
.index_slider_bg .index_slider_ttl_wrap .index_slider_ttl > p {
  font-size: 24px;
  line-height: 1.8;
}
@media all and (min-width: 1025px) and (max-width: 1549px) {
  .index_slider_bg .index_slider_ttl_wrap .index_slider_ttl > p {
    font-size: 18px;
  }
}

.index_main {
  order: 1;
  width: 100%;
}
.index_main .index_about_wrap {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}
.index_main .index_about_wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.index_main .index_about_wrap::after {
  position: absolute;
  bottom: -100px;
  left: 0;
  z-index: -2;
  content: "";
  width: 100%;
  height: 1245px;
  background: url(../images/i_about_bg.jpg) no-repeat center bottom;
  background-size: cover;
}
.index_main .index_about_wrap .index_about {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.index_main .index_about_wrap .index_about > * {
  width: calc((100% - 20px) / 2);
}
.index_main .index_about_wrap .index_about .index_about_con {
  padding: 0 10px;
  font-size: 18px;
}
.index_main .index_about_wrap .index_about .index_about_con h2 {
  position: relative;
  margin-bottom: 40px;
  color: #2eb05d;
  font-size: 48px;
  font-weight: 400;
  text-align: center;
}
.index_main .index_about_wrap .index_about .index_about_con h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  margin: 0 auto;
  background: rgb(248, 233, 61);
  background: linear-gradient(270deg, rgb(248, 233, 61) 0%, rgb(211, 225, 87) 23%, rgb(122, 182, 108) 49%, rgb(95, 168, 173) 75%, rgb(0, 179, 233) 100%);
}
.index_main .index_about_wrap .index_about img {
  width: 100%;
  height: auto;
}
.index_main .index_news {
  padding: 90px 0 80px;
  background: url(../images/i_news_bg.jpg) no-repeat;
  background-size: cover;
}
.index_main .index_news h2 {
  position: relative;
  margin-bottom: 40px;
  color: #3f5294;
  font-size: 48px;
  font-weight: 400;
  text-align: center;
}
.index_main .index_news h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  margin: 0 auto;
  background: rgb(248, 233, 61);
  background: linear-gradient(270deg, rgb(248, 233, 61) 0%, rgb(211, 225, 87) 23%, rgb(122, 182, 108) 49%, rgb(95, 168, 173) 75%, rgb(0, 179, 233) 100%);
}
.index_main .index_news .index_news_scrl {
  max-height: 340px;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  display: flex;
  align-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px dotted #999;
}
.index_main .index_news .index_news_scrl .index_news_item:first-of-type {
  border-top: 1px dotted #999;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-width: 240px;
  padding-top: 5px;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date .index_news_item_cate {
  padding: 3px 15px;
  background: #fff;
  border: 1px solid #ccc;
  white-space: nowrap;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl {
  width: calc(100% - 140px);
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_scrl {
  max-height: 340px;
  overflow: auto;
}

.news_item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px dotted #999;
}
.news_item .news_item_date {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  padding-top: 5px;
}
.news_item .news_item_date .news_item_cate {
  padding: 3px 15px;
  background: #fff;
  border: 1px solid #ccc;
  white-space: nowrap;
}
.news_item .news_item_ttl {
  width: calc(100% - 120px);
}
.news_item .news_item_ttl .news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.news_item .news_item_ttl .news_item_icon_new:before {
  content: "NEW";
}

.result_list .result_item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px dotted #999;
}
.result_list .result_item .result_item_ttl {
  width: calc(100% - 340px);
}
.result_list .result_item .result_item_ttl .result_item_date {
  margin-bottom: 10px;
}
.result_list .result_item .result_item_img {
  width: 320px;
}
.result_list .result_item .result_item_img img {
  width: 100%;
  height: auto;
}

.accordion {
  margin: 40px 0;
}
.accordion .accordion_ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  background-color: #f4f4f4;
  padding: 10px;
}
.accordion .accordion_ttl::before {
  position: relative;
  content: "▶";
  margin-right: 10px;
  transition: all 0.3s ease;
}
.accordion .accordion_ttl.active::before {
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.accordion .accordion_content {
  display: none;
}

.groups_wrap {
  position: relative;
  margin-bottom: 60px;
}
.groups_wrap > h2 {
  padding-right: calc(100% - 75vw);
}
.groups_wrap .more {
  position: absolute;
  top: 10px;
  right: 0;
  margin: 0 !important;
}
.groups_wrap .more a {
  padding: 5px 10px !important;
  font-size: 14px !important;
}

.map_link_box {
  display: none;
  position: absolute;
  padding-bottom: 15px;
  background: #2eb05d;
  border-radius: 10px;
  box-shadow: 0px 2px 2px #e6e6e6;
}
.map_link_box .map_link_ttl {
  margin: 0 !important;
  padding: 15px 15px 0;
  color: #fff;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  padding: 50px;
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  margin-bottom: 36px;
}
.mcon h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  margin: 0 auto;
  background: rgb(248, 233, 61);
  background: linear-gradient(270deg, rgb(248, 233, 61) 0%, rgb(211, 225, 87) 23%, rgb(122, 182, 108) 49%, rgb(95, 168, 173) 75%, rgb(0, 179, 233) 100%);
}
.mcon h1 span {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 15px;
  font-size: 46px;
}
.mcon h1 span:before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 48px;
  height: 54px;
  background: url(../images/epri_logo.png) no-repeat center center;
}
.mcon h2 {
  margin: 30px 0 20px;
  padding-bottom: 10px;
  color: #2eb05d;
  font-size: 30px;
  border-bottom: 1px dotted #8d8d8d;
}
.mcon h3 {
  margin: 30px 0 20px;
  padding-left: 10px;
  font-size: 24px;
  font-weight: 500;
  border-left: 5px solid #009e8c;
}
.mcon h4 {
  display: flex;
  align-items: center;
  margin: 30px 0 20px;
  font-size: 20px;
  font-weight: 500;
}
.mcon h4::before {
  content: "";
  display: block;
  width: 15px;
  height: 3px;
  margin-right: 10px;
  background: #00baa3;
}
.mcon h5, .mcon h6 {
  margin: 30px 0 20px;
  font-size: 18px;
  font-weight: 500;
}
.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=style.css.map */