.products-selection .anchor-btns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.products-selection .anchor-btns a {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: white;
	height: 62px;
}
.products-selection .anchor-btns a .btn-label {
	margin-left: 0px;
	font-size: 14px;
}
.products-selection .anchor-btns a .arrow-circle {
	margin: 0;
	justify-self: end;
	background: #E2EBF1;
	transform: rotate(90deg);
	width: 30px;
	height: 30px;
}
.products-selection .anchor-btns a .arrow-circle svg path {
	stroke: #044362;
}
.products-selection article {
	background: white;
	margin-top: 38px;
	padding-bottom: 20px;
}
.products-selection article h2 {
	margin: 0;
	background: #044362;
	color: white;
	font-size: 18px;
	padding: 13px 13px;
	border-left: solid 3px #0080FF;
}
.products-selection article .step {
	padding: 22px 14px 24px;
}
.products-selection article .step:not(.step1) {
	display: none;
}
.products-selection article .step h3 {
	border-left: solid 3px #0080FF;
	padding-left: 9px;
	font-size: 16px;
	font-weight: bold;
	color: #044362;
	margin-bottom: 18px;
}
.products-selection article .step label {
	display: block;
	padding-left: 30px;
	padding-top: 1px;
	position: relative;
	margin-top: 18px;
	font-size: 14px;
}
.products-selection article .step label::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	z-index: 1;
	width: 21px;
	aspect-ratio: 1;
	background: #F5F5F5;
	border: solid 1px #AFAFAF;
	border-radius: 50%;
}
.products-selection article .step label:has(input:checked)::before {
	background: white;
}
.products-selection article .step label:has(input:checked)::after {
	content: '';
	position: absolute;
	top: 6px;
	left: 4px;
	z-index: 2;
	width: 13px;
	aspect-ratio: 1;
	background: #0080FF;
	border-radius: 50%;
}
.products-selection article .step label input {
	width: 0;
	opacity: 0;
	display: none;
}
.products-selection article .step span {
	display: block;
	width: fit-content;
	border: solid 1px #282828;
	line-height: 1;
	font-size: 12px;
	padding: 4px 6px;
	border-radius: 5px;
	margin-right: 10px;
	margin-bottom: 7px;
}
.products-selection article .step ul {
	margin-top: 10px;
}
.products-selection article .step input +ul {
	margin-top: 2px;
}
.products-selection article .step ul li {
	padding-left: 22px;
	position: relative;
	margin-bottom: 10px;
}
.products-selection article .step ul li::before {
	content: '';
	position: absolute;
	top: 9px;
	left: 3px;
	z-index: 1;
	width: 7px;
	aspect-ratio: 1;
	background: #0080FF;
	border-radius: 50%;
}
.products-selection article .result {
	padding: 20px 20px 16px;
	display: none;
}
.products-selection article .result .first {
	font-size: 16px;
	font-weight: bold;
	color: #044362;
	border-bottom: solid 1px #CCD9DF;
	padding-bottom: 12px;
}
.products-selection article .result .item {
	margin-top: 20px;
	display: grid;
	grid-template-columns: 1fr;
}
.products-selection article .result .item figure {}
.products-selection article .result .item figure img {
	max-width: 100%;
}
.products-selection article .result .item .info {
	margin-top: 20px;
}
.products-selection article .result .item .info h4 {
	font-size: 18px;
	font-weight: bold;
	color: #044362;
	margin-bottom: 10px;
}
.products-selection article .result .item .info p.note {
	font-size: 12px;
}
.products-selection article .result .item .info p {
	margin-bottom: 18px;
	font-size: 14px;
}
.products-selection article .result .item .info table {
	width: 100%;
	border-top: solid 1px #D9D9D9;
	margin-bottom: 20px;
	border-collapse: collapse;
}
.products-selection article .result .item .info table th {
	background: #F2F2F2;
	color: #282828;
	font-size: 14px;
	font-weight: normal;
	padding: 8px 0;
	border-bottom: solid 1px #D9D9D9;
	border-right: solid 1px #D9D9D9;
}
.products-selection article .result .item .info table td {
	font-size: 14px;
	padding: 8px 15px;
	border-bottom: solid 1px #D9D9D9;
}
.products-selection article .result .item .info .btn {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}
.products-selection article .result .item .info .btn a {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: no-repeat left 3% center / auto 68% white;
	height: 62px;
	width: 100%;
}
.products-selection article .result .item .info .btn a.product {
	background-image: url(../../images/products/selection/product.png);
}
.products-selection article .result .item .info .btn a.catalog {
	background-image: url(../../images/products/selection/catalog.png);
}
.products-selection article .result .item .info .btn a.contact {
	background-image: url(../../images/products/selection/contact.png);
}
.products-selection article .result .item .info .btn a .btn-label {
	margin-left: 48px;
}
.products-selection article .result .item .info .btn a .arrow-circle {
	margin: 0;
	justify-self: end;
	background: #E2EBF1;
}
.products-selection article .result .item .info .btn a .arrow-circle svg path {
	stroke: #044362;
}

@media (min-width: 768px) {
.products-selection .pc_none {
	display: none;
}

.products-selection .anchor-btns {
	gap: 25px;
}
.products-selection .anchor-btns a {
	height: 88px;
}
.products-selection .anchor-btns a .btn-label {
	margin-left: 12px;
	font-size: 18px;
}
.products-selection .anchor-btns a .arrow-circle {
	width: 35px;
	height: 35px;
}
.products-selection .anchor-btns a .arrow-circle svg path {
	stroke: #044362;
}
.products-selection .anchor-btns a:hover .arrow-circle {
	background: #459DBF;
}
.products-selection .anchor-btns a:hover .arrow-circle svg path {
	stroke: white;
}
.products-selection article {
	margin-top: 60px;
}
.products-selection article h2 {
	font-size: 22px;
	padding: 18px 26px;
}
.products-selection article .step {
	padding: 40px 40px 24px;
}
.products-selection article .step:not(.step1) {
}
.products-selection article .step h3 {
	padding-left: 12px;
	font-size: 20px;
	margin-bottom: 36px;
}
.products-selection article .step label {
	padding-left: 44px;
	margin-top: 24px;
	font-size: 16px;
}
.products-selection article .step label::before {
	top: 0;
	width: 30px;
}
.products-selection article .step label:has(input:checked)::before {
	background: white;
}
.products-selection article .step label:has(input:checked)::after {
	content: '';
	position: absolute;
	top: 6px;
	left: 6px;
	z-index: 2;
	width: 18px;
	aspect-ratio: 1;
	background: #0080FF;
	border-radius: 50%;
}
.products-selection article .step label input {
}
.products-selection article .step span {
	display: inline-block;
}
.products-selection article .step ul {
	margin-top: 10px;
}
.products-selection article .step input +ul {
	margin-top: 2px;
}
.products-selection article .step ul li {
	padding-left: 22px;
	position: relative;
	margin-bottom: 10px;
}
.products-selection article .step ul li::before {
	content: '';
	position: absolute;
	top: 9px;
	left: 3px;
	z-index: 1;
	width: 7px;
	aspect-ratio: 1;
	background: #0080FF;
	border-radius: 50%;
}
.products-selection article .result {
	padding: 40px 40px 16px;
}
.products-selection article .result .first {
	font-size: 20px;
	padding-bottom: 16px;
}
.products-selection article .result .item {
	margin-top: 40px;
	grid-template-columns: 1fr 1fr;
}
.products-selection article .result .item figure {}
.products-selection article .result .item figure img {
	max-width: 93%;
}
.products-selection article .result .item .info {
	margin-top: 0;
}
.products-selection article .result .item .info h4 {
	font-size: 26px;
	margin-bottom: 16px;
}
.products-selection article .result .item .info p {
	margin-bottom: 20px;
	font-size: 16px;
}
.products-selection article .result .item .info p.note {
	font-size: 14px;
}
.products-selection article .result .item .info table {
	margin-bottom: 25px;
}
.products-selection article .result .item .info table th {
	font-size: 16px;
	width: 30%;
	padding: 10px 0;
}
.products-selection article .result .item .info table td {
	font-size: 16px;
	padding: 10px 15px;
}
.products-selection article .result .item .info .btn {
}
.products-selection article .result .item .info .btn a {
	width:350px;
}
.products-selection article .result .item .info .btn a.product {
}
.products-selection article .result .item .info .btn a.catalog {
	background-image: url(../../images/products/selection/catalog.png);
}
.products-selection article .result .item .info .btn a.contact {
	background-image: url(../../images/products/selection/contact.png);
}
.products-selection article .result .item .info .btn a .btn-label {
	margin-left: 48px;
}
.products-selection article .result .item .info .btn a .arrow-circle {
}
.products-selection article .result .item .info .btn a .arrow-circle svg path {
	stroke: #044362;
}
.products-selection article .result .item .info .btn a:hover .arrow-circle {
	background: #459DBF;
}
.products-selection article .result .item .info .btn a:hover .arrow-circle svg path {
	stroke: white;
}
}