@charset "UTF-8";

/* ------------------------------------------------------------------------------
汎用
------------------------------------------------------------------------------ */
sup{
	color:inherit;/*丸アールなどの文字色が変わらない対策*/
}
/*下線リンク*/
a.link_underline{
	text-decoration:underline;
}
a.link_underline:hover{
	text-decoration:none;
}
/*出しわけ*/
.only_pc{
	display: block;
}
.only_pctb{
	display: block;
}
.only_tb{
	display: none;
}
.only_sp{
	display: none;
}
@media screen and (max-width: 768px){
	.only_pc{
		display: none;
	}
	.only_pctb{
		display: block;
	}
	.only_tb{
		display: block;
	}
	.only_sp{
		display: none;
	}
}
@media screen and (max-width: 480px){
	.only_pc{
		display: none;
	}
	.only_pctb{
		display: none;
	}
	.only_tb{
		display: none;
	}
	.only_sp{
		display: block;
	}
}

/*画像*/
.cmn_pic_wrap{
	width:100%;
}
.cmn_pic_wrap img{
	width:100%;
	display:block;
}

/* ------------------------------------------------------------------------------
映像を、データに
------------------------------------------------------------------------------ */
.about_wrap{
	padding:20px 50px;
	background:center / cover no-repeat url("/content/dam/nttcom/hq/jp/business/services/vpaas/img/cmn_bg.png");
	border-radius:15px;
}
@media screen and (max-width: 768px){
	.about_wrap{
		padding:15px;
	}
}

.about_wrap h4{
	color:#FFF;
	font-size:24px;
	font-weight:bold;
	line-height:1.3;
	text-align:center;
	margin:0;
}
.about_wrap p{
	color:#FFF;
	font-size:18px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	margin:0;
}
.about_pic{
	margin:15px 0;
}
.about_pic img{
	display:block;
	width:100%;
	margin:0 auto;
}

/* ------------------------------------------------------------------------------
概要
------------------------------------------------------------------------------ */
.lead_ttl{
	font-size:20px;
	font-weight:bold;
	line-height:1.3;
	text-align:center;
	margin:0;
}
.strong_ttl{
	color:#C03;
	font-size:20px;
	font-weight:bold;
	line-height:1.3;
	text-align:center;
	margin:0;
}
.visual_ttl{
	color:#FFF;
	font-size:20px;
	font-weight:bold;
	line-height:1.3;
	text-align:center;
	padding:10px;
	background:center / cover no-repeat url("/content/dam/nttcom/hq/jp/business/services/vpaas/img/cmn_bg.png");
	border-radius:15px;
	margin:50px 0 20px;
}
.lead_txt{
	font-size:16px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	margin:0;
}
strong{
	color:#C03;
	font-weight:inherit;
}

/*↓矢印*/
.arrow_under_wrap{
	margin:20px 0;
}
.arrow_under_wrap img{
	display:block;
	margin:0 auto;
}

/* ------------------------------------------------------------------------------
課題
------------------------------------------------------------------------------ */
/*外側2カラム*/
.task_outer_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:20px;
	margin:30px 0;
}
.task_outer_item01{
	width:5%;
	background:#707070;
	border-radius:15px;
	display: flex;
	justify-content: center;
	align-items: center;
	writing-mode: vertical-rl;
	color:#FFF;
	font-size:16px;
	font-weight:bold;
	letter-spacing: 0.1em;
}
.task_outer_item02{
	width:calc(100% - 5% - 20px);
}

@media screen and (max-width: 768px) {
	.task_outer_item01,
	.task_outer_item02{
		width:100%;
	}
	.task_outer_item01{
		writing-mode: initial;
		padding:5px;
	}
}

/*内側3カラム*/
.task_inner_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:20px;
}
.task_inner_wrap > li{
	width:calc((100% - 40px) / 3);
}

@media screen and (max-width: 768px) {
	.task_inner_wrap > li{
		width:100%;
	}
}

/*カード*/
.card {
	position: relative;
	width: 100%;
	background: #FFF;
	border-radius: 15px;
	box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.5);
	padding: 20px;
	
	overflow: hidden;
}

/* 左上の番号ラベル（背景の三角形） */
.card-number-badge {
	position: absolute;
	top: 0;
	left: 0;
	width: 65px;
	height: 65px;
	background: #707070;
	clip-path: polygon(0 0, 100% 0, 0 100%);
	
}

/* 三角形の中の数字の位置調整 */
.card-number-badge span {
	position: absolute;
	top: 5px;
	left: 8px;
	color: #FFF;
	font-weight: bold;
	font-size: 20px;
	line-height: 1;
}

.card-title {
	margin: 0 0 20px;
}

.card-title p {
	margin: 0;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
	text-align:center;
}

.card-title .main-text {
	font-size: 20px;
	display: block;
}

/* 左ボーダー付きの説明文 */
.card-description {
	position: relative;
	margin-top: 20px;
	padding-left: 10px;
	font-size: 16px;
	line-height: 1.6;
	border-left: 3px solid #707070;
}

/* 画像コンテナ */
.card-image {
	margin-top: 20px;
	text-align: center;
}

.card-image img {
	display:block;
	max-width: 100%;
	margin:0 auto;
}

/* ------------------------------------------------------------------------------
本サービス
------------------------------------------------------------------------------ */
/*上段カラム*/
.service_wrap{
	list-style: none;
	margin: 0 0 60px;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:60px;
}
.service_item01{
	width:calc((100% - 60px) / 3 * 1);
			position: relative;
			background: #FFF;
			border-radius: 15px;
			box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.5);
			padding: 15px;
			
}
.service_item02{
	width:calc((100% - 60px) / 3 * 2);
				position: relative;
			background: #FFF;
			border-radius: 15px;
			box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.5);
			padding: 20px;
}
@media screen and (max-width: 768px) {
	.service_item01,
	.service_item02{
		width:100%;
	}
}

.service_wrap h4{
	color:#FFF;
	font-size:16px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	margin:0;
	border-radius:10px;
	padding:5px;
}
.service_wrap .service_item01 h4{
	background-color:#707070;
}
.service_wrap .service_item02 h4{
	background-color:#C03;
}
.service_wrap p{
	font-size:16px;
	line-height:1.5;
	margin:10px 0;
}
.service_pic{
	width:100%;
	margin:20px 0 0;
}
.service_pic img{
	display:block;
	width:100%;
}

.service_item01::after {
	content: "";
	display: block;
	width: 25px;
	height: 55px;
	background-image: url(/content/dam/nttcom/hq/jp/business/services/vpaas/img/arrow_right_r.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: -45px;
	transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
	.service_item01::after{
		  content: none;
	}
	.service_item01::before{
		content: "";
		display: block;
		width: 55px;
		height: 25px;
		background-image: url(/content/dam/nttcom/hq/jp/business/services/vpaas/img/arrow_under_r.png);
		background-size: contain;
		background-repeat: no-repeat;
		position: absolute;
		bottom: calc(-25px - 15px);
		left: 50%;
		transform: translateX(-50%);
	}
}

.service_item02::after {
	content: "";
	display: block;
	width: 55px;
	height: 25px;
	background-image: url(/content/dam/nttcom/hq/jp/business/services/vpaas/img/arrow_under_r.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	bottom: calc(-25px - 15px);
	left: 50%;
	transform: translateX(-50%);
}

/* ------------------------------------------------------------------------------
提供価値
------------------------------------------------------------------------------ */
/* 外枠 */
.value_wrap {
	display: flex;
	
	border: 2px solid #00205b;
	border-radius: 15px;
	box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.5);
	width: 100%;
	position: relative;
	overflow: hidden;/*提供価値ラベルが角丸になるようにハミダシ部分を隠す*/
}

/* 提供価値ラベル*/
.value_label_box {
	align-content: center;
	background-color: #00205b;
	color: #FFF;
	font-weight: bold;
	font-size: 18px;
	padding: 20px 50px 20px 20px;
	/* 矢印のような形状を作成 */
	clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
	border:1px solid #00205b;/*スキマ空くので埋める*/
}

/* 各カードを包むエリア */
.value_cards_wrap {
	display: flex;
	gap: 10px;
	flex-grow: 1;
	padding: 10px;
}

/* 個別の価値カード */
.value_card {
	flex: 1;
	border: 3px solid #C03;
	border-radius: 10px;
	padding: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* アイコン部分 */
.value_card .icon {
	width: 40px;
	text-align: center;
}
.value_card .icon img{
	display:block;
	width: 100%;
}

/* テキスト部分 */
.value_card .text {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
}

/* レスポンシブ対応（幅が狭い時）*/
@media (max-width: 768px) {
	.value_cards_wrap {
		flex-wrap: wrap;
	}
	.value_card {
		flex-direction: column;
	}
}
@media (max-width: 480px) {
	.value_card {
		flex: initial;
		width: 100%;
	}
}

/* ------------------------------------------------------------------------------
資料ダウンロード
------------------------------------------------------------------------------ */
.download_wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap:10px 50px;
	border:1px solid #929292;
	background-color:#F2F2F2;
	padding:25px;
	margin:60px 0 0;
}
.download_pic{
	width:360px;
	text-align:center;
	margin:0 auto;
}
.download_pic img{
	width:100%;
	max-width:360px;
}
.download_txt{
	width:calc(100% - 50px - 360px);
	margin: 0 auto;
	text-align: center;
}
.download_txt p{
	font-size:20px;
	font-weight:bold;
	line-height:1.4;
	text-align:center;
	margin: 0 0 1em;
}
.btn_wrap{
	margin:0 auto;
}

@media screen and (max-width: 768px) {
	.download_pic,
	.download_txt{
		width:100%;
		}
	.download_txt{
		text-align:center;
	}
	.download_txt p{
		font-size:16px;
	}
}
/* --------------------------------------------------------
	赤ボタン 大
--------------------------------------------------------- */
.btn_wrap a {
	background-color: #CC023A;
	border-radius: 6px;
	border: 1px solid #000000;
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
	color: #ffffff;
	display: block;
	font-family: FrutigerNeueLTW10-Regul,FrutigerNeueW01-Regular,"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	padding: 15px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
	width: 100%;
}
@media screen and (max-width: 480px) {
	.btn_wrap a {
		font-size: 20px;
	}
}

.btn_wrap a::before {
	background-image: url("/content/dam/nttcom/hq/cmn/img/arrow-right-accent.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0;
	content: '';
	display: block;
	height: 10px;
	margin: auto;
	position: absolute;
	right: 10px;
	top: 0;
	width: 6px;
}
.btn_wrap a::before {
	background-image: url("/content/dam/nttcom/hq/cmn/img/arrow-right-accent.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0;
	content: '';
	display: block;
	height: 10px;
	margin: auto;
	position: absolute;
	right: 10px;
	top: 0;
	width: 6px;
}
.mw400{
	max-width:400px;
}

/* ------------------------------------------------------------------------------
機能と特徴
------------------------------------------------------------------------------ */
.func_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:20px;
}
.func_cards{
	width:calc((100% - 60px) / 4);
	border-radius: 15px;
	box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.5);
	
}

@media screen and (max-width: 768px) {
	.func_cards{
		width:calc((100% - 40px) / 2);
	}
}

.func_ttl{
	color:#FFF;
	font-size:16px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	padding:5px;
	background-color:#707070;
	border-radius:15px 15px 0 0;
}
.func_cont{
	padding:15px;
}
.func_pic img{
	display:block;
	width:90px;
	margin:0 auto;
}
.func_txt{
	font-size:16px;
	line-height:1.5;
	margin:15px 0 0;
}

/* ------------------------------------------------------------------------------
サービスアーキテクチャ
------------------------------------------------------------------------------ */
/*外側*/
.arch_outer_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:10px;
	margin:20px 0;
}
.arch_outer_item01{
	width:11%;
	background-color:#033461;
	border-radius:15px;
	color:#FFF;
	font-size:14px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	align-content: center;
}
@media screen and (max-width: 768px) {
	.arch_outer_item01{
		font-size:10px;
		writing-mode: vertical-rl;
	}
}

.arch_outer_item02{
	width:calc(100% - 11% - 10px);
	border:2px solid #033461;
	border-radius:15px;
	font-size:16px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	position: relative;
	align-content: center;
}

.arch_outer_item03{
	width:calc((100% - 11% - 20px) / 3 * 2);
	border:2px solid #A3BEDC;/*水色*/
	border-radius:15px;
	font-size:16px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	position: relative;
	/*align-content: center;*/
}

.arch_outer_item04{
	width:calc((100% - 11% - 20px) / 3 * 1);
	border:2px solid #A3BEDC;/*水色*/
	border-radius:15px;
	font-size:16px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	position: relative;
	/*align-content: center;*/
}







/*サービスアーキテクチャ 内側*/
.arch_inner_wrap{
	list-style: none;
	margin: 0;
	padding: 10px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:10px;
}
.arch_inner_pic,
.arch_inner_txt{
	width:calc((100% - 110px) / 12);
}
@media screen and (max-width: 768px) {
	.arch_inner_pic,
	.arch_inner_txt{
		width:calc((100% - 30px) / 4);
	}
}

.arch_inner_pic img{
	display:block;
	width:100%;
	margin:0;
}

.arch_inner_txt{
	font-size:16px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
}

.arch_inner_txt .head{
	font-size:14px;
	font-weight:bold;
	line-height:1.3;
	text-align:center;
	margin:0;
}
.arch_inner_txt .body{
	font-size:12px;
	font-weight:normal;
	line-height:1.4;
	text-align:center;
	margin:10px 0 0;
	padding-top:10px;
	border-top:2px solid #E3ECF8;
}

/*赤い*/
.arch_outer_item01.type_red{
	background-color:#C03;
}
.arch_outer_item02.type_red{
	border-color:#F3C3CB;
	background-color:#FEF8F9;
}
.arch_outer_item02.type_red .ttl{
	color:#C03;
	font-size:22px;
	font-weight:bold;
	line-height:1.2;
	text-align:center;
	margin:10px 15px 0;
}
.arch_outer_item02.type_red .ttl strong{
	font-size:32px;
}
.arch_outer_item02.type_red .txt{
	font-size:16px;
	font-weight:normal;
	line-height:1.5;
	text-align:center;
	margin:0 20px;
}
/*ピンク*/
.arch_outer_item01.type_pink{
	color:#000;
	background-color:#FFD9E2;
}

/*▲*/
.triangle::before {
	background-image: url(/content/dam/nttcom/hq/jp/business/services/vpaas/img/arch_arrow.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	display: block;
	position: absolute;
	width: 20px;
	height: 20px;
	left: calc(50% - 10px);
	top: -18px;
}

/*角丸囲み*/
.arch_box_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:10px;
	padding:10px;
}
.arch_box_wrap > li{
	width:calc((100% - 30px) / 4);
	border:1px solid #C03;
	border-radius:15px;
	background-color:#FFF;
}

@media screen and (max-width: 768px) {
	.arch_box_wrap > li{
		width:calc((100% - 10px) / 2);
	}
}

.arch_box_ttl{
	color:#FFF;
	font-size:14px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	padding:5px;
	background-color:#C03;
	border-radius:15px 15px 0 0;
}
.arch_box_cont{
	padding:15px;
}
.arch_box_pic{
	margin:5px 0;
}
.arch_box_pic img{
	display:block;
	width:50px;
	margin:0 auto;
}
.arch_box_txt{
	font-size:16px;
	line-height:1.5;
	margin:15px 0 0;
}

/*アイコン並び*/
.arch_icon_box_wrap{
	list-style: none;
	margin: 0;
	padding:15px 0;
	width: 100%;
	display: flex;
	/*flex-wrap: wrap;*/
	justify-content: space-evenly;
	/*gap:10px;*/
}
.arch_icon_box_wrap > li{
	font-size:14px;
	font-weight:bold;
	line-height:1.3;
	text-align:center;
}
.arch_icon_box_wrap > li.line{
	background:#D9D9D9;
	width:1px;
}

@media screen and (max-width: 768px) {
	.arch_icon_box_wrap{
		flex-wrap: wrap;
		padding:10px;
	}
	.arch_icon_box_wrap > li{
		width:100%;
	}
	.arch_icon_box_wrap > li.line{
		width:100%;
		height:1px;
		margin:10px 0;
	}
}

.arch_icon_box_pic img{
	width:50px;
	display:block;
	margin: 0 auto 5px;
}

/* ------------------------------------------------------------------------------
ポイント
------------------------------------------------------------------------------ */
/*ポイントタイトル*/
.point_ttl_wrap{
	list-style: none;
	margin-top:30px;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-radius: 15px;
	box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.5);
}
.point_ttl_num{
	width:100px;
	color:#555;
	font-size:14px;
	font-weight:bold;
	line-height:1.2;
	text-align:center;
	background-color:#D9D9D9;
	border-radius: 15px 0 0 15px;
	align-content:center;
	padding: 10px;
}
.point_ttl_num span{
	color:inherit;
	font-size:32px;
}
.point_ttl_icon{
	width:100px;
	align-content:center;
}
.point_ttl_icon img{
	display:block;
	width:70px;
	margin:0 auto;
}
.point_ttl_txt{
	width:calc(100% - 100px - 100px);
	padding:15px 15px 15px 0;
	align-content:center;
}
.point_ttl_txt h4{
	color:#C03;
	font-size:18px;
	font-weight:bold;
	line-height:1.4;
	margin:0 0 5px;
}
.point_ttl_txt p{
	font-size:16px;
	line-height:1.4;
	margin:0;
}

@media screen and (max-width: 768px) {
	.point_ttl_num,
	.point_ttl_icon,
	.point_ttl_txt{
		width:100%;
	}
	.point_ttl_num{
		border-radius:15px 15px 0 0;
	}
	.point_ttl_txt{
		padding:0 15px 15px 15px;
	}
}

/*ポイントコンテンツ*/
.point_body_outer_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:10px 20px;
	border-radius: 15px;
	box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.5);
	padding:20px;
	margin:20px 0 50px;
}
.point_body_outer_txt{
	width:55%;
}
.point_body_outer_pic{
	width:calc(100% - 55% - 20px);
	border-left: 1px solid #CCC;
	padding-left:20px;
}

@media screen and (max-width: 768px) {
	.point_body_outer_txt{
		width:100%;
	}
	.point_body_outer_pic{
		width:100%;
		border-left: none;
		padding-left:0;
		}

}

.point_body_outer_txt h4{
	font-size:18px;
	font-weight:bold;
	line-height:1.4;
	margin:0 0 10px 0;
}
.point_body_outer_txt ul{
	list-style: disc;
	margin-left:1.3em;
}
.point_body_outer_txt ul li{
	margin-bottom:1em;
}
.point_body_outer_txt ul li:last-child{
	margin-bottom:0;
}
.point_body_outer_pic img{
	display:block;
	width:100%;
	margin:0 auto;
}

/*ポイント03 ロゴなど*/
.point_logo_outer_wrap{
	margin: 0;
	padding: 20px;
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.5);
	margin-top:30px;
}

.point_logo_inner_wrap{
	list-style: none;
	margin: 0 auto;
	padding: 0;
	width: 85%;
	display: flex;
	flex-wrap: wrap;
	align-items:center;
	gap:10px 0;
}
.point_logo_inner_wrap li{
	align-content:center;
}
.point_logo_inner_logo{
	width:27%;
}
.point_logo_inner_type{
	width:33%;
}
.point_logo_inner_name{
	width:20%;
}
.point_logo_inner_link{
	width:20%;
}
.point_logo_inner_logo img{
	display:block;
	margin:0;
	width:auto;
	height:25px;
}
@media screen and (max-width: 768px) {
	.point_logo_inner_logo,
	.point_logo_inner_type,
	.point_logo_inner_name,
	.point_logo_inner_link{
		width:100%;
	}
	.point_logo_inner_wrap li{
		min-height:auto;
		text-align:center;
	}
	.point_logo_inner_logo img{
		margin:0 auto;
	}
}

/*タイプ テーブル*/
table.type{
	margin:0;
	border-color: transparent;
}
@media screen and (max-width: 768px) {
	table.type{
	margin:0 auto;
	}
}
table.type td{
	color:#FFF;
	font-size:12px;
	line-height:1;
	text-align:center;
	vertical-align:middle;
	border: 2px solid transparent;
	padding:5px;
	width:9em;
	border-radius:8px;
}
.bg01{
	background-color:#C03;/*赤*/
}
.bg02{
	background-color:#E46C0A;/*オレンジ*/
}
.bg03{
	background-color:#002060;/*青*/
}
.bg04{
	background-color:#435D0D;/*緑*/
}


/* ------------------------------------------------------------------------------
ユースケース
------------------------------------------------------------------------------ */
/*タイトル*/
.usecase_ttl_wrap{
	list-style: none;
	margin-top:50px;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-radius: 15px;
	box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.5);
}
.usecase_ttl_num{
	width:120px;
	color:#555;
	font-size:14px;
	font-weight:bold;
	line-height:1.2;
	text-align:center;
	background-color:#D9D9D9;
	border-radius: 15px 0 0 15px;
	align-content:center;
	padding: 10px;
}
.usecase_ttl_num span{
	color:inherit;
	font-size:32px;
}
.usecase_ttl_txt {
	width: calc(100% - 120px);
	padding: 15px;
	align-content: center;
}
.usecase_ttl_txt p{
	font-size:16px;
	font-weight:bold;
	line-height:1.4;
	margin:0;
}

@media screen and (max-width: 768px) {
	.usecase_ttl_num,
	.usecase_ttl_txt{
		width:100%;
	}
	.usecase_ttl_num{
		border-radius:15px 15px 0 0;
	}
}

/*ユースケースコンテンツ外側*/
.usecase_outer_wrap{
	list-style: none;
	margin-top: 20px;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:20px;
}
.usecase_outer_card{
	width:calc((100% - 25px - 40px) / 2);
	border-radius: 15px;
	box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.5);
}
.usecase_outer_arrow{
	width:25px;
	height:55px;
	align-self: center;
}
.usecase_outer_arrow img{
	display:block;
	width:100%;
	margin:0 auto;
}
@media screen and (max-width: 768px) {
	.usecase_outer_card{
		width:100%;
	}
	.usecase_outer_arrow{
		width:55px;
		height: 25px;
		margin:0 auto;
	}
	.usecase_outer_arrow img{
		transform: rotate(90deg);
		width: 25px;
		height: 55px;
		margin-top: -15px;
	}
}

/*ユースケースコンテンツ外側タイトル*/
.usecase_ttl{
	color:#FFF;
	font-size:16px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	padding:5px;
	border-radius:15px 15px 0 0;
}
.before .usecase_ttl{
	background-color:#707070;
}
.after .usecase_ttl{
	background-color:#C03;
}
.usecase_txt{
	font-size:16px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	margin:10px;
}
.after .usecase_txt{
	color:#C03;
}

/*ユースケースコンテンツ内側*/
.usecase_inner_wrap{
	list-style: none;
	margin: 0;
	padding: 0 15px 15px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:10px;
}
.usecase_inner_wrap > li{
	width:calc((100% - 10px) / 2);
}
.usecase_inner_pic img{
	display:block;
	width:100%;
	margin:0;
}
.usecase_inner_txt ul{
	list-style: disc;
	margin-left: 1.3em;
}
.usecase_inner_txt ul li{
	margin-bottom: 1em;
}
.usecase_inner_txt ul li:last-child{
	margin-bottom: 0;
}