@charset "UTF-8";
/* Text ver.1.0.0 last update  15/12/09
	タキイ CSS
-----------------------------------------------------------------------------------

	0.	CSS Reset & Clearfix
	1.	Document Setup
	2.	Header
	3.	Contents
	4.	Post Content
	5.  login
	6.	bespoke
	7.	order_archive
	8.	order_item
	9.	order_list
	10.	Footer
	11. js
	12. 404			*2015/12/21 add
	13. button	*2015/12/21 add
	14. contents_manual	*2016/02/24 add

----------------------------------------------------------------------------------- */


/*===================================================
     0.CSS Reset / YUI 3.5.0 - reset.css
===================================================*/

/**
 * YUI 3.5.0 - reset.css (http://developer.yahoo.com/yui/3/cssreset/)
 * http://cssreset.com
 * Copyright 2012 Yahoo! Inc. All rights reserved.
 * http://yuilibrary.com/license/
 */
/*
	TODO will need to remove settings on HTML since we can't namespace it.
	TODO with the prefix, should I group by selector or property for weight savings?
*/
html{
	color:#000;
	background:#FFFEF0;
}
/*
	TODO remove settings on BODY since we can't namespace it.
*/
/*
	TODO test putting a class on HEAD.
		- Fails on FF.
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
	margin:0;
	padding:0;
}
table {
	/*border-collapse:collapse;*/
	border-spacing:0;
}
fieldset,
img {
	border:0;
}
/*
	TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style:normal;
	font-weight:normal;
}

ol,
ul {
	list-style:none;
}

caption,
th {
	text-align:left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,
q:after {
	content:'';
}
abbr,
acronym {
	border:0;
	font-variant:normal;
}
/* to preserve line-height and selector appearance */
sup {
	vertical-align:text-top;
}
sub {
	vertical-align:text-bottom;
}
input,
textarea,
select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
/*to enable resizing for IE*/
input,
textarea,
select {
	*font-size:100%;
}
/*because legend doesn't inherit in IE */
legend {
	color:#000;
}
/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssreset { display: none; }

.clearfix {width:100%;}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/*===================================================
    1.	Document Setup
===================================================*/
body { font-size: 62.5%; color: #000; font-family: "ヒラギノ丸ゴ Pro W4", "Hiragino maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;background: #FFFEF0;} /* fontsize を標準10pxに */
.t9px { font-size: 0.9em;}
.t11px { font-size: 1.1em;}
.t12px { font-size: 1.2em;}
.t13px { font-size: 1.3em;}
.t14px { font-size: 1.4em;}
.t15px { font-size: 1.5em;}
.t16px { font-size: 1.6em;}
.t17px { font-size: 1.7em;}
.t18px { font-size: 1.8em;}
.t19px { font-size: 1.9em;}
.t20px { font-size: 2em; }

.ta_left { text-align: left !important; }
.ta_right { text-align: right !important; }
.ta_center { text-align: center; }

.wrapper{
	position: relative;
}

/* hover */
.login_box input.login:hover,
.logout:hover,
.contents nav ul li input:hover,
.contents_l table tbody td .edit:hover,
.contents_l table tbody td .status_a:hover,
.contents_l table tbody td .status_d:hover,
.contents_l table tbody td .print:hover,
.contents_l table tbody td .download:hover,
.destination h4 .btn_red:hover,
.destination h4 .btn_red2:hover,
.thin_btn:hover,
.item_box dl dd .item_order:hover,
.item_box .deliv_clear:hover,
.item_box.deliv_box .deliv_all:hover,
.bespoke_order:hover,
.item_select_r input:hover,
.order_item table tbody tr td input.del:hover,
.order_item table tbody tr td input.add:hover,
.next_p:hover,
.prev_p:hover,
.contents_manual a.btn:hover{
	cursor: pointer;
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
}

/*for Webkit*/
input::-webkit-input-placeholder {
    color:    #000;
}
/*for Firefox*/
input:-moz-placeholder {
    color:    #000;
}
a:hover{
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
}
input:focus {
	outline: none;
}
/*select::-ms-expand {
  display: none;
}*/
/*===================================================
    2. Header
===================================================*/
header{
	background: url("/application/design/img/header_bg.jpg") repeat-x;
	width: 100%;
	min-width: 980px;
	height: 70px;
	display: block;
	border-bottom: 1px solid #CCCBC0;
	position: relative;
}
header h1{
	padding: 10px 0 0 20px;
}
.loginout{
	position: absolute;
	right: 20px;
	top:5px;
}
.loginout{
	font-size: 2em;
	text-align: right;
}
.logout {
    height: 30px;
    width: 140px;
    font-size: 0.9em;
    margin-left: 5px;
    padding: 2px 0;
    color: #fff;
    background: #00793d;
    border: 0;
    border-radius: 5px;
}
.loginout p span{
	color: #ca5d4c;
}
/*===================================================
     3.	Contents
===================================================*/
.contents{
	width: 980px;
	margin: 0 auto;
}
.contents nav{
	text-align: center;
	padding: 20px 0;
}
.contents nav ul li{
	display: inline-block;
	font-size: 1.8em;
}
.contents nav ul li + li {
	margin-left: 15px;
}
.contents nav ul li input{
	width: 180px;
	height: 45px;
    border: 0;
    border-radius: 5px;
    color: #fff;
}
.contents nav ul li:nth-child(1) input{
	background: #CE5C51;
}
.contents nav ul li:nth-child(2) input{
	background: #E2B95F;
}
.contents nav ul li:nth-child(3) input{
	background: #5B2F71;
}
.contents nav ul li:nth-child(4) input{
	background: #ac2;
}
.contents nav ul li .current{
	background: #999999 !important;
}

.contents_message {
	font-size: 16px;
	margin: 30px 0px;
	padding: 10px 20px;
	border: 1px solid #CDCCC0;
	border-radius: 5px;
	background: #fff;
	color: #CD5D4D;
}

.contents_l{
	width: 640px;
	border-radius: 5px;
	border: 1px solid #CDCCC0;
	background: #fff;
	float: left;
}
.contents_l .title{
	background: #F4D047;
	height: 50px;
	margin-bottom: 25px;
}
.contents_l .title h2{
	font-size: 3em;
	padding:3px 0 0 19px;
	float: left;
}
.contents_l .title .total{
	float: right;
	font-size: 1.8em;
	padding: 5px 19px 0 0;
}
.contents_l .title .total span{
	color:#CD5D4D;
	font-size: 25px;
}
.contents_l table{
	width: 622px;
    margin: 0 auto;
    margin-bottom: 15px;
}
.contents_l table thead{
	border-bottom: 1px solid #CCCCCC;
	width: 100%;
}
.contents_l table thead th{
	text-align: center;
	font-size: 1.6em;
	padding-bottom: 10px;
}
.contents_l table thead th:first-child {
	width: 45%;
}
.contents_l table tbody tr{
	border-bottom: 1px dotted #999999;
}
.contents_l table tbody tr:last-child{
	border:none;
	padding-bottom: 15px;
}
.contents_l table tbody th{
	width: 160px;
}
.contents_l table tbody th,
.contents_l table tbody td{
	text-align: center;
	font-size: 1.6em;
	padding: 10px 0;
}
.contents_l table tbody td span{
	color:#CD5D4D;
}
.contents_l table tbody td .edit,
.contents_l table tbody td .status_a,
.contents_l table tbody td .status_b, /* 確定済み */
.contents_l table tbody td .status_c, /* 注文を確定 */
.contents_l table tbody td .status_d, /* 確定を解除 */
.contents_l table tbody td .print,
.contents_l table tbody td .download{
	margin: 0 5px;
	width: 8em;
	height: 40px;
	font-size: 15px;
	border-radius: 5px;
}
.contents_l table tbody td .edit{
	background: #F4D047;
	border: 0;
}
.contents_l table tbody td .status_a{
	color: #fff;
	background: #CE5C51;
	border: 0;
}
.contents_l table tbody td .status_b{ /* 確定済み */
	color: #CE5C51;
	background: #fff;
	border: 1px solid #CE5C51;
}
.contents_l table tbody td .status_c{ /* 注文を確定 */
	color: #999999;
	background: #fff;
	border: 1px solid #999999;
}
.contents_l table tbody td .status_d{ /* 確定を解除 */
	color: #CE5C51;
	background: #fff;
	border: 1px solid #CE5C51;
}
.contents_l table tbody td .print,
.contents_l table tbody td .download{
	color: #fff;
	background: #488cd0;
	border: 0;
}
.contents_l table tbody td .print {
	width: 3.5em;
}
.contents_l table tbody td .download{
	width: 7em;
}
.contents_r_wrap{
	width: 310px;
	float: right;
}
.contents_r{
	border-radius: 5px;
	border: 1px solid #CDCCC0;
	background: #fff;
}
.contents_r .title{
	background: #5B2F71;
	height: 50px;
	border-radius: 5px 5px 0px 0px / 5px 5px 0px 0px;
}
.contents_r .title h2{
	font-size: 2em;
	color:#fff;
	padding: 9px 0 0 19px;
}
.contents_r dl{
	width: 270px;
	margin: 0 auto;
	padding: 18px 0;
	border-bottom: 1px dotted #999999;
	font-size: 1.8em;
}
.contents_r dl:last-child{
	border: none;
	padding-bottom: 28px;
}
.contents_r dl dd a{
	color:#5A2E71;
}
.to_archive{
	display: block;
	width: 194px;
	background: #5B2F71;
	margin: 10px auto;
	padding: 5px 0;
	border-radius: 5px;

	font-size: 2em;
	text-decoration: none;
	color:#fff;
	text-align: center;
	vertical-align: middle;
}
.fa-arrow-circle-right{
	color: #fff;
	padding-left: 10px;
}
/*===================================================
     4. Post Content
===================================================*/
.notice{
	width: 698px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #CDCCC0;
	border-radius: 5px;
}
.notice .title{
	background: #5B2F71;
	border-radius: 5px 5px 0px 0px / 5px 5px 0px 0px;
}
.notice .title h2{
	font-size: 2em;
	color:#fff;
	padding: 9px 0 0 19px;
}
.notice .title dl{
	color: #fff;
	font-size: 1.8em;
	width: 660px;
	margin: 0 auto;
	padding: 10px 0;
}
.notice .title dl dt{
	float: left;
	width: 148px;
}
.notice .title dl dd{
	float: right;
	width: 482px;
}
.notice .box{
	width: 660px;
	margin: 10px auto;
}
.notice .box dl{
	font-size: 1.8em;
	width: 100%;
	padding: 14px 0;
	border-bottom: 1px dotted #CCCCCC;
}
.notice .box dl:last-child{
	border: none;
}
.notice .box dl dt{
	float:left;
	width: 148px;
}
.notice .box dl dd{
	float: right;
	width: 482px;
}
.notice .box dl dd a{
	color: #5A2E71;
}
.single_txt{
	padding: 14px 0;
}
.single_txt strong {
    font-weight: bold;
}
.single_txt em{
	font-family: "ヒラギノ丸ゴ Pro W4", "Hiragino maru Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
	font-style: italic;
}
.single_txt ol{
	list-style-type: decimal;
	list-style-position: inside;
	font-size: 18px;
}
.single_txt ul{
	list-style-type: disc;
	list-style-position: inside;
	font-size: 18px;
}
.single_txt img {
    max-width: 640px;
    background: #ccc;
    margin: 20px 0;
}
.single_txt table{
	table-layout: fixed;
	width: 100%;
	margin: 10px 0;
}
.single_txt table th{
	font-weight: bold;
}
.single_txt h3{
	font-size: 27px;
}
.single_txt h4{
	font-size: 24px;
}
.single_txt h5{
	font-size: 21px
}
.single_txt table th,
.single_txt table td{
	padding: 3px;
	font-size: 18px;
}
.notice .box p{
	font-size: 1.8em;
	line-height: 1.9em;
}
.pager{
	margin-top: 40px;
}
.pager ul{
	text-align: center;
	font-size: 0;
}
.pager ul li{
	width: 48px;
	border: 1px solid #CCCBBF;
	background: #fff;
	font-size: 18px;
	border-left: none;
	display: inline-block;
}
.pager ul li a{
	color: #592D71;
	width: 100%;
	padding:10px 0;
	display: inline-block;
}
.pager ul li:first-child {
    border-radius: 5px 0px 0px 5px / 5px 0px 0px 5px;
    border-left: 1px solid #cccbbf;
}
.pager ul li:last-child {
    border-radius: 0px 5px 5px 0px / 0px 5px 5px 0px;
    border-left:none;
}
.pager ul li.cur{
	background:#5C2C73;
}
.pager ul li.cur a{
	color: #fff;
}
.paging{
	width: 700px;
	margin: 40px auto 0;
}
.paging p{
	text-align: center;
	font-size: 1.8em;
}
.paging .back_top{
	width: 138px;
	background: #592D71;
	margin: 0 auto;
  border-radius: 5px;
}
.paging .back_top a{
	color: #ffffff;
	display: inline-block;
  width: 100%;
  padding: 10px 0;
	text-decoration: none;
}

/*.paging .next{
	width: 48px;
	height: 28px;
	border: 1px solid #CCCBBF;
	background: #fff;
	padding: 10px 0;
	float: right;
    border-radius: 0px 5px 5px 0px / 0px 5px 5px 0px;
}
.paging .prev{
	width: 48px;
	height: 28px;
	border: 1px solid #CCCBBF;
	background: #fff;
	padding: 10px 0;
	float: left;
    border-radius: 5px 0px 0px 5px / 5px 0px 0px 5px;
}
*/

/*===================================================
     5.	login
===================================================*/
.login_wrap{
	width: 400px;
	margin: 60px auto;
}
.login_wrap h1 {
    text-align: center;
    margin: 0 0 20px;
}
.login_box{
	width: 390px;
	border: 5px solid #00793D;
	background: #fff;
	font-size: 1.6em;
	font-family: "ヒラギノ角ゴ Pro W6", "Hiragino kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.login_box h4{
	padding: 20px 0 0px 20px;
}
.login_box h4 .fa-caret-down{
	padding-right: 5px;
}
.login_box input[type="text"],
.login_box input[type="password"]{
	width: 350px;
	margin: 15px auto;
	display: block;
	color: #000;
	padding: 8px 0 8px 13px;
}
.login_box input.login{
	width: 300px;
	background: #00793D;
	color: #fff;
	font-size: 30px;
	border: 0;
	border-radius: 5px;
	margin: 30px auto 25px;
	display: block;
	height: 80px;
}
.login_box a{
	text-decoration: none;
	display:block;
}
.login_logo {
	text-align: center;
	margin: 40px 0;
}
/*===================================================
     6.	bespoke
===================================================*/
.bespoke{
	width: 698px;
	margin: 30px auto 0;
	background: #fff;
	border: 1px solid #CDCCC0;
	border-radius: 5px;
}
.bespoke .title{
	background: #F4D047;
	height: 50px;
	border-radius: 5px 5px 0px 0px / 5px 5px 0px 0px;
}
.bespoke .title h2{
	font-size: 3em;
	color:#000;
	padding: 3px 0 0 19px;
}
.bespoke h3{
	font-size: 1.6em;
	width: 100%;
	border-bottom: 1px solid #CDCCC0;
	text-indent: 19px;
	padding: 17px 0;
}
.bespoke table{
	font-size: 2em;
	width: 660px;
	margin: 0 auto;
	table-layout: fixed;
	border-collapse:collapse;
}
.bespoke table tr {
	border-bottom: 1px dotted #999999;
}
.bespoke table tr:last-child {
	border-bottom: 1px solid #ccc;
}

.bespoke table tr th{
	width: 160px;
	padding: 25px 0;
}
.bespoke table tr td{
	width: 500px;
	padding: 25px 0;
	padding-right: 5px;
}
.bespoke table tr th:last-child{
	padding-bottom: 35px;
}
.bespoke table tr td input[type="text"]{
	border:1px solid #ccc;
	width: 480px;
}
.bespoke table tr td select{
	/*-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;*/
	border-radius: inherit;
	border: 1px solid #ccc;
	background: #fff;
	/*background: url("/design/img/arrow01.png") right 50% no-repeat;*/
	background-size: 40px 30px;
	width: 90px;
	text-indent: 10px;
}
.bespoke table tr td .select_year{
	width: 130px;
}
.next_p {
    width: 100px;
    background: #00793D;
    font-size: 1.8em;
    color: #fff;
    border: none;
    height: 40px;
    border-radius: 5px;
}
.prev_p {
    width: 100px;
    background: #ffffff;
    font-size: 1.8em;
    color: #00793D;
    border: solid 1px #00793D;
    height: 40px;
    border-radius: 5px;
}
.bespoke a{
	text-decoration: none;
}

.bespoke .gp_btns{
	padding: 20px;
}

.bespoke textarea {
	width: 100%;
	box-sizing: border-box;
}
/*===================================================
     7.	order_archive
===================================================*/

.order_archive{
	width: 898px;
	border-radius: 5px;
	border: 1px solid #CDCCC0;
	background: #fff;
}
.order_archive .title{
	background: #F4D047;
	height: 50px;
}
.order_archive .title h2{
	font-size: 3em;
	padding:3px 0 0 19px;
	float: left;
}
.order_archive .title .total{
	float: right;
	font-size: 1.8em;
	padding: 5px 19px 0 0;
}
.order_archive .title .total span{
	color:#CD5D4D;
	font-size: 25px;
}
.destination{
	padding: 10px 0;
	width: 100%;
	border-bottom: 1px solid #ccc;
}
.destination h4{
	font-size: 1.6em;
	padding:3px 0 0 19px;
	float: left;
}
/*.destination h4 input[type="button"]{
	width: 140px;
	height: 40px;
	color: #fff;
	background: #CE5C51;
	border: none;
	border-radius: 5px;
	font-size: 18px;
	margin-left: 20px;
}*/

.destination h4 .btn_red,
.destination h4 .btn_red2,
.destination h4 .btn_gray2,
.destination h4 .btn_download{
	padding: 5px 20px;
	margin-left: 10px;
}

.destination .total{
	float: right;
	padding: 5px 19px 0 0;
}
.destination .total span{
	color:#CD5D4D;
}
.item_select{
	padding: 10px 0;
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
}
/*
.item_select select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: inherit;
	border: 1px solid #ccc;
	background: #fff;
	background: url("/design/img/arrow02.png") right 50% no-repeat;
	background-size: 40px 40px;
	width: 240px;
	text-indent: 10px;
	font-size: 1.6em;
	height: 40px;
	margin-left: 19px;
}
*/
.item_box{
	width: 860px;
	margin: 0 auto 35px;
}
.item_box dl{
	width: 858px;
	border: 1px solid #ccc;
	font-size: 1.8em;
	margin: 0 auto;
	padding-bottom: 15px;
}
.item_box dl dt{
	float: left;
	padding-top: 16px;
	text-indent: 18px;
}
.item_box dl dd{
	float: right;
}
.item_box dl dd .item_order{
	font-size: 18px;
	width: 170px;
	height: 40px;
	display: block;
	border: none;
	border-radius: 5px;
	background: #F4D047;
	margin: 10px 10px 10px;
}
.item_box .deliv_clear{
	font-size: 14px;
	width: 140px;
	height: 30px;
	display: inline-block;
	border: 1px solid #aaa;
	border-radius: 5px;
	background: #fff;
	color: #00793D;
	margin: 10px -10px 10px 10px;
}
.item_box ul{
	text-align: right;
	font-size: 1.6em;
}
.item_box ul li{
	display: inline-block;
}
.order_archive .item_box ul li:first-child{
	border-right:1px solid #ccc;
	padding: 3px 20px 3px;
}
.item_box ul li span{
	color: #CD5D4D;
}
.bespoke_order
{
	font-size: 18px;
	width: 200px;
	height: 40px;
	display: block;
	border: none;
	border-radius: 5px;
	background: #00793D;
	margin: 10px 10px 10px;
	color: #fff;
}
.item_box p{
	font-size: 1.4em;
	padding-top: 10px;
}
/*===================================================
     8.	order_item
===================================================*/
.order_item{
	width: 948px;
	border-radius: 5px;
	border: 1px solid #CDCCC0;
	background: #fff;
    margin: 15px auto 0;
}
.order_item a{
	text-decoration: none;
	color: #333;
}
.order_item .title{
	background: #F8E189;
	height: 50px;
}
.order_item .title h2{
	font-size: 3em;
	padding:3px 0 0 19px;
	float: left;
}
.order_item .title .total{
	float: right;
	font-size: 1.8em;
	padding: 5px 19px 0 0;
}
.order_item .title .total span{
	color:#D4432E;
	font-size: 25px;
}
.order_item .item_select select {
    float: left;
}
.item_select_r input{
	width: 230px;
    height: 40px;
    border: none;
    color: #fff;
    background: #00793D;
    font-size: 1.8em;
    border-radius: 5px;
    margin-right: 19px;
    float: right;
}
.order_item .item_select_r{
	float: right;
    border-left: 1px solid #ccc;
    width: 500px;
}
.order_item .item_box,
.order_item .item_box dl,
.order_item table
{
	width: 910px;
}
.order_item .item_box{
	margin-bottom: 19px;
}
.order_item .item_box dl dt{
	line-height: 1em;
}
.order_item .item_box dl dt span{
	font-size: 12px;
	color: #D80000;
	padding-left: 18px;
}
.order_item .item_box p{
	text-align: right;
	font-size: 16px;
	padding-right: 10px;
}
.order_item .item_box p select{
	border-radius: inherit;
	border: 1px solid #ccc;
	background: #fff;
	background-size: 40px 30px;
	width: 90px;
	height: 30px;
	text-indent: 10px;
	behavior:url(/application/design/css/PIE/PIE.htc);
}
.order_item .item_box p select:first-child{
	width: 130px;
}

.order_item table{
	margin: 0 auto;
	border-collapse: collapse;
}
.order_item table thead{
	background: #D4D4D4;
}
.order_item table thead tr th{
	height: 30px;
	text-align: center;
	font-size: 12px;
	line-height: 16px;
	padding: 5px;
	border: 1px solid #999;
	min-width: 50px;
	box-sizing: border-box;
}
.order_item table thead tr th:first-child{
	width: 220px;
}
.order_item table tbody tr td{
	text-align: center;
	font-size: 12px;
	line-height: 1.3;
	padding: 3px 8px;
	border: 1px solid #999;
}
.order_item table tbody tr td:first-child {
	text-align: left;
}
.order_item table tbody tr td.date {
	white-space: nowrap;
}
.order_item table tbody tr td input[type="text"]{
	margin: 5px;
    border: 1px solid #ccc;
    padding: 4px;
    width: 40px;
    color: #000;
    background: #fff;
    font-size: 12px;
}

.order_item table tbody tr td span{
	font-size: 12px;
	color: #D80000;
	display: inline-block;
}
.order_item table tbody tr td span.item_name{
    color: #000;
}
.order_item table tbody tr td span.new,
.order_item table tbody tr td span.stop,
.order_item table tbody tr td span.ebukuro,
.order_item table tbody tr td span.sub,
.order_item table tbody tr td span.pamphlet {
	display: inline-block;
	margin: 4px;
	margin-left: 0;
	padding: 2px 7px;
	border: 1px solid;
	border-radius: 5px;
	background: #fff;
	font-weight: bold;
	font-size: 11px;
	line-height: 13px;
}
.order_item table tbody tr td span.new {
	border-color: #CE5C51;
	color: #CE5C51;
}
.order_item table tbody tr td span.stop {
	border-color: transparent;
	color: #fff;
	background: #999;
}
.order_item table tbody tr td span.ebukuro {
	border-color: #00793d;
	color: #00793d;
}
.order_item table tbody tr td span.sub {
	border-color: #5B2F71;
	color: #5B2F71;
	vertical-align: bottom;
}
.order_item table tbody tr td span.pamphlet {
	border-color: transparent;
	color: #222;
	background: #F4D047;
}

.order_item table tbody tr td input.del {
	background: #eaeaea url("/application/design/img/del_btn.png") center top 3px no-repeat;
	border: none;
	color: #00793D;
	border-radius: 5px;
	margin: 0 -5px;
	padding: 23px 2px 0px;
	line-height: 16px;
	width: 40px;
	height: 40px;
	font-size: 10px;
}
.order_item table tbody tr td input.add {
	margin: 0 0 5px;
	padding-left: 25px;
	width: 170px;
	height: 24px;
	box-sizing: border-box;
	background: #fff url("/application/design/img/add_btn.png") left 10px top 50% no-repeat;
	border: 1px solid #999;
	border-top: 0 none;
	color: #00793D;
	font-size: 12px;
	border-radius: 0px 0px 5px 5px;
	float: right;
}

.order_item table tbody tr.tr-line td{
	border: none;
	padding: 10px 0 0;
}
.order_item table tbody tr.tr-line div{
	margin: 0 0 0 -1px;
	height: 0;
	border-top: 3px solid #00793D;
}
.order_item table tbody tr.tr-even td{
	border: none;
	padding: 0 0 5px;
	vertical-align: top;
}
.order_item table tbody tr td.sub_item{
	font-size: 14px !important;
	line-height: 2.0;
	text-align: left;
}
.order_item table tbody tr td.sub_item a{
	color: #333;
	padding-right: 20px;
}
.order_item table tbody tr.caution{
	background: #fbb;
}
.order_item table tbody tr td i.fa{
	color: #00793D;
	padding-right: 3px;
}
.order_item table tbody tr td i.fa-times-circle{
	padding-left: 5px;
}
.order_item table tbody tr td select{
	border-radius: inherit;
	border: 1px solid #ccc;
	background: #fff;
	width: 50px;
}
.order_item table tbody tr td select:first-child{
	width: 75px;
}

.order_item .item_box dl{
	font-size: 14px;
}
.order_item .item_box dl dt{
	padding-top:18px;
	font-size: 18px;
}
.order_item .tr-yellow {
	background: #ffc;
}
.order_item .tr-blue {
	background: #def;
}
/*===================================================
     9.	order_list
===================================================*/
.order_list{
	width: 948px;
	border-radius: 5px;
	border: 1px solid #CDCCC0;
	background: #fff;
    margin: 15px auto 0;
}
.order_list .title{
	background: #F8E189;
	height: 50px;
}
.order_list .title h2{
	font-size: 3em;
	padding:3px 0 0 19px;
	float: left;
}
.order_list .title .total{
	float: right;
	font-size: 1.8em;
	padding: 5px 19px 0 0;
}
.order_list .title .total span{
	color:#D4432E;
	font-size: 25px;
}
.order_list .item_select{
	margin-bottom: 50px;
}
.order_list .item_select select {
    float: left;
}
.item_list_r input{
	width: 230px;
    height: 40px;
    border: none;
    color: #fff;
    background: #00793D;
    font-size: 1.8em;
    border-radius: 5px;
    margin-right: 19px;
    float: right;
}
.order_list .item_box,
.order_list .item_box dl,
.order_list table
{
	width: 910px;
}
.order_list .item_box{
	margin-bottom: 0px;
}
.order_list .item_box ul{
	margin-top: 5px;
}
.order_list .item_box ul li{
	position: relative;
	padding: 0 5px;
}
.order_list .item_box ul li:after{
	content: "｜";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -11px;
    margin-right: -11px;
    font-size: 16px;
    color: #333;
    font-weight: 300;
    z-index: 1000;
}
.order_list .item_box ul li:last-child:after{
	content:"";
}
.order_list table {
	margin: 18px auto 50px;
}
.order_list table:last-child {
	margin-bottom: 30px;
}
.order_list thead {
	background: #D4D4D4;
}
.order_list th {
	height: 30px;
	text-align: center;
	font-size: 12px;
	border: 1px solid #999;
	font-weight: bold;
}
.order_list td {
	text-align: center;
	font-size: 14px;
	padding: 7px 12px;
	border: 1px solid #999;
	min-width: 79px;
	box-sizing: border-box;
}
.order_list th:first-child {
	width: 471px;
}
.order_list th:last-child {
	width: 201px;
}
.order_list td:first-child {
	text-align: left;
}
.order_list .beposke_order thead {
	background: #00793D;
	color: #fff;
}
.order_list .beposke_order th,
.order_list .beposke_order td {
	width: auto;
	text-align: center;
}
.order_list .beposke_order th:first-child {
	width: 230px;
}
.order_list .beposke_order td:last-child {
	text-align: left;
}
.order_list .beposke_order p{
	color: #D80000;
	font-size: 12px;
}

/*===================================================
     10.	Footer
===================================================*/
footer{
	width: 980px;
	margin: 30px auto;
}
footer p{
	text-align: center;
	font-size: 1.2em;
}
/*===================================================
     11.	js
===================================================*/
.fixed {
    position: fixed;
    top: 0;
    margin-left: 0;
    z-index: 10000;
    background: #fff;
    width: 948px !important;
    transition: box-shadow 1s;
    box-shadow: 0px 2px 4px #aaa;
}
#fixed_bottom{
	position: fixed;
	bottom: 0;
	background: #fff;
	margin-left: 19px;
	width: 911px !important;
}
.fixed #changemsg {
	width: 900px;
	margin: 0 auto;
}
.fixedTableHeader {
	table-layout: fixed;
}
.fixedTableHeader th {
	border: 0 none !important;
}

/*===================================================
     12.	404
===================================================*/

.btn_return{
	  width: 180px;
    margin: 20px auto;
    display: block;
}

/*===================================================
     13.	button
===================================================*/

.btn{
  font-size: 18px;
  padding: 10px 0;
  text-align: center;
  border-radius: 5px;
}

a.btn{
	text-decoration: none;
}


.btn_yellow{
	border: 0;
	background: #F4D047;
}

.btn_yellow2{
	border: 1px solid #F4D047;
	color: #F4D047;
	background: #fff;
}

.btn_red{
	border: 0;
	color: #fff;
	background: #CE5C51;
}

.btn_red2{
	border: 1px solid #CE5C51;
	color: #CE5C51;
	background: #fff;
}

.btn_green{
	border: 0;
  color: #fff;
  background: #00793d;
}

.btn_green2{
	border: 1px solid #00793d;
	color: #00793d;
	background: #fff;
}

.btn_violet{
	border: 0;
  color: #fff;
  background: #5B2F71;
}

.btn_violet2{
	border: 1px solid #5B2F71;
	color: #5B2F71;
	background: #fff;
}

.btn_gray{
	border: 0;
  color: #fff;
  background: #999999;
}

.btn_gray2{
	border: 1px solid #999999;
	color: #999999;
	background: #fff;
}

.btn_download{
	border: 1px solid #ccc;
	color: #00793d;
	background: #fff;
	font-size: 14px;
	padding: 4px 8px !important;
	line-height: 20px;
	float: right;
	margin: 9px;
}
.btn_download:hover {
	cursor: pointer;
	background: #eee;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

/* 2015-12-22 15:20:57 +0900 add for order/detail/anchor_btn*/
.thin_btn{
  font-size: 18px;
  padding: 5px 5px;
  text-align: center;
  border-radius: 5px;
}
.mt40 {
    margin-top:40px;
}


/*===================================================
     14.	contents_manual
===================================================*/
.contents_manual {
	font-size: 16px;
	margin: 30px 0px;
	border: 1px solid #CDCCC0;
	border-radius: 5px;
	background: #fff;
}
.contents_manual:after {
	content: "";
	display: table;
	clear: both;
}
.contents_manual h2{
	background: #F4D047;
	font-size: 25px;
	padding: 10px 15px;
}
.contents_manual h3{
	font-size: 18px;
	margin-bottom: 1em;
}
.contents_manual section {
	padding: 25px 15px;
}
.contents_manual section + section {
	border-top: 2px dashed #CDCCC0;
}
.contents_manual p {
	margin: 0.5em 0;
}
.contents_manual p.notes,
.contents_manual p.caution {
	font-size: 14px;
}
.contents_manual p.caution {
	color: #D80000;
	text-indent: -1em;
	margin-left: 1em;
}
.contents_manual .caution_wrap {
	padding: 5px 10px;
	border: 1px solid #D80000;
}
.contents_manual img {
	display: block;
	margin: 1em 0;
}
.contents_manual :first-child {
	margin-top: 0;
}
.contents_manual :last-child {
	margin-bottom: 0;
}
.contents_manual .l-twocolumn + * {
	margin-top: 20px;
}
.contents_manual .l-twocolumn:after {
	content: "";
	display: table;
	clear: both;
}
.contents_manual .l-twocolumn > div {
	float: left;
	width: 600px;
}
.contents_manual .l-twocolumn > div + div {
	float: right;
	width: 325px;
}
.contents_manual .intersection {
	padding: 15px;
}
.contents_manual .intersection div {
	background: #f4d047;
	padding: 10px;
	text-align: center;
	font-size: 18px;
}
.contents_manual .intersection p {
	display: inline-block;
}
.contents_manual a.btn {
	/*padding-left: 25px;*/
	width: 200px;
	height: 40px;
	padding-left: 25px;
	border: 1px solid #00793D;
	box-sizing: border-box;
	background: #00793D url("/application/design/img/pagetop_btn.png") left 10px top 60% no-repeat;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	border-radius: 5px 5px 0 0;
	float: right;
	margin-right:25px;
}


/*===================================================
     15.	user settings (change password)
===================================================*/
.users{
	width: 698px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #CDCCC0;
	border-radius: 5px;
}
.users .title{
	background: #ac2;
	border-radius: 5px 5px 0px 0px / 5px 5px 0px 0px;
}
.users .title h2{
	font-size: 2em;
	color:#fff;
	padding: 5px 15px;
}
.users .form_pass{
	font-size: 1.6em;
	width: 660px;
	margin: 0 auto;
	table-layout: fixed;
	border-collapse:collapse;
}
.users .form_pass tr {
	border-bottom: 1px dotted #999999;
}
.users .form_pass tr:last-child {
	border-bottom: 1px solid #ccc;
}

.users .form_pass th{
	width: 260px;
	padding: 25px 0;
	vertical-align: top;
	line-height: 2.4em;
}
.users .form_pass td{
	width: 400px;
	padding: 25px 0;
	padding-right: 5px;
}
.users .form_pass th:last-child{
	padding-bottom: 35px;
}
.users .form_pass input[type="text"]{
	border:1px solid #ccc;
	width: 480px;
}
.users .form_pass .error {
	margin-top: 5px;
	color: #CE5C51;
	font-size: 0.8em;
	line-height: 1.5;
}
.users .message_box {
	padding: 20px 0 0;
	font-size: 1.8em;
	text-align: center;
}
.users .next_p {
	margin: 20px auto;
	width: 200px;
	display: block;
}

/*===================================================
     20180919.	updatecss
===================================================*/
.sort {
	margin-right: 13px;
    border-right: 1px solid #CCC;
    padding-right: 20px;
    height: 40px;
    display: inline-block;
    padding-top: 10px;
}
.item_order_all{
	font-size: 18px;
	width: 200px;
	height: 40px;
	display: block;
	border: none;
	border-radius: 5px;
	background: #F4D047;
	margin-right:28px;
	float: right;
}
.item_order_all:hover{
	cursor: pointer;
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	}
.all_del{
    float: right;
    margin: 6px 28px 0px 0px;
}
.item_box.deliv_box{
	text-align: right;
	margin-right: 40px;
    margin-top: -35px;
    margin-bottom: 30px;
}
.item_box.deliv_box .deliv_all{
	font-size: 18px;
	width: 200px;
	height: 30px;
	display: inline-block;
	border: 1px solid #aaa;
	border-radius: 5px;
	background: #fff;
	color: #00793D;
	margin: 10px -10px 10px 10px;
}

.orderedit{
	overflow: hidden;

}
.orderedit #loading_shield{
	display: block;

}
.delivtop_box .delivtop_box1{
	margin-right: 3px;
    border-right: 1px solid #CCC;
    padding-right: 20px;
    height: 40px;
    display: inline-block;
    padding-top: 10px;
}

.delivery_message {
    font-size: 2.0em;
    color: #CE5C51;
}
