@charset "utf-8";
@import url(reset.css);


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

CSSの上書きをしたいときは、964行目以下を書き換えてください
(例：背景色と文字色など)

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


/* base
---------------------------------------------*/
* {
	word-break: break-all;
}

/* box-sizing
---------------------------------------------*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	/*min-width: 1080px;*/
	background: #FFF;
	font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
	color: #333;
}
pre {
	white-space: inherit;
}
textarea {
	font-family: inherit;
}
img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
a {
	text-decoration: none;
	font-weight: normal;
	color: #333;
}
a:hover {
	text-decoration: underline;
}
span.dib {
	display: inline-block;
}
span.space {
    margin-left: 10px;
}
span.tax {
	font-size: 1.2rem;
}

/* 見出し
---------------------------------------*/
h1 {

}
h2 {

}
h3 {
    padding: 4px 40px 3px;
    margin: 15px 0;
	background: #DDD;
	color: #333;
    position: relative;
}
h3::before {
	content: '♦';
	width: 20px;
	height: 20px;
	font-size: 2.0rem;
    color: #888;
    position: absolute;
    top: 0px;
    left: 10px;
}
h3 span {
	color: #ec4247;
}

/* datepicker */
body .ui-datepicker {
	width: calc(100% - 30px);
    max-width: 500px;
	font-size: 1.4rem !important;
}

/* table
--------------------------------------------*/
.content table {
	width: 100%;
	margin-bottom: 30px;
	color: #333;
	table-layout: fixed;
}
.content th,.content td {
	height: auto;
	background: #FFF;
	border: 1px solid #BBB;
	padding: 8px 19px 8px;
	text-align: left;
	vertical-align: middle;
	font-weight: normal;
}
#datebox th,
#datebox td {
	padding: 14px 19px 14px;
}
.content tr th {
	width: 30%;
	background: #F6F6F6;
	font-weight: normal;
	font-size: 1.4rem;
}
.content tr th span.req {
	margin-left: 15px;
	padding: 1px 7px;
	border-radius: 3px;
	font-size: 1.2rem;
	text-align: center;
	background: #af0000;
	color: #FFF;
}
.content tr td.address input,
.content tr td.address select  {
	margin-bottom: 2%;
}
.content tr td span.block {
	display: block;
}


/* input
----------------------------------------------*/
input,select,textarea {
	width: 100%;
	max-width: 500px;
	outline: none;
	border-radius: 0;
	padding: 5px;
	background: #F8F8F8;
	-webkit-appearance: none;
}
input.short,input.long,input.middle,textarea {
	border: 1px solid #CCC;
	margin: 5px 0;
}
input.short {
	width: 50%;
}
input.zipcode {
	max-width: 100px;
}
input.mini {
	max-width: 50px;
}
textarea {
	width: 100%;
	height: 150px;
	resize: vertical;
}
/* ボタンのデザイン変更 */
input[type="button"] {
    width: 50px;
    min-height: 30px;
    outline: none;
    background: #FFF;
    border-style: none;
    background: #CCC;
    border-radius: 5px;
}
input[type="button"]:hover {
    background: #666;
    color: #FFF;
    cursor: pointer;
}
select {
	border: 1px solid #CCC;
	width: 300px;
	max-width: 100%;
}
select:hover,label:hover {
	cursor: pointer;
}
td.time #datepicker {
	margin-right: 10px;
}
td.time span {
	display: inline-block;
}
/* ラジオボタンの装飾 */
td.payment .btn,td.time .btn {
	text-align: left;
	margin-top: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
td.payment .btn {
	margin-top: 0;
}
td.payment .btn input,td.time .btn input,p.check input,td.gift input {	/* デフォを消す */
	display: none;
}
td.payment .btn label,td.time .btn label,p.check label,td.gift label {
	position: relative;
	display: inline-block;
	margin: 5px 7px 5px 0px;
    padding: 4px 15px;
    color: #333;
    z-index: 1;
}
td.payment .btn label:last-child,
td.time .btn label:last-child,
td.gift label:last-child {
	margin-right: 0;
}
p.check label {
	display: block;
	padding: 2% 1% 2% 12%;
	font-weight: normal;
	color: #333;
}
td.payment .btn label::before,
td.time .btn label::before,
td.gift label::before,
p.check label::before {   /* ボタン自体 */
	content: '';
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #FFF;
    border: 1px solid #BBB;
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: .2s;
    transition: .2s;
    z-index: -1;
}
p.check label::before {
	width: 20px;
	height: 20px;
	border-radius: 0;
	left: 2%;
}
td.payment .btn input[type="radio"]:checked + label::before,		/* チェックした時の背景色 */
td.time .btn input[type="radio"]:checked + label::before,
td.gift input[type="radio"]:checked + label::before {
	background: #4f9ae3;
	border-color: #0667ff;
}
td.payment .btn input[type="radio"]:checked + label,		/* チェックした時の文字色 */
td.time .btn input[type="radio"]:checked + label,
td.gift input[type="radio"]:checked + label {
	color: #FFF;
}
p.check label::after {
	content: '';
    width: 13px;
    height: 8px;
    border-left: 3px solid #af0000;
    border-bottom: 3px solid #af0000;
    position: absolute;
    left: 3%;
    top: 34%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: .2s;
    transition: .2s;
    opacity: 0;
}
p.check input[type="checkbox"]:checked + label::after {
	opacity: 1;
}
/*セレクトボックスの上書き*/
table td select {
    position: relative;
    border: none;
    width: 230px;
    height: 30px;
    /*margin-top: 5px;*/
    margin-bottom: 12px;
    font-family: inherit;
    border: 1px solid #BBB;
    background: #F8F8F8;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}
table td .prefectures::-ms-expand {
    display: none;
}
table td .prefectures {
	display: block;
	width: 230px;
    height: 30px;
	position: relative;
	z-index: 1;
}
table td .prefectures::before {
    content: '▼';
    width: 30px;
    height: 30px;
    background: #888;
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #FFF;
    -webkit-transition: .2s;
    transition: .2s;
    z-index: 10;
}
table td .prefectures:hover::before {
	background: #CCC;
	color: #888;
}

p.check {
	width: 280px;
    background: #EEE;
    margin-bottom: 2%;
}

/* #wrap */
#wrap {
	background: #FFF;
	font-size: 1.4rem;
	line-height: 1.8;
	color: #333;
}
.copyright {
	font-size: 1.2rem;
	text-align: center;
	padding-bottom: 5px;
}

/* mgb */
.mgb30 {
	margin-bottom: 30px;
}
.mgb15 {
	margin-bottom: 15px;
}
.mgb10 {
	margin-bottom: 10px;
}

span.red {
	color: #af0000;
}
#error-message {

}
#error-message p {
	font-weight: normal;
	color: #af0000;
}


/*---------------------------------------
	header
---------------------------------------*/
header#header {
    text-align: center;
    margin: 0 auto;
    padding: 20px 0 0;
}


/*---------------------------------------
	footer
---------------------------------------*/
footer {
	width: 100%;
	margin: 0 auto;
	padding: 0px 15px 15px;
}
.footer input.back_top {
	width: auto;
	font-weight: normal;
	font-size: 1.6rem;
    letter-spacing: 0.2rem;
	padding: 12px 24px 10px;
}

/*---------------------------------------
	content
---------------------------------------*/
.content {
	width: 100%;
	max-width: 1030px;
	margin: 0 auto;
	padding: 40px 15px 50px;
}
.content h2 {
	margin-bottom: 10px;
}
.content h2.attention {
    padding: 3px 15px 1px;
    margin-bottom: 35px;
    background: #ec4247;
    color: #FFF;
}

/* .menu
-----------------------------------------*/
.menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 30px;
	overflow: hidden;
}
.menu li {
	position: relative;
	width: 24.666%;
	padding: 16px 40px 14px;
	background: #EDEDED;
	font-weight: normal;
	color: #333;
	line-height: 1.4;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.menu li:last-child {
	width: 26%;
}
.menu li:nth-child(2) {
	background: #DCDCDC;
}
.menu li:nth-child(3) {
	background: #CBCBCB;
}
.menu li:nth-child(4) {
	background: #BABABA;
}
.menu li::before {
    content: '1';
    display: block;
    width: 20px;
    height: 20px;
    margin: 5px;
    background: #FFF;
    color: #AAA;
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: normal;
    text-align: center;
}
.menu li.on::before {
    color: #CC9191;
}
.menu li:nth-child(2)::before {
	content: '2';
}
.menu li:nth-child(3)::before {
	content: '3';
}
.menu li:nth-child(4)::before {
	content: '4';
}
.menu li::after {
	content: '';
	border-right: 68px solid #EDEDED;
    border-bottom: 68px solid transparent;
    position: absolute;
    top: 0;
    right: -20px;
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
    z-index: 10;
}
.menu li:nth-child(2)::after {
	border-right-color: #DCDCDC;
}
.menu li:nth-child(3)::after {
	border-right-color: #CBCBCB;
}
.menu li:nth-child(4)::after {
	border-right-color: #BABABA;
}
.menu li.on::after {
	border-right-color: #D07373;
}
.menu li:last-child::after {
	display: none;
}
.menu li span {
	display: inline-block;
}
.menu li.on {
	background: #D07373;
	color: #FFF;
	/*z-index: 1;*/
}
.menu li a {
	display: block;
	color: #333;
	position: relative;
	z-index: 10;
}
.menu li a:hover {
	text-decoration: none;
}
.menu li a::before {
    content: '';
    width: 0;
    height: 6px;
    background: rgba(208,115,115,0.5);
    position: absolute;
    left: 0;
    bottom: 1px;
    -webkit-transition: width ease-in-out .2s;
    transition: width ease-in-out .2s;
    z-index: -1;
}
.menu li a:hover::before {
    width: 100%;
}


/* .text
------------------------------------*/
.text {
	line-height: 2;
}
.text span {
	background: #D07373;
	font-weight: normal;
	color: #FFF;
	border-radius: 4px;
	padding: 1px 5px;
	margin: 0 5px;
}
.text span.gray {
    background: #CCC;
    color: #333;
}

/* .cart
---------------------------------------*/
.cart {
	margin-bottom: 20px;
	border: 1px solid #BBB;
}
.cart ul {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.cart li.title {
	width: 100%;
	background: #F2F2F2;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-weight: normal;
	font-size: 1.4rem;
}
.cart li.title p {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 10px;
	color: #333;
}
.cart li.title p+p {
	border-left: 1px dashed #CCC;
}
.cart .form_box {
	width: 100%;
}
.cart .form_box .box,
.cart .box {
	width: 100%;
	background: #FFF;
	color: #333;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.cart form:nth-child(2n) .box,
.cart ul li.box:nth-of-type(2n+1) {
	background: #F6F6F6;
}
.cart form:nth-child(2n) .box input.mini {
	background: #FFF;
}
.cart .box div+div {
	border-left: 1px dashed #CCC;
}
.cart .box .noitem {
	width: 100%;
	padding: 14px 10px 10px;
	background: #FFF;
	font-size: 1.8rem;
	text-align: center;
}

/*	共通
-------------------------------------------*/
.cart .option,
.cart .product .data,
.cart .price,
.cart .quantity,
.cart .subtotal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 12px;
}
.cart .quantity .change,
.cart .subtotal .delete {
	margin-left: 5%;
}

/* .ptoduct
-------------------------------------------*/
.cart .product {
	width: 100%;
}
.cart .product .data {
	height: 100%;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.cart .product .data .img {
	width: 100%;
	height: 100%;
	max-width: 50px;
	max-height: 50px;
	margin-right: 4%;
	background: #FFF;
	border: 1px solid #CCC;
}
.cart .product .data .name {
	font-weight: normal;
}


/* 商品名以外
------------------------------------*/
.cart .option,.cart .price,
.cart .quantity,.cart .subtotal {
	flex: 0 0 auto;
}

/* .option
----------------------------------------*/
.cart .option {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	width: 20%;
	max-width: 200px;
}
.cart .option dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.cart .option dl,.cart .option p.none {
	width: 100%;
}
.cart .option p.none {
	color: #999;
}
.cart .option dl+dl {
	margin-top: 5px;
}
.cart .option dl dt {
	font-weight: normal;
	margin-right: 10px;
}

/* .price
--------------------------------------*/
.cart .price {
	width: 14%;
	max-width: 140px;
	text-align: center;
}

/* .quantity
---------------------------------------*/
.cart .quantity {
	width: 14%;
	max-width: 140px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

/* .subtotal
-----------------------------------------*/
.cart .subtotal {
	width: 18%;
	max-width: 180px;
    font-weight: normal;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

/* 内容確認画面 */
#check .cart .quantity,
#check .cart .subtotal {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}


/* .total
------------------------------------------*/
.total {
	width: 50%;
	margin-left: auto;
	border: 1px solid #BBB;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.total dl {
	-webkit-box-flex:         1;
	-ms-flex-positive:         1;
	flex-grow:         1;
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	-ms-grid-row-align: stretch;
	align-self: stretch;
	text-align: center;
	font-weight: normal;
	background: #FFF;
	color: #333;
}
.total dl+dl {
	border-left: 1px dashed #CCC;
}
.total dt,
.total dd {
	padding: 8px;
}
.total dt {
	background: #F2F2F2;
}
.total dl.last dd {
	font-size: 1.6rem;
	color: #af0000;
}
/* .grand_total */
.grand_total .total.last {
    width: 100%;
    margin-top: 15px;
    border: 4px double #BBB;
}
.grand_total .total.last dl {
	width: 25%;
}
.grand_total .total.last dl.last {
	width: 50%;
}


/* .postage
------------------------------------------*/
.postage {
	width: 50%;
    padding: 15px 20px;
	margin: 20px 0;
	margin-left: auto;
	background: #F6F6F6;
	font-weight: normal;
	color: #333;
	text-align: center;
}
.postage span.red {
	font-size: 1.6rem;
	color: #af0000;
}


/* .link_btn
-----------------------------------------*/
.link_btn {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 30px 0 0;
}
.link_btn .left,
.link_btn .right {
	width: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.link_btn .right.full {
	width: 100%;
}
.link_btn.last {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
    margin-bottom: 40px;
}
.link_btn.last input + input {
    width: 250px;
    margin: 0 auto;
}
.link_btn input {
    width: 220px;
	padding: 12px 20px 10px;
    font-weight: normal;
    font-size: 1.7rem;
    letter-spacing: 0.2rem;
    border-radius: 5px;
    background: #D07373;
    color: #FFF;
}
.link_btn input:hover {
	background: #e47373;
	cursor: pointer;
}
.link_btn input.prev,
.link_btn input.back_top {
    background: #235fa8;
}
.link_btn input.prev:hover,
.link_btn input.back_top:hover {
	background: #235fd2;
}
.link_btn input+input {
	margin-left: 30px;
}


.error .link_btn {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.form_view {
	margin: 50px 0 40px;
}
.decide {
	font-size: 1.6rem;
	font-weight: bold;
}

/* thanks
-------------------------------------*/
.thanks {
	border: 1px solid #BBB;
	padding: 12px 20px 10px;
}
.thanks span {
	background: #FFF;
    color: #ec4247;
    font-size: 2.0rem;
    font-weight: normal;
}

.shopinfo {
	width: 100%;
    padding: 15px 15px 18px;
    background: #EEE;
    color: #333;
    text-align: center;
}
.shopinfo .name {
    margin-bottom: 5px;
	font-weight: normal;
}




/*※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※

	CSSの上書きをしたいときは、以下を書き換えてください

※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※*/

/* 背景と文字色変更したいときに変更
-----------------------------------*/
/*#wrap {
	background: #000;
	color: #FBFBFB;
}*/
/*a {
    color: #FFF;
}*/

/* table、入力欄、ボタン etc
------------------------------------*/
/*.content th, .content td,
.cart .form_box .box, .cart .box,
.total dl,.grand_total .total.last {
	background: #000;
	border-color: #AAA;
	color: #FBFBFB;
}
.content tr th,
.cart li.title,.cart li.title p+p,
.total dt {
	background: #FBFBFB;
	color: #000;
}
td.payment .btn label::before,
td.time .btn label::before, td.gift label::before,
p.check label::before {
	background: #FFF;
	border-color: #FFF;
	color: #000;
}
input, select, textarea,
input.short, input.long,
input.middle, textarea, table td select {
	background: #FFF;
	border-color: #FFF;
	color: #000;
}*/

/* 背景画像とか付けたいときに変更
----------------------------------*/
/*header#header {
	padding: 0 0 0px;
	background: none;
}
footer {
    padding: 0px 0px 0px;
}
.main {
	background: none;
}
.content {
	background: none;
}*/