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

/* タイトル */
.cp-ttl{
	font-size: 2.8rem;
	font-weight: bold;
	color: #3281dd;
	margin-bottom: 10px;
}
@media screen and (max-width:767px) {
	.cp-ttl{
		font-size: 1.8rem;
	}
}

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

.cp-tbl th, .cp-tbl td{
	vertical-align: top;
	border-bottom: 1px dotted #3281dd;
	padding: 15px 25px 13px;
	text-align: left;
}
.cp-tbl th{
	color: #3281dd;
	font-size: 1.8rem;
	font-weight: bold;
	width: 32%;
	background: #eef6ff;
}
.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: 1.6rem;
		border-bottom: none;
	}
	.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 #3281dd;
}
.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: 1.2rem!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: 2.6rem;
	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: 2rem;
		padding: 15px;
	}
	.cp-btn > span {
		position: relative;
		padding-left: 40px;
	}
	.cp-btn > span:before {
		background-size: 26px 26px;
		width: 26px;
		height: 26px;
	}
}
