.__sidebar {
	width: 180px;
	/*height: 100vh;*/
	background: #000;
	color: #fff;
	/*position: fixed;
	top: 0;
	left: 0;*/
	z-index: 10;
	padding-bottom: 62px;
}
@media screen and (max-width:768px) {
	.__sidebar {
		width: 100%;
		height: 70px;
		background: #000;
		color: #fff;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 50;
		padding-bottom: 0;
		/*display: flex;
		justify-content: flex-end;*/
	}
}
/* HEADER
-----------------------------------------*/
header {
	padding: 20px;
	width: 100%;
}
header h1 {
	width: 100%;
	margin: 0 auto 25px;
	padding: 0;
}
header h2 {
	width: 70%;
	margin: 0 auto 25px;
	padding: 0;
}
.fixedsticky {
	position: -webkit-sticky;
	position: -moz-sticky;
	position: -ms-sticky;
	position: -o-sticky;
	position: sticky;
	top: 0;
}
@media screen and (max-width:768px) {
	header {
		position: fixed;
		top: 70px;
		left: -100%;
		z-index: 10;
		transition: 0.3s all;
		background: #000;
		height: calc(100vh - 70px);
		overflow-y: auto;
		padding-bottom: 60px;
		border-top: 1px solid #ff7431;
	}
	header.__open {
		top: 70px;
		left: 0;
	}
	header h1 {
		width: 40%;
		margin: 0 auto 25px;
		padding: 0;
	}
	header h2 {
		width: 35%;
		margin: 0 auto 25px;
		padding: 0;
	}
}
/*---------------------------------------*/
.__lang-en {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1.2rem;
	font-style: italic;
	font-weight: 700;
	color: #fff;
	text-shadow: none;
	transition: 0.3s all;
}
nav a:hover .__lang-en {
	text-shadow: 0 0 20px #fefcc9, 10px -10px 30px #feec85, -20px -20px 40px #ffae34, 20px -40px 50px #ec760c, -20px -60px 60px #cd4606, 0 -80px 70px #973716, 10px -90px 80px #451b0e;
}
.__lang-ja {
	font-family: 'Noto Sans Japanese', "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 0.66rem;
	font-weight: 700;
	color: #ff7431;
}
@media screen and (max-width:768px) {
	.__lang-en {
		font-size: 1.5rem;
	}
	.__lang-ja {
		font-size: 0.8rem;
		margin-top: -5px;
	}
}
/*---------------------------------------*/
nav {
	padding: 0 20px;
	text-align: center;
	margin-bottom: auto;
}
nav a {
	display: block;
	text-decoration: none;
	padding: 5px;
}
nav > div {
	width: 100%;
	margin: 0 0 7px;
}
nav > div span {
	display: block;
}
@media screen and (max-width:768px) {}
/*---------------------------------------*/
.__sns {
	width: 180px;
	display: flex;
	/*position: absolute;
	left: 0;
	bottom: 0;*/
	border-top: 1px solid #ff7431;
	border-bottom: 1px solid #ff7431;
	background: none;
}
.__sns > div {
	width: calc(100% / 3);
	border-right: 1px solid #ff7431;
	background: #000;
}
.__sns > div:last-child {
	border-right: none;
	background: #ff7431;
}
.__sns > div.__line {
	display: none;
}
.__sns > div a {
	display: block;
}
.__sns.__for-SP {
	display: none;
}
@media screen and (max-width:768px) {
	.__sns.__for-SP {
		display: flex;
	}
	.__sns {
		width: 60%;
		height: 70px;
		border-top: none;
		border-bottom: none;
		border-left: 1px solid #ff7431;
		position: absolute;
		left: auto;
		right: 0;
		bottom: 0;
	}
	.__sns > div {
		width: calc(100% / 4);
		border-right: 1px solid #ff7431;
		display: flex;
		align-items: center;
	}
	.__sns > div.__line {
		display: flex;
	}
}


/*-----------------------------------------
** share
-----------------------------------------*/
.__share {
	margin-top: 40px;
}
.__share h3 {
	color: #ff7431;
	font-family: 'Roboto Condensed', sans-serif;
	font-style: italic;
	font-size: 0.8rem;
	margin: 0 0 15px;
}
.__share .__ic {
	display: flex;
	justify-content: center;
	margin-bottom: 15px;
}
.__share .__ic > div {
	width: 40px;
	padding: 0 8px;
}
.__share .__ic > div a {
	display: block;
}
.__share .__followus a {
	display: block;
	padding: 8px;
	background: #ff7431;
	transition: 0.3s all;
	font-size: 0;
}
.__share .__followus a:hover {
	background: #af4715;
}
.__share .__followus a img {
	vertical-align: middle;
}
@media screen and (max-width:768px) {
	.__share {
		display: none;
	}
}
/*---------------------------------------*/
.__line-LR {
	display: flex;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
}
.__line-LR:before,
.__line-LR:after {
	content: "";
	flex-grow: 1;
	height: 2px;
	background: #ff7431;
	display: block;
}
.__line-LR:before {
	margin-right: .8em;
}
.__line-LR:after {
	margin-left: .8em;
}


