@charset "utf-8";

/* ****************************************************************************
目次
01.基本設定
02.Layout
	Header
	Nav
	Contents
	Footer
03.Shared
	Headding
	Btn
05.index （カテゴリートップ）
06.page (各種コンテンツページ)
07.category
* ************************************************************************** */

/* ****************************************************************************
基本設定
* ************************************************************************** */
body {
	color: #333;
	font-family: "mplus-1p", sans-serif;
	-webkit-font-smoothing: subpixel-antialiased;
}
_:lang(x)::-ms-backdrop, body {
	/* IE11でのみ有効 */
	font-family: sans-serif;
}

.en {
	font-family: 'Sacramento', cursive;
}

a {
	color: #29abe2;
	transition: all .2s;
}
a:active,
a:visited {color: #999;}
a:hover {color: #dc8f2f;}
a:active, a:focus {outline: 0;}
::selection {background: #f9f7f5;}
::-moz-selection {background: #f9f7f5;}

strong {font-weight: bold;}
small {
	font-size: 1.2rem;
}

.fa {
	margin-right: 16px;
}

/* Other */
.hidden {display: none;}

@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi) {
	.x2 {zoom: .5;}
}


/* ****************************************************************************
Layout
* ************************************************************************** */

/* Header
---------------------------------------------------------------------------- */
.header {
	position: relative;
	width: 100%;
	height: 64px;
	background: #b99c26;
	color: #fff;
	text-align: center;
}
.title {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 64px;
}

.header .toggle {
	position: absolute;
	top: 16px;
	left: 16px;
}
.toggle-open {display: block;}
.toggle-close {display: none;}

.category-title {
	padding: 0 16px;
	background: #999;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 64px;
}
/* ----------------------------------------------------------------------------
OverLay
---------------------------------------------------------------------------- */
#overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
}

/* Navigation
---------------------------------------------------------------------------- */
.nav {
	position: fixed;
	top: 0;
	left: -320px;
	z-index: 910;
	width: 320px;
	height: 100%;
	padding-top: 80px;
	background: #795300;
	color: #bbb;
	transition: .35s ease-in-out;
}
.close .nav {
	left: 0;
}

/* pan */
.pan {
	padding: 4px 16px 2px;
	background: #f0f0f0;
	font-size: 1.0rem;
}
.pan ul {
	list-style: none;
}
.pan ul li {
	display: inline-block;
}
.pan ul li a {
	color: #666;
	text-decoration: none;
}
.pan ul li::before {
	content: ">";
	margin: 0 4px;
}
.pan ul li:first-child::before {
	content: "";
}

/* Contents
---------------------------------------------------------------------------- */
.main {
	min-height: 1400px;
}
.mainimage {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 38.16vw;
	background: #999;
	background-size: cover;
}
.catchcopy {
	color: #fff;
	padding-bottom: 56px;
	font-size: 2.0rem;
	font-weight: bold;
	text-align: center;
	line-height: 2;
}

.block {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	max-width: 768px;
	margin: auto;
}
.block-inner {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 16px;
}
.page .block-inner {
	padding: 0;
}


/* Footer
---------------------------------------------------------------------------- */
.footer {
	background: #b99c26;
	color: #fff;
}
.copyright {
	padding: 12px;
	font-size: 1.0rem;
	text-align: center;
}

/* Footer Panel */
.footer-panel {
	display: flex;
	position: fixed;
	width: 100%;
	bottom: 0;
	z-index: 99;
	background: #fff;
	transition: .3s ease;
}
.footer-panel a {
	display: block;
	position: relative;
	width: 33.333%;
	padding: 8px 4px;
	border-left: 1px solid #efefef;
	color: #333;
	font-size: 1.0rem;
	text-align: center;
	text-decoration: none;
	line-height: 50px;
}
.footer-panel a:first-child {
	border-left: 0;
	background: #07569d;
	color: #fff;
}

/* ****************************************************************************
Menu
* ************************************************************************** */
.menu-container {
	padding-bottom: 160px;
}
.menu-container ul {
	margin-left: 0;
	list-style: none;
}
.menu-container > ul:last-child {
	border-bottom: 1px solid #bbb;
}
.menu-container ul li {
	position: relative;
}
.menu-container > ul > li {
	position: relative;
	border-top: 1px solid #bbb;
}

.menu-container .icn {
	display: inline-block;
	margin-right: 8px;
}
.menu-container a {
	display: block;
	padding: 16px;
	color: #bbb;
	font-size: 14px;
	text-decoration: none;
	transition: color .3s linear;
}
.menu-container .is-active > .sub-menu {
	display: block;
}
.menu-container .menu-item-has-children.is-active > a.next,
.menu-container a:hover {
	color: #fff;
}

/* has children icon */
.menu-container .menu-item-has-children > a {
	position: relative;
}
.menu-container .menu-item-has-children + a {
	margin-right: 50px;
}
.menu-container .menu-item-has-children > a.next {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	content: "";
}
.menu-container .sub-menu .menu-item-has-children > a.next {
	top: 0;
	right: 8px;
}
.menu-container .menu-item-has-children > a.next:after {
	display: inline-block;
	position: relative;
	width: 8px;
	height: 8px;
	margin: auto;
	border-top: 1px solid #aeb4cb;
	border-right: 1px solid #aeb4cb;
	content: "";
	vertical-align: middle;
	transform: rotate(45deg);
	transition: .25s ease-in-out;
}
.menu-container .menu-item-has-children.is-active > a.next:after,
.menu-container .menu-item-has-children > a.next:hover:after {
	border-color: #fff;
	transform: rotate(135deg);
}


/* ----------------------------------------------------------------------------
sub menu
---------------------------------------------------------------------------- */
.menu-container .sub-menu {
	display: none;
	background: rgba(255, 255, 255, .1);
}
.menu-container .sub-menu li:first-child {
	border-top: 0;
}
.menu-container .sub-menu li {
	border-top: 1px solid #aeb4cb;
}
.menu-container .sub-menu li a {
	padding: 8px 8px 8px 40px;
	font-size: 12px;
}
.menu-container .sub-menu li a:first-child {
	padding: 8px 32px 8px 40px;
}
/* ----------------------------------------------------------------------------
toggle
---------------------------------------------------------------------------- */
.toggle {
	position: fixed;
	top: 30px;
	left: 20px;
	z-index: 1000;
	height: 32px;
	cursor: pointer;
}
.toggle > div {
	position: relative;
	width: 32px;
}
.toggle span {
	display: block;
	left: 0;
	position: absolute;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: .35s ease-in-out;
}

.toggle span:nth-child(1) {
	top: 0;
}
.toggle span:nth-child(2) {
	top: 11px;
}
.toggle span:nth-child(3) {
	top: 22px;
}

/* toggle close
---------------------------------------------------------------------------- */
.close .container {
	margin-left: 0;
}
.close .logo {
	margin-left: 50px;
}
.close #overlay {
	display: block;
	z-index: 905;
}


/* ****************************************************************************
Shared
* ************************************************************************** */
.icn-gotop {
	display: none;
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 99;
}

/* ----------------------------------------------------------------------------
Btn
---------------------------------------------------------------------------- */
a.btn,
input[type="submit"].btn {
	display: inline-block;
	position: relative;
	margin: auto;
	padding: 2px 40px 0;
	border-radius: 100px;
	background: #b99c26;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	line-height: 32px;
	outline: none;
	transition: all .2s;
}
a.btn::after,
input[type="submit"].btn::after {
	display: block;
	position: absolute;
	top: 12px;
	right: 12px;
	width: 8px;
	height: 8px;
	content: "";
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
a.btn:hover,
input[type="submit"].btn:hover {
	background: #dc8f2f;
}
a.btn.btn-small {
	padding: 2px 16px 0;
	font-size: 1.0rem;
	font-weight: normal;
	line-height: 18px;
}
a.btn.btn-small::after {
	top: 7px;
	right: 9px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
a.btn.btn-small.btn-back::after {
	top: 7px;
	left: 9px;
	width: 6px;
	height: 6px;
	border-top: 0;
	border-right: 0;
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
}

/* ----------------------------------------------------------------------------
Pager
---------------------------------------------------------------------------- */
.pager {
	display: flex;
	justify-content: center;
}

.pager a {
	display: inline-block;
	position: relative;
	margin: 0 4px;
	background: #b99c26;
	color: #fff;
	font-size: 1.4rem;
	text-decoration: none;
}
.pager a:hover {
	background: #f7931e;
}
.pager .prev a {
	padding: 2px 8px 1px 24px;
	border-radius: 100px 0 0 100px;
}
.pager .prev a::before {
	display: block;
	position: absolute;
	top: 8px;
	left: 12px;
	width: 8px;
	height: 8px;
	content: "";
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(45deg);
}
.pager .next a {
	padding: 2px 24px 1px 8px;
	border-radius: 0 100px 100px 0;
}
.pager .next a::before {
	display: block;
	position: absolute;
	top: 8px;
	right: 12px;
	width: 8px;
	height: 8px;
	content: "";
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}


/* ****************************************************************************
05.index （カテゴリートップ）
* ************************************************************************** */
.index .main-inner {
	position: relative;
	top: -32px;
	margin: 0 16px;
	padding-top: 24px;
	border-top: 4px solid #efefef;
	background: #fff;
}
.index .main-inner p {
	margin: 1em 0;
	font-size: 1.4rem;
	line-height: 2;
}

/* Table of Contents
---------------------------------------------------------------------------- */
.index .toc-title {
	margin-bottom: 64px;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}
.index .toc {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	max-width: 768px;
	margin: auto;
	margin-bottom:80px;
}
.index .toc-inner {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 16px;
}
.index .toc-inner dt {
	margin-bottom: 24px;
	font-size: 1.8rem;
}
.index .toc-inner dd {
	margin-bottom: 32px;
}
.index .toc-inner dd ul {
	list-style: none;
}
.index .toc-inner dd ul li {
	position: relative;
	margin: 6px 0;
	margin-left: 2px;
	padding-left: 16px;
	font-size: 1.4rem;
	line-height: 1.5;
}
.index .toc-inner dd ul li::before  {
	display: block;
	position: absolute;
	top: 6px;
	left: 4px;
	width: 8px;
	height: 8px;
	content: "";
	border-radius: 100%;
	background: #21528c;
}

/* ****************************************************************************
06.page (各種コンテンツページ)
* ************************************************************************** */
.page .main-inner {
	width: 100%;
	max-width: 768px;
	margin: auto;
	padding: 72px 16px 160px
}

/* Block
---------------------------------------------------------------------------- */
.page .main-inner section {
	margin-bottom: 56px;
}

.page .main-inner .box {
	padding: 16px 36px 8px;
	border-radius: 24px;
	background: #fff6bf;
}

/* headding
---------------------------------------------------------------------------- */
.page .main-inner h1 {
	position: relative;
	margin-bottom: 64px;
	padding-bottom: 32px;
	color: #333;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}
.page .main-inner h1::after {
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 50%;
	content: "";
	width: 80px;
	height: 8px;
	background: #b99c26;
	transform: translateX(-50%);
}
.page .main-inner h2 {
	margin: 1em 0;
	color: #333;
	font-size: 1.8rem;
	font-weight: bold;
}

/* cont
---------------------------------------------------------------------------- */
.page .main-inner p {
	margin: 1em 0;
	font-size: 1.4rem;
	line-height: 2;
}
.page .main-inner strong {
	font-weight: bold;
}
.page .main-inner pre {
	margin: 1em 0;
	padding: 1em;
	background: #efefef;
	font-size: 1.6rem;
	line-height: 1.7;
}

/* list
---------------------------------------------------------------------------- */
/* 番号なし */
.page .main-inner ul {
	list-style: none;
}
.page .main-inner ul li {
	position: relative;
	margin: 4px 0;
	margin-left: 2px;
	padding-left: 16px;
	font-size: 1.4rem;
	line-height: 1.5;
}
.page .main-inner ul li::before {
	display: block;
	position: absolute;
	top: 6px;
	left: 4px;
	width: 8px;
	height: 8px;
	content: "";
	border-radius: 100%;
	background: #795300;
}
/* 番号あり */
.page .main-inner ol {
	margin-left: 20px;
}
.page .main-inner ol li {
	position: relative;
	margin: 4px 0;
	margin-left: 2px;
	font-size: 1.4rem;
	line-height: 1.5;
}

/* 記述リスト */
.page .main-inner dl {
}
.page .main-inner dt {
	padding: 8px 16px 0;
	font-size: 1.8rem;
}
.page .main-inner dd {
	padding: 4px 16px 8px;
	border-bottom: 1px solid #ccc;
	font-size: 1.2rem;
}

/* table
---------------------------------------------------------------------------- */
.page .main-inner .scroll {
	overflow: auto;
	white-space: nowrap;
}
.page .main-inner table {
	width: 100%;
	border: 2px solid #333;
	font-size: 1.2rem;
}
.page .main-inner tr {}
.page .main-inner th {
	padding: 8px 12px;
	border: 1px solid #333;
	background: #fff6bf;
	font-weight: bold;
	text-align: center;
}
.page .main-inner td {
	padding: 8px 12px;
	border: 1px solid #333;
	line-height: 1.8;
}

/* faq
---------------------------------------------------------------------------- */
.faq {}
.page .main-inner .faq p {
	margin: 0;
	margin-top: 8px;
}
.faq .q {
	padding: 8px 16px;
	border-left: 4px solid #b99c26;
	background: #fff6bf;
	font-size: 1.8rem;
	font-weight: bold;
}
.faq .faq-inner {
	display: none;
	padding: 24px 40px;
	background: #f7f7f7;
}
.faq .faq-inner p {
	margin: 1em 0;
}

/* ****************************************************************************
07.category
* ************************************************************************** */
.category-title {
	background: #363636;
}
.index .main-inner {
	border-top: 4px solid #b99c26;
}
.network .mainimage {
	background: url("../images/mainimage-network.jpg") no-repeat center center;
	background-size: cover;
}
.cloud .mainimage {
	background: url("../images/mainimage-cloud.jpg") no-repeat center center;
	background-size: cover;
}
.account .mainimage {
	background: url("../images/mainimage-account.jpg") no-repeat center center;
	background-size: cover;
}
.backup .mainimage {
	background: url("../images/mainimage-backup.jpg") no-repeat center center;
	background-size: cover;
}
.security .mainimage {
	background: url("../images/mainimage-security.jpg") no-repeat center center;
	background-size: cover;
}
.governance .mainimage {
	background: url("../images/mainimage-governance.jpg") no-repeat center center;
	background-size: cover;
}


/* ****************************************************************************
Brakepoint
* ************************************************************************** */

/* Text Adjust 561px以上 */
@media screen and (min-width: 561px) {
}
/* medium 641px以上 */
@media screen and (min-width: 641px) {

}
/* medium 781px以上 */
@media screen and (min-width: 781px) {

	/* Contents
	---------------------------------------------------------------------------- */
	.catchcopy {
		font-size: 3.2rem;
	}
	.block-inner {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.page .block-inner {
		padding: 0 16px;
	}
	.page .block-inner:nth-child(1) {
		padding-left: 0;
	}
	.page .block-inner:nth-child(2) {
		padding-right: 0;
	}


	/* ****************************************************************************
	05.index （カテゴリートップ）
	* ************************************************************************** */
	.index .main-inner {
		top: -80px;
		margin: 0 32px;
		padding-top: 80px;
	}

}
/* large 981px以上 */
@media screen and (min-width: 981px) {
	.wrapper {
		margin-left: 320px;
		transition: .25s ease-in-out;
	}
	.close .wrapper {
		margin-left: 0;
		transition: .25s ease-in-out;
	}
	.nav {
		left: 0;
	}
	.close .nav {
		left: -320px;
	}
	#overlay {
		display: none;
	}
	.close #overlay {
		display: none;
	}
}


