@charset "UTF-8";

/* common */
.list li {
	font-size: 14px!important;
	margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
	.list li {
		font-size: 16px!important;
		margin-bottom: 3px;
	}
}
.list-s li{
	font-size: 14px!important;
	margin-bottom: 5px;
}
.list-ss li{
	font-size: 12px!important;
	margin-bottom: 5px;
}
.list li:last-child,
.list-s li:last-child,
.list-ss li:last-child {
	margin-bottom: 0;
}

.btn-basis{
	display: table;
	width: auto;
	margin: 15px auto 0;
}
.btn-basis a{
	position: relative;
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	min-width: 300px;
	color: #333;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	padding: 15px 40px;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: 0px 3px 0px 0px #d9d9d9;
	box-sizing: border-box;
}
.btn-basis a::before{
	position: absolute;
	top: 50%;
	bottom: 50%;
	right: 15px;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 8px;
	height: 8px;
	border-top: 2px solid #014AAC;
	border-right: 2px solid #014AAC;
	transform: rotate(45deg);
}
.btn-basis a::before{
	left: 20px;
	right: auto;
	transform: rotate(225deg);
}
@media screen and (min-width: 768px) {
	.btn-basis{
		margin: 20px auto 0;
	}
	.btn-basis a{
		font-size: 16px;
		padding: 20px 40px 18px 35px;
	}
}


/* メイン画像 */
.cp-main-img img{
	display: block;
	width: 100%;
	max-width: 980px;
	margin: 30px auto 0;
}
.cp-main-note{
	margin-top: 5px;
	font-size: 12px;
	text-align: right;
}
.cp-main-note li:not(:last-child){
	margin-bottom: 5px;
}
@media screen and (max-width:767px) {
	.cp-main-img img {
		margin: 20px auto 0;
	}
	.cp-main-note span{
		display: inline-block;
	}
}

/* タイトル */
.cp-ttl{
	font-size: 26px;
	font-weight: bold;
    padding-left: 16px;
	margin-bottom: 15px;
	border-left: 5px solid #014AAC;
}
@media screen and (max-width:767px) {
	.cp-ttl{
		font-size: 18px;
		padding-left: 12px;
	}
}

/* テーブル */
.cp-tbl{
	font-size: 16px;
	text-align: left;
	margin: 0;
	padding: 0px;
	width: 100%;
	border-top: 2px solid #c9c9c9;
	border-bottom: 2px solid #c9c9c9;
	table-layout: fixed;
	word-wrap: break-word;
	white-space: normal;
	line-height: 1.6;
	border-collapse: collapse;
	border-spacing: 0;
}
@media screen and (max-width:767px) {
	.cp-tbl{
		font-size: 14px;
		border: none;
	}
}

.cp-tbl th, .cp-tbl td{
	vertical-align: top;
	border-bottom: 1px solid #d9d9d9;
	padding: 15px 25px 13px;
	text-align: left;
}
.cp-tbl th{
	font-size: 18px;
	font-weight: bold;
	width: 25%;
	background: #f5f5f5;
}
.cp-tbl tr:last-child th, .cp-tbl tr:last-child td{
	border-bottom: none;
}
@media screen and (max-width:767px) {
	.cp-tbl th, .cp-tbl td{
		padding: 10px 12px;
		display: block;
		width: 100%;
		border: none;
	}
	.cp-tbl th{
		font-size: 16px;
		border-bottom: none;
		width: auto;
	}
	.cp-tbl td{
		padding: 10px 0 20px;
	}
	.cp-tbl tr:last-child td {
		padding-bottom: 0;
	}
}

/* section */
.cp-section{
	margin: 40px 0;
}
@media screen and (max-width:767px) {
	.cp-section {
		margin: 30px 0;
	}
}

/* caution */
.cp-caution{
	padding: 20px 25px;
	border: 1px dotted #b3b3b3;
}
.cp-caution > ul:first-child{
	margin-bottom: 15px;
}
@media screen and (max-width:767px) {
	.cp-caution{
		padding: 12px 15px;
	}
	.cp-caution .list-s li,
	.cp-caution .txt-s{
		font-size: 12px!important;
	}
}

.cp-btn{
	width: 400px;
	margin: 15px auto 0;
	color: #fff!important;
	text-decoration: none;
	font-weight: bold;
	border-radius: 5px;
	padding: 20px;
	background: #e72548;
	font-size: 26px;
	line-height: 1.3;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 2px 0;
	-moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 2px 0;
	-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 2px 0;
	display: -webkit-box; /* Android4.3以下、Safari3.1〜6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}
.cp-btn > span {
	position: relative;
	padding-left: 45px;
}
.cp-btn > span:before {
	content: "";
	position: absolute;
	background: url(/img/icon/icon_envelope_w.svg);
	background-repeat: no-repeat;
	background-size: 30px 30px;
	background-position: top left;
	width: 30px;
	height: 30px;
	left: 0;
	top: 0;
}
.cp-section + .cp-btn{
	margin: 30px auto;
}
@media screen and (max-width:767px) {
	.cp-btn{
		width: 100%;
		font-size: 20px;
		padding: 15px;
	}
	.cp-btn > span {
		position: relative;
		padding-left: 40px;
	}
	.cp-btn > span:before {
		background-size: 26px 26px;
		width: 26px;
		height: 26px;
	}
}
