.category-nav {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	position: relative;
	z-index: 1;
	margin: 20px auto 78px;
	width: 100%;
	text-align: center;
}

.category-nav ul {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.category-nav ul>li {
	margin: 10px 5px;
	width: 140px;
}

.category-nav ul>li>span {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: none;
	height: 50px;
	color: #c4924f;
	border: #c4924f solid 1px;
	background-color: rgba(0,0,0,0);
	font-size: 1.3em;
	line-height: 1.2em;
	letter-spacing: 0;
	text-decoration: none;
	cursor: pointer;
	transition: all .3s;
}

.category-nav ul>li.cur {
	pointer-events: none;
}

.category-nav ul>li.cur>*,
.category-nav ul>li:not(.cur)>span:hover {
	background-color: #c4924f;
	color: #353535;
}

#Container>section {
	position: relative;
	margin-top: -8px;
}

#Container>section::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: rgba(0,0,0,0);
	box-sizing: border-box;
	border-top: #c4924f solid 1px;
	border-bottom: #c4924f solid 1px;
}

#Container>section.off {
	display: none;
}

#Container>section.all:not(:first-of-type)::before {
	display: none;
}

#Container>section>article {
	position: relative;
	z-index: 1;
	text-align: left;
}

#Container>section>article::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 5px;
	background-color: rgba(0,0,0,0);
	box-sizing: border-box;
	border-top: #c4924f solid 1px;
	border-bottom: #c4924f solid 1px;
}

#Container>section>article>h2 {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	background: rgba(0,0,0,0);
	padding: 46px 120px 24px 50px;
	box-sizing: border-box;
	min-height: 109px;
	cursor: pointer;
}

#Container>section>article>h2::before,
#Container>section>article>h2::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 26px;
	height: 2px;
	background: #c4924f;
	transition: transform .3s linear;
}

#Container>section>article>h2::before {
	transform: rotate(-90deg);
}

#Container>section>article>h2 .category {
	box-sizing: border-box;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	border-radius: 0;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 96px;
	height: 28px;
	background-color: #b8dcd0;
	color: #353535;
	font-size: .9em;
	line-height: 0;
	font-family: "Zen Old Mincho",serif;
	font-weight: 400;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0;
	white-space: nowrap;
	text-align: center;
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
}

#Container>section>article>h2 .category::before,
#Container>section>article>h2 .category::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	height: 28px;
	background-position: top left;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

#Container>section>article>h2 .category::before {
	width: 14px;
	left: -14px;
	background-image: url(../img/tag_head_category.png);
}

#Container>section>article>h2 .category::after {
	width: 4px;
	right: -4px;
	background-image: url(../img/tag_bottom_category.png);
}

#Container>section>article>h2 .main {
	color: #c4924f;
	font-size: 1.9em;
	font-family: "Zen Old Mincho",serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0;
	line-height: 1.2em;
	font-feature-settings: "palt";
	position: relative;
}

#Container>section>article>h2 .main._noruby {
	top: -12px;
}

#Container>section>article>h2 [data-ruby]::before {
	top: -0.9em;
	font-size: .5em;
}

#Container>section>article>.body {
	display: none;
	border-top: #c4924f 1px solid;
	padding: 30px 0 39px;
	font-size: 1em;
	line-height: 1.9em;
	letter-spacing: .078em;
	box-sizing: border-box;
	background-color: rgba(0,0,0,0);
	color: #f7f4f1;
}

#Container>section>article>.body .layout {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 9px;
}

#Container>section>article>.body .layout>.pic {
	width: 400px;
	border: 1px solid #c4924f;
	flex-shrink: 0;
	display: block;
}

#Container>section>article>.body .layout>.pic img {
	display: block;
	width: 100%;
}

#Container>section>article>.body .layout>.desc {
	width: calc(100% - 400px - 40px);
	position: relative;
	top: -9px;
}

#Container>section>article.open>h2::before {
	transform: rotate(0deg);
}

@media screen and (max-width: 768px) {

.category-nav {
	width: calc(100% + 21px);
	left: -10px;
	margin: 50px auto 58px;
}

.category-nav ul>li {
	margin: 10px 5px;
	width: 216px;
}

.category-nav ul>li>span {
	height: 70px;
	font-size: 1.2em;
	border-width: 2px;
}

.category-nav ul>li:not(.cur)>span:hover {
	background-color: rgba(0,0,0,0);
	color: #c4924f;
}

#Container>section::before {
	border-width: 2px;
	height: 8px;
}

#Container>section>article::after {
	border-width: 2px;
	height: 8px;
}

#Container>section>article>h2 {
	padding: 56px 170px 20px 56px;
	min-height: 163px;
}

#Container>section>article>h2::before,
#Container>section>article>h2::after {
	top: 47%;
	width: 36px;
	height: 4px;
}

#Container>section>article>h2 .category {
	min-width: 139px;
	height: 40px;
	font-size: .8em;
	padding-left: 10px;
	box-sizing: border-box;
	right: 3px;
}

#Container>section>article>h2 .category::before,
#Container>section>article>h2 .category::after {
	height: 40px;
}

#Container>section>article>h2 .category::before {
	width: 20px;
	left: -19px;
}

#Container>section>article>h2 .category::after {
	width: 4px;
	right: -3px;
}

#Container>section>article>h2 .main {
	font-size: 2em;
	letter-spacing: 0;
}

#Container>section>article>h2 .main._noruby {
	top: -8px;
}

#Container>section>article>h2 [data-ruby]::before {
	font-size: .4em;
}

#Container>section>article>.body {
	padding: 26px 0 40px;
	letter-spacing: .034em;
}

#Container>section>article>.body .layout {
	display: block;
}

#Container>section>article>.body .layout>.pic {
	margin: 0 auto 20px;
	width: 100%;
}

#Container>section>article>.body .layout>.desc {
	width: auto;
	top: 0;
	line-height: 1.75em;
}

}


/*# sourceMappingURL=../map/keyword.css.map */
