/* CSS Document */

.officerBOX  {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.officerBOX li  {
	width: 45%;
	background: #fff;
	box-shadow: 0 0 30px rgba(200,200,200,0.2);
	padding: 15px;
	box-sizing: border-box;
	margin: 0 10px 15px 10px;
	display: flex;
	justify-content:space-between;
}
.officerBOX li .left  {
	width: 30%;
}
.officerBOX li .right  {
	width: 60%;
	 display: flex;
	flex-direction: column;
  justify-content: center;
}
.officerBOX li .right .kata  {
	width: 200px;
	background: #00b6c9;
	padding: 5px 15px;
	box-sizing: border-box;
	text-align: center;
	color:#fff;
	line-height: 1.5;
	font-size: clamp(1rem, 1.2vw, 1.4rem);
	margin-bottom: 5px;

}
.officerBOX li .right .name  {
	font-size: clamp(1.5rem, 1.9vw, 2.2rem);
	line-height: 1.5;
	margin-bottom: 2px;
}
.officerBOX li .right .nameENG  {
	font-size: clamp(1.2rem, 1.3vw, 1.4rem);
	line-height: 1.5;
	color:#999999;
}


@media screen and (max-width: 834px){
	

.officerBOX  {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-wrap: wrap;
}

.officerBOX li  {
	width: auto;
	background: #fff;
	box-shadow: 0 0 30px rgba(200,200,200,0.2);
	padding: 15px;
	box-sizing: border-box;
	margin: 0 0px 10px 0px;
	display: flex;
	justify-content:space-between;
}
.officerBOX li .left  {
	width: 30%;
}
.officerBOX li .right  {
	width: 65%;
	 display: flex;
	flex-direction: column;
  justify-content: center;
}
.officerBOX li .right .kata  {
	width: auto;
	background: #00b6c9;
	padding: 5px 15px;
	box-sizing: border-box;
	text-align: center;
	color:#fff;
	line-height: 1.5;
	font-size: clamp(1.2rem, 1.2vw, 1.4rem);
	margin-bottom: 5px;

}
.officerBOX li .right .name  {
	font-size: clamp(1.7rem, 1.9vw, 2.2rem);
	line-height: 1.5;
	margin-bottom: 2px;
	text-align: center;
}
.officerBOX li .right .nameENG  {
	font-size: clamp(1.2rem, 1.3vw, 1.4rem);
	line-height: 1.5;
	color:#999999;
	text-align: center;
}

	
}






















