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

br.pc {
	display: block;
}
br.sp {
	display: none;
}
sup {
	font-size: 80%; //お好きなサイズに
	vertical-align: top;
	position: relative;
	top: -0.4em; //お好きな位置に
}
sub {
	font-size: 80%; //お好きなサイズに
	vertical-align: bottom;
	position: relative;
	bottom: -0.4em; //お好きな位置に
}
h2#transaction {
	margin-top: 100px;
}
	@media only screen and (max-width: 700px) {
		br.pc {
			display: none;
		}
		br.sp {
			display: block;
		}
    }
	
	
#maintable {
	width: 1000px;
	margin: 0 auto 100px;
}
#maintable > div {
	display: flex;
	flex-wrap: wrap;
}

#maintable > div > div:nth-of-type(1) {
	width: 250px;
	line-height: 150%;
	background-color: #e0e0e0;
	border: #ccc 1px solid;
	border-bottom: none;
	margin: 0;
	padding: 10px 20px;
}
#maintable > div > div:nth-of-type(2) {
	width: 750px;
	line-height: 150%;
	padding: 10px 20px;
	border: #ccc 1px solid;
	border-bottom: none;
}
#maintable > div:last-of-type > div:nth-of-type(1),
#maintable > div:last-of-type > div:nth-of-type(2){
	border-bottom: #ccc 1px solid;
}
#maintable > div > div:nth-of-type(2) > p {
	margin-bottom: 14px;
}
	@media only screen and (max-width: 700px) {
		#maintable {
			width: 90%;
			margin: 0 auto 100px;
		}
		#maintable > div > div:nth-of-type(1) {
			width: 100%;
			padding: 10px 10px;
		}
		#maintable > div > div:nth-of-type(2) {
			width: 100%;
			padding: 10px 10px;
		}
    }

/*  折り畳み  */
.acd-check{
    display: none;
}
.acd-label {
	font-size:16px;
    color: #000;
	background-color: #efefef;
    display: block;
    margin-bottom: 1px;
    padding: 10px;
    position: relative;
	line-height:1.4;
}
.acd-label > span {
	position: absolute;
	top: 7.2px;
	right: 7.2px;
	display: inline-block;
	width: 28px;
	height: 28px;
	background-color: #666;
	padding: 3px;
	text-align: center;

}
.acd-label > span::after {
    content: "";
	display: inline-block;
	background-image: url(/transaction/images/icon_plus.png);
	width: 20px;
	height: 20px;
	background-size: contain;
}
.acd-content {
	font-size: 16px;
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
}
.acd-check:checked + .acd-label > span::after{
    content: "";
	display: inline-block;
	background-image: url("/transaction/images/icon_minus.png");
	width: 20px;
	height: 20px;
	background-size: contain;
}
.acd-check:checked + .acd-label + .acd-content{
    height: auto;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}

	@media only screen and (max-width: 700px) {
    }
	
	
ul.list > li {
	list-style: none;
	line-height: 130%;
	margin: 0 0 14px 0;
	padding: 0;
}

ul.list > li > a {
	border-bottom: #000 1px solid;
	padding-bottom: 1px;
}

ul.list > li > a::after{
    content: "";
	display: inline-block;
	background-image: url("/transaction/images/icon_blank.png");
	width: 14px;
	height: 14px;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 16px;
}

ul.mail > li {
	margin-bottom: 10px;
		}
ul.mail > li > a > img {
	height: 16px;
	vertical-align: -2px;
}
	@media only screen and (max-width: 700px) {
		ul.list {
			padding-left: 0!important;
		}
		ul.list > li {
			line-height: 150%;
		}
		ul.list > li > a {
			padding-bottom: 0px;
		}
		ul.mail > li {
			margin-bottom: 16px;
		}
    }
ul.notes li{
	font-size: 90%;
	text-indent:-1em;
	padding-left:1em;
}