@charset "utf-8";


/*全端末（PC・タブレット・スマホ）共通設定   奈良原ＴＣ用------
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}

h3 {font-size: 16px;}

ul {list-style-type: none;}
ol {padding-left: 65px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

hr {border-width: 3px 0px 0px 0px;
	border-color: #56D4FA;
	border-style: solid;
	margin: 0px 0px 20px 0px;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
	text-decoration: none;
}
a:hover {
	color: #13a0c9;			/*マウスオン時の文字色*/
	text-decoration: underline;		/*マウスオン時にリンクの下線を消す設定*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	margin: 0px auto;
	max-width: 1100px;	/*最大幅*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 60px;	/*高さ *********************2017.4.14 100>60 変更　*/
	-webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 1px 1px 4px rgba(0,0,0,0.2);			/*同上*/
	border-radius: 0px 0px 20px 20px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/
	margin-bottom: 30px;	/*下のコンテンツとの間にあけるスペース*/
	background: #13a0c9;	/*背景色（古いブラウザ用）*/
	background: -webkit-linear-gradient(#13a0c9, #1190b5);	/*グラデーション*/
	background: linear-gradient(#13a0c9, #1190b5);			/*同上*/
}
/*ロゴ画像*/
#logo img {
	width: 250px;	/*画像幅*/
	padding: 15px 0px 0px 5px;	/*ロゴの余白。上、右、下、左の順。*/
	float: left;	/*左に回り込み*/
}

/*ロゴ画像  テニスボール　2017/4/17　*/
#logo_ball img {
	width: 50px;	/*画像幅*/
	padding: 6px 0px 0px 20px;	/*ロゴの余白。上、右、下、左の順。*/
	float: left;	/*左に回り込み*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	float: right;	/*右に回り込み*/
	width: auto;
	margin: 0px 40px 0px 0px;	/*メニューの外側にとる余白。上、右、下、左の順。*/
}
#menubar ul {
	overflow: hidden;
	border-left: 1px solid #fff;			/*メニューの一番左の線の幅、線種、色（古いブラウザ用）*/
	border-left: 1px solid rgba(255,255,255,0.2);	/*メニューの一番左の線の幅、線種、色。255,255,255は白の事で0.2は透明度20%の事。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	text-align: center;	/*内容をセンタリング*/
}
#menubar a {
	display: block;
	text-decoration: none;
	padding: 0 20px;	/*上下、左右にあけるメニュー内の余白*/
	line-height: 60px;	/*高さ*/
	border-right: 1px solid #fff;				/*各メニューの右側の線の幅、線種、色（古いブラウザ用）*/
	border-right: 1px solid rgba(255,255,255,0.2);	/*各メニューの右側の線の幅、線種、色。255,255,255は白の事で0.2は透明度20%の事。*/
	color: #fff;	/*文字色*/
}
/*マウスオン時の設定*/
#menubar a:hover {
	color: rgba(255,255,255,0.7);
}

/***************************現在表示中(current)設定************* 2017/3/28  */
#menubar li.current a {
	color: #fff;	/*文字色*/
	background: #106d8c;	/*背景色*/
}
/***************************現在表示中(current)設定************* 2017/3/28  */

/*ドロップダウンの親メニュー設定*/
#menubar li.arrow1:hover {
	background: url(../images/arrow1.png) no-repeat center bottom;	/*マウスオン時に三角マークを出す*/
}
/*小さな端末用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}


/*ドロップダウンメニュー用　縦ダウンへ
--------------------------------------2017.4.14 他のテンプレートよりコピー----*/
/*ドロップダウンブロックの設定*/
#menubar ul.ddmenu {
	position:absolute;
	visibility: hidden;
	z-index: 101;
	padding-top: 1px;
	-webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.1);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.1が透明度。*/
	box-shadow: 2px 2px 4px rgba(0,0,0,0.1);			/*同上*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*背景色。rgbaは色設定で255,255,255は白。0.9は透明度90%の事。*/
	border: none;
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}

#menubar ul.ddmenu li a {
	background: none;
	color: #106d8c;	/*文字色*/
}
/*マウスオン時の設定*/


#menubar ul.ddmenu li a:hover {
	background: #fff;	/*背景色*/
}

/*------------------------------------2017.4.14 他のテンプレートよりコピー----*/


/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 74%;	/*幅*/
	padding-bottom: 30px;
}
/*１カラム時のメインコンテンツ*/
.c1 #main {
	float: none;
	width: 100%;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	color: #FFF;		/*文字色*/
	padding: 7px 15px;	/*上下、左右への余白*/
	background: #13a0c9;	/*背景色（古いブラウザ用）*/
	background: url(../images/bg1.png) no-repeat right top, -webkit-linear-gradient(#13a0c9, #1190b5);	/*背景画像とグラデーション*/
	background: url(../images/bg1.png) no-repeat right top, linear-gradient(#13a0c9, #1190b5);			/*同上*/
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);			/*同上*/
	border-radius: 10px;	/*角丸のサイズ*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	padding: 4px 15px;	/*上下、左右への余白*/
	border-radius: 10px;	/*角丸のサイズ*/
	border: solid 1px #ccc;	/*線の線種、幅、色*/
	background: -webkit-linear-gradient(#fff, #eee);	/*グラデーション*/
	background: linear-gradient(#fff, #eee);	/*同上*/
}
/*メインコンテンツのp(段落)タグ設定*/
#main p {
	padding: 0px 15px 14px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -5px;
}

/*コンテンツ内のボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list {
	float: left;	/*左に回り込み*/
	width: 31%;
	max-width: 250px;		/*幅*/
	overflow: auto;
	background: #fff;	/*背景色*/
	margin-left: 1.5%;	/*ボックス同士の左右間の余白*/
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	height: 500px;			/*高さ(CMS専用)*/
	height: 230px;			/*高さ（下の「.list a」の高さと揃える）*/
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 0px 0px 3px rgba(0,0,0,0.2);			/*同上*/
}
.list a {
	display: block;
	overflow: auto;
	text-decoration: none;
	text-align: center;
	height: 500px;	/*高さ(CMS専用)*/
	height: 230px;	/*高さ（上の「.list」の高さと揃える）*/
}
.list a:hover {
	background: #000;	/*マウスオン時の背景色*/
	color: #fff;		/*マウスオン時の文字色*/
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/

/*ボックス内の画像設定*/
.list .img {
	width: 100%;	/*画像の幅*/
	height: 140px;	/*画像の高さ*/
	padding-bottom: 10px;	/*画像下に空ける余白*/
}
/*ボックス内のh4（見出し）タグ設定*/
.list h4 {
	padding-left: 0px;
	padding-bottom: 5px;
	font-size: 20px;     /*文字サイズ******************2017.4.13 16>26変更*/
}
/*ボックス内のp（段落）タグ設定*/
.list p {
	font-size: 12px;	/*文字サイズを少し小さく*/
}

/*一覧ページの各物件ボックス内のテーブル（CMS用）
---------------------------------------------------------------------------*/
.list table {
	font-size: 10px;	/*文字サイズ*/
	margin: 0px 15px 5px;
}
.list table,
.list table td,
.list table th{
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
.list table td,
.list table th{
	padding: 1%;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
.list table th{
	width: 18%;		/*幅*/
	background: #f5f5f5;	/*背景色*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}
.list a:hover table th{
	background: #000;
	text-decoration: underline;
}
/*白い説明用ブロック*/
.list table td {
	width: 31%;	/*幅*/
}


/**********************************************************start  2017.7.3**/
/*mainコンテンツ内のbox設定*/
#main .box_lb {
	overflow: hidden;
	padding: 3%;	/*ボックス内の余白*/
	margin-bottom: 50px;	/*ボックスの外（下）にあける余白*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.4);	/*背景色。255,255,255は白のことで、0.4は透明度40%の事。*/
	border: 1px solid #fff;	/*線の幅・線種・色。*/
	border-radius: 20px;	/*角丸のサイズ*/
}

/*Worksページ
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list_lb {
	width: 16%;		/*幅*/
	float: left;	/*左に回り込み*/
	text-align: center;	/*ボックス内をセンタリング*/
	margin-left: 3%;	/*ボックスの外（左）にあけるスペース*/
	margin-bottom: 20px;	/*ボックスの外（下）にあけるスペース*/
}
/*ボックス内の画像*/
#main .list_lb figure img {
	border-radius: 200px;	/*角丸のサイズ。適当に大きめに設定しておけばOK。*/
}
/*ボックス内のh3タグ*/
#main .list_lb h3 {
	font-weight: normal;	/*hタグのデフォルトの太字を標準に*/
	font-size: 11px;		/*文字サイズ*/
	padding: 0px 10px;		/*上下・左右への余白*/
}

/**********************************************************end 2017.7.3**/



/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左に回り込み*/
	width: 22%;	/*幅*/
	padding-bottom: 30px;
}
/*１カラム時のサブコンテンツ*/
.c1 #sub {
	display: none;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	background: #666;	/*背景色（古いブラウザ用）*/
	background: -webkit-linear-gradient(#999, #666);	/*グラデーション*/
	background: linear-gradient(#106d8c, #093e50);	/*同上2017.4.9変更  */

/***************************************************************** 2017.4.9  */
	color: #fff;	/*文字色*/
	border-radius: 10px 10px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下の順。*/
	padding: 10px 5px;	/*上下、左右への見出し内の余白　20180516左右を15＞10へ縮小*/
}

/*会員募集中 2017/9/22 *********************/
/*subコンテンツのh3タグの設定*/
#sub h3 {
/*	width: 100%
	font-size: 20px; */
	clear: both;
	margin-bottom: 5px;
	padding: 4px 10px;	/*上下、左右への余白*/

	border-radius: 10px;	/*角丸のサイズ*/
	border: solid 3px #ccc;	/*線の線種、幅、色*/

	background: -webkit-linear-gradient(#fff, #eee);	/*グラデーション*/
	background: linear-gradient(aqua,navy);	/*同上*/
	text-align: center;
	color: white;
	animation-delay: 1s;  /* アニメーション開始までの時間 */
	animation-duration: 3s;  /* アニメーション時間 */
	animation-name: slidein;  /* アニメーション名 */
}

/* ▼アニメーション名「slidein」の動作内容 */
@keyframes slidein {
  from {
    margin-left: 330%;
    width: 92%;
    color:white;
    background-color: #aaccff;
	border: none;

  }
  to {
    margin-left: 0%;
    width: 92%;
    color: white;
    background-color: white;
	border: none;
  }
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li {
	background: #fff;	/*背景色*/
	border-bottom: solid 1px #e4e4e4;	/*下の線の線種、幅、色*/
}
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 2px 10px;	/*メニュー内の余白。上下、左右への設定。*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 5%;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #eee;	/*背景色*/
	border: solid 1px #ccc;	/*線の線種、幅、色*/
	-webkit-box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。内側に白のラインを入れる。*/
	box-shadow: 0px 0px 1px 1px #fff inset;
}
/*box1内のメニューの設定*/
#sub .box1 ul.submenu {
	margin-bottom: 0px;
}

#sub .box1 ul.submenu a:hover{
	text-decoration: underline;
}

/*box1内のh2見出しの設定*/
#sub .box1 h2 {
	border-radius: 0px;
}

/*box1内のtableの設定*/
#sub .box1 table {
	background: #fff;	/*背景色*/
	width: 100%;
	margin: 0px auto;
}
#sub .box1 table td {
	padding: 0px 5px;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop a {
 /*	position: fixed;              位置固定2017/4/29*/
	clear: both;
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	padding: 0px 30px;	/*上下、左右へのボックス内余白*/
	background: #ccc;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	border-radius: 4px;	/*角丸のサイズ*/
	
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #999;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding: 10px 0px;
}
footer a {
	text-decoration: none;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 15px;
	margin-bottom: 15px;
	height: 200px;	/*高さ  20170326 140px > 200pxへ変更 --------------　*/
	overflow: auto;	/*高さの設定を超えるとスクロールが自動で出る設定。全部表示させていたいならこの行と上の行を削除。*/
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 96%;
	margin: 0 auto 15px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: center;		/*左よせ >center */
	background: #eee;                                                                   	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;	/*幅*/
	text-align: center;	/*センタリング*/
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*よく頂く質問ページ　＞年間行事予定に使用する　2017.5.10
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	width: 720px;
	padding: 0px 15px;
	margin: 0 auto;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {

	font-weight: bold;	/*太字*/
	padding-top: 10px;
}
.faq dt a {
	color: #13a0c9;	
}
/*回答の設定*/
.faq dd {
/*	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 10px;
	padding-left: 100px;
	color: #13a0c9;	/*文字色*/
}

/*一覧ページのボックス右下のオプションマーク
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	left: 0px;
	top: 0px;
	-webkit-transform: rotate(-45deg) translate(-35px);
	transform: rotate(-45deg) translate(-35px);
}
h2 span.option1 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	transform: none;
	display: inline-block;
}
.option2 {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	left: 0px;
	top: 0px;
	-webkit-transform: rotate(-45deg) translate(-35px);
	transform: rotate(-45deg) translate(-35px);
}
h2 span.option2 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	transform: none;
	display: inline-block;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}

/*トップページのtagアイコン    　　　　　 更新情報のタグ付け　2014.4.25
---------------------------------------------------------------------------*/
.tagicon {
	background: #106d8c;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}

/*　sub内プレート配置　＞スマホではサイズ小さく　2018.5.28
---------------------------------------------------------------------------*/
#plate {
/*	margin-bottom: 5px;
	overflow: hidden;*/
	}
#plate li {
	float: left;	/*左に回り込み*/
	width: 49%;
	margin-right: 1%;
	margin-bottom: 1%;
	}

#flower {
	}

/*その他
---------------------------------------------------------------------------*/
.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}

.mb15,.mb1em {margin-bottom: 15px;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}

.color1 {color: #13a0c9;}  /* 薄い青　、HPのヘッダー色　*/
.color2 {color: #0000ff;}   /* 20170330 濃い青 */
.color-red {color: red;}   /* 20170424 赤色 */

.wl {width: 96%;}
.wm {width: 70%;}
.ws {width: 50%;}
.w5 {width: 5%;}
.w10 {width: 10%;}
.w15 {width: 15%;}
.w20 {width: 20%;}
.w30 {width: 30%;}

.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}

.clear {clear: both;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.fr {float: right;}
.fl {float: left;}

.big1 {font-size: 30px;letter-spacing: 0.2em;}
.fs18 {font-size: 18px;}
.mini1 {font-size: 11px;}
.pr {font-size: 10px;}

.sh {display: none;}



/*画面幅1150px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1150px){

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

}



/*画面幅1000px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1000px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar a {
	padding: 0 10px;	/*上下、左右にあけるメニュー内の余白*/
}

}



/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar-s {
	margin-bottom: 30px;
	overflow: hidden;
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: left;	/*左に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	width: 49.5%;
	margin-right: 1%;
	margin-bottom: 1%;
}
#menubar-s a {
	display: block;
	text-decoration: none;
	line-height: 60px;	/*高さ*/
	text-align: center;
	background: -webkit-linear-gradient(#fff, #cacaca);	/*グラデーション*/
	background: linear-gradient(#fff, #cacaca);			/*同上*/
	border-radius: 20px;
	border: 1px solid #999;
}
#menubar-s li:nth-child(even) {
	margin-right: 0;
}
/*小さな端末用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
}
/*大きな端末用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 10px;	/*上から24pxの場所に配置    2017.4.15 24>8 変更　*/
	right: 24px;	/*右から5%の場所に配置*/
	width: 40px;	/*幅*/
/*	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	padding: 3px 10px 0px;  /* 2018.5.25 
/*	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/

}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #fff;	/*枠線の幅、線種、色*/
	color: #fff;
	font-size: 10px;
	margin-bottom: 7px;	/*バー同士の余白*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, linear-gradient(#13a0c9, #1190b5);
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, linear-gradient(#13a0c9, #1190b5);
}

/*トップページ内「更新情報・お知らせ」ブロック for h3 2017/8/19
---------------------------------------------------------------------------*/
section#new h3.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, linear-gradient(#fff, #eee);
}
section#new h3.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, linear-gradient(#fff, #eee);
}

/*　sub内プレート配置　＞スマホではサイズ小さく　2018.5.28
---------------------------------------------------------------------------*/

#plate li {
	width: 24%;
/*	margin-right: 1%;
	margin-bottom: 1%; */
	}

#flower {
	width: 50%
	}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub {
	display: none;
}

#under900 {
	display: none;
}

}

/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

/*コンテンツ内のボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list {
	float: none;
	width: auto;
	height: auto;
}
.list a {
	height: auto;
}
/*ボックス内の画像設定*/
.list .img {
	height: auto;	/*画像の高さ*/
}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.6;	/*行間*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 80px;	/*高さ*/
	border-radius: 0px 0px 10px 10px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/
	margin-bottom: 20px;	/*下のコンテンツとの間にあけるスペース*/
}
/*ロゴ画像*/
#logo img {
	width: 200px;	/*画像幅*/
	padding: 28px 0px 0px 20px;	/*ロゴの余白。上、右、下、左の順。*/
}

#logo_ball img {
	padding: 16px 0px 0px 10px;	/*ロゴの余白。上、右、下、左の順。*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar-s {
	margin-bottom: 20px;
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: none;
	width: 100%;
	margin-right: 0;
}
#menubar-s a {
	border-radius: 10px;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	top: 20px;	/*上から24pxの場所に配置*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
#sub ul.submenu li a {
	padding: 10px 10px;	/*メニュー内の余白。上下、左右への設定。*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 95%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh {display: block;}
.pc {display: none;}

}



/*画面幅360px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:360px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
#logo img {
	padding: 26px 0px 0px 10px;	/*ロゴの余白。上、右、下、左の順。*/
}	

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	right: 15px;	/*右から15pxの場所に配置*/
}


}

/* 新規追加　2017/3/26　以降
---------------------------------------------------------------------------*/
ul#pan {
	margin-bottom: 10px;
	margin-right: 40px;
	float: left;
}

ul#pan li {
	display: inline;
	color: #050545;
	font-weight: bold;
}

/*
pan li a {
	background: url(../images/arrow_black.gif) no-repeat right center;
					padding-right: 15px;
}
*/

ul#pan_navi {
	margin-left: 0px;

}

ul#pan_navi li {
	display: inline;
}

ul#pan_navi li a {
	text-decoration: none;
	padding-left: 10px;
	font-weight: bold;
	color: #13a0c9;
}


/*商品詳細ページの画像切り替え（imgchg_pack）               2017/3/27
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	position: relative;
}
/*大きな画像の１行目*/
#item-image #item_image1 {
	z-index:2;
	position:relative;
	overflow:hidden;
}
/*大きな画像の２行目*/
#item-image #item_image2 {
	z-index:1;
	position:absolute;
	left:0px;
	top:0px;
	overflow:hidden;
}
/*サムネイル画像*/
.thumbnail {
	width: 100px;	/*画像の幅*/
	height: 100px;	/*画像の高さ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin-bottom: 5px;
}
.thumbnail:hover {
	border: 1px solid #000;	/*マウスオン時の枠線の幅、線種、色*/
}


