/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body{ margin: 0;padding: 0;}
.lp-wrap{
width: 100%;
max-width:750px;
margin: 0 auto;
}
.lp-wrap p{
    margin: 0px;
}
.lp-wrap img{
    width: 100%;
    margin: 0px;
    padding: 0px;
    display:block; 
}
.lp-wrap video{
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    vertical-align: top;
}
.posioton-relative{
    position: relative;
}
.absolute{
    position: absolute;
    width: 100%;
    height: auto;
}
.abosolute-1{
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: -1;
}
.abosolute-2{
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: -1;
}
.abosolute-3{
    top: 66.9%;

    left: 49%;
    transform: translateX(-50%);
    width: 64%;
    z-index: 1;
}
.absolute-footer img{
    width: 100%;
}
.abosolute-4{
    top: 57.9%;
    left: 49%;
    width: 33%;
    z-index: 1;
}
.absolute-footer{
    position: absolute;
    top: 18%;
    left: 10%;
}
@media (max-width: 768px) {
    .absolute-footer img{
        width: 49%;
    }

}
.offer-back{
    position: relative;
    }
    
.offer-btn-1{
    position: absolute;
    top: 88%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 88%;
    margin-top: 30px;}
.offer-btn-1:hover{
    opacity: 0.5;
}

/* FAQ アコーディオン */
.faq-item {
    border-bottom: 1px solid #eee;
}
.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    position: relative;
    padding-right: 50px;
    box-sizing: border-box;
}
.faq-question-img {
    flex: 1;
    margin: 0;
    min-width: 0;
}
.faq-question-img img {
    width: 100%;
}
.faq-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
}
.faq-answer {
    overflow: hidden;
    transition: opacity 0.2s ease;
}
.faq-answer[hidden] {
    display: none !important;
}
