	.support_banner{
		background:url(http://www.alldocube.com/jp/wp-content/uploads/2019/03/support-flatlay.jpg);
		background-size: 2560px 500px;
		height: 500px;
		background-position: center;
		background-repeat:no-repeat;
                margin-bottom:15px;
		position: relative;
	}
	.sp_title{
		text-align: center;
		position:absolute;
		top: 50%;
		left: 50%;
		transform:translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		-moz-transform: translate(-50%,-50%);
		font-size: 36px;
		font-weight: 700;
		color: #fff;
	}

.support_faqs{
    background: #fff;
    padding: 20px 40px;
    margin-bottom: 15px;
}
.support_box .item-box{
    background:#fff;
}

.support_box .item-box {
    width: 24.375%;
    margin-right: .8333333%;
}
.support_box .item-box {
    margin-bottom: 10px;
    float: left;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: -o-transform .3s;
    -moz-transition: transform .3s,-moz-transform .3s;
    transition: transform .3s;
    transition: transform .3s,-webkit-transform .3s,-moz-transform .3s,-o-transform .3s;
}
.support_box .item-box .item {
    width: 100%;
    height: 168px;
    background: #fff;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.support_box .item-box .item-img {
    height: 100%;
}
.support_box .item-box .item-img>img {
    height: 100%;
    width: auto;
}
.support_box .item-box p {
    text-align: center;
    font-size: 18px;
    color: #333;
    position: absolute;
    line-height: 20px;
    width: 100%;
    left: 0;
    top: 115px;
}
.support_box .item-box:nth-child(4) {
    margin-right: 0;
}
.support_box .item-box:hover {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 10px 40px 1px rgba(0,0,0,.1);
    -moz-box-shadow: 0 10px 40px 1px rgba(0,0,0,.1);
    box-shadow: 0 10px 40px 1px rgba(0,0,0,.1);
}
	@media(max-width: 767px){
        .support_box .item-box{
            width: 49%;
            margin-right: 2%;
            margin-bottom: 2vw;
        }
        .support_box .item-box:nth-child(2),
        .support_box .item-box:nth-child(4){
            margin-right:0;
        }
        .support_box .item-box .item {
            width: 100%;
            height: 25vw;
        }
        .support_box .item-box p{
            top: 17.5vw;
            font-size: 3vw;
            margin-bottom: 0;
            line-height: 1;
        }
		.support_banner{
			background-size:1280px 250px;
			height: 250px;
		}
		.sp_title{
			font-size: 4vw;
		}
	}
	@media(max-width: 480px){
		.support_banner{
			background-size:922px 180px;
			height: 180px;
			margin-bottom:10px;
		}
		.sp_title{
			font-size: 5vw;
		}
	}
.faqs-container{
    background: #fff;
    padding: 20px 40px 55px;
    margin-bottom: 15px;
}
.faqs-wrapper-title{
    text-align: center;
    font-size: 34px;
    color: #1d1d1d;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.5;
    font-weight: 300;
    position: relative;
}
.faq-box{
    border-bottom: 1px solid #ebebeb;
}
.faq-box .faq-title{
    font-size: 20px;
    line-height: 24px;
    padding: 23px 50px 23px 0;
    cursor: pointer;
    position: relative;
    font-weight: 300;
    display: block;
    margin: 0;
}
.toggle-icon{
    width: 14px;
    height: 14px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
    right: 0;
}
.toggle-icon::before, .toggle-icon::after {
    content: '';
    display: block;
    right: 0;
    position: absolute;
    top: 50%;
    transition: transform .3s ease,-webkit-transform .3s ease;
    width: 14px;
    height: 2px;
    background: #666;
}
.toggle-icon::before {
    -webkit-transform: rotate(0deg) scale(1);
    -moz-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    -o-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
}
.faq-content{
    padding-bottom: 20px;
}
.toggle-icon::after {
    -webkit-transform: rotate(90deg) scale(1);
    -moz-transform: rotate(90deg) scale(1);
    -ms-transform: rotate(90deg) scale(1);
    -o-transform: rotate(90deg) scale(1);
    transform: rotate(90deg) scale(1);
}
.toggle-icon.opened::before{
    -webkit-transform: rotate(45deg) scale(1.1);
    -moz-transform: rotate(45deg) scale(1.1);
    -ms-transform: rotate(45deg) scale(1.1);
    -o-transform: rotate(45deg) scale(1.1);
    transform: rotate(45deg) scale(1.1);
}
.toggle-icon.opened::after{
    -webkit-transform: rotate(135deg) scale(1.1);
    -moz-transform: rotate(135deg) scale(1.1);
    -ms-transform: rotate(135deg) scale(1.1);
    -o-transform: rotate(135deg) scale(1.1);
    transform: rotate(135deg) scale(1.1);
}
@media(max-width: 767px){
    .faqs-wrapper-title{
        font-size: 5vw;
    }
    .faqs-container{
        padding: 3vw 6vw 5vw;
    }
    .faq-box .faq-title{
        line-height: 6vw;
        padding: 3vw 0;
        padding-right: 30px;
        font-size: 3.5vw;
    }
    .toggle-icon{
        width: 2vw;
        height: 2vw;
    }
    .toggle-icon::before, .toggle-icon::after{
        width: 2vw;
        height: 1px;
    }
}