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

/*===============================================
●共通
===============================================*/

/* 英語の折り返しを指定 */
#caseWrap,
#caseListWrap,
#caseSelectWrap {word-wrap: break-word;}

/* 導入事例 共通
---------------------------------------- */

/* caseHeader */
#caseHeader {
	position: relative; left: 50%; transform: translateX(-50%); width: 100%;
	background: url("../../img/case/headBg.jpg") no-repeat center center / cover;
}
#caseHeader h1 {
	/* font-family: "ゴシックMB101 DB"; */
	line-height: 1.5em;
	color: #fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.6);
}
	#headerText h1 span {
		display: block;
	}

/* caseCatHead */
.caseCatHead span {
	display: inline-block;
	color: #fff;
	padding: 0.4em 0.8em;
}
.caseCatHead .cat01 {background-color: #30AA38;}
.caseCatHead .cat02 {background-color: #9C396A;}
.caseCatHead .cat03 {background-color: #804000;}
.caseCatHead .cat04 {background-color: #208FCE;}
.caseCatHead .cat05 {background-color: #FF7D26;}
.caseCatHead .cat06 {background-color: #FC0097;}
.caseCatHead .cat07 {background-color: #0B337C;}
.caseCatHead .cat08 {background-color: #616F77;}
.caseCatHead .cat09 {background-color: #c3a709;}
.caseCatHead p {
	font-weight: bold;
	text-align: inherit;
}

/* caseList */
.caseList .caseCatHead span {margin-bottom: 1em;}
.caseList a {
	display: block;
	text-decoration: none;
}
.caseList a:hover {color: #3B4043;}
.caseList .image {margin-bottom: 1em;}
.caseList .image span {
	background-image: url("../../img/common/noimage.gif");
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.caseList .image span:after {
	content: "";
	display: block;
	width: 100%;
	padding-top: 100%;
}

/* caseBtn */
.caseBtn .arrowIcon svg {
	display: inline-block;
	width: 1.12em;
	height: 1.12em;
}
.caseBtn .arrowIcon svg {
	fill: #0052A4;
	vertical-align: -0.25em;
}
.caseBtn a:hover .arrowIcon svg {
	fill: #fff;
	transition: all 0.3s;
}

/* 導入事例TOP
---------------------------------------- */
#caseWrap .acenter {line-height: 1.63em;}

/* latestCaseWrap */
#latestCaseWrap .btn {
	max-width: 310px;
	margin: 0 auto;
}

/* categoryImgList */
#categoryImgList a {
	display: block;
	text-decoration: none;
	position: relative;
}
#categoryImgList a .image img {width: 100%;}
#categoryImgList a h3 {
	color: #071E39;
	font-weight: bold;
	text-align: center;
	line-height: 2em;
	border: 1px solid #CDD6DD;
	border-top: none;
}
#categoryImgList  a:after {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 5%;
	border-bottom: 1px solid #071E39;
	border-right: 1px solid #071E39;
	transform: skewX(45deg) translateY(-50%);
	transition: all 0.3s ease;
}

/* 導入事例一覧
---------------------------------------- */
.catMenuList > div {
	display: inline-block;
	color: #0E53A3;
	background-color: #ECF6FF;
	font-weight: bold;
	padding: 0.4em 0 0.4em 0.6em;
	min-width: 70px;
	height: 30px;
	position: relative;
}
.catMenuList > div:after {
	border: 15px solid transparent;
	border-left-color: #ECF6FF;
	border-right-width: 0;
	content: "";
	display: block;
	height: 0;
	position: absolute;
	right: -15px;
	top: 0;
	width: 0;
}
.catMenuList ul {
	display: flex;
	flex-wrap: wrap;
}
.catMenuList li {
	display: inherit;
	margin: 0 0.8em 0.8em 0;
}
.catMenuList li a {
	text-decoration: none;
	padding: 0.4em 0.5em 0.3em;
}
.catMenuList .catAll a {
	border: 1px solid #FF0000;
	color: #FF0000;
}
.catMenuList .cat01 a {
	border: 1px solid #30AA38;
	color: #30AA38;
}
.catMenuList .cat02 a {
	border: 1px solid #9C396A;
	color: #9C396A;
}
.catMenuList .cat03 a {
	border: 1px solid #804000;
	color: #804000;
}
.catMenuList .cat04 a {
	border: 1px solid #208FCE;
	color: #208FCE;
}
.catMenuList .cat05 a {
	border: 1px solid #FF7D26;
	color: #FF7D26;
}
.catMenuList .cat06 a {
	border: 1px solid #FC0097;
	color: #FC0097;
}
.catMenuList .cat07 a {
	border: 1px solid #0B337C;
	color: #0B337C;
}
.catMenuList .cat08 a {
	border: 1px solid #616F77;
	color: #616F77;
}
.catMenuList .cat09 a {
	border: 1px solid #c3a709;
	color: #c3a709;
}
.catMenuList li a:hover,
.catMenuList .current a {color: #fff;}
.catMenuList .catAll a:hover,
.catMenuList .catAll.current a {background-color: #FF0000;}
.catMenuList .cat01 a:hover,
.catMenuList .cat01.current a {background-color: #30AA38;}
.catMenuList .cat02 a:hover,
.catMenuList .cat02.current a {background-color: #9C396A;}
.catMenuList .cat03 a:hover,
.catMenuList .cat03.current a {background-color: #804000;}
.catMenuList .cat04 a:hover,
.catMenuList .cat04.current a {background-color: #208FCE;}
.catMenuList .cat05 a:hover,
.catMenuList .cat05.current a {background-color: #FF7D26;}
.catMenuList .cat06 a:hover,
.catMenuList .cat06.current a {background-color: #FC0097;}
.catMenuList .cat07 a:hover,
.catMenuList .cat07.current a {background-color: #0B337C;}
.catMenuList .cat08 a:hover,
.catMenuList .cat08.current a {background-color: #616F77;}
.catMenuList .cat09 a:hover,
.catMenuList .cat09.current a {background-color: #c3a709;}

/* searchnav */
.searchnav {
	display:table;
	margin: 0 auto;
}
.searchnav ul {
	width: 100%;
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}
.searchnav ul li {
	margin: 0 0.6em 0 0;
	padding: 0;
	border: 1px #0E53A3 solid;
	line-height: 1em;
}
.searchnav ul li.disabled {
	display: block;
	color: #aaa;
	border: 1px #aaa solid;
	padding: 0.5em 0.6em;
}
.searchnav ul li.currentpage {
	color: #fff;
	padding: 0.5em 0.6em;
	background-color: #0E53A3;
}
.searchnav ul li:last-child {margin-right: 0;}
.searchnav ul li a {
	display: block;
	padding: 0.5em 0.6em;
	color: #0E53A3;
	text-decoration: none;
	border: none;
}
.searchnav ul li a:link {color: #0E53A3; }
.searchnav ul li a:visited {color: #0E53A3; }
.searchnav ul li a:hover {
	color: #fff;
	background-color: #0E53A3;
}
.searchnav .number {display: none;}

/* 導入事例詳細
---------------------------------------- */
#caseSelectWrap .caseCatHead {margin-bottom: 2em;}

/* photoBox */
#photoBox #dummyImage {margin-bottom: 1em;}
#photoBox #dummyImage img {width: 100%;}
#dummyImage {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	opacity: 0;
}
.caseItemBox .slideMainBox {
	position: relative;
	text-align: center;
	width: 100%;
	padding-top: 100%;
}
.caseItemBox .slideMainBox.onePhotoImg {
	padding-top: 0;
	cursor: pointer;
}
.flex-viewport li img {cursor: pointer;}
.flex-control-thumbs {
	display: flex;
	padding: 0.5em 0;
}
.flex-control-thumbs li {
	padding-top: 17.6%;
	width: 18%;
	border: #ccc 1px solid;
	position: relative;
	overflow: hidden;
}
.flex-control-thumbs img,
.flex-viewport li img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: auto;
	max-width: 100%;
	max-height: 100%;
}
.flex-control-thumbs li:not(:last-child) {margin-right: 2.5%;}
.flex-direction-nav a:before {display: none;}
#detailTextBox {line-height: 1.88em;}
#detailTextBox div {margin-bottom: 1em;}

/* useItemBox */
#useItemBox a {
	display: block;
	text-decoration: none;
}
#useItemBox .useItemImage {
	border: 1px solid #aaa;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.5em;
	position: relative;
	padding-top: 100%;
}
#useItemBox .useItemImage img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: auto;
	max-width: 100%;
	max-height: 100%;
}
#useItemBox .textBox h3 {
	font-weight: bold;
	line-height: 1.5em;
	margin-bottom: 0.6em;
}
#useItemBox .textBox .price {/* color: #E60012; */}

/* quotationBox */
#quotationBox {text-align: center;}
#quotationInner {background-color: #EAF6FD;}
#quotationBox .ballon {
	display: inline-block;
	background-color: #0052A4;
	border-radius: 5px;
	color: #fff;
	line-height: 1.6em;
	font-weight: bold;
	position: relative;
}
#quotationBox .ballon:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-top: 10px solid #0052A4;
}
#quotationBox .ballon .yellowFont {color: #FFFF00;}
#quotationBox .ballon .fontSmall {font-size: 0.8em;}
#quotationBox p {
	line-height: 1.63em;
	text-align: center;
}
#quotationBox .caseBtn {
	max-width: 450px;
	margin: 0 auto;
}

/*===============================================
●画面の横幅が729px以下
===============================================*/
@media screen and (max-width: 729px){

	/* 導入事例 共通
	---------------------------------------- */

	/* caseHeader */
	#caseHeader #headerInner {
		display: flex;
		align-items: flex-end;
		padding-left: 0.5em;
	}
	#caseHeader #headerText {width: 45%;}
	#caseHeader #headerText .text img {width: 100%;}
	#caseHeader #headerText h1 {
		font-size: 6vw;
		margin: 0.4em 0;
	}
	#headerText h1 span {
		font-size: 0.7em;
		line-height: 1.2em;
		padding-left: 0.1em;
}
	#caseHeader #headTent {width: 55%;}
	.caseCatHead p {font-size: 1em; line-height: 1.3;}

	/* caseList */
	.caseList section {margin-bottom: 3em;}


	/* 導入事例TOP
	---------------------------------------- */
	#caseWrap .acenter {margin-bottom: 4em;}
	#caseWrap .borderTitle {margin-bottom: 1.5em;}
	#latestCaseWrap {margin-bottom: 5em;}

	/* categoryWrap */
	#categoryWrap {margin-bottom: 4em;}
	#categoryImgList li {margin-bottom: 2.5em;}
	#categoryImgList h3 {
		font-size: 1.2em;
		padding: 0.5em 0 0.3em;
	}
	#categoryImgList a:after  {
		width: 2em;
		height: 5px;
		left: calc(100% - 50px);
	}
	#categoryImgList a:hover:after  {width: 2.3em;}

	/* 導入事例一覧
	---------------------------------------- */
	#caseListWrap {margin: 0 auto;}
	.catMenuList {margin-bottom: 1em;}
	.catMenuList > div {margin-bottom: 0.8em;}
	.catMenuList li {font-size: 0.95em;}
	#caseListWrap .caseList {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 1em;
	}
	#caseListWrap .caseList section {width: 48%;}

	/* 導入事例詳細
	---------------------------------------- */
	#caseSelectWrap #contentBox,
	#quotationBox  {margin-bottom: 4em;}
	#caseSelectWrap .tit03 {margin-bottom: 1em;}
	#caseSelectWrap .caseCatHead p {margin-bottom: 0.5em;}
	#photoBox {margin-bottom: 2em;}

	/* useItemBox */
	#useItemBox {margin-top: 2em;}
	#useItemBox .borderTitle {margin-bottom: 1.5em;}
	#useItemBox .caseItemBox {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#useItemBox .caseItemBox section {
		width: 48%;
		margin-bottom: 2em;
	}

	/* quotationBox */
	#quotationInner {
		margin-top: -2.5em;
		padding: 4.3em 1em 1.5em 1em;
	}
	#quotationBox .ballon {
		width: 87%;
		font-size: 1.14em;
		padding: 0.5em;
	}
	#quotationBox p {margin-bottom: 1em;}
}
/*===============================================
●画面の横幅が730px以上
===============================================*/
@media screen and (min-width: 768px) {

	/* 導入事例 共通
	---------------------------------------- */

	/* caseHeader */
	#caseHeader #headerInner {
		max-width: 1080px;
		margin: 0 auto;
		position: relative;
		padding: 0 10px;
	}
	#caseHeader #headerText h1 {
		font-size: 3.5em;
		letter-spacing: 0.05em;
		margin: 0.5em 0;
	}
	#caseHeader #headTent {
		position: absolute;
		bottom: -0.1em;
		right: 0;
		max-width: 655px;
		width: 63%;
	}
	.caseCatHead p {font-size: 1.28em; line-height: 1.3;}
	#headerText h1 span {
		font-size: 0.5em;
		padding-left: 0.2em;
		line-height: 2em;
	}
	
	/* caseList */
	.caseList {
		display: flex;
		flex-wrap: wrap;
	}
	.caseList a:hover {opacity: 0.8;}

	/* 導入事例TOP
	---------------------------------------- */
	#caseWrap {margin-top: 2em;}
	#caseWrap .acenter {
		font-size: 1.14em;
		margin-bottom: 6.8em;
	}

	/* latestCaseWrap */
	#latestCaseWrap {margin-bottom: 8.2em;}
	#latestCaseWrap .borderTitle {margin-bottom: 2em;}
	#latestCaseWrap .caseList {margin-bottom: 4.86em;}
	#latestCaseWrap .caseList section {width: 30.4%;}
	#latestCaseWrap .caseList section:not(:nth-child(3n)) {margin-right: 4.4%;}

	/* categoryWrap */
	#categoryWrap {margin-bottom: 8.2em;}
	#categoryWrap .borderTitle {margin-bottom: 1.7em;}

	/* categoryImgList */
	#categoryImgList {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#categoryImgList li {
		width: 32%;
		margin-bottom: 4em;
	}
	#categoryImgList a .image {position: relative;}
	#categoryImgList h3 {
		padding: 1em 0 0.8em;
		font-size: 1.28em;
	}
	#categoryImgList  a:after {
		width: 2.5em;
		left: 85%;
		height: 5px;
	}
	#categoryImgList a:hover {opacity: 1;}
	#categoryImgList a:hover h3 {
		background-color: #0052A4;
		color: #fff;
		border: none;
		transition: all 0.3s;
	}
	#categoryImgList  a:hover:after {
		border-bottom: 1px solid #fff;
		border-right: 1px solid #fff;
		width: 3em;
	}

	/* 導入事例一覧
	---------------------------------------- */
	#caseListWrap {margin: 0 auto; font-size: 1.4rem; line-height: 1.3em;}
	#caseListWrap .caseList {margin-bottom: 1em;}
	#caseListWrap .caseList section {
		width: 32%;
		margin-bottom: 6em;
	}
	#caseListWrap .caseList section:not(:nth-child(3n)) {margin-right: 2%;}
	.catMenuList {
		display: flex;
		align-items: flex-start;
		margin-bottom: 5em;
	}
	.catMenuList ul {margin-left: 2em;}
	.searchnav ul li {font-size: 1.07em;}

	/* 導入事例詳細
	---------------------------------------- */

	/* 共通部分 */
	#caseSelectWrap #contentBox,
	#quotationBox {margin-bottom: 8em;}

	#useItemBox { margin-top: 8rem;}

	/* caseSelectWrap */
	#caseSelectWrap { max-width: 980px; margin: 0 auto; font-size: 1.4rem; line-height: 1.3em;}
	#caseSelectWrap #contentBox {margin-top: 2em;}
	#caseSelectWrap .tit03 {margin-bottom: 1.5em;}
	#caseSelectWrap .caseCatHead p {margin-bottom: 1em;}
	.caseItemBox {
		display: flex;
		flex-wrap: wrap;
	}
	.caseItemBox .slideMainBox {max-width: 500px;}
	#photoBox {
		position: relative;
		max-width: 500px;
		width: 55%;
	}
	#detailTextBox {
		font-size: 1.14em;
		width: 45%;
		margin-left: 1em;
	}

	/* useItemBox */
	#useItemBox .borderTitle {margin-bottom: 2em;}
	#useItemBox section {width: 23.2%;}
	#useItemBox section:not(:nth-child(4n)) {margin-right: 2.4%;}
	#useItemBox section:not(:nth-child(-n+4)) {margin-top: 2em;}
	#useItemBox a:hover {opacity: 0.8;}
	#useItemBox .textBox h3,
	#useItemBox .textBox p {font-size: 1.28em;}

	/* quotationBox */
	#quotationInner {
		margin-top: -2em;
		padding: 4.8em 0 2em;
	}
	#quotationBox .ballon {
		font-size: 1.43em;
		padding: 0.5em 2em;
	}
	#quotationBox p {
		font-size: 1.14em;
		margin-bottom: 1.5em;
	}
}

@media screen and (min-width: 1300px) {
	#caseListWrap .caseList section {
		width: 24%; margin-right: 1.3% !important;
		margin-bottom: 6em;
	}
	#caseListWrap .caseList section:nth-child(4n) { margin-right: 0 !important;}
}