@charset "shift_jis";


body {
	font-family: "メイリオ", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	font-size: 75%;	/*全体的な文字サイズ設定箇所*/
	line-height: 2;
	color: #333333;		/*全体的な文字色設定箇所*/
	margin: 0px;
	padding: 0px;
	text-align: center;
	background: #FFFFFF url(images/bg2.gif) repeat-x top;	/*壁紙と背景色。imagesフォルダに入っているbg.gifを横並び(repeat-x)で上部(top)に配置させる。*/
}

h1,h2,h3,h4,p,ul,li,dl,dt,dd{
	margin: 0px;
	padding: 0px;
}

ul{
	list-style-type: none;
}

img {
	border: none;
}

.fla {
	text-align: center;
	height: 200px;
	background: #000102;
	padding-top: 100px;
	color: #999999;
}

.color1 {
	color: #0D3F69;
}

.look {
	background: #e8edf1;
}

.button {
	display: inline-block;
	width: 200px;
	height: 54px;
	text-align: center;
	text-decoration: none;
	line-height: 54px;
	outline: none;
}
.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.button {
	background-color: #333;
	color: #fff;
}
.button:hover {
	background-color: #59b1eb;
}

/* アコーディオンメニュー */

label {
    padding :10px 0 0 10px;
    display: block;
    margin: 0;
    color :#fff;
    background :#333;
    border: 1px solid #ccc;
    border-top-left-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    -moz-border-radius-topleft: 0px;
    border-top-right-radius: 10px;
    -webkit-border-top-right-radius: 0px;
    -moz-border-radius-topright: 0px;
    cursor :pointer;
}

input[type="checkbox"].bellows{
    display: none;/* チェックボックスの非表示 */
}

.ac_menu ul {
/* メニュー開閉時アニメーション */
    background :#fafafa;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ac_menu li {
    padding: 5px;
}

/* ▽▽アコーディオン開閉指定▽▽ */
input[type="checkbox"].bellows + ul{
    height: 0;/* チェックが入っていない時の高さ */
    overflow: hidden;
}

input[type="checkbox"].bellows:checked + ul{
    height: auto;/* チェックが入っているときの高さ */
}
/* △△アコーディオン開閉指定△△ */

label {
    padding :10px 0 0 10px;
    display: block;
    margin: 0;
    color :#fff;
    background :#333;
    border: 1px solid #ccc;
    border-top-left-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    -moz-border-radius-topleft: 0px;
    border-top-right-radius: 10px;
    -webkit-border-top-right-radius: 0px;
    -moz-border-radius-topright: 0px;
    cursor :pointer;
}
 
input[type="checkbox"].bellows{
    display: none;/* チェックボックスの非表示 */
}
 
.ac_menu ul {
/* メニュー開閉時アニメーション */
    background :#fafafa;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0;
    padding: 0;
    list-style: none;
}
 
.ac_menu li {
    padding: 5px;
}
 
/* ▽▽アコーディオン開閉指定▽▽ */
input[type="checkbox"].bellows + ul{
    height: 0;/* チェックが入っていない時の高さ */
    overflow: hidden;
}
 
input[type="checkbox"].bellows:checked + ul{
    height: auto;/* チェックが入っているときの高さ */
}
/* △△アコーディオン開閉指定△△ */

/* アコーディオンメニュー２ */
#navi a {
    text-decoration: none;
}
 
#navi ul {
    font-size: 14px;
}
 
#navi ul li {
    display: block;
    float: left;
    width: 25%;
    position: relative;
}
 
#navi ul li ul {
    width: 100%;
    display: none;
    position: absolute;
}
 
#navi ul li:hover ul {
    display: block;
}
 
#navi ul li a {
    color: #fff;
    background: #999;
    border-right: 1px solid #666;
    display: block;
    height: 3em;
    line-height: 3em;
    padding-left: 0.5em;
    padding-right: 0.5em
}
 
#navi ul li:last-child a {
    border-right: none;
}
 
#navi ul li:hover a {
    color: #333;
    background: #eee;
}
 
#navi ul li ul li {
    width: 100%;
    clear: left;
}
 
#navi ul li ul li a {
    border-right: none;
    height: 2em;
    line-height: 2em;
    padding: 0.3em;
}
 
#navi ul li ul li a:hover {
    background: #ccc;
}

/*コンテナー（HP全体の枠組み）
------------------------------------------------------------------------------------------*/
#container {
	width: 900px;		/*HPの幅*/
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	background: #FFFFFF url(images/container_bg2.gif) repeat-y;	/*背景色を白に。imagesフォルダに入っているcontainer_bg.gifを縦にリピート(repeat-y)。*/
}




/*ヘッダー
------------------------------------------------------------------------------------------*/
#header {
	position: relative;
	background: #003561 url(images/header_bg2.gif) no-repeat;	/*ヘッダーの背景色と壁紙。imagesフォルダのheadder_bg.gifを配置させている。*/
}

#header h1 {
	font-size: 10px;	/*h1タグの文字サイズ*/
	color: #808080;		/*文字色*/
	line-height: 1.2;
	position: absolute;	/*ヘッダーに対して絶対配置させる指示*/
	left: 20px;			/*ヘッダーに対しての横からの位置指定*/
	top: 5px;			/*ヘッダーに対しての上からの位置指定*/
	font-weight: normal;
}

#header img {
	vertical-align: top;
	padding-top: 18px;
}




/*ナビメニュー（メインメニューの右上にある小さなメニュー）
------------------------------------------------------------------------------------------*/
#nav {
	position: absolute;	/*ヘッダーに対して絶対配置させる指示*/
	top: 72px;			/*ヘッダーに対しての上からの位置指定*/
	right: 0px;			/*ヘッダーに対しての右からの位置指定*/
	line-height: 26px;
	background: url(images/nav_bg2.gif);
	padding-left: 50px;
	font-size: 11px;	/*ナビメニューの文字サイズ*/
}

#nav li {
	float: left;
	width: 10em;		 /*IE7のメイリオフォントだと8em（8文字）分にしか表示されないので注意*/
	overflow: hidden;
	height: 21px;
}

#nav li a {
	color: #FFFFFF;		/*文字色*/
	text-decoration: none;	/*通常リンクの下線を外す指定。下線を出したいならこの１行を丸ごと削除。*/
	background: url(images/arrow1.gif) no-repeat left center;	/*左の赤い矢印設定。*/
	padding-left: 13px;
}

#nav a:hover {
	color: #8B0000;		/*カーソルを乗せた時の文字色*/
	background: url(images/arrow1.gif) no-repeat 2px center;	/*カーソルを乗せた時に矢印を2pxだけ動かす設定。*/
}



/*メインメニュー
------------------------------------------------------------------------------------------*/
ul#menu li {
	float: left;
	height: 66px;
	width: 150px;
}
ul#menu img {
	vertical-align: top;
}



/*コンテンツ
------------------------------------------------------------------------------------------*/
#contents {
	clear: left;	/*メインメニューのfloat解除*/
	width: 100%;
}

/*メールフォーム
------------------------------------------------------------------------------------------*/
#form {
	margin-left: 0px;
}

/*メインコンテンツ（左側ブロック）
------------------------------------------------------------------------------------------*/
#main {
	float: left;
	width: 600px;
	margin-top: 15px;
	margin-bottom: 100px;
	display: inline;
}

#main h2 {
	background: #00539A url(images/h2_bg.gif) no-repeat;	/*h2見出しの背景画像と背景色設定。*/
	height: 45px;
	font-size: 110%;	/*文字サイズ*/
	color: #FFFFFF;		/*文字色*/
	padding-left: 15px;
	line-height: 45px;
	overflow: hidden;
}




/*追加　会社概要とインタビューの画像の隙間*/
#main a img{margin-bottom: 15px;}


#main p {
	padding: 0.5em 10px 1em;
}

#main a {
	color: #000000;	/*メインコンテンツのリンク色設定*/
}

#main a:hover {
	color: #e60012;	/*メインコンテンツのリンクのカーソルがのった時の色*/
}



/*メインコンテンツ内の「What's New」部分
---------------------------------------------------------------------------*/
#main dl.new {
	width: 577px;		/*What's Newボックスの幅*/
	height: 100px;		/*What's Newボックスの高さ*/
	overflow: auto;		/*この設定でiframe風に見える*/
	margin-right: auto;
	margin-left: auto;
	padding: 10px;
	border-right: 1px solid #808080;	/*What's Newのフチの右ライン。*/
	border-bottom: 1px solid #808080;	/*What's Newのフチの下ライン。*/
	border-left: 1px solid #808080;		/*What's Newのフチの左ライン。*/
	background: #F5F5F5;	/*What's Newボックスの背景色*/
}

#main dt {
	font-weight: bold;	/*日付を太字に。通常の太さがいいなら、この1行を丸ごと削除。*/
	color: #0D3F69;		/*日付の文字色を青（#0D3F69）に*/
}

#main dd {
	border-bottom: 1px dotted #1D5F87;	/*説明文の下に1pxの点線(dotted)を#1D5F87の色で入れる。*/
}



/*販売リストページのボックス設定
---------------------------------------------------------------------------------------------------------*/
.box {
	width: 570px;	/*テーブルの幅*/
	font-size: 100%;
	margin-right: auto;
	margin-left: auto;
	border-bottom: 1px dashed #0D3F69;	/*テーブルの下に#0D3F69の色で点線(dashed)を入れる設定。直線がいいならsolidにする。*/
	margin-bottom: 10px;
}

.box td{
	padding-bottom: 10px;
	vertical-align: top;
}

/*商品名設定*/
.box h4 {
	border-bottom: 1px solid #0D3F69;	/*商品名の下に1px幅の#0D3F69色の直線を入れる*/
	border-left: 4px solid #0D3F69;		/*商品名の左に4px幅の#0D3F69色の直線を入れる*/
	padding-left: 5px;
	font-size: 120%;		/*文字サイズ*/
	position: relative;
}

/*価格設定*/
.box h4 span {
	position: absolute;
	right: 0px;
	color: #e60012;	/*価格の文字色*/
}

/*SOLD OUT表示設定*/
.box .soldout {
	background: url(images/soldout.gif) no-repeat right bottom;	/*SOLD OUT画像を右下に配置させる。*/
}

/*ボックス内にある画像の設定*/
.box img {
	padding: 4px;				/*写真とフチ線の間にある余白*/
	border: 1px solid #cccccc;	/*写真のフチ設定。solidは直線という意味。*/
	margin: 2px;
}

.box a:hover img {
	border: 1px solid #333333;	/*画像にカーソルがのった時のライン色変更設定。*/
}




/*サブコンテンツ（右側ブロック）
------------------------------------------------------------------------------------------*/
#sub {
	float: right;
	width: 270px;
	color: #000000;		/*サブコンテンツの文字色*/
	background: #FFFFFF;
	margin: 15px 15px 100px;
	display: inline;
}

#sub a {
	color: #000000;		/*サブコンテンツのリンクの文字色*/
	background: #FFFFFF;
}

#sub a:hover {
	color: #e60012;		/*サブコンテンツのリンクにカーソルがのった時の文字色*/
}

#sub p {
	padding-top: 0.5em;
	padding-bottom: 1em;
}

#sub h3 {
	background: #FFFFFF url(images/h3_bg2.gif) repeat-x top;
	line-height: 31px;
	text-align: center;		/*文字をセンタリング。左よせでいいならこの１行を丸ごと削除。*/
	letter-spacing: 0.2em;	/*文字間隔を少し広げる設定。*/
	font-size: 100%;
        color: #FFFFFF;
}


/*追加　右メニュー　画像の隙間*/
#sub a img {margin-bottom: 15px;　　　　　
}

#logo a img{
float:left;
margin-right: 50px;
margin-left: 50px;
margin-top: 50px;
}

/*追加　右メニュー　画像の枠線*/
img.border { 
border: 1px #C0C0C0 solid; 
}


/*フッター
------------------------------------------------------------------------------------------*/
#footer {
	clear: both;
        font-size: 11px;
	width: 100%;
	text-align: center;
	background: #FF0000;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #FFFFFF;
}

#footer a {
	color: #FFFFFF;
	background: #FF0000;
}


