@charset "UTF-8";

/*
	00. common
========================================================================== */
.low #content {
	display: flex;
	justify-content: space-between;
	align-content: center;
}
.low #content main {
	width: 75%;
}
.low #content .sidebar {
	width: 20%;
}
.low section {
  margin-bottom: 50px;
}
/* crumb */
.low .crumb {
  margin-bottom: 40px;
	padding: 0.6em;
	background: #006633;
}
.low .crumb ul {
	margin: 0 auto;
	width: 1100px;
	max-width: 100%;
	box-sizing: border-box;
  color: #fff;
	line-height: 1.4;
	font-size: 80%;
}
.low .crumb ul li {
  display: inline;
}
.low .crumb ul li::after {
  display: inline;
  content: "＞";
  padding: 0 0.5em;
}
.low .crumb ul li:last-child::after {
  display: none;
}
.low .crumb ul li a {
  color: #fff;
  text-decoration: underline;
}
/* kv */
.low .kv {
	position: relative;
	widows: 100%;
	height: 340px;
}
.low .kv h1 {
	position: absolute;
	bottom: 20px;
	right: 4%;
	font-size: 300%;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
/* article */
.low .article_wrap .btn_A {
	display: block;
	width: 40%;
	margin: 1em auto 0;
}
.low .article_nav {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 30px;
	padding: 0.6em 2em;
	background: #edf6f1;
	border-radius: 30px;
}
.low .article_nav a {
	margin-right: 2em;
	font-weight: bold;
	font-size: 110%;
}
.low .article_nav a::before {
	display: inline;
	content: '▼';
	padding-right: 0.2em;
	color: #006633;
	font-size: 90%;
}
/* pager */
.pager {
	display: flex;
	justify-content: center;
	align-items: center;
}
.pager a {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 15px;
	width: 80px;
	height: 80px;
	color: #fff;
	border-radius: 40px;
	background: #006633;
}
.pager a.none {
	background: #ccc;
	pointer-events: none;
}
.pager a span {
	position: relative;
	font-size: 90%;
	text-align: center;
	font-weight: bold;
}
.pager a span::after {
	content: '';
	display: block;
	margin: 0 auto;
	width: 1.2em;
	height: 1.2em;
	background: url(../images/common/ic_arrow01_wh.png) no-repeat 0 50%;
	background-size: contain;
}
.pager a.prev span::after {
	transform: scale(-1, 1);
}

/* sidebar */
.sidebar .side_article_list li a {
	position: relative;
	display: block;
	margin-bottom: 0.5em;
	font-size: 90%;
	text-indent: -1.3em;
	padding-left: 1.3em;
}
.sidebar .side_article_list li a::before {
	display: inline;
	content: '■';
	padding-right: 0.8em;
	font-size: 60%;
	color: #ccc;
}

/*
	class
========================================================================== */
#class .kv {
	background: url("../images/class/kv.jpg") no-repeat 0 50%;
	background-size: cover;
}

/*
	column
========================================================================== */
#column .kv {
	background: url("../images/column/kv.jpg") no-repeat 0 50%;
	background-size: cover;
}

/*
	path
========================================================================== */
#path .kv {
	background: url("../images/path/kv.jpg") no-repeat 0 50%;
	background-size: cover;
}
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:20px 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #e54658;
  display: block;
  order: -1;
}
.tab-label {
	margin-top: 2px;
  color: #fff;
  background: #ccc;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .8em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
	transition: .5s;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-label span {
  position: relative;
  font-weight: bold;
}
.tab-label span::before {
  content: '▼';
	display: inline-block;
	font-size:75%;
	margin-right:0.3em;
}
.tab-label:hover {
  background: #e54658;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: #e54658;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 4%;
  opacity: 1;
  transition: .5s opacity;
  box-shadow: 0 0 3px rgba(0,0,0,.2);
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

/*
	path essay
========================================================================== */
#path #new_essay {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 3em;
}
#path #new_essay .ttl_area {
	width: 20%;
}
#path #new_essay .list_area {
	width: 75%;
}
#path .list_area ul li {
	padding: 0.8em;
	border-bottom: 1px dotted #ccc;
}
#path .list_area ul li:first-child {
	padding-top: 0.4em;
}
#path .list_area ul li a .essay_ttl:hover {
	text-decoration: underline;
}
#path .list_area .essay_date  {
	margin-left: 1.2em;
	font-size: 0.8rem;
	color: #666;
}
#path #new_essay .new_essay_note {
	margin-top: 25px;
	font-size: 80%;
	text-align: right;
	line-height: 1.6;
	color: #666;
}
/*wp-pagenavi*/
.wp-pagenavi {
	margin-top: 40px;
	clear: both;
	text-align:center;
}
.wp-pagenavi a, .wp-pagenavi span {
	color: #999;
	background-color: #FFF;
	border: solid 1px #999;
	padding: 8px 15px;
	margin: 0 2px;
	white-space: nowrap;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration:none;
}
.wp-pagenavi a:hover{
	color:#FFF; 
	background-color:#999; 
	border-color:#999;
}
.wp-pagenavi span.current{
	color: #FFF;
	background-color: #e54658;
	border-color: #e54658;
	font-weight: bold;
}

/*
	search
========================================================================== */
#search .kv {
	background: url("../images/other/search_kv.jpg") no-repeat 0 50%;
	background-size: cover;
}

/*
	about
========================================================================== */
#about .kv {
	background: url("../images/other/about_kv.jpg") no-repeat 0 50%;
	background-size: cover;
}

/*
	author
========================================================================== */
#author .kv {
	background: url("../images/other/author_kv.jpg") no-repeat 0 50%;
	background-size: cover;
}
#author .author_book {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
}
#author .author_book > img {
  width: 20%;
  padding-right: 3%;
}
#author .author_book .author_book_txt {
  width: 75%;
}

/*
	sitemap
========================================================================== */
#sitemap .kv {
	background: url("../images/other/sitemap_kv.jpg") no-repeat 0 50%;
	background-size: cover;
}
#sitemap section {
	width: 100%;
}
#sitemap .sitemap_inner {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
#sitemap .sitemap_inner ul {
	width: 25%;
}
