@charset "utf-8";

/**
 *
 *  便利なサービス 共通 common
 *
 */

/*--------------------------------------------------------------------------
   overwrite  - 共通CSSの上書き -
---------------------------------------------------------------------------*/
.c-note {
	margin-top: 30px;
}
.ttl_link{
	display: flex;
}
.contents_innner {
    padding-top: 100px;
    margin-top:-50px;
}
.m-detail__ttl span {
	display: inline-block;
	margin-left: 0.5em;
	font-size: 0.5em;
	font-weight: normal;
}
.m-detail__ttl--c04 {
    width: 78%;
}
.anchorlink{
	padding-top: 20px;
}



/* media query -> sp
=================================================================*/
@media screen and (max-width: 768px){
	.c-note {
		margin-top: 15px;
	}
	.contents_innner {
		padding-top: 30px;
		margin-top: 0;
	}
	.m-page-nav__item:first-child {
		width: 46.25%;
	}
	.m-page-nav__item:nth-child(2) {
		width: 53.75%;
	}
}

/*--------------------------------------------------------------------------
   service
---------------------------------------------------------------------------*/
.recommendation {
	padding: 30px 0 80px;
}

/* media query -> sp
=================================================================*/
@media screen and (max-width: 768px){
	.recommendation {
		padding: 0 15px 50px;
	}

}


/*--------------------------------------------------------------------------
   table
---------------------------------------------------------------------------*/
.table-wrap{
	overflow: hidden;
	border: 1px solid #1b266f;
	border-radius: 5px;
}
.table{
	width: 100%;
	border-radius: 5px;
	border-collapse: collapse;
	background: #fff;
	table-layout: fixed;
}

/* thead */
.table thead{
	background: #bfeaf8;
}
.table th{
	padding: 15px 0;
	vertical-align: middle;
	color: #000;
	font-weight: 300;
}
.table th + th{
	border-left: 1px solid #73d0ef;
}

.table tbody td{
	padding: 20px 10px;
	border: 1px solid #d8e4ef;
	vertical-align: middle;
	font-size: 13px;
}


/* media query -> sp
=================================================================*/
@media screen and (max-width: 768px){
	.table-wrap{
	}
	.table {
		table-layout: auto;
	}

	/* thead */
	.table thead{
	}
	.table th {
		padding: 10px 0;
	}
	.table th:first-child {
		width: 40%;
	}
	.table tbody td{
		padding: 10px 5px;
		font-size: 10px;
	}
}