@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;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 80px;
  background: #fff;
}
.hd_bg .hd {
  padding: 0 10px;
}
.hd_bg .hd .hd_logo {
  display: flex;
  align-content: center;
  align-items: center;
  width: 260px;
}
.hd_bg .hd .hd_logo img {
  height: auto;
  max-width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: 80px;
  right: -100%;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  width: 100%;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  background: rgba(46, 176, 93, 0.9);
  color: #fff;
  transition: All 0.5s ease;
}
.nav .nav_list > li {
  position: relative;
}
.nav .nav_list > li > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 1em 1em 1em 1.5em;
  text-decoration: none;
  position: relative;
}
.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 1em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #2eb05d;
  border: 1px solid #fff;
}
.nav .nav_list > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #fff;
}
.nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap {
  display: none;
}
.nav .nav_list > li .child_wrap > .sub-menu {
  background: #2eb05d;
}
.nav .nav_list > li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.25em 3.5em 1.25em 1.5em;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.nav .nav_list > li .child_wrap > .sub-menu li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn {
  position: absolute;
  top: 0.75em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #216684;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before, .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #fff;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 1em 1em 1em 2em;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li .child_wrap > .sub-menu {
  background: #ccc;
}
.nav .nav_lang {
  display: flex;
}

.nav_link {
  display: none;
}

.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-color: #2eb05d;
  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: #2eb05d;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s;
}
.sp_nav_trigger.sp_active::after {
  content: "CLOSE";
  bottom: -25px;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con .main {
  margin-bottom: 30px;
  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;
}
.con_bg.page {
  position: relative;
}
.con_bg.page::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 25vh;
  background: url(../images/con_bg.png) no-repeat;
  background-size: cover;
}
.con_bg.page .con {
  padding: 20px 10px 30px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}
.ft_bg .ft_nav_bg .ft_nav .ft_nav_list li {
  flex-shrink: 0;
  width: calc((100% - 20px) / 2);
}
.ft_bg .ft_nav_bg .ft_nav .ft_nav_list li:nth-of-type(odd) {
  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;
  padding: 0 15px;
  color: #fff;
  font-size: 14px;
}
.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 h1 {
  margin-bottom: 0.5em;
}
.ft_bg .ft .ft_address address {
  margin-bottom: 0.5em;
  font-size: 11px;
}
.ft_bg .ft .ft_copy {
  padding: 20px 10px;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** breadcrumb
******************************************************************************
----------------------------------------------------------------------------*/
.breadcrumb {
  padding: 0 0 20px;
}
.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: 14px;
}
.breadcrumb ol li:not(:last-of-type)::after {
  content: "›";
  margin: 0 0.6em;
  color: #010101;
  font-size: 18px;
}
.breadcrumb ol li a {
  color: #010101;
  text-decoration: underline;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 50px;
}
.index_slider_bg::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 50vh;
  background: url(../images/i_main_bg.png) no-repeat;
  background-size: cover;
}
.index_slider_bg .index_slider {
  padding: 20px 10px;
  width: 100%;
  max-width: 750px;
  height: 100%;
  max-height: 490px;
  margin: 0 auto;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}
.index_slider_bg .index_slider img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.index_slider_bg .index_slider_ttl_wrap {
  display: flex;
  align-items: center;
  width: 98%;
  background: rgba(255, 255, 255, 0.5);
}
.index_slider_bg .index_slider_ttl_wrap .index_slider_ttl {
  padding: 30px 10px;
}
.index_slider_bg .index_slider_ttl_wrap .index_slider_ttl h2 {
  margin-bottom: 20px;
  color: #010101;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  line-height: 1.5;
}
.index_slider_bg .index_slider_ttl_wrap .index_slider_ttl h2 .large {
  font-size: clamp(1.75rem, 1.295rem + 2.27vw, 3rem);
}
.index_slider_bg .index_slider_ttl_wrap .index_slider_ttl h2 .green {
  color: #1d683d;
}
.index_slider_bg .index_slider_ttl_wrap .index_slider_ttl > p {
  font-size: clamp(1rem, 1.045rem - 0.23vw, 0.875rem);
  letter-spacing: -0.028em;
  line-height: 1.8;
}

.index_main .index_about {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 10px 30px;
}
.index_main .index_about .index_about_con {
  font-size: 18px;
}
.index_main .index_about .index_about_con h2 {
  position: relative;
  margin-bottom: 40px;
  color: #2eb05d;
  font-size: 38px;
  font-weight: 400;
  text-align: center;
}
.index_main .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 img {
  width: 100%;
  max-width: 500px;
  height: auto;
  text-align: center;
}
.index_main .index_news {
  padding: 80px 10px 50px;
  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: 38px;
  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: 50vh;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  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: flex-start;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
}
.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 .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: 50vh;
  overflow: auto;
}

.news_item {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px dotted #999;
}
.news_item .news_item_date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
}
.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;
  flex-direction: column;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px dotted #999;
}
.result_list .result_item .result_item_ttl {
  width: 100%;
}
.result_list .result_item .result_item_ttl .result_item_date {
  margin-bottom: 10px;
}
.result_list .result_item .result_item_img {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.result_list .result_item .result_item_img img {
  width: 100%;
  height: auto;
}

.accordion {
  margin: 40px 0;
}
.accordion .accordion_ttl {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  background-color: #f4f4f4;
}
.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;
}

@media screen and (max-width: 768px) {
  .tbl_blk th, .tbl_blk td {
    display: block;
    width: 100% !important;
  }
}
.groups_wrap {
  position: relative;
  margin-bottom: 60px;
}
.groups_wrap .more {
  margin-top: 20px;
}
.groups_wrap .more a {
  padding: 5px 10px !important;
  font-size: 14px !important;
}

.map_link_box {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  padding: 20px 10px;
  line-height: 1.6;
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  margin-bottom: 30px;
}
.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: 10px;
  padding-bottom: 10px;
  font-size: 32px;
}
.mcon h1 span:before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 38px;
  height: 43px;
  background: url(../images/epri_logo.png) no-repeat center center;
  background-size: contain;
}
.mcon h2 {
  margin: 30px 0 20px;
  padding-bottom: 10px;
  color: #2eb05d;
  font-size: 28px;
  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;
}

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** tabスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** navigation
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .nav {
    right: -70%;
    width: 70%;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .ft_nav_list li {
    flex-shrink: 0;
    width: calc((100% - 60px) / 4) !important;
  }
  .ft_nav_list li:nth-of-type(2n) {
    border-right: 1px solid #6bc081 !important;
  }
  .ft_nav_list li:nth-of-type(4n) {
    border-right: none !important;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .index_slider_bg {
    position: relative;
  }
  .index_main {
    padding-top: 80px;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .result_list .result_item {
    display: flex;
    flex-direction: row;
    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;
  }
  .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;
  }
  .box_col_02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .box_col_02 > * {
    width: calc((100% - 2em - 1px) / 2);
    margin: 0 1em 1em 0 !important;
  }
  .box_col_02 > *:nth-child(2n) {
    margin-right: 0 !important;
  }
  .box_col_03 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .box_col_03 > * {
    width: calc((100% - 2em - 1px) / 3);
    margin: 0 1em 1em 0 !important;
  }
  .box_col_03 > *:nth-child(3n) {
    margin-right: 0 !important;
  }
}/*# sourceMappingURL=sp.css.map */