@charset "utf-8";
/* CSS Document */

html {
  width: 100%;
  overflow-x: auto;
}
body {
  width: 100%;
  overflow: hidden;
	font-size: 16px;
	color: #040404;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
img{
  width: auto;
  max-width: 100%;
  height: auto;
}
.wrap {
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 10px;
}
.red {
	color: #d90a0a;
}
.orange{
	color: #E94609;
}
.note {
	font-size: 13px !important;
}
.note li {
	text-indent: -1em;
	padding-left: 1em;
}
.note li span {
	color: #d90a0a;
	font-weight: bold;
}

@media print, screen and (max-width: 991px) {
	.wrap {
		padding: 0 3%;
	}
	.note {
		font-size: 90%;
	}
}

/*====================================================================

link

====================================================================*/
a {
	color: #040404;
	cursor: pointer;
	text-decoration: none;
  opacity: 1;
  transition: opacity .4s cubic-bezier(0.215, 0.610, 0.355, 1.000); 
}
a:link {
	color: #040404;
}
a:visited {
	color: #040404;
}
a:hover{
	color: #666666;
	text-decoration: underline;
  opacity: .8;
}
a:hover img {
	opacity: 0.8;/*要素の透明度を指定*/
	filter: alpha(opacity=80); /*ie6、7の透明度指定*/
	/*ちなみにie8の透明度指定はこれ→ -ms-filter: "alpha(opacity=80)";*/
}
a[href^="tel:"],.telhref {
	cursor: text;
	color: #e94609 !important;
	text-decoration: none !important;
}
a[href^="tel:"]:hover {
	opacity: 1;
}


/*====================================================================

ライトボックス（注文）

====================================================================*/
.lightbox_order .wrap {
	max-width: 600px;
	text-align: center;
	padding: 30px;
}
.lightbox_order h1 {
	color: #040404;
	display: inline-block;
	margin-bottom: 20px;
	padding: 0 5px 5px 5px;
	font-size: 24px;
	border-bottom: 1px solid #222;
}
.lightbox_order h2 {
	font-size: 20px;
	display: inline-block;
	background: #336238;
	color: #fff;
	border-radius: 3px;
	margin-bottom: 5px;
	padding: 5px 15px;
}
.lightbox_order .box {
	border-bottom: 1px dotted #222;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
.lightbox_order .box:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.lightbox_order .box .num {
	margin-bottom: 10px;
	color: #e94609;
	font-size: 42px;
	font-weight: bold;
}
.lightbox_order .box .btn_area a {
	background: #336238;
	color: #fff;
	border-radius: 3px;
	display: inline-block;
	margin: 15px 0;
	padding: 5px 15px;
}

@media print, screen and (max-width:568px){
	.lightbox_order .box .num {
		font-size: 36px;
	}
}


