.question--heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px 0 80px;
}
.question--heading h1 {
    font-family: var(--font-maru);
    font-weight: var(--font-weight-b);
    font-size: .42rem;
    color: #003399;
    margin: 0 10px;
}

.question--heading img {
    width: 121px;
    max-width: 100%;
}

.question--container {
    background-image: url(../../images/eceq/eceq-back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    padding: 80px 30px;
    margin-bottom: 0px;
}

.question--item {
    width: 930px;
    max-width: 100%;
    margin: 0 auto 60px;
    background-color: #fff;
    border-radius: 25px;
}
.question--item:last-child{
    margin-bottom:0;
}
.question--item img {
    width: 120px;
    max-width: 100%;
    margin-right: 20px;
}

.question-question,
.question-answer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 30px 0;
    justify-content: center;
    font-family: var(--font-maru);
    font-weight: var(--font-weight-m);
    font-size: .22rem;
}

.question-question {
    border-bottom: 1px dashed #000;
    font-size: .22rem;
}

.question-answer {
    font-size: .17rem;
    padding: 11px 0 24px;
}
.question-answer a {
    color: #33CCFF;
}

.question-question span,
.question-answer span {
    font-size: .32rem;
    font-family: var(--font-maru);
    font-weight: var(--font-weight-m);
    margin-right: 15px;
    line-height: 1;
}

.question-question span {
    color: #005BA0;
}


.question-answer span {
    color: #D61232;
}

.question-answer--text,
.question-question--text {
    width: 73%;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.question-answer--text {
    width: 72%;
}

/* .question-question--img{
    width: 16%;
} */


.question-answer p,
.question-question p {
    line-height: 1.5;
    width: 90%;
}

@media screen and (min-width:768px) and (max-width:960px) {
    .question--container {
        height: auto;
        padding: 20px 40px;
    }
}


@media screen and (max-width: 767px) {

    .question--heading {
    	padding: 0 0 30px;
        align-items: center;
    }

	.question--heading h1 {
		font-size: .24rem;
		font-size: .32rem;
	}
	.question--container {
    	height: auto;
    	padding: 30px 20px;
	}

	.question--heading img {
		width: 70px;
	}

    .question-question span,
    .question-answer span {
        font-size: .28rem;
    }

    .question-answer,
    .question-question {
        display: flex;
        flex-direction: column;
    }

    .question-answer--text,
    .question-question--text {
        order: 1;
        width: 90%;
    }

    .question-question--img,
    .question-answer--img {
        order: 2;
        width: 90%;
    }

	.question-question {
		font-size: .20rem;
		text-align: right;
		padding: 14px 0 12px;
	}

	.question--item {
		border-radius: 25px;
	    margin: 0 auto 30px;
	}

	.question--item img {
    	margin-right: 0;
	}

    .question-answer {
        font-size: .15rem;
    }

	.question-answer p, 
	.question-question p {
		width: 86%;
	}
	.question-answer p{
        font-size: .17rem;
	}

}