@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;color:#333;overflow:hidden;}
p{ margin:0px; padding:0px}
a{color:#333;}

img{
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	image-rendering: -webkit-optimize-contrast;
}
*a:hover{
	text-decoration: none;
}
a img{
	transition : all 0.5s ease 0s;
}
a img:hover{
	opacity: 0.6;
}

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

/* ----------------------------------------------------------------------
 inner
---------------------------------------------------------------------- */
.innerOrigin{
	width:calc(100% - 30px);
	max-width:1200px;
	margin-left: auto;
	margin-right: auto;
}
.inner960{
	max-width:960px;
	width:calc(100% - 30px);
	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-start{
	justify-content: flex-start;/*要素を左寄せ*/
}
.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)  {
	.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:48%;
		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%;
	}
}

/*クリアフィックス*/
.clearfix:after{
  content:"";
  display:block;
  clear:both;
}

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

@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% ;
}
.font60 {
	font-size: 60% ;
}
.font70 {
	font-size: 70% ;
}
.font80 {
	font-size: 80% ;
}
.font90 {
	font-size: 90% ;
}
.font100 {
	font-size: 100% ;
}
.font110 {
	font-size: 110% ;
}
.font120 {
	font-size: 120% ;
}
.font130 {
	font-size: 130% ;
}
.font150 {
	font-size: 150% ;
}
.font180 {
	font-size: 180% ;
}
.font200 {
	font-size: 200% ;
}
.font230 {
	font-size: 230% ;
}
.font250 {
	font-size: 250% ;
}

/* ----------------------------------------------------------------------
 フォント（px）
---------------------------------------------------------------------- */
.font12px{
	font-size: 12px ;
}
.font14px{
	font-size: 14px ;
}
.font16px{
	font-size: 16px ;
}
.font18px{
	font-size: 18px ;
}
.font20px{
	font-size: 20px ;
}
.font25px{
	font-size: 25px ;
}
.font30px{
	font-size: 30px ;
}
.font35px{
	font-size: 35px ;
}
.font40px{
	font-size: 40px ;
}
.font45px{
	font-size: 45px ;
}
@media screen and (min-width: 768px) {
	.font12-14px{
		font-size: 14px ;
	}
	.font14-16px{
		font-size: 16px ;
	}
	.font15-20px{
		font-size: 20px ;
	}
	.font15-18px{
		font-size: 18px ;
	}
	.font16-18px{
		font-size: 18px ;
	}
	.font16-20px{
		font-size: 20px ;
	}
	.font18-20px{
		font-size: 20px ;
	}
	.font18-25px{
		font-size: 25px ;
	}
	.font20-22px{
		font-size: 22px ;
	}
	.font20-25px{
		font-size: 25px ;
	}
	.font20-30px{
		font-size: 30px ;
	}
	.font22-25px{
		font-size: 25px ;
	}
	.font22-30px{
		font-size: 30px ;
	}
	.font25-30px{
		font-size: 30px ;
	}
	.font28-32px{
		font-size: 32px ;
	}
	.font30-35px{
		font-size: 35px ;
	}
	.font30-40px{
		font-size: 40px ;
	}
}
@media screen and (max-width: 767px) {
	.font12-14px{
		font-size: 12px ;
	}
	.font14-16px{
		font-size: 14px ;
	}
	.font15-20px{
		font-size: 15px ;
	}
	.font15-18px{
		font-size: 15px ;
	}
	.font16-18px{
		font-size: 16px ;
	}
	.font16-20px{
		font-size: 16px ;
	}
	.font18-20px{
		font-size: 18px ;
	}
	.font18-25px{
		font-size: 18px ;
	}
	.font20-22px{
		font-size: 20px ;
	}
	.font20-25px{
		font-size: 20px ;
	}
	.font22-25px{
		font-size: 22px ;
	}
	.font20-30px{
		font-size: 20px ;
	}
	.font22-30px{
		font-size: 22px ;
	}
	.font25-30px{
		font-size: 25px ;
	}
	.font28-32px{
		font-size: 28px ;
	}
	.font30-35px{
		font-size: 30px ;
	}
	.font30-40px{
		font-size: 30px ;
	}
}

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

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

/* ----------------------------------------------------------------------
 Adobe Font
---------------------------------------------------------------------- */
/*源ノ角ゴシック*/
.genM_font{
font-family: "source-han-sans-japanese", sans-serif;
font-weight: 500;
font-style: normal;
}
.genB_font{
font-family: "source-han-sans-japanese", sans-serif;
font-weight: 700;
font-style: normal;
}
.genH_font{
font-family: "source-han-sans-japanese", sans-serif;
font-weight: 900;
font-style: normal;
}

/*しっぽり明朝*/
.shippo_font{
font-family: "shippori-mincho", sans-serif;
font-weight: 400;
font-style: normal;
}

/*Century*/
.centR_font{
font-family: century-gothic, sans-serif;
font-weight: 400;
font-style: normal;
}
.centB_font{
font-family: century-gothic, sans-serif;
font-weight: 700;
font-style: normal;
}



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

/* ----------------------------------------------------------------------
 文字揃え
---------------------------------------------------------------------- */
.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:#333;
}
.red{
	color:#FF0000;
}

/* ----------------------------------------------------------------------
 文字スタイル（ウエイト）
---------------------------------------------------------------------- */
.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;
	}
}

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

.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;
	font-weight:bold;
}
.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%);
}

/* ----------------------------------------------------------------------
 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;
  }
  /*margin left*/
  .ml05{
      margin-left: 5px;
  }
  .ml10 {
    margin-left: 10px;
  }
  .ml15 {
    margin-left: 15px;
  }
  /*margin right*/
  .mr30 {
    margin-right: 30px;
  }
  /*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;
  }
  img.imgRight{
      max-width: 100%;
      display:block;
      margin-left:auto;
  }
  
  /* ----------------------------------------------------------------------
   背景色
  ---------------------------------------------------------------------- */
  .bgWhite{
      background:#fff;
  }
  .bgGray{
      background:#EBEBEB;
  }

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

a.btn{
	max-width:300px;
	width:100%;
	height:60px;
	position:relative;
	text-decoration:none;
	outline:none;
	display:flex;
	justify-content:center;
	align-items:center;
	border-radius:1000px;
	border:2px #333 solid;
	color:#333;
	background:#fff;
	box-shadow:5px 5px 0 #333;
	transition:all 0.5s ease;
	box-sizing:border-box;
}
a.btn:hover{
	color:#fff;
	background:#333;
	box-shadow:0 0 0 #333;
	transform:translate(5px,5px);
}
a.btn::after{
	position: absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transition: all 0.5s ease 0s;
}

/*赤ver.*/
a.btnR{
	border:2px #ff0000 solid;
	color:#ff0000;
	box-shadow:5px 5px 0 #ff0000;
}
a.btnR:hover{
	background:#ff0000;
	box-shadow:0 0 0 #ff0000;
}

/* ----------------------------------------------------------------------
 ページ内リンク
---------------------------------------------------------------------- */
@media screen and (min-width: 1201px){
	a.scroll_point {
	 height: 1px;
	 margin-top: -100px;
	 padding-top: 100px;
	 display: block;
	}
}
@media screen and (max-width: 1200px){
	 a.scroll_point {
	 height: 1px;
	 display: block;
	 margin-top: -60px;
	 padding-top: 60px;
	}
}

/* ----------------------------------------------------------------------
 スクロールフェード
---------------------------------------------------------------------- */
.fade {
	opacity: 0;
	transform: translateY(50px);
}
.fade01 {
	transition: opacity 1.5s, transform 1s;	
}
.fade02 {
	transition: opacity 1.5s, transform 1s;
	transition-delay: 0.1s;
}
.fade03 {
	transition: opacity 1.5s, transform 1s;	
	transition-delay: 0.2s;
}
.fade04 {
	transition: opacity 1.5s, transform 1s;		
	transition-delay: 0.3s;
}
.fade.active {
	opacity: 1;
	transform: translateY(0px);
}

/* ----------------------------------------------------------------------
デフォルトCSSの解除
---------------------------------------------------------------------- */
.head_logo{
	position:relative;
}

@media screen and (min-width: 1201px),print {
	/*ヘッダー部分*/
	.header-bar{
		height:180px;
		background:rgba(255,255,255,0.8);
	}
	.header-bar-fixed ~ .signage{
		margin-top:180px;
	}
	/*ロゴ*/
	.logo-image{
		position:absolute;
		display:block;
		top:20px;
	}
	.logo{
		width:300px;
		height:60px;
		left:15px;
	}
	.logo-image img{
		display:block;
		width:300px;
	}
	.logo-image span{
		display:block;
		font-size:10px;
		line-height:15px;
		margin-bottom:5px;
	}
	/*グローバルメニュー */
	.global-nav{
		text-align:center;
		margin-left:auto;
		margin-right:auto;
		float:none;
		height:80px;
	}
	.global-nav ul.menu {
		display:inline-block;
	}
	.global-nav > ul > li{
		font-weight: bold;
	}
	.global-nav  ul  li a{
		font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
		font-weight:bold;
	}
	.global-nav > ul > li > a{
		line-height:80px;
		padding: 0 25px;
	}
	.global-nav .sub-menu a{
		background:#333;
	}
	.global-nav .sub-menu .current-menu-item > a{
		color:#fff;
	}
	.global-nav .sub-menu a:hover{
		background:#333;
	}
	/*キービジュアル*/
	.header-bar-fixed ~ .top-slider-wrapper{
		margin-top:180px;
	}
}

@media screen and (max-width: 1200px) {
	/*ヘッダー部分*/
	.header-bar{
		background:rgba(255,255,255,0.8);
		border-bottom:none;
		box-shadow:none;
	}
	/*ロゴ*/
	.logo{
		top:15.5px;
		width:180px;
		line-height:24px;
	}
	.logo img{
		display:block;
		width:180px;
	}
	.logo-image{
		display:block;
	}
	/*グローバルナビ*/
	.global-nav-button{
		border-left:none;
		cursor:pointer;
	}
	.global-nav a, .global-nav a:hover{
		background:#333;
	}
	.global-nav-button:before{
		color:#333;
	}
	.global-nav .sub-menu a{
		background:#333;
	}
}

/* ----------------------------------------------------------------------
ヘッダー
---------------------------------------------------------------------- */
.head_top{
	position:relative;
}
@media screen and (min-width: 1201px),print {
	.head_top{
		max-width:1920px;
		width:100%;
		height:100px;
		margin:0 auto;
	}
}

/* ----------------------------------------------------------------------
ヘッダーインフォメーション
---------------------------------------------------------------------- */
@media screen and (min-width: 1201px) ,print{
	.head_info{
		float:right;
		width:460px;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		align-items: stretch; 
		justify-content:space-between;
	}
	.head_info_pc{

	}
	.head_info_tel{
		width:300px;
		display:flex;
		align-items:center;
	}
	.head_info_tel p.haedTelNo{
		font-size:40px;
		line-height:40px;
	}
	.head_info_tel p.haedTelNo::before{
		position:relative;
		content:url(images/ico_fd.png);
		top:2px;
		margin-right:5px;
	}
	.head_info_mail{
		width:150px;
		display:flex;
		align-items:center;
		height:100px;
	}
	.head_info_mail a{
		display:block;
		background:#ff0000;
		width:100%;
		height:80px;
		border-radius:10px 0 0 10px;
		transition : all 0.5s ease 0s;
	}
	.head_info_mail a:hover{
		background:#333;
	}
	.head_info_mail a p{
		padding-top:8px;
		font-size:12px;
	}
	.head_info_sp{
		display:none;
	}
}
@media screen and (min-width: 1921px){
	.head_info_mail a{
		border-radius:10px;
	}
}
@media screen and (max-width: 1200px) and (min-width:768px) {
	.head_info{
		position:absolute;
		width:415px;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		align-items: center; 
		justify-content:space-between;
		top:0;
		right:60px;
	}
	.head_info_tel{
		width:235px;
		display:flex;
		align-items:center;
	}
	.head_info_tel p.haedTelNo{
		font-size:25px;
		line-height:25px;
	}
	.head_info_tel p.haedTelNo::before{
		position:relative;
		content:url(images/ico_fd.png);
		top:7px;
		margin-right:5px;
	}
	.head_info_tel p.font12px{
		font-size:10px !important;
	}
	.head_info_mail{
		width:180px;
	}
	.head_info_mail a{
		display:flex;
		background:#ff0000;
		width:100%;
		height:40px;
		border-radius:20px;
		transition : all 0.5s ease 0s;
		align-items:center;
		justify-content:center;
	}
	.head_info_mail a p{
		font-size:12px;
		margin-right:5px;
	}
	.head_info_mail a img{
		width:20px;
		margin:0 !important;
	}
	.head_info_sp{
		display:none;
	}
}
@media screen and (max-width: 767px) {
	.head_info_pc{
		display:none;
	}
	.head_info_sp{
		width:70px;
		position:absolute;
		top:10px;
		right:55px;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		align-items: center; 
		justify-content:space-between;
	}
	.head_info01,.head_info02{
		width:30px;
	}
	.head_info01 a,.head_info02 a{
		display:block;
		width:100%;
	}
}

/* ----------------------------------------------------------------------
グローバルメニュー
---------------------------------------------------------------------- */
.global-nav ul li a{
	font-size:14px;
	font-weight:bold;
	letter-spacing:0.05em;
}
.menu-item-description{
	color: #ff0000;
	font-size:10px;
}
@media screen and (min-width: 1201px),print {
	.global-nav ul li a{
		height:80px;
		position:relative;
	}
	.global-nav ul li a::after{
		position:absolute;
		bottom:0;
		left:0;
		content:"";
		background:#fff;
		width:100%;
		height:3px;
		transition : all 0.5s ease 0s;
	}
	.global-nav ul li.current_page_item a::after,
	.global-nav ul li a:hover::after{
		background:#ff0000;
	}
	.global-nav ul li a strong{
		line-height:2em;
		display: block;
		padding-top:22px;
	}
	.menu-item-description{
		display: block;
		text-align:center;
		line-height:1;
		font-family: century-gothic, sans-serif;
		font-weight: 700;
		font-style: normal;
	}
}
@media screen and (max-width: 1200px){
	.header-bar-fixed .global-nav{
		top: 55px;
	}
	.global-nav a{
		background:#f2f2f2;
	} 
	.global-nav a:hover{
		background:#ccc;
	}
	.global-nav ul li a strong{
		color:#000;
		display:inline-block;
		padding-right:1em;
	}
	.global-nav > ul > li > a:before{
		color: #ff0000;
	}
}

/* ----------------------------------------------------------------------
メインビジュアル
---------------------------------------------------------------------- */
.mvTxt{
	width:calc(100% - 80px);
	margin:40px auto;
}
.mvTxt h2{
	font-size:80px;
}
.mvTxt h2 strong,
.mvTxt h2 span{
	font-size:100px;
	display:inline-block;
	padding:0 0 5px;
	box-sizing:border-box;
}
@media screen and (max-width: 1200px){
	.mvTxt{
		width:calc(100% - 60px);
		margin:1em auto;
	}
	.mvTxt h2{
		font-size:6.8vw;
		line-height: 1.3em;
	}
	.mvTxt h2 strong,
	.mvTxt h2 span{
		font-size:7.5vw;
	}
}
@media screen and (max-width: 767px){
	.mvTxt{
		width:calc(100% - 30px);
	}
	.mvTxt h2 strong,
	.mvTxt h2 span{
		padding:0 0 2px;
	}
}


/*========= 親要素と子要素の共通CSS ===============*/

.bgextend {
	animation-name: bgextendAnimeBase;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	position: relative;
	overflow: hidden; /*　はみ出た色要素を隠す　*/
	opacity: 0;
	background:#ff0000;
	margin-right:5px;
}

@keyframes bgextendAnimeBase {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/*中の要素*/
.bgappear {
	animation-name: bgextendAnimeSecond;
	animation-duration: 0.7s;
	animation-delay: 0.6s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* 左から右に伸びて出現 */
.bgLRextend::before {
	animation-name: bgLRextendAnime;
	animation-duration: 0.7s;
	animation-fill-mode: forwards;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff; /*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime {
	0% {
		transform-origin: left;
		transform: scaleX(0);
	}
	50% {
		transform-origin: left;
		transform: scaleX(1);
	}
	50.001% {
		transform-origin: right;
	}
	100% {
		transform-origin: right;
		transform: scaleX(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
	opacity: 0;
}


/*movie*/
.mvMovie{
	position:relative;
	width:calc(100% - 100px);
	margin-left:auto;
	height:600px;
	border-radius:30px 0 0 30px;
	overflow:hidden;
}
.headVideo{
	display:block;
	width:100%;
	object-fit:cover;
	height:100%;
}
.mvMovieTxt{
	position:absolute;
	right:0;
	bottom:0;
}
.mvMovieTxt p{
	opacity:0.8 !important;
	font-size:120px;
	line-height:1;
}
@media screen and (max-width: 1200px){
	.mvMovie{
		width:calc(100% - 6vw);
	}
	.mvMovieTxt p{
		font-size:12vw;
		text-align:right;
	}
}
@media screen and (max-width: 960px){
	.mvMovie{
		height:480px;
	}
}
@media screen and (max-width: 767px){
	.mvMovie{
		height:400px;
	}
}

/* ----------------------------------------------------------------------
signage
---------------------------------------------------------------------- */
.signage{
	background:#fff;
	height:300px;
}
img.signageImg {
    display: block;
    object-fit: cover;
    width: calc(100% - 100px);
    height: 300px;
    margin-left: auto;
    border-radius: 0 0 0 30px;
}
@media only screen and (max-width: 1200px) {
    .signage {
        height: 250px;
    }
	img.signageImg{
		 height: 250px;
	}
}
@media only screen and (max-width: 767px) {
	img.signageImg{
		 width: calc(100% - 70px);
	}
}
@media only screen and (max-width: 480px) {
	.signage {
        height: 180px;
    }
	img.signageImg{
		 height: 180px;
	}
}
.signage-content{
	position:relative;
	animation:none;
}
.signageTxt{
	position:absolute;
	left:30px;
	top:0;
	height:100%;
	width:calc(100% - 30px);
	display:flex;
	align-items:center;
	text-align:left;
}
.signageTxt p{
	font-size:80px;
	line-height:1;
	margin-bottom:10px;
}
.signageTxt h1{
	background:#333;
	display:inline-block;
	padding:5px;
	font-weight:bold;
}
@media only screen and (max-width: 767px) {
	.signageTxt{
		left:15px;
		width:calc(100% - 15px);
	}
	.signageTxt p{
		font-size:60px;
	}
}
@media only screen and (max-width: 480px) {
	.signageTxt p{
		font-size:50px;
	}
	.signageTxt h1.font16-18px{
		font-size:14px;
	}
}

/* ----------------------------------------------------------------------
パンくずリスト
---------------------------------------------------------------------- */
.breadcrumb-wrapper{
	position:relative;
}
.breadcrumb{
	font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
	font-weight:bold;
}

/* ----------------------------------------------------------------------
共通項目
---------------------------------------------------------------------- */
/*コンテンツ全体*/
.contents{
	margin-bottom:140px;
}
/*見出し*/
.tit{
	position:relative;
	padding-top:30px;
}
.tit h2,
.tit h3{
	position:relative;
	font-size:50px;
	z-index:2;
	line-height:1.3em;
}
.tit p{
	position:absolute;
	top:0;
	left:0;
	font-size:70px;
	color:#f2f2f2;
	line-height:1;
}
.titLeft h2,
.titLeft h3{
	padding-left:0.5em;
}
.titCenter{
	text-align:center;
}
.titCenter p{
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
@media only screen and (max-width: 960px) {
	.tit{
		padding-top:20px;
	}
	.tit h2,
	.tit h3{
		font-size:40px;
	}
	.tit p{
		font-size:50px;
	}
}
@media only screen and (max-width: 640px) {
	.tit{
		padding-top:15px;
	}
	.tit h2,
	.tit h3{
		font-size:35px;
	}
	.tit p{
		font-size:45px;
	}
}
@media only screen and (max-width: 640px) {
	.tit h2,
	.tit h3{
		font-size:30px;
	}
}

/*見出しアイコン*/
.titIco{
	position:relative;
	padding-bottom:20px;
}
.titIco::after{
	position:absolute;
	content:url(images/ico_tit.png);
	bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

/* ----------------------------------------------------------------------
トップページ
---------------------------------------------------------------------- */
/*greeting*/
.topPage{
	margin-top:50px;
}
@media only screen and (max-width: 767px) {
	.topPage{
		margin-top:30px;
	}
}
.greeting{
	position:relative;
	padding-bottom:80px;
}
@media only screen and (max-width: 767px) {
	.greeting{
		padding-bottom:60px;
	}
}
.greeting::after {
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 20vw solid #f2f2f2;
    border-right: 100vw solid transparent;
    z-index: -1;
}
.greetingFlex{
	position:relative;
	z-index:2;
}
.greetingTxt,
.greetingImg{
	width:50%;
}
.greetingImg img{
	display:block;
}
@media only screen and (min-width: 1201px),print{
	.greetingTxt,
	.greetingImg{
		min-height:600px;
	}
	.greetingTxt,
	.greetingImg{
		display:flex;
		align-items:center;
	}
	.greetingTxtInner{
		max-width: 600px;
        width: calc(100% - 20px);
		margin-left: auto;
		padding: 0 50px 0 0;
        box-sizing: border-box;
	}
}
@media only screen and (max-width: 1200px){
	.greetingFlex{
		position:relative;
		display:block;
	}
	.greetingTxt{
		position:relative;
		width:100%;
		z-index:2;
	}
	.greetingTxtInner{
		width:calc(100% - 30px);
		margin:0 auto 30px;
	}
	.greetingImg{
		position:absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		width:100%;
	}
	.greetingImg img{
		width:1080px;
		height:760px;
		object-fit:cover;
		object-position: 50% 50%;
		opacity:0.2;
	}
}

/*particular*/
.particular{
	background:#f2f2f2;
	padding:40px 0 80px;
}
.particular .tit p.centB_font{
	color:#fff !important;
}
@media only screen and (max-width: 480px){
	.particular .tit h2{
		font-size:25px;
	}
}
.particularBox{
	position:relative;
	width:calc((100% - 60px) / 3);
	background:#fff;
	padding:35px 25px 25px;
	box-sizing:border-box;
	border-radius:15px;
	margin-top:35px;
}
.particularNo{
	position:absolute;
	left:0;
	top:-40px;
	font-size:70px;
	line-height:1;
	transform: skewX(-10deg);
}
.particularTag{
	position:absolute;
	left:80px;
	top:-22px;
	font-size:16px;
	color:#b3b3b3;
}
.particularImg,
.particularTxt{
	width:48%;
}
@media only screen and (max-width: 1050px){
	.particularWrap{
		display:block;
	}
	.particularBox{
		width:100%;
		margin-bottom:60px;
	}
	.particularBox:last-child{
		margin-bottom:0;
	}
	.particularImg{
		width:150px;
	}
	.particularTxt{
		width:calc(100% - 190px);
	}
}
@media only screen and (max-width: 480px){
	.particularImg{
		width:100px;
	}
	.particularTxt{
		width:calc(100% - 130px);
	}
}

/*information*/
.topInfo{
	padding:80px 0;
}
@media only screen and (max-width: 767px){
	.topInfo{
		padding:60px 0;
	}
}
.topInfoBox{
	position:relative;
	width:calc((100% - 5px) / 2);
	margin-right:5px;
	margin-bottom:45px;
	padding-bottom:80px;
}
.topInfoTxt{
	padding:0 20px;
	box-sizing:border-box;
}
.topInfoLink{
	position:absolute;
	width:100%;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.topInfoLink a.btn{
	margin:0 auto;
}
@media only screen and (min-width: 768px){
	.topInfoBox:nth-child(even){
		margin-right:0;
	}
}
@media only screen and (max-width: 767px){
	.topInfoBox{
		width:100%;
		max-width:500px;
		margin-left:auto;
		margin-right:auto;
	}
}

/*コラム*/
.topColumn{
	background:#f2f2f2;
	padding:60px 0;
}
.topColumnArticle{
	position:relative;
	background:transparent;
}
.topCategoryName{
	position:absolute;
	top:30px;
	left:0;
	background:rgba(255,0,0,0.8);
	height:30px;
	line-height:30px;
	padding:0 20px 0 10px;
	border-radius:0 5px 5px 0;
}
.topCategoryName p{
	line-height:30px;
}
.topCategoryName a{
	color:#fff;
}
.topBlogTit{
	display: -webkit-box; /* 必須 */
	-webkit-box-orient: vertical; /* 必須 */
	-webkit-line-clamp: 2; /* 行数を制限 */
	overflow: hidden; /* はみ出た部分を非表示 */
}
.columnLin .btn{
	margin:40px auto 0;
}

/*お知らせ*/
.topNews{
	padding:60px 0;
}
.topNewsTitInner{
	position:relative;
	padding-bottom:20px;
}
.topNewsTitInner::after{
	position:absolute;
	content: url(images/ico_tit.png);
	left:0;
	bottom:0;
}
.topNewsTit a{
	border-bottom:2px #ff0000 dashed;
	display:inline-block;
	padding-bottom:10px;
}
.topNewsTit{
	width:200px;
}
.topNewsList{
	width:calc(100% - 200px);
}
.newsDate{
	float:left;
	display:inline-block;
	margin-right:15px;
	width:85px;
	vertical-align: top;
}
.newsTit{
	float:left;
    width: calc(100% - 125px);
	display: -webkit-box; /* 必須 */
	-webkit-box-orient: vertical; /* 必須 */
	-webkit-line-clamp: 2; /* 行数を制限 */
	overflow: hidden; /* はみ出た部分を非表示 */
}

ul.topNewsListUl{
	position:relative;
	border-top:1px #333 solid;
}
ul.topNewsListUl li{
	
}
ul.topNewsListUl li a{
	display:block;
	position:relative;
	border-bottom:1px #333 solid;
	padding:20px 20px 20px 10px;
	box-sizing:border-box;
	display: -webkit-box; /* 必須 */
	-webkit-box-orient: vertical; /* 必須 */
	-webkit-line-clamp: 2; /* 行数を制限 */
	overflow: hidden; /* はみ出た部分を非表示 */
	transition : all 0.5s ease 0s;
}
ul.topNewsListUl li a:hover{
	color:#666;
}
ul.topNewsListUl li a::after{
	position:absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	right:15px;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	transition : all 0.5s ease 0s;
}
ul.topNewsListUl li a:hover::after{
	right:5px;
}
@media only screen and (max-width: 767px){
	.topNewsWrap{
		display:block;
	}
	.topNewsTit,.topNewsList{
		width:100%;
	}
	.topNewsTit{
		margin-bottom:20px;
		text-align:center;
	}
	.topNewsTitInner::after{
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}
}
@media only screen and (max-width: 480px){
	.newsDate,
	.newsTit{
		float:none;
	}
	ul.topNewsListUl li a{
		display:block;
	}
}

/* ----------------------------------------------------------------------
ファクタリングの仕組み
---------------------------------------------------------------------- */

/*イントロ*/
.aboutIntro{
	margin-bottom:80px;
}
@media only screen and (max-width: 767px){
	.aboutIntro{
		margin-bottom:60px;
	}
}
.abouIntrotTxt,
.aboutIntroImg{
	width:50%;
}
.aboutIntroImg img{
	display:block;
	width:100%;
	object-fit:cover;
	height:100%;
}
@media only screen and (min-width: 1050px),print{
	br.aboutBr{
		display:none;
	}
}
@media only screen and (min-width: 768px),print{
	.abouIntrotTxt,
	.aboutIntroImg{
		min-height:600px;
	}
	.abouIntrotTxt{
		display:flex;
		align-items:center;
	}
	.aboutIntroTxtInner{
		max-width: 600px;
        width: calc(100% - 20px);
		margin-left: auto;
		padding: 0 50px 0 0;
        box-sizing: border-box;
	}
}
@media only screen and (max-width: 767px){
	.aboutIntroFlex{
		display:block;
	}
	.abouIntrotTxt{
		width:calc(100% - 60px);
		margin:0 auto;
		padding:0 0 30px;
	}
	.aboutIntroImg{
		width:100%;
	}
	.aboutIntroImg img{
		height:350px;
	}
}
@media only screen and (max-width: 480px){
	.aboutIntroImg img{
		height:250px;
	}
}

/*メリット*/
.aboutMerit{
	position:relative;
}
.aboutMerit .innerOrigin{
	position:relative;
	z-index:2;
}
.aboutMerit::after{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 20vw solid #ff0000;
    border-left: 100vw solid transparent;
    z-index: 1;
}
.aboutMeritWrap{
	display:flex;
	justify-content:center;
	align-items:stretch;
	flex-wrap:wrap;
}
.aboutMeritBox{
	position:relative;
	width:calc((100% - 60px) / 3);
	margin-right:30px;
	background:#f2f2f2;
	border-radius:0 20px 20px 20px;
	padding:20px;
	box-sizing:border-box;
	margin-top:45px;
	margin-bottom:30px;
}
.aboutMeritBox span{
	position:absolute;
	left:0;
	top:-45px;
	display:inline-block;
	background:#ff0000;
	height:45px;
	line-height:45px;
	font-size:30px;
	padding:0 15px;
	border-radius:20px 20px 0 0;
}
.aboutMeritBox h3{
	position:relative;
	padding-bottom:10px;
	border-bottom:1px #333 dashed;
	margin-bottom:15px;
}
.aboutMeritBox h3 strong{
	position:relative;
	z-index:2;
}
.aboutMeritBox h3::after{
	position:absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f14a";
	color:#fff;
	top:15px;
	right:0;
	font-size:60px;
}
@media only screen and (min-width: 961px),print{
	.aboutMeritBox:nth-child(3),
	.aboutMeritBox:last-child{
		margin-right:0;
	}
}
@media only screen and (max-width: 960px) and (min-width:601){
	.aboutMeritBox{
		width:calc((100% - 30px) / 2);
	}
	.aboutMeritBox:nth-child(even),
	.aboutMeritBox:last-child{
		margin-right:0;
	}
}
@media only screen and (max-width: 600px){
	.aboutMeritBox{
		width:100%;
		max-width:480px;
		margin:30px auto 30px;
	}
	.aboutMeritBox span{
		top:-30px;
		height:30px;
		line-height:30px;
		font-size:20px;
	}
}

/*特徴*/
.aboutFeature{
	background:#ff0000;
	padding:50px 0 80px;
}
.aboutFeatureBox{
	margin-bottom:40px;
}
.aboutFeatureBox:last-child{
	margin-bottom:0;
}
.aboutFeatureBox:nth-child(even){
	flex-direction:row-reverse;
}
.aboutFeatureImg{
	width:200px;
}
.aboutFeatureTxt{
	width:calc(100% - 240px);
}
.aboutFeatureTxtBox{
	background:#fff;
	border-radius:15px;
	padding:10px 20px;
	box-sizing:border-box;
}
@media only screen and (max-width: 767px){
	.aboutFeatureBox{
		display:block;
	}
	.aboutFeatureImg{
		margin:0 auto 20px;
	}
	.aboutFeatureTxt{
		width:100%;
		max-width:500px;
		margin:0 auto;
	}
	.aboutFeatureTxt p.centB_font,
	.aboutFeatureTxt h3{
		text-align:center;
	}
}

/*3社間ファクタリングと2社間ファクタリング*/
.aboutType{
	padding-top:80px;
}
@media only screen and (max-width: 767px){
	.aboutType{
		padding-top:60px;
	}
}
.aboutTypeBox h3{
	background:#f2f2f2;
	height:70px;
	line-height:64px;
	border-radius:1000px;
	border:3px #ff0000 solid;
	box-sizing:border-box;
}

/* ----------------------------------------------------------------------
ご利用の流れ
---------------------------------------------------------------------- */
.flowDocBox{
	width:calc((100% - 60px) / 3);
}
@media only screen and (max-width: 640px) {
	.flowDoc{
		display:block;
	}
	.flowDocBox{
		width:100%;
		max-width:300px;
		margin:0 auto 30px;
	}
}
.flowDocBox img{
	image-rendering: -webkit-optimize-contrast;
}
p.flowDocH{
	background:#ff0000;
	border-radius:1000px;
	box-sizing:border-box;
}
.flowEx h3{
	padding-left:10px;
	border-left:5px solid #ff0000;
}
.flowEx ul li{
	border-bottom:1px dashed #333;
	padding-bottom:5px;
	margin-bottom:5px;
	padding-left:0.8em;
	text-indent:-0.8em;
}
.flowEx ul li::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	margin-right:0.3em;
	color:#ff0000;
}

.flowBox{
	background:#f2f2f2;
	padding:30px 30px 30px 10px;
	box-sizing:border-box;
	border:3px #333 solid;
	border-radius:30px;
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	flex-wrap:wrap;
}
.flowNo{
	width:80px;
}
.flowNo p{
	font-size:60px;
	-ms-writing-mode: tb-lr;
	writing-mode: sideways-lr;
	line-height:1;
}
.flowImg{
	width:200px;
}
.flowTxt{
	width:calc(100% - 320px);
}
.flowTxt h3{
	border-bottom: solid 3px #333;
	position: relative;
	padding-bottom:10px;
}
.flowTxt h3:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #ff0000;
  bottom: -3px;
  width: 30%;
}
a.flowBtn{
	position:relative;
	width:250px;
	background:#ff0000;
	display:block;
	border-radius:1000px;
	height:50px;
	line-height:48px;
	box-sizing:border-box;
	transition : all 0.5s ease 0s;
}
a.flowBtn:hover{
	background:#333;
}
a.flowBtn::after{
	position:absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	right:10px;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	transition : all 0.5s ease 0s;
}
a.flowBtn:hover::after{
	right:15px;
}
@media only screen and (max-width: 767px) {
	.flowBox{
		justify-content:center;
		padding:25px;
	}
	.flowNo{
		width:60px;
		display:flex;
		align-items:center;
	}
	.flowNo p{
		font-size:50px;
		display:inline-block;
	}
	.flowImg{
		width:170px;
	}
	.flowTxt{
		margin-top:30px;
		width:100%;
	}
}
@media only screen and (max-width: 480px) {
	.flowBox{
		padding:25px 20px;
	}
	.flowMail span{
		font-size:14px;
	}
}

/* ----------------------------------------------------------------------
よくある質問
---------------------------------------------------------------------- */
dl.faqDL {
	width: 100%;
	background:#f2f2f2;
	padding:15px;
	box-sizing: border-box;
	border-radius:10px;
	margin-bottom:20px;
}
dl.faqDL dt {
	padding: 10px 10px 15px 0;
	position: relative;
	font-size:20px;
	font-weight:bold;
	line-height:1.5em;
}
dl.faqDL dd {
	margin-bottom:10px;
	display: none;
	font-size:18px;
	color:#333;
}
dl.faqDL dt, 
dl.faqDL dd {
	padding-left: 45px;
	text-indent: -44px;
	box-sizing: border-box;
	padding-right: 40px;
}
dl.faqDL dt::before, 
dl.faqDL dd::before {
	margin-right: 15px;
	position: relative;
	top: 6px;
}
dl.faqDL dt::before {
	content: url(images/ico_faq_q.png);
}
dl.faqDL dd::before {
	content: url(images/ico_faq_a.png);
}
dl.faqDL dt span::before, 
dl.faqDL dt span::after {
	content: '';
	display: block;
	width: 15px;
	height: 2px;
	border-radius: 5px;
	background: #ff0000;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
dl.faqDL dt.open span::after {
	transform: rotate(0);
	transition: 0.5s;
}
dl.faqDL dt span::after {
	background: #ff0000;
	transform: translateY(-50%) rotate(90deg);
	transition: 0.5s;
}

@media screen and (max-width: 767px){
	dl.faqDL dt{
		font-size:18px;
	}
	dl.faqDL dd {
		font-size:16px;
	}
}

/* ----------------------------------------------------------------------
ご契約事例
---------------------------------------------------------------------- */
.caseConetnt{
	background:#f2f2f2;
	padding:70px 0 100px;
	border-radius:30px 30px 0 0;
}
.caseBox{
	margin-bottom:50px;
}
.caseBox:last-child{
	margin-bottom:20px;
}
.caseBox img{
	position:relative;
	object-fit:cover;
	width:100%;
	height:350px;
	border-radius:30px;
}
.caseTxtBox{
	position:relative;
	width:calc(100% - 100px);
	background:#fff;
	padding:30px;
	box-sizing:border-box;
	border-radius:30px;
	margin:-80px auto 0;
	z-index:2;
}
.caseTxtBox h3{
	position:relative;
	padding-bottom:30px;
	margin-bottom:20px;
	text-align:center;
	z-index:2;
}
.caseTxtBox h3::after{
	position:absolute;
	content:url(images/ico_tit.png);
	bottom:0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.caseTxtBox p.centB_font{
	position:absolute;
	font-size:150px;
	top:15px;
	left:15px;
	line-height:1;
	color:#f2f2f2;
}
@media only screen and (min-width: 961px) {
	.caseTxtBox h3 br{
		display:none;
	}
}
@media only screen and (max-width: 767px) {
	.caseBox{
		margin-bottom:40px;
	}
	.caseBox img{
		height:300px;
		border-radius:20px;
	}
	.caseTxtBox{
		width:calc(100% - 60px);
		border-radius:20px;
		padding:20px;
		margin:-60px auto 0;
	}
}
@media only screen and (max-width: 480px) {
	.caseBox img{
		height:250px;
	}
	.caseTxtBox{
		width:calc(100% - 30px);
		margin:-35px auto 0;
	}
	.caseTxtBox h3.font22-25px{
		font-size:20px;
	}
}
.caseTxt{
	position:relative;
	z-index:2;
}
.caseTxtData{
	width:240px;
}
.caseTxtComment{
	width:calc(100% - 270px);
}
p.dataTit{
	background:#ff0000;
	padding:0 5px;
	box-sizing:border-box;
	margin-bottom:10px;
}
.caseTxtData table{
	width:100%;
}
.caseTxtData table th,
.caseTxtData table td{
	border-bottom:1px dashed #333;
	text-align:left;
	padding:5px 0;
}
.caseTxtData table th{
	width:5em;
}
@media only screen and (max-width: 680px) {
	.caseTxt{
		display:block;
	}
	.caseTxtData,.caseTxtComment{
		width:100%;
	}
	.caseTxtData{
		margin-bottom:20px;
	}
	.caseTxtBox p.centB_font{
		font-size:120px;
	}
}

/* ----------------------------------------------------------------------
スタッフ紹介
---------------------------------------------------------------------- */
.staffBox{
	padding-bottom:30px;
	border-bottom:1px #333 solid;
	margin-bottom:50px;
}
.staffBox:nth-child(even){
	flex-direction:row-reverse;
}
.staffImg{
	width:200px;
}
.staffTxt{
	width:calc(100% - 250px);
	padding:30px 0;
}
.staffTxt h3{
	font-size:25px;
	letter-spacing:0.1em;
}
.staffTxt span{
	display:inline-block;
	color:#b3b3b3;
	font-size:14px;
	margin-left:0.5em;
}
@media only screen and (min-width: 768px) {
	.staffTxt{
		margin-top:50px;
		border-top:1px #333 solid;
	}
}
@media only screen and (max-width: 767px) {
	.staffBox{
		display:block;
	}
	.staffImg{
		margin:0 auto;
	}
	.staffTxt{
		width:100%;
	}
	.postname,.staffTxt h3{
		text-align:center;
	}
	.staffTxt span{
		display:block;
		margin-top:10px;
	}
}


/* ----------------------------------------------------------------------
会社概要
---------------------------------------------------------------------- */
table.companyTb{
	border-top:1px #ccc solid;
}
table.companyTb tbody tr th{
	width:12em;
	background:none;
	color:#ff0000;
}
table.companyTb tbody tr th,
table.companyTb tbody tr td{
	border-left:none;
	padding: 2.3em .75em;
	vertical-align:middle;
	letter-spacing:0.1em;
	border-bottom:1px #ccc solid;
	text-align:left;
	line-height:1.8em;
}
table.companyTb tbody tr td ul li{
	margin-bottom:10px;
}
table.companyTb tbody tr td ul li:last-child{
	margin-bottom:0;
}
@media screen and (max-width: 767px){
	table.companyTb,table.companyTb tbody,table.companyTb tbody tr,
	table.companyTb tbody tr th,table.companyTb tbody tr td{
		display:block;
	}
	table.companyTb tbody tr th{
		width:100%;
		border-bottom:none;
		padding-bottom:0 !important;
	}
}


/* ----------------------------------------------------------------------
お問い合わせ
---------------------------------------------------------------------- */
.contactForm .wpcf7{
	border: none;
	background: transparent;
	padding: 0;
	margin: 0 !important;
	font-size: inherit;
}
.contactForm .wpcf7 form{
	margin:1.5em 0 0 ;
}
table.contactTb,
table.contactTb tbody,
table.contactTb tr,
table.contactTb th,
table.contactTb td{
	display:block;
	text-align:left;
}
table.contactTb tr{
	margin-bottom:3em;
}
table.contactTb th{
	font-size:20px;
	margin-bottom:1em;
}
table.contactTb th::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	color:#ff0000;
	margin-right:0.3em;
}
table.contactTb th.hissu::after{
	content:"必須";
	font-size:70%;
	background:#ff0000;
	padding:5px;
	position:relative;
	top:-2px;
	border-radius:5px;
	color:#fff;
	margin-left:0.5em;
	font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
	font-weight:bold;
}
table.contactTb td{
	font-size:18px;
}
.contactForm .wpcf7 input[type=text],
.contactForm .wpcf7 input[type=email],
.contactForm .wpcf7 input[type=tel],
.contactForm .wpcf7 select,
.contactForm .wpcf7 textarea{
	font-size:18px;
	padding:20px;
	box-sizing:border-box;
	border:none;
	background:#f2f2f2;
	border-radius:10px;
	line-height:1.8em;
	font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
	color:#333;
}
.contactForm .wpcf7 .wpcf7-list-item-label{
	font-size:18px;
}
.contactForm .wpcf7 input.wpcf7-submit,
.contactForm .wpcf7 .wpcf7-previous{
	background:#ff0000;
	height:60px;
	border-radius:10px;
	font-family: "source-han-sans-japanese", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size:18px;
	transition : all 0.5s ease 0s;
}
.contactForm .wpcf7 input.wpcf7-submit:hover,
.contactForm .wpcf7 .wpcf7-previous:hover{
	background:#333;
}

.wpcf7-not-valid-tip{
	margin-top:10px;
	font-weight:bold;
}


/* ----------------------------------------------------------------------
プライバシーポリシー
---------------------------------------------------------------------- */
.privacyBox{
	margin-bottom:50px;
}
@media only screen and (max-width: 480px) {
	.privacyBox{
		margin-bottom:40px;
	}
}
.privacyBox h3{
	border-top:1px #333 solid;
	border-bottom:1px #333 solid;
	padding:10px;
	margin-bottom:20px;
}
.privacyBox h3 span{
	display:inline-block;
	border-left:5px #ff0000 solid;
	padding-left:0.5em;
}
.privacyBox ul{
	list-style:disc;
	padding-left:1.3em;
}

/* ----------------------------------------------------------------------
お知らせ
---------------------------------------------------------------------- */
/*一覧ページ*/
.article04{
	background:#fff;
}

/* ----------------------------------------------------------------------
ブログ
---------------------------------------------------------------------- */
/*一覧ページ*/
.archiveColumnArticle{
	position:relative;
}
.archiveColumnArticle .article03-thumbnail .article03-category{
	position: absolute;
    top: 30px;
    left: 0;
}
.article03-category-item{
	display:inline-block;
	font-size:16px;
	line-height: 30px;
	background: rgba(255, 0, 0, 0.8);
	vertical-align:baseline;
	text-decoration:none;
	height: 30px;
	line-height: 30px;
    padding: 0 20px 0 10px;
    border-radius: 0 5px 5px 0;
	box-sizing:border-box;
	color:#fff;
	transition : all 0.5s ease 0s;
}
.article03-category-item:hover{
	background: rgba(0, 0, 0, 0.8);
	text-decoration:none;
	color:#fff;
}
.archiveColumnArticle .article03-content{
	padding:20px 15px;
}

/* ----------------------------------------------------------------------
フッター
---------------------------------------------------------------------- */
.footer{
	margin-top:0;
}

/*footer-info*/
.footerInfo{
	position:relative;
	background:#f2f2f2;
	padding:50px 0 60px;
}
.footerInfo::before{
	position:absolute;
	content:"";
	height:5px;
	width:100%;
	background: #000;
	background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(255, 0, 0, 1) 100%);
	top:0;
	left:0;
}

/*サイトマップ*/
.footerSitemap{
	width:calc(100% - 330px);
}
.footerSitemapTit{
	position:relative;
}
.footerSitemapTit::after{
	position:absolute;
	content:"";
	width:100%;
	height:1px;
	border-top:1px #333 dashed;
	top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.footerSitemapTit h3{
	position:relative;
	background:#f2f2f2;
	display:inline-block;
	padding-right:1em;
	z-index:2;
}
.footerSitemapBox{
	width:calc((100% - 60px) / 3);
}

/*会社情報*/
.footerCompany{
	width:300px;
}
img.footLogo{
	width:100%;
	max-width:300px;
	display:block;
	margin-left:auto;
}
p.footTelNo{
	font-size:40px;
	line-height:45px;
	text-align:right;
}
p.footTelNo::before{
	position: relative;
	content: url(images/ico_fd.png);
	top: 2px;
	margin-right: 5px;
}
.footerCompany p{
	text-align:right;
}
.footerCompany a.btn span::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0e0";
	font-size:120%;
	margin-right:0.3em;
}

@media screen and (max-width: 960px){
	.footerInfo .innerOrigin{
		display:block;
	}
	.footerSitemap,
	.footerCompany{
		width:100%;
	}
	.footerSitemap{
		margin-bottom:30px;
	}
	img.footLogo{
		margin-left:0;
		margin-right:auto;
	}
	.footerCompany p{
		text-align:left !important;
	}
}
@media screen and (max-width: 600px){
	.footerSitemapWrap{
		display:block;
	}
	.footerSitemapBox{
		width:100%;
	}
	.footerSitemapBox{
		margin-bottom:15px;
	}
	.footerSitemapBox ul{
		line-height:2.4em !important;
	}
}


/*コピーライト*/
.footer-bar01,.copyright,.pagetop a{
	background: #ff0000;
}
.copyright small a {
	color:#fff;
}

/* ----------------------------------------------------------------------
Google reCAPTCHA
---------------------------------------------------------------------- */
.grecaptcha-badge { visibility: hidden; }