@charset "utf-8";
/**/

footer {
	background: #f5f5f5;
	padding-top: 3.0em;
	}

footer > h3 {
  position: relative;
	width: 90%;
	margin: 0 auto;
  text-align: center;
	
	font-size: 1.2rem;
	margin-bottom: 2.0em;
	color: #555;
	font-weight: bold;
	
  background: #f4f4f4;
}
footer > h3:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #555;	
}
footer > h3 span {	  

  position: relative;
  padding: 0 1em;
  background: #f5f5f5;
}
footer table { 
    border: solid 1px #ccc;
    background: #fff;
	border-collapse:collapse;
}

footer table caption {
	color: #666;
	font-size:16px;
	text-align:center;
	margin-bottom:0.5em;
	padding: 0.5em 0;
	border-radius: 3px;
	font-weight: bold;
}
footer table th,
footer table td {
	padding:0.5em;
	}
	
footer table th {
	text-indent: 0.5em;

	border-bottom: solid 1px #cec7c7;

	width:25%;
    background: #cec7c7;
    color: #333;
    font-size: 14px;
	font-weight: normal
}
footer table td p {
	margin:0;
}
footer table td { 
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
    padding: 1.0em 1.5em;
    font-size:12px;
	line-height: 1.4
}


/*　フッターメニュー　*/

.footer_menu { 
	width: 90%;
	margin: 24px auto 0;
	padding-bottom: 24px;
	clear: both;
}
.footer_menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
		margin-bottom: 60px


	
}
.footer_menu ul li {
	width: 49%;
	padding: 2px;
	line-height:44px;
	list-style:none;
	box-sizing: border-box;
	border-bottom: solid 1px #333;
	}
.footer_menu ul li a {
	text-decoration: none;
	display:block;
	border-radius: 5px;
	color: #000;
	font-size: 15px;
    position: relative;
	line-height: 1.4;
	padding: 20px 0;
  }
.footer_menu ul li a::after{
  content: '';
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #666;
  border-right: solid 2px #666;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 4px;
  margin-top: -4px;
}



/*　アコーディオン全体　*/

.accordion-area{
    list-style: none;
    width: 90%;
    max-width: 90%;
    margin:0 auto !important;
	padding: 0;
	box-sizing: border-box;
}

.accordion-area section:last-child {
	border-bottom: solid 1px #000;
}

.title {
    position: relative;
    cursor: pointer;
    font-size:15px;
    font-weight: normal;
    /*padding: 8% 8% 8% 50px;*/
    transition: all .5s ease;
	line-height: 60px;
	text-indent: 34px;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 12px;
    height: 2px;
    background-color: #666;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.title.close::before{
  transform: rotate(45deg);
}

.title.close::after{
  transform: rotate(-45deg);
}

/*出現エリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
/*  margin:0 3% 3% 3%;
    padding: 3%;
*/}

small {
	text-align:center;
	font-size:12px;
	line-height: 1.6;
	padding:2.0em;
    background: #666;
    display: block;
    color: #fff !important;
		}

