@charset "utf-8";

/* ---------------------------------------------------------
フロント用追加スタイル
----------------------------------------------------------*/

/**
 * エディタースタイル
 */
 .alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.article-box figure {
	margin-bottom: 30px;
}

/**
 * 投稿ステータス表示
 */
.post-status {
	margin-bottom: 10px;
	padding: 2px 5px;
	font-size: 1.6rem;
	font-weight: bold;
}
.post-status.status-future {
	background: #68ff7c;
}
.post-status.status-draft {
	background: #68edff;
}
.post-status.status-pending {
	background: #ff68fc;
}
.post-status.status-private {
	background: #ff6868;
}

/**
 * ログイン時ヘッダー位置調整
 */

body.is-user-logged-in .head__inner {
	top: 46px;
}

@media (min-width: 768px) {
body.is-user-logged-in .head__inner {
	top: 32px;
}
}

/**
 * SyntaxHighlighter
 */
.syntaxhighlighter table caption {
	background-color:#efefef!important;
	font-size: 1.4rem!important;
	font-weight: bold!important;
}
.syntaxhighlighter table textarea {
	font-size: 1.4rem!important;
}
.syntaxhighlighter table .line {
	font-size: 1.4rem!important;
}
.syntaxhighlighter table .line.alt2 {
	background-color:#f8f8f8!important;
}
a.slide-code {
	position: relative;
	padding-left: 18px;
	text-decoration: underline;
	color: #005288;
}
a.slide-code:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 11px;
	height: 1px;
	background: #005288;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
a.slide-code:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 5px;
	width: 1px;
	height: 11px;
	margin-top: -5px;
	background: #005288;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: -webkit-transform .3s ease-in;
	transition: transform .3s ease-in;
}
a.slide-code.m--active {
	color: #3b3b3b;
}

a.slide-code.m--active:after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	transition: -webkit-transform .3s ease-in;
	transition: transform .3s ease-in;
}
.highlight-code {
	display: none;
}
.highlight-code.is-show {
	display: block;
}

/**
 * コーディング完了時にstyle.cssに移植予定
 */
.tech-search-keyword {
	display: none;
}
.tech-search-keyword.is-active {
	display: block;
}
.tech-search-keyword .count {
	display: none;
}
.tech-search-keyword .count.is-show {
	display: inline;
}
.tech-search-service-category {
	display: none;
}
.tech-search-service-category.is-active {
	display: block;
}

/**
 * 技術情報
 * 検索結果
 */
#search-result {
	min-height: 100px;
	padding-bottom: 100px;
}
#search-result.is-loading {
	min-height: 100px;
	background: url(../img/cmn/loading.gif) no-repeat center center;
}
#search-result.is-loading.btm {
	padding-bottom: 100px;
	background-position: center bottom;
}
#search-result .load-item {
	display: none;
}
#search-result .search-result-messege {
	display: none;
	padding: 20px 0;
	color: #3b3b3b;
	text-align: center;
}
#search-result .search-result-messege.is-show {
	display: block;
}
#search-result .search-result-messege__head {
	margin-bottom: 10px;
	font-size: 12px;
	font-size: 1.2rem;
}
#search-result .search-result-messege__text {
}
@media (min-width: 768px) {
#search-result .search-result-messege {
}
#search-result .search-result-messege__head {
	font-size: 18px;
	font-size: 1.8rem;
}
#search-result .search-result-messege__text {
	font-size: 14px;
	font-size: 1.4rem;
}
}
