@charset "UTF-8";

/*******************************
 
scrCss
 
*******************************/
.scr-content {
	width: 988px;
	margin: 0 auto;
	text-align: left;
	padding-top: 15px;
}

img {
	max-width: 100%;
}

/* 
	メインビジュアル
*/

#scr_main {
	/*background: #9fcbee url(../img/main_bg.jpg) repeat-x;*/
	background: url("../img/main_bg.png");
	background-size: cover;
	min-height: 638px;
	padding-top: 130px;
	padding-bottom: 130px;
	position: relative;
	color: #fff;

}

#scr_main:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	/* 追加 */
	background: url(../img/main_bg_02.png) no-repeat;
	background-size: contain;
	background-position: top right;
	/* 右上に配置 */
}

#scr_main .scr-content {
	position: relative;
	z-index: 1;
}


#scr_main h2 {
	font-weight: bold;
	font-size: 64px;
	line-height: 1;
	margin-bottom: 40px;


}

#scr_main h2 span {
	font-size: 44px;
	display: block;
	margin-bottom: 30px;
}

#scr_main p {
	margin-bottom: 40px;
	font-weight: bold;
	font-size: 18px;
}

.button-container {
	display: flex;
}

.button-container .button {
	display: inline-block;
	padding: 20px 50px;
	color: white;
	text-decoration: none;
	font-weight: bold;
	margin-right: 10px;
	transition: background-color 0.3s;
	position: relative;
	font-size: 18px;
	font-weight: bold;
}

.button-container .button::after {
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%) translateY(-3px) rotate(45deg);
	width: 8px;
	height: 2px;
	background-color: white;
}

.button-container .button::before {
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%) translateY(3px) rotate(-45deg);
	width: 8px;
	height: 2px;
	background-color: white;
}

.button-container .button.green {
	background-color: #17BD94;
	/* 緑色 */
}

.button-container .button.blue {
	background-color: #044484;
	/* 青色 */
}

.button-container .button:hover {
	opacity: 0.8;
}

/* 
	お悩み
*/

#worry {
	width: 100%;
	background-image: url("../img/worry_bg.png");
	background-size: cover;
	clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 75% 90%, 50% 100%, 25% 90%, 0% 90%);

}

#worry .scr-content {
	padding-top: 70px;
	text-align: center;
	position: relative;
	padding-bottom: 100px;
}

#worry .main-image {
	text-align: center;
}

#worry2 {
	position: relative;
	margin-top: -135px;
}

#worry2 .scr-content {
	text-align: center;
}

#worry2 h2 {
	display: inline-block;
	color: #044484;
	text-align: center;
	font-family: "Yu Gothic";
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 64px;
	border-bottom: 2px solid #044484;
	margin-bottom: 30px;
}

#worry2 .catchphrase {
	position: relative;
	text-align: center;
	padding: 15px;
	background-color: white;
	/* 背景色を白に設定 */
	display: inline-block;
	margin-bottom: 30px;
	width: 100%;

}

#worry2 .catchphrase-content {
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 64px;
	background: linear-gradient(270deg, #22B0D4 0%, #065786 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
	z-index: 2;
	/* テキストを前面に */
}

#worry2 .catchphrase::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 4px solid transparent;
	/* ボーダーの太さ */
	background: linear-gradient(270deg, #22B0D4 0%, #065786 100%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
	z-index: 1;
	/* ボーダーを背景の後ろに */
}

#worry2 p {
	text-align: center;
	margin-bottom: 70px;
}


/* 
サービス詳細
*/
#service {
	background: #F0F6FD;
	padding: 100px 0;
}

.scr-title {
	text-align: center;
	margin-bottom: 50px;
}

.scr-title .english {
	color: #044484;
	font-size: 18px;
	font-weight: bold;

}

.scr-title h2 {
	color: #021B36;
	font-size: 32px;
	font-weight: bold;
}

.tab-container {
	width: 100%;
}

.tabs {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 20px;
	/* 間の余白 */
	cursor: pointer;
}

.tab-link {
	padding: 10px 20px;
	background: #E4E9EC;
	flex: 1;
	/* 同じ幅で均等に */
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	color: #A7A7A7;
}

.tab-link.active {
	background: #ffffff;
	color: #000;
}

.tab-content {
	display: none;
	padding: 40px;
	background: #ffffff;

}

.tab-content.active {
	display: block;
}

#service .tab-title {
	text-align: center;
}

#service .tab-title h3 {
	color: #044484;
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	border: 1px solid #044484;
	padding: 10px;
	display: inline-block;
	margin-bottom: 45px;
}

#service .gallery {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
	justify-content: center;
	/* デフォルトで中央揃え */
}

#service .gallery li {
	flex: 1;
	max-width: calc(50% - 10px);
	/* 二列にするための幅調整 */
}

#service .gallery:only-child {
	justify-content: center;
	/* アイテムが一つの場合に中央揃え */
}

#service .gallery li .gallery-img {
	margin-bottom: 12px;

}

#service .gallery li h4 {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}

#service .feature {
	background: #F2F5F7;
	padding: 30px;
	margin-bottom: 40px;
}

#service .feature .feature-title {
	text-align: center;
}

#service .feature .feature-title h3 {
	color: #FFF;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	padding: 4px 20px;
	background: #044484;
	display: inline-block;
	border-radius: 50px;
	margin-bottom: 30px;
}

#service .feature .feature-list {

	display: flex;
	flex-wrap: wrap;
	/* 複数行に対応 */
	gap: 10px 20px;
	/* 列と行の間の余白 */
}

#service .feature .feature-list li {
	position: relative;
	padding-left: 40px;
	/* アイコンの幅 + マージンを考慮 */
	padding-top: 15px;
	padding-bottom: 15px;
	background: #fff;
	font-weight: bold;
	width: calc(50% - 10px);
	/* 二列にするための幅調整 */
	box-sizing: border-box;
	/* パディングを含めた幅計算 */
	font-size: 14px;
}

#service .feature .feature-list li::before {
	content: '';
	position: absolute;
	left: 15px;
	/* アイコンの開始位置 */
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	/* アイコンの幅 */
	height: 20px;
	/* アイコンの高さ */
	background-image: url('../img/icon01.png');
	background-size: cover;
}

#service .flow {
	background: #F2F5F7;
	padding: 30px;
}

#service .flow .flow-title {
	text-align: center;
}

#service .flow .flow-title h3 {
	color: #FFF;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	padding: 4px 20px;
	background: #044484;
	display: inline-block;
	border-radius: 50px;
	margin-bottom: 30px;
}
#service .flow .flow-img{
	text-align: center;
}
/* 
CTA
*/
#cta {
	padding: 50px 0 50px 0;
	background-image: url("../img/cta-bg.png");
	background-size: cover;
	margin-bottom: 100px;
}

#cta .cta-title {
	text-align: center;
	color: #FFF;
	margin-bottom: 30px;
}


#cta .cta-title .sub-title {
	font-size: 20px;
	font-weight: bold;
}

#cta .cta-title h2 {
	font-size: 40px;
	font-weight: bold;
}

#cta .button-container {
	justify-content: center;

}

/* 
プロセス
*/

#process .process-title {
	margin-bottom: 40px;
	text-align: center;
}

#process .process-title .sub-title {
	color: #5D86B1;
	font-size: 18px;
	font-weight: bold;
}

#process .process-title h2 {
	color: #021B36;
	font-size: 32px;
	font-weight: bold;
}

#process .process-title h2 .strong {
	font-size: 50px;
}

#process .process-content {
	padding: 100px;
	background-image: url("../img/process-content-bg.png");
	background-size: cover;
}

#process .process-content .process-content-title {
	font-size: 30px;
	font-weight: bold;
	color: #044484;
	text-align: center;
	margin-bottom: 15px;
}

#process .process-content .process-content-description {
	text-align: center;
	margin-bottom: 50px;

}

#process .process-content .process-steps {}

#process .process-content .process-steps .step {
	padding: 24px 28px;
	background: #fff;
}

#process .process-content .process-steps .step .step-content {
	gap: 20px;

	display: flex;
}

#process .process-content .process-steps .step .step-number {
	background-color: #044484;
	color: #fff;
	font-weight: bold;
	text-align: center;
	font-size: 20px;
	border-radius: 50%;
	width: 48px !important;
	height: 48px !important;
	min-width: 48px;
	min-height: 48px;
	max-width: 48px;
	max-height: 48px;
	line-height: 48px;
	display: inline-block;
	box-sizing: border-box;
	flex-shrink: 0;
	/* flexの親がある場合の対策 */
}

#process .process-content .process-steps .step h3 {
	color: #044484;
	font-weight: bold;
}

#process .process-content .process-steps .step .step-description {}

#process .process-content .process-steps .arrow {
	text-align: center;
	margin-top: 15px;
	margin-bottom: 15px;
}

#process .process-content .process-steps .step .step-work {}

#process .process-content .process-steps .step .step-work h4 {
	margin-top: 30px;

	background: linear-gradient(270deg, #22B0D4 0%, #065786 100%);
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	padding: 8px;
	margin-bottom: 8px;
}

#process .process-content .process-steps .step .step-work .images {
	display: flex;
	gap: 8px;
}

#process .process-content .process-steps .step .step-work .images .item .item-caption {
	text-align: center;
	font-size: 12px;
}

/* 
対応事例
*/

#case {
	padding: 80px 0;
}

#case .process-title {
	text-align: center;
	margin-bottom: 35px;
}

#case .process-title .sub-title {
	font-size: 24px;
	font-weight: bold;
	color: #021B36;
	margin-bottom: 15px;

}

#case .process-title .main-title {
	font-size: 34px;
	font-weight: bold;
	color: #021B36;
}

#case .process-title .main-title .strong {
	padding: 15px 20px;
	color: #fff;
	border-radius: 5px;
}

#case .process-title .main-title .strong.blue {
	background: #19ADD3;
}

#case .process-title .main-title .strong.green {
	background: #17BD94;
}

#case .button-container {
	justify-content: center;
}

#case .button-container .button.blue {}

/* 
理由
*/

#reason {
	background: #C8E5EA;
	padding: 100px;
}

#reason .list {
	display: flex;
	flex-wrap: wrap;
	/* 複数行に対応 */
	justify-content: center;
	/* 中央揃え */
	gap: 20px;
	row-gap: 20px;
}

#reason .list .list-item {
	flex: 0 1 calc((100% - 40px) / 3);
	/* 3列にするための幅調整 */

	box-sizing: border-box;
	/* パディングを含めた幅計算 */

}

#reason .list .list-item .image-box {
	position: relative;
}

#reason .list .list-item .image-box .num {
	position: absolute;
	left: 0;
	top: 0;
	background: #19ADD3;
	color: #fff;
	font-size: 16px;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
}

#reason .list .list-item .image-box .image {}

#reason .list .list-item .text-box {
	background: #fff;
	padding: 40px 20px;
	text-align: center;
}

#reason .list .list-item .text-box .title {
	margin-bottom: 24px;
	font-size: 20px;
	font-weight: bold;
	color: #044484;
}

#reason .list .list-item .text-box .caption {
	font-size: 16px;
}

/* 
Q&A
*/

#qa {
	margin-bottom: 100px;
}

#qa .scr-content .qa-item {
	margin-bottom: 28px;
	
}

#qa .scr-content .qa-item .qa-question {
	display: flex;
	justify-content: space-between; /* 左右に配置 */
	align-items: center; /* 垂直方向の中央揃え */
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 2px;
	padding: 20px 60px;
	background: #F0F6FD;
	cursor: pointer;
}

#qa .scr-content .qa-item .qa-question .qa-icon {
	margin-right: 40px;
}

#qa .scr-content .qa-item .qa-question .text {
	text-align: left;
	flex: 1; 
	
}

#qa .scr-content .qa-item .qa-question .qa-button {
	font-size: 30px;
	font-weight: bold;
	color: #19ADD3;
}

#qa .scr-content .qa-item .qa-answer {
	padding: 20px 60px;
	background: #F0F6FD;
	font-size: 16px;
	display: none;
}



/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {

	#scr_main {
		min-height: auto;
		padding-top: 20px;
		padding-bottom: 390px;

	}

	#scr_main:before {
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		right: 0;
		/* 追加 */
		background: url(../img/main_bg_02.png) no-repeat;
		background-size: contain;
		background-position: bottom right;
		/* 右上に配置 */
	}

	.scr-content {
		width: 100%;
		padding: 15px;
	}

	#scr_main .scr-content h2 {
		font-weight: bold;
		font-size: 40px;
		line-height: 1;
		margin-bottom: 20px;


	}

	#scr_main .scr-content h2 span {
		font-size: 22px;
		display: block;
		margin-bottom: 15px;
	}

	#scr_main .scr-content p {
		margin-bottom: 20px;
		font-weight: bold;
		font-size: 14px;
	}

	.button-container {
		display: block;
	}

	.button-container .button {
		display: block;
		width: 100%;
		padding: 20px 50px;
		margin-right: 0;
		margin-bottom: 10px;

	}

	.button-container .button::after {
		content: '';
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%) translateY(-3px) rotate(45deg);
		width: 8px;
		height: 2px;
		background-color: white;
	}

	.button-container .button::before {
		content: '';
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%) translateY(3px) rotate(-45deg);
		width: 8px;
		height: 2px;
		background-color: white;
	}

	.button-container .button.green {
		background-color: #17BD94;
		/* 緑色 */
	}

	.button-container .button.blue {
		background-color: #044484;
		/* 青色 */
	}

	.button-container .button:hover {
		opacity: 0.8;
	}

	#scr_main .scr-content {
		/*background-image:url(../img/main_fig.png);
	background-position: top right;
	background-repeat: no-repeat;*/
		position: relative;
		z-index: 1;
	}

	#worry .main-image img{
		margin-bottom: 20px;
	}

	#worry2 h2 {
		font-size: 18px;
	}

	#worry2 .catchphrase-content {
		font-size: 24px;
		line-height: 1.5;
	}






	.tab-link {
		font-size: 14px;
	}



	.tab-content {
		padding: 15px;

	}

	#service .feature {
		padding: 15px;
	}

	#service .feature .feature-list li {
		width: 100%;
	}

	#service .flow {
		padding: 15px;
	}


	#cta {
		padding: 15px;
	}

	#cta .cta-title .sub-title {
		font-size: 16px;
	}

	#cta .cta-title h2 {
		font-size: 20px;
	}

	#process .process-content {
		padding: 15px;
	}

	#process .process-content .process-content-title {
		font-size: 22px;
	}

	#process .process-content .process-steps .step {

		padding: 12px 14px;
	}

	#case {
		padding: 15px;
	}

	#case .process-title .sub-title {
		font-size: 14px;
	}

	#case .process-title .main-title {
		font-size: 20px;
		line-height: 2;
	}

	#reason {
		padding: 15px;
	}

	#reason .list .list-item {
		flex: 0 1 calc((100% - 20px) / 2);
		/* 2列にするための幅調整 */
	}

	
	#qa .scr-content .qa-item .qa-question {
	
		padding: 15px;

	}
	
	#qa .scr-content .qa-item .qa-question .qa-icon {
		margin-right: 15px;
	}
	

	
	#qa .scr-content .qa-item .qa-question .qa-button {
		margin-left: 15px;
	}
	
	#qa .scr-content .qa-item .qa-answer {
		padding: 15px;

	}
}