@charset "utf-8";
/* CSS Document */

/*記事一覧*/
/*.section#section3 {
	padding-bottom: 80px;
}*/
.section#section3 li a {
	display: block;
	background-color: #e5e5e5;
	color: #333;
	text-align: left;
	text-decoration: none;
	position: relative;
	
	padding: 1em 2em;
	font-size: 70%;
}
.section#section3 li a span {
	display: block;
}
.section#section3 li a span.date {
	display: block;
	padding-bottom: 0.2em;
}
.section#section3 li a span.txt {
	margin-right: 1em;
}
.section#section3 li a::after {
	content: "＞";
	font-size: 14px;
	line-height: 1;
	position: absolute;
	display: flex;
	align-items:  center;
	height: 100%;
	right: 0.5em;
	top: 0;
}

@media only screen and (min-width: 768px) {
	/*.section#section3 li {
		margin-top: 21px;
	}*/
	.section#section3 li a {
		padding: 0 7em 0 3em;
		font-size: 14px;
		line-height: 2;
	}
	.section#section3 li a:hover {
		background-color: #eee;
	}
	.section#section3 li a span.date {
		padding-top: 1.5em;
	}
	.section#section3 li a span.txt {
		margin-top: -2em;
		margin-left: 7em;
		padding-bottom: 1.5em;
	}
	.section#section3 li a::after {	font-size: 18px;right: 1.5em;}
}


/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    /*width: 96%;*/
    /*max-width: 900px;*/
    margin:0 auto;
	text-align:center;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:120%;
    font-weight: normal;
    padding: 3% 50px 3%;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
	right: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.boxx {
    display: none;/*はじめは非表示*/
    /*background: #f3f3f3;
	margin:0 3% 3% 3%;*/
    padding: 0 3% 3% 3%;
}