@charset "utf-8";
/* CSS Document */

body {
	line-height: 160%;
	word-break: keep-all;
	padding: 0px;
	margin: 0px;
	text-align: center;
}
h1 {
	font-size: 48px;	
}
h2 {
	font-size: 36px;	
}
h3 {
	font-size: 30px;	
}
h4 {
	font-size: 27px;	
}
h5 {
	font-size: 24px;	
}
h6 {
	font-size: 22px;	
}
p {
	font-size: 16px;
	word-break: keep-all;
}
#intro  {
	background-color: #d0b7a5;
	padding: 80px 0px;
}
#intro img {
	width: 100%;
	display: block;	
}
#intro .logo .logo_img {
	width: 99px;
	margin: 0px auto 30px auto;
	display: block;
}
#intro .logo h3 {
	font-family: 'GmarketSans';
	font-weight: 500;
	letter-spacing: -0.5px;
	margin-bottom: 10px;
}
#intro .logo h6 {
	font-weight: 500;
	letter-spacing: -0.5px;
	margin-bottom: 40px;
}
#intro .link {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-around;
	padding: 10px;
}
#intro .link .item {
	width: 31.33%;
	background-color: #fff;
	border-radius: 14px;
	padding: 40px 0px;
	box-shadow: 7px 7px 0 #a38570;
}
#intro .link .item h4 {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70px;
	margin-bottom: 20px;
	letter-spacing: -1.5px;
}
#intro .link .item img {
	margin-bottom: 40px;	
}
#intro .link .item .ui.button.brown {
	font-size: 18px;
	color: #fff;
	background-color:#d0b7a5;
	padding: 12px 50px;
	border-radius: 7px;
	font-weight: 700;
}
.brown_txt {
	color: #91735d;
}
footer {
	padding: 40px 0px;	
}


@media (max-width: 1024px) {
	h1 {
		font-size: 36px;	
	}
	h2 {
		font-size: 30px;	
	}
	h3 {
		font-size: 27px;	
	}
	h4 {
		font-size: 24px;	
	}
	h5 {
		font-size: 22px;	
	}
	h6 {
		font-size: 20px;	
	}
	p {
		font-size: 15px;
	}
	#intro {
		padding: 50px 0px;
	}
	#intro .logo h6 {
		margin-bottom: 30px;
	}
	#intro .link .item {
		width: 30.33%;
		border-radius: 10px;
		padding: 35px 0px;
		box-shadow: 5px 5px 0 #a38570;
	}
	#intro .link .item img {
    	margin-bottom: 30px;
	}
	#intro .link .item .ui.button.brown {
		font-size: 17px;
	}
	footer {
    	padding: 30px 0px;
	}
}

@media (max-width: 767px) {
	h1 {
		font-size: 30px;	
	}
	h2 {
		font-size: 27px;	
	}
	h3 {
		font-size: 24px;	
	}
	h4 {
		font-size: 22px;	
	}
	h5 {
		font-size: 20px;	
	}
	h6 {
		font-size: 19px;	
	}
	p {
		font-size: 14px;
	}
	.m_br {
		display: block;	
	}
	#intro {
    	padding: 40px 0px;
	}
	#intro .link {
		flex-wrap: wrap;
	}
	#intro .logo h6 {
    	margin-bottom: 20px;
	}
	#intro .link .item {
		width: 80%;
		max-width: 500px;
		border-radius: 10px;
		padding: 35px 0px;
		box-shadow: 5px 5px 0 #a38570;
		margin-bottom: 20px;
	}
	#intro .link .item:last-child {
		margin-bottom: 0px;	
	}
	#intro .link .item .ui.button.brown {
		width: 80%;	
	}
}
	

@keyframes bigSmall {
	0% {transform:scale(1);}
	50%{transform:scale(1.1);}
	100%{transform:scale(1);}
}
@keyframes character{
	0% {transform: translate3d(0px, 0px, 0px); animation-timing-function: ease-out}
	50% {transform: translate3d(0px, -10px, 0px);animation-timing-function: ease-in}
	100% {transform: translate3d(0px, 0px, 0px);}
}