@charset "utf-8";

/* overwrite */

main {
 padding: 0;
}

main img {
	width: 100%;
}


/*==============================
   アコーディオン
==============================*/
.accordion-container {
	position: relative;
	border-top: none;
	outline: 0;
	cursor: pointer;
	padding: 10px 0;
}

.accordion-content {
	display: none;
	padding: 0 10px 10px;
}
.accordion-container .article-title {
	display: block;
	position: relative;
	margin: 0;
	padding: 10px 45px 10px 10px;
	font-size: 1.6rem;
	font-weight: normal;
	cursor: pointer;
	color: #463d2e;
	font-weight: bold;
	border-top: 1px dashed #dfcdb6;
	border-bottom: 1px solid #dfcdb6;
}
.accordion-container p {
	font-size: 1.3rem;
}
.accordion-container .article-title +p {
	padding: 10px 10px 0;
}
.article-title::after {
	content: "";
	position: absolute;
	right: 5px;
	top: 38%;
	transition: all 0.2s ease-in-out;
	display: block;
	width: 8px;
	height: 8px;
	border-top: solid 2px #000;
	border-right: solid 2px #000;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.article-title.open::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 45%;
}