@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
******************************************************************************
----------------------------------------------------------------------------*/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

html, body {
  position: relative;
  min-height: 100vh;
}

.con_bg {
  width: 100%;
  max-width: 1920px;
  padding: 10px 60px 65px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) and (max-width: 1340px) {
  .con_bg {
    padding: 30px 30px 100px 10px;
  }
}

.hd_bg {
  width: 230px;
  margin-right: 60px;
}

.con {
  width: calc(100% - 230px - 60px);
  padding-top: 20px;
  padding-bottom: 20px;
}

.w_base {
  max-width: 1200px;
  margin: 0 auto 0 0;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: sticky;
  top: 0;
  height: 100%;
  padding-top: 25px;
  text-align: center;
  z-index: 10;
}
.hd_bg a {
  text-decoration: none;
}
.hd_bg .hd_logo {
  margin-bottom: 35px;
}
.hd_bg .hd_logo a {
  transition: 0.3s;
  color: #3e3e3e !important;
}
.hd_bg .hd_logo a:hover {
  opacity: 0.7;
  text-decoration: none !important;
}
.hd_bg .hd_logo img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.hd_bg .hd_logo .hd_ttl {
  font-size: 30px;
  line-height: 1.1;
}
.hd_bg .hd_logo .hd_ttl span {
  display: block;
  font-size: 0.44em;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 1025px) and (max-width: 1340px) {
  .hd_bg .hd_logo {
    margin-bottom: 35px;
  }
  .hd_bg .hd_logo a {
    transition: 0.3s;
    color: #3e3e3e !important;
  }
  .hd_bg .hd_logo a:hover {
    opacity: 0.7;
    text-decoration: none !important;
  }
  .hd_bg .hd_logo img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .hd_bg .hd_logo .hd_ttl {
    font-size: 30px;
    line-height: 1.1;
  }
  .hd_bg .hd_logo .hd_ttl span {
    display: block;
    font-size: 0.44em;
    letter-spacing: 0.07em;
  }
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_list {
  height: 100%;
  /* メニュー（親） */
}
.nav_list > li {
  position: relative;
  font-weight: 600;
  font-size: 20px;
  z-index: 1000;
  line-height: 1.3;
  border-bottom: 4px solid transparent;
  transition: background 0.2s linear 0s;
  /* 子要素を持つメニュー（親）の場合 */
}
.nav_list > li > a {
  display: block;
  padding: 0.8em 0px;
  color: #304959 !important;
  background: #d1f4ff;
}
.nav_list > li > a > span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #0073bd;
}
.nav_list > li > a:hover {
  background: rgba(0, 0, 0, 0.05);
}
.nav_list > li > a.current {
  background: rgba(0, 0, 0, 0.05);
  pointer-events: none; /* リンクのhoverを無効に */
  cursor: default; /* カーソルをデフォルトに */
}
.nav_list > li.has_clist {
  position: relative;
}
.nav_list > li.has_clist .sub-menu-trigger {
  position: absolute;
  top: 1.25em;
  right: 0.3em;
  z-index: 10;
  width: 30px;
  height: 30px;
  background: #0073bd;
  cursor: pointer;
  box-shadow: 0px 0px 5px 0px #cccccc;
}
.nav_list > li.has_clist .sub-menu-trigger:before, .nav_list > li.has_clist .sub-menu-trigger:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #fff;
}
.nav_list > li.has_clist .sub-menu-trigger::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav_list > li.has_clist .sub-menu-trigger:after {
  top: 50%;
  left: 7px;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav_list > li.has_clist .sub-menu-trigger.close:after {
  transform: rotate(180deg);
}
.nav_list > li.has_clist .sub_menu_wrap {
  display: none;
  /* メニュー（子・孫）*/
  /* メニュー（子）*/
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu {
  background: #0073bd;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s linear 0s;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li > a {
  display: block;
  padding: 0.9em 10px;
  text-decoration: none;
  color: #fff !important;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li:last-child {
  border-bottom: none;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li:hover {
  background: rgba(0, 0, 0, 0.1);
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu {
  transition: All 0.5s ease;
  box-shadow: inset 0 0 12px 5px rgb(28, 77, 170);
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li {
  position: relative;
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > a {
  font-size: 16px;
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > .sub-menu {
  width: 100%;
  top: 0;
  left: 100%;
  background: rgba(0, 0, 0, 0.05);
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > .sub-menu > li > a {
  font-size: 14px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.sp_br {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  width: 100%;
  color: #fff;
  font-weight: 300;
  margin-bottom: 15px;
}
.ft_bg > img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 68%;
     object-position: 100% 68%;
}
.ft_bg .ft_wrap {
  background: #0073bd;
  padding: 30px 68px;
}
.ft_bg .ft_wrap a {
  color: #fff;
}
.ft_bg .ft_wrap .ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin-top: auto;
}
.ft_bg .ft_wrap .ft.w_base {
  margin: 0 auto;
}
.ft_bg .ft_wrap .ft .ft_ttl h1 {
  font-size: 24px;
  line-height: 1.3;
}
.ft_bg .ft_wrap .ft .ft_ttl p {
  margin-top: 10px;
  display: block;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.ft_bg .ft_wrap .ft_copy {
  font-size: 14px;
  text-align: right;
  line-height: 1.5;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 58px;
  height: 58px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: transparent;
  z-index: 100;
  background: #0073bd;
  border: 1px solid #fff;
}
.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: 6px;
  bottom: 0;
}
.pt .pt_btn:after {
  height: 6px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  margin-top: 100px;
}
.index_main h2 {
  margin-bottom: 0.4em;
  font-size: 48px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #0073bd;
}
.index_main h2 span {
  padding-left: 1em;
  font-size: 0.34em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1025px) and (max-width: 1340px) {
  .index_main {
    padding-top: 0;
  }
}

.index_slider {
  position: relative;
  width: 100%;
}
.index_slider img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
.index_slider .catchcopy_bg {
  position: absolute;
  top: 45%;
  left: 100px;
  transform: translate(0, -50%);
  color: #fff;
  z-index: 1;
}
.index_slider .catchcopy_bg .catchcopy {
  max-width: 100%;
  margin: 0 auto;
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.3;
}
.index_slider .catchcopy_bg .catchcopy p {
  padding: 0 0.3em 3px;
  color: #0073bd;
  font-weight: 600;
  font-size: 60px;
  font-family: "Noto Serif JP", serif;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1025px) and (max-width: 1340px) {
  .index_slider .catchcopy_bg {
    top: 25%;
    left: 0;
    transform: scale(0.8);
  }
}
.index_slider .index_slider {
  display: none;
}
.index_slider .index_slider.slick-initialized {
  display: block;
}

.index_message {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
.index_message .txt {
  margin-right: 80px;
}
.index_message img {
  width: 468px;
  height: 389px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
  filter: hue-rotate(6deg) saturate(1.5);
}
@media screen and (min-width: 1025px) and (max-width: 1340px) {
  .index_message {
    display: block;
    margin-bottom: 120px;
  }
  .index_message .txt {
    width: 100%;
    margin: 0;
    margin-bottom: 80px;
  }
  .index_message img {
    display: block;
    margin: 0 auto;
  }
}

.index_news .news_scrl {
  /*-- height: 310px;
  overflow: auto; -- */
}
.index_news .news_scrl dl {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px dotted #ccc;
  display: flex;
  flex-wrap: wrap;
}
.index_news .news_scrl dl:first-child {
  padding-top: 0;
}
.index_news .news_scrl dl dt {
  width: 110px;
  padding-left: 10px;
  color: #000;
}
.index_news .news_scrl dl dd {
  width: calc(100% - 110px);
  padding-right: 10px;
}
.index_news .news_scrl dl dd .icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_news .news_scrl dl dd .icon_new:before {
  content: "NEW";
}
.index_news .news_transition a {
  display: block;
  position: relative;
  color: #3473d1;
  font-weight: bold;
  text-decoration: none;
  margin-left: auto;
  transition: 0.3s;
  text-align: center;
  padding: 10px 0;
  width: 250px;
  border: solid 1px #3473d1;
  cursor: pointer;
}
.index_news .news_transition a:hover {
  transform: translateX(10px);
}

/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */
/*--
.index_slider img {
	width: 100%;
	max-height: 300px!important;
	-o-object-fit:cover!important;
	object-fit:cover;
	font-family:'object-fit: cover!important;'
} -- */
/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/*-- 活動報告　アーカイブ　archive -- */
.archive_news .news_scrl {
  /*-- height: 310px;
  overflow: auto; -- */
}
.archive_news .news_scrl dl {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px dotted #ccc;
  display: flex;
  flex-wrap: wrap;
}
.archive_news .news_scrl dl:first-child {
  padding-top: 0;
}
.archive_news .news_scrl dl dt {
  width: 110px;
  padding-left: 10px;
  color: #000;
}
.archive_news .news_scrl dl dd {
  width: calc(100% - 110px);
  padding-right: 10px;
}
.archive_news .news_scrl dl dd .icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.archive_news .news_scrl dl dd .icon_new:before {
  content: "NEW";
}

.main_report {
  width: 80%;
  margin: 0 auto;
}
.main_report .report_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.main_report .report_list .report_item {
  background: #fff;
  border-radius: 10px;
}
.main_report .report_list .report_item .report_link {
  text-decoration: none;
  transition: 0.5s;
}
.main_report .report_list .report_item .report_link:hover {
  opacity: 0.8;
}
.main_report .report_list .report_item .report_inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main_report .report_list .report_item .report_inner .report_thumbnail {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.main_report .report_list .report_item .report_inner .report_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_report .report_list .report_item .report_inner .report_text .report_date {
  color: #000;
}
.main_report .report_list .report_item .report_inner .report_text .report_headline {
  color: #000;
  margin-bottom: 0;
  font-weight: bold;
  font-size: 1.1em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 50px 0 40px;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #32a6f3;
  border-radius: 5px;
  color: #32a6f3 !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: #32a6f3;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #32a6f3;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon .mcon_ttl {
  position: relative;
  margin-bottom: 3em;
  border-radius: 40px;
  overflow: hidden;
}
.mcon .mcon_ttl img {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  filter: blur(1px);
}
.mcon .mcon_ttl h1 {
  width: 100%;
  min-height: 180px;
  margin: 0 auto;
  padding: 1.2em 0.5em 1em 40px;
  display: flex;
  align-items: center;
  font-size: 30px;
  color: #fff;
}
.mcon h2 {
  position: relative;
  margin: 1.5em 0 1em;
  padding: 0 0 0.7em;
  font-size: 1.7em;
  color: #0073bd;
  font-weight: 700;
  border-bottom: 2px solid #ebebeb;
}
.mcon h2:first-child {
  margin-top: 0;
}
.mcon h3 {
  margin: 1.5em 0 1em;
  padding: 0 0 0 15px;
  font-size: 1.5em;
  font-weight: 700;
  border-left: 4px solid #0073bd;
  line-height: 1.4;
}
.mcon h4 {
  position: relative;
  margin: 1.2em 0 0.5em;
  padding: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 700;
}
.mcon h4:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 50px;
  left: 0;
  bottom: 0;
  background: #383838;
}
.mcon h5,
.mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol, .mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li, .mcon ul li {
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
}
.mcon p {
  margin-bottom: 1em;
}/*# sourceMappingURL=style.css.map */