@charset "UTF-8";
/* CSS Document */
:root{
	--qa-main-color: #86765D;
	--qa-back-color: #F5F0E7;
	--qa-answer-gb: #FFF0F0;
}

@media screen and (max-width: 768px) {
    html {
        overflow-y: scroll;
        font-size: 10px;
    }
}

summary::-webkit-details-marker {
  display: none;   /* Chrome / Safari */
}

summary::marker {
  content: "";     /* Firefox?? */
}


.ly_container.ly_container_qa{
    width:100% !important;
}

.bl_qa{
    width:1000px;
    margin-top:2rem;
}

.bl_qa_pageTitle{
    font-size:1.9rem;
    margin-bottom:2rem;
}

@media screen and (max-width: 768px) {
   .bl_qa{
        width:100%;
    } 
}

.bl_qa_button_area{
	margin-bottom: 3rem;
}
.bl_qa_button_flexbox{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.bl_qa_button{
	border: 0.5px solid var(--qa-main-color);
	border-radius: 5px;
	padding: 1rem;
	margin-bottom: 0.7rem;
	width: 48%;
	text-decoration: none !important;
}
.bl_qa_button:hover{
	background-color: var(--qa-main-color);
}
.el_qa_button{
	font-weight: bold;
	color: var(--qa-main-color)!important;
	text-align: center;
}
.bl_qa_button:hover .el_qa_button{
	color: #fff !important;	
}

@media screen and (min-width:768px) {
	.bl_qa_button_flexbox{
		justify-content: flex-start;
	}
	.bl_qa_button{
		width: 18%;
		margin-right:1rem;
	}
}

.bl_qa_title{
    margin-bottom:1rem;
}

.el_qa_title{
    font-size: 2rem;
    line-height: 2rem;
    padding-bottom:1rem;
    border-bottom:1px solid #555555;
    margin-bottom:2rem;
}

@media screen and (min-width: 768px) {
    .el_qa_title{
        font-size:1.6rem;
    }
}

.bl_qa_body{
    display:block;
    margin:0 auto;
    margin-bottom:3rem;
}

.el_qa_icon{
	width: 35px;
	margin-right:1rem;
}


.bl_qa_content{
    margin-bottom:1rem;
}

/* Q????*/
.el_qa_question{
    color:var(--qa-main-color);
    font-size:1.5rem;
    margin-bottom:1rem;
    padding: 0.5rem 2.5rem 0.5rem 0;
    position:relative;
    cursor:pointer;
    display:flex;
    align-items: center;
}

.el_qa_question::after{
    content: "";
    position: absolute;
    right: 0;
    width: 15px;
    height: 15px;
}

.el_qa_question::before,
.el_qa_question::after{
    content: "";
    position: absolute;
    right: 5px;
    width: 15px;
    height: 2px;
    background: var(--qa-main-color);
    top: 50%;
    transition: transform 0.3s ease;
}

.el_qa_question::before {
  transform: translateY(-50%) rotate(90deg);
}

.el_qa_question::after {
  transform: translateY(-50%);
}

.bl_qa_content[open] .el_qa_question::before {
  transform: translateY(-50%) rotate(0deg);
}

/* A????*/
.bl_qa_answer{
    margin-bottom:2rem;
    background-color: var(--qa-answer-gb);
    padding: 0.5rem;
    display:flex;
    align-items: flex-start;
}
.el_qa_answer{
    font-size:1.5rem;
}

@media screen and (min-width: 768px) {
    .el_qa_question,.el_qa_answer{
        font-size:1.0rem;
    }
}

.el_qa_blockTtile{
    background-color: var(--qa-main-color);
    color: #fff;
    display: inline-block;
    padding: 0 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    margin:1rem 0 0.7rem;
}

@media screen and (min-width: 768px) {
    .el_qa_blockTtile{
        font-size: 1.0rem;
    }
}



/* ???_????? */
.el_qa_answer_txt{
    font-size:1.4rem;
}
.el_qa_answer_img{
    width: 95%;
}
@media screen and (min-width: 768px) {
    .bl_qa_answer_detail{
        display:flex;
        justify-content: space-between;
    }
    .bl_qa_answer_detailBox{
        width:30%;
    }
    .el_qa_answer_txt{
        font-size:1.0rem;
    }
    .el_qa_answer_img{
        width: 100%;
    }
}

.bl_qa_answer_detailBox{
    margin-bottom:1.5rem;
}



.el_qa_block_list{
    list-style: none; 
    position: relative;
    padding-left: 10px;
}

.el_qa_block_list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background-color: #86765D;
    border-radius: 50%;
}

.bl_qa_block_list_nest{
    padding-left:1rem;
}

.hp_attention{
    color:var(--main-color);
    font-weight:bold;
}

.hp_qa_anchor{
    color:var(--main-color);
    text-decoration:underline;
}