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

/*==============================*/
/* Navi */
/*==============================*/
ul.casestudyNavi{
	display: flex;
	flex-wrap: wrap;
	gap: 12px 8px;
}
ul.casestudyNavi li{ width: calc(calc(100% - 8px * 3) / 4);}
ul.casestudyNavi li a{
	display: block;
	padding: 4px 0;
	background: #EFFAFD;
	border-radius: 200px;
	text-align: center;
	color: var(--themecolor);
	font-size: 14px;
	font-weight: 400;
}
ul.casestudyNavi li a:hover{
	background: var(--themecolor);
	color: #fff;	
}
	/* ======= TB =======*/
	@media screen and (min-width: 768px) and (max-width: 1024px) {
		ul.casestudyNavi{ gap: 10px 8px;}
		ul.casestudyNavi li{ width: calc(calc(100% - 8px * 2) / 3);}
	}
	/* ======= SP =======*/
	@media (max-width: 767px) {
		ul.casestudyNavi{ gap: 10px 6px;}
		ul.casestudyNavi li{ width: calc(calc(100% - 6px * 1) / 2);}
		ul.casestudyNavi li a{
			padding: 6px 0;
			font-size: 13px;
		}
	}


/*==============================*/
/* Case study */
/*==============================*/
div.casestudyWrap{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 40px;
}

div.casestudy{ width: calc(calc(100% - 40px * 2) / 3);}

div.casestudy a{
	display: block;
	height: 100%;
	box-shadow: 1px 2px 6px 0px rgba(153,153,153,0.3);
	border-radius: 8px;
}
	/* ======= TB =======*/
	@media screen and (min-width: 768px) and (max-width: 1024px) {
		div.casestudyWrap{ gap: 22px 22px;}
		div.casestudy{ width: calc(calc(100% - 22px * 1) / 2);}
	}
	/* ======= SP =======*/
	@media (max-width: 767px) {
		div.casestudyWrap{
			flex-direction: column;
			gap: 20px 0px;
		}
		div.casestudy{ width: 100%;}
	}

/*---------------------------------
   tmb
---------------------------------*/
div.casestudy figure img{
	border-radius: 8px 8px 0 0 ;
}


/*---------------------------------
   Content
---------------------------------*/
div.casestudy div{ padding: 22px 24px 24px 24px;}


/*-- 
------------------------- */
div.casestudy div h3{
	margin-bottom: 8px;
	text-align: center;
}
div.casestudy div h3 img{
	height: 40px;
}
div.casestudy div h3 small{
	display: block;
	margin-top: 4px;
}

/*-- 
------------------------- */
div.casestudy div h4{
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin-bottom: 16px;
	color: var(--themecolor);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.414em;
	text-align: justify;
	text-align-last: left;
}

/*-- 
------------------------- */
div.casestudy div ul li{
	background: #EFF2F4;
	border-radius: 200px;
	color: var(--themecolor);
	font-size: 14px;
	font-weight: 400;
	text-align: center;
}
div.casestudy div ul li:not(:last-child){ margin-bottom: 8px;}



/*==========================================*/
/* 詳細ページ */
/*==========================================*/
div.casestudyDetail-wrap{
	max-width: 1024px;
	margin: 0 auto;
}

/*---------------------------------
   Title
---------------------------------*/
div.casestudyDetail h3{
	margin-bottom: 28px;
	color: #000;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.7em;
}

/*-- 
------------------------- */
div.casestudyDetail h4{
	position: relative;
	margin-bottom: 24px;
	padding-left: 32px;
	color: #000;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.618em;
}
div.casestudyDetail h4::before{
	position: absolute; top: 14px; left: 0;
	content: "";
	width: 20px;
	height: 1px;
	background: #000;
}

	/* ======= TB =======*/
	@media screen and (min-width: 768px) and (max-width: 1024px) {
	}
	/* ======= SP =======*/
	@media (max-width: 767px) {
		div.casestudyDetail h3{
			margin-bottom: 28px;
			font-size: 22px;
			line-height: 1.5em;
		}

		/*-- 
		------------------------- */
		div.casestudyDetail h4{
			margin-bottom: 24px;
			padding-left: 32px;
			font-size: 17px;
			font-weight: 600;
			line-height: 1.5em;
		}
	}


/*---------------------------------
   
---------------------------------*/
div.casestudyDetail dl{
	display: flex; display: -webkit-flex;
}
div.casestudyDetail dl dt{
	position: relative;
	width: 104px;
	margin-right: 6px;
	color: #000;
	font-size: 17px;
	font-weight: 700;
}
div.casestudyDetail dl dt::after{
	position: absolute; top: 1px;
	content: "：";
}
div.casestudyDetail dl dd{ flex: 1;}
div.casestudyDetail dl dd p:not(:last-child){ margin-bottom: 24px;}

	/* ======= TB =======*/
	@media screen and (min-width: 768px) and (max-width: 1024px) {
	}
	/* ======= SP =======*/
	@media (max-width: 767px) {
	}


/*==============================*/
/* メイン画 */
/*==============================*/
div.casestudyVisual{
	position: relative;
}

/*---------------------------------
   Content
---------------------------------*/


	/* ======= SP以上 =======*/
	@media (min-width: 768px) {
		div.casestudyVisual div{
			position: absolute; bottom: 0; left: 50%;
			max-width: 920px;
			width: 100%;
			margin-left: -460px;
		}
	}
	/* ======= TB =======*/
	@media screen and (min-width: 768px) and (max-width: 1024px) {
		div.casestudyVisual div{
			position: absolute; bottom: 0; left: 0;
			max-width: 100%;
			width: 100%;
			margin-left: 0;
		}
	}
	/* ======= SP =======*/
	@media (max-width: 767px) {
		div.casestudyVisual div{
			display: flex;
			flex-direction: column-reverse;
		}
	}

/*-- 
------------------------- */
div.casestudyVisual div h2{
	padding: 22px 40px;
	background: rgba(6, 188, 240, 0.7);
	color: #fff;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.5em;
}
	/* ======= TB =======*/
	@media screen and (min-width: 768px) and (max-width: 1024px) {
		div.casestudyVisual div h2{
			padding: 20px 24px;
			font-size: 22px;
			line-height: 1.414em;
		}
	}
	/* ======= SP =======*/
	@media (max-width: 767px) {
		div.casestudyVisual div h2{
			margin-bottom: 16px;
			padding: 16px 20px;
			background: rgba(6, 188, 240, 1);
			font-size: 18px;
			line-height: 1.414em;
		}
	}


/*-- 
------------------------- */
div.casestudyVisual div ul{
	display: flex;
	width: min(384px,100%);
	margin-left: auto;
	margin-bottom: 16px;
	gap: 6px;
}
div.casestudyVisual div ul li{
	width: calc(calc(100% - 6px * 2) / 3);
	background: #fff;
	border-radius: 3px;
}
div.casestudyVisual div ul li a,
div.casestudyVisual div ul li button{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 4px 0 6px 0;
	text-align: center;
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	border-radius: 3px;
	line-height: 1.3em;
	gap: 4px;
}
div.casestudyVisual div ul li button span{
	display: inline-block;
	font-size: 13px;
	line-height: 1.3em;
	margin-right: -6px;
}
div.casestudyVisual div ul li:nth-child(1) a{ background: #1876F7;}
div.casestudyVisual div ul li:nth-child(2) a{ background: #000;}
div.casestudyVisual div ul li:nth-child(3) button{ background: #6f7579;}


div.casestudyVisual div ul li button{ cursor: pointer;}


div.casestudyVisual div ul li a:hover,
div.casestudyVisual div ul li button:hover{ opacity: 0.8;}


	/* ======= TB =======*/
	@media screen and (min-width: 768px) and (max-width: 1024px) {
		div.casestudyVisual div ul{
			margin-right: 16px;
		}
	}
	/* ======= SP =======*/
	@media (max-width: 767px) {
		div.casestudyVisual div ul{
			justify-content: center;
			margin-bottom: 0px;
			margin-left: 0;
			width: 100%;
		}
		div.casestudyVisual div ul li button span{ display: none;}
	}


/*==============================*/
/* 情報 */
/*==============================*/
div.casestudyInfo{
	display: flex;
	margin-bottom: 40px;
	padding: 24px 40px;
	border: 1px solid var(--themecolor);
	border-radius: 5px;
	gap: 0px 28px;
}
div.casestudyInfo > dl{
	width: calc(calc(100% - 28px * 1) / 2);
}
div.casestudyInfo > dl > dt{
	margin-bottom: 12px;
	color: var(--themecolor);
	font-size: 18px;
	font-weight: 700;
}
	/* ======= TB =======*/
	@media screen and (min-width: 768px) and (max-width: 1024px) {
		div.casestudyInfo{
			padding: 24px 28px;
			gap: 0px 22px;
		}
		div.casestudyInfo > dl{ width: calc(calc(100% - 22px * 1) / 2);}
	}
	/* ======= SP =======*/
	@media (max-width: 767px) {
		div.casestudyInfo{
			flex-direction: column;
			margin-bottom: 40px;
			padding: 20px 20px;
			gap: 18px 0px;
		}
		div.casestudyInfo > dl{ width: 100%;}
		div.casestudyInfo > dl > dt{ margin-bottom: 10px;}
	}


/*---------------------------------
   会社情報
---------------------------------*/
div.casestudyInfo > dl > dd dl{
	display: flex; display: -webkit-flex;
}
div.casestudyInfo > dl > dd dl:not(:last-child){ margin-bottom: 12px;}
div.casestudyInfo > dl > dd dl dt{
	width: 72px;
	color: #000;
	font-size: 16px;
}
div.casestudyInfo > dl > dd dl dd{
	flex: 1;
	margin-left: 12px;
	padding-top: 2px;
	font-size: 14px;
	line-height: 1.618em;
}
	/* ======= TB =======*/
	@media screen and (min-width: 768px) and (max-width: 1024px) {
	}
	/* ======= SP =======*/
	@media (max-width: 767px) {
	}


/*---------------------------------
   導入について
---------------------------------*/
div.casestudyInfo > dl > dd ul{
	display: flex;
	flex-wrap: wrap;
	gap: 9px 9px;
}

div.casestudyInfo > dl > dd ul li{ width: calc(calc(100% - 9px * 1) / 2);}
div.casestudyInfo > dl > dd ul li a{
	display: block;
	padding: 7px 0 9px 0;
	background: var(--themecolor);
	border-radius: 3px;
	text-align: center;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
}
div.casestudyInfo > dl > dd ul li a:hover{
	background: #28A6DD;
}

	/* ======= TB =======*/
	@media screen and (min-width: 768px) and (max-width: 1024px) {
		div.casestudyInfo > dl > dd ul{ gap: 8px 8px;}

		div.casestudyInfo > dl > dd ul li{ width: calc(calc(100% - 8px * 1) / 2);}
		div.casestudyInfo > dl > dd ul li a{ font-size: 14px;}
	}
	/* ======= SP =======*/
	@media (max-width: 767px) {
		div.casestudyInfo > dl > dd ul{ gap: 6px 6px;}

		div.casestudyInfo > dl > dd ul li{ width: calc(calc(100% - 6px * 1) / 2);}
		div.casestudyInfo > dl > dd ul li a{ font-size: 14px;}
	}



