/* NEWS POST HEADING */
.p-news h1 {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #3D2F24;
}
.p-news .l-news {
	margin: 40px -20px 20px;
	text-align:center;
	background-color: #ebebeb;
	padding: 8px;
	border-bottom: none;
}
.p-news .l-news h1 {
	background-color: #ebebeb;
	border: 1px solid #ffffff;
	padding: 18px;
	text-align: left;
	display: block;
	margin-bottom: 0;
}
.p-news h2 {
	padding: 0 18px;
	margin: 40px 0 20px;
	border-left: 1px solid #3D2F24;
}
.p-news h3 {
	margin: 40px 0 20px;
}
@media print, screen and (min-width: 768px) {
	.p-news h1 {
		padding-bottom: 24px;
		margin-bottom: 30px;
	}
	.p-news .l-news {
		margin: 60px 0 30px;
		text-align:center;
		background-color: #ebebeb;
		padding: 8px;
		border-bottom: none;
	}
	.p-news .l-news h1 {
		padding: 1.125rem;
	}
	.p-news h2 {
		padding: 0 20px;
		margin: 60px 0 30px;
	}
	.p-news h3 {
		margin: 60px 0 30px;
	}
}

/* NEWS POST TAG */
.p-news a {
	text-decoration: underline;
}
.p-news figure {
	margin: 40px 0;
}
.p-news figcaption {
	text-align: center;
	margin-top: 1em;
	font-weight: 400;
}
.p-news ul {
	margin-bottom: 1.25rem;
	margin-left: 1em;
}
.p-news li {
	list-style-type: disc;
	font-size: 16px;
	font-weight: 400;
}
@media print, screen and (min-width: 768px) {
	.p-news figure {
		margin: 60px 0;
	}
	.p-news ul {
		margin-bottom: 30px;
		margin-left: 1em;
	}
}

/* IMAGES 2COL */
.l-img-2col {
	display: flex;
	flex-wrap: wrap;
	margin: 40px auto;
}
.l-img-2col p {
	width: calc(50% - 20px / 2);
	margin-left: 20px;
	margin-top: 20px;
	margin-bottom: 0;
	position: relative;
}
.l-img-2col p img {
	margin-bottom: 0;
}
.l-img-2col p:nth-child(-n+2) {
	margin-top: 0;
}
.l-img-2col p:nth-child(2n+1) {
	margin-left: 0;
}
.l-img-2col span {
	position: absolute;
	bottom: .25em;
	left: .55em;
	z-index:999;
}
@media print, screen and (min-width: 768px) {
	.l-img-2col {
	  margin: 60px auto;
	}
	.l-img-2col p {
	  width: calc(50% - 60px / 2);
	  margin-left: 60px;
	  margin-top: 60px;
	  margin-bottom: 0;
	}
	.l-img-2col p:nth-child(-n+2) {
	  margin-top: 0;
	}
	.l-img-2col p:nth-child(2n+1) {
	  margin-left: 0;
	}
	.l-img-2col span {
	  position: absolute;
	  bottom: .55em;
	  left: 1em;
	}
}

/* TABLE NORMAL */
.p-news table {
	width: 100%;
	table-layout: fixed;
	border-top: 1px solid #c6c6c6;
	font-weight: 400;
	margin: 40px 0;
}
.p-news tr {
	border-bottom: 1px solid #c6c6c6;
	vertical-align: middle;
	text-align:left;
}
.p-news th {
	padding: 1em;
	background-color: #ebebeb;
	border-right: 1px solid #c6c6c6;
	border-left:  1px solid #c6c6c6;
	border-bottom: 1px solid #c6c6c6;
	display: block;
	vertical-align: middle;
}
.p-news td {
	padding: 1em;
	border-right: 1px solid #c6c6c6;
	border-left:  1px solid #c6c6c6;
	display: block;
	vertical-align: middle;
}
@media print, screen and (min-width: 768px) {
	.p-news table {
	  margin: 60px 0;
	}
	.p-news tr {
	  border-bottom: 1px solid #c6c6c6;
	  border-right: 1px solid #c6c6c6;
	  border-left: none;
	}
	.p-news th {
	  width: 25%;
	  border-right: none!important;
	  border-bottom: none!important;
	  display: table-cell;
	}
	.p-news td {
	  width: 75%;
	  border-right: none!important;
	  display: table-cell;
	}
}
/* BASIC TABLE */
.basic-table-head {
	display:none;
}
.basic-table td:before{
	content: attr(data-label);
	font-weight: 700;
	display: inline;
	margin-right: 1em;
	float: left;
}
@media print, screen and (min-width: 768px) {
	.basic-table-head {
	  display: contents;
	}
	.basic-table td:before{
	  display:none;
	}
}

/* TABLE 3COL PC */
.l-3col-pc {
	display: none;
}
tr.l-heading th:first-child {
	background-color: #dbdbdb;
}
tr.l-heading th:not(:first-child) {
	background-color: #dbdbdb;
}
@media print, screen and (min-width: 768px) {
	.l-3col-pc {
	  display: table;
	}
	.p-news table.l-3col-pc {
	  width: 100%;
	  table-layout: fixed;
	  border-top: 1px solid #c6c6c6;
	  font-size: 16px;
	}
	.p-news .l-3col-pc tr {
	  border-bottom: 1px solid #c6c6c6;
	}
	.p-news .l-3col-pc tr.l-3col-pc-heading th:first-child {
	  width: 20%;
	}
	.p-news .l-3col-pc tr.l-3col-pc-heading th:not(:first-child) {
	  width: calc(80% / 2);
	  vertical-align: middle;
	}
	.p-news .l-3col-pc th {
	  width: 20%;
	  padding: 1em;
	  border-left: 1px solid #c6c6c6;
	  background-color: #ebebeb;
	}
	.p-news td {
	  padding: 1em;
	  border-left: 1px solid #c6c6c6;
	  border-right: 1px solid #c6c6c6;
	}
}
/* TABLE 1COL SP */
.p-news .l-1col-sp th {
	border-bottom: none;
}
.p-news .l-1col-sp td:not(:last-child) {
	padding-bottom:0;
}
@media print, screen and (min-width: 768px) {
	.l-1col-sp {
	  display: none;
	}
}
/* TABLE 2COL SP */
.p-news .l-2col-sp table {
	table-layout: inherit;
}
.p-news .l-2col-sp th {
	width: 40%;
	border-right: none;
	display: table-cell;
	border-right: 1px solid #c6c6c6;
}
.p-news .l-2col-sp td {
	width: 60%;
	display: table-cell;
	border-left: none;
}
@media print, screen and (min-width: 768px) {
	.l-2col-sp {
	  display: none;
	}
}