@charset "utf-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて
** -- 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 {
	background: none;
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
  .hd_bg .swiper-slide:nth-child(1) img {
    object-position: 20% center;
  }

  .hd_bg .swiper-slide:nth-child(3) img {
    object-position: left center;
  }

.hd_bg .hd-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hd_bg .swiper-slide {
  width: 100%;
  height: 100%;
}

.hd_bg .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hd {
	position: relative;
	height: 160px;
}

.hd_logo{
  padding: 25px;
}
.hd_logo a {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

.hd_logo a:hover {
  color: #ffffff;
  text-decoration: none;
}


.page_hd_bg {
	position: relative;
	background: url(../images/hd_bg.png)  top center;
	background-size: cover;
}
.page_hd {
	position: relative;
	height: 120px;
}
.page_hd_logo {
  padding: 25px;
}
.page_hd_logo a:hover {
  color: #ffffff;
  text-decoration: none;
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
	box-shadow: inset 0 0 5px 5px #222;
	background: #333;
	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_list>li>a {
	border-bottom: none;
	font-size: 1.5em;
	color: #fff;
	font-weight: bold;
	display: block;
	padding: 0.5em;
	text-decoration: none;
	position: relative
}
.nav_list>li>a:hover {
	box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.3);
}
.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: 1.3em;
	padding: 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: rgba(0, 0, 0, 0.7);
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	display: block;
	font-size: 1.1em;
	padding: 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: 46px;
	height: 34px;
	background: #fff;
}
.sp_nav_trigger span {
	display: inline-block;
	position: absolute;
	left: 10%;
	width: 80%;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
	transition: all .4s;
	box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
	top: 5px;
}
.sp_nav_trigger span:nth-of-type(2) {
	top: 15px;
	z-index: 1;
}
.sp_nav_trigger span:nth-of-type(3) {
	bottom: 5px;
	z-index: 1;
}
.sp_nav_trigger::after {
	position: absolute;
	left: 0;
	bottom: -15px;
	content: 'MENU';
	display: block;
	width: 100%;
	padding-top: 20px;
	background: #fff;
	color: #000;
	font-size: 10px;
	text-decoration: none;
	text-align: center;
	transition: all 0.4s;
}
.sp_nav_trigger.active {
	background: none;
}
.sp_nav_trigger.active::after {
	content: 'CLOSE';
	bottom: -25px;
	background: none;
	color: #fff
}
.sp_nav_trigger.active span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
	background: #fff
}
.sp_nav_trigger.active span:nth-of-type(2) {
	opacity: 0;
	background: #fff
}
.sp_nav_trigger.active span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
	background: #fff
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
	padding: 0 10px;
}
.main {
	margin-bottom: 30px
}
.con_bg {
}
.con_bg h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(1.5em, 3vw, 2em);
	padding: 30px 0;
	background-color: #f0f0f0;
	background-size: cover;
}
.con_bg h1 span {
	display: inline-block;
	margin: 0 0 0 15px;
	font-size: clamp(1em, 2vw, 2em);
	font-weight: normal;
}
.con {
	flex-wrap: wrap;
	justify-content: space-between;
	background: #fff;
}
.main {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
	background: url(../images/ft_bg.png) no-repeat;
	background-size: cover;
}
.ft {
	position: relative;
	padding: 30px 0 10px;
}

.ft_logo{
  padding: 25px 10px;
}
.ft_logo a {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

.ft_logo a:hover {
  color: #ffffff;
  text-decoration: none;
}


.ft_con {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 70px;
}
.ft_con .ft_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 0 0;
}
.ft_con .ft_nav .ft_nav_list>li {
	margin: 0 0 5px
}
.ft_con .ft_nav .ft_nav_list>li>a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}
.ft_con .ft_bnr {
    position: relative;
    width: 540px;
}
.ft_con .ft_bnr ul {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.ft_con .ft_bnr ul>li {
	width: calc(100% / 3 - 5px);
}
.ft_con .ft_bnr ul>li>a {
	position: relative;
	display: block;
	padding: 10px 5px;
	background: #fff;
	color: #636363;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}
.ft_con .ft_bnr ul>li>a:after {
	position: absolute;
	top: 0;
	right: 5px;
	content: url(../images/icon_elink_gray.png);
}
.ft_copy {
	color: #fff;
	font-size: 12px;
	text-align: center;
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/

.pt {
	position: absolute;
	top: 30px;
	right: 10px;
	width: 30px;
	height: 70px;
	z-index: 100;
}
.pt_btn {
	border-radius: 50%;
	color: #FFF;
	cursor: pointer;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	font-size: 15px;
	font-weight: bold;
	height: 100%;
	line-height: 1.3;
	opacity: 0.8;
	transition: all 0.3s ease;
	text-decoration: none;
	text-align: center;
	width: 100%;
}
.pt_btn:before {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50% ,0);
	content: url(../images/pt_arrow.png);
}
.pt_btn:hover {
	opacity: 0.6;
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/

.index_hd {
	position: relative;
    z-index: 2; /* スライダーより前面に */
	height: 100vh;
	padding: 20px 10px
}
.index_hd .eyecatch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: #fff;
	font-size: clamp(1.2em, 4vw, 2em);
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
	z-index: 3;
}
.index_hd .eyecatch span {
	display: block;
	font-family: 'Roboto', sans-serif;
	font-size: 130%;
	margin: 0 0 10px;
}
.index_hd .fuwafuwa {
	-webkit-animation: fuwafuwa 1.8s linear infinite;
	animation: fuwafuwa 1.8s linear infinite;
}
@keyframes fuwafuwa {
	0% {
		margin-bottom:-4px;
		opacity:1;
	}
	50% {
		margin-bottom:4px;
		opacity:0.7;
	}
	100% {
		margin-bottom:-4px;
		opacity:1;
	}
}
.index_hd .button_down {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50% ,0);
	display: block;
	text-align: center;
	text-decoration: none;
	color: #FFF;
	z-index: 100;
	transition: All 0.5s ease;
}
.index_hd .button_down {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50% ,0);
	display: block;
	text-align: center;
	text-decoration: none;
	color: #FFF;
	font-size: 15px;
	font-weight: bold;
	z-index: 100;
	transition: All 0.5s ease;
	z-index: 1;
}
.index_hd .button_down:after {
	content: url(../images/pt_arrow.png);
	display: block;
	transform: rotate(-180deg);
}

.index_main {
	padding: 10px 10px 0;
	background: #fff;
}

.index_info {
	margin: 0 0 50px;
}
.index_info h2 {
	flex-direction: column;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	color: #001746;
	font-size: 38px;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 0px;
}
.index_info h2 span {
	display: block;
	margin: -10px 0 0;
	font-size: 14px;
	font-weight: normal;
}
.index_info_con {
	display: flex;
	flex-wrap: wrap;
	margin: 30px 0 0;
}
.index_info_con dl {
	display: flex;
	width: 100%;
	margin: 0 0 20px;
}
.index_info_con dl dt {
	display: flex;
	align-items: center;
	padding: 10px 6px;
	background: #001746;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-size: 22px;
	text-align: center;
}
.index_info_con dl dt span {
	display: block;
	margin: 0 0 -5px;
	font-size: 14px;
}
.index_info_con dl dd {
	display: flex;
	align-items: center;
	margin: 0 0 0 10px;
	font-size: 16px;
}
.index_info_new {
	display: inline-block;
	color: #C00;
	font-size: 0.9em;
	font-weight: bold;
	margin-left: 0.3em
}
.index_info_new:before {
	content: "NEW"
}

.index_con {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.index_con div {
    width: 100%;
    margin: 0 0 20px;
}
.index_con div h2 {
	color: #001746;
	font-size: 38px;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 20px;
}
.index_con div h2 span {
	display: block;
	margin: -10px 0 0;
	font-size: 14px;
	font-weight: normal;
}
.index_con div figure img {
    width: 100%;
}
.index_con div a {
	position: relative;
	display: block;
}
.index_con div a span {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0 10px;
	background: #000;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
}

.index_message {
	margin: 0 10px;
	padding: 55px 0;
	background: url(../images/index_bg.png);
	background-size: cover;
}
.index_message_eyecatch {
	margin: 0 0 30px;
	font-size: clamp(1em, 3vw, 2em);
	font-weight: bold;
	text-align: center;
	line-height: 1.1;
}
.index_message_eyecatch span {
    display :block;
    margin: 0 0 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 120%;
}
.index_message p {
	padding: 0 20px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	line-height: 2.2;
}

.index_access {
    margin: 0 10px;
    padding: 55px 0 0;
    background: #fff;
}
.index_access h2 {
	padding: 0 10px;
	color: #001746;
	font-size: 38px;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 0px;
}
.index_access h2 span {
	display: block;
	margin: -10px 0 0;
	font-size: 14px;
	font-weight: normal;
}
.index_access p {
	margin: 15px 0 20px;
	padding: 0 10px;
	font-size: 16px;
}
#index_access_map{
    position:relative;
    width:100%;
    height:0;
    padding-top:75%;
}
#index_access_map iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.more {
	width: 90%;
	margin: 30px auto;
}
.more a {
	position: relative;
	display: block;
	width: 100%;
	padding: 17px 0;
	color: #001746;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	border: 1px solid #001746;
}
.more a:after {
	position: absolute;
	right: 10px;
	transform: translate(0, -50%);
	display: inline-block;
	content: url(../images/more_arrow.png);
	width: 22px;
	height: 6px;
	transition: all 0.5s ease;
}
/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/

.table_design {
border-collapse: collapse;
width: 100%;
}
.table_design th, .table_design td {
border-bottom: 2px solid #c1c7c6;
padding: 1em;
font-size: 1.2em;
}
.table_design th {
border-bottom: 2px solid #001746;;
font-weight: bold;
text-align: center;
width: 20%;
min-width: 4em;
}

/* =========================
   カード本体
========================= */
.card_list {
    width: 96%;
    margin: 1em auto 2em;
    background: #f0f0f0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    display: block;
    text-decoration: none !important;
    color: inherit;
}

.card_list * {
    text-decoration: none;
}


/* =========================
   画像
========================= */
.card_figure {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card_figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* =========================
   テキスト
========================= */
.card_title {
    font-size: 1.6em;
	margin-top: 0 !important;
    color: #333;
}

.card_text{
	text-align: center;
	padding: 20px;
	color: #001d4f;
}
/* =========================
   採用情報
========================= */
.recruit{
max-width:900px;
margin:auto;
font-family:sans-serif;
line-height:1.7;
padding: 0 10px;
}



.hero_content h1{
  font-size: clamp(1.5em, 4vw, 3em);
  font-weight: bold;
  line-height: 1.4;
  background-color: initial;
  word-break: keep-all;
  padding: 0;
}


.hero{
  position:relative;
  height:400px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  overflow:hidden;
	padding: 0 20px;
}

.hero_content{
position:relative;
z-index:2;
}

.hero::after{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.4);
z-index:1;
}


.hero_slider {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
  overflow:hidden;
}

.hero_slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: fadeSlide 15s infinite;
}

.hero_slider .slide:nth-child(1) { animation-delay: 0s; }
.hero_slider .slide:nth-child(2) { animation-delay: 4s; }
.hero_slider .slide:nth-child(3) { animation-delay: 8s; }
.hero_slider .slide:nth-child(4) { animation-delay: 12s; }

@keyframes fadeSlide {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  40%  { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}


.hero_buttons{
  display: flex;
  gap: 16px;              /* ← ここで余白作る */
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;       /* ← 上に余白追加 */
}

.hero_btn{
  flex: 1;                 /* ← 均等に広がる */
  min-width: 220px;        /* ← 小さくなりすぎ防止 */

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 14px 20px;

  background:#001746;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-weight:bold;
  font-size:1.2em;

  text-align: center;
word-break: keep-all;
}

.lead{
font-size: clamp(1.2em, 4vw, 2em);
font-weight: bold;
line-height: 1.4;
margin-bottom: initial !important;
word-break: keep-all;

}

.tag{
color:#666;
}

section{
margin:60px 0;
}

.map{
margin-top:30px;
border-radius:8px;
overflow:hidden;
text-align: center;
margin-top: 3em;
height: 300px;
}


h2{
font-size:26px;
padding-left:10px;
margin-bottom:25px;
}
/* =========================
   共通リセット
========================= */
.diamond_list,
.check_list{
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.diamond_list,
ul.check_list{
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

ul.diamond_list li,
ul.check_list li{
  list-style: none !important;
}

/* =========================
   チェックリスト
========================= */
.check_list li{
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.check_list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:2px;

  width:14px;
  height:14px;

  border-radius:50%;
  border:2px solid #86cddf;

  color:#86cddf;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:12px;
  font-weight:bold;
  background:#fff;
}

/* =========================
   ダイヤリスト
========================= */
.diamond_list{
  margin-top:10px;
}

.diamond_list li{
  position:relative;
  padding-left:20px;
  margin-bottom:6px;
}

.diamond_list li::before{
  content:"◇";
  position:absolute;
  left:0;
  color:#86cddf;
}

.company table{
width:100%;
border-collapse:collapse;
}

.company th,
.company td{
padding:14px 0;
border-bottom:1px dotted #ccc;
}

.company th{
width:160px;
text-align:left;
font-weight:600;
color:#555;
}

.company td{
color:#333;
}

.job{
border:1px solid #ddd;
margin-bottom:15px;
border-radius:6px;
overflow:hidden;
}

.job_body{
padding:20px;
}

/* =========================
   summary 矢印カスタム（iPhone対策）
========================= */
.job summary{
  position: relative;
  padding:15px 15px 15px 40px;
  font-weight:bold;
  cursor:pointer;
  background:#f5f5f5;

  list-style: none;
}

.job summary::-webkit-details-marker{
  display:none;
}

/* ▶ */
.job summary::before{
  content:"";
  position:absolute;
  left:15px;
  top:50%;
  transform:translateY(-50%) rotate(0deg);

  width:0;
  height:0;

  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
  border-left:8px solid #001746;

  transition:.2s;
}

/* ▼（開いたとき） */
.job[open] summary::before{
  transform:translateY(-50%) rotate(90deg);
}


.photo_slider{
display:flex;
gap:20px;

overflow-x:auto;
scroll-snap-type:x mandatory;

padding-bottom:10px;
}

.photo{
flex:0 0 300px;

scroll-snap-align:start;
}

.photo img{
width:100%;
border-radius:8px;
}

.photo p{
font-size:13px;
text-align:center;
margin-top:8px;
}


/* =========================
   CTAセクション専用
========================= */
.cta_section{
  padding: 60px 20px;
  background: #f8f9fb;
}

.cta_section .cta{
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta_section p{
  font-size: clamp(1.6em, 4vw, 2em);
  margin-bottom: 30px;
}

.cta_section .cta_buttons{
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta_section .cta_btn{
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  color: #fff;
  transition: .2s;
}

.cta_section .tel{
  background: #001746;
}

.cta_section .mail{
  background: #001746;
}

.cta_section .cta_btn:hover{
  transform: translateY(-2px);
  opacity: 0.9;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	line-height: 1.6;
	word-wrap: break-word
}
.mcon a img:hover {
	opacity: 0.8;
	transition: all 0.3s ease
}
.mcon h1 {
	font-size: 20px;
	margin-bottom: 20px;
}

.mcon h2 {
	position: relative;
	padding: 0 0 0.2em;
	font-size: 18px;
	margin-bottom: 10px;
	margin-top: 20px;
	border-bottom: 3px solid #ccc;
}
.mcon h2:after{
	position: absolute;
	bottom: -3px;
	left: 0;
	z-index: 2;
	content: '';
	width: 20%;
	height: 3px;
	background-color: #001d4f;
}
.mcon h3 {
	font-size: 16px;
	margin-bottom: 8px;
	margin-top: 16px;
	border-bottom: 1px dotted #ccc;
}
.mcon h4 {
	font-size: 1.2em;
	margin-bottom: 5px;
	margin-top: 5px;
}
.mcon h5, .mcon h6 {
	margin-bottom: 2px;
	margin-top: 5px;
}
.mcon hr {
	border: none;
	border-top: 1px dotted #000
}
.mcon iframe {
	max-width: 100%
}
.mcon img {
	max-width: 100%;
	height: auto
}
.mcon ol {
	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 {
	list-style-type: disc;
	margin-bottom: 0.5em
}
