@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;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

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

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 160px;
  background: rgba(255, 255, 255, 0.3);
}
.hd_bg .hd {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  height: 18vh;
}
.hd_bg .hd .hd_logo {
  flex-shrink: 0;
  width: 10%;
  max-width: 120px;
}
.hd_bg .hd .hd_logo a {
  display: block;
  padding-left: 10px;
  color: #616161;
  font-size: 20px;
  line-height: 1.5;
}
.hd_bg .hd .hd_logo a span {
  font-size: 28px;
}
.hd_bg .hd .hd_logo img {
  position: absolute;
  top: -10px;
  left: -130px;
  transform: translate(-10%, 10%);
  margin: 0 100px 0 0;
  width: 200px;
}
.hd_bg#index_hd {
  height: 120px !important;
  background: transparent;
  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_bg {
  width: 100%;
  height: 100%;
  margin-left: 30px;
}
.nav_bg .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  overflow: visible;
}
.nav_bg .nav .nav_list {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  width: auto;
  flex: 1;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
}
.nav_bg .nav .nav_list > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 38px;
  background: #fff;
  color: #616161;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.5s ease;
  border: 1px solid #93b3dd;
}
.nav_bg .nav .nav_list > li > a:hover {
  background: #0f7ee9;
  color: #fff;
}
.nav_bg .nav .nav_list > li.current a {
  background: #0f7ee9;
  color: #fff;
}
.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: 0;
  z-index: 100;
  display: none;
  width: -moz-max-content;
  width: max-content;
  transition: All 0.5s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu {
  margin-top: 15px;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
  background: #0f7ee9;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li:first-of-type:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #0f7ee9;
  position: absolute;
  top: -8px;
  left: 1em;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: -1;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 10;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  background: rgba(255, 255, 255, 0.5);
}
.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: 100%;
  z-index: 100;
  display: none;
  width: 100%;
  background: #4787c5;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  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);
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover {
  background: rgba(0, 0, 0, 0.5);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.con_bg .con .main {
  order: 1;
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
}
.ft_bg .ft {
  padding: 40px 0 30px;
  text-align: center;
}
.ft_bg .ft .ft_logo {
  font-size: 24px;
  line-height: 1.3;
}
.ft_bg .ft .ft_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
  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: 30px;
  bottom: 30px;
  z-index: 1;
}
.pt .pt_wrap {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background: #B5B5B6;
  border: 1px solid #B5B5B6;
  border-radius: 100vh;
  transition: all 0.3s ease;
}
.pt .pt_wrap .pt_btn {
  position: relative;
  top: 5px;
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  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: 12px;
}
.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;
  color: #fff;
  font-size: 2.7vw;
  font-weight: 700;
  text-align: center;
  width: 100%;
  text-shadow: 2px 5px 3px #59595e;
  line-height: 1.3;
}
.index_slider_bg .index_slider .slider_subttl {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  font-size: 1.3vw;
  font-weight: 300;
  text-align: center;
  margin-bottom: 120px;
  text-shadow: 2px 3px 1px #59595e;
}
.index_slider_bg .index_slider .slider_subttl-2 {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  font-size: 1.3vw;
  font-weight: 300;
  text-align: center;
  margin-bottom: 160px;
  text-shadow: 2px 3px 1px #59595e;
}
.index_slider_bg .index_slider img {
  width: 100%;
  height: 50vh !important;
  -o-object-fit: cover !important;
  object-fit: cover;
}

.index_main {
  order: 1;
  width: 100%;
}
.index_main h2 {
  margin: 30px;
  font-size: 28px;
  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: 10px 0 40px;
  background: #F2F2F2;
}
.index_main .index_news .index_news_scrl {
  width: 670px;
  max-height: 380px;
  margin: 0 auto;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  display: flex;
  align-content: space-between;
  width: 100%;
  padding: 15px 0;
  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 {
  width: 100px;
  padding: 0 15px;
  color: #9A9A9A;
  font-size: 14px;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl {
  width: calc(100% - 120px);
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a {
  display: inline-block;
  color: #616161;
  text-decoration: underline;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a:hover {
  text-decoration: none;
}
.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.5em;
}
.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_wrap {
  display: flex;
}
.index_main .index_about,
.index_main .index_projectleader {
  margin-bottom: 40px;
}
.index_main .index_about_wrap,
.index_main .index_projectleader_wrap {
  align-items: normal;
  gap: 0 20px;
}
.index_main .index_about_con,
.index_main .index_projectleader_con {
  flex: 1 1 50%;
  padding: 20px;
}
.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: 100%;
  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: 100px;
}
.index_main .index_projectleader_con p {
  text-align: left;
  padding-bottom: 1rem;
}
.index_main .index_projectleader_img {
  float: right;
  margin: 0px 30px 30px 30px;
}
.index_main .index_projectleader_img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 20px 20px 0 #809cbb;
}
.index_main .index_border {
  padding: 5px;
  background: #F2F2F2;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_list .news_item {
  display: flex;
  align-content: space-between;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #D8D8D8;
}
.news_list .news_item:first-of-type {
  border-top: 1px solid #D8D8D8;
}
.news_list .news_item .news_item_date {
  width: 100px;
  padding: 0 15px;
  color: #9A9A9A;
  font-size: 14px;
}
.news_list .news_item .news_item_ttl {
  width: calc(100% - 120px);
}
.news_list .news_item .news_item_ttl a {
  display: inline-block;
  color: #616161;
  text-decoration: underline;
}
.news_list .news_item .news_item_ttl a:hover {
  text-decoration: none;
}
.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: 20px;
  margin-bottom: -40px;
  font-weight: 500;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon > section {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
}
.mcon > section > *:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.mcon h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 345px;
  padding-top: 120px;
  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: 60px;
  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: 18px;
}
.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: 900px;
  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;
}
.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: 22px;
  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: -30px;
  left: 15px;
  bottom: 36px;
  width: 2px;
  background: #0074c2;
}
.mcon .project ul.list > li > ul > li {
  background: #005b99;
  margin: 30px 0;
  padding: 2px 2px;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  position: relative;
  list-style-type: none;
}
.mcon .project ul.list > li > ul > li:hover a {
  background: #fff;
  color: #005b99;
  transition: 0.3s;
}
.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: 8px 12px;
  border-radius: 4px;
  transition: 0.3s;
}
.mcon .project ul.list li a h4 {
  margin: 0;
  font-size: 18px;
  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 h3 {
  margin-top: 40px;
}
.mcon .project h3.project_con_anchor {
  display: block;
  padding-top: 160px;
  margin-top: -160px;
}
.mcon .project .project-columns {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: flex-start;
  margin-top: 20px;
}
.mcon .project .project-columns .project-text {
  flex: 0 0 70%;
  max-width: 70%;
  font-size: 16px;
  line-height: 1.8;
}
.mcon .project .project-columns .project-image {
  flex: 0 0 30%;
  max-width: 30%;
  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_wrap {
  margin-bottom: 40px;
}
.mcon .news_con_wrap .news_con time {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 5px;
  color: #5b5b5b;
}
.mcon .news_con_wrap .news_con h3 {
  margin-top: 0;
  font-size: 18px;
}
.mcon .news_con_wrap .news_con {
  /* news_columns が無い記事にも適用 */
}
.mcon .news_con_wrap .news_con .news_con_text {
  margin-top: 10px;
  line-height: 1.8;
}
.mcon .news_con_wrap .news_con .news_columns {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: flex-start;
}
.mcon .news_con_wrap .news_con .news_columns .news_con_text {
  max-width: 70%;
}
.mcon .news_con_wrap .news_con .news_columns .news_con_image {
  flex: 0 0 30%;
  max-width: 30%;
  padding: 3px;
  background-color: #fff;
  overflow: hidden;
}
.mcon .news_con_wrap .news_con .news_columns .news_con_image img {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: auto;
}
.mcon .organization {
  position: relative;
  display: block;
}
.mcon .organization .orgmap-wrap figure img#orgMap {
  display: block;
}
.mcon .in-preparation {
  text-align: center;
  padding: 100px 0 0 0;
}/*# sourceMappingURL=style.css.map */