@charset "utf-8";
/* CSS Document */


/* ---------------------------------------------------------------------------------------------

   FAQ（よくあるご質問）

--------------------------------------------------------------------------------------------- */
#faq h1{
    color: #e9e4d4;
    text-align: center;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 25px;
}
#faq h1 span{
    color: #fff;
    border-top: 0.5px solid #ccc;
    border-bottom: 0.5px solid #ccc;
    padding: 10px 0;
}

.faq-list-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.faq-list-wrap dl {
    position: relative;
    margin: 0;
    padding: 30px 3% 30px 3%;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 10px;
    background: url("../images/gray-lezac-bg.png") repeat 0 0;
    box-shadow: 0 0 5px #111;
}

.faq-list-wrap dl::before {/*▼*/
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}

.faq-list-wrap .open::before {/*▲*/
    transform: rotate(-45deg);
}

.faq-list-wrap dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 40px;
	font-size: clamp(14px, 3vw, 16px);
    color: #fff;
}

.faq-list-wrap dl dt::before {/*Q*/
	font-size: clamp(16px, 3vw, 22px);
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 0;
    display: block;
    content: 'Q';
    color: #e9e4d4;
    font-family: 'Sorts Mill Goudy', serif;
}

.faq-list-wrap dl dd::before {/*A*/
	font-size: clamp(16px, 3vw, 22px);
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A';
    color: #fff;
    font-family: 'Sorts Mill Goudy', serif;
}

.faq-list-wrap dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 50px 0 0;
    padding: 0 0 0 40px;
    color: #e9e4d4;
	font-size: clamp(14px, 3vw, 16px);
}

.faq-list-wrap dl dd:first-child{
    margin-top: 0;
}

@media screen and (max-width: 700px) {
    
.faq-list-wrap dl {
    position: relative;
    padding: 20px 3% 20px 3%;
}
    
.faq-list-wrap dl::before {
    top: 27.5px;
    right: 20px;
    width: 7px;
    height: 7px;
}
    
.faq-list-wrap dl dt {
    padding: 0 0 0 30px;
}
    
.faq-list-wrap dl dt::before {
    top: 6.5px;
    left: 5px;
    content: 'Q';
}
    
.faq-list-wrap dl dd::before {
    top: 5px;
    left: 5px;
    content: 'A.';
}
    
.faq-list-wrap dl dd {
    margin: 40px 0 0;
    padding: 0 0 0 30px;
}
    
.faq-list-wrap dl dd p:first-child{
    margin-top: 0;
}
}

/*ガタツキ防止
-----------------------------------------------------------*/
.faq-list-wrap dl dd {
  opacity: 1;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.faq-list-wrap.is-open .faq-list-wrap dl dd {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}















    
    







