@charset "utf-8";

#content button {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: inherit;
	cursor: pointer;
}
#content button:focus-visible {
	outline: #3683BF solid 2px;
	outline-offset: 1px;
}
.tab .tablist {
	display: flex;
	justify-content: space-between;
	position: relative;
}

/* cardType */
.cardType {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}
.cardType > p {
	width: 30%;
	padding-left: 50px;
	position: relative;
}
.cardType > p.pCard::before {
	content: "";
	width: 40px;
	height: 26px;
	background: url(/card/common2015/images/b_card.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: -2px;
	left: 0;
}
.cardType > p.gCard::before {
	content: "";
	width: 40px;
	height: 26px;
	background: url(/card/common2015/images/g_card.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: -2px;
	left: 0;
}

/* content */
#content p span {
	font-size: 90%;
}
#content .pdfBox {
	margin-top: 20px;
	width: 80%;
	display: flex;
	justify-content: space-between;
}
#content .pdfBox.bg {
	background-color: #fff2cc;
	border: solid 1px #000;
	padding: 10px;
}
#content .pdfBox > p {
	width: 63%;
	padding-left: 1em;
	text-indent: -1em;
}
#content .pdfBox > .pdfLink {
	width: 34%;
}
#content .pdfBox a {
	display: block;
	border-radius: 10px;
	font-weight: bold;
	text-align: center;
	color: #333;
	background-color: #fff;
	padding: 5px;
}
#content .pdfBox a:first-child {
	border: solid 2px #9e9e9e;
}
#content .pdfBox a:last-child {
	margin-top: 10px;
	border: solid 2px #9a742b;
}
#content .contBox {
	margin-top: 50px;
}
#content .contBox + .contBox {
	margin-top: 100px;
}
#content .contBox .inner {
	padding: 0 10px;
}
#content h2 {
	font-size: 16px;
	font-weight: bold;
	color: #0066cc;
	text-align: center;
}
#content h3 {
	font-size: 15px;
	font-weight: bold;
}
#content .box {
	margin-top: 20px;
}
#content .boxInner {
	padding: 0 1em;
}
#content .table01 {
	margin-top: 10px;
	width: 60%;
}
@media only screen and (max-width: 767px) {
	.cardType {
		flex-direction: column;
		gap: 20px 0;
	}
	.cardType > p {
		width: 100%;
	}
	#content .pdfBox {
		width: 100%;
		display: block;
	}
	#content .pdfBox > p {
		width: 100%;
	}
	#content .pdfBox > .pdfLink {
		margin-top: 10px;
		width: 100%;
	}
	#content .contBox .inner {
		padding: 0;
	}
	#content .table01 {
		width: 100%;
	}
}