@charset "UTF-8";

@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

@media screen and (min-width: 641px){
	.container{
		width: 920px;
		padding: 40px 0 60px;
		position: relative;
	}
	
	h2{
		
	}
	h2 img{
		width: 390px;
	}
	.casestudy-head{
		margin-top: 30px;
		background: url("../../images/smartbarcode/casestudy/title_casestudies.png") no-repeat top left;
		background-size: 920px auto;
		min-height: 161px;
	}
	.casestudy-head h3{
		padding: 30px 0 5px;
		font-size: 26px;
		border-bottom: 1px solid #707070;
	}
	.casestudy-head .text1{
		padding-top: 10px;
		font-size: 42px;
		line-height: 1.3;
	}
	.casestudy-head .text2{
		padding-top: 30px;
	}

	.casestudy-body{
		margin: 40px auto 0;
		text-align: center;
	}

	.case-block{
		display: inline-block;
		border-radius: 35px;
		background: #F5F6FA;
		box-shadow:  6px 6px 12px #d0d1d5,-6px -6px 12px #ffffff;
		padding: 10px;
		cursor: pointer;
		margin: 30px auto;
		text-align: left;
	}
	.case-block .case-bg{
		margin: 0 auto;
		width: 800px;
		background-color: #F8DA59;
		border-radius: 30px;
		transition: .3s;
		position: relative;
	}
	
	.case-block .box-head{
		padding: 20px;
		display: flex;
		align-items: stretch;
	}
	.case-block .case-left{
		display: flex;
		align-items: center;
		width: 58%;
		
	}
	.case-block .case-num{
		color: #fff;
		font-size: 100px;
		line-height: 0.9;
		font-family: 'Noto Sans', sans-serif;
		width: 50%;
	}
	.case-block .case-num span{
		display: block;
		font-size: 30px;
	}
	.case-block .case-cname{
		font-size: 40px;
		width: 50%;
		font-weight: 700;
		line-height: 1.4;
	}
	.case-block.case1 .case-cname span{
		font-size: 28px;
	}
	.case-block.case4 .case-cname span{
		display: block;
		font-size: 20px;
	}
	
	.case-block .case-right{
		width: 42%;
		padding-left: 20px;
		border-left: 1px solid #707070;
		display: flex;
		align-items: center;
	}
	
	.case-block .box-body{
		display: none;
		margin: 0 auto;
		padding: 20px;
		width: 740px;
		opacity: 0;
	}
	.case-block.open .box-body{
		display: block;
		animation: fadeIn 0.5s linear;animation-fill-mode: both;
	}
	.case-block.open .case-bg{
		width: 900px;
	}
	.case-text1{
		font-size: 16px;
	}
	
	.case-img{
		margin: 50px auto;
	}
	.case-block.case4 .case-img {
		width: 610px;
	}
	.case-block.case4 .case-img {
		width: 590px;
	}
	.case-line{
		margin-top:50px;
		border-bottom: 1px solid rgba(255,255,255,1.00);
		margin-bottom: 30px;
	}
	
	.case2 .case-img {
		width: 596px;
	}
	.case2 .case-img {
		width: 686px;
	}
	.case-block .arrow {
		position: absolute;
		top:30px;
		right: 50px;
		display: block;
		width: 18px;
		height: 18px;
		border: 0px;
		border-top: solid 3px #fff;
		border-right: solid 3px #fff;
		transform: rotate(135deg); 
		transition: .1s;
	}
	.case-block.open .arrow {
		transform: rotate(-45deg); 
	}
	
	.example-head{
		margin-top: 30px;
		background: url("../../images/smartbarcode/casestudy/title_example.png") no-repeat top left;
		background-size: 920px auto;
		min-height: 161px;
	}
	.example-head h3{
		padding: 30px 0 5px;
		font-size: 26px;
		border-bottom: 1px solid #707070;
	}
	.example-head .text1{
		padding-top: 10px;
		font-size: 42px;
		line-height: 1.3;
	}
	.example-block{
		margin: 20px 0;
		display: flex;
	}
	.example-block .e-block{
		text-align:center;
		display: flex;
  		justify-content: center;
  		align-items: center;
		width: 300px;
		height: 250px;
	}
	.example-block .e-box{
		padding: 6px;
		display: inline-block;
		vertical-align: middle;
		border-radius: 35px;
		background: #F5F6FA;
		box-shadow:  6px 6px 12px #d0d1d5,-6px -6px 12px #ffffff;
		text-align: center;
		cursor: pointer;
		transition: .3s;
	}
	.example-block .e-box .e-bg{
		background-color: rgba(248,218,89,0);
		width: 220px;
		height: 150px;
		border-radius: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-flow: column;
		transition: .3s;
	}
	.example-block .e-box:hover .e-bg{
		background-color: rgba(248,218,89,1.00);
	}
	.example-block .e-head{
		font-size: 22px;
		line-height: 1.4;
	}
	.example-block .e-bdoy{
		display: none;
		font-size: 12px;
		font-weight: 500;
		width: 260px;
		padding-top: 10px;
		line-height: 1.4;
		text-align: left;
	}
	.example-block .e-box.open{
		padding: 0px;
	}
	.example-block .e-box.open .e-bg{
		width: 300px;
		height: 250px;
	}
	.example-block .e-box.open .e-bdoy{
		display: block;
		animation: fadeIn 0.6s linear;animation-fill-mode: both;
	}
	.example-block .e-box.open .e-head br{
		display: none;
	}
}

@media screen and (max-width: 640px) {
	.container{
		padding-top:80px;
		padding-bottom:120px;
		position: relative;
	}
	
	h2{
		margin: 0 auto;
		text-align: center;
	}
	h2 img{
		width: 275px;
	}
	.casestudy-head{
		margin-top: 30px;
		background: url("../../images/smartbarcode/casestudy/mb_title_casestudies.png") no-repeat top left;
		background-size: 100% auto;
		min-height: 161px;
	}
	.casestudy-head h3{
		padding: 30px 0 5px;
		font-size: 16px;
		border-bottom: 1px solid #707070;
	}
	.casestudy-head .text1{
		padding-top: 10px;
		font-size: 24px;
		line-height: 1.3;
	}
	.casestudy-head .text2{
		padding-top: 30px;
	}

	
	
	.casestudy-body{
		margin: 40px auto 0;
		text-align: center;
	}

	
	.case-block{
		display: inline-block;
		border-radius: 35px;
		background: #F5F6FA;
		box-shadow:  6px 6px 12px #d0d1d5,-6px -6px 12px #ffffff;
		padding: 8px;
		cursor: pointer;
		margin: 20px auto;
		text-align: left;
		width: 100%;
		transition: .3s;
	}
	.case-block .case-bg{
		margin: 0 auto;
		width: 100%;
		background-color: #F8DA59;
		border-radius: 30px;
		transition: .3s;
		position: relative;
	}
	
	.case-block .box-head{
		padding: 30px 10px;
		display: flex;
		align-items: stretch;
	}
	.case-block .case-left{
		display: flex;
		align-items: center;
		width: 50%;
		
	}
	.case-block .case-num{
		color: #fff;
		font-size: 26px;
		line-height: 1;
		font-family: 'Noto Sans', sans-serif;
		width: 40%;
	}
	.case-block .case-num span{
		display: block;
		font-size: 16px;
	}
	.case-block .case-cname{
		font-size: 18px;
		width: 60%;
		font-weight: 700;
	}
	.case-block.case1 .case-cname span{
		font-size: 14px;
	}
	.case-block.case4 .case-cname span{
		display: block;
		font-size: 9px;
	}
	.case-block .case-right{
		width: 50%;
		padding-left: 10px;
		border-left: 1px solid #707070;
		display: flex;
		align-items: center;
	}
	.case-block .case-info{
		font-size: 12px;
	}
	
	.case-block .box-body{
		display: none;
		margin: 0 auto;
		padding: 20px;
		opacity: 0;
	}
	
	
	
	.case-block.open .box-body{
		display: block;
		animation: fadeIn 0.5s linear;animation-fill-mode: both;
	}
	.case-block.open{
		padding: 0;
	}
	.case-block.open .case-info{
		font-size: 14px;
	}
	.case-block.open .case-info br{
		display: none;
	}
	.case-block.open .case-bg{
		
	}
	
	.case-text1{
		font-size: 14px;
	}
	
	.case-img{
		margin: 50px auto;
	}
	.case-line{
		margin-top:50px;
		border-bottom: 1px solid rgba(255,255,255,1.00);
		margin-bottom: 30px;
	}
	
	.case-block .arrow {
		position: absolute;
		top:5px;
		right: 25px;
		display: block;
		width: 14px;
		height: 14px;
		border: 0px;
		border-top: solid 3px #fff;
		border-right: solid 3px #fff;
		transform: rotate(135deg); 
		transition: .1s;
	}
	.case-block.open .arrow {
		top:15px;
		transform: rotate(-45deg); 
	}
	.example-head{
		margin-top: 30px;
		background: url("../../images/smartbarcode/casestudy/mb_title_example.png") no-repeat top left;
		background-size: 100% auto;
		min-height: 161px;
	}
	.example-head h3{
		padding: 30px 0 5px;
		font-size: 16px;
		border-bottom: 1px solid #707070;
	}
	.example-head .text1{
		padding-top: 10px;
		font-size: 24px;
		line-height: 1.3;
	}
	.example-block{
		margin: 0px auto;
		text-align: center;
	}
	.example-block .e-block{
		text-align:center;
		display: block;
		margin: 20px auto;
	}
	.example-block .e-box{
		padding: 6px;
		display: inline-block;
		vertical-align: middle;
		border-radius: 35px;
		background: #F5F6FA;
		box-shadow:  6px 6px 12px #d0d1d5,-6px -6px 12px #ffffff;
		text-align: center;
		cursor: pointer;
		transition: .3s;
	}
	.example-block .e-box .e-bg{
		background-color: rgba(248,218,89,0);
		width: 220px;
		height: 150px;
		border-radius: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-flow: column;
		transition: .3s;
	}
	.example-block .e-box:hover .e-bg{
		background-color: rgba(248,218,89,1.00);
	}
	.example-block .e-head{
		font-size: 18px;
		line-height: 1.4;
	}
	.example-block .e-bdoy{
		display: none;
		font-size: 12px;
		font-weight: 500;
		width: 250px;
		padding-top: 10px;
		line-height: 1.4;
		text-align: left;
	}
	.example-block .e-box.open{
		padding: 0px;
	}
	.example-block .e-box.open .e-bg{
		width: 280px;
		height: 250px;
	}
	.example-block .e-box.open .e-bdoy{
		display: block;
	}
	.example-block .e-box.open .e-head br{
		
	}

}