@charset "utf-8";
/* CSS Document */

/*リセット*/
#contents {
	box-sizing: border-box;
}
#contents p {
	padding-bottom: 0 !important;
}

.p-column2 {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.p-column2__col {
	width: calc((100% - 20px) / 2);
}
body.sp .p-column2__col {
	width: 100%;
}
@media screen and(max-width: 600px) {
	.p-column2__col {
		width: 100% !important;
	}
}

/*グレーのボックス*/
.p-box {
	padding: 15px 20px;
	width: auto;
	background: url(/inc/images/common/bg/bg_relevant.gif);
	border: 1px solid #dfdfdf;
	border-radius: 5px;
}
.p-featureBox__inner {
	display: flex;
	gap: 0 10px;
}

/*白のボックス*/
.p-whiteBox {
	padding: 15px 20px;
	width: auto;
	background: #ffffff;
	border-radius: 5px;
}

/*いますぐ無料でダウンロード*/
.p-appDl {
	display: flex;
}
body.sp .p-appDl {
	flex-direction: column;
}

.p-appDlBox__head {
	font-size: 115%;
	font-weight: bold;
	text-align: center;
	margin-bottom: 5px;
}
body.sp .p-appDlBox__head {
	text-align: left;
}
.p-appDlBox__desc {
	text-align: center;
}
body.sp .p-appDlBox__desc {
	text-align: left;
}

.p-appDl__item {
	width: calc((100% - 40px) / 2 );
	flex-grow: 1;
	padding: 10px 0;
	text-align: center;
}
body.sp .p-appDl__item {
	width: 100%;
}

.p-appDl__item:first-child {
	border-right: 1px solid #cccccc;
}
body.sp .p-appDl__item:first-child {
	border: none;
}

.p-appDl__text {
	margin-bottom: 10px;
	font-weight: bold;
	text-align: center;
}

.p-appDl__link {
	display: flex;
	gap: 30px;
	justify-content: center;
	align-items: center;
}

body.sp .p-appDl__qr {
	display: none;
}

/* リスト(数字) */
ol.list_brackets {
	list-style-type: none;
	counter-reset: count;
	margin: 0 0 10px 0;
}
ol.list_brackets li {
	position: relative;
	padding-left: 1.75em;
}
ol.list_brackets li::before {
	counter-increment: count;
	content:"("counter(count)")";
	position: absolute;
	left: .1em;
	color: #ecac3a;
}

/* タブパーツ調整 */
#contents .tabArea ul.tab {
	padding: 0 15px;
	display: flex;
	gap: 0 10px;
}
#contents .tabArea ul.tab li {
	float: none;
	margin: 0;
	width: 50%;
}

#contents .tabArea ul.tab.verL li a,
#contents .tabArea ul.tab.verL li a:hover,
#contents .tabArea ul.tab.verL li a.active {
	background: none;
}

#contents .tabArea ul.tab.verL li a {
	width: initial;
	height: auto;
	line-height: initial;
	padding: 18px 7px;
	background: linear-gradient(
		to bottom,
		#F3FBFF  0%,
		#E8F6FC 50%,
		#D7EEF9 100%
	);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
	border-top: 1px solid #C7C7C7;
	border-left: 1px solid #C7C7C7;
	border-right: 1px solid #C7C7C7;
	transition:
		background 0.4s ease-in-out,
		color 0.3s ease,
		box-shadow 0.3s ease;
}

body.sp #contents .tabArea ul.tab.verL li a {
	font-size: 12px;
	padding: 13px 7px;
}

#contents .tabArea ul.tab.verL li a:hover {
	background: linear-gradient(
		to bottom,
		#F0F0F0  0%,
		#FFFFFF 100%
	);
}

#contents .tabArea ul.tab.verL li a.active {
	background: linear-gradient(
		to bottom,
		#F0F0F0  0%,
		#FFFFFF 100%
	);
	border-top: 1px solid #C7C7C7;
	border-left: 1px solid #C7C7C7;
	border-right: 1px solid #C7C7C7;
	color: #5A5954;
}

#contents .tabArea ul.tab.verL li a.active:hover {
	background-color: #ffffff;
}

/* タブの三角形アイコン */
#contents .tabArea ul.tab.verL li a {
	position: relative;
}

/* アクティブタブ：下向きの三角形（▼） */
#contents .tabArea ul.tab.verL li a.active::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 4.6px solid transparent;
	border-right: 4.6px solid transparent;
	border-top: 7px solid #005B94;
}
body.sp #contents .tabArea ul.tab.verL li a.active::before {
	left: 12px;
}

/* 非アクティブタブ：右向きの三角形（▶） */
#contents .tabArea ul.tab.verL li a:not(.active)::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 4.6px solid transparent;
	border-bottom: 4.6px solid transparent;
	border-left: 7px solid #005B94;
}
body.sp #contents .tabArea ul.tab.verL li a:not(.active)::before {
	left: 12px;
}

/* 汎用 */
strong {
	color: #E05116;
}
.mt20 {
	margin-top: 20px !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb30 {
	margin-bottom: 30px;
}




