@charset "UTF-8";
/* CSS Document */
/*--------------------------------------------------*/
/*reset
/*--------------------------------------------------*/
p, dl, dt, dd {
	margin: 0;
	padding: 0;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
img {
	vertical-align: bottom;
}

label{
	cursor: pointer;
}

textarea,input,select{
	border:1px solid #ccc;
	padding:2px;
	box-sizing: border-box;
}
textarea[disabled],input[disabled],select[disabled] {
	cursor: not-allowed !important;
	background-color: #eee;
	opacity: 1;
}

/*--------------------------------------------------*/
/*共通設定
/*--------------------------------------------------*/
body {
	font-family: '-apple-system', 'BlinkMacSystemFont', "Helvetica Neue", 'YuGothic', "ヒラギノ角ゴ ProN W3", 'Hiragino Kaku Gothic ProN', 'Arial', "メイリオ", 'Meiryo', "Karla", 'sans-serif' !important;
	color: #333;
	background: #FFF;
}
.fL {
	float: left;
}
.fR {
	float: right;
}


.fRed{
	color:#FF0000;
}
.baseColor {
	color:#00BEF2;
}

.dN-pc {
	display: none;
}

/*--link--*/
a {
	text-decoration: none;
	color: #333;
}
a:hover {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}
a {
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}
/*--ボックス--*/
.box1000 {
	width: 1000px;
	margin: 0 auto;
}
/*--border--*/
.dotLineT {
	border-top: 1px dotted #CCCCCC;
}
.dotLineB {
	border-bottom: 1px dotted #CCCCCC;
}
.textbox{
	border: solid 2px #69C5F1;
	padding: 3px;
	color : #69C5F1;
}

/* スマホ非表示 */
.sp-only {
	display: none;
}
/*--------------------------------------------------*/
/*header
/*--------------------------------------------------*/
header.header_page {
	width: 100%;
	background: #fff;
}
header.header_page h1 {
	width: 1000px;
	margin: 0 auto;
}
/*--------------------------------------------------*/
/*メイン画像部分（カスタマイズ可能）
/*--------------------------------------------------*/

#mainWrap {
	width: 100%;
	max-width: 1024px;
	padding: 32px 0;
	background: url(../../img/common/bg_main.png) no-repeat center bottom #efefef;/* Old Browsers */
	background: url(../../img/common/bg_main.png) no-repeat 50% 100%, -webkit-linear-gradient(to bottom, #fff 10%, #efefef);/*For Old WebKit*/
	background: url(../../img/common/bg_main.png) no-repeat 50% 100%, linear-gradient(to bottom, #fff 10%, #efefef);/*For Modern Browser*/
}
#mainWrap .mainImg {
	background-color: #FFF;
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
}
/*--動画サイズ設定--*/
#mainWrap .mainImg iframe,
#mainWrap .mainImg video {
	width: 100%;
	max-width: 1000px;
	background-color: #000;
}
/*--画像サイズ設定--*/

#mainWrap .mainImg img {
	width: 100%;
}
/*--動画+画像の設定--*/
#mainWrap .movPic {
	display: table;
	table-layout: fixed;
}
#mainWrap .movPic .movBox {
	display: table-cell;
	width: 70%;
	vertical-align: middle;
}
#mainWrap .mainImg .picBox {
	display: table-cell;
	width: 30%;
	vertical-align: middle;
	/* background: #000; *//* Old Browsers */
	/* background: -webkit-linear-gradient(135deg, #000 60%, #04004D); *//*For Old WebKit*/
	/* background: linear-gradient(135deg, #000 60%, #04004D); *//*For Modern Browser*/
	/* background: -mos-linear-gradient(135deg, #000 60%, #04004D); *//*For Old WebKit*/
}
.box25per{ width: 25% !important; }
.box30per{ width: 30% !important; }
.box35per{ width: 35% !important; }
.box40per{ width: 40% !important; }
.box45per{ width: 45% !important; }
.box50per{ width: 50% !important; }
.box55per{ width: 55% !important; }
.box60per{ width: 60% !important; }
.box65per{ width: 65% !important; }
.box70per{ width: 70% !important; }
.box75per{ width: 75% !important; }
.box100per{ width: 100% !important; }

#mainWrap .movPic img {
	width: auto;
	max-width: 300px;
	max-height: 400px;
}
/* youtubeの隙間を埋める */
#mainWrap .mainImg iframe,
#mainWrap .mainImg video {
	vertical-align: bottom;
}

.mesBox{
	width:1000px;
	margin:0 auto;
	padding-top:10px;
	font-size: 18px;
	text-align: center;
}

.mesBox p {
	line-height: 200%;
}

/*--------------------------------------------------*/
/*footer
/*--------------------------------------------------*/
footer {
	width: 100%;
	border-top: 1px solid #E95377;
	clear: both;
	padding-top: 20px;
}
/* ページトップ */
.pTop {
	text-align: right;
}
.pTop a {
	display: inline-block;
	padding: 4px 16px 4px 32px;
	position: relative;
	color: #FFF;
	border-radius: 5px 5px 0 0; /*CSS3草案*/
	-webkit-border-radius: 5px 5px 0 0; /*Safari,Google Chrome用*/
	-moz-border-radius: 5px 5px 0 0; /*Firefox用*/
	background: #69C5F1;/* Old Browsers */
	background: -webkit-linear-gradient(to bottom, #E95377, #E95377); /*For Old WebKit*/
	background: linear-gradient(to bottom, #E95377, #E95377); /*For Modern Browser*/
}
.pTop a::after {
	position: absolute;
	top: 50%;
	left: 14px;
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	margin-top: -1px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

footer .fWrap {
	width: 1000px;
	min-height: 96px;
	margin: 0 auto;
	position: relative;
}
footer h1 {
	position: absolute;
	width: 300px;
	height: 50px;
	top: 0;
	left: 0;
	font-size: 14px;
	font-weight: normal;
}
footer h1 img {
	width: 160px;
	vertical-align: middle;
	margin-left: 10px;
}
footer .fBox {
	position: absolute;
	width: 550px;
	top: 60px;
	left: 0;
}
footer ul.fNavi li {
	display: inline-block;
	padding: 0 16px 0 0;
	font-size: 12px;
}
footer dl.fInfo {
	position: absolute;
	width: 256px;
	top: 0;
	right: 0;
	padding: 8px 0 8px 32px;
	border-left: 1px solid #CCC;
}
footer dl.fInfo dd img {
	height: 26px;
	vertical-align: middle;
	margin: 0 4px 4px 0;
}
footer dl.fInfo dd {
	font-size: 11px;
	line-height: 1.4;
}
footer dl.fInfo li.tell {
	font-size: 24px;
}
.copyright {
	min-width: 1024px;
	background: #E95377;
	color: #FFFFFF;
	clear: both;
	font-size: 12px;
	padding: 8px 0;
	text-align: center;
	margin-top: 32px;
}
/*--------------------------------------------------*/
/*各ページタイトルなど
/*--------------------------------------------------*/
.pageTitle {
	font-size: clamp(22px, 2.00vw, 24px);
	color: #E95377;
	text-align: center;
	font-weight: normal;
}
/*--------------------------------------------------*/
/*カテゴリー
/*--------------------------------------------------*/
#cateWrap {
	padding: 32px 0;
}
#cateList {
	width: 1020px;
	margin: 0 auto;
	padding-top: 24px;
}

#cateList a{
	display:block;
	width: 320px;
	float: left;
	margin: 6px 10px 30px;
}

#cateList dt {
	box-sizing: border-box;
	display: table-cell;
	border: 5px solid #EFEFEF;
	vertical-align: middle;
}
#cateList dt img{
	width: 100%;
}

/*矢印*/
#cateList dd {
	display: inline-block;
	padding: 0 0 0 16px;
	position: relative;
	font-size:small;
}
#cateList dd::after {
	position: absolute;
	top: 0px;
	left: 3px;
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	margin-top: 7px;
	border-top: 2px solid #FABF13;
	border-right: 2px solid #FABF13;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*--------------------------------------------------*/
/*サブカテゴリ
/*--------------------------------------------------*/
p.breadcrumbs {
	width: 1000px;
	margin: 0 auto;
	padding: 0 0 30px;
	font-size: 12px;
}
p.breadcrumbs a {
	display: inline-block;
	padding: 4px 2px 4px 14px;
	vertical-align:middle;
	position: relative;
}
p.breadcrumbs a::after {
	position: absolute;
	top: 42%;
	left: 0;
	display: block;
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-bottom: 2px solid #00BEF2;
	border-left: 2px solid #00BEF2;
	-webkit-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	transform: rotate(225deg);
}
/*--------------------------------------------------*/
/*商品一覧
/*--------------------------------------------------*/

#itemWrap {
	width:1000px;
	margin: 0 auto;
	overflow:hidden;
	padding: 32px 0;
}
/*--ページナビ--*/
ul.pageNav {
	display: table;
	width: 1000px;
	margin: 0 auto 16px;
	font-size: 20px;
}
ul.pageNav li {
	display: table-cell;
	padding: 5px 0;
}
ul.pageNav li.next {
	width: 30%;
	text-align: right;
}
ul.pageNav li.next a {
	display: inline-block;
	padding: 4px 20px;
	position: relative;
}
ul.pageNav li.next a::after {
	position: absolute;
	top: 0;
	right: 2px;
	display: block;
	content: '';
	width: 10px;
	height: 10px;
	margin-top: 10px;
	border-top: 3px solid #00BEF2;
	border-right: 3px solid #00BEF2;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

ul.pageNav li.prev {
	width: 30%;
	text-align: left;
}
ul.pageNav li.prev a {
	display: inline-block;
	padding: 4px 20px;
	position: relative;
}
ul.pageNav li.prev a::after {
	position: absolute;
	top: 0;
	left: 2px;
	display: block;
	content: '';
	width: 10px;
	height: 10px;
	margin-top: 10px;
	border-bottom: 3px solid #00BEF2;
	border-left: 3px solid #00BEF2;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
ul.pageNav li.number {
	width: 40%;
	text-align: center;
}
/*--一覧--*/

ul.itemList {
	width: 1024px;
	margin: 0 auto;
}
ul.itemList li {
	width: 232px;
	float: left;
	text-align: left;
    box-shadow: 1px 1px 3px #DDD;
	border-radius: 5px;
	margin: 0 20px 30px 2px;
	position: relative;
}

ul.itemList li img {
	margin-bottom: 4px;
	border-radius: 5px 5px 0 0;
	width: 100%;
	height: 232px
}
ul.itemList li .one {
	float: none;
	clear: both;
	margin-left: auto;
	margin-right: auto;
}
/*商品画像：中*/
ul.itemList li.item320 {
	width: 320px;
	margin-right:15px !important;
}
ul.itemList li.item320 img {
	margin-bottom: 4px;
	border-radius: 5px 5px 0 0;
	width: 100%;
	height: 320px
}
/*商品画像：大*/
ul.itemList li.item488 {
	width: 488px;
	height: 488px;
	margin-right:24px !important;
}
/*商品残が0*/
ul.itemList li .soldoutFrame {
	position: relative;
}
ul.itemList li img.soldoutOpacity {
	opacity: 0.5;
	width: 100%;
}
ul.itemList li p.soldoutMessage {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	margin: 0;
	padding: 15px 0px;
	background-color: #FFFFFFAA;
	color:#FF6666;
	font-weight:bold;
	text-align: center;
	font-size: 16px;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
/* 受付終了 */
ul.itemList li img.lblDisabled {
	border-radius: unset;
	position: absolute;
	width: inherit;
	top: 0;
}
/*商品残が定数以下の時*/
ul.itemList.stock {
	text-align: center;
	font-size: 0;
}
ul.itemList.stock li {
	float: none;
	font-size: 14px;
	display: inline-block;
	vertical-align: top;
	margin: 8px 28px 30px;
}
/*矢印*/
ul.itemList li span {
	display: block;
	padding: 0 0 0 16px;
	position: relative;
	font-size: small;
}
ul.itemList li span.indexItemName::after {
	position: absolute;
	top: 0px;
	left: 3px;
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	margin-top: 7px;
	border-top: 2px solid #FABF13;
	border-right: 2px solid #FABF13;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* 注釈文 */
.attention_text {
	margin: auto;
	width: 1000px;
}
/*カテゴリーナビ*/
.cateNavBox {
	padding: 0 0 32px
}
ul.cateNav {
	width: 720px;
	margin: 0 auto;
	text-align: center;
}
ul.cateNav li {
	display: inline-block;
	margin: 0 4px 16px;
}
ul.cateNav li a {
	display: block;
	padding: 6px;
	border-bottom: 3px solid #CCC;
}
ul.cateNav li a:hover {
	border-bottom: 3px solid #00BEF2;
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	opacity: 1.0;
}
/*--------------------------------------------------*/
/*商品詳細
/*--------------------------------------------------*/
#detailWrap {
	padding:20px 0 32px 0;
}
p.catePrev {
	width: 1000px;
	margin: 0 auto;
	padding: 0 0 30px;
	font-size: 12px;
}
p.catePrev a {
	display: inline-block;
	padding: 4px 14px;
	vertical-align:middle;
	position: relative;
}
p.catePrev a::after {
	position: absolute;
	top: 50%;
	left: 2px;
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	margin-top: -3px;
	border-bottom: 2px solid #FABF13;
	border-left: 2px solid #FABF13;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*詳細ボックス*/
.detailBox {
	max-width: 1000px;
    width: 100%;	
	margin: 0 auto;
}
.detailImg {
	width: 500px;
	float: left;
}

.detailImg .bxslider img{
	width: 500px;
	height: 500px;
}

ul#bx-pager {
	text-align: center;
	font-size:0;
}
ul#bx-pager li {
	display:inline-block;
	padding:0 10px;
}
ul#bx-pager li a {
	filter: alpha(opacity=50);
	-moz-opacity: 0.50;
	opacity: 0.50;
}
ul#bx-pager li a:hover, ul#bx-pager li a.active {
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	opacity: 1.0;
}
.detailTx {
	width: 450px;
	float: right;
}
ul.itemDetail li {
	border-bottom: 1px dotted #CCCCCC;
	padding: 8px 0;
}
ul.itemDetail li.itemName {
	border: none;
	font-size: 24px;
	font-weight: bold;
	padding-bottom: 0;
}
/* ロゴ画像 */
ul.itemDetail li.logoImage img {
	max-width: 200px;
}
.detailTx dl {
	width: 100%;
	display: table;
}
.detailTx dl dt {
	display: table-cell;
	width: 20%;
	padding: 8px 0;
	border-bottom: 1px dotted #CCCCCC;
}
.detailTx dl dd {
	display: table-cell;
	width: auto;
	padding: 8px;
	border-bottom: 1px dotted #CCCCCC;
}
ul.itemCaution li {
	padding: 8px 0;
	font-size:11px;
	line-height: 1.6;
}

.cartBtn {
		width:220px;
		float:left;
}
.cartBtn a {
	display:block;
	width:auto;
	height:30px;
	position:relative;
	border-radius:4px;
	padding:19px 0 2px 24px;
	border: 1px solid #FABF13;
	background:#FABF13;
	font-size:16px;
	line-height:1.0;
	color:#222222;
	text-align:center;
	}
	
.cartBtn a::before {
	font-family: 'FontAwesome';
	content: '\f06b';
	display:block;
	position: absolute;
	color:#fff;
	font-size:30px;
	top:11px;
	left:20px;
}

.cartBtnDisable a {
	border: 1px solid #CCCCCC;
	background: #cccccc;
	color: #FFFFFF;
	pointer-events: none;
}

/*注文+お気に入りボタン*/
.btnBox {
	padding: 20px 0 0 0;
}

.likeBtn {
		width:220px;
		float:right;
}
.likeBtn a {
	display:block;
	width:auto;
	height:30px;
	position:relative;
	border-radius:4px;
	border: 1px solid #FF9933;
	padding:19px 0 2px 24px;
	font-size:16px;
	line-height:1.0;
	color:#222;
	text-align:center;
	}
	
.likeBtn a::before {
	font-family: 'FontAwesome';
	content: '\f005';
	display:block;
	position: absolute;
	color:#FF9933;
	font-size:24px;
	top:14px;
	left:14px;
}

.likeBtnDisable a {
	border: 1px solid #CCCCCC;
	background: #cccccc;
	color: #FFFFFF;
	pointer-events: none;
}
.likeBtnDisable a::before {
	color:#FFFFFF;
}

.etcBtn a {
	display:block;
	width:auto;
	height:30px;
	position:relative;
	border-radius:10px;
	padding:19px 0 2px 24px;
	background:#00BEF2;
	font-size:16px;
	line-height:1.0;
	color:#FFFFFF;
	text-align:center;
}
/* 続きを読むアコーディオンボタン */
.grad-wrap {
	position: relative;
}
.grad-wrap + .grad-wrap {
	margin-top: 40px;
}
.grad-trigger {
	z-index: 2;
	position: absolute;
	right: 0;
	bottom: -30px;
	left: 0;
	width: 120px;
	margin: auto;
	padding: 5px;
	border-radius: 4px;
	background: #E95377;
	color: #fff;
	text-align: center;
	cursor: pointer;
	transition: .2s ease;
}
.grad-trigger::after {
	content: "続きを読む" /*クリック前のボタンのラベル*/
}
.grad-trigger .fa {
	margin-right: .5em;
}
.grad-item {
	position: relative;
	margin-bottom: 40px;
	overflow: hidden;
}
.grad-item p {
	margin-bottom: 20px;
}
.grad-item.is-hide {
	height: 200px; /*商品説明隠した後の高さ*/
}
.grad-item.main_comment.is-hide {
	height: 200px; /*商品内容隠した後の高さ*/
}
.grad-item::before {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 40px; /*グラデーションで隠す高さ*/
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
	background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
}
.grad-trigger.is-show {
	bottom: -2em;
}
.grad-trigger.is-show::after {
	content: "閉じる" /*クリック後にボタンのラベルを変える*/
}
.grad-trigger.is-show + .grad-item::before {
	display: none;
}

/* アレルギーアイコン */
.detailBox .allergiesIcon li {
	float:left;
	margin-right:5px;
}
.detailBox .allergiesIcon img {
	width: 25px;
}

/* カートに入っている商品の「お届け日指定可・否」表示 */
.cart_desired_delivery_date_OK,
.cart_desired_delivery_date_NA {
	display: inline-block;
	margin-top: 4px;
	padding: 4px;
	background: #eee;
	font-size: medium;
}
.sp_only {
	display: none;
}
/*--------------------------------------------------*/
/*入力フォームページ
/*--------------------------------------------------*/
.likeWrap{
	width: 1000px;
	margin: 0 auto;
	padding: 40px 0 80px;
}

.likeWrap h1{
	font-size: 24px;
	text-align: center;
	color:#E95377;
}

.likeWrap h2{
	font-size: 16px;
	text-align: center;
}

.likeWrap h1.error{
	color: #F00;
	font-size: 16px;
}
.likeWrap h2.error{
	color: #F00;
}
/* アイコン凡例 */
.likeWrap .iconLegendBox{
	margin-bottom: 10px;
}
.likeWrap .iconLegendBox dl{
	display: table;
	width:100%;
}
.likeWrap .iconLegendBox dt{
	width: 30px;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
.likeWrap .iconLegendBox dt.dtRecBtn{
	background:#5CB1B1;
	color:#FFFFFF;
}
.likeWrap .iconLegendBox dt.dtDelBtn{
	background:#D9534F;
	color:#FFFFFF;
}
.likeWrap .iconLegendBox dd{
	padding: 0 8px;
}

.likeWrap .likeBox{
	width:auto;
	border: 1px solid #ccc;
	border-top: none;
	margin-bottom:24px;
}

.likeWrap .likeBox dl{
	display: table;
	width:100%;
}

.likeWrap .likeBox dl img{
	width:80px;
}

.likeWrap .likeBox dt{
	display: table-cell;
	width: 100px;
	padding: 8px;
	text-align: center;
	vertical-align: middle;
	border-top: 1px solid #CCC;
	border-right: 1px dotted #CCC;
}

.likeWrap .likeBox dd{
	display: table-cell;
	padding: 8px;
	border-top:1px solid #CCC;
	vertical-align: middle;
}

/* ギフトを受け取るボタン */
.likeWrap .likeBox dd.dlRecBtn{
	width:200px;
	text-align:center;
	border-left:1px dotted #CCCCCC;
}
.likeWrap .likeBox dd.dlRecBtn a {
	display: inline-block;
	margin: 4px 0;
	position: relative;
	padding:4px 8px 4px 20px;
	border-radius:5px;
	background:#FABF13;
	color:#222222;
}
.likeWrap .likeBox dd.dlRecBtn a::before {
	font-family: 'FontAwesome';
	content: '\f00c';
	display: inline-block;
	position: absolute;
	top:8px;
	left:6px;
	color:#FFFFFF;
}
/* 品切れボタン */
.likeWrap .likeBox dd.dlDisBtn{
	width:150px;
	text-align:center;
	border-left:1px dotted #CCCCCC;
}
.likeWrap .likeBox dd.dlDisBtn span {
	display: inline-block;
	margin: 4px 0;
	position: relative;
	padding:4px 8px 4px 20px;
	border-radius:5px;
	background:#CCCCCC;
	color:#FFFFFF;
}
.likeWrap .likeBox dd.dlDisBtn span::before {
	font-family: 'FontAwesome';
	content: '\f119';
	display: inline-block;
	position: absolute;
	top:4px;
	left:6px;
	color:#FFFFFF;
}

.likeWrap .likeBox dd.dlBtn{
	width:120px;
	text-align:center;
	border-left:1px dotted #CCCCCC;
}

.likeWrap .likeBox dd.dlBtn a {
	display: inline-block;
	margin: 4px 0;
	position: relative;
	padding:4px 8px 4px 20px;
	border-radius:5px;
	background:#D9534F;
	color:#FFFFFF;
}
.likeWrap .likeBox dd.dlBtn a::before {
	font-family: 'FontAwesome';
	content: '\f00d';
	display: inline-block;
	position: absolute;
	top:8px;
	left:6px;
	color:#FFFFFF;
}

.likeWrap .likeBox dd.num {
	width : 70px;
}
.likeWrap .likeBox dd.numBtn{
	width:40px;
	text-align:center;
}
.likeWrap .likeBox dd.numBtn i{
	display:block;
	font-size:120%;
}

.likeWrap .likeBox dd.selectBtn{
	width:130px;
	text-align:center;
}
.likeWrap .likeBox dd.selectBtn a{
	display: inline-block;
	margin: 0;
	position: relative;
	padding:8px 10px 8px 10px;
	border-radius:5px;
	background:#00BEF2;
	color:#FFFFFF;
}

/* お客様情報入力に進むボタン */
.formInputBtn{
    width:320px;
    margin: 0 auto 10px;
}
.formInputBtn a::before {
    font-family: 'FontAwesome';
    content: '\f044';
    position:absolute;
    top:9px;
    left:18px;
    font-size:30px;
    line-height:1.0;
    color:#fff;
}
.formInputBtn a{
    display: block;
    padding: 16px 0 10px 20px;
    position: relative;
    border-radius:10px;
    background:#00BEF2;
    color:#FFF;
    text-align:center;
    font-size:16px;
}
/* ほしい！リストボタン */
.favoriteBtn{
	width:320px;
	margin: 0 auto 10px;
}
.favoriteBtn a::before {
	font-family: 'FontAwesome';
	content: '\f005';
	position:absolute;
	top:9px;
	left:18px;
	font-size:30px;
	line-height:1.0;
	color:#FFF;
}
.favoriteBtn a{
	display: block;
	padding: 10px 0 10px 20px;
	position: relative;
	border-radius:4px;
	background-color: #FF9933;
	color:#FFF;
	text-align:center;
	font-size:16px;
}
/*ギフトボタン*/
.giftBtn {
	width:320px;
	margin: 0 auto;
}

.giftBtn a {
	display: block;
	padding: 10px 0 10px;
	position: relative;
	border:1px solid #FABF13;
	border-radius:4px;
	background:#fff;
	color:#222;
	text-align:center;
	font-size:16px;
	}
	
.giftBtn a::after {
	position: absolute;
	top: 50%;
	left: 20px;
	display:inline-block;
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-bottom: 2px solid #FABF13;
	border-left: 2px solid #FABF13;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.giftNone {
		width:320px;
		margin:0 auto;
}
.giftNone a {
	display:block;
	width:auto;
	height:30px;
	position:relative;
	border-radius:4px;
	padding:19px 0 2px 24px;
	background:#FABF13;
	font-size:16px;
	line-height:1.0;
	color:#222222;
	text-align:center;
}
	
.giftNone a::before {
	font-family: 'FontAwesome';
	content: '\f06b';
	display:block;
	position: absolute;
	color:#fff;
	font-size:30px;
	top:11px;
	left:40px;
}

/*メールアドレス入力部の注意文言*/
.mail_attention{
    padding: 4px;
    border: solid 3px #f5e52c;
}

/*--商品情報まわり--*/
.selectItem_wrapper{
	background: #CCC;
	padding: 1px;
}

.selectItemBox{
	background: #fff;
}


.selectItemBox dl{
	display: table;
	margin: 0;
	width: 100%;
}

.likeWrap .likeBox dt{
	display: table-cell;
	padding: 16px 0 16px 16px;
}

.likeWrap .likeBox,
.likeWrap .likeBox dt,
.likeWrap .likeBox dd,
.likeWrap .likeBox dd.dlBtn{
	border:none;
}

.likeWrap .likeBox dl{
	border: 1px solid #F0E7E3;
}

.likeWrap .likeBox dl img{
	width: 110px;
}

.selectItemBox .itemName{
	text-align: left;
	font-size: 14px;
}

/*  カウンター   */
.counterGroup{
	overflow: hidden;
	margin: 0 auto;
	border: 1px solid #ccc;
	border-radius: 5px;
	display: table;
}
.counterGroupBtn{
	outline: 0;
	padding:8px 10px;
	width: 25px;
	background: #f5f5f5;
	color: #707070;
	font-size: 16px;

	text-decoration: none;
	cursor: pointer;
	display: table-cell;
}
.counterGroupIndicator{
	display: table-cell;
	font-size: 14px;
	padding: 0 14px;

}

.selectItemBox .dlBtn{
	font-size: 12px;
}

.likeWrap .likeBox dd.dlBtn a{
	color: #fff;
	background: #D8534E;
	padding: 10px 10px 10px 25px;
	border-radius: 5px;
	text-decoration: none;
	font-size:14px;
}
.likeWrap .likeBox dd.dlBtn a::before {
	font-family: 'FontAwesome';
	content: '\f00d';
	display: inline-block;
	position: absolute;
	top: 10px;
	left: 9px;
	color: #FFFFFF;
}

.likeWrap .likeBox dd{
	padding:10px 20px;
	display: table-cell;
	vertical-align: middle;
	border-right: 1px solid #F0E7E3;
	text-align: center;

}
.likeWrap .likeBox dd.num{
	width:auto;
}

/*配送フォーム-------------------------------*/
.formWrap {
	width: 1000px;
	margin: 0 auto;
	padding-bottom:40px;
}



.formWrap h2{
	font-size:14px;
	font-weight:normal;
	text-align:center;
}

.formWrap .formBox{
	width:auto;
	border: 1px solid #CCCCCC;
	border-top: 3px solid #999999;
	}

.formWrap .formBox dl{
	display: table;
	width:100%;
}

.formWrap .formBox dt{
	display: table-cell;
	width: 20%;
	padding: 16px;
	background: #ECEFF1;
	vertical-align: middle;
	border-top: 1px solid #CCCCCC;
}

.formWrap .formBox dd{
	display: table-cell;
	width: auto;
	padding: 16px;
	vertical-align: middle;
	border-top: 1px solid #CCCCCC;
}

.formWrap .formBox sup{
	color: #F00;
	margin: 0 0 0 2px;
}

.formWrap .formBox dl label{
	display: table-cell;
	width: 100px;
	}
	
.formWrap .formBox dl label input{
	margin-right: 5px;
	}

.formWrap .formBox input[type="text"] {width: 80%;}

/*支払方法フォーム-------------------------------*/
.payFormWrap {
	width: 1000px;
	margin: 0 auto;
	padding-bottom:40px;
}
.payFormWrap h2{
	font-size:14px;
	font-weight:normal;
	text-align:center;
}
.payFormWrap p{
	font-size:14px;
	text-align:center;
}
.payFormWrap .payFormBox{
	width:auto;
	border: 1px solid #CCCCCC;
	border-top: 3px solid #999999;
}
.payFormWrap .payFormBox dl{
	display: table;
	width:100%;
}
.payFormWrap .payFormBox dt{
	display: table-cell;
	width: 20%;
	padding: 16px;
	background: #ECEFF1;
	vertical-align: middle;
	border-top: 1px solid #CCCCCC;
}
.payFormWrap .payFormBox dd{
	display: table-cell;
	width: auto;
	padding: 16px;
	vertical-align: middle;
	border-top: 1px solid #CCCCCC;
}
.payFormWrap .payFormBox sup{
	color: #F00;
	margin: 0 0 0 2px;
}
.payFormWrap .payFormBox dl label{
	display: block;
}
.payFormWrap .payFormBox dl label:nth-of-type(2n){
	margin: 0 0 8px;
}
.payFormWrap .payFormBox dl label input{
	margin: 0 8px 0 0;
}

/*入力エラー*/
.errorBox{
	width:auto;
	border-radius: 4px;
	border: 3px solid #f00;
	background-color: #ffe8e8;
	color: #f00;
	padding:24px;
	font-size: 15px;
}
.errorBox p{
	font-size:20px;
	font-weight: bold;
	padding-bottom:20px;
}
.formWrap .formBox input.error,
.formWrap .formBox select.error,
.formWrap .formBox textarea.error {
	background-color: #ffe8e8;
}
p.error{
	font-size: 15px;
	color: #F00;
	padding: 5px;
	background-color: #fdf0af;
	margin-top: 10px;
	font-weight: bold;
}
/*名前*/
.formWrap .formBox .name input,
.formWrap .formBox .name02 input{
	width:240px;
	margin:0 20px 0 8px;
}

.formWrap .formBox .name br,
.formWrap .formBox .name02 br{
	display:none;
}

/*郵便番号*/
.formWrap .formBox .zip input{width: 60px;}

.formWrap .formBox .zip a.zipSearch{
	display: inline;
	font-size: 12px;
	margin-left: 10px;
	color: #00CAF7;
	}


/*住所*/
.formWrap .formBox .address select{width: 200px;}
.formWrap .formBox .address table{width: 100%;}
.formWrap .formBox .address table th{
	width: 15%;
	font-weight: normal;
	text-align: left;
	vertical-align:text-top;
	
}
.formWrap .formBox .address table td{
	width: auto;
	vertical-align:text-top;
	padding-bottom:8px;
}
.formWrap .formBox .address table td input{margin-bottom: 2px;}

/*電話+fax*/
.formWrap .formBox dl.tel input{width: 60px;}

/*email*/
.formWrap .formBox input[type="email"]{width: 400px;}
.formWrap .formBox .eMail div{margin : 8px 0 2px;}


/*生年月日*/
.formWrap .formBox .birth p{
	padding: 8px 0 0;
}

/*コード番号*/
.formWrap .formBox .code input{
	width: 60px;
	margin-bottom: 8px;
}

div.another label{
	display:block;
	width:auto;
	padding: 10px;
	background: #AAAAAA;
	color: #fff;
	font-size:16px;
}

/*プライバシー*/
#privacy_include{
	width:990PX;
	height:300px;
	margin:0 auto;
	overflow:auto;
	border:5px solid #efefef;
	border-bottom:none;
}
#privacy_include p{
	padding-bottom:8px;
}

.prLavel{
	width:968px;
	text-align:center;
	background:#efefef;
	padding:16px;
	margin:0 auto;
	font-size: 20px;
	font-weight: bold;
	color: #f00;
}
.prLavel .attention{
	color: #fff;
	background: #f00;
	font-size: 14px;
	padding: 5px;
	position:relative;
	top:-2px;
}
.prLavel input[type=checkbox] {
	display: none;
}

.checkbox {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	margin: 0 20px 8px 0;
	padding: 12px 10px 12px 50px;
	border-radius: 8px;
	vertical-align: middle;
	cursor: pointer;
}
.checkbox:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 17px;
	display: block;
	margin-top: -9px;
	width: 7px;
	height: 12px;
	border-right: 3px solid #f00;
	border-bottom: 3px solid #f00;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 20;
}
.checkbox:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 10px;
	display: block;
	margin-top: -11px;
	width: 20px;
	height: 20px;
	border: 2px solid #bbb;
	border-radius: 6px;
	content: '';
	background: #fff;
}
input[type=checkbox]:checked + .checkbox:before {
	opacity: 1;
}
.prBox{padding:20px;}

/* 注意事項 */
.noticeWrap {
	width: 1000px;
	margin: 0 auto;
	padding-bottom:40px;
}
.noticeWrap .noticeBox {
	width:auto;
	border: 1px solid #CCCCCC;
	border-top: 3px solid #CCCCCC;
	padding: 20px;
	font-size: 14px;
}
.noticeWrap .noticeBox ul {
	padding: revert;
}
.noticeWrap .noticeBox li {
	list-style: disc;
}

.formBtnBox{
	width:640px;
	margin:0 auto;
	padding:30px 0 40px;
}

.formBtnBox li{
	width:300px;
	margin:0 10px;
}

.formBtnBox li.giftBtn{
	float: left;
}


/*160223 変更＆追加*/
.formBtnBox li.nextBtn,
.formBtnBox li.sendBtn{
	float: right;
}
.formBtnBox .questionsTx {
	padding: 10px 0;
	text-align: center;
}
.formBtnBox .questionsBtn {
	margin: 0 auto;
	width: 300px;
}
.nextBtn a,
.sendBtn a,
.questionsBtn a {
	display: block;
	padding: 10px 0;
	font-size: 16px;
	position: relative;
	background: #FABF13;
	border: 1px solid #FABF13;
	color: #222222;
	border-radius: 4px;
	text-align: center;
}

.nextBtn a::after,
.sendBtn a::after,
.questionsBtn a::after {
	position: absolute;
	top: 50%;
	right: 20px;
	display:inline-block;
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.nextBtnDisable a,
.sendBtnDisable a,
.questionsBtnDisable a {
	background: #cccccc;
	border-color: #cccccc;
	color: #FFFFFF;
	pointer-events: none;
}

.finishBox{
	width:700px;
	padding: 20px 40px;
	margin: 120px auto;
	border: 5px solid #ddd;
}

.finishBox h1{
	border-bottom: 1px dotted #DDD;
	padding-bottom: 24px;
}

.finishBox p {
	font-size: 18px;
	text-align:center;
	padding:20px 0;
}
.finishBox dl dt{ padding-bottom: 4px;}
.finishBox dl dd{
	position: relative;
	padding: 0 0 4px 16px;
	}
	
.finishBox dl dd::before{
	position: absolute;
	top: 7px;
	left: 2px;
	display: block;
	content: '';
	width: 6px;
	height: 6px;
	background:#DDD;
	border-radius: 100%;
}
.finishBox .cautionTx{
	font-size: 14px;
	text-align:left;
}

.finishBox a{
	color: #E95377;
}

/*160803 フォームボタン追加*/
.nextBtn input{
	display: block;
	width: 100%;
	padding: 10px 0 10px;
	font-size:16px;
	position: relative;
	background:#ccc;
	border:1px solid #ccc;
	color:#fff;
	border-radius:4px;
	text-align:center;
}
.nextBtn input.checkOk{
	background: #FABF13;
	border:1px solid #FABF13;
	color:#222222;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.nextBtn input.checkOk:hover {
	filter: alpha(opacity=70);
	-moz-opacity: 0.70;
	opacity: 0.70;
}

.nextBtn span{
	position: relative;
	display: block;
}

.nextBtn span::before {
	position: absolute;
	top: 50%;
	right: 20px;
	display: inline-block;
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 100;
}


/*--------------------------------------------------*/
/*アンケートページ
/*--------------------------------------------------*/
.suWrap{
	width: 1000px;
	margin: 0 auto;
	padding:20px 0 40px;
}

.suWrap h1{
	min-width: 1024px;
	font-size: 22px;
	font-weight:bold;
	text-align: center;
	padding-bottom:24px;
}

.suWrap h1 i{
	font-size: 42px;
	color: #FABF13;
	vertical-align: middle;
}

.suWrap h2{
	min-width: 1024px;
	font-size: 16px;
	font-weight:normal;
	text-align: center;
	padding-bottom:24px;
}

.suWrap dl{
	width: 100%;
	margin-bottom:24px;
}

.suWrap dl dt{
	font-size: 14px;
	/*color: #00BEF2;*/
	border:1px dotted #FABF13;
	padding:8px;
	overflow-y:auto;
	max-height:300px;
}

.numList{
	display: inline-block;
	background: #FABF13;
	color: #FFF;
	line-height:1.0;
	padding: 8px 11px;
	margin-right: 10px;
	}

.suWrap dl dt .fRed{
	font-size: 12px;
	padding-left: 12px;
	}

.suWrap dl dd{
	padding: 10px 0 30px;
}

.suWrap dl dd label{
	margin-right:15px;
	white-space: nowrap;
	padding-bottom: 10px;
}

.suWrap dl dd textarea{
	width:800px;
	height:100px;
}
.suWrap dl dd .error {
	padding: 8px;
	margin-bottom: 8px;
	border: 1px dotted #ebccd1;
	color: #a94442;
	background-color: #f2dede;
}

.suWrap .description{
	padding-top: 5px;
	padding-left: 48px;
	font-size: smaller;
}

.suBeforeBtn {
	font-size: 16px;
	padding-bottom: 20px;
	text-align: center;
}

.suBtn {
	width:350px;
	margin: 0 auto;
}
.suBtn a {
	display:block;
	width:auto;
	height:30px;
	position:relative;
	border-radius:10px;
	padding:19px 0 2px 24px;
	background:#FABF13;
	font-size:16px;
	line-height:1.0;
	color:#FFFFFF;
	text-align:center;
	}
	
.suBtn a:before {
	font-family: 'FontAwesome';
	content: '\f06b';
	display:block;
	position: absolute;
	color:#fff;
	font-size:30px;
	top:11px;
	left:40px;
}

/* 住所自動入力ボタン */
.addrEntry {
	background: #FABF13;
	border-radius: 8px;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 13px;
	width: 120px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	margin-left: 10px;
	border: none;
}


/*--------------------------------------------------*/
/*固定のお気に入りボタン
/*--------------------------------------------------*/
.goLike a{
	width:210px;
	position: fixed;
	bottom: 50px;
	right: -170px;
	display: block;
	background: #F93;
	color: #FFF;
	font-size: 12px;
	text-align:center;
	padding:5px;
	line-height:1.4;
	border-radius:5px 0 0 5px;
}

.goLike a:hover{
	right:0;
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	opacity: 1.0;
}

.count{
	display:table-cell;
	width:40px;
	text-align:center;
	line-height:1.0;
	padding-right:8px;
	border-right:1px solid #FFF; 
}
.count:before {
	font-family: 'FontAwesome';
	content: '\f005';
	display: block;
	font-size: 22px;
}

.countTx{
	font-size:14px;
	display:table-cell;
	vertical-align:middle;
	padding-left:8px;
}

/*--------------------------------------------------*/
/*固定のカートボタン
/*--------------------------------------------------*/
.goCart a{
	width:210px;
	position: fixed;
	bottom: 60px;
	right: -170px;
	display: block;
	background: #00BEF2;
	color: #FFF;
	font-size: 12px;
	text-align:center;
	padding:5px;
	line-height:1.4;
	border-radius:5px 0 0 5px;
}

.goCart a:hover{
	right:0;
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	opacity: 1.0;
}

.cartCount{
	display:table-cell;
	width:40px;
	text-align:center;
	line-height:1.0;
	padding-right:8px;
	border-right:1px solid #FFF;
}
.cartCount:before {
	font-family: 'FontAwesome';
	content: '\f07a';
	display: block;
	font-size: 22px;
}
/*--------------------------------------------------*/
/*20160418　デジカタ用ページ
/*--------------------------------------------------*/
.digiBox{
	display: table;
	width: 900px;
	margin: 0 auto;
	padding: 20px 0 64px;
}

.digiImg{
	display: table-cell;
	width: 320px;
	vertical-align: top;
}

.digiImg img{
	width: 320px;
	height: 320px;
}

.digiR{
	box-sizing: border-box;
	display: table-cell;
	width: 580px;
	padding-left: 40px;
	vertical-align: top;
}

.digiR dl.digiContents {
	width: 100%;
	display: table;
}

.digiR dl.digiContents dt {
	display: table-cell;
	width: 20%;
	padding: 8px 0;
}

.digiR dl.digiContents dd {
	display: table-cell;
	width: auto;
	padding: 8px;
}

.digiR .btnBox {
	background:url(../../img/common/bg_stripe.png) 0 0 #E95377;
	padding: 20px 0;
	margin-bottom: 24px;
}

.digiBtn {
		width:300px;
		margin: 0 auto;
}
.digiBtn a {
	display:block;
	width:auto;
	height:30px;
	position:relative;
	border-radius:10px;
	padding:19px 0 2px 0;
	background:#00BEF2;
	font-size:16px;
	line-height:1.0;
	color:#FFFFFF;
	text-align:center;
	}
	
.digiBtn a::before {
	font-family: 'FontAwesome';
	content: '\f02d';
	display:block;
	position: absolute;
	color:#fff;
	font-size:30px;
	top:11px;
	left:20px;
}

.digiStep dt{
	width: 60px;
	background: #00BEF2;
	color: #FFF;
	line-height: 1.0;
	text-align: center;
	padding: 4px;
	border-radius: 5px;
	margin-bottom: 4px;
}

.digiStep dd{margin-bottom: 16px;}

.formWrap .formBox .apNum input[type="text"] {width: 200px;}

/*-------------------------------*/
/*20160422　チケットID用
/*------------------------------*/

.digiR ul.itemDetail li {border-bottom: none;}


.digiCode {
	text-align: center;
	margin: 12px 0 0;
	padding: 20px 0 0;
	box-shadow:0px 0px 2px 0px rgba(0,0,0,0.2);
	-moz-box-shadow:0px 0px 2px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow:0px 0px 2px 0px rgba(0,0,0,0.2);
}

.digiCode dl {width: 320px; margin: 0 auto 12px;}
.digiCode dl dt{padding-bottom: 4px; text-align: left;}
.digiCode dl dd{padding-bottom: 12px;}
.digiCode dl dd input[type="text"] {width: 100%;}
.digiCode .codeImg {padding: 20px 0 40px;}
.digiCode .codeImg img{width: 240px;}

.digiCodeKigen{ text-align: center; padding-bottom: 20px;}

.digiBtnBox {
	background:url(../../img/common/bg_stripe.png) 0 0 #E95377;
	padding: 10px 20px;
	text-align: center;
}

.digiBtnBox a {
	display: inline-block;
	padding: 6px 40px 6px 20px;
	font-size:16px;
	position: relative;
	background:#00BEF2;
	border:1px solid #00BEF2;
	color:#fff;
	border-radius:10px;
	text-align:center;
}

.digiBtnBox a::after{
	position: absolute;
	top: 50%;
	right: 20px;
	display:inline-block;
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}


.digiCodeRiyou{
	width: 900px;
	/*background: #F5F5F5;*/
	border-top: 1px dotted #CCCCCC;
	margin:0 auto;
	padding: 32px;
	margin-bottom: 32px;
	font-size:14px;
	box-sizing: border-box;
}

.digiCodeRiyou dl dt{
	font-size: 18px;
	margin-bottom:10px;
}

.digiCodeRiyou a{
	text-decoration: underline;
}

.digiBtnBox02 {
	padding-top: 16px;
	text-align: center;
}
.digiBtnBox02 a {
	display: inline-block;
	padding: 6px 30px 6px 20px;
	font-size:14px;
	position: relative;
	background:#999;
	border:1px solid #999;
	color:#fff;
	border-radius:10px;
	text-align:center;
	text-decoration: none;
}

.digiBtnBox02 a::after{
	position: absolute;
	top: 50%;
	right: 20px;
	display:inline-block;
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*--------------------------------------------------*/
/*20161101　メッセージ送信・一覧
/*--------------------------------------------------*/

#messageBoard {
	margin: 0 auto;
	padding: 10px 0;
	border: 5px solid #EFEFEF;
	vertical-align: middle;
}

#messageBoard dt {
	margin: 0 50px;
}

#messageList {
	margin: 0 0 20px 0;
	height: 100px;
	overflow: auto;
}
#messageList p.message {
	color: #000;
	text-align: left;
}
#messageList p.self {
	background-color: #FFFFE0;
}

#messageList hr{
	height: 2px;
	background-color: #EFEFEF;
	border: none;
	color: #EFEFEF;
}

#messageBoard textarea {
	width:100%;
}

#messageBoardLeftWrap {
	float:left;
	width:70%;
}
#messageBoardRightWrap {
	float:right;
	width:30%;
}

#messageBoardRightWrap a.sendBtn {
	width:200px;
	font-size:20px;
	text-decoration:none;
	display:block;
	text-align:center;
	color:#fff;
	background-color: #FFCD1E;
	border-radius:15px;
	margin: 0 auto;
}

#sendMessageResponse {
	text-align:center;
}

#messageBoardAnnotation{
	width:100%;
	font-size:12px;
	margin: 0 auto;
	text-align: center;
}

#messageBoardProvision {
	width: 1000px;
	margin: 0 auto;
	padding: 10px 0;
	vertical-align: middle;
	text-align: center;
	color: #61419A;
}

/*--------------------------------------------------*/
/*clearfix
/*--------------------------------------------------*/
.clear {
	clear: both;
}
.cl:after {
	content: "";
	clear: both;
	display: block;
}

/*--------------------------------------------------*/
/*footer移動ボタン
/*--------------------------------------------------*/
.pfooter {
    padding: 20px 50px 0;
}
.pfooter a {
    display: block;
    text-align: center;
    padding: 10px;
	margin-bottom: 20px;
    color: #FFF;
    border-radius: 5px; /*CSS3草案*/
    -webkit-border-radius: 5px; /*Safari,Google Chrome用*/
    -moz-border-radius: 5px; /*Firefox用*/
    background: #69C5F1;/* Old Browsers */
    background: -webkit-linear-gradient(to bottom, #E95377, #E95377); /*For Old WebKit*/
    background: linear-gradient(to bottom, #E95377, #E95377); /*For Modern Browser*/
}

/*--------------------------------------------------*/
/*ページャー
/*--------------------------------------------------*/
.pagerWrap {
	font-size: 0;
	margin: 10px 0;
	text-align: center;
}

.pagerWrap li {
	font-size: 15px;
	display: inline-block;
	min-width: 40px;
	height: 32px;
	text-align: center;
	line-height: 32px;
	margin: 0 6px;
	cursor: pointer;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
.pagerWrap li.now {
	background: #EAF6FD;
	color: #333;
}
.pagerWrap li a {
    display: block;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.pagerWrap li a:hover {
	background: #F1F9FE;
	color: #333;
}

#logout_btn {
	display: block;
	max-width: 180px;
	height: 28px;
	line-height: 30px;
	letter-spacing: 0.2em;
	position: relative;
	border-radius: 10px;
	padding-top: 5px;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 5px;
	background: #E95377;
	font-size: 15px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	text-decoration: none;
	margin: 10px auto 20px;
}


#search_btn {
	display: block;
	max-width: 180px;
	height: 28px;
	line-height: 30px;
	letter-spacing: 0.2em;
	position: relative;
	border-radius: 10px;
	padding-top: 5px;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 5px;
	background: #E95377;
	font-size: 15px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	text-decoration: none;
	margin: 10px auto 20px;
}

/* SMS送信フォーム */
@media screen and (max-width:599px) {
    .camBox {
        margin: 0 auto;
        width: 85%;
    }
}
@media screen and (min-width:600px) {
    .camBox {
        margin: 20px auto 0;
        max-width: 800px;
        width: 90%;
    }
}
.camBox .prizeImg {
    background-color: #FFF;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0 0 0;
    text-align: center;
}
@media screen and (min-width:1280px) {
    .camBox .prizeImg {
        width: 800px;
    }
}
.camBox .prizeImg img {
    width: 100%;
}
@media screen and (min-width:960px) {
    .camBox .prizeImg img {
        max-width: 800px;
    }
}
.camBox > p:first-child,
.camBox h2 {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0 0;
    text-align: center;
}
@media screen and (min-width:960px) {
    .camBox > p:first-child,
    .camBox h2 {
        padding: 32px 0 16px;
    }
}
.camBox dl dt {
    font-weight: bold;
    padding-top: 32px;
    padding-bottom: 5px;
}
.cambox dl dt:not(:first-child) {
    font-weight: bold;
    padding-top: 32px;
}
.camBox dl dd {
    font-size: 13px;
}
.camBox dl dd table {
    border-bottom: 1px solid #ddd;
    width: 100%;
}
.camBox dl dd table th {
    background: #efefef;
    border-top: 1px solid #ddd;
    padding: 8px;
}
.camBox dl dd table td {
    border-top: 1px solid #ddd;
    padding: 8px;
}
.camBox strong {
    color: #f90;
    display: block;
}
.camBox .cauTx {
    font-size: 12px;
    padding-top: 4px;
}
.camBox dl dd ul li {
    padding-left: 13px;
    position: relative;
}
.camBox dl dd ul li::before {
    background: #333;
    border-radius: 50%;
    content: "";
    display: block;
    height: 4px;
    left: 4px;
    position: absolute;
    top: 8px;
    width: 4px;
}
/*ボタンデザイン_デフォルト_ブルー*/
.camBox .btnBox {
    text-align: center;
    padding: 24px 0 32px;
}
.camBox .btnBox button {
    appearance: none;
    background: #00BEF2;
    border-radius: 12px;
    border: none;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 24px;
    height: 64px;
    letter-spacing: .2em;
    line-height: 64px;
    max-width: 375px;
    outline: none;
    padding: 0 0 0 48px;
    position: relative;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    width: 100%;
}
@media screen and (min-width:960px) {
    .camBox .btnBox button {
        font-size: 26px;
        height: 80px;
        line-height: 80px;
        width: 320px;
    }
}
.camBox .btnBox button::before {
    background-size: 38px;
    content: "";
    display: block;
    height: 42px;
    left: 56px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    width: 42px;
}
.camBox .btnBox button:hover {
    background: #0091c2;
}
/*ボタンアイコン_フキダシ*/
.camBox .btnBox.iconSms button::before {
    background: transparent;
    content: '\f075';
    font-family: FontAwesome;
    font-size: 38px;
    line-height: normal;
    margin-top: -24px;
    margin-left: -15px;
}
/*ボタンアイコン_矢印*/
.camBox .btnBox.iconNext button::before {
    background: transparent;
    content: '\f0a9';
    font-family: FontAwesome;
    font-size: 40px;
    left: 30px;
    line-height: normal;
    margin-top: -18px;
}
@media screen and (min-width:320px) and (max-width:479px) {
    .camBox .btnBox.iconSms button::before,
    .camBox .btnBox.iconNext button::before {
        margin-left: -10px;
    }
}
@media screen and (min-width:480px) and (max-width:599px) {
    .camBox .btnBox.iconSms button::before,
    .camBox .btnBox.iconNext button::before {
        margin-left: 15px;
    }
}
@media screen and (min-width:600px) and (max-width:959px) {
    .camBox .btnBox.iconSms button::before,
    .camBox .btnBox.iconNext button::before {
        margin-left: 25px;
    }
}
@media screen and (min-width:960px) {
    .camBox .btnBox.iconSms button::before,
    .camBox .btnBox.iconNext button::before {
        font-size: 40px;
        left: 65px;
    }
}
/*結果*/
.camBox > p.description {
    font-weight: normal;
    padding: 10px 0 32px;
    text-align: center;
}
.camBox form div {
    background: url("/receive/img/sms_send/bg_form.png") 0 0;
    border-radius: 12px;
    box-sizing: border-box;
    margin: 20px auto 0;
    max-width: 375px;
    padding: 16px;
    width: 100%;
}
@media screen and (min-width:960px) {
    .camBox form div {
        padding: 24px;
        width: 640px;
    }
}
.camBox form div {
    text-align: center;
}
.camBox form div p:first-child {
    font-size: 16px;
    font-weight: bold;
    padding: 0 0 8px;
    text-align: center;
}
.camBox form div p {
    font-size: 12px;
    margin: 0 auto;
    padding: 8px 0 2px;
    text-align: left;
    width: 100%;
}
@media screen and (min-width:960px) {
    .camBox form div p {
        width: 320px;
    }
}
.camBox form div input {
    box-sizing: border-box;
    font-size: 13px;
    padding: 4px;
    width: 100%;
}
@media screen and (min-width:960px) {
    .camBox form div input {
        width: 320px;
    }
}
.camBox.result .cauTx {
    padding: 0 0 16px;
}
@media screen and (min-width:960px) {
    .camBox.result .cauTx {
        margin: 0 auto;
        padding: 0;
        width: 640px;
    }
}

/*利用済み*/
.camBoxContents p{
    font-size: 13px;
    padding: 10px 0 24px;
    text-align: center;
}

/*エラーメッセージ*/
.camBox .errorBox {
    background: #ffe8e8;
    border-radius: 4px;
    border: 1px solid #f00;
    box-sizing: border-box;
    color: #f00;
    margin: 0 auto 16px;
    max-width: 640px;
    padding: 16px;
}
.camBox .errorBox p {
    font-weight: bold;
    text-align: left;
}
.camBox .errorBox li {
    font-size: 13px;
    padding-left: 13px;
    position: relative;
}
.camBox .errorBox li::before {
    background: #f00;
    border-radius: 50%;
    content: "";
    display: block;
    height: 4px;
    left: 4px;
    position: absolute;
    top: 8px;
    width: 4px;
}

/*--------------------------------------------------*/
/*ポイント関連
/*--------------------------------------------------*/

/* 商品一覧　ポイント数デザイン */
ul.itemList .itemPoint {
	display: inline-block;
	background-color: #FABF13;
	padding: 3px 5px;
	color: #fff;
	font-weight: bold;
	margin: 3px 0 5px 16px;
}
ul.itemList .itemPoint::after {
	display: none!important;
}
/* 商品詳細　ポイント数デザイン */
ul.itemDetail .detail_itemPoint {
	display: inline-block;
	background-color: #FABF13;
	padding: 3px 10px;
	color: #fff;
	font-weight: bold;
	border-bottom: none;
	margin: 8px 0 0;
	font-size: 18px;
}

/*--------------------------------------------------*/
/*商品詳細文　グレー枠
/*--------------------------------------------------*/
.itemCommentBox {
	border: 1px solid #CFCFCF;
	padding: 5px;
}
/*--------------------------------------------------*/
/*商品詳細文　記号インデント
/*--------------------------------------------------*/
.itemCommentSymbolWrap {
	clear: left;
}
.itemCommentSymbolWrap .itemCommentBold {
	font-weight: bold;
}
.itemCommentSymbolWrap .symbol {
	float: left;
	width: 1em;
}
.itemCommentSymbolWrap .indent {
	width: calc(100% - 1em);
	float: left;
}
/*--------------------------------------------------*/
/*商品詳細文　テキストリンク
/*--------------------------------------------------*/
.itemCommentLink {
	color: #00BEF2;
	text-decoration: underline;
}
/*--------------------------------------------------*/
/*メイン画像下注釈
/*--------------------------------------------------*/
p.detailImgNote {
	padding-bottom: 5px;
	font-size: 12px;
	text-align: right;
}
/*--------------------------------------------------*/
/*アイコン 冷蔵・冷凍など
/*--------------------------------------------------*/
.itemCommentIcon {
	border-radius: 5px;
	color: #fff;
	display: inline-block;
	margin-bottom: 8px;
	padding: 5px 8px;
	letter-spacing: 2px;
}
.icon_g {
	background: #00a95f;
}
.icon_b {
	background: #00a0e9;
}

.delivDetail {
	display: inline-block;
	background-color: #d1d8db;
	padding: 3px 10px;
	border-bottom: none;
	margin: 8px 0 0;
	font-size: 18px;
	cursor: initial;
}

.delivInput{
	display: inline-block;
	background-color: #d1d8db;
	padding: 3px 10px;
}
/*--------------------------------------------------*/
/*問い合わせフォーム　入力画面　確認画面
/*--------------------------------------------------*/
.formWrap .inq dt,
.formWrap .confirm dt {
	font-weight: bold;
}
.formWrap .inq .tel input[type="text"]{
	width: 50%;
}
.formWrap .inq .eMail input[type="text"],
.formWrap .inq .textarea textarea{
	width: 100%;
}
.formWrap .inq textarea, input, select {
	padding: 8px;
}
.formBtnBox li.input {
	float: none;
	width: 300px;
	margin: 0 auto;
}
.formWrap .confirm form {
	margin-block-end: 0;
}
.comp .box1000 {
	text-align: center;
}