@charset "utf-8";

.guide{
	min-width: 320px;
	max-width: 1054px;
	margin: 0 auto;
	padding: 100px 0;
}
.guide-heading{
	margin-top: 100px;
}

.guide-header_button{
	position: fixed;
	right: 10px;
	top: 10px;
	width: 50px;
	height: 50px;
	z-index: 150;
	background: #0d2ea1;
	color: #fff;
}
.guide-header_button-home{
	background: #ff842a;
}
.guide-header_button-office{
	background: #1098cd;
}
.guide-header_button-industry{
	background: #1a1a1a;
}
.guide-header_button span{
	width: 50%;
	height: 3px;
	position: absolute;
	top: 23px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	display: block;
}
.guide-header_button:before,
.guide-header_button:after{
	content: "";
	width: 50%;
	height: 3px;
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	display: block;
}
.guide-header_button:after{
	top: 31px;
}
.guide-header_button.is-active span {
	display: none;
}
.guide-header_button.is-active:before,
.guide-header_button.is-active:after{
	width: 60%;
	transform: translateX(-50%) rotate(-45deg) ;
	top: 23px;
}
.guide-header_button.is-active:after{
	transform: translateX(-50%) rotate(45deg);
	top: 23px;
}

.guide-navi{
	display: none;
	position: fixed;
	right:10px;
	top: 10px;
	width: 200px;
	z-index: 100;
	background: #0d2ea1;
	color: #fff;
}
.guide-navi-home{
	background: #ff842a;
}
.guide-navi-office{
	background: #1098cd;
}
.guide-navi-industry{
	background: #1a1a1a;
}
.guide-navi a{
	color: #fff;
}
.guide-navi_list{
	list-style: none;
	padding: 0;
	margin: 2em;
}
.guide-navi_codeControll {
	list-style: none;
	padding: 0;
	margin: 2em;
}
.guide-navi_codeControll li {
	margin-left: 2em;
}


main{
	box-sizing: border-box;
	padding: 0 10px;
	margin: 0;
	flex: 1 1 auto;
	width: 100%;
}


.guide-module {
	border: 1px solid #ddd;
	border-radius: 3px;
}

.guide-module + .guide-module {
	margin-top: 50px;
}

.guide-module_heading {
	background: #fafafa;
	border-bottom: 1px solid #ddd;
	border-radius: 3px 3px 0 0;
	font-size: 1em;
	margin: 0;
	padding: 0.5rem 1rem;
	position: relative;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

.guide-module_description {
	border-bottom: 1px solid #ddd;
	padding: 1rem;
	font-size: 1em;
}

.guide-module_description p {
	margin: 0;
}

.guide-module_description p + p {
	margin-top: 1em;
}

.guide-module_example {
	margin: 1em 0 0;
}

.guide-module_markup {
	color: #fff;
	font-family: "Source Code Pro", monospace;
	font-size: 0.75em;
	margin: 0;
	overflow: auto;
	padding: 0 1em;
	position: relative;
	-moz-tab-size: 2;
	tab-size: 2;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

.guide-module_copy{
	background: #fafafa;
	border: 0;
	cursor: pointer;
	font-size: 0.625em;
	font-weight: 700;
	height: 100%;
	letter-spacing: 0.1em;
	padding: 0 1em;
	position: absolute;
	right: 0;
	text-rendering: optimizeLegibility;
	top: 0;
	z-index: 10;
}

.guide-module_expanderSection {
	background: #fafafa;
	border-top: 1px solid #ddd;
	border-radius: 0 0 3px 3px;
	height: 1.5rem;
	position: relative;
}

.guide-module_expander {
	background: none;
	border: 0;
	color: #4A5366;
	cursor: pointer;
	font-size: 0.625em;
	font-weight: 700;
	left: 0;
	letter-spacing: 0.1em;
	height: 100%;
	padding: 0 0.5em;
	position: absolute;
	text-rendering: optimizeLegibility;
}


.guide-layer{
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(256, 256, 256, 0.1);
	z-index: 90;
}