@charset "utf-8";


/*    サービス一覧（partsファイル）
-------------------------------------------------------------- */
.service02-area{
	background-color: #f4f4f0;
	margin: 0 0 0;
	padding: 0 0 200px;
}

.service02-area .service-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.service02-area .service-wrap {
	display: flex;
	flex-direction: column;
	gap: 150px;
	margin-top: 50px;
}

.service02-area .box{
	margin: 0 0 0;
	position: relative;
}
.service02-area .box .box-img img{
	width: 600px;
	position: absolute;
}
.service02-area .box.rev .box-img img{
	right: 0;
}
.service02-area .box .text-area, 
.service02-area .box.rev .text-area{
	padding: 50px 50px 50px 70px;
	margin-top: 60px;
	background-color:#fff;
	width: calc( 100% - 600px );
}
.service02-area .box.rev .text-area{
	padding: 50px 180px 50px 5%;
}


.service02-area .box .text-area{
	float: right;
}
.service02-area .box.rev .text-area{
	float: left;
}

.service02-area .box .text-area .section_title, 
.service02-area .box .text-area .section_title-e{
	text-align: left;
}
.service02-area .box .text-area .lead, 
.service02-area .box .text-area .text{
	line-height: 1.6;
}
.service02-area .box .text-area .lead{
	font-size: 2.4rem;
	margin: 30px 0 15px 0;
}
.service02-area .box .text-area .text{
	font-size: 1.6rem;
    padding: 0 0 15px;
}

/* ボタン */
.service02-area .box .text-area .btn-gold, 
.service02-area .box.rev .text-area .btn-gold{
	margin: 30px 0 0;
}

@media screen and (max-width: 667px){
	
	.service02-area{
		margin: 0 0 0;
		padding: 0 0 40px 0;
	}

	.service02-area .service-inner {
		max-width: 100%;
		margin: 0 0;
	}

	.service02-area .service-wrap {
		display: flex;
		flex-direction: column;
		gap: 30px;
		margin-top: 30px;
	}

	.service02-area .box{
		margin: 0 0 0;
		position: inherit;
	}
	.service02-area .box .box-img img{
		width: 100%;
		position: inherit;
	}
	.service02-area .box.rev .box-img img{
		right: 0;
	}
	.service02-area .box .text-area, 
	.service02-area .box.rev .text-area{
		padding: 10px 20px 30px 20px;
		margin-top: 0;
		width: 100%;
	}
	.service02-area .box .text-area{
		float: none;
	}
	.service02-area .box.rev .text-area{
		float: none;
	}

	.service02-area .box .text-area .section_title, 
	.service02-area .box .text-area .section_title-e{
		text-align: center;
	}
	.service02-area .box .text-area .lead, 
	.service02-area .box .text-area .text{
		line-height: 1.6;
	}
	.service02-area .box .text-area .lead{
		font-size: 1.5rem;
		margin: 20px 0 20px 0;
	}
	.service02-area .box .text-area .text{
		display: none;
	}
	
	/* ボタン */
	.service02-area .box .text-area .btn-gold, 
	.service02-area .box.rev .text-area .btn-gold{
		margin: 10px auto 0 auto;
	}
    
}


/*    流れる文字
-------------------------------------------------------------- */
.marquee {
    overflow: hidden;
    width: 100%;
}
.marquee-text {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: marquee 50s linear infinite;

    font-size: 15.5rem;
    color: #EEEBEB;
    font-family: 'Spectral', serif;
    font-weight: 300;
}
.marquee-text span {
    flex-shrink: 0;
    padding-right: 2rem;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
	.marquee-text {
		font-size: 8rem;
	}

}