@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #fff;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 12px/1.5 "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background:#000000; /*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}

h1,h2{
	margin-bottom:10px;
}

ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

.only_sp{
	display:none;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #BC314E;	/*リンクテキストの色*/
}
a:hover {
	color: #BC314E;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 750px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 100%;	/*ブロックの幅*/
/*	background: url(../images/00/siteid.png) no-repeat left top;*/
	position: relative;
	padding-top:50px;
	padding-bottom:30px;
	overflow:hidden;
}
/*h1タグの設定*/
header h1 {
	font-size: 10px;		/*文字サイズ*/
	color: #FFF;			/*文字色*/
	text-align: right;		/*右寄せ*/
	font-weight: normal;
}
header h1 a, header h1 a:hover {
	color: #000;
	text-decoration: none;
}
/*ロゴ画像の設定*/
header #logo {
	float:left;
}

header #tel {
	float:right;
	margin-top:25px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menu ul {
	left: 0px;		/*ヘッダーブロックに対して左から0pxの場所に配置*/
	bottom: 0px;	/*ヘッダーブロックに対して下から0pxの場所に配置*/
	width: 100%;
	clear:both;
	font-size:16px;
	font-family:"ヒラギノ明朝 ProN W6","HiraMinProN-W6","HG明朝E","ＭＳ Ｐ明朝","MS PMincho","MS 明朝",serif;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	border-top: 4px solid rgba(0,0,0,0);	/*上の線の幅、線種、色。rgbaはRGBカラー(0,0,0は黒)に透明度(0は0％の事、1で100%の事になります。)を追加しています。*/
	margin-left: 1px;
}
nav#menu ul li a {
	color: #fff;
	text-decoration: none;
	display: block;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	width: 162px;	/*メニュー幅*/
	text-align: center;
	padding: 10px 0px;
	background: url(../images/bg1.png) #2c0001;
}
/*最初のメニューの設定*/
nav#menu ul li:first-child {
	margin-left: 0;
}
/*マウスオン時の設定*/
nav#menu ul li a:hover {
	background: #e35050;
	color: #FFF;
}
/*現在表示中メニュー。current*/
nav#menu ul li#current {
	border-top: 4px solid #bc314e;	/*上の線の幅、線種、色*/
}
nav#menu ul li#current a {
	color: #fff;	/*文字色*/
	font-weight:bold;
	background-color: #990000;	/*背景色（古いブラウザだとここの色のみが出ます）*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 977px;
	position: relative;
}
#mainimg img{
	display:block;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

/*パンくずリスト
---------------------------------------------------------------------------*/
#breadcrum{
	color:#fff;
	font-size:10px;
}

#breadcrum a{
	color:#fff;
	text-decoration:underline;
}


/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
	box-sizing:border-box;
}

.contents_top{
	background:none !important;
}


/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*左側に回り込み*/
	width: 570px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
	padding-left:10px;
	overflow:hidden;
	border-left:2px dashed #fff;
	box-sizing:border-box;
}

#main section{
	padding-left:5px;
	margin-bottom:30px;
}

/*mainコンテンツのh1タグの設定*/
#main h1 {
	background-color: #2b2c2e;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg1.png), -webkit-gradient(linear, left top, left bottom, from(#454746), to(#2b2c2e));	/*グラデーション*/
	background-image: url(../images/bg1.png), -webkit-linear-gradient(#454746, #2b2c2e);	/*同上*/
	background-image: url(../images/bg1.png), linear-gradient(#454746, #2b2c2e);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #bcbcbc;			/*同上*/
	font-size: 100%;
	color: #FFF;	/*文字色*/
	padding: 5px 10px 5px 15px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-bottom: 5px solid #837768;	/*下側の線の幅、線種、色*/
	margin-bottom:10px;
}
/*MENUページで使っているh1見出しタグのスタイル*/
#main h1.type1 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	color: #837768;	/*文字色*/
	border-top: 1px solid #d2d2d2;		/*上の線の幅、線種、色*/
	border-right: 1px solid #d2d2d2;	/*右の線の幅、線種、色*/
	border-left: 1px solid #d2d2d2;		/*左の線の幅、線種、色*/
}
/*mainコンテンツの段落タグ設定*/
/*#main p {
	padding: 0.5em 10px 1em;	左から、上、左右、下への余白
}*/

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*右側に回り込み*/
	width: 180px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
	overflow:hidden;
	box-sizing:border-box;
}

#sub img{
	max-width:100%;
}

#sub ul{
	list-style-type:none;
	overflow:hidden;
	margin-bottom:30px;
}

#sub ul img{
	max-width:100%;
}

#side_shomei{
	margin-top:80px;
	font-size:12px;
	line-height:14px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 15px;
	border-top:#666 1px solid;
	margin-top:30px;
	background:none;
	color:#fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color:#000000;
}

/*menu.html内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu {
/*	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;	メニューテキストをセンタリング*/
}
ul.navmenu li {
	display: inline;
}
ul.navmenu li a {
	background: url(../images/arrow.png) no-repeat left center;	/*矢印マークの設定*/
	padding-right: 15px;
	padding-left: 15px;
	text-decoration: none;
}
ul.navmenu li a:hover {
	background: url(../images/arrow.png) no-repeat 2px center;	/*マウスオン時に矢印マークを2pxだけ移動させて表示する設定*/
}

/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
/*	height: 370px;	ボックスの高さ*/
	width: 280px;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bcbcbc;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	padding: 23px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 10px 1em;
	position: relative;
	border: 1px solid #CCC;
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}
/*ボックス内のh1タグ設定*/
#main section.list article h1 {
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 100%;
	padding: 0;
	border-radius: 0px;
	color: #837768;	/*文字色*/
	border-bottom: 2px dotted #837768;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}
/*ふきだしアイコンの位置*/
#main section.list article img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	max-height: 300px;
	padding-left: 0px;
	border-top: 1px solid #d2d2d2;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	width: 457px;
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 200px;
	padding: 10px;
	text-align: center;
	background-color: #e5e5e5;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	text-align: right;
}
#pagetop a {
	color: #FFF;	/*文字色*/
	background-color: #c11b1b;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 14em;
	font-size: 10px;
	letter-spacing: 0.1em;
	display: inline-block;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;
	color: #FFF;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb1em {
	margin-bottom: 1em;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #f61468;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
figcaption {
	font-size: 11px;
}
#main img.wa {
	width: 100%;
	height: auto;
}
.pagetop {
	clear: both;
	text-align: right;
	font-size: 11px;
	letter-spacing: 0.2em;
}

/*見出し系
---------------------------------------------------------------------------*/
.midashi_red{
	color:#f00;
	font-weight:normal;
	font-size:16px;
}


/*汎用
---------------------------------------------------------------------------*/

.ltrp{
	overflow:hidden;
}

.ltrp p{
	padding-left:10px;
}

.ltrp img{
	float:right;
	margin-left:20px;
}

.ltrp p > img{
	float:none;
	margin-left:0px;
}

.lprt{
	overflow:hidden;
}

.lprt img{
	float:left;
	margin-right:20px;
}

.ltrp p > img{
	float:none;
	margin-right:0px;
}

.no_hidden{
	overflow:visible;
}

.alignleft{
	float:left;
	margin-right:20px;
}

.alignright{
	float:right;
	margin-left:20px;
}

/*TOPページ
---------------------------------------------------------------------------*/

#toppage_zentai{
	background:#170f03;
}

#toppage_zentai header{
	padding-top:20px;
}

#toppage_zentai header h1{
	float:none !important;
	text-align:center !important;
}

#top_image{
	text-align:center;
}

#top_menu{
	text-align:center;
}

#top_menu img{
	margin:0 4px;
}

/*ニットカフェ
---------------------------------------------------------------------------*/

#knitcafe_tsuite table{
	border-collapse:collapse;
}

#knitcafe_tsuite table th{
	width:73px;
	font-weight:normal;
	border:1px solid #fff;
	padding:5px;
	box-sizing:border-box;
}

#knitcafe_tsuite table td{
	border:1px solid #fff;
	padding:5px;
	box-sizing:border-box;
}

/*スクール
---------------------------------------------------------------------------*/

.school_1set{
	border-bottom:1px dashed #fff;
	padding-bottom:20px;
	overflow:hidden;
}

#school_huukei img{
	display:block;
	float:left;
	width:50%;
	box-sizing:border-box;
}

#school_huukei img:first-child{
	width:100%;
	border-bottom:10px solid #000;
}

#school_huukei img:nth-child(2){
	border-right:5px solid #000;
}

#school_huukei img:nth-child(3){
	border-left:5px solid #000;
}

.kajougaki{
	overflow:hidden;
	margin-bottom:20px;
}

.kajougaki li{
	overflow:hidden;
	clear:both;
	margin-bottom:5px;
}

.kajougaki li h3{
	float:left;
	font-weight:normal;
	margin:0;
	line-height:17px;
}

.kajougaki li p{
	overflow:auto;
}

.school_jikanwari_1set{
	width:49%;
	float:left;
}

.school_jikanwari_1set h3{
	font-weight:normal;
}

.school_jikanwari_1set table{
	border-collapse:collapse;
	width:95%;
}

.school_jikanwari_1set table th{
	border:1px solid #fff;
	padding:5px;
	font-weight:normal;
}

.school_jikanwari_1set table td{
	border:1px solid #fff;
	padding:5px;
}

.school_jikanwari_1set_last{
	clear:both;
	padding-top:20px;
}

/*ギャラリー
---------------------------------------------------------------------------*/

#gallery_topics{
	border-bottom:1px solid #fff;
	padding-bottom:20px;
}

#gallery_categorys{
	overflow:hidden;
	margin-bottom:10px;
	padding-top:10px;
	padding-bottom:10px;
	border-top:1px dotted #999;
	border-bottom:1px dotted #999;
}

#gallery_currentcategory{
	font-size:20px;
	font-weight:bold;
	margin-top:-20px !important;
	margin-bottom:10px !important;
}

.cat-item{
	list-style-type:none;
	float:left;
	margin-right:15px;
}

.cat-item a{
	text-decoration:none;
	color:#ccc;
	font-size:14px;
	font-weight:bold;
}

.cat-item a:hover{
	text-decoration:underline;
}

#gallery_lists li{
	width:48%;
	margin-right:4%;
	float:left;
	margin-bottom:20px;
}

#gallery_lists li:nth-child(even){
	margin-right:0;
}

#gallery_lists li img{
	max-width:100%;
	height:auto;
}

#gallery_lists li h3{
	font-size:16px;
}

.gallary_setsumei{
	overflow:hidden;
	margin-bottom:10px;
}

.gallery_datas{
	font-size:13px;
}

.gallery_datas h4{
	float:left;
	clear:both;
	margin-right:5px;
}

/*商品の紹介
---------------------------------------------------------------------------*/

#styling_topics{
	border-bottom:1px solid #fff;
	padding-bottom:20px;
}

#styling_lists li{
	width:48%;
	margin-right:4%;
	float:left;
	margin-bottom:20px;
}

#styling_lists li:nth-child(even){
	margin-right:0;
}

#styling_lists li img{
	max-width:100%;
}

/*プロフィール
---------------------------------------------------------------------------*/

#profile_gaiyou_l{
	width:400px;
	margin-right:20px;
	float:right;
}

#profile_gaiyou_r{
	float:right;
}

#profile_gaiyou_r img{
	display:block;
}

#profile_lists{
	clear:both;
}

#profile_lists h3{
	font-weight:normal;
	margin-bottom:10px;
}

#profile_lists li{
	width:48%;
	margin-right:4%;
	float:left;
	margin-bottom:20px;
}

#profile_lists li:nth-child(even){
	margin-right:0;
}

#profile_lists li img{
	max-width:100%;
}

/*プロフィール
---------------------------------------------------------------------------*/

#company_zentai{
	margin-top:20px;
}

#company_zentai table{
	width:100%;
	border-collapse:collapse;
}

#company_zentai table th{
	border:1px solid #fff;
	font-weight:normal;
}

#company_zentai table td{
	border:1px solid #fff;
	padding:5px;
}

#company_zentai table tr:last-child th{
	vertical-align:top;
	padding-top:5px;
}

#company_zentai table td img{
	background:#fff;
	max-width:100%;
}

/*プロフィール
---------------------------------------------------------------------------*/

#contact_form{
	
}

#contact_form table{
	border-collapse:collapse;
	width:100%;
}

#contact_form table th{
	border:1px solid #fff;
	width:9em;
	padding:5px;
	font-weight:normal;
}

#contact_form table td{
	border:1px solid #fff;
	padding:5px;
}

#contact_form table th span{
	color:#f00;
}

.bn{
	border:none !important;
}

.bbn{
	border-bottom:none !important;
}