/******************************************************************************
******************************************************************************
**
** 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 {
  overflow-x: hidden;

}

.w_base {
 width: 1280px;
 max-width: 100%;
 margin: 0 auto!important;
}
.w_base_index {
 width: 960px;
 max-width: 100%;
 margin: 0 auto!important;
}
.page_bg {
  background-image: url("../images/h2_bg.png");
  background-repeat: no-repeat;
  background-position: top 189px center
}
.container {
  padding: 20px 0px 20px 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  max-width: 800px;
  margin: 0 auto;
  background-image: url("../images/index_h2_bg_01.png");
  background-repeat: no-repeat;
  background-position: top 0 center 0
}
.container02 {
  padding: 50px 0px 100px 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  max-width: 800px;
  margin: 0 auto;
  background-image: url("../images/index_h2_bg_02.png");
  background-repeat: no-repeat;
  background-position: top 0 center 0
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {}
.hd {
  max-width: 1180px;
  margin: 0 auto;
  /*height: 120px;*/
		height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hd_logo {}
.hd_logo img {
  width: 100%;
  height: auto
}
.hd_contact {
  display: flex;
		justify-content: space-between;
  align-items:baseline
}
.hd_contact_tel {
  line-height: 1.3;
		margin-right: 10px
}
.hd_contact_tel span {
  font-size: 14px;
  font-weight: bold;
}
.hd_contact_tel_number {
  font-size: 1.5em;
  font-weight: bold;
  color: #4295DA;
  letter-spacing: -0.05em;
  position: relative;
  padding-left: 35px
}
.hd_contact_tel_number::before {
  content: "";
  width: 28px;
  height: 29px;
  background: url(../images/img_tel.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0px;
  left: 0;
  vertical-align: bottom /*transform: transrate:(0, -12%)*/
}
.hd_contact_tel_number a {
  text-decoration: none;
  color: #4295DA
}

.hd_contact_mail span {
  font-size: 14px;
  font-weight: bold;
		color: #000;

}
.hd_contact_mail {
  line-height: 1.3;
  font-size: 1.5em;
  font-weight: bold;
  color: #4295DA;
  letter-spacing: -0.05em;
  position: relative;
  padding-left: 35px
}
.hd_contact_mail::before {
  content: "";
  width: 28px;
  height: 29px;
  background: url("../images/img_mail.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 25px;
  left: 0;
  vertical-align: bottom
}
.hd_contact_mail a {
  display: block;
  text-decoration: none;
  color: #4295DA
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
  /*background: url(../images/nav_bg_bg.png) repeat-x #000;*/
  position: relative;
  margin: 0 auto !important;
  border-top: #4295DA 1px solid;
  border-bottom: #4295DA 1px solid;
  margin-bottom: 30px;
  max-width: 100%
}
.nav {
  /*background: url(../images/nav_bg.png) no-repeat;
	overflow: visible;*/
  margin: 0 auto;
  padding: 0 50px;
  max-width: 100%
}
.nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%
}
.nav_list li {
  width: calc(100%-100px / 15);
  font-size: 1.6em;
  font-weight: bold;
  padding: 18px 0 16px 0;
}
.nav_list .dot {
  color: #4295DA !important;
}
.nav_list li a {
  text-decoration: none;
  color: #000;
}
.nav_list img {
  transition: All 0.5s ease;
}
.nav_list li a:hover {
  color: #4295DA;
}
.nav_list a.current {
  color: #4295DA;
}
.nav_list > li {
  position: relative;
  z-index: 1000
}
.nav_list > li > a {
  display: block;
  text-align: center;
}
.nav_list > li > a:hover, .nav_list > li > a.current {}
.nav_list > li:hover .nav_clist {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate
}
@-webkit-keyframes nav_active {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@keyframes nav_active {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
.nav_clist {
  display: none;
  transition: All 0.5s ease;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0
}
.nav_clist > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  position: relative
}
.nav_clist > li > a {
  background-color: #000;
  color: #fff;
  display: block;
  padding: 10px;
  text-decoration: none
}
.nav_clist > li > a:hover, .nav_clist > li > a.current {
  opacity: 0.8
}
.nav_clist > li:hover .nav_glist {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate
}
/*.nav_glist {
  display: none;
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%
}
.nav_glist > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4)
}
.nav_glist > li > a {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: block;
  padding: 10px;
  text-decoration: none
}
.nav_glist > li > a:hover, .nav_glist > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2)
}*/
/*サブメニュー*/
.nav_list li {
  position: relative
}
.nav_list li ul {
  display: none;
  position: absolute;
  margin-top: 16px;
  width: 180px;
  font-size: 10px !important;
  font-weight: 100 !important;
  background-color: #fff;
  padding-left: 0
}
.nav_list li ul a {
  color: #222;
  display: block
}
.nav_list li ul a:hover {
  color: #4295DA;
}
.nav_list li:hover > ul {
  display: block
}
.nav_list li ul li {
  margin: 0 auto;
  padding: 9px;
  list-style-type: none;
}

.nav_list li ul li {
  border-bottom: 1px solid #4295DA;
  border-left: 1px solid #4295DA;
  border-right: 1px solid #4295DA;
}
.nav_list li ul li:first-child {
  border-top: 1px solid #4295DA;
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  background: url(../images/con_bg.png) no-repeat;
}
.con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 30px 0 30px ;
  max-width: 100%;
}
.main {
  /*-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;*/
  margin: 0 auto !important;
  width: 1280px;
  max-width: 100%;
}
.side {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 230px;
}
.side h3 {
  background-color: #EEE;
  color: #111;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 8px;
  text-align: center
}
.side_nav_list li a {
  background: url(../images/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #CCC;
  color: #111;
  display: block;
  padding: 12px 10px;
  text-decoration: none
}
.side_nav_list li a:hover, .side_nav_list li a.current {
  text-decoration: underline
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  /*background: url(../images/ft_bg_bg.png) no-repeat;*/
  background: #F3F6FB;
  /*padding-left: 50px;
  padding-right: 50px*/
}
.ft_bg p {
  font-size: 15px;
  margin-bottom: 8px
}
.ft {
  padding: 30px 0;
}
.ft_box {
  margin-left: 50px
}
.ft_logo img {
  max-width: 100% !important;
  height: auto
}
.ft_tel {
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px
}
.ft_tel span {
  font-size: 22px;
  font-weight: bold
}
.ft_fax {
  font-size: 14px;
  font-weight: bold;
}
.ft_fax span {
  font-size: 16px;
  font-weight: bold;
}
.ft_mail {
  font-size: 14px;
  font-weight: bold;
}
.ft_mail span {
  font-size: 16px;
  font-weight: bold;
}
.ft_add {
  font-size: 14px;
  font-weight: bold;
}
.ft_add span {
  font-size: 16px;
  font-weight: 600;
}
.ft_map {
  width: 90%;
  border: 3px solid #fff;
  margin-top: 20px
}
.ft_map iframe {
  width: 100%;
}
.ft_box_left {
  border-right: 1px solid #D3DBE7;
  margin-right: 50px
}
.ft_copy {
  font-size: 10px;
  text-align: right;
  margin-top: 100px
}
.ft_nav ul li {
  margin-bottom: 28px;
  white-space: nowrap;
}
.ft_nav li a {
  font-size: 1.2em;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}
.ft_nav li a:hover {
  color: #4295DA;
  text-decoration: none
}
.ft_nav ul li ul li {
  margin-bottom: 10px
}
.ft_nav ul li ul li a {
  font-size: 1.0em;
  font-weight: normal;
  color: #000;
  text-decoration: none;
}
.ft_nav ul li ul li:first-child {
  margin-top: 20px
}
.ft_nav ul li ul li {
  position: relative;
  padding-left: 15px
}
.ft_nav ul li ul li:before {
  display: block;
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 2px;
  background: #4295DA;
  margin-right: 10px
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #333;
  bottom: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  right: 30px;
  position: fixed;
  width: 60px;
  z-index: 100;
}
.pt:hover {
  opacity: 0.6;
}
.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  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 {
  /*-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;*/
  width: 1280px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}
.index_news {
  /*-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;*/
  width: 100%
}
.index_link {
  /*-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2*/
  width: 100%;
		display: block!important
}
.index_link img {
  max-width: 100%;
  height: auto
}
.index_link h2 {
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 0;
}
.index_link span {
  display: block;
  font-size: 16px;
  color: #4295DA;
  margin-top: 0;
}
.index_link h2 span:before {
  content: url(../images/icon_h2.png);
  margin-right: 0.2em;
}
.bnr_list {
  background: #F3F9FC;
  padding: 30px
}
.bnr_list img {}
.bnr_list li {
  margin-bottom: 30px;
}
.bnr_list li:first-child {
  margin-top: 12px
}
.bnr_list li:last-child {
  margin-bottom: 10px
}
.bnr_list a:hover {
  opacity: 0.7
}
.index_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em
}
.index_news_item_icon_new:before {
  content: "NEW"
}
.index_news h2 {
  font-size: 34px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.index_news span {
  display: block;
  font-size: 16px;
  color: #4295DA;
  margin-top: 0;
}
.index_news h2 span:before {
  content: url(../images/icon_h2.png);
  margin-right: 0.2em;
}
.index_news_item {
  border-bottom: 1px solid #E5E5E5;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  padding: 21px 0;
  width: 100%;
  font-size: 1.2em;
  position: relative
}
.index_news_item:first-child {
  border-top: 1px solid #E5E5E5;
}
.index_news_item_date {
  width: 130px;
  font-size: 16px;
  font-weight: 700;
  color: #4295DA;
  margin-bottom: 10px
}
.index_news_item_ttl {
  width: calc(100% - 50px);
}
.index_news_item_ttl:before {
  content: url(../images/icon_arrow_gray.png);
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 40px;
  margin-right: 1.0em;
}
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_news_scrl {
  max-height: 420px;
  overflow: auto
}
.index_news_scrl_list {
  max-height: 800px;
  overflow: auto
}
/*一覧を見るボタン*/
.news_box {
  border: 3px solid #4295DA;
  border-radius: 50px;
  padding: 18px;
  background: #fff;
  color: #4295DA;
  width: 350px;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  position: relative
}
.news_box .news_btn a {
  display: block;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
.news_btn::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 35px;
  width: 5px;
  height: 4px;
  border-top: 2px solid #4295DA;
  border-right: 2px solid #4295DA;
  transform: rotate(45deg);
  transition: all .3s;
}
.news_btn::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 35px;
  width: 20px;
  height: 2px;
  background: #4295DA;
  transition: all .3s;
}
.news_btn:hover::before {
  right: 1%;
}
.news_btn:hover::after {
  right: 1%;
}
.index_slider_bg {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 200px;
  margin: 0 auto !important;
  width: 1280px
}
.index_slider_bg img {
  width: 1439px;
  height: 640px;
}
.index_h3_bg_01 {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: red;
  max-width: 100%;
}
.index_h3_bg_01 {
  background: url("../images/index_h3_bg_01.png") no-repeat top 0 left 0;
  height: 600px
}
img {
  max-width: 100% !important;
  height: auto
}
.w_base_index .h2_index {
  font-size: 26px;
  margin-bottom: 10px;
  margin: 20px auto
}
.w_base_index .h2_index span {
  display: block;
  font-size: 16px;
  color: #4295DA;
  margin-top: 0;
}
.w_base_index .h2_index span::before {
  content: url(../images/icon_h2.png);
  margin-right: 0.2em;
}
.w_base_index .h2_index_bg {
  position: relative;
  background: url(../images/h3_bg_01.png) no-repeat top 20px right 0;
  max-width: 100%;
  height: auto;
  z-index: -1;
}
.w_base_index .h3_index {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 16px;
}
.w_base_index .h3_index:before {
  content: url(../images/icon_h3.png);
  display: block;
}
.w_base_index .h3_index_txt {
  font-size: 12px;
  line-height: 2.0
}
.w_base_index .img_index_h3 {
  box-shadow: 1px 36px 15px -2px #f2eeee;
  border-radius: 20px;
}
.w_base_index .img_index_h3 img {
  max-width: 100% !important;
  height: auto;
}
/*-- 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
******************************************************************************
----------------------------------------------------------------------------*/

.main_visual {
  position: relative;
  margin: 0 auto;
  margin-bottom: 0;
  width: 1180px
}
.main_visual img {
 width: 100vw!important
}


.main_visual_ph {
  margin: 0 auto
}
.main_visual_ph img {
  max-width: none;
  width: 100%;
  /*max-height: 640px;*/
  margin: 0 auto;
  object-fit: cover;
  object-position: left top;
  object-position: top center;
}
/*テキストエリア*/
.main_visual_body {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 30%;
		opacity: 0.7
		
}
.main_visual_ttl {
  font-size: 20px;
  font-weight: bold;
  border: 1px solid #4295DA;
  background: #4295DA;
  color: #fff;
  padding: 10px;
}
.main_visual_ttl::after {
  content: "";
  display: block;
  border-bottom: 1px solid #fff;
  width: 100%
}
.main_visual_con {
  border: 1px solid #fff;
  background: #fff;
  padding: 10px;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2);
}
.index_pickup_scrl {
  max-height: 100px;
  overflow: auto
}
.index_pickup_item {
  border-bottom: 1px solid #4295DA;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  padding: 20px;
  width: 100%;
  position: relative
}
.index_pickup_item_date {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  color: #4295DA;
  margin-bottom: 10px
}
.index_pickup_item_ttl {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px
}
.arrow_blue {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.0em;
  font-weight: bold;
}
.arrow_blue::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 5px;
  height: 4px;
  border-top: 2px solid #4295DA;
  border-right: 2px solid #4295DA;
  transform: rotate(45deg);
}
.arrow_blue::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 20px;
  height: 2px;
  background: #4295DA;
}
.arrow_blue a {
  text-decoration: none;
  color: #000;
}
.arrow_blue a:hover {
  text-decoration: none;
  color: #4295DA;
}
.arrow_orange {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.0em;
  font-weight: bold;
}
.arrow_orange::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 5px;
  height: 4px;
  border-top: 2px solid #DE8E09;
  border-right: 2px solid #DE8E09;
  transform: rotate(45deg);
}
.arrow_orange::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 20px;
  height: 2px;
  background: #DE8E09;
}
.arrow_orange a {
  text-decoration: none;
  color: #000;
}
.arrow_orange a:hover {
  text-decoration: none;
  color: #DE8E09;
}
.arrow_red {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.0em;
  font-weight: bold;
}
.arrow_red::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 5px;
  height: 4px;
  border-top: 2px solid #E07F7C;
  border-right: 2px solid #E07F7C;
  transform: rotate(45deg);
}
.arrow_red::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 20px;
  height: 2px;
  background: #E07F7C;
}
.arrow_red a {
  text-decoration: none;
  color: #000;
}
.arrow_red a:hover {
  text-decoration: none;
  color: #E07F7C;
}
.staff_box span {
  font-size: 1.4em;
  font-weight: 300 !important
}
.waku01 {
  border: 4px solid #4295DA;
  background: #f7f6fb;
  border-radius: 20px;
  padding: 20px 40px;
  margin: 20px 0 50px 0
}
.waku02 {
  border: 4px solid #D42D26;
  background: #f7f6fb;
  border-radius: 20px;
  padding: 20px 40px;
  margin: 20px 0 50px 0
}
.waku_inner {
  border: 1px solid #222;
  background: #fafdff;
  border-radius: 10px;
  padding: 30px 20px;
}
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word
}
.mcon a img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease
}
.mcon h2 {
  position: relative;
  font-size: 44px;
  margin-bottom: 20px;
  margin-top: 20px;
  padding-left: 35px
}
.mcon h2:before {
  display: inline;
  content: url(../images/h2_mcon.png);
  position: absolute;
  top: 0;
  left: 0;
}
.mcon h3 {
  position: relative;
  font-size: 36px;
  margin-bottom: 20px;
  margin-top: 20px;
  padding-left: 35px
}
.mcon h3:before {
  display: inline;
  content: url(../images/h3_mcon.png);
  position: absolute;
  top: 0;
  left: 0;
}
.mcon h4 {
  margin: 30px 0 20px 0;
  padding: 0 .5em;
  font-size: 24px;
  font-weight: 500;
  border-left: 3px solid #4295DA;
}

.mcon h5 {
  position: relative;
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 5px;
  padding: 10px 0 10px 20px;
  border-top: 1px solid #99B3DD;
  border-bottom: 1px solid #99B3DD;
}
.mcon h5:before {
  display: block;
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 10px;
  height: 3px;
  background: #99B3DD;
}
.mcon h6 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 15px;
  padding-left: 15px
}
.mcon h6:before {
  content: "\02022";
  position: absolute;
  top: 0;
  left: 0;
  color: #4295DA;
}
.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 {
  font-size: 16px !important;
  line-height: 2.0 !important;
  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
}
.page_img {
  border-radius: 30px;
}
.voice_box {
  position: relative;
  padding: 0.5em 2em;
  margin: 1.5em 0 3.0em 0;
}
.voice_box:before, .voice_box:after {
  content: '';
  width: 20px;
  height: 30px;
  position: absolute;
  display: inline-block;
}
.voice_box:before {
  border-left: solid 2px #4295DA;
  border-top: solid 2px #4295DA;
  top: 0;
  left: 0;
}
.voice_box:after {
  border-right: solid 2px #4295DA;
  border-bottom: solid 2px #4295DA;
  bottom: 0;
  right: 0;
}
.voice_box p {
  font-size: 1em;
  margin: 0;
  padding: 0;
}
.tbl_box table {
  width: 1180px;
}
.mcon .recruit_top {
  display: flex;
  gap: 20px;
  width: 1440px;
  margin: calc(50% - 720px);
  min-width: 100%;
}
@media screen and (max-width: 1440px) {
  .mcon .recruit_top {
    width: 100%;
    margin: auto;
  }
}
.mcon .recruit_top img {
  width: calc((100% - 40px) / 3);
  border-radius: 20px;
}
.slider_slick{
  width: 100%;
  margin: 0 auto;
}

.slide{
  height:300px;
  display:flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slick-active .slide {
  opacity: 1; 
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white; 
  opacity: 0; 
  transition: opacity 0.5s ease-in; 
  pointer-events: none; 
}

.overlay.show{
  opacity: 1;
}

.slider_slick img{
  width: 100%;
  display: block;
}

.staff_image{
    width: 400px;
    height: auto;
    position:relative;
    margin-left: 100px;
    display: flex;

}