@charset 'utf-8'; /*文字コード指定*/
/* ----- css reset(各ブラウザで指定されているスタイルを初期化)と全体設定 ----- */

* {
	margin: 0;
	padding: 0;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html,body {
	height: 100%;
}
body {
	font-size: 13px;	/* サイドバーの文字サイズ（#containerでfont-sizeを指定しなければ右側ページもこの文字サイズとなる）） */
/*	font-family: 'Lato','Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;	*/
	font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Hiragino Kaku Gothic ProN', 'Lato', Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	background: #fff8ae;	/* 元々#eee */
}


#container {
	font-size: 15px;	/* 右側ページ文字サイズ（追加） */
	background: #fff8ae;	/* 元々#eee */
	margin-left: 300px;	/* サイドバー幅 */
	position: relative;
	-moz-transition: margin-left .25s linear;
	-webkit-transition: margin-left .25s linear;
	transition: margin-left .25s linear;
}
#main {
	background: #fff;	/* 右側ページ背景色 */
	padding-top: 50px;	/* 右側ページ上部スペース */
	min-height: 1400px;
}
#main p {
	margin-bottom: 1em;
	line-height: 1.9;
}
#main .inner {
	padding: 60px;
}

/* main-visual */
#main-visual {
	background: #64CE80;
	background: -webkit-linear-gradient(-45deg, #64CE80, #C68BC4);
	background: -moz-linear-gradient(-45deg, #64CE80, #C68BC4);
	background: -ms-linear-gradient(-45deg, #64CE80, #C68BC4);
	background: -o-linear-gradient(-45deg, #64CE80, #C68BC4);
	background: linear-gradient(-45deg, #64CE80, #C68BC4);


	/* 見出し画像？スペース */
	height: 400px;
	display: flex;

	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
#main-visual h2 {
	font-size: 20px;
	color: #fff;
}
h3 {
	margin-top: -50px;	/* 追加 */
	font-size: 130%;
	margin-bottom: .7em;
}

h4 {	/* 追加 */
	font-size: 130%;
	margin-bottom: .7em;
}
/*
#copyright a {
	color: #666;
	text-decoration: none;
}
#copyright a:hover {
	text-decoration: underline;
}
*/

/* 追加・リンクの設定 */
a {
	color: #333; /* 文字色指定 */
}


/* タイトル文字 */
#global-head {
	position: fixed;
	color: #333333;
	width: 100%;
	padding: 15px 30px;	/* 元々10px 30px; */
	background: #fff8ae;
	display: -webkit-flex;
	display: flex;
}

#sidebar {
/*	padding-top: 60px;	*/
/*	top: 60px;	/* メニュー表示幅（上）、brand-logoの場合 */
	top: 75px;	/* メニュー表示幅（上）、brand-logo-link aの場合 */
	bottom: 60px;	/* メニュー表示幅（下） */
	width: 300px;	/* サイドバー幅 */
/*	height: 100%;		*/
	position: fixed;
	color: #afc3f2;
	background: #fff8ae;	/* サイドバー背景色 */
}

/* タイトル（文字） */
#brand-logo {
	font-size: 20px;	/* タイトル文字サイズ（追加） */
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}

/* 追加・タイトル（画像）★未対応 */
#brand-logo-img {
	background-image: url("/img/logo.png");
	background-repeat: no-repeat;
}
/* 追加・タイトル（文字・リンクver） */
#brand-logo-link a {
	font-size: 20px;	/* タイトル文字サイズ（追加） */
	color: #333; /* 文字色指定 */
	text-decoration: none; /* テキストの装飾指定(下線、上線など)(noneはなし) */
}

#global-nav ul {
	list-style: none;
	margin-left: 0;
}
#global-nav > ul > li {
	position: relative;
}

#global-nav a {
	color: #333333;
	text-decoration: none;
	display: block;
	padding: 15px;
	-moz-transition: color .3s linear;
	-webkit-transition: color .3s linear;
	transition: color .3s linear;
}
#global-nav .sub-menu.is-active > a,
#global-nav a:hover {
	color: #a6a16d;
	background: #ffffff;	/* 選択中の背景色追加 #fff79e; */
}


/* sub-menu icon */
#global-nav .sub-menu-head {
	position: relative;
}
#global-nav .sub-menu-head:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 18px;
	margin: auto;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);

	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
#global-nav .sub-menu.is-active > a:after,
#global-nav .sub-menu-head:hover:after {
	border-color: #a6a16d;
}

#global-nav .is-active .sub-menu-head:after {
	-moz-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
/* sub-menu */
#global-nav .sub-menu-nav {
	background: #fff79e;	/* サブメニューの背景色 #fff690 */

	display: none;
	padding: 10px 0;

	/*-moz-transition: all .4s ease;*/
	/*-webkit-transition: all .4s ease;*/
	/*transition: all .4s ease;*/
}

/* test11より追加 */
#global-nav .menu--item {
	color: #333333;
	padding: 15px 15px;	/* サイドバーの文字の空間 (元々8px 15px) */
	-moz-transition: color .3s linear;	/* ここから3行、選択するとフワッと色が変わる呪文 */
	-webkit-transition: color .3s linear;
	transition: color .3s linear;
/* 	border-bottom: 3px double #fdd23e;	サイドメニュー区切り線 */
}
#global-nav .menu--item:hover {
	color: #a6a16d;
	background: #ffffff;	/* 選択中の背景色追加 #fff79e */
}


#global-nav .sub-menu-nav a {
	color: #333333;
	padding: 15px 15px;	/* サイドバーの文字の空間 (元々8px 15px) */
}
#global-nav .sub-menu-nav a:hover {
	color: #a6a16d;
	background: #ffffff;	/* 選択中の背景色追加 #fff79e */
}


/* nav-toggle */
#nav-toggle {
	position: fixed;
	top: 15px;
	left: 15px;
	height: 32px;
}
#nav-toggle > div {
	position: relative;
	width: 32px;
}

/* ハンバーガーメニュー */
#nav-toggle span {
	width: 100%;
	height: 2px;
	left: 0;
	display: block;
	background: #333333;
	position: absolute;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}

/* #nav-toggle close */
#nav-toggle span:nth-child(1) {
	top: 0;
	/*
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	*/
}
#nav-toggle span:nth-child(2) {
	top: 11px;
	/*
	width: 0;
	left: 50%;
	*/
}
#nav-toggle span:nth-child(3) {
	top: 22px;
	/*
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
	*/
}

/*
.close #nav-toggle span:nth-child(1) {
	top: 0;
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	transform: rotate(0);
}
.close #nav-toggle span:nth-child(2) {
	width: 100%;
	left: 0;
}
.close #nav-toggle span:nth-child(3) {
	top: 22px;
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	transform: rotate(0);
}
*/

/* 画像のマージン設定 */
div.container img {
	margin: 30px 0 0 0;	/* 上 右 下 左 */
}
.topimg {	/* トップページの画像のみに適用 */
	margin: -13.5px 0 0 0;	/* 上 右 下 左 */
}


/* test11より追加・コピーライト */
.copyright {
	color: #333; /*文字色指定*/
	font-size: 0.9em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	line-height: 15px; /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	bottom: 10px; /*下からの距離(positionで指定している場合に適用)*/
	left: 15px; /*左からの距離(positionで指定している場合に適用)*/
/*	background: #fff8ae;	*/
}
.copyright {
	/*透明度設定*/
	opacity: 0.5;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5; /*ここまで透明度設定*/
}






/* z-index */
#nav-toggle {
	z-index: 1000;
}
#container {
	z-index: 900;
}

/* close */
.close #container {
	margin-left: 0;
}
.close #brand-logo {
	margin-left: 50px;
}
/* ハンバーガーメニュー(メニューを閉じた時) */
.close #nav-toggle span {
	background: #333333;
}

@media screen and (max-width: 900px) {
	#container {
		margin-left: 0;
	}
	#brand-logo {
		margin-left: 50px;
	}
	/* ハンバーガーメニュー(スマートフォン) */
	#nav-toggle span {
		background: #333333;
	}
	.close #nav-toggle span {
		background: #333333;
	}

	#sidebar {
		left: -300px;	/* サイドバー幅 */
		z-index: 910;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}
	.close #sidebar {
		left: 0;
	}
}

@media screen and (max-width: 400px) {

}