
header{
	width: 100%;
	height: 88px;
	border-top: 3px solid #a6937c;
	background: #f5f2e9;
}



h1.sub_logo{
	width: 134px;
	height: 70px;
	position: absolute;
	top: 10px;
	left: 1%;
}

ul.main_nav {
	display: flex;
	flex-flow: row;
	justify-content: flex-end;
	padding-top: 27px;
}
ul.main_nav li a{
	letter-spacing: 2px;
	font-size: 85%;
	color: #444;
	margin: 0 40px 0 0;
	}
ul.main_nav li a {
  position: relative;
  display: inline-block;
  transition: .3s;
}
ul.main_nav li a:hover {
	color: #a6937c;
}
ul.main_nav li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 2px;
  background-color: #a6937c;
  transition: .3s;
}
ul.main_nav li a:hover::after {
  width: 100%;
}



section.mainvisual{
	max-width: 100%;
	height: 450px;
	position:relative;
	background:url(../img/faq/01.jpg) center top no-repeat;
}


h2.main_title{
	z-index: 100;
	text-align: center;
	line-height: 455px;
	color: #FFF;
	font-size: 220%;
	letter-spacing: 3px;
	font-weight: normal;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	text-align: center;
}
span.ss_title{
	font-size:77%;
}


/*--====== パンくずリスト ======--*/
#pan_box {
	width: 100%;
	height: 35px;
	margin: 0 auto;
	background: #f5f2e9;
	color: #444;
}
#pan_list {
	width: 1100px;
	height:35px;
	color: #444;
	margin:0 auto;
}
/* リスト */
ol.topic-path {
list-style-type: none; /* リストマーク非表示 */
line-height:35px;
font-size:77%; /* 文字サイズ */
letter-spacing:2px;
}
/* リスト項目 */
ol.topic-path li {
display: inline; /* 項目を横並び */
}

ol.topic-path li.first{
	padding-left:40px;
}


ol.topic-path li.second{
	padding-left:5px;
}


ol.topic-path li.first {
	background-image:url(../img/top_pan.png) ;
	background-position:5% 0%; /*リストマーク左5％　上から５０％*/
	background-repeat:no-repeat;
}

/* リンクエリア */
ol.topic-path li a {
padding-right: 20px; /* 右パディング */
background: url(../img/navi-marker.gif) no-repeat right ; /* 矢印記号（※） */
}
/* リンク色 */
ol.topic-path li a {
color: #333;
text-decoration:underline;
transition: 2s;
}
/* リンク色（マウスオーバー） */
ol.topic-path li a:hover{
	color: #a6937c;
}
/*--====== ここまでパンくずリスト ======--*/




.content {
	width: 1100px;
	height: auto;
	margin:0 auto;
	padding-bottom: 250px;
}

/*--=====アコーディオン=====--*/
dl.accordion {
	 width: 1100px;
	 height: auto;
	 background: #FFF;
	 font-size: 116%;
	 margin-top: 100px;
}
	 
dl.accordion dt {
	border-left: 2px solid #CCC;
	border-right: 2px solid #CCC;
	border-bottom: 2px solid #CCC;
	height: 70px; 
	text-indent: 1.5em; 
	line-height: 71px;
	color: #494949; 
	font-weight: bold; 
	cursor: pointer;
}
dl.accordion dt:first-child{
	border-top: 2px solid #CCC;
}
dl.accordion dt:hover{
	color: #a6937c;
	background: #f5f2e9;
	text-decoration: underline;
}
	
dl.accordion dt.open {
	color: #a6937c;
}


dl.accordion dd {
	background: #a6937c;
	color: #FFF;
	padding: 15px; 
	display: none;
	text-align: justify;
}

dl.accordion dd a{
	color: #F00;
}