@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** SPスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
body {
  display: none;
}

html, body {
  position: relative;
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.6;
}

.con_bg {
  width: 100%;
  margin: 0 auto;
}

.w_base {
  margin: 0 auto 0 0;
}

.index_main,
.main {
  padding: 0 20px 80px;
}

.pc_only {
  display: none;
}

.sp_only {
  display: block;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: sticky;
  top: 0;
  height: 100%;
  padding: 15px 20px 10px;
  background: #fff;
  z-index: 10;
}
.hd_bg a {
  text-decoration: none;
}
.hd_bg .hd_logo a {
  transition: 0.3s;
  color: #3e3e3e !important;
  display: flex;
  justify-content: space-betweens;
  align-items: center;
}
.hd_bg .hd_logo a:hover {
  opacity: 0.7;
  text-decoration: none !important;
}
.hd_bg .hd_logo img {
  width: 35%;
  height: auto;
  margin-right: 10px;
}
.hd_bg .hd_logo .hd_ttl {
  font-size: 20px;
  line-height: 1.1;
}
.hd_bg .hd_logo .hd_ttl span {
  display: block;
  font-size: 15px;
  letter-spacing: 0.07em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
nav {
  width: 60%;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  position: fixed;
  top: 0px;
  right: -60%;
  background: #0073bd;
  overflow-x: none;
  overflow-y: auto;
  z-index: 100;
  transition: All 0.5s ease;
  box-shadow: 1px 1px 5px rgb(0, 0, 0);
}
@media screen and (min-width: 750px) and (max-width: 1025px) {
  nav {
    width: 40%;
  }
}

.nav_list {
  height: 100%;
  padding: 6em 1em;
  /* メニュー（親） */
}
.nav_list > li {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  z-index: 1000;
  line-height: 1.3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  /* 子要素を持つメニュー（親）の場合 */
}
.nav_list > li > a {
  display: block;
  padding: 0.8em 2.1em 0.8em 0.5em;
  color: #fff !important;
}
.nav_list > li > a > span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #d9db79;
}
.nav_list > li.has_clist {
  position: relative;
}
.nav_list > li.has_clist .sub-menu-trigger {
  position: absolute;
  top: 1.25em;
  right: 0;
  z-index: 10;
  width: 30px;
  height: 30px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
.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: #0073bd;
}
.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: #fff;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li {
  border-left: none !important;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li > a {
  display: block;
  padding: 0.9em 10px;
  text-decoration: none;
  color: #151515 !important;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li:last-child {
  border: none;
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu {
  transition: All 0.5s ease;
  box-shadow: inset 0 0 3px 3px rgba(0, 0, 0, 0.15);
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li {
  position: relative;
  border-bottom: 1px solid #ccc;
}
.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: rgb(215, 215, 215);
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > .sub-menu > li {
  border-bottom: 1px solid #b8b7b7;
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > .sub-menu > li > a {
  font-size: 14px;
}
.nav_list > li.current {
  border-color: #0073bd;
  color: #0073bd;
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger,
.sp_nav_trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.sp_nav_trigger {
  position: fixed;
  top: 25px;
  right: 13px;
  width: 30px;
  height: 23px;
  cursor: pointer;
  z-index: 999;
  transform: scale(0.8);
}
.sp_nav_trigger:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all 0.75s;
}
.sp_nav_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0073bd;
  border-radius: 4px;
}
.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.active {
  width: 16px;
  right: 18px;
}
.sp_nav_trigger.active span {
  background: #fff;
}
.sp_nav_trigger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(45deg);
}
.sp_nav_trigger.active span:nth-of-type(2) {
  left: 60%;
  opacity: 0;
  animation: trigger_active 0.8s forwards;
}
.sp_nav_trigger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.sp_nav_trigger.active:after {
  border: 3px solid #fff;
}
@keyframes trigger_active {
  100% {
    height: 0;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.sp_br {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  width: 100%;
  color: #fff;
  font-weight: 300;
  margin-bottom: 5px;
}
.ft_bg > img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 68%;
     object-position: 100% 68%;
}
.ft_bg .ft_wrap {
  background: #0073bd;
  padding: 20px 0;
}
.ft_bg .ft_wrap a {
  color: #fff;
}
.ft_bg .ft_wrap .ft {
  height: 100%;
  text-align: center;
}
.ft_bg .ft_wrap .ft.w_base {
  margin: 0 auto;
}
.ft_bg .ft_wrap .ft .ft_ttl h1 {
  font-size: 20px;
  line-height: 1.3;
}
.ft_bg .ft_wrap .ft .ft_ttl p {
  margin-top: 20px;
  display: block;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.ft_bg .ft_wrap .ft_copy {
  margin-top: 20px;
  font-size: 9.5px;
  line-height: 1.5;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 10px;
  bottom: 40px;
  z-index: 1;
  background: #0073bd;
  border: 1px solid #fff;
}
.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 6px;
  transform: rotate(45deg) scale(0.8);
  position: relative;
}
.pt_btn:before, .pt_btn:after {
  background-color: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt_btn:before {
  width: 7px;
  bottom: 0;
}
.pt_btn:after {
  height: 7px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  padding-top: 20px;
}
.index_main h2 {
  margin-bottom: 0.4em;
  font-size: 32px;
  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;
}

.index_slider {
  position: relative;
  margin-bottom: 2em;
}
.index_slider img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_slider .catchcopy_bg {
  position: absolute;
  top: calc(100% - 60px);
  right: 0;
  width: 280px;
  min-height: 130px;
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 40px 0 0 40px;
  z-index: 1;
}
.index_slider .catchcopy_bg .catchcopy {
  padding: 1em 12px 1.3em 2em;
  line-height: 1.6;
}
.index_slider .catchcopy_bg .catchcopy p {
  color: #0073bd;
  font-weight: 600;
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 750px) and (max-width: 1025px) {
  .index_slider {
    margin-bottom: 10em;
  }
  .index_slider .catchcopy_bg {
    width: 500px;
    min-height: 200px;
    top: calc(100% - 100px);
  }
  .index_slider .catchcopy_bg .catchcopy {
    padding-left: 3em;
  }
  .index_slider .catchcopy_bg .catchcopy p {
    font-size: 40px;
  }
}

.index_message {
  margin-bottom: 4em;
}
.index_message .txt {
  margin-bottom: 2em;
}
.index_message img {
  width: 80%;
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
  filter: hue-rotate(6deg) saturate(1.5);
}
@media screen and (min-width: 750px) and (max-width: 1025px) {
  .index_message {
    display: flex;
    justify-content: space-between;
  }
  .index_message .txt {
    margin-right: 2em;
  }
  .index_message img {
    width: 300px;
  }
}

.index_news .news_scrl {
  /*-- height: 310px;
  overflow: auto; -- */
}
.index_news .news_scrl dl {
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px dotted #ccc;
}
.index_news .news_scrl dl:first-child {
  padding-top: 0;
}
.index_news .news_scrl dl dt {
  color: #0073bd;
}
.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: 100%;
  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: 100%;
  margin: 0 auto;
}
.main_report .report_list {
  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: 0 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(3px);
}
.mcon .mcon_ttl h1 {
  width: 100%;
  min-height: 160px;
  margin: 0 auto;
  padding: 1em 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-align: center;
}
.mcon h2 {
  position: relative;
  margin: 2em 0 1.3em;
  padding: 0 0 15px;
  color: #0073bd;
  font-size: 1.3em;
  font-weight: 700;
  border-bottom: 2px solid #ebebeb;
  line-height: 1.4;
}
.mcon h2:first-child {
  margin-top: 0;
}
.mcon h3 {
  margin: 1.3em 0 1em;
  padding: 0 0 0 15px;
  font-size: 1.2em;
  font-weight: 700;
  border-left: 4px solid #0073bd;
  line-height: 1.4;
}
.mcon h4 {
  position: relative;
  margin: 1.5em 0 1em;
  padding: 0 0 10px;
  font-size: 1.1em;
  font-weight: 700;
}
.mcon h4:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 50px;
  left: 0;
  bottom: 0;
  background: #383838;
}
.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,
.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=sp.css.map */