@charset "utf-8";

.big-disc__list li {
	display: block;
}

/* ---------------------------------------------------------------------------------------------  */

.std-table__item {
	border-top: 1px solid rgba(0,0,0,.1);
	padding: 15px 0;
}

.std-table__item + .std-table__item {
	margin-top: 0;
}

.std-table__item:last-child {
	border-bottom: 1px solid rgba(0,0,0,.1);
}

.std-table__lbl {
	font-weight: bolder;
}

.des-table__des {
	margin: 0;
}




.StepList {
	list-style: none;
	margin-right: 0;
	padding: 0;
}

.StepList__item {
	background-color: rgba(255,255,255,1);
	box-shadow: 20px 20px 40px rgba(133,87,74,0.2);
	border-radius: 3px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
}

.StepList__item + .StepList__item {
	margin-top: 20px;
}

.StepList__num {
	color: rgba(255,255,255,1);
	text-align: center;
	width: 40px;
	margin: 0;
}

.StepList__num small,
.StepList__num span {
	display: inline-block;
}

.StepList__num span {
	font-size: 2rem;
	line-height: 1;
}

.StepList__item-inner {
	width: calc(100% - 40px);
	padding: 20px;
	padding-right: 0;
	box-sizing: border-box;
}

.StepList__txt {
	padding-right: 20px;
	padding-bottom: 20px;
}

.StepList__ttl {
	font-size: 1.6rem;
	font-weight: bold;
	margin: 0;
}

.StepList-table {
	margin: 0;
	counter-reset: SupportList-num;
}

.StepList-table__item {
	padding: 20px;
	padding-left: 35px;
	border-top: 1px solid rgba(0,0,0,.2);
}

.StepList-table__item:last-child {
	padding-bottom: 0;
}

.StepList-table__lbl {
	font-weight: bold;
	display: flex;
	align-items: center;
	position: relative;
}

.StepList-table__lbl:before {
	position: absolute;
	counter-increment: SupportList-num;
	content: counter(SupportList-num);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	color: rgba(255,255,255,1);
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: -35px;
	bottom: 0;
	margin: auto;
}

.StepList-table__des {
	margin: 5px 0 0 0;
	padding-left: 27px;
	font-size: 1.2rem;
}

.StepList-table__des .num {
	color:rgba(255,255,255,1);
	font-size: 1.2rem;
	font-weight: bold;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 .1em;
}

.step1 .StepList__ttl {
	color: rgba(236, 94, 118, 1);
}

.step1 .StepList__num,
.step1 .StepList-table__lbl:before {
	background-color: rgba(236, 94, 118, 1);
}

.step1 .StepList-table__item:nth-of-type(2) .StepList-table__lbl:before {
	border-radius: 2px;
}

.step2 .StepList__ttl {
	color: rgba(234, 171, 0, 1);
}

.step2 .StepList__num,
.step2 .StepList-table__lbl:before,
.step2 .StepList-table__des .num {
	background-color: rgba(234, 171, 0, 1);
}

.step3 .StepList__ttl {
	color: rgba(19, 190, 210, 1);
}

.step3 .StepList__num {
	background-color: rgba(19, 190, 210, 1);
}

.step3 .StepList-table__item {
	padding-left: 0;
}

.step3 .StepList-table__lbl:before {
	content: none;
}

.step3 .StepList-table__lbl .num {
	color: rgba(255,255,255,1);
	font-size: 1.2rem;
	font-weight: bold;
	width: 16px;
	height: 16px;
	background-color: rgba(236, 94, 118, 1);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 .1em;
}


.step3 .StepList-table__item:nth-of-type(2) .StepList-table__lbl .num {
	border-radius: 2px;
}

.StepList-table__des .des-table__item {
	width: calc(100% + 20px);
	padding: 0 20px 20px;
	padding-left: 0;
	box-sizing: border-box;
}

.StepList-table__des .des-table__item + .des-table__item {
	
}

.StepList-table__des .des-table__item:first-child {
	padding-top: 0;
}

.StepList-table__des .des-table__item:last-child {
	
}

.StepList-table__des .des-table__lbl {
	transition: color 0.2s ease;
}

.StepList-table__des .des-table__lbl .icon {
	line-height: 2;
	stroke-width: 2;
	transform: scale(0, 0);
	transition: opacity, transform 0.2s ease-in-out;
	opacity: 0;
}

.StepList-table__des .des-table__des {
	margin-top: 5px;
}

.StepList-table__des .des-table__des a {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
	line-height: 1;
	/* height: 30px; */
	border: 2px solid rgba(0,0,0,.2);
	border-radius: 5px;
	box-sizing: border-box;
	padding: 10px;
	transition: background-color, border-color 0.2s ease;
	pointer-events: none;
}

.StepList-table__des .des-table__des span {
	color: rgba(0,0,0,.4);
	transform: scale(0.9, 0.9);
	transition: color, transform 0.2s ease-in-out;
}

.StepList-table__des .-apply .des-table__lbl {
	color: rgba(19, 190, 210, 1);
}

.StepList-table__des .-apply .des-table__lbl .icon {
	transform: scale(1, 1);
	transition-timing-function: cubic-bezier(0, 0.8, 0.5, 2);
	opacity: 1;
}

.StepList-table__des .-apply .des-table__des a {
	background-color: rgba(19, 190, 210, 1);
	border-color: rgba(19, 190, 210, 1);
	pointer-events: all;
	transition: background-color 0.2s ease;
}

.StepList-table__des .-apply .des-table__des a:hover {
	background-color: rgba(255,255,255,1);
}

.StepList-table__des .-apply .des-table__des span {
	color: rgba(255,255,255,1);
	transform: scale(1, 1);
	transition-timing-function: cubic-bezier(0, 0.8, 0.5, 2);
}

.StepList-table__des .-apply .des-table__des a:hover span {
	color: rgba(19, 190, 210, 1);
}









.SupportList {
	list-style: none;
	padding: 0;
	counter-reset: SupportList-num;
}

.SupportList__item {
	--padding: 15px;
	--countsize: 20px;
	
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: var(--padding) 0;
	color: var(--color-txt);
	border-top: 1px solid rgba(0,0,0,0.05);
}

.SupportList__item:first-child {
	border-top: none;
}

.SupportList__item:last-child {
	
}

.SupportList__item:before {
	position: absolute;
	left: 0;
	top: calc(var(--padding));
	counter-increment: SupportList-num;
	content: counter(SupportList-num);
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	width: var(--countsize);
	margin: 0;
	font-weight: bold;
}

.SupportList__item:after {
	position: absolute;
	left: calc(var(--countsize) / 2);
	top: calc(2em + (var(--padding)));
	display: block;
	width: 1px;
	height: calc(100% - 1.5em - (var(--padding) / 2));
	background-color: currentColor;
	content: "";
	opacity: 0.5;
}

.SupportList__item:last-child:after {
	display: none;
}






.Support-table__item {
/*	margin-top: -60px !important;*/
}

.Support-table__item:target {
	
}

.Support-table__lbl {
	display: flex;
	align-items: center;
	padding: 8px 12px;
	box-sizing: border-box;
	font-size: 1.5rem;
	font-weight: bolder;
	
	background-color: #e0eee7;
	border-radius: 5px;
}

.Support-table__lbl .icon {
	margin-right: 10px;
}

.Support-table__des {
	margin: 10px 0 0;
}


.SupportList-table {
	width: 100%;
	margin-top: 0;
	padding-left: 35px;
	box-sizing: border-box;
}

.SupportList-table__lbl {
	font-weight: bold;
	padding-left: 0;
	box-sizing: border-box;
}

.SupportList-table__des {
	margin: 0;
	padding-left: 0;
}

.SupportList-table__des > *:first-child {
	margin-top: 0;
}


