@charset "utf-8";

@media print, screen and (min-width: 800px) {
.fixed {
	background: #fff !important;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
	box-shadow: 0px 1px 3px rgba(0,41,88,0.2);
  -webkit-box-shadow: 0px 1px 3px rgba(0,41,88,0.2);
  -moz-box-shadow: 0px 1px 3px rgba(0,41,88,0.2);
}
}

nav {}

nav li {
	box-sizing: border-box;
	border-left: solid 1px #ccc;
	float: left;
	font-weight: normal !important;
	text-align: center;
	width: 25%;
}

nav li:first-child { border: none;}

nav span {
	display: block;
	font-size: 75%;
	font-weight: normal;
}

nav a {
	display: block;
	color: #333 !important;
	padding: 15px 0;
	text-decoration: none !important;
}

nav a:visited,
nav a:hover,
nav a:active {
	background: #feebd7;
	color: #f00 !important;
}

.close-bt { display: none;}




@media print, screen and (max-width: 800px) {
/*右上に固定でメニューボタンを設置*/
.drawr-bt {
	display: block;
	background: #f7f9fb;
	border-radius: 50%;
	box-shadow: 0 1px 2px #ccc;
	cursor: pointer;
	text-align: center;
	font-size: 200%;
	padding: 6px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 7777;	
}

#panel-btn-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin: -1px 0 0 -15px; /* widthの半分引いた数 */
  background: #e60018;
}

#panel-btn-icon:before,
#panel-btn-icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 2px;
  background: #e60018;
}

#panel-btn-icon:before { margin-top: -10px;}
#panel-btn-icon:after { margin-top: 8px;}


/*右から出てくるメニューボックス。こちらもfixed。z-indexでメニューボタンの上に持ってきましょう。*/
.drawr {
	display: none;
	background: #fff;
	box-shadow: 0 0 4px #ccc;
	padding: 0 0 20px;	
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	z-index: 8888;
}

/*閉じるボタンを設置。z-indexを最強にしておかないと隠れちゃいます。*/
.close-bt {
	display: block;
	background: #f7f9fb;
	border-radius: 50%;
	box-shadow: 0 1px 2px #ccc;
	color: #e60018;
	cursor: pointer;
	font-size: 200%;
	padding: 6px;
	margin: 20px 20px 10px auto;
	text-align: center;
	width: 40px;
	height: 40px;
	line-height: 37px;
	z-index: 9999;
}

nav li {
	border-left: none;
	border-bottom: solid 1px #666;
	float: none;
	font-size: 90%;
	margin-top: 0;
	text-align: left;
	width: 100%;
}

nav li:first-child { border-bottom: solid 1px #666 !important;}
nav span { display: inline;}
nav a {	padding: 20px 10px;}
}

@media print, screen and (max-width: 640px) {
ul.social-buttons {	margin: 0 auto;}

ul.social-buttons li {
	float: none;
  margin: 0 10px 10px;
  padding: 0;
	width: 100%;
}
}

@media print, screen and (max-width: 480px) {
.close-bt {	margin: 10px 10px 10px auto;}
}
