@charset "utf-8";

html {
	overflow-y: scroll;
	-webkit-text-size-adjust: none;
	font-size: 62.5%;
}

body {
	color: #333;
	background-color: #fff;
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', "メイリオ", "Meiryo", "Yu Gothic Medium", "游ゴシック Medium", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 1.0rem;
	line-height: 1.6;
}

main, article, aside, dialog, figure, footer, header, hgroup, nav, section {
	display: block;
}

body, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
	margin: 0px;
	padding: 0px;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}

ul, ol, li {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	border-style: none;
}

button, input, select, textarea {
	font-family: inherit;
	font-size: 100%;
	vertical-align: middle;
}

a {
	color: #000;
	opacity: 1.0;
	text-decoration: none;
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

a:hover {
	color: #999;
	opacity: 0.6;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.marcellus {
	font-family: 'Marcellus', serif;
}

.roboto {
	font-family: 'Roboto', sans-serif;
}

.robotoC {
	font-family: 'Roboto Condensed', sans-serif;
}

.montserrat {
	font-family: 'Montserrat', sans-serif;
}

@media screen and (min-width: 768px), print and (min-width: 0px) {

	header {
		width: 100%;
		background: #fff;
		position: fixed;
		top: 0px;
		left: 0px;
		z-index: 10;
	}

	header > div {
		padding: 0px 5%;
		height: 95px;
		position: relative;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	body:not(.top) header > div {
		border-bottom: 1px #f2f2f2 solid;
	}

	header .logo {
		display: flex;
		align-items: flex-end;
	}

	header h1 {
		margin-right: 30px;
		width: 166px;
		font-size: 0;
		line-height: 0;
	}

	header h1 img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	header h2 {
		color: #999;
		font-size: 1.0rem;
		font-weight: normal;
		line-height: 1.2;
		opacity: 0.5;
	}

	header #hamburger {
		display: none;
	}

	header nav .gNav {
		padding-right: 26px;
		display: flex;
		align-items: center;
	}

	header nav .gNav > li {
		margin-right: 24px;
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 1.4rem;
		font-weight: bold;
		line-height: 1.2;
		letter-spacing: 0.2em;
	}

	header nav .gNav > li a {
		color: #000;
	}

	header .sns {
		width: 5vw;
		right: 0px;
		top: 50vh;
		position: absolute;
		transform: translateY(-50%);
	}

	header .sns li {
		margin: 0px auto 20px;
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 1.0rem;
		font-weight: normal;
		line-height: 1.2;
		letter-spacing: 0.1em;
		text-align: center;
	}

	header .sns li:not(:first-of-type) {
		width: 24px;
	}

	header .sns li:not(:first-of-type) a {
		display: block;
	}

	header .sns li:not(:first-of-type) a img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	header .searchBt {
		width: 18px;
		right: 5vw;
		top: 28px;
		z-index: 1;
		position: absolute;
	}

	header .searchBt a {
		width: 100%;
		height: 40px;
		background: url("common/img/icon_search.svg") no-repeat center center / 16px auto;
		font-size: 0;
		line-height: 0;
		text-indent: -9999px;
		display: block;
	}

	header .search {
		padding: 23px 0px;
		background-color: #fff;
		box-sizing: border-box;
		right: 5vw;
		top: 0px;
		z-index: 2;
		position: absolute;
		text-align: right;
		width: 0px;
		height: 0px;
		opacity: 0;
		transition-property: opacity,width,height;
		transition-duration: 0.5s,0s,0s;
		transition-delay: 0s,0.5s,0.5s;
	}

	header .search.set {
		width: 50vw;
		height: 95px;
		opacity: 1;
		transition-duration: 0.5s,0s,0s;
		transition-delay: 0s,0s,0s;
	}

	header .search input {
		padding: 15px 36px 15px 18px;
		width: 254px;
		background: #f9f9f9 url("common/img/icon_search.svg") no-repeat right 10px center / 16px auto;
		border: 1px #e5e5e5 solid;
		border-radius: 4px;
		box-sizing: content-box;
		font-size: 1.2rem;
		font-weight: normal;
		line-height: 1.5;
		letter-spacing: 0.1em;
		text-align: left;
	}

	main {
		display: block;
		padding: 95px 0px 0px 0px;
		text-align: left;
	}

	#pageTop {
		position: fixed;
		right: 5%;
		bottom: 60px;
		text-align: center;
	}

	#pageTop a {
		width: 70px;
		height: 70px;
		background: #1a1a1a url("common/img/totop.png") no-repeat center center / 30px auto;
		font-size: 0;
		line-height: 0;
		text-indent: -9999px;
		display: block;
	}

	footer {
		margin: 20px 0px 0px 0px;
		background-color: #1a1a1a;
	}

	footer nav {
		padding: 60px 5%;
		background: url("common/img/bg_ft.png") no-repeat center top / cover;
	}

	footer nav ul {
		display: flex;
		border-left: 1px #404040 solid;
	}

	footer nav ul li {
		width: 25%;
		border-right: 1px #404040 solid;
		font-size: 1.2rem;
		line-height: 1.5;
		text-align: center;
		letter-spacing: 0.05em;
		box-sizing: border-box;
	}

	footer nav ul li a,
	footer nav ul li a:hover {
		padding: 10px 10px;
		display: block;
		color: #555;
		transition-property: color;
	}

	footer nav ul li a:hover {
		color: #fff;
		opacity: 1;
	}

	footer nav ul li .en {
		margin: 0px auto 2px;
		color: #ccc;
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 1.6rem;
		font-weight: bold;
		letter-spacing: 0.2em;
		transition-property: color;
	}

	footer nav ul li a:hover .en {
		color: #fff;
	}

	footer #foot {
		padding: 0px 5%;
	}

	footer #ftT {
		padding: 46px 0px 36px;
		text-align: center;
	}

	footer #ftT h1 {
		margin: 0px auto 12px;
		width: 144px;
		font-size: 0;
		line-height: 0;
	}

	footer #ftT h1 a {
		display: block;
	}

	footer #ftT h1 a:hover {
		opacity: 1;
	}

	footer #ftT h1 img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	footer #ftT h2 {
		color: #999;
		font-size: 1.0rem;
		line-height: 1.2;
	}

	footer #ftM {
		padding: 20px 0px;
		border-top: 1px #2b2b2b solid;
		border-bottom: 1px #2b2b2b solid;
		text-align: center;
		display: flex;
	}

	footer #ftM ul {
		width: 50%;
		height: 58px;
		display: flex;
		justify-content: center;
		align-items: center;
		box-sizing: border-box;
	}

	footer #ftM ul.others {
		border-right: 1px #2b2b2b solid;
	}

	footer #ftM ul.others li {
		margin: 0px 20px;
		font-size: 1.2rem;
		line-height: 1.2;
	}

	footer #ftM ul.others li a {
		color: #555;
		transition-property: color;
	}

	footer #ftM ul.others li a:hover {
		color: #fff;
		opacity: 1;
	}

	footer #ftM ul.sns li {
		margin: 0px 10px;
		color: #999;
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 1.0rem;
		font-weight: normal;
		line-height: 1.2;
		letter-spacing: 0.15em;
		text-align: center;
	}

	footer #ftM ul.sns li:not(:first-of-type) {
		width: 24px;
	}

	footer #ftM ul.sns li:not(:first-of-type) a {
		display: block;
	}

	footer #ftM ul.sns li:not(:first-of-type) a:hover {
		opacity: 1;
	}

	footer #ftM ul.sns li:not(:first-of-type) a img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	footer #ftB {
		padding: 30px 0px;
		align-items: center;
		justify-content: space-between;
		display: flex;
	}

	footer #ftB > div a {
		display: block;
	}

	footer #ftB > div a:hover {
		opacity: 1;
	}

	footer #ftB dl {
		height: 20px;
		align-items: center;
		display: flex;
	}

	footer #ftB dl dt {
		margin-right: 20px;
		padding-right: 20px;
		border-right: 1px #2b2b2b solid;
		width: 86px;
	}

	footer #ftB dl dt img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	footer #ftB dl dd {
		color: #666;
		font-size: 1.0rem;
		font-weight: normal;
		line-height: 1.2;
		letter-spacing: 0.075em;
	}

	footer #ftB .copy {
		color: #666;
		font-family: 'Roboto', sans-serif;
		font-size: 1.0rem;
		font-weight: normal;
		line-height: 1.2;
		letter-spacing: 0.1em;
	}

	#topMv {
		padding: 0px 5% 50px;
	}

	#topMv > div {
		height: calc(100vh - 95px - 50px);
		background-color: #1a1a1a;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#topMv > div::after {
		content: "";
		width: 2px;
		height: 50px;
		background-color: #fff;
		font-size: 0;
		line-height: 0;
		text-indent: -9999px;
		display: block;
		left: 50%;
		bottom: 0px;
		position: absolute;
		transform: translateX(-50%);
	}

	#topMv h1 {
		margin: 0px auto 30px;
		width: 260px;
		font-size: 0;
		line-height: 0;
	}

	#topMv h1 img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	#topMv h2 {
		margin: 0px auto 100px;
		color: #fff;
		font-size: 1.4rem;
		font-weight: normal;
		line-height: 1.1;
		letter-spacing: 0.1em;
		text-align: center;
	}

	#topMv p {
		color: #fff;
		font-size: 1.3rem;
		font-weight: normal;
		line-height: 1.1;
		letter-spacing: 0.1em;
		text-align: center;
	}

	.listSec {
		margin: 0px auto;
		padding: 20px 5%;
		border-bottom: 1px #eee solid;
	}

	.listSec:last-of-type {
		border-bottom: none;
	}

	.listSec h1 {
		padding: 52px 0px;
		color: #000;
		font-family: 'Montserrat', sans-serif;
		font-size: 3.0rem;
		font-weight: 500;
		line-height: 1.2;
		text-align: center;
		letter-spacing: 0.1em;
	}

	.listSec > div {
		margin: 0px auto;
		max-width: 1260px;
		justify-content: flex-start;
		flex-wrap: wrap;
		display: flex;
	}

	.listSec > div article {
		max-width: 401px;
		width: calc((100% - 90px) / 3);
		margin: 0px 15px 52px;
	}

	.listSec > div article a {
		display: block;
		position: relative;
	}

	.listSec.ranking > div article a::after {
		padding: 5px 0px;
		width: 40px;
		background: #000;
		color: #fff;
		font-family: 'Montserrat', sans-serif;
		font-size: 2.4rem;
		font-weight: 500;
		line-height: 3.0rem;
		text-align: center;
		display: block;
		left: 0px;
		top: 0px;
		position: absolute;
	}

	.listSec.ranking > div article:nth-of-type(1) a::after {
		content: "1";
	}

	.listSec.ranking > div article:nth-of-type(2) a::after {
		content: "2";
	}

	.listSec.ranking > div article:nth-of-type(3) a::after {
		content: "3";
	}

	.listSec.ranking > div article:nth-of-type(4) a::after {
		content: "4";
	}

	.listSec.ranking > div article:nth-of-type(5) a::after {
		content: "5";
	}

	.listSec > div article a figure {
		font-size: 0px;
		overflow: hidden;
		position: relative;
	}

	.listSec > div article a:hover figure {
		background: #000;
	}

	.listSec > div article a figure img {
		width: 100%;
		height: auto;
	}

	.listSec > div article a figure img {
		opacity: 1;
		transform: scale(1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-property: transform,opacity;
		transition-duration: 0.4s;
	}

	.listSec > div article a:hover figure img {
		opacity: 0.8;
		transform: scale(1.08);
		transition-duration: 0.8s;
	}

	.listSec > div article a h2 {
		margin: 25px 0px 10px;
		color: #333;
		font-size: 1.8rem;
		line-height: 3.0rem;
		letter-spacing: 0.05em;
	}

	.listSec > div article a .date {
		color: #ccc;
		font-family: 'Roboto', sans-serif;
		font-size: 1.1rem;
		letter-spacing: 0.1em;
	}

	.listSec .more {
		width: 300px;
		margin: 0px auto 50px;
		text-align: center;
	}

	.listSec .more a {
		padding: 15px 0px 14px;
		background: #fff;
		border: 2px #000 solid;
		color: #000;
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 1.4rem;
		font-weight: bold;
		line-height: 1.5;
		letter-spacing: 0.2em;
		display: block;
		transition-property: background,color;
		transition-duration: 0.5s;
	}

	.listSec .more a:hover {
		background: #000;
		color: #fff;
		opacity: 1;
	}

	.listSec .banner {
		margin: 0px auto 50px;
		width: 100%;
		text-align: center;
	}

	.listSec p.banner {
		max-width: 900px;
	}

	.listSec ul.banner {
		max-width: 680px;
		justify-content: space-between;
		display: flex;
	}

	.listSec ul.banner li {
		width: calc(50% - 40px);
	}

	.listSec .banner a {
		display: block;
	}

	.listSec .banner img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	#sectionH {
		padding: 0px 5%;
		height: 340px;
		align-items: center;
		justify-content: center;
		display: flex;
	}

	#sectionH > div {
		margin: 0px auto;
	}

	#sectionH h1 {
		color: #000;
		font-family: 'Marcellus', "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝YuMincho", "游明朝体", "ＭＳ Ｐ明朝", serif;
		font-size: 3.6rem;
		font-weight: normal;
		line-height: 1.6;
		letter-spacing: 0.2em;
		text-align: center;
	}

	#sectionH .search {
		margin: 10px auto 0px;
		color: #999;
		font-size: 1.4rem;
		font-weight: normal;
		line-height: 1.2;
		letter-spacing: 0.05em;
		text-align: center;
	}

	#sectionH .date {
		margin: 10px auto 0px;
		color: #999;
		font-size: 1.2rem;
		font-weight: normal;
		line-height: 1.2;
		letter-spacing: 0.05em;
		text-align: center;
	}

	#sectionH .sub {
		margin: 12px auto 0px;
		color: #999;
		font-family: 'Marcellus', "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝YuMincho", "游明朝体", "ＭＳ Ｐ明朝", serif;
		font-size: 2.4rem;
		font-weight: normal;
		line-height: 1.25;
		letter-spacing: 0.05em;
		text-align: center;
	}

	#topicPath {
		padding: 0px 5% 70px;
	}

	#topicPath > ul {
		margin: 0px auto;
		align-items: flex-start;
		flex-wrap: wrap;
		display: flex;
	}

	#topicPath > ul li {
		margin-right: 1em;
		color: #999;
		font-size: 1.1rem;
		font-weight: normal;
		line-height: 2.0rem;
		letter-spacing: 0.05em;
	}

	#topicPath > ul li a {
		color: #999;
	}

	.pagination {
		display: flex;
		align-items: center;
		justify-content: center;
		max-width: 1260px;
		margin: 30px auto 30px;
		padding: 30px 20px;
		box-sizing: border-box;
	}

	.pagination li {
		display: block;
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 1.6rem;
		line-height: 2.0rem;
	}

	.pagination li:first-of-type,
	.pagination li:last-of-type {
		width: 120px;
	}

	.pagination li:first-of-type {
		text-align: right;
	}

	.pagination li:last-of-type {
		text-align: left;
	}

	.pagination li a,
	.pagination li span {
		text-align: center;
		display: block;
	}

	.pagination li a {
		padding: 10px 0px;
		width: 40px;
		background: #fff;
		border: #e6e6e6 1px solid;
		color: #333;
	}

	.pagination li .prev {
		padding: 10px 40px 10px 35px;
		width: auto;
		border: none;
		font-size: 1.4rem;
	}

	.pagination li .next {
		padding: 10px 35px 10px 40px;
		width: auto;
		border: none;
		font-size: 1.4rem;
	}

	.pagination li a:not(.prev):not(.next):hover {
		background: #333;
		border: #000 1px solid;
		color: #fff;
		opacity: 1;
	}

	.pagination li .current {
		padding: 10px 0px;
		width: 40px;
		background: #333;
		border: #000 1px solid;
		color: #fff;
	}

	.pagination li .dots {
		padding: 10px 0px;
		color: #333;
	}

	.pagination li .placeholder {
		visibility: hidden;
	}

	.colW {
		display: flex;
		align-items: flex-start;
		margin: 0px auto;
		padding: 0px 5%;
		max-width: 1260px;
	}

	.colW .main {
		flex: 1;
	}

	.colW aside {
		margin-left: 70px;
		width: 300px;
	}

	.asideH {
		border-bottom: 1px #e5e5e5 solid;
	}

	.asideH .banner {
		font-size: 0;
		line-height: 0;
	}

	.asideH .banner a {
		display: block;
	}

	.asideH .banner img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	.asideH .aboutAd {
		padding: 16px 0px 32px;
		font-size: 1.0rem;
		line-height: 1.2;
		letter-spacing: 0;
		text-align: center;
	}

	.asideH .aboutAd a {
		color: #ccc;
	}

	.asideList {
		border-bottom: 1px #e5e5e5 solid;
	}

	.asideList h1 {
		padding: 28px 0px;
		color: #000;
		font-family: 'Montserrat', sans-serif;
		font-size: 1.6rem;
		font-weight: 500;
		line-height: 1.2;
		text-align: center;
		letter-spacing: 0.15em;
	}

	.asideList > div article {
		margin: 0px 0px 16px;
	}

	.asideList > div article a {
		min-height: 56px;
		display: block;
		position: relative;
	}

	.asideList.ranking > div article a::after {
		padding: 2px 0px;
		width: 20px;
		background: #000;
		color: #fff;
		font-family: 'Roboto', sans-serif;
		font-size: 1.2rem;
		font-weight: bold;
		line-height: 1.6rem;
		text-align: center;
		display: block;
		left: 0px;
		top: 0px;
		position: absolute;
	}

	.asideList.ranking > div article:nth-of-type(1) a::after {
		content: "1";
	}

	.asideList.ranking > div article:nth-of-type(2) a::after {
		content: "2";
	}

	.asideList.ranking > div article:nth-of-type(3) a::after {
		content: "3";
	}

	.asideList.ranking > div article:nth-of-type(4) a::after {
		content: "4";
	}

	.asideList.ranking > div article:nth-of-type(5) a::after {
		content: "5";
	}

	.asideList > div article a figure {
		width: 100px;
		font-size: 0px;
		overflow: hidden;
		left: 0px;
		top: 0px;
		position: absolute;
	}

	.asideList > div article a figure img {
		width: 100%;
		height: auto;
	}

	.asideList > div article a h2 {
		padding: 0px 0px 0px 114px;
		color: #444;
		font-size: 1.2rem;
		line-height: 2.0rem;
		letter-spacing: 0.1em;
		text-align: left;
	}

	.main .eyecatch {
		margin: 0px 0px 20px;
		width: 100%;
		font-size: 0;
		line-height: 0;
	}

	.main .eyecatch img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	.main .snsshare {
		margin: 20px 0;
		padding: 10px;
		width: 100%;
		background: #f1f1f1;
		align-items: center;
		display: flex;
		box-sizing: border-box;
	}

	.main .snsshare li {
		margin-right: 10px;
	}

	.main .snsshare li iframe {
		vertical-align: top;
	}

	.main .banner {
		margin: 20px 0;
		font-size: 0;
		line-height: 0;
	}

	.main .banner a {
		display: block;
	}

	.main .banner img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	#ctsBody {
		padding: 30px 40px 70px;
		font-size: 1.5rem;
		line-height: 2.0;
		text-align: left;
	}

	#ctsBody:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	#ctsBody a {
		color: #bfa944;
		font-weight: bold;
	}

	#ctsBody p {
		letter-spacing: 0.1em;
		display: block;
	}

	#ctsBody strong {
		font-weight: bold;
	}
	
	#ctsBody em {
		font-style: italic;
	}
	
	#ctsBody blockquote {
		display: block;
		-webkit-margin-before: 1em;
		-webkit-margin-after: 1em;
		-webkit-margin-start: 40px;
		-webkit-margin-end: 40px;
	}

	#ctsBody ul li {
		letter-spacing: 0.1em;
	}

	#ctsBody ul li span {
		font-weight: bold;
	}

	#ctsBody ul.tagNavi{
		padding: 0 0 35px;
		display: flex;
	}

	#ctsBody ul.tagNavi li {
		margin: 0 10px 10px 0;
		width: 200px;
		font-size: 1.5rem;
		font-weight: bold;
		line-height: 2.0;
		text-align: center;
	}

	#ctsBody ul.tagNavi li a {
		padding: 10px 0;
		background-color: #a6933b;
		color: #fff;
		display: block;
	}
	
	#ctsBody .mb {
		margin-bottom: 30px;
	}

	#ctsBody h2 {
		margin: 80px -40px 40px;
		padding: 20px 40px;
		border-top: 1px #000 solid;
		border-bottom: 1px #000 solid;
		font-size: 2.4rem;
		font-weight: normal;
		line-height: 1.3;
		letter-spacing: 0.15em;
		position: relative;
	}
	
	#ctsBody h2::before,
	#ctsBody h2::after {
		content: "";
		width: 100%;
		height: 5px;
		background-color: #e5e5e5;
		font-size: 0;
		line-height: 0;
		text-indent: -9999px;
		display: block;
		left: 0px;
		position: absolute;
	}
	
	#ctsBody h2::before {
		top: 0px;
	}

	#ctsBody h2::after {
		bottom: 0px;
	}

	#ctsBody h3 {
		margin: 40px 0px 30px;
		padding: 19px 20px;
		background-color: #ebebeb;
		font-size: 2.0rem;
		font-weight: normal;
		line-height: 1.6;
		letter-spacing: 0.15em;
	}
	
	#ctsBody ol.lNavi {
		margin: 0px 40px;
		padding-bottom: 30px;
	}

	#ctsBody ol.lNavi li {
		margin-bottom: 10px;
		list-style: decimal;
		font-size: 1.6rem;
		font-weight: bold;
		line-height: 1.6;
		letter-spacing: 0.1em;
	}
	
	#ctsBody .list ul {
		border-top: 1px #e5e5e5 solid;
	}
	
	#ctsBody .list ul li {
		border-bottom: 1px #e5e5e5 solid;
		align-items: flex-start;
		display: flex;
	}
	
	#ctsBody .list ul li h3 {
		margin: 0;
		padding: 10px 0;
		width: 4em;
		background: none;
		font-family: 'Montserrat', sans-serif;
		font-size: 3.0rem;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0.1em;
	}
	
	#ctsBody .list ul li dl {
		flex: 1;
	}
	
	#ctsBody .list dl {
		padding: 5px 0;
	}
	
	#ctsBody .list dl div {
		padding: 5px 0;
		align-items: flex-start;
		display: flex;
	}
	
	#ctsBody .list dl dt,
	#ctsBody .list dl dd {
		font-size: 1.5rem;
		line-height: 2.0;
	}
	
	#ctsBody .list dl dt {
		margin-right: 1em;
		width: 20%;
		font-weight: bold;
	}
	
	#ctsBody .list.css dl dt {
		width: 40%;
	}
	
	#ctsBody .list dl dd {
		font-weight: normal;
		flex: 1;
	}
	
	#ctsBody .alignnone {
		margin: 0px 0px 30px;
	}
	
	#ctsBody .alignleft {
		float: left;
	}
	
	#ctsBody .aligncenter {
		margin: 0px auto 30px;
	}
	
	#ctsBody .alignright {
		float: right;
	}
	
	#ctsBody .size-full {
		width: 100%;
		height: auto;
	}

	#ctsBody pre {
		margin: 30px 0;
		padding: 20px;
		background-color: #535353;
		color: #fff;
		white-space: pre-wrap;
		user-select:all !important;
		-moz-user-select:all !important;
		-webkit-user-select:all !important;
		-khtml-user-select:all !important;
	}
	
	.main .prevNext {
		display: flex;
	}
	
	.main .prevNext li {
		width: 50%;
		border: #eee 1px solid;
		box-sizing: border-box;
		font-size: 1.6rem;
		line-height: 80px;
	}
	
	.main .prevNext li.next {
		text-align: right;
	}
	
	.main .prevNext li a {
		display: block;
		height: 80px;
		color: #444;
		overflow: hidden;
	}
	
	.main .prevNext li.prev a {
		padding: 0px 20px 0px 60px;
		background: url("common/img/icon_prev2.svg") no-repeat 5% 50% / 25px auto;
	}
	
	.main .prevNext li.next a {
		padding: 0px 60px 0px 20px;
		background: url("common/img/icon_next2.svg") no-repeat 95% 50% / 25px auto;
	}
	
	.main .prevNext li.prev a:hover {
		background: #f4f4f4 url("common/img/icon_prev2.svg") no-repeat 5% 50% / 25px auto;
	}
	
	.main .prevNext li.next a:hover {
		background: #f4f4f4 url("common/img/icon_next2.svg") no-repeat 95% 50% / 25px auto;
	}
	
	.main .related {
		margin: 55px 0px 0px 0px;
	}
	
	.main .related h1 {
		color: #000;
		font-family: 'Montserrat', sans-serif;
		font-size: 2.6rem;
		font-weight: 500;
		line-height: 1.2;
		text-align: center;
		letter-spacing: 0.1em;
	}
	
	.main .related > div {
		margin: 30px -10px 0px;
		padding: 0px 0px 60px;
		display: flex;
	}
	
	.main .related > div article {
		width: calc((100% - 60px) / 3);
		margin: 0px 10px 30px;
	}
	
	.main .related > div article a {
		display: block;
	}
	
	.main .related > div article a figure {
		font-size: 0px;
		overflow: hidden;
		position: relative;
	}
	
	.main .related > div article a:hover figure {
		background: #000;
	}
	
	.main .related > div article a figure img {
		width: 100%;
		height: auto;
	}
	
	.main .related > div article a figure img {
		opacity: 1;
		transform: scale(1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-property: transform,opacity;
		transition-duration: 0.4s;
	}
	
	.main .related > div article a:hover figure img {
		opacity: 0.8;
		transform: scale(1.08);
		transition-duration: 0.8s;
	}
	
	.main .related > div article a h2 {
		margin: 10px 0px 0px 0px;
		font-size: 1.4rem;
		font-weight: normal;
		color: #444;
	}
	
	

	.flgP {
		display: block !important;
	}

	.flgS {
		display: none !important;
	}

}

@media screen and (max-width: 767px) {

	header {
		width: 100%;
		background: #fff;
		position: fixed;
		top: 0px;
		left: 0px;
		z-index: 10;
	}

	header > div {
		padding: 0px 25px;
		height: 60px;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	body:not(.top) header > div {
		border-bottom: 1px #f2f2f2 solid;
	}

	header .logo {
		display: flex;
		align-items: flex-end;
	}

	header h1 {
		margin-right: 10px;
		width: 100px;
		font-size: 0;
		line-height: 0;
	}

	header h1 img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	header h2 {
		color: #999;
		font-size: 1.0rem;
		font-weight: normal;
		line-height: 1.2;
		text-align: left;
		opacity: 0.5;
	}

	header #hamburger {
		width: 34px;
		height: 17px;
		position: absolute;
		top: 23px;
		right: 25px;
		z-index: 102;
	}

	header #hamburger:hover {
		cursor: pointer;
	}

	header #hamburger .line01 {
		width: 34px;
		height: 1px;
		background: #000;
		position: absolute;
		top: 0px;
		right: 0px;
	}

	header #hamburger .line02 {
		width: 34px;
		height: 1px;
		background: #000;
		position: absolute;
		top: 8px;
		right: 0px;
	}

	header #hamburger .line03 {
		width: 34px;
		height: 1px;
		background: #000;
		position: absolute;
		top: 16px;
		right: 0px;
	}

	header #hamburger li {
		transition: all 0.5s ease-out;
	}

	header.open #hamburger .line01 {
		top: 8px;
		transform: rotate(405deg);
	}

	header.open #hamburger .line02 {
		opacity: 0;
	}

	header.open #hamburger .line03 {
		top: 8px;
		transform: rotate(-405deg);
	}

	header #gMenu {
		width: 100%;
		height: calc(100% - 60px);
		background: #fff;
		position: fixed;
		top: 60px;
		left: 100%;
		z-index: 101;
		overflow: scroll;
	}

	header nav .gNav {
		border-top: #ccc 1px solid;
	}

	header nav .gNav > li {
		border-bottom: #ccc 1px solid;
		font-family: 'Roboto Condensed', sans-serif;
		font-weight: bold;
		font-size: 1.5rem;
		letter-spacing: 0.2em;
		text-align: left;
	}

	header nav .gNav > li a {
		padding: 15px 25px;
		color: #000;
		display: block;
	}

	header .sns {
		margin: 0px 25px;
		display: flex;
		align-items: center;
	}

	header .sns li {
		margin: 0px 15px 0px 0px;
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 1.0rem;
		font-weight: normal;
		line-height: 1.2;
		letter-spacing: 0.1em;
		text-align: left;
	}

	header .sns li:not(:first-of-type) {
		width: 28px;
	}

	header .sns li:not(:first-of-type) a {
		display: block;
	}

	header .sns li:not(:first-of-type) a img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	header .searchBt {
		display: none !important;
	}

	header .search {
		padding: 20px 25px;
	}

	header .search input {
		padding: 15px 36px 15px 18px;
		width: 100%;
		background: #f9f9f9 url("common/img/icon_search.svg") no-repeat right 10px center / 16px auto;
		border: 1px #e5e5e5 solid;
		border-radius: 4px;
		box-sizing: border-box;
		font-size: 1.6rem;
		font-weight: normal;
		line-height: 1.5;
		letter-spacing: 0.1em;
		text-align: left;
	}

	header .search input::placeholder {
		color: #aaa;
	}

	header #gMenu {
		transition-property: opacity, transform;
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-duration: 1.0s;
		opacity: 0.1;
	}

	header.open  #gMenu {
		transform: translateX(-100%);
		opacity: 1.0;
	}

	header nav .gNav > li,
	header .sns,
	header .search {
		transform: translateX(50px);
		transition-property: opacity, transform;
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-duration: 0.8s;
		opacity: 0;
	}

	header nav .gNav > li:nth-of-type(1)  {
		transition-delay: 0.7s;
	}

	header nav .gNav > li:nth-of-type(2) {
		transition-delay: 0.8s;
	}

	header nav .gNav > li:nth-of-type(3) {
		transition-delay: 0.9s;
	}

	header nav .gNav > li:nth-of-type(4) {
		transition-delay: 1.0s;
	}

	header .sns {
		transition-delay: 1.4s;
	}

	header .search {
		transition-delay: 1.2s;
	}

	header.open nav .gNav > li,
	header.open .sns,
	header.open .search {
		transform: translateX(0px);
		opacity: 1;
	}

	main {
		display: block;
		padding: 60px 0px 0px 0px;
		text-align: left;
	}

	#pageTop {
		position: fixed;
		right: 25px;
		bottom: 60px;
		text-align: center;
		display: none;
	}

	#pageTop a {
		width: 50px;
		height: 50px;
		background: #1a1a1a url("common/img/totop.png") no-repeat center center / 20px auto;
		font-size: 0;
		line-height: 0;
		text-indent: -9999px;
		display: block;
	}

	footer {
		margin: 20px 0px 0px 0px;
		background-color: #1a1a1a;
	}

	footer nav {
		padding: 30px 25px;
		background: url("common/img/bg_ft.png") no-repeat center top / cover;
	}

	footer nav ul {
		border-top: 1px #404040 solid;
	}

	footer nav ul li {
		border-bottom: 1px #404040 solid;
		font-size: 1.2rem;
		line-height: 1.5;
		text-align: left;
		letter-spacing: 0.05em;
		box-sizing: border-box;
	}

	footer nav ul li a,
	footer nav ul li a:hover {
		padding: 10px 10px;
		display: block;
		color: #555;
		transition-property: color;
	}

	footer nav ul li a:hover {
		color: #fff;
		opacity: 1;
	}

	footer nav ul li .en {
		margin: 0px auto 2px;
		color: #ccc;
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 1.6rem;
		font-weight: bold;
		letter-spacing: 0.2em;
		transition-property: color;
	}

	footer nav ul li a:hover .en {
		color: #fff;
	}

	footer #foot {
		padding: 0px 25px;
	}

	footer #ftT {
		padding: 26px 0px 26px;
		text-align: center;
	}

	footer #ftT h1 {
		margin: 0px auto 12px;
		width: 144px;
		font-size: 0;
		line-height: 0;
	}

	footer #ftT h1 a {
		display: block;
	}

	footer #ftT h1 a:hover {
		opacity: 1;
	}

	footer #ftT h1 img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	footer #ftT h2 {
		color: #999;
		font-size: 1.0rem;
		line-height: 1.2;
	}

	footer #ftM {
		border-top: 1px #2b2b2b solid;
		border-bottom: 1px #2b2b2b solid;
		text-align: center;
	}

	footer #ftM ul.others {
		padding: 20px 0px 0px;
		border-bottom: 1px #2b2b2b solid;
	}

	footer #ftM ul.others li {
		margin: 0px 0px 20px;
		font-size: 1.2rem;
		line-height: 1.2;
	}

	footer #ftM ul.others li a {
		color: #555;
		transition-property: color;
	}

	footer #ftM ul.others li a:hover {
		color: #fff;
		opacity: 1;
	}

	footer #ftM ul.sns {
		padding: 20px 0px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	footer #ftM ul.sns li {
		margin: 0px 10px;
		color: #999;
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 1.0rem;
		font-weight: normal;
		line-height: 1.2;
		letter-spacing: 0.15em;
		text-align: center;
	}

	footer #ftM ul.sns li:not(:first-of-type) {
		width: 24px;
	}

	footer #ftM ul.sns li:not(:first-of-type) a {
		display: block;
	}

	footer #ftM ul.sns li:not(:first-of-type) a:hover {
		opacity: 1;
	}

	footer #ftM ul.sns li:not(:first-of-type) a img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	footer #ftB {
		padding: 0px 0px 30px;
		text-align: center;
	}

	footer #ftB > div {
		padding: 30px 0px 20px;
	}

	footer #ftB > div a {
		display: block;
	}

	footer #ftB > div a:hover {
		opacity: 1;
	}

	footer #ftB dl {
		height: 20px;
		align-items: center;
		justify-content: center;
		display: flex;
	}

	footer #ftB dl dt {
		margin-right: 20px;
		padding-right: 20px;
		border-right: 1px #2b2b2b solid;
		width: 86px;
	}

	footer #ftB dl dt img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	footer #ftB dl dd {
		color: #666;
		font-size: 1.0rem;
		font-weight: normal;
		line-height: 1.2;
		letter-spacing: 0.075em;
	}

	footer #ftB .copy {
		color: #666;
		font-family: 'Roboto', sans-serif;
		font-size: 1.0rem;
		font-weight: normal;
		line-height: 1.2;
		letter-spacing: 0.1em;
	}

	#topMv {
		padding: 0px 25px 25px;
	}

	#topMv > div {
		height: calc(100vh - 60px - 25px);
		background-color: #1a1a1a;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#topMv > div::after {
		content: "";
		width: 2px;
		height: 50px;
		background-color: #fff;
		font-size: 0;
		line-height: 0;
		text-indent: -9999px;
		display: block;
		left: 50%;
		bottom: 0px;
		position: absolute;
		transform: translateX(-50%);
	}

	#topMv h1 {
		margin: 0px auto 30px;
		width: 200px;
		font-size: 0;
		line-height: 0;
	}

	#topMv h1 img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	#topMv h2 {
		margin: 0px auto 100px;
		color: #fff;
		font-size: 1.4rem;
		font-weight: normal;
		line-height: 1.1;
		letter-spacing: 0.1em;
		text-align: center;
	}

	#topMv p {
		color: #fff;
		font-size: 1.3rem;
		font-weight: normal;
		line-height: 1.1;
		letter-spacing: 0.1em;
		text-align: center;
	}

	.listSec {
		margin: 0px auto;
		padding: 20px 25px;
		border-bottom: 1px #eee solid;
	}

	.listSec:last-of-type {
		border-bottom: none;
	}

	.listSec h1 {
		padding: 26px 0px;
		color: #000;
		font-family: 'Montserrat', sans-serif;
		font-size: 2.4rem;
		font-weight: 500;
		line-height: 1.2;
		text-align: center;
		letter-spacing: 0.1em;
	}

	.listSec > div article {
		width:100%;
		margin: 0px 0px 26px;
	}

	.listSec > div article a {
		display: block;
		position: relative;
	}

	.listSec.ranking > div article a::after {
		padding: 5px 0px;
		width: 40px;
		background: #000;
		color: #fff;
		font-family: 'Montserrat', sans-serif;
		font-size: 2.4rem;
		font-weight: 500;
		line-height: 3.0rem;
		text-align: center;
		display: block;
		left: 0px;
		top: 0px;
		position: absolute;
	}

	.listSec.ranking > div article:nth-of-type(1) a::after {
		content: "1";
	}

	.listSec.ranking > div article:nth-of-type(2) a::after {
		content: "2";
	}

	.listSec.ranking > div article:nth-of-type(3) a::after {
		content: "3";
	}

	.listSec.ranking > div article:nth-of-type(4) a::after {
		content: "4";
	}

	.listSec.ranking > div article:nth-of-type(5) a::after {
		content: "5";
	}

	.listSec > div article a figure {
		font-size: 0px;
		overflow: hidden;
		position: relative;
	}

	.listSec > div article a figure img {
		width: 100%;
		height: auto;
	}

	.listSec > div article a h2 {
		margin: 14px 0px 10px;
		color: #333;
		font-size: 1.5rem;
		line-height: 2.4rem;
		letter-spacing: 0.05em;
	}

	.listSec > div article a .date {
		color: #ccc;
		font-family: 'Roboto', sans-serif;
		font-size: 1.1rem;
		letter-spacing: 0.1em;
	}

	.listSec .more {
		margin: 0px auto 50px;
		width: 100%;
		max-width: 300px;
		text-align: center;
	}

	.listSec .more a {
		padding: 15px 0px 14px;
		background: #fff;
		border: 2px #000 solid;
		color: #000;
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 1.4rem;
		font-weight: bold;
		line-height: 1.5;
		letter-spacing: 0.2em;
		display: block;
		transition-property: background,color;
		transition-duration: 0.5s;
	}

	.listSec .banner {
		margin: 0px auto 20px;
		width: 100%;
		text-align: center;
	}

	.listSec p.banner {
		margin: 0px 0px 20px;
	}

	.listSec ul.banner li {
		margin: 0px 0px 20px;
	}

	.listSec .banner a {
		display: block;
	}

	.listSec .banner img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	#sectionH {
		padding: 60px 25px;
	}

	#sectionH > div {
		margin: 0px auto;
	}

	#sectionH h1 {
		color: #000;
		font-family: 'Marcellus', "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝YuMincho", "游明朝体", "ＭＳ Ｐ明朝", serif;
		font-size: 2.4rem;
		font-weight: normal;
		line-height: 1.6;
		letter-spacing: 0.2em;
		text-align: center;
	}

	#sectionH .search {
		margin: 10px auto 0px;
		color: #999;
		font-size: 1.4rem;
		font-weight: normal;
		line-height: 1.2;
		letter-spacing: 0.05em;
		text-align: center;
	}

	#sectionH .date {
		margin: 10px auto 0px;
		color: #999;
		font-size: 1.2rem;
		font-weight: normal;
		line-height: 1.2;
		letter-spacing: 0.05em;
		text-align: center;
	}

	#topicPath {
		padding: 0px 25px 10px;
	}

	#topicPath > ul {
		margin: 0px auto;
		align-items: flex-start;
		flex-wrap: wrap;
		display: flex;
	}

	#topicPath > ul li {
		margin-right: 1em;
		color: #999;
		font-size: 1.1rem;
		font-weight: normal;
		line-height: 2.0rem;
		letter-spacing: 0.05em;
	}

	#topicPath > ul li a {
		color: #999;
	}


	.pagination {
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 30px auto;
		padding: 30px 0px;
	}

	.pagination li {
		display: block;
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 1.6rem;
		line-height: 2.0rem;
	}

	.pagination li:first-of-type,
	.pagination li:last-of-type {
		width: calc(50% - 20px);
	}

	.pagination li:first-of-type {
		text-align: left;
	}

	.pagination li:last-of-type {
		text-align: right;
	}

	.pagination li a,
	.pagination li span {
		text-align: center;
		display: none;
	}

	.pagination li a {
		padding: 10px 0px;
		width: 40px;
		background: #fff;
		border: #e6e6e6 1px solid;
		color: #333;
	}

	.pagination li .prev {
		padding: 10px 40px 10px 35px;
		width: auto;
		border: none;
		font-size: 1.4rem;
		display: block;
	}

	.pagination li .next {
		padding: 10px 35px 10px 40px;
		width: auto;
		border: none;
		font-size: 1.4rem;
		display: block;
	}

	.pagination li .current {
		padding: 10px 0px;
		width: 40px;
		background: #333;
		border: #000 1px solid;
		color: #fff;
		display: block;
	}

	.pagination li .dots {
		padding: 10px 0px;
		color: #333;
	}

	.pagination li .placeholder {
		visibility: hidden;
	}

	.colW aside {
		padding-top: 40px;
		padding-bottom: 60px;
		border-top: 1px #e5e5e5 solid;
	}

	.asideH {
		padding: 20px 25px;
		border-bottom: 1px #e5e5e5 solid;
	}

	.asideH .banner {
		font-size: 0;
		line-height: 0;
	}

	.asideH .banner a {
		display: block;
	}

	.asideH .banner img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	.asideH .aboutAd {
		padding: 16px 0px 32px;
		font-size: 1.0rem;
		line-height: 1.2;
		letter-spacing: 0;
		text-align: center;
	}

	.asideH .aboutAd a {
		color: #ccc;
	}

	.asideList {
		padding: 20px 25px;
		border-bottom: 1px #e5e5e5 solid;
	}

	.asideList h1 {
		padding: 26px 0px;
		color: #000;
		font-family: 'Montserrat', sans-serif;
		font-size: 1.6rem;
		font-weight: 500;
		line-height: 1.2;
		text-align: center;
		letter-spacing: 0.15em;
	}

	.asideList > div article {
		width:100%;
		margin: 0px 0px 26px;
	}

	.asideList > div article a {
		display: block;
		position: relative;
	}

	.asideList.ranking > div article a::after {
		padding: 5px 0px;
		width: 40px;
		background: #000;
		color: #fff;
		font-family: 'Roboto', sans-serif;
		font-size: 2.4rem;
		font-weight: bold;
		line-height: 3.0rem;
		text-align: center;
		display: block;
		left: 0px;
		top: 0px;
		position: absolute;
	}

	.asideList.ranking > div article:nth-of-type(1) a::after {
		content: "1";
	}

	.asideList.ranking > div article:nth-of-type(2) a::after {
		content: "2";
	}

	.asideList.ranking > div article:nth-of-type(3) a::after {
		content: "3";
	}

	.asideList.ranking > div article:nth-of-type(4) a::after {
		content: "4";
	}

	.asideList.ranking > div article:nth-of-type(5) a::after {
		content: "5";
	}

	.asideList > div article a figure {
		width: 100%;
		font-size: 0px;
		overflow: hidden;
	}

	.asideList > div article a figure img {
		width: 100%;
		height: auto;
	}

	.asideList > div article a h2 {
		margin: 14px 0px 10px;
		color: #444;
		font-size: 1.2rem;
		line-height: 2.0;
		letter-spacing: 0.05em;
		text-align: left;
	}

	.main .eyecatch {
		margin: 0px 0px 20px;
		width: 100%;
		font-size: 0;
		line-height: 0;
	}

	.main .eyecatch img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	.main .snsshare {
		margin: 20px 25px;
		padding: 10px 10px 1px;
		background: #f1f1f1;
		align-items: center;
		flex-wrap: wrap;
		display: flex;
	}

	.main .snsshare li {
		margin-right: 10px;
		margin-bottom: 10px;
	}

	.main .snsshare li iframe {
		vertical-align: top;
	}

	.main .banner {
		margin: 20px 25px;
		font-size: 0;
		line-height: 0;
	}

	.main .banner a {
		display: block;
	}

	.main .banner img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}

	#ctsBody {
		padding: 10px 25px 40px;
		font-size: 1.4rem;
		line-height: 2.0;
		text-align: left;
	}

	#ctsBody:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	#ctsBody a {
		color: #bfa944;
	}

	#ctsBody p {
		letter-spacing: 0.1em;
		display: block;
	}

	#ctsBody strong {
		font-weight: bold;
	}
	
	#ctsBody em {
		font-style: italic;
	}
	
	#ctsBody blockquote {
		display: block;
		-webkit-margin-before: 1em;
		-webkit-margin-after: 1em;
		-webkit-margin-start: 40px;
		-webkit-margin-end: 40px;
	}
	
	#ctsBody ul li {
		letter-spacing: 0.1em;
	}

	#ctsBody ul li span {
		font-weight: bold;
	}

	#ctsBody ul.tagNavi{
		padding: 0 0 35px;
		display: flex;
	}

	#ctsBody ul.tagNavi li {
		margin: 0 10px 10px 0;
		width: 200px;
		font-size: 1.5rem;
		font-weight: bold;
		line-height: 2.0;
		text-align: center;
	}

	#ctsBody ul.tagNavi li a {
		padding: 10px 0;
		background-color: #a6933b;
		color: #fff;
		display: block;
	}

	#ctsBody h2 {
		margin: 60px -25px 30px;
		padding: 15px 25px;
		border-top: 1px #000 solid;
		border-bottom: 1px #000 solid;
		font-size: 2.0rem;
		font-weight: normal;
		line-height: 1.3;
		letter-spacing: 0.15em;
		position: relative;
	}
	
	#ctsBody h2::before,
	#ctsBody h2::after {
		content: "";
		width: 100%;
		height: 5px;
		background-color: #e5e5e5;
		font-size: 0;
		line-height: 0;
		text-indent: -9999px;
		display: block;
		left: 0px;
		position: absolute;
	}
	
	#ctsBody h2::before {
		top: 0px;
	}

	#ctsBody h2::after {
		bottom: 0px;
	}

	#ctsBody h3 {
		margin: 30px 0px 20px;
		padding: 19px 20px;
		background-color: #ebebeb;
		font-size: 1.6rem;
		font-weight: normal;
		line-height: 1.6;
		letter-spacing: 0.15em;
	}
	
	#ctsBody ol.lNavi {
		margin: 0px 30px;
		padding-bottom: 20px;
	}

	#ctsBody ol.lNavi li {
		margin-bottom: 8px;
		list-style: decimal;
		font-size: 1.5rem;
		font-weight: bold;
		line-height: 1.6;
		letter-spacing: 0.1em;
	}
	
	#ctsBody .alignnone {
		margin: 0px 0px 20px;
	}
	
	#ctsBody .alignleft {
		float: left;
	}
	
	#ctsBody .aligncenter {
		margin: 0px auto 20px;
	}
	
	#ctsBody .alignright {
		float: right;
	}
	
	#ctsBody .size-full {
		width: 100%;
		height: auto;
	}

	#ctsBody pre {
		margin: 20px 0;
		padding: 20px;
		background-color: #535353;
		color: #fff;
		white-space: pre-wrap;
		user-select:all !important;
		-moz-user-select:all !important;
		-webkit-user-select:all !important;
		-khtml-user-select:all !important;
	}
	
	.main .prevNext {
		display: flex;
		margin: 0px 25px;
	}
	
	.main .prevNext li {
		width: 50%;
		border: #eee 1px solid;
		box-sizing: border-box;
		font-size: 1.2rem;
		line-height: 40px;
	}
	
	.main .prevNext li.next {
		text-align: right;
	}
	
	.main .prevNext li a {
		display: block;
		height: 40px;
		color: #444;
		overflow: hidden;
	}
	
	.main .prevNext li.prev a {
		padding: 0px 10px 0px 15%;
		background: url("common/img/icon_prev2.svg") no-repeat 5% 50% / 12px auto;
	}
	
	.main .prevNext li.next a {
		padding: 0px 15% 0px 10px;
		background: url("common/img/icon_next2.svg") no-repeat 95% 50% / 12px auto;
	}
	
	.main .prevNext li.prev a:hover {
		background: #f4f4f4 url("common/img/icon_prev2.svg") no-repeat 5% 50% / 12px auto;
	}
	
	.main .prevNext li.next a:hover {
		background: #f4f4f4 url("common/img/icon_next2.svg") no-repeat 95% 50% / 12px auto;
	}
	
	.main .related {
		margin: 60px 25px 60px 25px;
	}
	
	.main .related h1 {
		color: #000;
		font-family: 'Montserrat', sans-serif;
		font-size: 2.0rem;
		font-weight: 500;
		line-height: 1.2;
		text-align: center;
		letter-spacing: 0.1em;
	}
	
	.main .related > div article {
		margin: 30px 0px 0px 0px;
	}
	
	.main .related > div article a {
		display: block;
	}
	
	.main .related > div article a figure img {
		width: 100%;
		height: auto;
	}
	
	.main .related > div article a h2 {
		margin: 5px 0px 0px 0px;
		font-size: 1.4rem;
		font-weight: normal;
		color: #444;
	}
	

	.flgP {
		display: none !important;
	}

	.flgS {
		display: block !important;
	}

}
