/******************************************************************************
******************************************************************************
**
** 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 {
  overflow-x: hidden;
}
.body_bg {
  display: none
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
/*.hd_bg {
	background: url(../images/hd_bg_bg.png) repeat-x top left
}
.hd {
	padding: 20px 10px
}
.hd_logo {
	display: flex;
	align-content: center;
	align-items: center;
	width: 260px;
}
.hd_logo img {
	height: auto;
	max-width: 100%;
}*/
.hd_bg {}
.hd {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px 20px 10px 5px;
  position: relative
}
.hd_logo {
  margin: 10px
}
.hd_logo img {
  width: 90%;
  height: auto
}
.hd_contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hd_contact_tel {}
.hd_contact_tel span {
  font-size: 14px;
  font-weight: bold;
}
.hd_contact_tel_number {
  font-size: 2.0em;
  font-weight: bold;
  line-height: 1.2;
  color: #4295DA;
  letter-spacing: -0.08em;
  position: relative;
  padding-left: 30px
}
.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: 0;
  left: 0;
}
.hd_contact_tel_number a {
  text-decoration: none;
  color: #4295DA
}
.hd_contact_mail {
  font-size: 1.0em;
  font-weight: 600;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 10px;
  padding-left: 40px;
  background: #4295DA;
  color: #fff;
  width: 200px;
  box-shadow: 0px 8px 8px -6px rgba(0, 0, 0, 0.3);
  position: relative
}
.hd_contact_mail:before {
  content: "";
  width: 18px;
  height: 14px;
  background: url(../images/img_mail.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 30%;
  left: 15px;
}
.hd_contact_mail a {
  display: block;
  text-decoration: none;
  color: #fff
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
/*.nav {
	background: #4295DA;
	color: #fff;
	height: calc(100% + 500px);
	padding-bottom: 500px;
	z-index: 100;
	width: 70%;
	overflow-x: none;
	overflow-y: auto;
	top: 0px;
	right: -70%;
	position: fixed;
	transition: All 0.5s ease
}*/
.nav {
  position: fixed;
  top: 0px;
  right: -100%;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  width: 100%;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  background: rgba(1, 157, 232, 0.9);
  color: #fff;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
}
.nav_list > li > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 1em 1em 1em 1.5em;
  text-decoration: none;
  position: relative;
}
.nav_list > li > a:hover, .nav_list > li > a.current {
  background-color: rgba(0, 0, 0, 0.2)
}
.nav_list > li > a::after {
  content: attr(data-text);
  display: block
}
.nav_list > li > a img {
  display: none
}
.nav_clist > li > a {
  background-color: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 13px;
  padding: 1em 1em 1em 2em;
  text-decoration: none
}
.nav_clist > li > a:hover, .nav_clist > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2)
}
.nav_glist > li > a {
  background-color: #164770;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 14px;
  padding: 1em 1em 1em 3em;
  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)
}
.sp_nav_open {
  right: 0 !important
}
.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 25px;
  right: 15px;
  margin-top: -5px;
  width: 36px;
  height: 24px
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  transition: all .4s;
  box-sizing: border-box
}
.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::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  content: 'MENU';
  display: block;
  width: 100%;
  padding-top: 20px;
  color: #000;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s
}
.sp_nav_trigger.sp_active::after {
  content: 'CLOSE';
  bottom: -25px;
  color: #fff
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
  background: #fff
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
  background: #fff
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
  background: #fff
}
.nav .nav_contact {
  margin: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
}
.nav .nav_contact .nav_contact_tel_txt {
  font-size: 14px;
  margin: 0 auto;
  color: #000;
  text-align: center
}
.nav .nav_contact .nav_contact_tel_number a {
  color: #4295DA;
  text-decoration: none
}
.nav .nav_contact .nav_contact_tel_number {
  font-size: 2.0em;
  font-weight: bold;
  color: #4295DA;
  position: relative;
  text-align: center
}
.nav .nav_contact .nav_contact_tel_number::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 29px;
  background: url(../images/img_tel.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 3px;
  margin-bottom: 6px
}
.nav .nav_contact .nav_contact_mail {
  font-size: 1.0em;
  font-weight: 600;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 10px;
  margin: 0 auto;
  padding-left: 70px;
  background: #4295DA;
  color: #fff;
  width: 260px;
  box-shadow: 0px 8px 8px -6px rgba(0, 0, 0, 0.3);
  position: relative
}
.nav .nav_contact .nav_contact_mail::before {
  content: "";
  width: 18px;
  height: 14px;
  background: url(../images/img_mail_sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 32%;
  left: 17%;
  /*transform: transrate:(0, -32%)*/
}
.nav .nav_contact .nav_contact_mail a {
  display: block;
  text-decoration: none;
  color: #fff
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding: 20px 10px 30px
}
.main {
  margin-bottom: 30px
}
.side_head {
  background-color: #EEE;
  color: #111;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 10px;
  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;
  font-size: 14px;
  padding: 12px 10px;
  text-decoration: none
}
.side_nav_list li a:hover {
  text-decoration: underline
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft {
  padding-top: 30px;
  padding-bottom: 30px
}
.ft_box_left {
  border-bottom: 1px solid #D3DBE7;
}
.ft img {
  max-width: 100% !important;
  height: auto
}
.ft_bg {
  /*background: url(../images/ft_bg_bg.png) no-repeat;*/
  background: #F3F6FB;
  padding: 30px 10px
}
.ft_bg p {
  font-size: 15px;
  margin-bottom: 8px
}
.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: 100%;
  border: 3px solid #fff;
  margin-top: 20px;
  margin-bottom: 20px
}
.ft_map iframe {
  width: 100%;
}
.ft_copy {
  font-size: 10px;
  text-align: center
}
.ft_nav ul li {
  margin-bottom: 28px
}
.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 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
}
.ft_lang_list {
  display: flex
}
.ft_lang_list li {
  width: calc(100% / 2)
}
.ft_lang_list a {
  font-size: 9px;
  color: #fff;
  background: #333;
  padding: 14px;
  display: block;
  text-decoration: none;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-left: 1px solid rgba(255, 255, 255, 0.6)
}
.ft_lang_list li:first-child a {
  border-left: none
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #333;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  right: 10px;
  position: fixed;
  width: 40px;
  z-index: 100;
}
.pt:hover {
  opacity: 0.6;
}
.pt_btn {
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  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: 5px;
  bottom: 0;
}
.pt_btn::after {
  height: 5px;
  right: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  margin-bottom: 20px;
}
.index_slider {}
.mainVisual_ph img {
  max-width: 100%;
  height: auto
}
.con .index_news {
  max-width: 100%;
  margin-bottom: 50px;
}
.index_side {
  max-width: 100%
}
.index_side img {
  max-width: 100%;
  height: auto
}
.index_side h2 {
  font-size: 34px;
  margin: 20px 10px 10px 10px;
}
.index_side span {
  display: block;
  font-size: 16px;
  color: #4295DA;
  margin-top: 0;
}
.index_side h2 span:before {
  content: url(../images/icon_h2.png);
  margin-right: 0.2em;
}
.bnr_list {
  background: #F3F9FC;
  padding: 20px
}
.bnr_list li {
  margin-bottom: 20px
}
.bnr_list li:first-child {
  margin-top: 12px
}
.bnr_list li:last-child {
  margin-bottom: 0
}
.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: 53px;
  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: 350px;
  overflow: auto;
}
.index_news_scrl_list {
  max-height: 500px;
  overflow: auto
}
/*一覧を見る*/
.news_box {
  border: 3px solid #4295DA;
  border-radius: 50px;
  padding: 18px;
  background: #fff;
  color: #4295DA;
  width: 100%;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-top: 30px
}
.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_slide {
  margin-bottom: 20px
}
/*.full-width {
  display: none
}*/
.h2_index_bg {
  display: none
}
.w_base_index .h2_index {
  font-size: 34px;
  padding: 10px;
  margin-top: 0
}
.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;
}
/*トップページ h2画像とテキスト入れ替え*/
.box_index {
  display: flex;
  flex-direction: column !important;
}

/*.box_index:nth-child(odd) {
  flex-direction: column-reverse !important;
}*/
.container .box_index:nth-child(2) {
  flex-direction: column-reverse !important;
}
.container02 .box_index:nth-child(2) {
  flex-direction: column-reverse !important;
}
.w_base_index .h3_index {
  font-size: 28px;
  font-weight: 500;
  margin: 10px
}
.w_base_index .h3_index:before {
  content: url(../images/icon_h3.png);
  display: block
}
.w_base_index .h3_index_txt {
  font-size: 18px;
  line-height: 2.0;
  margin: 10px
}
.img_index_h3 {
  box-shadow: 1px 36px 15px -2px #f2eeee;
  border-radius: 20px;
}
.img_index_h3 img {
  max-width: 100%;
  height: auto
}
.main_visual {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

/*見出し*/
.main_visual_ttl {
  position: relative;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.2;
  border: 1px solid blue;
  background: blue;
  color: #fff
}
/*テキストエリア*/
.main_visual_body {
  width: 100%;
}
.main_visual_ttl {
  font-size: 22px;
  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: 300px;
  overflow: auto
}
.index_pickup_item {
  border-bottom: 1px solid #4295DA;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  padding: 20px;
  width: 100%;
  font-size: 18px;
  font-weight: 900;
  position: relative
}
.index_pickup_item_date {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #4295DA;
  margin-bottom: 10px
}
.index_pickup_item_ttl {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px
}
.main_visual_ph img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px
}
.arrow_blue {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.6em;
  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.6em;
  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.6em;
  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;
}
/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.staff_box span {
  font-size: 1.4em;
  font-weight: 300 !important
}
.waku01 {
  border: 4px solid #4295DA;
  background: #f7f6fb;
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0 50px 0
}
.waku02 {
  border: 4px solid #D42D26;
  background: #f7f6fb;
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0 50px 0
}
.waku_inner {
  border: 1px solid #222;
  background: #fafdff;
  border-radius: 10px;
  padding: 30px 20px;
}
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  word-wrap: break-word
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease
}
.mcon h2 {
  position: relative;
  font-size: 44px;
  margin-bottom: 20px;
  margin-top: -50px;
  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: 20px 0;
  padding-left: 35px;
  line-height: 1.2
}
.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
}
img {
  max-width: 100% !important;
  height: auto
}
.page_img {
  border-radius: 20px;
}
.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;
}
.tbl_box {
  overflow: scroll;
}
.mcon .recruit_top {
  width: 100%;
  display: flex;
  gap: 20px;
}
.mcon .recruit_top img {
  width: calc((100% - 40px) / 3);
  border-radius: 20px;
}