/* CSS Document */
a {
	color: #3F5F57;
}
a:hover {
	color: #2F4A44;
}
#business header,
#business footer .bottom {
  background: #0F2E2A;
}
header #menu,
footer{
  background: #F5F3EF;
}
header .inquiry li:last-child a,
main #form .contact {
  background: #B08D57;
}
header #menu {
  margin-bottom: 0;
	width: 100%;
}
header #menu ul{
max-width: 1200px;
	display: flex;
	justify-content: space-around;
}
header #menu li a {
  padding: 15px 3px;
}
#business main {
	text-align: center;
  padding-bottom: 750px;
}
#business main .top-img {
  text-align: center;
  margin: 20px auto 30px;
}
#business main .content {
	background: #F1FAF9;
	padding: 20px;
	border-radius: 10px;
}
#business section {
	margin-bottom: 100px;
}
#business section strong {
	color: #B08D57;
	font-size: 1.2em;
}
#business aside {
	font-size: 10px;
}

#business main .link {
	text-align: right;
	margin-top: 30px;
}
#business main .link a {
	display: inline-flex;
  align-items: center;
  text-decoration: none;
  background-color: #333;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
#business main .link a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background-image: url("../images/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#business main .link a:hover {
	opacity: 0.8;
}
#business main .contact {
	width: 96%;
	max-width: 960px;
	margin: 0 auto 100px;
}
#business main .contact .title h3 {
	font-size: 1.5em;
	margin-bottom: 75px;
	text-align: center;
}
#business main .contact-content p{
	text-align: left;
}
#business main .contact .button {
	text-align: center;
	margin: 50px auto 100px;
}

#business .menu-black ul {
	margin-bottom: 50px;
}
#business .menu-black ul li {
  width: 20%
}
#business .menu-black ul li a {
	font-size: .8em;
	padding: 30px 10px 30px;
}
#business .menu-black ul li a span {
  display: block;
  font-size: 1.3em
}
footer .links li::before { 
	background-image: url("../../img/icon/caret-right-solid-green.svg");
}
@media screen and (max-width: 1200px) {
#business main {
  padding-bottom: 100px;
}
}
@media screen and (max-width: 768px) {
#business main .content {
	padding: 10px;
}
	#business main .link {
	text-align: left;
	margin: 30px auto;
}
	#business .menu-black ul {
		flex-wrap: wrap;
	}
#business .menu-black ul li {
  width: 100%
}
}