@charset "utf-8";

/* =============================================================
    リセットCSS

    無駄な余白などをなくす。
    もともとブラウザに設定されているCSSのせいで変な余白などができるのをガードする。

   http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
 ==============================================================*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: ''; content: none;}
input, textarea,{margin: 0; padding: 0;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;}
caption, th{text-align: left;}
a:focus {outline:none;}

/* micro clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {clear: both;}
.cf {*zoom: 1;}

/*===================================================
	フロートの解除

	背景色が合体してしまうのを防ぐことができる
===================================================*/
.clearfix::after {
   content: ".";
   display: block;
   height: 0;
   clear: both;
   visibility: hidden;
}

/*===================================================
	全体設計
===================================================*/
body {
	line-height: 1;
	font-family: "メイリオ", Meiryo;
	color: black;
	background: url(images/back.jpg);
}

/*===================================================
	ヘッダー SP用 max-width 480px
===================================================*/
	header {
		width: 100%; 
		height: auto;
		background: url(images/header.png) no-repeat;
		/*position: fixed;*/
		/*メインコンテンツが前に来た時*/
		z-index: 99;
		display: inline-block;
	}

	div#main_inner {
		width: 100%;
		height: auto;
		margin: 0 auto;
	}

	div#main_inner h1 {
		background: url(images/baruface1.png) no-repeat;
		float: right;
		padding: 2px 0 0 15px;
		margin-top: 8px;
	}

	div#main_inner span {
		font-size: 15px;
		font-weight: bold;
		color: #fff;
	}

/*===================================================
	ヘッダー　SP用　メニューバー
===================================================*/

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.menu {
	display: block;
	overflow: hidden;
	width: 30px;
	height: 30px;
	float: left;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
	        transition: all 0.5s ease-in-out;
	border: 3px solid transparent;
	border-radius: 50%;
}
.menu div.menubar {
	width: 15px;
	margin: 7px auto;
}
.menu div.menubar .bar {
	display: block;
	width: 100%;
	height: 2px;
	margin-top: 2px;
	border-radius: 2px;
	background-color: #ffffff;
}
.menu ul {
	width: 80%;
	height: 500px;
	border: 2px solid #000;
	display: list-item;
	list-style-type: none;
	-webkit-transition: all 0.5s ease;
	        transition: all 0.5s ease;
	text-align: center;
	opacity: 0;
	background-color: #e1650b;
}
.menu ul li {
	display: block;
	margin: 0 auto;
}
.menu ul li a {
	display: list-item;
	-webkit-transition: all 0.3s ease-in;
	        transition: all 0.3s ease-in;
	text-decoration: none;
	color: #fff;
	height: 50px;
	line-height: 50px;
	border-bottom: 1px solid #000;

}
.menu ul li a:hover {
	color: #ffffff;
	background-color: #000;
}
.menu ul li a:target {
	border-bottom-color: #1b2538;
}

/* クリックした時の動き */
#cp_navimenuid {
	display: none;
}

/*押した後のメニュー欄の大きさ*/
#cp_navimenuid:checked ~ .menu {
	width: 100%;
	height: 500px;
	border: 3px solid #000;
	border-radius: 5px;
	background-color: transparent;
}
#cp_navimenuid:checked ~ .menu > ul {
	display: block;		
	opacity: 1;
}
#cp_navimenuid:checked ~ .menu > .menubar {
	display: none;
}

/*===================================================
	メイン画像 SP用 max-width 480px
===================================================*/
	div img  {
		width: 100%;
		height: auto;
		/*margin-top: 30px;*/
	}

/*===================================================
	最新作品　SP用　max-width 480px
===================================================*/
div.main_outer {
	margin-top: 50px;
}

p.subtext {
	width: 100%;
	font-size: 30px;
	color: #000;
	border-bottom: 4px solid #e1650b;
	display: inline-block;
}

p.subtext span {
	font-weight: bold;
	margin-left: 20px;
}

div#position {
	position: relative;
}	

div.sub_image img{
	width: 100%;
	height: auto;
	float: left;
	box-shadow: 0 2px 7px rgba(0,0,0);
	display: inline-block;
	margin-bottom: 20px;

}

div.sub_image p {
	font-size: 15px;
	font-weight: normal;
	color: #000;
}

div.sub_image p span {
	font-size: 18px;
	font-weight: bold;
	color: #000;
}

div.sub_image a {
	font-size: 15px;
	font-weight: bold;
	color: #000;
	text-decoration: none;
}

div.sub_image a:hover {
	color: #e1650b; 
}

/*===================================================
	フッター SP用 max-width 480px
===================================================*/
footer {
	width: 100%;
	height: auto;
	background-color: #000;
	margin-top: 30px;
}

footer small {
	display: inline-block;
	width: 100%;		
 	font-size: 12px;
  	color: #fff;
  	text-align: center;
  	padding: 0px;
  	line-height: 50px;
 }
