
@charset "utf-8";

/* 20200409 add-astyle */

#important-notice {
	width: 90%;
	margin: 0 auto 40px;
	padding: 10px;
	border: double 3px orangered;
	box-sizing: border-box;
	transition: .3s;
}

#important-notice h2 {
	height: auto;
	min-height: inherit;
    padding: 0;
    background: none;
	cursor: pointer;
}
#important-notice h2::after {
	content:"";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-left: 10px;
	border-right: solid 1px rgb(32, 32, 32);
	border-bottom: solid 1px rgb(32, 32, 32);
	transform: translate(0,-3px) rotate(45deg);
	transition: .3s;
}
#important-notice.showHide h2::after {
	transform: translate(0) rotate(-135deg);
}

#important-notice p {
	margin-bottom: 10px;
}
#important-notice p:nth-last-of-type(1) {
	margin-bottom: 0;
}

#important-notice p.indent-p {
    margin-bottom: 10px;
    padding-left: 1em;
    text-indent: -1em;
}
#accordion-panel {
	height: 0;
	overflow: hidden;
	transition: .3s;
	box-sizing: border-box;
}

#important-notice.showHide #accordion-panel {
	height: auto;
	padding: 20px 0 0;
}