/*--------------------------------------------------------------
>>> : BRAND
----------------------------------------------------------------*/
#brand {
	margin-top: 80px;
	padding-bottom: 100px;
}
#brand .ttl {
	width: 80%;
	margin-left: 15%;
	margin-bottom: 90px;
	text-align: center;
}
#brand .ttl h1 {
  position: relative;
  display: inline-block;
  margin-bottom: .8em;
	font-weight: 800;
}
#brand .ttl h1:before {
  content: '';
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 40px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background:var(--color-accent);
  border-radius: 7px;
}

#brand .btnWrap {
  width: 80%;
	margin-top: 50px;
  margin-left: 15%;
}

#brand .brandWrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	width: 73%;
	margin-left: 15%;
}
#brand .brandItem {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  color: var(--color-black);

	width: 100%;
  height: 100%;
  padding: 0;
	margin-bottom: 100px;
  box-sizing: border-box;
}


#brand .brandItem .thumbnail {
	max-width: 250px;
	width: 50%;
	margin-right: 20px;
}
#brand .brandItem h4 {
	font-size: var(--font-size-h5);
	font-weight: 700;
	margin: 0;
}
#brand .brandItem_info p {
	font-size: 13px;
}

@media (min-width: 801px) {
  #brand .brandItem_info {
    flex: 1;
  }
}


@media(max-width: 1150px) {
	#brand .ttl {
		width: 75%;
		margin-left: 20%;
		margin-bottom: 60px;
	}
	#brand .brandWrap {
		width: 75%;
		margin-left: 20%;
	}
}

@media(max-width: 800px) {
	#brand {
		margin-top: 80px;
		padding-bottom: 60px;
	}
	#brand .ttl {
		width: 90%;
		margin: 0 auto 60px;
	}

	#brand .brandWrap {
		width: 90%;
		margin: auto;
	}
	#brand .brandItem h4,
	#brand .brandItem_info {
		width: 100%;
	}
  #brand .btnWrap {
		width: 100%;
		margin-left: auto;
    padding-top: 0;
  }
}


@media (max-width: 599px) {
	#brand .ttl {
		width: 300px;
		margin: 0 auto 50px;
	}
	#brand .ttl h1 {
	margin-bottom: 1.2em;
	}
	#brand .ttl p {
		font-size: var(--font-size-sp-copy);
		line-height: 1.6;
	}

	#brand .brandWrap {
		width: 100%;
		flex-direction: column;
	}

	#brand .brandItem {
		width: 90%;
		margin: 0 auto 80px;
	}
	#brand .brandItem .thumbnail {
		max-width: 70%;
		width: 70%;
		margin: auto;
	}
}



/*--------------------------------------------------------------
>>> : BRAND POST
----------------------------------------------------------------*/
#post {
  margin-top: 100px;
	margin-bottom: 150px;
}

#post .postWrap {
  width: 80%;
  max-width: 800px;
	margin-left: 20%;
}

#post .postWrap .thumbnail {
    max-width: 500px;
    width: 80%;
    margin: auto;
}

#post .postWrap h1 {
	text-align: center;
	margin-bottom: 1em;
}
#post .postWrap figure {
	width: 500px;
	margin: auto;
}
#post .postWrap figcaption {
	font-size: var(--font-size-h3);
	text-align: center;
	padding-top: 15px;
}
#post .postWrap .content {
  width: 70%;
  margin: 50px auto 100px;
}

#post .footerLinkWrap {
  width: 80%;
  max-width: 800px;
  margin-left: 20%;
}


@media(max-width: 800px) {
	#post {
		margin-top: 100px;
		margin-bottom: 100px;
	}
	#post .postWrap {
		width: 100%;
		margin: auto;
	}
	#post .postWrap h1 {
		text-align: center;
		margin-bottom: 1em;
	}
  #post .postWrap h3 {
    width: 85%;
    margin: 0 auto 10px;
  }
	#post .postWrap figure {
		width: 500px;
		margin: auto;
	}
	#post .postWrap figcaption {
		font-size: var(--font-size-sp-h3);
		text-align: center;
		padding-top: 15px;
	}
	#post .postWrap .content {
		width: 90%;
		margin: 50px auto 70px;
	}

	#post .footerLinkWrap {
		width: 100%;
		margin-left: 0;
	}
}


@media (max-width: 599px) {
	#post {
		margin-bottom: 80px;
	}
	#post .postWrap figure {
		width: 100%;
	}
	#post .postWrap figcaption {
		width: 85%;
		margin: auto;
	}
	#post .postWrap .content {
		width: 85%;
		margin: 40px auto 50px;
	}
}

