/*アバウトトップ画像*/
#about .mainvisual {
	background-image: url(../images/about_ttl.jpg);
	height: 400px;/*	position: relative;スクロール用*/
}
#about .mainvisual_cover {
	background-color: rgba(255,255,255,0.25);
	height: 400px;
}
.mainvisual h1.ttl {
	margin: auto;
	padding-top: calc(400px / 2 - 25px);
}
.mainvisual h1.ttl span {
	color: #000;
	border-color: #000;
}
#about section {
	padding-top: 40px;
	padding-bottom: 60px;
	color: #FFF;
}
#about section#idx_info {
	padding-top: 150px;
	padding-bottom: 90px;
}
#about #about_intro {
	border-bottom: 1px #333 dotted;
}
/*アバウトh2*/
#about .about_ttl {
	font-size: 2.4rem;
	padding-bottom: 30px;
	position: relative;
}
#about .about_ttl:after {
	content: "";
	display: inline-block;
	position: absolute;
	width: 300px;
	height: 20px;
	background: url(../images/bg_stripe.png) 0 10px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
#about .br_sp {
	display: none;
}
#about p.about_lead {
	padding-top: 30px;
	width: 500px;
	margin: 0 auto;
}
#about h3 {
	text-align: center;
	font-size: 3rem;
	color: #C4A65C;
	padding-top: 30px;
	padding-bottom: 16px;
}
#about h4 {
	text-align: center;
	font-size: 2.4rem;
	line-height: 3rem;
	padding-bottom: 60px;
	position: relative;
}
#about h4:after {
	content: "";
	display: inline-block;
	position: absolute;
	width: 400px;
	height: 20px;
	background-image: url(../images/bg_stripe.png);
	/*	background-position: 0 10px;*/
	top: -40px;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
#about p.image, #about section ul {
	float: left;
}
#about section li {
	width: 400px;
	margin-left: 40px;
	padding-bottom: 20px;
	font-size: 1.4rem;
	list-style: disc;
	line-height: 3rem;
	padding-left: 1em;
	text-indent: -1em;
	list-style-position: inside;
	text-align: justify; /* 両端揃え */
	text-justify: inter-ideograph; /* 両端揃えの種類 */
}
.bg_gold {
	/*	background-color:rgba(218,185,103,0.3);*/
/*	padding-top: 0.5rem;*/
	padding-bottom: 0.5rem;
	font-weight: bolder;
	border-bottom: #C4A65C 1px dashed;
}
/*スクロールアニメ*/
a.scroll {
	position: relative;
	left: 50%;
	margin-left: -24px;
	margin-top: 60px;
	padding-top: 70px;
	display: inline-block;
	font-size: 1.6rem;
	letter-spacing: 0.2em;
	color: #000;
	text-shadow: 0 0 1px #fff;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
a.scroll span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 24px;
	height: 24px;
	margin-left: -12px;
	border-left: 2px solid #000;
	border-bottom: 2px solid #000;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: sdb 1.5s infinite;
	animation: sdb 1.5s infinite;
}

@-webkit-keyframes sdb {
 0% {
 -webkit-transform: rotate(-45deg) translate(0, 0);
 opacity: 0;
}
 50% {
 opacity: 1;
}
 100% {
 -webkit-transform: rotate(-45deg) translate(-20px, 20px);
 opacity: 0;
}
}
@keyframes sdb {
 0% {
 transform: rotate(-45deg) translate(0, 0);
 opacity: 0;
}
 50% {
 opacity: 1;
}
 100% {
 transform: rotate(-45deg) translate(-20px, 20px);
 opacity: 0;
}
}