@charset "UTF-8";

/* =========================================================
 * 2025 Renewal Arcstar Smart PBX
 * ====================================================== */

/* --------------------------------------------------------
	テンプレ調整
--------------------------------------------------------- */
/*TOP 余白をなくしたい*/
@media screen and (min-width: 769px) {
	.main-article__contents {
		padding-bottom: 0;
	}
}
/*CTA ボタンを下げたい*/
@media screen and (min-width: 769px) {
	.contact-info__item--buttons{
		margin-top:35px;
	}
}
/*関連コンテンツ 3個しかないので中央に配置したい*/
@media screen and (min-width: 769px) {
	.relation-contents__list {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
	}
	.relation-contents__item:last-child {
		margin: 0;
	}
}

/*関連コンテンツ サムネイル全体が見えるようにしたい*/
.relation-contents__item--image {
	height: auto;
	width: 100%;
	aspect-ratio: 100/66;
}

/* --------------------------------------------------------
	汎用
--------------------------------------------------------- */

sup,sub,span{
	color:inherit;
}

/*PC・SP*/
.only_pc{
	display:block;
}
.only_tbsp{
	display:none;
}
.only_sp{
	display:none;
}
@media screen and (max-width: 768px) {
	.only_pc{
		display:none;
	}
	.only_tbsp{
		display:block;
	}
	.only_sp{
		display:none;
	}
}

@media screen and (max-width: 480px) {
	.only_pc{
		display:none;
	}
	.only_tbsp{
		display:block;
	}
	.only_sp{
		display:block;
	}
}

/*文字*/
.fc-red{
	color:#C03;
}
.fs-16{
	font-size:16px !important;
}
.fs-20{
	font-size:20px;
}
.fs-22{
	font-size:22px;
}
.fs-24{
	font-size:24px;
}
.fs-26{
	font-size:26px;
}
.fs-28{
	font-size:26px;
}

/*下線付きタイトル*/
.header_underline{
	font-size: 22px;
	font-weight: bold;
	line-height: 1.3;
	padding-bottom: 10px;
	border-bottom: 3px solid #004386;
	margin-bottom: 15px;
}


/*下線リンク*/
a.link_underline{
	word-break: break-all;
	text-decoration:underline;
}
a.link_underline:hover{
	text-decoration:none;
}

/*このページのトップへ*/
.ren_page_top{
	text-align: right;
	margin:40px 0 0 0;
}
.ren_page_top .goPageTop {
	color: #000 !important;
	text-decoration: underline;
	padding-right:1.5em;
	transition: all .3s;
}
.ren_page_top .goPageTop:hover{
	color: #CC023A !important;
	text-decoration: none;
	transition: all .3s;
}
.ren_page_top .goPageTop:after {
	content:"";
	position:absolute;
	top:0.3em;
	bottom:.0;
	right:0.1em;
	margin:auto;
	width: .5em;
	height: .5em;
	border-top: .13em solid #333;
	border-right: .13em solid #333;
	transform: rotate(-45deg);
}

/*リンクコンポーネント*/
.link_component{
	margin-top: 0.5em;
	margin-bottom: 0;
}
.link_component a:after {
	content: url(/content/dam/nttcom/cmn/img/icon_right_arrow.png);
	margin-left: 10px;
}

/*中黒リスト*/
.disc_list {
	margin: 1em 1em 1em 1.3em;
	padding: 0px;
	list-style-type: disc;
}
.disc_list li{
	margin:0 0 0.5em 0;
}
.disc_list li:last-child{
	margin:0;
}

/*番号リスト*/
.decimal_list{
		margin: 1em 1em 1em 1.3em;
	padding: 0px;
	list-style: decimal !important;
}
.decimal_list li{
	margin:0 0 0.5em 0;
}
.decimal_list li:last-child{
	margin:0;
}

/*注釈リスト*/
.note_list{
	margin: 0;
	padding: 0px;
	list-style-type: none;
}
.note_list li{
	padding-left: 1.3em;
	text-indent: -1.3em;
	font-size:14px;
	margin-bottom:0.3em;
}
.note_list li:last-child{
	margin:0;
}

/*注釈リスト 小*/
.note_smal_list{
	margin: 0;
	padding: 0px;
	list-style-type: none;
}
.note_small_list li {
	padding-left: 1em;
	text-indent: -1em;
	font-size:12px;
	line-height:1.5;
}

/*テンプレアコーディオン*/
.accordion-contents__body{
	padding-left:10px;
}

/* --------------------------------------------------------
	ボタン
--------------------------------------------------------- */
/*ベース*/
.base_btn{
	position: relative;
	display:block;
	width:100%;
	padding:10px 20px;
	text-align: center;
	line-height: 1.25;
	text-decoration:none;
	font-size:18px;
	font-weight:bold;
	border-radius: 10px;
	transition:.3s;
	}
.base_btn:hover{
	opacity:.7;
	transition:.3s;
}


/*灰色*/
.gray_btn{
	background: #404040 !important;
	text-decoration: none;
	color: #FFF !important;
}

/*灰色　くの字*/
.gray_btn:after{
	content:"";
	position:absolute;
	top:0;
	bottom:.1em;
	right:1em;
	margin:auto;
	width: .5em;
	height: .5em;
	border-top: .13em solid #FFF;
	border-right: .13em solid #FFF;
	transform: rotate(45deg);
}

/*赤色*/
.red_btn{
	color:#FFF;
	background: #C03 !important;
	text-decoration: none;
	color: #FFF !important;
}

/*赤色　くの字*/
.red_btn:after{
	content:"";
	position:absolute;
	top:0;
	bottom:.1em;
	right:1em;
	margin:auto;
	width: .5em;
	height: .5em;
	border-top: .13em solid #FFF;
	border-right: .13em solid #FFF;
	transform: rotate(45deg);
}

/*青色 大*/
.blue_large_btn{
	color:#FFF;
	background: #004386 !important;
	text-decoration: none;
	color: #FFF !important;
	font-size:22px;
	font-weight:bold;
	padding:20px 30px;
}

/*青色 大　くの字*/
.blue_large_btn:after{
	content:"";
	position:absolute;
	top:0;
	bottom:.1em;
	right:1em;
	margin:auto;
	width: .5em;
	height: .5em;
	border-top: .13em solid #FFF;
	border-right: .13em solid #FFF;
	transform: rotate(45deg);
}

/*詳しく見る 囲み*/
.more_btn_wrap{
	max-width:320px;
	text-align:center;
	margin:30px auto 0;
}

/* --------------------------------------------------------
	誘導枠（らくらく・無料トライアル）
--------------------------------------------------------- */
.bnr_outer_wrap{
	width:780px;
	margin:0 auto;
}
@media screen and (max-width: 768px) {
	.bnr_outer_wrap{
		width:100%;
	}
}

.bnr_outer_wrap a{
	display:block;
	width:100%;
	height:100%;
	transition:.3s;
}
.bnr_outer_wrap a:hover{
	transition:.3s;
	opacity:.7;
}

.bnr_inner_wrap{
	padding:20px 80px;
	border-radius:10px;
	box-shadow: 0px 0px 10px 0px rgba(10,10,10,0.3);
}
@media screen and (max-width: 768px) {
	.bnr_inner_wrap{
		padding:20px;
	}
}
.bnr_pic{
	text-align:center;
}
.bnr_pic img{
	width:100%;
	max-width:100%;;
}
.bnr_btn{
	max-width: 320px;
	margin:0 auto;
}

/* --------------------------------------------------------
	トップ News 既存を上書き・調整
--------------------------------------------------------- */
.p-news.c-section{
	padding-top:70px;
}
@media screen and (max-width: 768px) {
	.p-news.c-section{
		padding-top:0;
	}
}

.main-article .c-inner .p-news__item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.p-news-item__time{
	width:8em;
}
.p-news-item__category{
	display: flex;
	width:8em;
	justify-content: center;
	align-items: center;
	font-size:12px;
	line-height:1;
	padding:0 5px;
	height:20px;
	border-radius:10px;
	border:1px solid #dcdcdc;
	margin:0 10px;
}
.p-news-item__contents{
	width:calc(100% - 8em - 8em);
	line-height:1.5;
}

@media screen and (max-width: 768px) {
	.p-news-item__time{
		font-size:14px;
	}
	.p-news-item__category{
		margin:0;
	}
	.p-news-item__contents{
		width:100%;
		margin-top:10px;
	}
}

a.p-news-item__title{
	text-decoration:underline;
}
a:hover.p-news-item__title{
	text-decoration:none;
}

/* --------------------------------------------------------
	トップ Arcstar Smart PBXとは
--------------------------------------------------------- */
.about_txt_wrap{
	width:960px;
	margin:0 auto;
}
@media screen and (max-width: 768px) {
	.about_txt_wrap{
		width:100%;
	}
}

.about_wrap{
	list-style: none;
	margin: 0 auto;
	padding: 0;
	width: 960px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:30px;
}
.about_item{
	width:calc((100% - 25px - 60px) / 2);
}
.about_arrow{
	width:25px;
	align-content: center;
}

@media screen and (max-width: 768px) {
	.about_wrap,
	.about_item,
	.about_arrow{
		width:100%;
	}
}
.about_head_blue {
	color: #FFF;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	padding: 10px;
	background-color: #4F81BD;
	margin-bottom:20px;
}
.about_head_gray {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	padding: 10px;
	background-color: #E5E5E5;
	margin-bottom:20px;
}
.about_pic{
	text-align:center;
}
.about_pic img{
	width:100%;
	max-width:320px;
}
/*三角*/
.triangle_right {
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-left: 25px solid #E5E5E5;
	border-right: 0;
	margin:0 auto;
}
@media screen and (max-width: 768px) {
	.triangle_right {
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 25px solid transparent;
		border-left: 25px solid transparent;
		border-top: 25px solid #E5E5E5;
		border-bottom: 0;
		margin:0 auto;
	}
}

/* --------------------------------------------------------
	トップ 電話環境のお悩み解決します！
--------------------------------------------------------- */
.solution_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:20px 0;
}
.solution_wrap > li{
	width:calc((100% - 60px) / 3);
}

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

.solution_head{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size:18px;
	font-weight:bold;
	line-height:1.3;
	text-align:center;
	padding:15px;
	border-radius:10px;
	background-color:#E6E6E6;
}

.solution_arrow{
	text-align:center;
	padding:10px;
}

.triangle_under{
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 20px solid transparent;
	border-left: 20px solid transparent;
	border-top: 20px solid #E6E6E6;
	border-bottom: 0;
	margin: 0 auto;
}

.solution_body{
	padding:20px;
	border-radius:10px;
	background-color:#FFF;
	box-shadow: 0px 0px 10px 0px rgba(10,10,10,0.3);
}

.solution_body_ttl{
	display: flex;
	justify-content: center;
	align-items: center;
	color:#FFF;
	font-size:18px;
	font-weight:bold;
	line-height:1.4;
	text-align:center;
	height:40px;
	border-radius:20px;
	background-color:#4F81BD;
	margin-bottom:20px;
}
.solution_body_pic{
	text-align:center;
}
.solution_body_pic img{
	width:100%;
	max-width:400px;
}

.solution_body_txt{
	font-size:16px;
	line-height:1.5;
}

/* --------------------------------------------------------
	トップ Arcstar Smart PBXが選ばれる理由
--------------------------------------------------------- */
.reason_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 860px;
	margin:0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap:10px 0;
}
.reason_pic{
	width:120px;
	margin:0 auto;
}
.reason_pic img{
	width:100%;
	display:block;
}

.reason_body{
	width:calc(100% - 120px - 20px);
}
@media screen and (max-width: 768px) {
	.reason_wrap{
		width:100%;
	}
}
@media screen and (max-width: 480px) {
	.reason_body{
		width:100%;
	}
}

.reason_ttl{
	font-size:20px;
	font-weight:bold;
	line-height:1.3;
	margin:0 0 10px 0;
}
.reason_txt{
	font-size:16px;
	line-height:1.5;
}

/* --------------------------------------------------------
	トップ 主な機能
--------------------------------------------------------- */
.function_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	gap:20px;
}
.function_wrap > li{
	width:calc((100% - 60px) / 4);
	padding:20px;
	border-radius:10px;
	background-color:#FFF;
	box-shadow: 0px 0px 10px 0px rgba(10,10,10,0.3);
}

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

.function_head{
	font-size:18px;
	font-weight:bold;
	line-height:1.3;
	text-align:center;
	margin-bottom:10px;
}
.function_body{
	font-size:14px;
	line-height:1.5;
}
.function_pic{
	margin-top:15px;
}
.function_pic img{
	display: block;
	width:100%;
	max-width:400px;
	margin:0 auto;
}

/* --------------------------------------------------------
	トップ 導入事例
	下層 導入事例 case.html
--------------------------------------------------------- */
.case_outer_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	gap:30px;
}
.case_outer_wrap > li{
	width:calc((100% - 60px) / 3);
	border-radius:10px;
	box-shadow: 0px 0px 10px 0px rgba(10,10,10,0.3);
}

@media screen and (max-width: 768px) {
	.case_outer_wrap > li{
		width:100%;
	}
}
.case_outer_wrap > li a{
	display:block;
	width:100%;
	height:100%;
	transition:.3s;
}
.case_outer_wrap > li a:hover{
	display:block;
	width:100%;
	height:100%;
	transition:.3s;
	opacity:.7;
}

.case_inner_wrap{
	padding:20px;
}
.case_inner_pic{
	text-align:center;
}
.case_inner_pic img{
	width:100%;
	max-width:400px;
}

.case_inner_ttl{
	color:#004386;
	font-size:18px;
	font-weight:bold;
	line-height:1.5;
	margin:10px 0;
}

.case_inner_txt{
	font-size:16px;
	line-height:1.5;
	margin:10px 0;
}
.case_inner_type{
	display: flex;
	flex-wrap: wrap;
	gap:10px;
}
.case_inner_label{
	display: flex;
	width: fit-content;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	line-height: 1;
	padding: 0 12px;
	height: 24px;
	border-radius: 12px;
	background-color:#DCEAF7;
}

/* --------------------------------------------------------
	トップ 利用シーンボタン
--------------------------------------------------------- */
.scene_outer_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:30px 0;
}
.scene_outer_wrap > li{
	width:calc((100% - 30px) / 2);
	border-radius:10px;
	box-shadow: 0px 0px 10px 0px rgba(10,10,10,0.3);
}

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

.scene_outer_wrap > li:after{
	content:"";
	position:absolute;
	top:0;
	bottom:.1em;
	right:1em;
	margin:auto;
	width: 1em;
	height: 1em;
	border-top: .13em solid #004386;
	border-right: .13em solid #004386;
	transform: rotate(45deg);
}

.scene_outer_wrap > li a{
	display:block;
	width:100%;
	height:100%;
	transition:.3s;
}
.scene_outer_wrap > li a:hover{
	display:block;
	width:100%;
	height:100%;
	transition:.3s;
	opacity:.7;
}

.scene_inner_wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 5px 35px 5px 10px;
	gap:20px 0;
}
.scene_inner_pic{
	width:90px;
	text-align:center;
	margin:0 auto;
}
.scene_inner_pic img{
	width:100%;
	display:block;
}

.scene_inner_txt{
	width:calc(100% - 90px - 20px);
	display: flex;
	align-items: center;
	color:#004386;
	font-size:20px;
	font-weight:bold;
	line-height:1.3;
}
@media screen and (max-width: 480px) {
	.scene_inner_txt{
		font-size:18px;
	}
}



/* --------------------------------------------------------
	トップ 料金
--------------------------------------------------------- */
.charge_outer_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 960px;
	margin:0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:30px;
}
.charge_outer_wrap > li{
	width:calc((100% - 30px) / 2);
	border-radius:10px;
	box-shadow: 0px 0px 10px 0px rgba(10,10,10,0.3);
}

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


.charge_outer_head{
	color:#FFF;
	font-size:24px;
	font-weight:bold;
	line-height:1.3;
	text-align:center;
	padding:10px;
	border-radius:10px 10px 0 0;
	background-color:#4F81BD;
}
.charge_outer_body{
	padding: 0 15px 15px;
	text-align:center;
}

.charge_outer_situation{
	font-size:20px;
	font-weight:bold;
	line-height:1.3;
}
.charge_outer_situation_note{
	font-size:16px;
	line-height:1.5;
}
.charge_outer_pic{
	width:180px;
	text-align:center;
	margin:10px auto;
}
.charge_outer_pic img{
	width:100%;
	display:block;
}

.charge_inner_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	width: fit-content;
	margin: 0 auto;
}

.charge_inner_type{
	display: flex;
	width: fit-content;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	line-height: 1;
	padding: 0 14px;
	height: 28px;
	border-radius: 14px;
	background-color:#FFD601;
}

.charge_inner_price{
	line-height:1;
}

/*台*/
.unit{
	font-size:40px;
}
/*金額*/
.amount{
	font-size:40px;
	font-weight:bold;
}
@media screen and (max-width: 480px) {
	.amount{
		font-size:35px;
	}
}
/*円*/
.yen{
	font-size:20px;
	font-weight:bold;
}
/*税*/
.tax{
	font-size:14px;
}

/* --------------------------------------------------------
	トップ よくあるご質問
--------------------------------------------------------- */


/* --------------------------------------------------------
	トップ サポート情報
--------------------------------------------------------- */
.support_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	gap:20px;
}
.support_wrap > li{
	width:calc((100% - 40px) / 3);
	border:1px solid #A6A6A6;
	background-color:#DCEAF7;
}
@media screen and (max-width: 768px) {
	.support_wrap{
		gap:10px;
	}
	.support_wrap > li{
		width:100%;
	}
}

.support_wrap > li a:after{
	content:"";
	position:absolute;
	top:0;
	bottom:.1em;
	right:1em;
	margin:auto;
	width: .5em;
	height: .5em;
	border-top: .13em solid #333;
	border-right: .13em solid #333;
	transform: rotate(45deg);
}

.support_wrap > li a {
	display: block;
	width: 100%;
	height: 100%;
	transition: .3s;
	padding: 10px 25px 10px 10px;
	color:#333 !important;
	font-weight:bold;
	text-align: center;
}
.support_wrap > li a:hover{
	transition:.3s;
	opacity:.7;
}

/* --------------------------------------------------------
	トップ バナー2カラム
--------------------------------------------------------- */
.ren_bnr_col_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:30px;
}
.ren_bnr_col_wrap > li{
	width:calc((100% - 30px) / 2);
	text-align:center;
}
.ren_bnr_col_wrap > li{
	max-width:100%;
}

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

/* --------------------------------------------------------
	下層 利用シーン scene.html
	下層 らくらくセット rakuraku.html
--------------------------------------------------------- */
/*見出し*/
.scene_header_wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.scene_header_order{
	width:65px;
	border-left:10px solid #002060;

}
.scene_header_txt{
	width:calc(100% - 75px);
	color:#002060;
	font-size:32px;
	font-weight:bold;
	line-height:1.3;
}

@media screen and (max-width: 768px) {
	.scene_header_txt{
		font-size:22px;
	}
}

.scene_header_case{
	color:#002060;
	font-size:12px;
	font-weight:bold;
	line-height:1;
	text-align:center;
}
.scene_header_num{
	color:#002060;
	font-size:35px;
	font-weight:bold;
	line-height:1;
	text-align:center;
}

/*ビフォアアフター*/
.beforeafter_wrap{
	list-style: none;
	margin: 0 auto;
	padding: 0;
	/*width: 960px;*/
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:30px;
}
.beforeafter_item{
	width:calc((100% - 25px - 60px) / 2);
	border-radius:10px;
	background-color:#FFF;
	box-shadow: 0px 0px 10px 0px rgba(10,10,10,0.3);
}
.beforeafter_arrow{
	width:25px;
	align-content: center;
}

@media screen and (max-width: 768px) {
	.beforeafter_wrap,
	.beforeafter_item,
	.beforeafter_arrow{
		width:100%;
	}
}
.beforeafter_head_blue {
	color: #FFF;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	padding: 10px;
	background-color: #4F81BD;
	border-radius:10px 10px 0 0;
}
.beforeafter_head_gray {
	color: #FFF;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	padding: 10px;
	background-color: #7F7F7F;
	border-radius:10px 10px 0 0;
}
.beforeafter_pic{
	text-align:center;
	margin:0 20px;
}
.beforeafter_pic img{
	width:100%;
	max-width:500px;
}

/*三角*/
.beforeafter_arrow .triangle_right {
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-left: 25px solid #D9D9D9;
	border-right: 0;
	margin:0 auto;
}
@media screen and (max-width: 768px) {
	.beforeafter_arrow .triangle_right {
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 25px solid transparent;
		border-left: 25px solid transparent;
		border-top: 25px solid #D9D9D9;
		border-bottom: 0;
		margin:0 auto;
	}
}

.beforeafter_list.before{
	list-style:disc;
	margin: 0 0 20px 15px;
	padding-left: 20px;
}
.beforeafter_list.before li {
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 0.5em;
}
.beforeafter_list.after li:last-child{
	margin-bottom:0;
}

.beforeafter_list.after{
	list-style:none;
	margin: 0 0 20px 15px;
}
.beforeafter_list.after li {
	background: url(/content/dam/nttcom/hq/jp/business/services/voice-video/voip/smartpbx/img/ren/ren_beforeafter_check.png) no-repeat;
	background-position: center left;
	background-size: auto 22px;
	padding-left: 32px;
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 0.5em;
}
.beforeafter_list.after li:last-child{
	margin-bottom:0;
}
.beforeafter_list .strong{
	font-size:20px;
	font-weight:bold;
	background-color:#FFFF71;
}

/* --------------------------------------------------------
	下層 導入事例 case.html
--------------------------------------------------------- */
/*お客さまの声*/
.voice_wrap{
	list-style: none;
	margin: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	gap:30px;
}
.voice_wrap > li{
	width:calc((100% - 60px) / 3);
	border: 1px solid #ccc;
}

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

.voice_logo {
	width:100%;
	padding:10px 10px 0;
}
.voice_logo img {
	display: block;
	width:auto;
	height:120px;
	margin:0 auto;
}

.company{
	margin:10px;
}
.company h4 {
	color: #004385;
	font-size: 20px;
	margin: 0;
}
.company p {
	color:#333;
}
.voice{
}
.voice h5{
	font-size: 16px;
	font-weight:normal;
	padding:5px 10px;
	background-color:#DCEAF7;
	margin: 0;
}
.voice p {
	color:#333;
	padding: 10px;
}

/* --------------------------------------------------------
	下層 料金
	charge.html
--------------------------------------------------------- */
/*影付きタブ風ヘッダ*/
.example_header_wrap{
	align-items: center;
	filter: drop-shadow(-2.5px -5px 5px rgb(0 0 0 / .2));
}
.example_header{
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	align-items: center;
	position: relative;
	max-width:400px;
	padding:10px;
	background-color:#4F81BD;
	clip-path: polygon(0 0, 87% 0, 100% 100%, 0% 100%);
}

.example_header_order{
	width:40px;

}
.example_header_txt{
	width:fit-content;
	padding-left:20px;
	color:#FFF;
	font-size:24px;
	font-weight:bold;
	line-height:1.3;
}
@media screen and (max-width: 768px) {
	.example_header_txt{
		font-size:20px;
	}
}
.example_header_case{
	color:#FFF;
	font-size:12px;
	font-weight:bold;
	line-height:1;
	text-align:center;
}
.example_header_num{
	color:#FFF;
	font-size:24px;
	font-weight:bold;
	line-height:1;
	text-align:center;
}

/*外側囲み*/
.example_outer_wrap{
	padding:20px;
	box-shadow: 0px 0px 10px 0px rgba(10,10,10,0.3);
}

.example_outer_ttl{
	position: relative;
	font-size:22px;
	font-weight:bold;
	line-height:1.3;
	padding:0 0 10px 35px;
	border-bottom:3px solid #4F81BD;
	margin-bottom:20px;
}
.example_outer_ttl:before{
	content: "";
	display: inline-block;
	background: url(/content/dam/nttcom/hq/jp/business/services/voice-video/voip/smartpbx/img/ren/ren_example_check.png) 100% 100% / cover;
	height: 24px;
	width: 24px;
	position: absolute;
	top: 0;
	bottom: 10px;
	left: 0;
	margin: auto;
}
@media screen and (max-width: 768px) {
	.example_outer_ttl{
		position: relative;
		font-size:18px;
	}
}

/*内側囲み*/
.example_inner_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap:20px;
}
.example_inner_pic{
	width:350px;
	text-align:center;
}
.example_inner_pic img{
	width:100%;
	max-width:350px;
}

.example_inner_txt{
	width:calc(100% - 350px - 20px);
}

@media screen and (max-width: 768px) {
	.example_inner_pic,
	.example_inner_txt{
		width:100%;
	}
}


/*見出し*/
.example_inner_situation{
	font-size:22px;
	font-weight:bold;
	line-height:1.3;
}
.example_inner_situation_note{
	font-size:16px;
	line-height:1.5;
}

/*料金*/
.example_inner_price_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	width: 100%;
	margin: 0 auto;
}

.example_inner_price_type{
	display: flex;
	width: fit-content;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	line-height: 1;
	padding: 0 14px;
	height: 28px;
	border-radius: 14px;
	background-color:#FFD601;
}

.example_inner_price_price{
	width: fit-content;
	line-height:1;
}
@media screen and (max-width: 768px) {
	.example_inner_price_price{
		width: calc(100% - 100px);
	}
}


/*金額*/
.example_inner_price_wrap .amount{
	font-size:40px;
	font-weight:bold;
}
@media screen and (max-width: 480px) {
	.example_inner_price_wrap .amount{
		font-size:35px;
	}
}
/*円*/
.example_inner_price_wrap .yen{
	font-size:20px;
	font-weight:bold;
}
/*税*/
.example_inner_price_wrap .tax{
	font-size:14px;
}


/*料金詳細*/
.example_inner_detail_wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:1px;
	padding:2px;
	background:#BFBFBF;
}
.example_inner_detail_wrap > div{
	width:calc((100% - 2px) / 2);
	background:#FFF;
	padding-bottom:5px;
}

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

.example_inner_detail_ttl{
	color:#FFF;
	font-size:16px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	padding:5px;
	background-color:#4F81BD;
	margin-bottom:10px;
}
.example_inner_detail_label{
	display: flex;
	width: fit-content;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	line-height: 1;
	padding: 0 14px;
	height: 28px;
	border-radius: 14px;
	background-color: #DCEAF7;
	margin: 10px 0 5px 10px;
}

/*テーブル*/
table.example_inner_detail_table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 0;
	width:100%;
}
table.example_inner_detail_table th,
table.example_inner_detail_table td {
	border: none;
	padding: 1px 10px;
	/*vertical-align: middle;*/
	font-size:14px;
	line-height:1.5;
	background-color:transparent;
}
table.example_inner_detail_table td {
	text-align:right;
}

/*03と04の囲みカラム*/
.example_item_outer_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:50px;
}
.example_item_outer_wrap > li{
	width:calc((100% - 50px) / 2);
}

@media screen and (max-width: 768px) {
	.example_item_outer_wrap > li{
		width:100%;
	}
}
/*03と04の画像*/
.example_outer_pic{
	width:100%;
	max-width:350px;
	text-align:center;
	margin:0 auto;
}
.example_outer_pic img{
	width:100%;
	max-width:350px;
}

/*テーブル*/
.charge_table{
	font-size:16px;
	line-height:1.5;
}
.charge_table th{
	text-align:center;
	background-color:#eaf5fc;
}
.charge_table th,
.charge_table td{
	vertical-align: middle !important;
	border:1px solid #CCC;
}


.charge_table a{
	text-decoration:underline;
}
.charge_table a:hover{
	text-decoration:none;
}

.charge_table .no-border {
	background-color: transparent;
	border: none;
}

/* --------------------------------------------------------
	下層 らくらくセット
	rakuraku.html
--------------------------------------------------------- */

/*特長 外側囲み*/
.rakuraku_feature_outer_wrap{
	padding:20px;
	box-shadow: 0px 0px 10px 0px rgba(10,10,10,0.3);
}
.rakuraku_feature_outer_ttl{
	color:#FFF;
	font-size:22px;
	font-weight:bold;
	line-height:1.2;
	text-align:center;
	padding:10px;
	background-color:#4F81BD;
	margin:0 0 20px 0;
}
.rakuraku_feature_outer_ttl .strong{
	font-size:30px;
}
@media screen and (max-width: 768px) {
	.rakuraku_feature_outer_ttl{
		font-size:16px;
	}
	.rakuraku_feature_outer_ttl .strong{
		font-size:20px;
	}
}


/*特長 内側囲み*/
.rakuraku_feature_inner_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: fit-content;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap:30px 50px;
	margin: 0 auto;
}
.rakuraku_feature_inner_pic{
	width:400px;
	text-align:center;
}
.rakuraku_feature_inner_pic img{
	width:100%;
	max-width:400px;
}
.rakuraku_feature_inner_txt{
	width:fit-content;
}

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

.rakuraku_feature_inner_check{
	position: relative;
	font-size:26px;
	font-weight:bold;
	line-height:1.3;
	padding-left:35px;
	margin-bottom:20px;
}
.rakuraku_feature_inner_check:last-child{
	margin-bottom:0;
}
.rakuraku_feature_inner_check:before{
	content: "";
	display: inline-block;
	background: url(/content/dam/nttcom/hq/jp/business/services/voice-video/voip/smartpbx/img/ren/ren_rakuraku_feature_check.png) 100% 100% / cover;
	height: 24px;
	width: 24px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
@media screen and (max-width: 768px) {
	.rakuraku_feature_inner_check{
		font-size:18px;
	}
}

/*利用シーン アンカーボタン*/
.rakuraku_scene_outer_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	gap:30px;
}
.rakuraku_scene_outer_wrap > li{
	width:calc((100% - 60px) / 3);
	border-radius:10px;
	box-shadow: 0px 0px 10px 0px rgba(10,10,10,0.3);
}

@media screen and (max-width: 768px) {
	.rakuraku_scene_outer_wrap > li{
		width:100%;
	}
}
.rakuraku_scene_outer_wrap > li a{
	display:block;
	width:100%;
	height:100%;
	transition:.3s;
}
.rakuraku_scene_outer_wrap > li a:hover{
	display:block;
	width:100%;
	height:100%;
	transition:.3s;
	opacity:.7;
}

.rakuraku_scene_inner_wrap{
	padding:20px;
}
.rakuraku_scene_inner_ttl{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
	height: 40px;
	border-radius: 20px;
	background-color: #4F81BD;
}

.rakuraku_scene_inner_list{
	margin: 10px 0 10px 1.3em;
	padding: 0px;
	list-style-type: disc;
	font-size:17px;
	line-height1.4;
}
.rakuraku_scene_inner_pic{
	text-align:center;
}
.rakuraku_scene_inner_pic img{
	width:80px;
}
.rakuraku_scene_inner_arrow {
	width: 1em;
	height: 1em;
	border-top: .2em solid #004386;
	border-right: .2em solid #004386;
	transform: rotate(135deg);
	margin:0 auto;
}

/*開始までの流れ*/
.rakuraku_flow_outer_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	gap:30px;
}
.rakuraku_flow_outer_wrap > li{
	width:calc((100% - 60px) / 3);
	border-radius:10px;
	box-shadow: 0px 0px 10px 0px rgba(10,10,10,0.3);
}

@media screen and (max-width: 768px) {
	.rakuraku_flow_outer_wrap > li{
		width:100%;
	}
}
.rakuraku_flow_outer_wrap > li a{
	display:block;
	width:100%;
	height:100%;
	transition:.3s;
}
.rakuraku_flow_outer_wrap > li a:hover{
	display:block;
	width:100%;
	height:100%;
	transition:.3s;
	opacity:.7;
}

.rakuraku_flow_inner_wrap{
	padding:20px;
}
.rakuraku_flow_inner_ttl{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:0 10px;
	margin-bottom:10px;
}


.rakuraku_flow_inner_step{
	width:fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	height: 28px;
	border-radius: 14px;
	background-color: #4F81BD;
	padding:0 20px;
}
.rakuraku_flow_inner_steptxt{
	width:fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.3;
}

.rakuraku_flow_inner_arrow {
	width: 1em;
	height: 1em;
	border-top: .2em solid #004386;
	border-right: .2em solid #004386;
	transform: rotate(135deg);
	margin:0 auto;
}

/*開始までの流れ 詳細 外側囲み*/
.rakuraku_flowdetail_outer_wrap{
	padding:20px 20px 30px;
	box-shadow: 0px 0px 10px 0px rgba(10,10,10,0.3);
}

.rakuraku_flowdetail_outer_ttl{
	display: flex;
	justify-content: start;
	align-items: center;
	gap:0 10px;
	padding: 0 0 10px 0;
	border-bottom: 3px solid #4F81BD;
	margin-bottom: 20px;
}

.rakuraku_flowdetail_outer_step{
	width:fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	height: 28px;
	border-radius: 14px;
	background-color: #4F81BD;
	padding:0 20px;
}
.rakuraku_flowdetail_outer_steptxt{
	width:fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.3;
}

/*開始までの流れ 詳細 内側1カラム囲み*/
.rakuraku_flowdetail_contents{
	width:860px;
	margin:0 auto;
}
@media screen and (max-width: 768px) {
	.rakuraku_flowdetail_contents{
		width:100%;
	}
}


/*開始までの流れ 詳細 内側2カラム囲み*/
.rakuraku_flowdetail_inner_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 900px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:30px;
	margin:0 auto;
}
.rakuraku_flowdetail_inner_left{
	width:490px;
}
.rakuraku_flowdetail_inner_right{
	width:380px;
}
@media screen and (max-width: 768px) {
	.rakuraku_flowdetail_inner_wrap,
	.rakuraku_flowdetail_inner_left,
	.rakuraku_flowdetail_inner_right{
		width:100%;
	}
}

/*STEP01 ボタン幅*/
.rakuraku_btn{
	max-width: 320px;
}
@media screen and (max-width: 768px) {
	.rakuraku_btn{
		margin:0 auto;
	}
}

/*STEP01 STEP02 テーブル*/
.rakuraku_flowdetail_table{
	font-size:16px;
	line-height:1.5;
	width:320px;
}
@media screen and (max-width: 768px) {
	.rakuraku_flowdetail_table{
		width:100%;
	}
}

.rakuraku_flowdetail_table th{
	text-align:center;
	background-color:#eaf5fc;
}
.rakuraku_flowdetail_table th,
.rakuraku_flowdetail_table td{
	vertical-align: middle !important;
	border:1px solid #CCC;
	padding:10px;
}

.rakuraku_flowdetail_table img {
	vertical-align: middle;
	width: 30px;
	margin-right: 10px;
}

/*STEP03 青背景ラベル*/
.rakuraku_flowdetail_inner_label{
	width:fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	height: 32px;
	border-radius: 16px;
	background-color: #4F81BD;
	padding:0 20px;
}

/*STEP03画像*/
.rakuraku_flowdetail_inner_left img{
	width:100%;
	max-width:300px;
	display:block;
	margin:0 auto;
}

/*▼三角*/
.rakuraku_flowdetail_arrow .triangle {
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 30px solid transparent;
	border-left: 30px solid transparent;
	border-top: 30px solid #E6E6E6;
	border-bottom: 0;
	margin:30px auto;
}

/*資料ダウンロードはこちら 
	imagemouseover.css 調整*/
.sec-download {
	background-color: #dfe8fa;
	padding-bottom: 30px !important;
}
.sec-download .doc_attention {
	max-width: 700px !important;
	padding: 15px !important;
}

/*資料ダウンロードはこちら 赤ボタン*/
.rakuraku_download_btn_wrap{
	margin:30px 10px;
}
/*料金シミュレーション・Web設定変更サイト/便利な設定*/
.tool_btn_wrap{
	max-width:420px;
	margin:0 auto;
}


/* --------------------------------------------------------
	下層 ご利用拠点と端末の注意事項
	location.html
--------------------------------------------------------- */
/*想定環境 2カラム画像*/
.location_pic_wrap{
	list-style: none;
	margin: 0;
	padding: 0;
	width: fit-content;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin:0 auto;
	gap:20px 0;
}
.location_pic_01{
	width:300px;
}
.location_pic_02{
	width:665px;
}
.location_pic_01 img,
.location_pic_02 img{
	display:block;
	width:100%;
}

@media screen and (max-width: 768px) {
	.location_pic_wrap{
		width:100%;
	}
	.location_pic_01{
		width:45%;
		margin:0 auto;
	}
	.location_pic_02{
		width:100%;
		margin:0 auto;
	}
}
/*テーブル*/
.location_table{
	font-size:16px;
	line-height:1.5;
}
.location_table th{
	text-align:center;
	background-color:#eaf5fc;
}
.location_table th,
.location_table td{
	vertical-align: middle !important;
	border:1px solid #CCC;
}

/* --------------------------------------------------------
	下層 マニュアル
	manual.html
--------------------------------------------------------- */
/*オンラインマニュアル*/
.manual_wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:0 50px;
}
.manual_wrap > div{
	width:calc((100% - 50px) / 2);
}

@media screen and (max-width: 768px) {
	.manual_wrap > div{
		width:100%;
	}
}
.manual_wrap a,
.manual_wrap a:visited{
	color:#333 !important;
	text-decoration:underline !important;
}
.manual_wrap a:active,
.manual_wrap a:hover{
	color:#C03 !important;
	text-decoration:none!important;
}

.manual_wrap h4{
	font-size:16px;
	font-weight:bold;
	line-height:1.5;
	margin:0;
}
.manual_wrap h4:before{
	content:"■"
}
.manual_wrap h4 + h4{
	margin:1em 0 0 0;
}

.manual_wrap ul + h4{
	margin:2em 0 0 0;
}

.manual_wrap ul{
	list-style-type: "- ";
	margin: 1em 0 1em 1.5em;
	padding: 0;
	font-size:16px;
	line-height:1.5;
}
.manual_wrap ul li{
	margin:0.3em 0;
}

/*PDFダウンロード テーブル*/
.pdfdownload_table{
	font-size:16px;
	line-height:1.5;
}
.pdfdownload_table a,
.pdfdownload_table a:visited{
	color:#333 !important;
	text-decoration:underline !important;
}
.pdfdownload_table a:active,
.pdfdownload_table a:hover{
	color:#C03 !important;
	text-decoration:none!important;
}

.pdfdownload_table th{
	background-color:#eaf5fc;
}
.pdfdownload_table th,
.pdfdownload_table td{
	text-align:center;
	vertical-align: middle !important;
	border:1px solid #CCC;
	padding:10px;
}
/* 1列目 */
.pdfdownload_table tr td:nth-of-type(1) {
	text-align: left;
}

/* --------------------------------------------------------
	下層 重要事項
	other.html
--------------------------------------------------------- */
/*目次*/
.other_index_wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:0 50px;
}
.other_index_wrap > div{
	width:calc((100% - 50px) / 2);
}
@media screen and (max-width: 768px) {
	.other_index_wrap > div{
		width:100%;
	}
}
.other_index_wrap a,
.other_index_wrap a:visited{
	color:#333 !important;
	text-decoration:underline !important;
}
.other_index_wrap a:active,
.other_index_wrap a:hover{
	color:#C03 !important;
	text-decoration:none!important;
}

/*テーブル*/
.other_table{
	font-size:16px;
	line-height:1.5;
}
.other_table a,
.other_table a:visited{
	color:#333 !important;
	text-decoration:underline !important;
}
.other_table a:active,
.other_table a:hover{
	color:#C03 !important;
	text-decoration:none!important;
}

.other_table th{
	background-color:#eaf5fc;
}
.other_table th,
.other_table td{
	vertical-align: middle !important;
	border:1px solid #CCC;
}

/* --------------------------------------------------------
	下層 機能一覧
	function.html
--------------------------------------------------------- */
/*テーブル*/
.function_table{
	font-size:16px;
	line-height:1.5;
}
.function_table th{
	text-align:center;
	background-color:#eaf5fc;
}
.function_table th,
.function_table td{
	vertical-align: middle !important;
	border:1px solid #CCC;
	padding: 10px;
}

/*最後の2列*/
table.function_table td:nth-last-child(-n+2){
	text-align:center;
}

.function_table a{
	text-decoration:underline;
}
.function_table a:hover{
	text-decoration:none;
}
/*「※」がついていても文字本体はセル中央に配置したい*/
.add_kome{
	position: relative;
	min-width: 3em; /*※マーク分の幅をキープ*/
}
.add_kome:after{
	position: absolute;
	content: "※";
	font-size:small;
	top:0;
	right:0.5em;
}

/* --------------------------------------------------------
	下層 ニュース一覧
	news.html
--------------------------------------------------------- */
/*タイトル 3カラム*/
.news_acc_head_wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	gap:10px;
}
.news_acc_head_date{
	width:8em;
}
.news_acc_head_category{
	display: flex;
	width:8em;
	justify-content: center;
	align-items: center;
	font-size:12px;
	line-height:1;
	padding:0 5px;
	height:22px;
	border-radius:11px;
	border:1px solid #dcdcdc;
	background-color:#FFF;
}
.news_acc_head_detail{
	width:calc(100% - 8em - 10px - 8em - 10px);
	font-size:16px;
	line-height:1.5;
}

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

/*記事*/
.news_article{
	line-height:1.5;
	margin-bottom: 60px;
}
.news_article p{
	line-height:1.5;
	margin: 0 0 0.5em;
}
.news_article ol,
.news_article ul{
	list-style-type: disc;
	padding-left:1.3em;
}

.news_article a,
.news_article a:visited{
	text-decoration:underline;
}
.news_article a:hover,
.news_article a:active{
	color:#C03;
	text-decoration:none;
}

/*まとめアコーディオン*/
/*ベース*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #333;
	font-size:22px;
	font-weight:bold;
	line-height:1.3;
	text-align:center;
	padding:15px 20px;
	border:3px solid #004386;
	width:300px;
	margin:0 auto;
}
.Label::before{		/*タイトル横の矢印*/
	content: "";
	width: 12px;
	height: 12px;
	border-top: 0.15em solid #004386;
	border-right: 0.15em solid #004386;
	-webkit-transform: rotate(45deg);
	position: absolute;
	transform: rotate(135deg);
	top: -2px;
	right: 20px;
	bottom:0;
	margin:auto;
}
.Label,
.summarize_content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.summarize_content {		/*本文*/
	width:100%;
	height: 0;
	margin-bottom:0;
	padding:0;
	overflow: hidden;
}
.toggle:checked + .Label + .summarize_content {	/*開いている時*/
	height: auto;
	padding: 20px 0 0;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

/*まとめアコーディオン内 年タイトル*/
.summarize_content > section:first-child{
	padding-top:30px;
}
.summarize_content > section{
	padding-top:100px;
}

/* --------------------------------------------------------
	下層
	news-20250613.html
--------------------------------------------------------- */
/*青線タイトル*/
.news_ttl {
	font-weight: bold;
	font-size: 24px;
	border-bottom: 3px solid #004386;
	margin-bottom: 15px;
	padding-bottom: 10px;
	line-height: 1.5;
}

/*テーブル*/
.change_price_tbl{
	margin:10px 0 0;
	min-width:720px;
	font-size:14px;
}
.change_price_tbl th{
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	vertical-align:middle;
	background-color: #eaf5fc;
}
.change_price_tbl td{
	line-height:1.5;
	text-align: left;
	vertical-align:middle;
}
.change_price_tbl td:nth-last-child(-n+2){
	text-align: center;
}

/* --------------------------------------------------------
	MV チェックボックス
--------------------------------------------------------- */
.head-checkbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	/*margin-top: 1.0em;*/
	margin-top: 2.0em;
}

.head-checkbox>li {
	color: #cc0033;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: bold;
	margin-right: 2.25em;
	margin-bottom: 0.5em;
}

.head-checkbox>li:last-of-type {
  margin-right: 0;
}

.head-checkbox>li::before {
	background-image: url("/content/dam/nttcom/hq/jp/business/cmn/dcc-temp/img/ico_head_checkbox.png");
	background-repeat: no-repeat;
	content: "";
	display: inline-block;
	height: 16px;
	width: 18px;
	margin-right: 0.25em;
}