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

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

.pc_only {
  display: none;
}

.sp_only {
  display: block;
}

/*----------------------------------------------------------------------------
******************************************************************************
** color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.68);
}
.hd_bg .hd {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.hd_bg .hd .hd_logo {
  flex-shrink: 0;
  width: calc(100% - 12vw);
}
.hd_bg .hd .hd_logo a {
  display: block;
  padding-left: 10px;
  color: #616161;
  font-size: clamp(1.125rem, 0.841rem + 1.42vw, 1.75rem);
  line-height: 1.5;
}
.hd_bg .hd .hd_logo a br {
  display: none;
  padding-left: 10px;
}
.hd_bg .hd .hd_logo img {
  position: absolute;
  top: -16px;
  left: 12px;
  transform: translate(-10%, 10%);
  margin: 0 100px 0 0;
  width: 120px;
}
.hd_bg#index_hd {
  height: 60px !important;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.5s ease;
}
.hd_bg#index_hd .hd .hd_logo a {
  color: #fff;
  transition: all 0.5s ease;
}
.hd_bg#index_hd.bg {
  background: rgba(255, 255, 255, 0.68);
}
.hd_bg#index_hd.bg .hd .hd_logo a {
  color: #616161;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: -200%;
  left: 0;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  width: 100%;
  height: auto;
  max-height: calc(100% + 30px);
  padding: 60px 15px 30px;
  background: #636363;
  transition: All 0.8s ease;
}
.nav .nav_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.nav .nav_list > li {
  position: relative;
}
.nav .nav_list > li > a {
  position: relative;
  display: block;
  padding: 1em;
  background: #fff;
  color: #4787c5;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}
.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  background-color: rgb(12, 0, 165);
  color: #fff;
}
.nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 1.5em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #4787c5;
}
.nav .nav_list > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #4787c5;
}
.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: #4787c5;
}
.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 1.5em;
  background: rgba(0, 0, 0, 0.2);
  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 .child_wrap_btn {
  position: absolute;
  top: 0.75em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #4787c5;
}
.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: #4787c5;
}
.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.5);
  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_contact {
  margin-bottom: 40px;
}
.nav .nav_contact .ttl {
  display: none;
}
.nav .nav_contact .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 10px;
  background: #4787c5;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  border-radius: 50vh;
}
.nav .nav_contact .tel::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 16px;
  background: url(../images/icon_tel_white.png) no-repeat center center;
  background-size: contain;
}
.nav .nav_contact address {
  display: none;
}
.nav .nav_contact .sns {
  display: flex;
  justify-content: center;
  gap: 35px;
  width: 100%;
  max-width: 185px;
  margin: 20px auto 0;
}
.nav .nav_contact .sns li a img {
  width: 100%;
  height: auto;
}

.sp_nav_open {
  top: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: #4787c5;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 30%;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 30%;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding: 0;
}
.con .main {
  margin-bottom: 30px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
}
.ft_bg .ft {
  padding: 40px 0 30px;
  text-align: center;
}
.ft_bg .ft .ft_logo {
  font-size: 20px;
}
.ft_bg .ft .ft_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 12px;
}
.ft_bg .ft .ft_sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.ft_bg .ft_copy {
  padding: 20px 0;
  background: #4787c5;
  color: #fff;
  font-size: 11px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 1;
}
.pt .pt_wrap {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #B5B5B6;
  border: 1px solid #B5B5B6;
  border-radius: 100vh;
  transition: all 0.3s ease;
}
.pt .pt_wrap .pt_btn {
  position: relative;
  top: 3px;
  cursor: pointer;
  display: block;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
}
.pt .pt_wrap .pt_btn::before, .pt .pt_wrap .pt_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: #FFF;
}
.pt .pt_wrap .pt_btn::before {
  width: 1px;
  bottom: 0;
}
.pt .pt_wrap .pt_btn::after {
  height: 1px;
  right: 0;
}
.pt .pt_wrap .pt_ttl {
  position: relative;
  bottom: 0;
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: 10px;
}
.pt .pt_wrap:hover {
  background: #fff;
}
.pt .pt_wrap:hover .pt_btn::before, .pt .pt_wrap:hover .pt_btn::after {
  background: #4787c5;
}
.pt .pt_wrap:hover .pt_ttl {
  color: #4787c5;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider .slider_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 95%;
  color: #fff;
  font-size: 5.7vw;
  font-weight: 700;
  text-align: center;
  text-shadow: 2px 5px 3px #59595e;
}
.index_slider_bg .index_slider .slider_subttl {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  font-size: 2vw;
  font-weight: 300;
  text-align: center;
  margin-bottom: 120px;
  text-shadow: 2px 3px 1px #59595e;
  width: 85%;
}
.index_slider_bg .index_slider .slider_subttl-2 {
  position: absolute;
  top: 92%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  font-size: 2vw;
  font-weight: 300;
  text-align: center;
  margin-bottom: 160px;
  text-shadow: 2px 3px 1px #59595e;
  width: 85%;
}
.index_slider_bg .index_slider img {
  width: 100%;
  height: 65vw !important;
  -o-object-fit: fill;
     object-fit: fill;
}

.index_main h2 {
  margin: 30px;
  font-size: 18px;
  text-align: center;
}
.index_main h2::before {
  content: attr(data-text);
  display: inline-block;
  margin-bottom: 20px;
  color: #4787c5;
  font-family: "Libre Baskerville", serif;
  border-bottom: 2px solid #4787c5;
}
.index_main h2 span {
  display: block;
}
.index_main .index_news {
  padding: 60px 15px;
  background: #F2F2F2;
}
.index_main .index_news .index_news_scrl {
  width: 100%;
  max-height: 50vh;
  margin: 0 auto;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  width: 100%;
  padding: 10px 5px;
  border-bottom: 1px solid #D8D8D8;
}
.index_main .index_news .index_news_scrl .index_news_item:first-of-type {
  border-top: 1px solid #D8D8D8;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date {
  color: #404040;
  font-size: 14px;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl {
  margin-top: 5px;
}
.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";
}
.index_main .index_news .more {
  width: 220px;
  margin: 40px auto 0;
}
.index_main .index_news .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #4787c5;
  color: #fff;
  font-weight: 700;
  border: 2px solid #4787c5;
  border-radius: 100vw;
  transition: all 0.3s ease;
}
.index_main .index_news .more a:hover {
  background: #fff;
  color: #4787c5;
}
.index_main .index_about,
.index_main .index_projectleader {
  margin-bottom: 100px;
}
.index_main .index_about_con,
.index_main .index_projectleader_con {
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin: 40px 0;
}
.index_main .index_about_con h3,
.index_main .index_projectleader_con h3 {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
}
.index_main .index_about_con h3::before,
.index_main .index_projectleader_con h3::before {
  content: attr(data-text);
  display: inline-block;
  margin-bottom: 20px;
  color: #000;
  font-weight: 600;
  font-family: "Libre Baskerville", serif;
  border-bottom: 2px solid #4787c5;
}
.index_main .index_about_con h3 span,
.index_main .index_projectleader_con h3 span {
  display: block;
}
.index_main .index_about_img,
.index_main .index_projectleader_img {
  flex: 1 1 50%;
  text-align: center;
}
.index_main .index_about_img img,
.index_main .index_projectleader_img img {
  max-width: 85%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.index_main .index_about .more,
.index_main .index_projectleader .more {
  width: 220px;
  margin: 40px auto 0;
}
.index_main .index_about .more a,
.index_main .index_projectleader .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #4787c5;
  color: #fff;
  font-weight: 700;
  border: 2px solid #4787c5;
  border-radius: 100vw;
  transition: all 0.3s ease;
}
.index_main .index_about .more a:hover,
.index_main .index_projectleader .more a:hover {
  background: #fff;
  color: #4787c5;
}
.index_main .index_projectleader {
  margin-bottom: 80px;
}
.index_main .index_projectleader_img {
  order: 2;
  margin-top: 30px;
}
.index_main .index_projectleader_img img {
  max-width: 85%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 20px 20px 0 #809cbb;
}
.index_main .index_border {
  padding: 5px;
  background: #F2F2F2;
}

.index_side .index_bnr_list li {
  margin-bottom: 4px;
}
.index_side .index_bnr_list li a {
  padding: 16px 16px 16px 42px;
  border: 1px solid #000000;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  background: url(../images/icon_elink_black.png) no-repeat 16px center;
  color: #000000;
}
.index_side .index_bnr_list li a:hover {
  background-color: #000;
  background-image: url(../images/icon_elink_white.png);
  color: #FFF;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_list .news_item {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  width: 100%;
  padding: 10px 5px;
  border-bottom: 1px solid #D8D8D8;
}
.news_list .news_item:first-of-type {
  border-top: 1px solid #D8D8D8;
}
.news_list .news_item .news_item_date {
  color: #404040;
  font-size: 14px;
}
.news_list .news_item .news_item_ttl {
  margin-top: 5px;
}
.news_list .news_item .news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.5em;
}
.news_list .news_item .news_item_icon_new:before {
  content: "NEW";
}

.news_post_date {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  margin-bottom: -30px;
  padding: 0 15px;
  font-weight: 500;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon > section {
  padding: 60px 15px;
}
.mcon > section > *:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.mcon h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  padding-top: 60px;
  background: url(../images/ttl_bg.jpg) no-repeat center center;
  background-size: cover;
}
.mcon h1 span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  height: 100%;
  padding: 0 10px;
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: 30px;
  text-align: center;
  line-height: 1.3;
  text-shadow: 2px 5px 3px #081753;
  font-family: "Noto Sans JP";
  font-weight: 450;
}
.mcon h1 span::after {
  content: attr(data-text);
  display: block;
  color: #616161;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.875rem, 0.761rem + 0.57vw, 1.125rem);
}
.mcon h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto 30px;
  color: #4787c5;
  font-size: 24px;
}
.mcon h2::before {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  margin: 0 auto 15px;
  background: #4787c5;
}
.mcon h3 {
  display: flex;
  align-items: center;
  margin: 20px 0;
  padding-bottom: 10px;
  font-size: 20px;
  border-bottom: 1px solid #ddd;
}
.mcon h3::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: #fff;
  border-radius: 50vh;
  border: 3px solid #4787c5;
  flex: 0 0 10px;
}
.mcon h4 {
  display: flex;
  align-items: center;
  margin: 20px 0;
  font-size: 18px;
}
.mcon h4::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  margin-right: 10px;
  background: #4787c5;
}
.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 {
  aspect-ratio: 16/9;
  width: 100%;
  height: 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 {
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon {
  /*---***** project page *****---*/
}
.mcon .project {
  padding-top: 70px;
  padding-bottom: 0px;
}
.mcon .project_nav {
  margin: 0px auto;
  width: 100%;
  min-height: auto;
}
.mcon .project ul.list,
.mcon .project ul.list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.mcon .project ul.list > li {
  background: #ffffff;
  color: #000000;
  font-size: 24px;
  font-weight: bold;
  padding: 15px;
  position: relative;
  margin-bottom: 20px;
  list-style-type: none;
  margin-left: 0;
}
.mcon .project ul.list > li .parent-li {
  background: #005b99;
  color: #fff;
  border-radius: 4px;
  padding: 10px;
}
.mcon .project ul.list > li .parent-li h4 {
  display: block;
  align-items: center;
  margin: 0;
  font-size: 19px;
  border-bottom: 2px solid #ffef12;
  padding-bottom: 4px;
}
.mcon .project ul.list > li .parent-li h4::before {
  content: none;
}
.mcon .project ul.list > li .parent-li span {
  font-size: 16px;
  font-weight: 500;
  padding-left: 1em;
}
.mcon .project ul.list > li > ul {
  margin-top: 20px;
  padding-left: 40px;
  position: relative;
}
.mcon .project ul.list > li > ul::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 15px;
  bottom: 62px;
  width: 2px;
  background: #0074c2;
}
.mcon .project ul.list > li > ul > li {
  background: #005b99;
  margin: 20px 0;
  padding: 3px 3px;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  position: relative;
  list-style-type: none;
}
.mcon .project ul.list > li > ul > li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  width: 25px;
  height: 2px;
  background: #0074c2;
}
.mcon .project ul.list li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: block;
  padding: 6px;
}
.mcon .project ul.list li a h4 {
  display: block;
  align-items: center;
  margin: 0;
  font-size: 17px;
  border-bottom: 2px solid #ffef12;
  padding-bottom: 4px;
}
.mcon .project ul.list li a h4::before {
  content: none;
}
.mcon .project ul.list li a span {
  font-size: 14px;
}
.mcon .project ul.list li a:hover {
  background: #fff;
  color: #005b99;
  transition: 0.3s;
}
.mcon .project h3 {
  margin-top: 40px;
}
.mcon .project .project-columns {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  align-items: flex-start;
  margin-top: 20px;
}
.mcon .project .project-columns .project-text {
  font-size: 14px;
  line-height: 1.8;
  padding: 0 20px 0;
}
.mcon .project .project-columns .project-image {
  margin: 0 auto;
  padding: 10px;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.mcon .project .project-columns .project-image img {
  display: block;
  box-shadow: 20px 20px 0 #809cbb;
  margin: 30px auto;
}
.mcon {
  /*--- news_con page ---*/
}
.mcon section.news_con_anchor {
  display: block;
  padding-top: 160px;
  margin-top: -160px;
}
.mcon .news_con_wrap {
  margin-bottom: 40px;
}
.mcon .news_con time {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 5px;
  color: #5b5b5b;
}
.mcon .news_con h3 {
  margin-top: 0;
  font-size: 18px;
}
.mcon .news_con .news_columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.mcon .news_con .news_con_text {
  line-height: 1.8;
}
.mcon .news_con .news_con_image {
  padding: 3px;
  background: #fff;
}
.mcon .news_con .news_con_image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.mcon .organization {
  position: relative;
  display: block;
}
.mcon .organization .orgmap-wrap {
  width: 100%;
  overflow-x: auto; /* 横スクロール有効化 */
}
.mcon .organization .orgmap-wrap figure {
  margin: 0;
  display: inline-block;
}
.mcon .organization .orgmap-wrap figure img#orgMap {
  display: block;
  max-width: none; /* 自動縮小を無効化 */
  width: 700px; /* 元画像の幅を指定（画像サイズに合わせる） */
  height: auto;
}/*# sourceMappingURL=sp.css.map */