/* 外側 */
.accordion__content--outer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.js-accordion-outer.is-open .accordion__content--outer {
  /* 必要に応じて十分大きい数値を指定 */
    max-height: 800px;
}

button{
	padding:0;
}

.accordion__content > .typesquare_option{
    margin-block-end:0!important;
}
.accordion__detail{
	padding: 1em 0;
	width:100%;
	font-family:"黎ミン M",serif;
	display: block;
	color: #292929;
	background:white;
	border:none;
}
.accordion__detail--outer{
	border-bottom: 1px solid #cccccc;
}
.accordion__content--inner {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.accordion__header {	/*タイトル*/
	width:100%;
	font-size:16px;
	font-family:"黎ミン M",serif;
	position:relative;
	display: block;
	color: #292929;
	background:white;
	border:none;
}
.accordion__header--outer {	/*タイトル*/
	border: 1px solid #cccccc;
	padding: 1em 0;
}
.accordion__header--inner{
	text-align:left;
	padding: 1em 0;
}
.accordion--inner {	/*タイトル*/
	border-bottom: 1px solid #cccccc;
}
.accordion__header--outer::before,
.accordion__header--inner::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #292929;
	border-right: 2px solid #292929;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
	transition:.3s;
}
.js-accordion-outer.is-open .accordion__header--outer::before,
.js-accordion-inner.is-open .accordion__header--inner::before{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transition:.3s;
}