.c-list--boldMidDot {
	margin-left: 15px;
}

.c-list--nospace {
    margin-top: 0;
   	padding-top: 0;
}
.c-list--nospace li:last-child {
    margin-bottom: 0;
}

/*  `li`  間隔を空ける */
.c-list--spaced {
}
.c-list--spaced li {
   	line-height: 1.6em;
   	padding: 0.5em 0;
}
.c-list--spaced li a {
    vertical-align: middle;
}
.c-list--spaced li:last-child {
    margin-bottom: 0;
}


.c-list--none {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.c-list--decimal-dot {
    list-style-type: decimal;
    padding-left: 1.5em;
    margin: 0;
}

/* 
 *“1. 2. 3.…”
 */
.c-list--decimal {
	list-style-type: decimal;
	margin-left: 1.4em;
	padding-left: 0;
}

/* 
 * “1), 2), 3)…”
 */
.c-list--bracket {
	list-style-type: none;
    margin: 0;
	padding-left: 0;
	counter-reset: bracketCounter;
}
.c-list--bracket > li {
	counter-increment: bracketCounter;
	position: relative;
	padding-left: 2.2em;
}
.c-list--bracket > li::before {
	/* 例えば “1), 2)” の形で表示 */
	content: counter(bracketCounter) " ) ";
	position: absolute;
	left: 0;
	color: inherit;
}
@media (max-width: 1200px) {
	.c-list--bracket {
		margin-left: 0;
	}
	.c-list--bracket > li {
		padding-left: 1.6em;
	}

}

/*    リンクアイコン＋テキスト中央揃え   */
.c-list--fileLinks {
	list-style: none;
	margin: 10px 0;
	padding: 0;
}
.c-list--fileLinks li {
	display: flex;
	align-items: center;
	gap: .4em;
}
.c-list--fileLinks li a {
	display: inline-flex;
	align-items: center;
}




/*   2列標準リスト  */
.c-list--2col {
	display: table;
	width: 100%;
}
.c-list__row {
	display: table-row;
}
.c-list__title,
.c-list__data {
	display: table-cell;
	padding: 8px 4px;
	vertical-align: top;
}
.c-list__title {
	text-align:right;
}




/*  2列 薄灰色背景 */
.c-list--gray-box-2col {
	color: rgb(71,69,69);
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 3.5em;
}
.c-list--gray-box-2col li {
	flex: 0 0 calc((100% - 2.5em) / 2);
	box-sizing: border-box;
	background-color: #f2f2f2;
	border-radius: 8px;
	box-shadow:
		0 4px 8px rgba(0,0,0,0.05),
		8px 0 12px rgba(0,0,0,0.1);
	padding: 0 2em 0 1em;
	font-size: 26px;
}
/* PDFアイコン付きリスト */
.c-list--gray-box-2col li.c-icon--pdf-right {
	list-style: none;
}
.c-list--gray-box-2col li.c-icon--pdf-right a {
	display: block;
	width: 100%;
	position: relative;
	padding: 1em;
	padding-right: 0;
	text-decoration: none;
	color: inherit;
}
.c-list--gray-box-2col li.c-icon--pdf-right a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0.5em;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	background-image: url('/hp/common_image/icon/icon-pdf.svg');
	background-size: contain;
	background-repeat: no-repeat;
}
.c-list--gray-box-2col li.c-icon--pdf-right a:hover {
    color: rgb(0, 101, 180);
}
.c-list--gray-box-2col li.c-icon--pdf-right a:hover::after {
    color: rgb(0, 101, 180);
}

/* 矢印アイコン付きリスト */
.c-list--gray-box-2col li.c-icon--arrow-right {
	list-style: none;
}

.c-list--gray-box-2col li.c-icon--arrow-right a {
	display: block;
	width: 100%;
	position: relative;
	padding: 1em;
	padding-right: 0.5em;
	text-decoration: none;
	color: inherit;
}
.c-list--gray-box-2col li.c-icon--arrow-right a::after {
	content: "→";
	display: block;
	position: absolute;
	top: 50%;
	right: 0.5em;
	transform: translateY(-50%);
	font-size: 1.2em;
	color: rgb(71,69,69);
}
.c-list--gray-box-2col li.c-icon--arrow-right a:hover {
    color: rgb(0, 101, 180);
}
.c-list--gray-box-2col li.c-icon--arrow-right a:hover::after {
    color: rgb(0, 101, 180);
}

@media screen and (max-width: 1200px) {
	.c-list--gray-box-2col li {
		flex: 0 0 100%; /* 1列表示に */
		font-size: 24px;
	}

	.c-list--gray-box-2col li.c-icon--pdf-right a::after {
		width: 30px;
		height: 30px;
	}
	.c-list--gray-box-2col li.c-icon--arrow-right a::after {
		font-size: 1em;
	}
}




.c-list--h3 {
  margin: 0;
  padding: 0;
}
.c-list--h3 li {
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 20px;
	width: 100%;
	list-style: none;
}

.c-list--h3 li a {
	display: block;
	width: 100%;
	box-sizing: border-box; 
	padding: 11px 23px 11px 23px; /* h3 の padding と同じ値 */
	background-color: #0065B4;
	color: #fff;
	text-decoration: none;
	position: relative;
}

.c-list--h3 li a::before {
  content: "■ ";
}

.c-list--h3 li a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

@media screen and (max-width: 1200px) {
  .c-list--h3 li a::after {
    font-size: 1rem;
  }
}
.c-list--h3 a:hover {
	background-color: rgb(221,238,242);
    color: rgb(0, 101, 180);
}
.c-list-- li a:hover::after {
    color: rgb(0, 101, 180);
}




/*  3列タイル表示メニュー  */
.c-list--menu {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	list-style: none;
	padding: 0;
	justify-content: flex-start;
}

.c-list--menu__item {
    flex: 0 0 calc(33.333% - 30px);
	border: 1px solid rgb(71,69,69);
	text-align: center;
	padding: 16px;
	box-sizing: border-box;
	min-width: 175px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 76px;
}

.c-list--menu__item a {
	line-height: 1.4em;
	text-decoration: none;
	display: block;
	width: 100%;
}

.c-list--menu__item a:hover {
	color: rgb(0, 101, 180);
}

@media screen and (max-width: 1200px) {
	.c-list--menu__item {
		height: 100px;
	}
}

@media screen and (max-width: 768px) {
	.c-list--menu {
		margin: 0 auto;
		gap: 10px;
		justify-content: center;
		max-width: 100%;
	}
	.c-list--menu__item {
		min-width: 140px;
		flex: 0 0 calc(50% - 10px);
		box-sizing: border-box;
	}
}


/*-------------------------------------------
  ページ内リンクメニュー（1行リスト型）
  ul : c-list--link
-------------------------------------------*/
.c-list--link {
	list-style: none;
	margin: 0;
	padding: 0;
}

.c-list--link__item {
	border-bottom: 1px solid #ccc;
	padding: 0.8em 0;
}

.c-list--link__item a {
	display: block;
	color: #0070c0;
	text-decoration: none;
	font-weight: bold;
	position: relative;
	padding-right: 30px;
}

.c-list--link__item a::after {
	content: "↓";
	font-weight: bold;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #0070c0;
}
/*-------------------------------------------
  ページ内リンクメニュー（2行リスト型）
  ul : c-list--link c-list--link-2col
-------------------------------------------*/
.c-list--link.c-list--link-2col{
	display:grid;
	grid-template-columns:repeat(2, minmax(0, 1fr));
	column-gap:40px;
	row-gap:0;
}
.c-list--link.c-list--link-2col > .c-list--link__item{
	margin:0;
}

/* モバイル：1列に */
@media screen and (max-width: 1200px){
	.c-list--link.c-list--link-2col{
		grid-template-columns:1fr;
	}
}

/*-------------------------------------------
  アプリダウンロード横並びカード
  ul : c-list--appCards
-------------------------------------------*/
.c-list--appCards {
	display: flex;
	flex-direction: column;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.c-list--appCards li {
	display: flex;
	align-items: center;
	gap: 20px;
}

.c-list--appCards li img[width="114"] {
	width: 114px;
	height: auto;
	flex-shrink: 0;
}

.c-list--appCards__content {
	display: flex;
	flex-direction: column;
	gap: .6rem;
}

.c-list--appCards__content a img {
	width: 135px;
	height: 40px;
}

.c-list--appCards__content .u-text-bold {
	font-weight: bold;
	margin-top: .2rem;
}

/* スマホ画面では縦並びに切り替え */
@media screen and (max-width: 600px) {
	.c-list--appCards li {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

/*-------------------------------------------
  二重リスト
-------------------------------------------*/
.c-list--pdf-list {
	padding-left: 1.5em;
}
.c-list--pdf-list p {
	margin: 0;
	padding: 0;
}
.c-list--pdf-list ul{
	margin: 0;
	list-style: none;
}
.c-list--pdf-list > li {
	margin-bottom: 1em;
}
.c-list--pdf-list__dates {
	margin: 0 0 0 1.5em;
	padding: 0;
	list-style: disc;
}
.c-list--pdf-list__dates li {
	margin: 0 0 0 0.25em;
}

/*************************************/
/*           toggle list             */
/*************************************/
.c-toggleList {
	margin-top: 20px;
}

.c-toggleList__header {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	padding: 10px 23px 12px calc(23px + 1.4rem);
	text-indent: -1.4rem;
	color: #fff;
	background-color: #0065B4;
	cursor: pointer;
}

.c-toggleList__icon {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	width: 26px;
	height: 16px;
	margin-left: 10px;
}

.c-toggleList__toggle {
	display: grid;
	grid-template-columns: 16px;
	grid-template-rows: 16px;
	grid-column: 1/2;
	grid-row: 1/2;
	align-items: center;
	position: relative;
	padding: 0px;
	border: none;
	background-color: transparent;
	outline: none;
	cursor: pointer;
}

.c-toggleList__toggle:before {
	display: block;
	grid-column: 1/2;
	grid-row: 1/2;
	align-self: flex-end;
	justify-self: center;
	width: 20px;
	height: 20px;
	background: url("/hp/common_image/header/menuMs/menu-toggle.svg") no-repeat center/contain;
	content: "";
 	appearance: none;
}

.c-toggleList__toggle:after {
	display: block;
	grid-column: 1/2;
	grid-row: 1/2;
	align-self: flex-end;
	width: 20px;
	height: 20px;
	justify-self: center;
	background: url("/hp/common_image/header/menuMs/menu-toggle.svg") no-repeat center/contain;
	content: "";
 	appearance: none;
	transform: rotate(90deg);
}

.c-toggleList__toggle-nkblue:before {
	background: url("/hp/common_image/header/menuMs/menu-toggle_nkblue.svg") no-repeat center/contain;
}
.c-toggleList__toggle-nkblue:after {
	background: url("/hp/common_image/header/menuMs/menu-toggle_nkblue.svg") no-repeat center/contain;
}

.c-toggleList__icon.open > .c-toggleList__toggle:after {
	transform: rotate(0deg);
}

.c-toggleTarget {
	display: none;
	padding: 0;
	overflow:hidden;
}

.c-definitionList__title {
	display:	flex;
	flex:		0 0 120px;
	justify-content:	center;
	align-items:	center;
	padding:	0;
	margin:		0 auto;
	border-top:	solid 1px #000;
	background-color:	#f2f2f2;
}

.c-definitionList__data {
	display:	block;
	/* 他のスタイルはそのまま */
	flex:		0 0 calc(100% - 178px);
	align-items:	center;
	padding:	9px 29px;
	margin:		0;
	border-top:	solid 1px #000;
	text-align:	left;
	word-break:	break-all;
	background-color:	#ffffff;
}

.c-definitionList__title:last-of-type,
.c-definitionList__data:last-of-type {
	margin-bottom: 20px;
	border-bottom: solid 1px #000;
}

.c-definitionList__list {
	margin: 0;
	padding: 0px 14px;
	list-style-type: disc;
}

.c-definitionList__list.u-harlNumberUl {
	list-style-type: none;
	counter-reset: number;
}

.u-harlNumberLi {
		padding-left: 10px;
		text-indent: -1.6em;
}

.u-harlNumberLi::before {
	list-style-type: none;
	counter-increment: number;
	content: counter(number) '）';
}

@media (max-width: 1200px) {
	.c-toggleList__header {
		padding: 8px 10px 10px calc(15px + 1.4rem);
		text-indent: -1.4rem;
	}
	
	.c-toggleTarget {
		padding: 0;
		margin: 0;
	}

	.c-definitionList__title {
		flex: 0 0 111px;
		padding: 34px 0px 32px 0px;
	}

	.c-definitionList__title:last-of-type {
		margin-bottom: 34px;
	}

	.c-definitionList__data {
		flex: 0 0 calc(100% - 133px);
		padding: 16px 11px;
		margin: 0;
		word-break: break-all;
	}

	.c-definitionList__data:last-of-type {
		margin-bottom: 34px;
	}

	.c-definitionList__list {
		margin: 0;
		padding: 0px 14px;
		list-style-type: disc;
	}
}