@charset "utf-8";
/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #fff;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/1.6 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background: #FFF;	/*背景色*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.background-hack {
	z-index : -1;
	background-color : #fff;
	background-image : url('../images/bg_main5.jpg');
	position : fixed;
	top : 0;
	left : 0;
	right : 0;
	bottom : 0;
}
.kotei {
	margin: 0 auto;
	position: fixed;
	z-index: 999;
	width: 100%;
	top: 0px;
	background: rgba(0,0,0,0.6);
}
h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure {
	margin: 0px;
	padding: 0px;
}
ul {
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
	-ms-interpolation-mode: bicubic;
}
img.hv:hover {
	opacity: 0.5;
	filter: alpha(opacity=50);	/* Ie用 */
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
img.maru {
	border-radius: 3px;
}
img.shd {
	box-shadow: 2px 2px 2px 0px #333333;
	-moz-box-shadow: 2px 2px 2px 0px #333333;
	-webkit-box-shadow: 2px 2px 2px 0px #333333;
}
img.grow {
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
img.grow:hover {
	-webkit-transform: scale(1.03, 1.03);
	-moz-transform: scale(1.03, 1.03);
	-ms-transform: scale(1.03, 1.03);
	-o-transform: scale(1.03, 1.03);
	transform: scale(1.03, 1.03);
}
input, textarea, select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse: collapse;
	font-size: 100%;
	border-spacing: 0;
}
iframe {
	width: 100%;
}
.blinking {
	-webkit-animation: blink 0.6s ease-in-out infinite alternate;
	-moz-animation: blink 0.6s ease-in-out infinite alternate;
	animation: blink 0.6s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
 0% {
opacity:0.2;
}
 100% {
opacity:1;
}
}
@-moz-keyframes blink {
 0% {
opacity:0.2;
}
 100% {
opacity:1;
}
}
@keyframes blink {
 0% {
opacity:0.2;
}
 100% {
opacity:1;
}
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #fff;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.8秒。*/
	transition: 0.5s;			/*同上*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
a:hover {
	color: #ff0;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 1000px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}
/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	display: block;
}
header .inner {
	margin: 0 auto;
	padding: 0;
	width: 1000px;	/*ブロックの幅*/
	height: 140px;	/*ブロックの高さ*/
	position: relative;
}
/*h1タグの設定*/
header .inner h1 {
	position: absolute;
	font-size: 14px;		/*文字サイズ*/
	color: #fff;			/*文字色*/
	text-align: center;	/*右寄せ*/
	font-weight: normal;
	bottom: 60px;
	right: 50px;
	letter-spacing: 1px;
}
header .inner h1 a, header h1 a:hover {
	color: #FFF;
	text-decoration: none;
}
/*ロゴ画像の設定*/
header .inner .logo {
	position: absolute;
	right: 50px;	/*ヘッダーブロックに対して左から20pxの場所に配置*/
	top: 7px;	/*ヘッダーブロックに対して上から20pxの場所に配置*/
}
header .inner .logo img {
	width: 305px;
	height: auto;
	-ms-interpolation-mode: bicubic;
}
/*TEL欄の設定*/
header .inner .tel {
	position: absolute;
	font-size: 143%;
	font-weight: normal;
	right: 50px;	/*ヘッダーブロックに対して左から20pxの場所に配置*/
	bottom: 8px;	/*ヘッダーブロックに対して上から20pxの場所に配置*/
	/*font-family: 'Handlee', cursive;*/
	font-family: 'Lato', sans-serif;
	letter-spacing: 1px;
	color: #fff;
	text-align: right;
	line-height: 1.1;
}
/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menubar {
	height: 55px;	/*ブロックの高さ*/
	background: rgba(255,255,255,0.6);
	border-top: 4px solid #d41520;
	/* box-shadow */
	box-shadow: 0px 0px 5px 2px #555555;
	-moz-box-shadow: 0px 0px 5px 2px #555555;
	-webkit-box-shadow: 0px 0px 5px 2px #555555;
}
/*メニュー１個ごとの設定*/
nav#menubar ul {
	width: 1000px;
	margin: 0px auto;
	margin-bottom: 20px;
}
nav#menubar ul li {
	float: left;
	margin-left: 2px;
	margin-bottom: 5px;
	padding-top: 4px;
	letter-spacing: 1px;
	font-size: 120%;
	font-weight: normal;
	font-family: 'Lato', sans-serif;
}
nav#menubar ul li a {
	color: #444;
	text-decoration: none;
	display: block;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	width: 165px;	/*メニュー幅*/
	text-align: center;
	padding: 10px 0px;
	border-radius: 3px;
}
nav#menubar ul li a.ht {
	box-sizing: border-box;
	color: #444;
	text-decoration: none;
	display: block;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	width: 165px;	/*メニュー幅*/
	text-align: center;
	padding: 10px 25px 10px 0px;
	border-radius: 3px;
	background: url(../images/heart.png) no-repeat;
	background-size: 16%;
	background-position: 85% 50%;
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	margin-left: 0;
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	color: #d41520;
	background: rgba(255,255,255,0.8);
	border-radius: 3px;
	/* box-shadow */
	box-shadow: 0px 0px 3px 2px #FFF inset;
	-moz-box-shadow: 0px 0px 3px 2px #FFF inset;
	-webkit-box-shadow: 0px 0px 3px 2px #FFF inset;
}
/*マウスオン時の設定*/
nav#menubar ul li a.ht:hover {
	color: #d41520;
	background: rgba(255,255,255,0.8);
	border-radius: 3px;
	background: url(../images/heart.png) no-repeat, rgba(255,255,255,0.8);
	background-size: 16%;
	background-position: 85% 50%;
	/* box-shadow */
	box-shadow: 0px 0px 3px 2px #FFF inset;
	-moz-box-shadow: 0px 0px 3px 2px #FFF inset;
	-webkit-box-shadow: 0px 0px 3px 2px #FFF inset;
}
/*現在表示中メニュー。current*/
nav#menubar ul li#current a {
	color: #d41520;
	font-weight: bold;
}
.ebig {
	font-size: 140%;
}
/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: both;
	position: relative;
	margin-top: 240px;
}
#mainimg .cc {
	display: block;
	position: absolute;
	margin: auto;
	width: 50%;
	height: 70px;
	vertical-align: middle;
	text-align: center;
	z-index: 1000;
	font-size: 480%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-moz-text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.8);
	-webkit-text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.8);
	-ms-text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.8);
	text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.8);
	font-family: 'Handlee', cursive;
}
#mainimg aside {
	width: 1000px;
	height: auto;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
	padding: 5px;
	background: rgba(255,255,255,0.8);
	/* box-shadow */
	box-shadow: 0px 0px 5px 2px #555555;
	-moz-box-shadow: 0px 0px 5px 2px #555555;
	-webkit-box-shadow: 0px 0px 5px 2px #555555;
}
#mainimg aside img {
	width: 100%;
	height: auto;
	-ms-interpolation-mode: bicubic;
}
/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	margin: 0 auto;
	width: 1000px;
	margin-top: 10px;
}
/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: auto;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	box-sizing: border-box;
	display: block;
	width: auto;
	font-size: 150%;
	color: #FFF;	/*文字色*/
	margin-bottom: 10px;
	padding: 5px 10px 5px 50px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	font-weight: normal;
	letter-spacing: 1px;
	-moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
	-webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
	-ms-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
	background: url(../images/heart.png) no-repeat;
	background-size: 3%;
	background-position: 1% 50%;
	font-family: 'Lato', sans-serif;
}
/*FB表示枠設定
---------------------------------------------------------------------------*/
.fb {
	clear: both;
	position: inherit;
	margin: 0 auto;
	width: 100%;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
.fb img {
	width: 140px;
	height: auto;
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}
footer a:hover {
	text-decoration: none;
}
/*フッターメニュー設定
---------------------------------------------------------------------------*/
#footermenu {
	clear: both;
	text-align: center;
}
#footermenu li {
	padding: 5px 20px;
	display: inline;
	letter-spacing: 1px;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	box-sizing: border-box;
	padding: 10px 20px;
	margin-top: 15px;
	margin-bottom: 30px;
	background: rgba(0,0,0,0.3);
	border-radius: 4px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 150px;
	padding: 5px 0;
	font-size: 100%;
	letter-spacing: 1px;
}
/*記事設定*/
#new dd {
	padding: 5px 0px 5px 170px;
	font-size: 100%;
}
#new dd img {
	margin-right: 5px;
	width: 300px;
	height: auto;
}
/*PAGE TOP設定（オリジナル）
---------------------------------------------------------------------------*/
#page-top {
	position: fixed;
	bottom: 10px;
	right: 10px;
	font-size: 85%;
	font-weight: bold;
}
#page-top a {
	text-decoration: none;
	width: 100px;
	display: block;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}
#page-top a:hover {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
/*PAGE TOP設定（オリジナル）
---------------------------------------------------------------------------*/
/*#page-top {
	position: fixed;
	bottom: 10px;
	right: 10px;
	font-size: 85%;
	font-weight: bold;
}
#page-top a {
	background: #FAEBD7;
	text-decoration: none;
	color: #d41520;
	width: 100px;
	padding: 15px 0;
	text-align: center;
	display: block;
	border-radius: 5px;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
	/* box-shadow
	box-shadow: 2px 2px 0px 0px #000000;
	-moz-box-shadow: 2px 2px 0px 0px #000000;
	-webkit-box-shadow: 2px 2px 0px 0px #000000;
}
#page-top a:hover {
	text-decoration: none;
	color: #777;
	background: #FAEBD7;
	background: url(../images/bg1.png) no-repeat top center #FAEBD7;	/*背景画像の読み込みとグラデーション
	background-size: cover;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}*/
/*その他
---------------------------------------------------------------------------*/
.clear {
	clear: both;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 12px;
	font-weight: bold;
	line-height: 12px;
	border-radius: 2px;
	margin-right: 5px;
	margin-left: 7px;
	padding: 3px 5px;
	/* box-shadow */
	box-shadow: 1px 1px 1px 0px #000;
	-moz-box-shadow: 1px 1px 1px 0px #000;
	-webkit-box-shadow: 1px 1px 1px 0px #000;
}
.touka {
	opacity: 0.8;
}
/*ここからタブレット用（481px～800px）環境の設定
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------800*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px) {
/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}
/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 100%;	/*ブロックの幅*/
	height: 130px;	/*ブロックの高さ*/
	position: relative;
	text-align: center;
}
header .inner {
	width: auto;
	height: auto;
	text-align: center;
}
header .inner h1 {
	display: none;
}
/*ロゴ画像の設定*/
header .inner .logo {
	position: static;
	height: auto;
	padding-top: 30px;
}
/*ロゴ画像の設定*/
header .inner .logo img {
	width: 60%;	/*画面に対して60％の幅に*/
	height: auto;
}
header .inner .tel {
	display: none;
}
/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menubar {
	height: auto;
	overflow: hidden;
	border-bottom: none;
	margin-bottom: 0;
}
/*メニュー１個ごとの設定*/
nav#menubar ul {
	margin: 0 5px;
	width: auto;
}
nav#menubar ul li {
	width: 49%;
	margin: 0 0 0 1%;
	box-sizing: border-box;
	font-size: 130%;
	padding: 0;
}
nav#menubar ul li a {
	width: auto;
}
/*現在表示中メニュー。current*/
nav#menubar ul li#current {
	box-sizing: border-box;
}
/*奇数番目のメニューの設定*/
nav#menubar li:nth-child(odd) {
	width: 50%;
	margin: 0;
}
/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin-right: 10px;
	margin-left: 10px;
}
/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}
section.bn {
	margin: 0 auto;
	margin-bottom: 10px;	/*ボックス間のスペース*/
	text-align: center;
}
section.bn img {
	width: 50%;
	height: auto;
	margin-bottom: 10px;
}
#main h2 {
	background: url(../images/heart.png) no-repeat;
	background-size: 4%;
	background-position: 1% 50%;
	font-family: 'Lato', sans-serif;
}
/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	margin: 290px 10px 10px;
	height: auto;
	width: auto;
}
#mainimg .cc {
	display: block;
	position: absolute;
	margin: auto;
	width: 50%;
	height: 60px;
	vertical-align: middle;
	text-align: center;
	z-index: 1000;
	font-size: 340%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-moz-text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.8);
	-webkit-text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.8);
	-ms-text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.8);
	text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.8);
	font-family: 'Handlee', cursive;
}
#mainimg aside {
	height: auto;
	width: 100%;
}
#mainimg aside img {
	vertical-align: bottom;
}
#mainimg .title {
	left: 10px;
}
/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
ul.navmenu li {
	display: inline;
	padding: 10px 20px;
	border-radius: 3px;
	background-color: #292D8B;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#505DE2), to(#292D8B));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#505DE2, #292D8B);	/*同上*/
	background-image: linear-gradient(#505DE2, #292D8B);
	border-top: 4px solid #E1A91E;	/*上の線の幅、線種、色。rgbaはRGBカラー(0,0,0は黒)に透明度(0は0％の事、1で100%の事になります。)を追加しています。*/
	color: #444;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	color: #FFF;
	letter-spacing: 1px;
}
}

/*ここからスマートフォン用（480px以下）環境の設定
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------480*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px) {
/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}
/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 100%;	/*ブロックの幅*/
	height: 70px;	/*ブロックの高さ*/
	background: none;	/*背景画像の読み込み＆リピートしない＆右側下部に配置*/
	position: relative;
	text-align: center;
}
header .inner {
	width: auto;
	height: auto;
	text-align: center;
}
header h1 {
	display: none;
}
/*ロゴ画像の設定*/
header .inner .logo {
	position: static;
	height: auto;
	padding-top: 10px;
}
/*ロゴ画像の設定*/
header .inner .logo img {
	width: 90%;	/*画面に対して60％の幅に*/
	height: auto;
}
header .inner .tel {
	display: none;
}
/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menubar {
	height: auto;
	overflow: hidden;
	border-bottom: none;
	border-left: none;
}
/*メニュー１個ごとの設定*/
nav#menubar ul {
	margin: 0 10px;
	width: auto;
}
nav#menubar ul li {
	width: 49%;
	margin: 0 0 0 1%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-size: 110%;
	padding: 0;
}
nav#menubar ul li a {
	width: auto;
}
nav#menubar ul li a.ht {
	width: auto;
	padding-right: 30px;
}
/*現在表示中メニュー。current*/
nav#menubar ul li#current {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*奇数番目のメニューの設定*/
nav#menubar li:nth-child(odd) {
	width: 50%;
	margin: 0;
}
/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	margin: 0 10px;
	width: auto;
}
/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}
#main {
	padding-bottom: 0;
}
#main p {
	padding: 0;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	padding: 5px 10px 5px 30px;	/*左から、上、右、下、左側への余白*/
	font-size: 140%;
	background: url(../images/heart.png) no-repeat;
	background-size: 5%;
	background-position: 1% 50%;
	font-family: 'Lato', sans-serif;
}
section.bn {
	margin: 0 auto;
	margin-bottom: 10px;	/*ボックス間のスペース*/
	text-align: center;
}
section.bn img {
	width: 80%;
	height: auto;
	margin-bottom: 10px;
}
/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	margin: 220px 5px 10px 5px;
	height: auto;
	width: auto;
}
#mainimg .cc {
	display: block;
	position: absolute;
	margin: auto;
	width: 60%;
	height: 30px;
	vertical-align: middle;
	text-align: center;
	z-index: 1000;
	font-size: 180%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-moz-text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.8);
	-webkit-text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.8);
	-ms-text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.8);
	text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.8);
	font-family: 'Handlee', cursive;
}
#mainimg aside {
	height: auto;
	width: 100%;
	padding: 5px;
}
#mainimg aside img {
	vertical-align: bottom;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	height: auto;
	padding: 10px;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
	width: auto;/*border-bottom: 1px solid #fff;*/
}
#new dd img {
	margin-right: 0px;
	width: auto;
	height: auto;
}
/*各種DL設定
---------------------------------------------------------------------------*/
/*店舗データ*/
dl.shopdata {
	margin: 30px 0 0 0;
}
dl.shopdata dt {
	float: none;
	width: auto;
	margin: 10px 0 0 0;
	text-align: center;
	padding: 0 10px;
}
dl.shopdata dd {
	text-align: center;
	padding: 5px 0px 10px 0px;
	width: auto;
	border-bottom: 1px solid #ccc;
}
/*リンク集*/
dl.link {
	margin: 30px 0 0 0;
}
dl.link dt {
	float: none;
	width: 100%;
	margin: 0;
	padding-left: 10px;
	text-align: left;
}
dl.link dd {
	padding-left: 10px;
	padding-right: 5px;
	margin-bottom: 10px;
	text-align: left;
}
/*お問い合わせ*/
dl.contact {
	margin: 10px 10px 20px 10px;
}
dl.contact dt {
	float: none;
	width: auto;
	padding: 10px 0 0 0;
	text-align: center;
}
dl.contact dd {
	width: auto;
	padding: 10px 0;
	border-bottom: 1px solid #ccc;
	text-align: center;
}
/*COUPONページ
---------------------------------------------------------------------------*/
/*クーポン内の説明文設定*/
#coupon p {
	font-size: 14px;
	position: absolute;
	height: 100px;	/*ボックスの高さ*/
	width: 100%;	/*ボックスの幅*/
	top: 0px;		/*couponブロックに対して上から0pxの位置に配置*/
	left: 0px;		/*couponブロックに対して左から0pxの位置に配置*/
	padding: 10px;
	background: rgba(0,0,0,0.7);
	color: #FFF;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}
.br {
	display: block;
}
textarea {
	width: 80% !important;
}
#sub .box2 {
	margin: 0 auto;
	margin-top: 10px;
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
	text-align: center;
}
.yoyaku {
	width: 70%;
}
/*フッターメニュー設定
---------------------------------------------------------------------------*/
#footermenu {
	clear: both;
	text-align: center;
}
#footermenu li {
	font-size: 130%;
	padding: 0px 20px;
	display: block;
	letter-spacing: 1px;
}
}
