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

#guideWrap article #paid h5 {
	font-size: 110%;
	font-weight: 700;
	margin: 2.5em 0 .25em;
	position: relative;
	padding-left: 1.0em;
}
#guideWrap article #paid h5::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 0;
	margin-right: .5em;
	width: 10px;
	height: 10px;
	background-color: #028E6D;
	border-radius: 50%;
}
#guideWrap article #paid ol {
	margin: .75em 0 .75em 1.0em;
}
#guideWrap article #paid ul.merit {
	margin: .75em 0 .75em 1.25em!important;
}
#guideWrap article #paid ol li {
	list-style: decimal;
	margin-top: .5em;
}
#guideWrap article #paid ul.merit li {
	position: relative;
}
#guideWrap article #paid ul.merit li::before {
	content: "";
	display: block;
	margin-right: .5em;
	width: 1rem;
    height: 0.5rem;
	border-left: 2px solid #028E6D;
    border-bottom: 2px solid #028E6D;
	transform: rotate(-45deg);
	position: absolute;
    top: 0.5em;
    left: -1.0em;
}
#guideWrap article #paid ul li::marker {
	color: #000;
}
#guideWrap article #paid ul li + li {
	margin-top: .5em;
	
}
#guideWrap article #paid ol li span {
	display: inline-block;
}
#guideWrap article #paid ol li span:first-of-type {
	font-weight: 700;
	margin-right: 1.0em;
}
@media (max-width: 480px) {
	#guideWrap article #paid ol li span {
		display: block;
	}
}
#guideWrap article #paid figure {
	max-width: 850px;
    width: 100%;
	margin: 10px 0;
    border: 1px solid #efefef;
}
#guideWrap article #paid table {
	margin: 10px auto;
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #777777;
	box-sizing: border-box;
}

#guideWrap article #paid table th {
	padding: 5px 10px;
	text-align: center;
	border-bottom: 1px solid #777777;
	color: #028E6D;
	background: #EEF4E9;
	width: 8.0em;
}
#guideWrap article #paid table td {
	padding: 5px 10px;
	border-bottom: 1px solid #777777;
}
#guideWrap article #paid table td ul {
	margin: .25em 0;
}
#guideWrap article #paid table td ul li {
	font-size: 90%;
	margin-left: 0;
	list-style: none;
}
#guideWrap article #paid table td ul li::before {
	content: "※";
	display: inline-block;
	margin-right: .5em;
}
#guideWrap article #paid table td ul li + li {
	margin-top: 0;	
}
#guideWrap article #paid table th + td {
	border-left: 1px solid #777777;
}
@media (max-width: 480px) {
	#guideWrap article #paid table th,#guideWrap article #paid table td {
		display: block;
		width: 100%;
	}
	#guideWrap article #paid table th {
		padding: 10px;
	}
	#guideWrap article #paid table tr:last-of-type td {
		border-bottom: none;
	}
	
	#guideWrap article #paid table th + td {
		border-left: none;
	}

}

#guideWrap article #paid .contactBox {
	margin: 20px 0;
	padding: 20px;
	width: 320px;
	background: #f2f2f2;
	box-sizing: border-box;
}
#guideWrap article #paid .contactBox .bold {
	font-weight: 700;
}
#guideWrap article #paid .contactBox p + p {
	margin-top: 0;
}
#guideWrap article#payment > dl { margin: 2em auto 0; }

#guideWrap article#payment > dl dt {
	padding: 5px 10px;
	color: #FFFFFF;
	background: var(--green);
	display: inline-block;
}
#guideWrap article#payment > dl dd {
	padding: 15px 10px 0;
}

#guideWrap article#payment > dl dd em {
	color: #ff6347;
	font-weight: 600;
}
#guideWrap article#payment .accordion {
	margin: 3.0em 0;
}
#guideWrap article#payment .accordion dl {
	margin: .5em auto;
	width: 100%;
}

#guideWrap article#payment .accordion dl h4 {
	margin: 0 auto 10px;
	padding-left: 25px;
	font-size: var(--fs24);
	position: relative;
}
/*#guideWrap article#payment .accordion dl h4:before {
	content: '';
	margin: auto;
	width: 15px;
	height: 5px;
	background: #028E6D;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: auto;
	bottom: 0;
}*/
#guideWrap article#payment .accordion dl+dl {
    margin-top: 1.5em;
}

#guideWrap article#payment .accordion dd {
    padding: 10px;
}

#guideWrap article#payment .accordion > dl {
    position: relative;
    overflow: hidden;
}

#guideWrap article#payment .accordion dl > input {
    display: none;
}

#guideWrap article#payment .accordion dt {
    position: relative;
    z-index: 1;
    padding-right: 40px;
}
#guideWrap article#payment .accordion dl label {
	width: 100%;
	
}
#guideWrap article#payment .accordion dd {
    position: absolute;
    visibility: hidden;
    transform: translateY(-100%);
	padding-bottom: 50px;
}

#guideWrap article#payment .accordion dl > input:checked+label+dd {
    position: relative;
    visibility: visible;
    transform: translateY(0);
}

#guideWrap article#payment .accordion dt::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 5px;
    top: 50%;
    left: 0;
    background: #028E6D;
    transform: translateY(-50%);
}

#guideWrap article#payment .accordion dt::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 5px;
    background: #028E6D;
    transition: .2s;
    transform: translateY(-50%) rotate(90deg);
}

#guideWrap article#payment .accordion dl>input:checked+label>dt::after {
    transform: translateY(-50%) rotate(180deg);
}