@charset "UTF-8";

/*汎用*/
sup{
	color:inherit;/*丸アールなどの文字色が変わらない対策*/
}
.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;
	}
}

/*三角*/
.ico_arrow_r01 {
	display: inline-block;
	padding-left: 1em;
	background: url("/content/dam/nttcom/hq/jp/business/cmn/dcc-temp/images/ico/ico_arrow_r01.png") no-repeat 0 0.5em;
	background-size: 6px;
	text-decoration: none;
	word-break: break-all;
	word-wrap: break-word;
}

/*リスト*/
.disc{
	list-style-type: disc;
	margin-left: 0;
	padding-left:1.2em;
}
.main-article__contents li{
	margin:0.25em 0;
}

/*画像*/
.image_wrap{
	text-align:center;
}
.image_wrap img{
	max-width:100%;
}

/*概要*/
.outline_wrap{
	padding:20px;
	border-radius:10px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 10px;
	margin:50px 0 0;
}
.outline_ttl{
	width:fit-content;
	margin:-2em auto 1em;
	color:#FFF;
	font-size:22px;
	font-weight:bold;
	line-height:1.2;
	text-align: center;
	padding:0.5em 2em;
	background-color:#C03;
	border-radius:10px;
}

ul.outline_square-list {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
ul.outline_square-list li {
	width:48%;
	position: relative;
	padding-left: 1.5em;
	font-size: 1.125em;/*18px相当*/
	line-height: 1.4;
	font-weight: bold;
	margin-bottom:0.5em;
}
@media screen and (max-width: 768px) {
	ul.outline_square-list,
	ul.outline_square-list li {
		width:100%;
	}
}

ul.outline_square-list li::before {
	content: "";
	position: absolute;
	top: 0.2em;
	left: 0;
	width: 1em;
	height: 1em;
	border: 3px solid #555;
	background-color: white;
	box-sizing: border-box;
}

/*▼*/
.triangle_down {
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 20px solid transparent;
	border-left: 20px solid transparent;
	border-top: 20px solid #a6a6a6;
	border-bottom: 0;
	margin :20px auto;
}

.outline_ttl_sub{
	color:#C03;
	font-size:22px;
	font-weight:bold;
	line-height:1.2;
	text-align: center;
}
.outline_img_wrap{
	margin: 20px auto 0;
	width:700px;
}
@media screen and (max-width: 768px) {
	.outline_img_wrap{
		width:100%;
	}
}
.outline_img_wrap img{
	display:block;
	margin:0 auto;
	width:100%;
}

/*プラン*/
.plan_wrap{
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.plan_item{
	width:31%;
	padding:20px;
	border-radius:10px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 10px;
	margin:3em 0 0 !important;
}
.plan_arrow{
	width:3.5%;
	margin:3em 0 0 !important;
}

@media screen and (max-width: 768px) {
	.plan_item{
		width:100%;
	}
	.plan_arrow{
			width:100%;
			margin:0 !important;
	}
}

/*▼*/
.triangle_plan {
	/*PC時は右向き*/
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #a6a6a6;
	border-right: 0;
	margin :10px auto;
}
@media screen and (max-width: 768px) {
	.triangle_plan {
		/*TBSP時は下向き*/
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 15px solid transparent;
		border-left: 15px solid transparent;
		border-top: 15px solid #a6a6a6;
		border-bottom: 0;
		margin :10px auto;
	}
}

.plan_ttl{
	width:100%;
	margin:-3em auto 1em;
	color:#FFF;
	font-size:18px;
	font-weight:bold;
	line-height:1.4;
	text-align: center;
	padding:0.5em;
	background-color:#C03;
	border-radius:10px;
}
.plan_img_wrap{
	margin: 20px 0;
}
.plan_img_wrap img{
	display:block;
	margin:0 auto;
	width:100%;
	max-width:320px;
}

ul.plan_square-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.plan_square-list li {
	position: relative;
	padding-left: 1.5em;
	font-size: 1.125em;/*18px相当*/
	line-height: 1.4;
	font-weight: bold;
	margin-bottom:0.5em;
}
ul.plan_square-list li:last-child{
	margin-bottom:0;
}

ul.plan_square-list li::before {
	content: "";
	position: absolute;
	top: 0.3em;
	left: 0;
	width: 1em;
	height: 1em;
	border: 3px solid #555;
	background-color: white;
	box-sizing: border-box;
}

/*資料ダウンロード*/
.download_item_wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin:30px 0;
}
.download_item_wrap:last-child{
	margin:0;
}
.download_pic{
	/*width:25%;*/
	width:20%;
	text-align:center;
}
.download_pic img{
	width:100%;
	border:1px solid #DDD;
}
.download_txt{
	/*width:72%;*/
	width:75%;
}
.download_txt h5{
	margin:0 0 20px;
	font-size:16px;
	font-weight:bold;
	line-height:1.5;
}
.download_txt p{
	font-size:16px;
	line-height:1.5;
	margin:0 0 1rem;
}
.download_link{
	font-size:16px;
	line-height:1.5;
	text-align:right;
	margin:0;
}

@media screen and (max-width: 480px) {
	.download_pic,
	.download_txt{
		width:100%;
	}
	.download_pic img{
		/*width:100%;*/
		width:50%;
		margin-bottom:10px;
	}
	.download_link{
		text-align:left;
	}
}