/*----------
	kanban
----------*/
.c-qa:not(.is-disabled) .c-qa__item--parent {
	cursor: pointer;
}
.c-qa:not(.is-disabled) .c-qa__item--parent::after {
	visibility: visible;
}
.c-qa:not(.is-disabled) .c-qa__item--child {
	height: 0;
	position: relative;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s linear;
}
.c-qa__item {
	position: relative;
}
.c-qa__item--parent {
	border-bottom: #CCC solid 1px;
	pointer-events: none;
}
.c-qa__item-inner {
	position: relative;
	font-size: 1.6rem;
	line-height: var(--line-height-m);
	padding: 15px 25px;
	display: block;
	width: 100%;
	text-align: left;
	pointer-events: all;
	color: var(--color-txt);
}
.c-qa__item-inner::before {
	content: attr(title);
	font-size: 2.4rem;
	line-height: 1;
	display: inline-block;
	vertical-align: top;
	padding-right: 20px;
	position: absolute;
	left: 0;
}
.c-qa__item-inner--parent {
	cursor: pointer;
}
.c-qa__item-inner--child {
	min-height: 104px;
}
.c-qa__item-txt {
	flex: 1;
}
.c-qa__icon {
	position: absolute;
	right: 0;
	top: 50%;
	display: block;
	width: 28px;
	height: 28px;
	border: solid 1px var(--color-prim);
	line-height: 26px;
	color: inherit;
	text-align: center;
	transform: translateY(-50%);
}
.c-qa__icon::before, .c-qa__icon::after {
	content: "";
	position: absolute;
	top: 12px;
	left: 5px;
	width: 16px;
	height: 1px;
	background-color: currentColor;
}
.c-qa__icon::after {
	transform: rotate(90deg);
}
.c-qa.is-active:not(.is-disabled) .c-qa__item--child {
	height: auto;
	opacity: 1;
	pointer-events: all;
	border-bottom: 1px solid #ccc;
}
.c-qa.is-active:not(.is-disabled) .c-qa__icon::after {
	display: none;
}
@media (min-width: 768px), print {
	.c-qa__item-inner {
		padding: 23px 24px;
	}
	.c-qa__item-inner--parent {
		padding: 23px 24px 23px 60px;
	}
	.c-qa__item-inner--parent::before {
		position: absolute;
		left: 24px;
	}
	.c-qa__item-inner--parent:hover {
		opacity: 0.7;
	}
	.c-qa__item-inner--child {
		padding: 23px 24px 23px 60px;
	}
	.c-qa__item-inner--child::before {
		position: absolute;
		left: 26px;
	}
	.c-qa__icon {
		right: 20px;
	}
}

.c-heading-point {
	position: relative;
	display: flex;
	align-items: center;
}
.c-heading-point::before {
	content: "";
	display: block;
	width: calc(100% - 70px);
	height: 1px;
	background-color: #222222;
	position: absolute;
	bottom: 0;
	right: 0;
}
.c-heading-point__icon {
	flex: 0 0 64px;
	margin: 0 16px 0 0;
}
.c-heading-point__icon-inner {
	background: #222222;
	color: #fff;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.4rem;
	line-height: 1;
}
.c-heading-point__title {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: var(--line-height-s);
}
@media (min-width: 768px), print {
	.c-heading-point::before {
		width: calc(100% - 100px);
	}
	.c-heading-point__icon {
		flex-basis: 70px;
		margin: 0 30px 0 0;
	}
	.c-heading-point__icon-inner {
		width: 70px;
		height: 70px;
		font-size: 3.8rem;
	}
	.c-heading-point__title {
		font-size: 2.3rem;
	}
}

@media screen and (max-width: 767px) {
	.table-wrap .c-figure {
		margin-top: 30px;
	}
}
@media (min-width: 768px), print {
	.table-wrap {
		display: flex;
		gap: 40px;
	}
	.table-wrap__item {
		flex: 1 0 auto;
	}
	.table-wrap__item:nth-of-type(2n) {
		flex: 0 1 auto;
		width: 215px;
	}
}

.text-panel__inner {
	display: flex;
	gap: 40px;
	position: relative;
	display: block;
	padding: 22px 50px 26px 15px;
	border: solid 1px #D7D8DE;
	color: var(--color-txt);
}
.text-panel__inner::before {
	content: "";
	position: absolute;
	left: 16px;
	top: -1px;
	display: block;
	width: 52px;
	height: 3px;
	background: linear-gradient(to right, var(--color-seco1) 32px, var(--color-seco2) 32px);
}
.text-panel__title {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: var(--line-height-m);
	margin-bottom: 10px;
}
.text-panel__text {
	margin-top: 8px;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: var(--line-height-l);
}
.text-panel__text strong {
	font-size: 2.6rem;
}
.text-panel ol {
	position: relative;
	margin: 0;
	padding: 0;
}
.text-panel ol li {
	list-style: none;
	list-style-position: outside;
	margin: 0;
	padding-left: 1.25em;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: var(--line-height-l);
}
.text-panel ol li span {
	position: absolute;
	left: 0;
	margin: 0;
}
@media screen and (max-width: 767px) {
	.text-panel__content2 {
		margin-top: 40px;
	}
}
@media (min-width: 768px), print {
	.text-panel__item {
		height: 100%;
	}
	.text-panel__item::before {
		left: 31px;
	}
	.text-panel__inner {
		display: flex;
		justify-content: space-between;
		gap: 40px;
		height: 100%;
		padding: 30px 57px 35px 32px;
	}
	.text-panel__inner::after {
		right: 9px;
		bottom: 9px;
		width: 32px;
		height: 32px;
		line-height: 30px;
		font-size: 1.2rem;
	}
	.text-panel__title {
		font-size: 1.6rem;
	}
	.text-panel__text {
		font-size: 1.6rem;
	}
	.text-panel__text strong {
		font-size: 3rem;
	}
	.text-panel ol li {
		font-size: 1.6rem;
	}
}

@media (min-width: 768px), print {
	.c-lead {
		font-size: 2.4rem;
	}
}

.c-table thead .c-table__narrow-header {
	padding: 13px 20px;
	background-color: var(--color-seco1);
	border-top: 1px solid var(--color-border);
	font-weight: bold;
	color: #fff;
	text-align: center;
	white-space: nowrap;
}
.c-table thead .c-table__narrow-header + .c-table__narrow-header {
	border-left: 1px solid #fff;
}
.c-table .c-table__header {
	padding: 13px 20px;
	text-align: center;
}
.c-table .c-table__cell {
	padding: 13px 20px;
}
@media screen and (max-width: 767px) {
	.c-table__content {
		width: auto;
	}
	.c-table__content > thead > tr,
	.c-table__content > tbody > tr {
		display: flex;
		width: auto;
	}
	.c-table__content > tbody > tr > td,
	.c-table__content > tbody > tr > th,
	.c-table__content > thead > tr > th,
	.c-table__content > tfoot > tr > td,
	.c-table__content > tr > td,
	.c-table__content > tr > th {
		width: 50%;
		font-size: 1.4rem;
	}
	.c-table__content .c-table__cell {
		border-top: 1px solid var(--color-border);
	}
}
/*# sourceMappingURL=index.css.map */
