@charset "UTF-8";

/* =========================================================
 * 2025 Renewal
 * ====================================================== */

/* --------------------------------------------------------
	汎用
--------------------------------------------------------- */

sup,sub,span{
	color:inherit;
}

/*PC・SP*/
.only_pc{
	display:block;
}
.only_sp{
	display:none;
}
@media screen and (max-width: 480px) {
	.only_pc{
		display:none;
	}
	.only_sp{
		display:block;
	}
}

/*下線リンク*/
a.link_underline{
	text-decoration:underline;
}
a.link_underline:hover{
	text-decoration:none;
}

/*リンクコンポーネント*/
.link_component a:after {
	content: url(/content/dam/nttcom/cmn/img/icon_right_arrow.png);
	margin-left: 10px;
}

/*画像*/
.pic_wrap{
	width:100%;
	text-align:center;
}
.pic_wrap img{
	max-width:100%;
}

/*注+番号：リスト*/
.txt_list li{
	list-style-type: none;
	padding-left: 2.4em;
	text-indent: -2.4em;
	font-size:12px;
	margin-bottom:0.3em;
}

/*h4*/
.h4__title {
	font-size: 16px;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 10px;
	border-bottom: 1px solid #DDD;
	padding-bottom: 10px;
}
.h4__title h4 {
	font-size: 16px;
	font-size: 1rem;
	font-weight: bold;
}

/* --------------------------------------------------------
	PC版のみ各sectionの間の余白を縮めたい
--------------------------------------------------------- */
@media screen and (min-width: 769px) {
	.main-article__contents--inner > section {
		/*padding-top: 110px;*/
		padding-top: 60px;
		padding-bottom: 20px;
	}
}

/* --------------------------------------------------------
	トップ
--------------------------------------------------------- */

/*MV サービスポータル ボタン*/
@media screen and (min-width: 769px) {
	.img-mv__contents--button p:first-of-type {
		width: fit-content !important;
	}
}
@media screen and (max-width: 768px) {
	.img-mv__contents--button p:first-of-type {
		width: fit-content !important;
	}
}

.img-mv__contents--button a.btn-portal {
	background-color: #013364;
	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: 16px;
	font-size: 1rem;
	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%;
}
.img-mv__contents--button a.btn-portal::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;
}
.img-mv__contents--button a.btn-portal:hover {
	opacity: 0.8;
}

/* --------------------------------------------------------
	フリースペース
--------------------------------------------------------- */
.free-space_outer {
	width: 100%;
	line-height: 1.5;
}
.free-space_inner {
	width: 100%;
	max-width: 1260px;
	padding: 20px 50px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.free-space_inner {
		padding: 20px;
	}
}

/*トピックス*/
.topics_box{
	margin:0;
}
.topics_box_ttl{
	font-size:18px;
	font-weight:bold;
	line-height:1.5;
	margin:0;
}
.topics_box dl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size:14px;
	line-height:1.5;
}
.topics_box dt{
	width:7em;
}
.topics_box dd{
	width:calc(100% - 7em - 10px);
}
@media screen and (max-width: 480px) {
	.topics_box dt,
	.topics_box dd{
		width:100%;
	}
}

/* --------------------------------------------------------
	テーブル
--------------------------------------------------------- */

.gin_table{
	font-size:16px;
	line-height:1.5;
	width:100%;
}
.gin_table th{
	font-weight:bold;
	text-align:center;
	vertical-align: middle !important;
}
.gin_table td{
	vertical-align: middle !important;
}

.gin_table a{
	text-decoration:underline;
}
.gin_table a:hover{
	text-decoration:none;
}
.min-w-600{
	width:100%;
	min-width: 600px;
}

/*2カラム*/
.gin_table_col_wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.gin_table_col_item{
	width:calc((100% - 50px) / 2);
}

@media screen and (max-width: 768px) {
.gin_table_col_item{
	width:100%;
	}
}