.toggle_contents {
    /* margin: 1rem 2rem 0; */
    /* border-bottom: 1px solid #545454; */
    width: 90%;
    max-width: 750px;
    margin: 0 auto 3%;
    text-align: start;
    /* background-color: #ffffff; */
    color: #9c7f47;
    padding: 0 1% 0 1%;
    display: grid;
    grid-template-columns: 10% 90%;
    border: 1px solid #9d917d;
    border-radius: 25px;
}

.span{
    grid-row: 2 / 2;                                   
    grid-column: 1 / 3;
}

.toggle_qes{
    width:80%; 
    max-width: fit-content;
    margin: auto;
}

.toggle_ans{
    width:80%; 
    max-width: fit-content;
    margin: 10% auto;
}

.toggle_title {
	font-weight: bold;
	line-height: 42px;
	margin: 0;
	padding: 3% 0 3% 10px;
	position: relative;
	cursor: pointer;
	transition: 0.3s;
    font-family:Open Sans,\30d2\30e9\30ae\30ce\89d2\30b4  Pro,Hiragino Kaku Gothic Pro!important;
    font-weight: 400;
    font-size: 22px;
    /* line-break: anywhere; */
}

.toggle_title::before {
	content: "";
	display: inline-block;
	position:absolute;
	top: 50%;
	right: 7px;
	transform: translateY(-50%) rotate(180deg);
	transition: 0.2s;
    width: 3%;
    height: 0%;
    /* border-left: 8px solid transparent; */
    /* border-right: 8px solid transparent; */
    border-bottom: 2px solid #9d917d;
}
.toggle_title:after {
	content: "";
	display: inline-block;
	position:absolute;
	top: 50%;
	right: 7px;
	transform: translateY(-50%) rotate(90deg);
	transition: 0.2s;
    width: 3%;
    height: 0%;
    /* border-left: 8px solid transparent; */
    /* border-right: 8px solid transparent; */
    border-bottom: 2px solid #9d917d;
}
.toggle_title.selected:after {
	transform: translateY(-50%) rotate(180deg);
	transition: 0.2s;
}
.toggle_txt{
	display: none;
    text-align: left;
    font-size: 17px;
    line-height: 1.85;
    margin-top: 0%;
    margin-bottom: 0%;
    padding: 3% auto;
    border-top: 1px solid #9d917d;
    border-top-style: dashed;
    font-family:Open Sans,\30d2\30e9\30ae\30ce\89d2\30b4  Pro,Hiragino Kaku Gothic Pro!important;
}

.content{
    display: grid;
    grid-template-columns: 10% 90%;
    padding: 3% 0 3% 0;
}

.content_txt{
    margin: 0 0 0 10px;
}

@media screen and (max-width: 750px) {
    .toggle_title {font-size: 3.1vw;}
    .toggle_txt {font-size: 2.6vw;}
}

.toggle_txt ul {
    padding-left: 0;
    list-style-type: none;
}

ul.qa {
    position: relative;
    list-style: none;
    margin-left: 0;
    padding-left: 1.2em;
    margin-bottom: 16px;
}
ul.qa li {
    text-align: left;
}

ul.qa li.q {
    text-align: left;
    color: #d57974;
}

ul.qa li.q:before {
    content: "Q.";
    position: absolute;
    left: 0;
    color: var(--prd-color)
}

ul.qa li.a:before {
    content: "A.";
    position: absolute;
    left: 0;
    color: #545454
}

.circle::before {
    content: "・";
}

/* //.accordion 2 */
.accordion{
    margin:0 auto; 
    margin-bottom: 0%; 
    max-width:100%;
    padding: 0 !important;
}
.toggle{
    display:none
}
.option{
    position:relative;
    margin-bottom:0
}
.content_item,.content_check{
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
    transform:translateZ(0);
    transition:all .7s
}
.content_check{
    padding:0em;
    text-align:left;
    font-size:20px;display:block;
    color:#fff; 
    cursor: pointer;
}
.content_check::after{
    content:"";
    position:absolute;
    left:43%;
    bottom:30%;
    transition:all .3s; 
    /* background: url(../assets/images/ind1.png) no-repeat;  */
    background-size: 100% 100%; 
    display: inline-block;
}
.content_check::after{
    transform:rotate(-90deg); 
    width: 4%; 
    height: 40%; 
    max-width: 29px; 
    max-height: 138px;
}
.content_item{
    overflow:hidden; 
    max-height: 0px;
}

.content_item ul{
    padding-left: 0;
    list-style-type: none;
    padding: 8% 0%;
    margin: 0% auto;
    width: 68%;
    /* background-color: #a27884; */
}
.content_item ul > li{
    position: relative;
    list-style: none;
    margin-left: 0;
    padding-left: 1.2em;
    margin-bottom: 5%;
    font-size: 22px;
    color: #ffffff;
}
.toggle:checked+.content_check+.content_item{
    display: block; 
    max-height: 2630px;
    transition:all 1.0s;
   
}
.toggle:checked+.content_check::after{
    transform:rotate(0deg)!important;
}

@media screen and (max-width: 750px) {
    .content_item ul > li {font-size: 2.3vw;}
}