@charset "UTF-8";
/* CSS Document */

@font-face {
  font-family: "YuGothic M";
  src: local("Yu Gothic Medium");
}

/* =================================
 reset
================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}

body{ margin:0px; padding:0px}
body{
	color:#000;
}
p{ margin:0px; padding:0px}
a{color:#333;}

img{
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
*a:hover{
	text-decoration: none;
}
a img:hover{
	opacity: 0.6;
}
@media print{
	body {
		-webkit-print-color-adjust: exact;
		width: 1190px; 
		zoom: 0.8; 
	  }
	  /* 改ページをいれる場合 */
	  section {
		page-break-before: always; 
	  }
	  section + section.new-none:not(:root) {
		page-break-before: avoid; 
	  }
	  .new-page {
		page-break-before: always; 
	  }
}

/* 電話番号リンク禁止
---------------------------------------------------- */
@media (min-width: 751px),print {
	a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	}
}
@media (max-width: 751px){
	a[href*="tel:"]{
		text-decoration: none;
		color: inherit;
	}
}

/* ----------------------------------------------------------------------
 inner
---------------------------------------------------------------------- */
.innerOrigin{
	width:calc(100% - 30px);
	max-width:1000px;
	margin-left: auto;
	margin-right: auto;
}
.inner768{
	max-width:768px;
	width:calc(100% - 30px);
	margin-left: auto;
	margin-right: auto;
}

/* ----------------------------------------------------------------------
 角丸
---------------------------------------------------------------------- */
.radius10{
	border-radius: 10px;		/* CSS3草案 */
	-webkit-border-radius: 10px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 10px;	/* Firefox用 */
}
.radius15{
	border-radius: 15px;		/* CSS3草案 */
	-webkit-border-radius: 15px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 15px;	/* Firefox用 */
}
.radius20{
	border-radius: 20px;		/* CSS3草案 */
	-webkit-border-radius: 20px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 20px;	/* Firefox用 */
}

/* ----------------------------------------------------------------------
 flexbox
---------------------------------------------------------------------- */
.flexOrigin{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: stretch;    /*全ての要素の高さを揃える*/
}
.space-between{
	justify-content: space-between; /*均等に間隔をあける*/
}
.flex-wrap{
	flex-wrap: wrap; /*flex繰り返し*/
}
.row-reverse{
	flex-direction:row-reverse;	/*flex逆順*/
}
@media screen and (max-width:767px)  {
	.flex-block{
		display: block; /*スマホ時フレックス解除*/
	}
}

@media print, screen and (min-width:768px),print  {
	.flexBox02{
		width:48%;
	}
	.flexBox03{
		width:30%;
	}
	.flexBox04{
		width:23%;
	}
}
@media screen and (max-width:767px)  {
	.flexBox02{
		width:100%;
		margin-bottom: 20px;
	}
	.flexBox03{
		width:100%;
		margin-bottom: 20px;
	}
	.flexBox02:last-child,.flexBox03:last-child{
		margin-bottom: 0;
	}
	.flexBox04{
		width:46%;
		margin-bottom: 20px;
	}
	.flexBox04:nth-child(3),.flexBox04:nth-child(4){
		margin-bottom: 0;
	}
}

/* ----------------------------------------------------------------------
 float
---------------------------------------------------------------------- */
.left,.leftPc{
	float:left;
}
.right,.rightPc{
	float:right;
}

@media screen and (max-width:750px)  {
	.leftPc,.rightPc{
		width:100%;
	}
}

/* ----------------------------------------------------------------------
 タブレット以上のみ表示
---------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
	.pc_only{
	display:none !important;
	}
}

/* ----------------------------------------------------------------------
 スマホ以下のみ表示
---------------------------------------------------------------------- */
@media screen and (min-width: 768px),print {
	.sp_only{
	display:none !important;
	}
}

/* ----------------------------------------------------------------------
 フォント
---------------------------------------------------------------------- */
/*サイズ（%）*/
.font50 {
	font-size: 50% !important;
}
.font60 {
	font-size: 60% !important;
}
.font70 {
	font-size: 70% !important;
}
.font80 {
	font-size: 80% !important;
}
.font90 {
	font-size: 90% !important;
}
.font100 {
	font-size: 100% !important;
}
.font110 {
	font-size: 110% !important;
}
.font120 {
	font-size: 120% !important;
}
.font130 {
	font-size: 130% !important;
}
.font150 {
	font-size: 150% !important;
}
.font180 {
	font-size: 180% !important;
}
.font200 {
	font-size: 200% !important;
}
.font230 {
	font-size: 230% !important;
}
.font250 {
	font-size: 250% !important;
}

/*サイズ（px）*/
.font12px{
	font-size: 12px !important;
}
.font14px{
	font-size: 14px !important;
}
.font16px{
	font-size: 16px !important;
}
.font18px{
	font-size: 18px !important;
}
.font20px{
	font-size: 20px !important;
}
.font25px{
	font-size: 25px !important;
}
.font30px{
	font-size: 30px !important;
}
.font35px{
	font-size: 35px !important;
}
.font40px{
	font-size: 40px !important;
}
.font45px{
	font-size: 45px !important;
}
@media screen and (min-width: 768px),print {
	.font12-14px{
		font-size: 14px !important;
	}
	.font14-16px{
		font-size: 16px !important;
	}
	.font15-20px{
		font-size: 20px !important;
	}
	.font15-18px{
		font-size: 18px !important;
	}
	.font16-18px{
		font-size: 18px !important;
	}
	.font16-20px{
		font-size: 20px !important;
	}
	.font18-20px{
		font-size: 20px !important;
	}
	.font18-25px{
		font-size: 25px !important;
	}
	.font20-22px{
		font-size: 22px !important;
	}
	.font20-25px{
		font-size: 25px !important;
	}
	.font20-30px{
		font-size: 30px !important;
	}
	.font22-30px{
		font-size: 30px !important;
	}
	.font25-30px{
		font-size: 30px !important;
	}
	.font30-35px{
		font-size: 35px !important;
	}
}
@media screen and (max-width: 767px) {
	.font12-14px{
		font-size: 12px !important;
	}
	.font14-16px{
		font-size: 14px !important;
	}
	.font15-20px{
		font-size: 15px !important;
	}
	.font15-18px{
		font-size: 15px !important;
	}
	.font16-18px{
		font-size: 16px !important;
	}
	.font16-20px{
		font-size: 16px !important;
	}
	.font18-20px{
		font-size: 18px !important;
	}
	.font18-25px{
		font-size: 18px !important;
	}
	.font20-22px{
		font-size: 20px !important;
	}
	.font20-25px{
		font-size: 20px !important;
	}
	.font20-30px{
		font-size: 20px !important;
	}
	.font22-30px{
		font-size: 22px !important;
	}
	.font25-30px{
		font-size: 25px !important;
	}
	.font30-35px{
		font-size: 30px !important;
	}
}

/* =================================
フォントファミリー
================================= */

.yu_font{
	font-family:"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
}
.yugo_font{
	font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
}

/* ----------------------------------------------------------------------
行間調整
---------------------------------------------------------------------- */
.lh10{
	line-height:1.0em !important;
}
.lh12{
	line-height:1.2em !important;
}
.lh15{
	line-height:1.5em !important;
}
.lh18{
	line-height:1.8em !important;
}
.lh20{
	line-height:2em !important;
}

/* ----------------------------------------------------------------------
 文字揃え
---------------------------------------------------------------------- */
.txtCenter{
	text-align:center;
}
.txtLeft{
	text-align:left;
}
.txtRight{
	text-align:right;
}
.txtJustify{
	text-align:justify;
}

.txtCenterPc{
	text-align:center;
}
@media screen and (max-width: 767px) {
	.txtCenterPc{
		text-align:left;
	}
}


/* ----------------------------------------------------------------------
 文字色
---------------------------------------------------------------------- */
.white{
	color:#fff;
}
.blk{
	color:#000;
}
.red{
	color:#ff0000;
}
.blue{
	color:#295687;
}
.navy{
	color:#06265a;
}
.gold{
	color:#988545;
}
.yellow{
	color:#ffff00;
}

/* ----------------------------------------------------------------------
 文字スタイル
---------------------------------------------------------------------- */
.bold{
	font-weight: bold;
}
.normal{
	font-weight: normal;
}

/* ----------------------------------------------------------------------
文字間
---------------------------------------------------------------------- */
.ls01{
	letter-spacing: 0.1em;
}
.ls02{
	letter-spacing: 0.2em;
}

/* ----------------------------------------------------------------------
 PC・スマホ・タブレットのみ改行
---------------------------------------------------------------------- */

@media print, screen and (min-width: 768px) {
	.kaigyouTab {
		display: none;
	}
	.kaigyouSp {
		display: none;
	}
}
@media screen and (max-width: 767px) and (min-width : 641px){
	.kaigyouPc {
		display: none;
	}
	.kaigyouSp {
		display: none;
	}
}
@media screen and (max-width: 640px){
	.kaigyouPc {
		display: none;
	}
}
@media screen and (min-width: 480px),print{
	.kaigyouSpMini {
		display: none;
	}
}

/* ----------------------------------------------------------------------
 margin・padding
---------------------------------------------------------------------- */
/*margin top*/
.mt00 {
  margin-top: 0px;
}
.mt05 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mt35 {
  margin-top: 35px;
}
.mt40 {
  margin-top: 40px;
}
.mt45 {
  margin-top: 45px;
}
.mt50 {
  margin-top: 50px;
}
.mt80 {
  margin-top: 80px;
}
.mt100 {
  margin-top: 100px;
}
/*margin bottom*/
.mb00 {
  margin-bottom: 0px;
}
.mb05 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb45 {
  margin-bottom: 45px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb100 {
  margin-bottom: 100px;
}

/*padding top*/
.pt05 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.pt35 {
  padding-top: 35px;
}
.pt40 {
  padding-top: 40px;
}
.pt45 {
  padding-top: 45px;
}
.pt50 {
  padding-top: 50px;
}
.pt80 {
  padding-top: 80px;
}
.pt100 {
  padding-top: 100px;
}
/*padding bottom*/
.pb05 {
  padding-bottom: 5px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb25 {
  padding-bottom: 25px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb35 {
  padding-bottom: 35px;
}
.pb40 {
  padding-bottom: 40px;
}
.pb45 {
  padding-bottom: 45px;
}
.pb50 {
  padding-bottom: 50px;
}
.pb80 {
  padding-bottom: 80px;
}
.pb100 {
  padding-bottom: 100px;
}
.pd10{
	padding: 10px;
}
.pd15{
	padding: 15px;
}
.pd20{
	padding: 20px;
}
.pd25{
	padding: 25px;
}
.pd30{
	padding: 30px;
}

/* ----------------------------------------------------------------------
 画像
---------------------------------------------------------------------- */
img.img100{
	width:100%;
	display:block;
}
img.imgCenter{
	max-width: 100%;
	display:block;
	margin-left:auto;
	margin-right:auto;
}
img.imgLeft{
	max-width: 100%;
	display:block;
	margin-right:auto;
}
.contentCenter{
	display:inline-block;
}

/* ----------------------------------------------------------------------
 背景色
---------------------------------------------------------------------- */
.bgWhite{
	background:#fff;
}
.bgGray{
	background:#f2f2f2;
}

/* ----------------------------------------------------------------------
 ボタン
---------------------------------------------------------------------- */
.btn250{ /*ボタンW250*/
	width:100%;
	max-width:250px;
}
.btn300{ /*ボタンW300*/
	width:100%;
	max-width:300px;
}
.btn480{ /*ボタンW300*/
	width:100%;
	max-width:480px;
}
.btn100w{ /*ボタンW100%*/
	width:100%;
	max-width:100%;
}

/*ボタン（上から背景がするっと降りてくる）W300*/
.button00 {
  display: inline-block;
  width:100%;
  height: 50px;
  text-align: center;
  text-decoration: none !important;
  line-height: 47px;
  outline: none;
  font-size:16px;
  cursor: pointer;
}
.button00::before,
.button00::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button00,
.button00::before,
.button00::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
a.button00:hover{
	text-decoration:none;
}

/*ボタン矢印 >*/
.button00 span{
	display:block;
	position:relative;
}
.button00 span::after{
	position:absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f054";
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}


/*ボタン01（白背景：黒文字）*/
.button01 {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border: 2px solid #000;
  color: #000;
  overflow: hidden;
}
.button01:hover {
  color: #fff;
}
.button01::after {
  top: -100%;
  width: 100%;
  height: 100%;
}
.button01:hover::after {
  top: 0;
  background-color: #000;
}

/* ----------------------------------------------------------------------
 見出し
---------------------------------------------------------------------- */
.midashiIco{
	text-align: center;
	padding-bottom: 30px;
	margin-bottom: 30px;
	position: relative;
}
.midashiIco::after{
	position: absolute;
	content: url(../images/ico_tit.png);
	bottom:0;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

/* ----------------------------------------------------------------------
 ページ内リンク（Jquery必須）
---------------------------------------------------------------------- */
@media screen and (min-width: 768px),print{
	a.scroll_point {
	 height: 1px;
	 margin-top: -100px;
	 padding-top: 100px;
	 display: block;
	}
}
@media screen and (max-width: 767px){
	 a.scroll_point {
	 height: 1px;
	 display: block;
	 margin-top: -75px;
	 padding-top: 75px;
	}
}

/* ----------------------------------------------------------------------
 マーカーアニメーション
---------------------------------------------------------------------- */ 

.marker-animation.active{
    background-position: -100% .5em;
}
.marker-animation {
    background-repeat: repeat-x;
    background-size: 200% .8em;
    background-position: 0 .5em;
    transition: all 2s ease;
}
.marker-animation01{/*黄色*/
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(255,255,0) 50%);
    background-image: -moz-linear-gradient(left, transparent 50%, rgb(255,255,0) 50%);
    background-image: -ms-linear-gradient(left, transparent 50%, rgb(255,255,0) 50%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(255,255,0) 50%);
    background-image: linear-gradient(left, transparent 50%, rgb(255,255,0) 50%);
}

/* ----------------------------------------------------------------------
 スクロールフェード（Jquery必須）
---------------------------------------------------------------------- */
/*アニメーション要素のスタイル*/
.animation{
	opacity : 0;
	visibility: hidden;
	transition: 1s;
	transform: translateY(50px);
}
  /*アニメーション要素までスクロールした時のスタイル*/
.active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
@media print{
    .animation{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ----------------------------------------------------------------------
 上部のコンテンツと重ねる
---------------------------------------------------------------------- */
.up30{
	position:relative;
	top:-30px;
}
.up50{
	position:relative;
	top:-50px;
}
.shadow {
  box-shadow: 0 3px 3px 3px rgba(0, 0, 0, .2);
}
.upContent{
	width:90%;
	margin-left:auto;
	margin-right:auto;
	padding:20px;
	box-sizing:border-box;
	background:#fff;
}

/* ----------------------------------------------------------------------
 フッター
---------------------------------------------------------------------- */
.footer{
	width: 100%;
}
.copyright{
	background: #003257;
	height: 50px;
}
.copyright p{
	text-align: center;
	font-size: 12px;
	color: #fff;
	line-height: 50px;
}

/* =================================
 トップへ戻るボタン
================================= */
#pageTop {
	position: fixed;
	bottom: 30px;
	right: 20px;
	z-index: 9999;
}
#pageTop i {
}
#pageTop a {
	display: block;
	color: #988545;
	font-weight: normal;
	font-size:30px;
	text-decoration: none;
	text-align: center;
	background:#06265a;
	width:45px;
	height:45px;
	line-height: 45px;
	border:1px #988545 solid;
	box-sizing: border-box;
}
#pageTop a span{
	font-size:12px;
	font-weight:normal;
	display: block;
}
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
}

/* ----------------------------------------------------------------------
 チャットボット
---------------------------------------------------------------------- */
a.botchan_open{
	cursor: pointer;
}

/* ----------------------------------------------------------------------
 ヘッダー
---------------------------------------------------------------------- */
header{
	background: #fff;
	height:80px;
	width:100%;
}
.headerInner{
	width:100%;
	max-width:1920px;
	margin-left: auto;
	margin-right: auto;
}
header h1 img{
	position: relative;
	top:13.5px;
	margin-left: 15px;
}
header h1{
	float: left;
}
.headInfo{
	float: right;
}
@media screen and (max-width: 1200px) {
	header h1 img{
		display: block;
		width: 180px;
		top:10px;
	}
}
/*ヘッダー（インフォメーション）部分*/
@media screen and (min-width: 1200px) ,print{
	.head_info{
		float:right;
		width:455px;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		align-items: stretch; 
		justify-content:space-between;
	}
	.head_info_pc{
		height:80px;
	}
	.head_info_sp{
		display:none;
	}
	.head_info01{
		width:330px;
		padding-top: 5px;
	}
	p.headTelPc::before{
		content:url(../images/ico_tel.png);
		position:relative;
		top:3px;
		margin-right: 5px;
	}
	.head_info02{
		width:120px;
	}
	.head_info02 a{
		position:relative;
		width:100%;
		height:100%;
		display:block;
		background:#988545;
		box-sizing:border-box;
		transition : all 0.5s ease 0s;
	}
	.head_info02 a:hover{
		background:#003257;
	}
	.headMailIco{
		position:absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		width:100%;
	}
}
@media screen and (max-width: 1200px) {
	header{
		height: 55px;
	}
	.head_info_pc{
		display:none;
	}
	.head_info_sp{
		width:85px;
		position:absolute;
		top:5px;
		right:15px;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		align-items: stretch; 
		justify-content:space-between;
	}
	.head_info01,.head_info02{
		width:40px;
	}
}


/* ----------------------------------------------------------------------
 メインビジュアル
---------------------------------------------------------------------- */
.mv{
	position: relative;	
}
.mvImg{	
	height: 872px;
}
.mvImg img{
	object-fit: cover;
	object-position: 47%;
    height: 100%;
}
.mvInner{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: calc(100% - 30px);
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.mvFlex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: stretch;
	justify-content: center;
}
.mv h2{
	display: inline-block;
	font-size: 35px;
	margin-bottom: 50px;
}
.mv h2 span{
	background: #988545;
}
.mvBox{
	background: #fff;
	border: 3px #295687 solid;
	border-radius: 10px;
	padding: 10px 0;
	box-sizing: border-box;
	width: 19%;
	margin-right: 1%;
}
.mvBox:last-child{
	margin-right: 0;
}
.mvNo{
	position: relative;
	top: -30px;
}
.mvIco{
	margin-top: -20px;
}
.mvTxt p{
	display: inline-block;
	background: #fff;
	border-radius: 10px;
	padding: 10px 20px;
}
@media screen and (max-width: 1010px) {
	.mvImg{	
		height: 1000px;
	}
	.mvInner{
		max-width: 767px;
	}
	.mv h2{
		font-size: 30px;
	}
	.mvBox{
		width: 32%;
		max-width: 190px;
		margin-right: 3%;
	}
	.mvBox:nth-child(3){
		margin-right: 0;
	}
	.mvBox:nth-child(4),
	.mvBox:nth-child(5){
		margin-top: 30px;
	}	
}
@media screen and (min-width: 767px),print {
	.mv h2 span{
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.mv h2 span:first-child{
		padding-left: 10px;
	}
	.mv h2 span:last-child{
		padding-right: 10px;
	}
	.mv h3{
		margin: 30px 0;
	}
}
@media screen and (max-width: 767px) {
	.mvImg{
		height: 1000px;
	}
	.mv h2{
		font-size: 25px;
		margin-bottom: 30px;
	}
	.mv h2 span{
		display: inline-block;
		padding: 0 5px;
	}
	.mv h2 span:first-child{
		margin-bottom: 5px;
	}
	.mvIco img{
		width:70px;
	}
	.mv h3{
		margin: 15px 0;
	}
}
@media screen and (max-width: 640px) {
	.mvInner{
		max-width: 400px;
	}
	.mv h2{
		padding: 5px 15px;
	}
	.mvBox{
		width: 48%;
	}
	.mvBox:nth-child(2),
	.mvBox:nth-child(4){
		margin-right: 0;
	}
	.mvBox:nth-child(3){
		margin-top: 30px;
		margin-right: 3%;
	}
}
@media screen and (max-width: 370px) {
	.mv h2{
		font-size: 6vw;
	}
}

/* ----------------------------------------------------------------------
 メインコンテンツ
---------------------------------------------------------------------- */

/*オファー*/
.offer h3 span{
	border-bottom: 2px #988545 solid;
	padding-bottom: 3px;
}
.offer p.offerTxt{
	display: inline-block;
	background: #295687;
	padding: 1px 10px 5px;
}
@media screen and (max-width: 480px) {
	.offer p.offerTxt{
		padding: 5px 10px 7px;
	}
}

/*事業主の皆さま、こんなお悩みや問題を抱えていませんか？*/
.checkBg{
	background: url(../images/bg_check.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    overflow: hidden;
}
.check h3{
	display: inline-block;
	background: #295687;
	padding: 10px 30px;
}
ul.checkUl li{
	list-style: none;
	border-bottom: 2px #fff solid;
	padding: 10px 10px 10px 40px;
	text-indent: -37px;
}
ul.checkUl li::before{
    content: url(../images/ico_check.png);
	padding-right: 10px;
	position: relative;
	top: 5px;
}

/*DMCのファクタリングが選ばれる7つの理由*/
.reasonInner{
	position: relative;
	margin-top: 80px;
}
.reasonImg{
	position: absolute;
	top: -30px;
	z-index: -1;
}
.reasonTxtBox{
	width: 76%;
	background: #fff;
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
	padding: 30px;
	box-sizing: border-box;
	margin-left: auto;
	border: 3px solid #295687;
}
.reasonTxtBox2{
	width: 76%;
	background: #fff;
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
	padding: 30px;
	box-sizing: border-box;
	margin-right: auto;
	border: 3px solid #295687;
}
.resonIco{
	padding-right: 15px;
	position: relative;
	top: -10px;
}
.resonTit{
	border-bottom: 2px #295687 solid;
	padding-bottom: 7px;
}

@media screen and (max-width: 767px) {
	.reasonInner{
		margin-top: 50px;
	}
	.reasonTxtBox{
		margin-right: auto;
		max-width: 540px;
		width: 100%;
	}
	.reasonTxtBox2{
		margin-left: auto;
		max-width: 540px;
		width: 100%;
	}
	.reasonImg{
		position: static;
	}
}
@media screen and (max-width: 640px) {
	.resonIco{
		top: 5px;
	}
}

/*ファクタリングとは？*/
.aboutBg{
	background: url(../images/bg_about.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    overflow: hidden;
}

/*3社間ファクタリングと2社間ファクタリング*/
.typeBox{
	border: 3px #295687 solid;
	background: #fff;
	border-radius: 10px;
	padding: 30px;
}
.typeBox h4{
	background: #003257;
	border-radius: 10px;
	padding: 10px;
}
ul.typeUl li{
	list-style: none;
	border-bottom: 2px #295687 solid;
	padding: 10px 0 10px 25px;
	text-indent: -23px;
}
ul.typeUl li:first-child{
	padding-top: 0;
}
ul.typeUl li::before{
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    color: #820000;
    margin-right: 5px;
}

/*お申し込みからお振込までの流れ*/
.flowBox{
	margin-top: 40px;
}
.flowImg{
	max-width: 200px;
}
.flowTxt{
	width: calc(96% - 200px);
}
.flowTit {/*下線(ゴールド／ネイビー)*/
	border-bottom: 3px #003257 solid;
	position: relative;
	display: flex;
}
.flowTit:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom:3px #988545 solid;
	bottom: -3px;
	width: 30%;
}
.flowTit h4 span{
	display: inline-block;
	background: #820000;
	margin-left: 20px;
	padding: 0 5px;
}
.flowIco{
	padding-right: 12px;
	position: relative;
	top: -8px;
}
.flowDocBox{
	background: #f2f2f2;
	border: 3px #295687 solid;
	border-radius: 10px;
	padding: 10px;
	margin-top: 20px;
}
.flowDocBox h5{
	background: #295687;
	border-radius: 5px;
	padding: 5px 10px;
}
.flowDoc{
	border-bottom: 1px #295687 dashed;
	padding: 10px 0;
}
.flowDocImg{
	width: 50px;
}
.flowDocTxt{
	width: calc(96% - 50px);
}

@media screen and (max-width: 767px) {
	.flowImg{
		width: 100%;
		margin: 0 auto 30px;
	}
	.flowBox{
		width: 100%;
		max-width: 540px;
		margin: 0 auto 40px;
	}
	.flowTxt{
		width: 100%;
	}
	.flowIco{
		top: -10px;
	}
}

@media screen and (max-width: 640px) {
	.flowIco{
		top: 15px;
	}
	.flowTit h4{	
		padding-bottom: 10px;	
	}
	.flowTit h4 span{	
		margin-left: 0;
	}
}

/*ご利用者様の声*/
.voiceBg{
	background: url(../images/bg_voice.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    overflow: hidden;
}
.voiceBox{
	background: #fff;
	padding: 30px;
	box-sizing: border-box;
	border-radius: 10px;
	border: 3px #295687 solid;
	width: 48%;
}
.voiceBox:nth-child(3),
.voiceBox:nth-child(4){
	margin-top: 30px;
}
.voiceImg,
.voiceData{
	width: 48%;
}
.voiceDataTxt{
	border-top: 3px #003257 solid;
	border-bottom: 3px #003257 solid;
	padding: 5px 0;
}

@media screen and (max-width: 980px) {
	.voiceDataBox{
		display: block;
		width: 100%;
	}
	.voiceImg{
		width: 100%;
		max-width: 180px;
		margin: 0 auto 20px;
	}
	.voiceData{
		max-width: 300px;
		width: 100%;
		margin: 0 auto;
	}
}

@media screen and (max-width: 767px) {
	.voiceBox{
		width: 100%;
		max-width: 580px;
		margin: 0 auto;
	}
	.voiceBox:nth-child(2){
		margin-top: 30px;
	}
}

/*よくある質問*/
dl.faqDL,
dl.faqDL dt,
dl.faqDL dd {
  margin: 0;
  padding: 0;
}
dl.faqDL {
	width: 100%;
	padding: 10px 0 15px;
	border-bottom:2px #003257 solid;
}
dl.faqDL dt {
	padding-right: 40px;
	background: #fff;
	position: relative;
	color:#003257;
	font-weight:bold;
	vertical-align:middle;
}
dl.faqDL dd {
	padding: 5px 40px 5px 0;
	background: #fff;
	display: none;
}
dl.faqDL dt{
	padding-left:57px;
	text-indent:-61px;
	line-height:1.8em;
}
dl.faqDL dd{
	padding-left:56px;
	text-indent:-60px;
	line-height:1.8em;
}

dl.faqDL dt::before{
	content: url(../images/ico_faq_q.png);
	margin-right: 14px;
	position: relative;
	top: 13px;
}
dl.faqDL dd::before{
	content: url(../images/ico_faq_a.png);
	margin-right: 10px;
	position: relative;
	top: 13px;
}
.faqDL dt span::before,
.faqDL dt span::after {
	content: '';
	display: block;
	width: 15px;
	height: 2px;
	border-radius: 5px;
	background: #003257;
	position: absolute;
	right: 10px;
	top: 70%;
	transform: translateY(-50%);
}
.faqDL dt span::after {
	background: #003257;
	transform: translateY(-50%) rotate(90deg);
	transition: 0.5s;
}
.faqDL dt.open span::after {
	transform: rotate(0);
	transition: 0.5s;
}

/*会社概要*/
table.companyTb th{
	background: #003257;
	color: #fff;
	padding: 25px 20px;
	border-bottom: 10px #f2f2f2 solid;
	border-right: 7px #f2f2f2 solid;
	width: 16%;
	line-height: 1.5em;
	vertical-align: middle;
}
table.companyTb td{
	background: #fff;
	color: #003257;
	padding: 25px 20px;
	border-bottom: 10px #f2f2f2 solid;
	line-height: 1.8em;
	width: 68%;
}

@media screen and (max-width: 767px) {
	table.companyTb,
	table.companyTb tbody,
	table.companyTb tr,
	table.companyTb th,
	table.companyTb td{
		display: block;
	}
	table.companyTb tr{
		margin-bottom: 0px;
	}
	table.companyTb th{
		width: 100%;
		padding: 10px 20px;
		border-right: 0;
		border-bottom: 0;
		text-align: left;
		box-sizing: border-box;
	}
	table.companyTb td{
		padding: 10px 20px;
		box-sizing: border-box;
		width: 100%;
	}
}
