@charset "utf-8";


.catch.center {
	text-align: center;
}


/* -------------------------------------------------------------
    メッセージ
-------------------------------------------------------------- */
.top-message-area {
	text-align: center;
	margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
	.top-message-area {
		margin-bottom: 40px;
	}
	
	.top-message-area .catch.blue {
		font-size: 2.3rem;
	}
	
	.top-message-area .txt {
		text-align: left;
	}
}


/* -------------------------------------------------------------
    トラブル解決事例
-------------------------------------------------------------- */
.trouble-area {
	background: url("../img/blue_bg01.png") no-repeat center / cover;
	padding: 80px 0;
	border-radius: 100px;
	margin-bottom: 80px;
}

.trouble-area .trouble-list {
	display: flex;
	gap: 30px;
	margin-top: 40px;
}

.trouble-area .trouble-list li {
	width: 385px;
}

.trouble-area .trouble-list .trouble {
	background-color: #fff;
	border-radius: 20px;
	padding: 25px;
	position: relative;
	margin-bottom: 50px;
}

.trouble-area .trouble-list .trouble::before{
    content: "";
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border: 16px solid transparent;
    border-top: 17px solid #00AEEF;
}

.trouble-area .trouble-list .trouble .img-txt-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.trouble-area .trouble-list .trouble .img-txt-wrap .txt {
	font-size: 2rem;
	font-weight: 700;
}


/*解決*/
.trouble-area .trouble-list .solution {
	background-color: #fff;
	border-radius: 20px;
	padding: 25px;
	min-height: 365px;
}

.trouble-area .trouble-list .solution .catch {
	font-size: 2.5rem;
}
.trouble-area .trouble-list .solution .catch span {
	background: linear-gradient(transparent 60%, #ffa 60%);
	margin-bottom: 20px;
}

.trouble-area a p {
	text-align: right;
	position: relative;
}
.trouble-area a p::after {
	position: relative;
    content: "\f105";
    color: #0F75BC;
    font: 900 1.5rem / 1 'Font Awesome 5 Free';
    text-align: center;
    transition: all .4s;
    margin-left: 10px;
}


@media screen and (max-width: 768px) {
	.trouble-area {
		background: url("../img/blue_bg01.png") no-repeat center / cover;
		padding: 40px 0 20px;
		border-radius: 50px;
		margin-bottom: 40px;
	}
	
	.sp-scroll {
		margin-left: 5%;
		padding-right: 20px;
	}
	.sp-scroll::-webkit-scrollbar {
		width: 8px;
	}
	.sp-scroll::-webkit-scrollbar-track {
		background: #fff;
		border-radius: 20px;
	}
	.sp-scroll::-webkit-scrollbar-thumb {
		background-color: #888;
		border-radius: 20px;
		border: 2px solid #fff;
	}
	

	.trouble-area .trouble-list {
		display: flex;
		gap: 10px;
		margin-top: 10px;
		width: 1000px;
	}
	
	.trouble-area .trouble-list li {
		width: 370px;
	}

	.trouble-area .trouble-list .trouble {
		margin-bottom: 30px;
	}

	.trouble-area .trouble-list .trouble::before{
		content: "";
		position: absolute;
		bottom: -33px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		border: 12px solid transparent;
		border-top: 12px solid #00AEEF;
	}

	.trouble-area .trouble-list .trouble .img-txt-wrap {
		display: flex;
		align-items: center;
		gap: 15px;
	}
	
	.trouble-area .trouble-list .trouble .img-txt-wrap img {
		width: auto;
		height: 55px;
		margin: 0;
	}

	.trouble-area .trouble-list .trouble .img-txt-wrap .txt {
		font-size: 1.8rem;
	}


	/*解決*/
	.trouble-area .trouble-list .solution {
		padding: 20px;
		min-height: 320px;
	}
	
	.trouble-area .trouble-list .solution .catch {
		font-size: 2rem;
	}
	
	.trouble-area .trouble-list .solution .catch span {
		background: linear-gradient(transparent 60%, #ffa 60%);
		margin-bottom: 20px;
	}

	.trouble-area a p {
		text-align: right;
		position: relative;
	}
	.trouble-area a p::after {
		position: relative;
		content: "\f105";
		color: #0F75BC;
		font: 900 1.5rem / 1 'Font Awesome 5 Free';
		text-align: center;
		transition: all .4s;
		margin-left: 10px;
	}
	}




/* -------------------------------------------------------------
    サービス内容
-------------------------------------------------------------- */
.service-area {
	margin-bottom: 80px;
}

.service-area .service-list {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.service-area .service-list li {
	display: flex;
	gap: 40px;
	background-color: #EFF4FA;
	border-radius: 30px;
	padding: 30px;
	align-items: center;
}

.service-area .service-list li .img-wrap {
	width: 560px;
	border-radius: 20px;
	overflow: hidden;
	flex-shrink: 0;
}

.service-area .service-list li .txt-wrap .en {
	font-size: 1.8rem;
	color: #0F75BC;
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}
.service-area .service-list li .txt-wrap .en::before {
	content: "";
	width: 25px;
	height: 1px;
	background-color: #0F75BC;
}

.service-area .service-list li .txt-wrap .ttl {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
	.service-area {
		margin-bottom: 40px;
	}

	.service-area .service-list {
		margin-top: 20px;
		display: flex;
		flex-direction: column;
		gap: 15px;
	}

	.service-area .service-list li {
		gap: 20px;
		border-radius: 30px;
		padding: 20px;
		flex-direction: column;
		align-items: center;
	}

	.service-area .service-list li .img-wrap {
		width: 100%;
		height: 200px;
	}

	.service-area .service-list li .txt-wrap .en {
		font-size: 1.2rem;
	}
	.service-area .service-list li .txt-wrap .en::before {
		width: 10px;
	}

	.service-area .service-list li .txt-wrap .ttl {
		font-size: 2.5rem;
		margin-bottom: 10px;
	}
	}




/* -------------------------------------------------------------
    REASON
-------------------------------------------------------------- */
.reason-area {
	display: flex;
	align-items: center;
	flex-direction:row-reverse;
	gap: 60px;	
	margin-bottom: 80px;
}

.reason-area .img-wrap {
	border-radius: 30px;
	overflow: hidden;
	max-width: 600px;
}

.reason-area .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reason-area .txt-area {
    max-width: 600px;
}

/*ポイントある場合*/
.reason-area ul {
    line-height: 1.8;
}

.reason-area ul li {
    position: relative;
    display: flex;
    padding-left: 15px;
    font-weight: 500;
}

.reason-area ul li::before {
    position: absolute;
    top: 12px;
    left: 0px;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 5px;
    background-color: #0F75BC;
    display: block;
}


@media screen and (max-width: 768px) {
	.reason-area {
		gap: 20px;
		flex-direction: column;
		margin-bottom: 40px;
	}
	
	.reason-area .img-wrap {
		height: 200px;
		width: 100%;
	}
	
	.reason-area .txt-area {
		max-width: 600px;
	}
}




/* -------------------------------------------------------------
    よくある質問
-------------------------------------------------------------- */
.faq-area {
    background-color: #fff;
    border: solid 2px #0F75BC;
    border-radius: 40px;
    padding: 60px 60px 0;
    margin: 0 auto 80px;
}

@media screen and (max-width: 768px) {
	.faq-area {
        border-radius: 30px;
        padding: 30px 20px 0;
        margin: 0 auto 40px;
    }
	}
