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

/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
common
*/

/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
content
*/

#content h1 {
	margin: 2em 0;
}

#content .br {
	display: block;
}

#content strong {
	margin: 0 0.2em;
}

/*
・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・
nav_content
*/

#content .nav_content {
	margin: 3em 0;
	text-align: center;
}

#content .nav_content ul {
	padding: 0.5em 0;
	background: #fafafa;
	border: solid #ccc;
	border-width: 1px 0;
	list-style: none;
}

#content .nav_content li {
	display: inline-block;
	/float: left;
	margin: 0 1.8em;
}

#content .nav_content li a {
	display: block;
	border: none;
	/padding-top: 1.2em;
	text-decoration: none;
	font-size: 1.1em;
}

#content .nav_content li a:hover {
	text-shadow: 0 0 3px #eee;
}
.ie #content .nav_content li a {
	position: relative;
	behavior: url(http://yakiimo-biyori.com/PIE.htc);
}

#content .nav_content li.active a {
	/padding-top: 0;
}
#content .nav_content li.active a:hover {
	text-shadow: none;
}

/*
・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・
リスト
*/

#content ol.none ,
#content ul.none {
	list-style: none;
	margin: 0;
	padding: 0;
}

#content ul.star {
	list-style: none;
	margin: 0 0 0 1em;
	padding: 0;
}

#content .star li:before {
	display: inline-block;
	content: '◎';
	margin-left: -1em;
}

#content .dotted dd {
	list-style: dotted;
}

/*
・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・
table
*/

#content td ,
#content th {
	border: 1px solid #ccc;
	padding: 0.4em 1em;
}

#content thead td ,
#content tbody th {
	background: #eee;
}

#content thead td {
	text-align: center;
	font-weight: bolder;
}

#content td.price {
	text-align: right;
}

/*
・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・
.oddeven image & text
*/

#content .oddeven h1 {
	margin: 0.5em 0;
}
#content .oddeven h1:first-child {
	margin-top: 0;
}

#content .oddeven section {
	position: relative;
	margin: 0 0 1.2em;
	border-bottom: 1px solid #b4b4b4;
	padding: 0 0 1.2em;
}

#content .oddeven section:last-child {
	margin-bottom: 0;
	border-bottom: 0;
	padding-bottom: 0;
}

#content .oddeven section header {
	position: relative;
	margin-top: 0.2em;
}

#content .oddeven section .image img {
	width: 100%;
}

#content .oddeven section.textright .image {
	float: left;
}
#content .oddeven section.textleft .image {
	float: right;
}

#content .oddeven section .image ,
#content .oddeven section .body ,
#content .oddeven section header {
	width: 48%;
}

#content .oddeven section.textleft .body ,
#content .oddeven section.textleft header {
	float: left;
	width: 48.6%;
	margin-left: 0;
}

#content .oddeven section.textright .body ,
#content .oddeven section.textright header {
	float: right;
	margin-right: 0;
}

#content .oddeven section .profile {
	margin: 2em 0 0;
}

#content .oddeven section .profile dd {
	margin-left: 0;
}

/*
・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・
dl like table
*/

#content dl.table {
	border-bottom: 1px dotted #ccc;
	overflow: hidden;
}

#content dl.table dt {
	position: relative;
	clear: both;
	float: left;
	margin: 0;
	padding: 1em 0;
	font-size: 1.1em;
}

#content dl.table dd {
	margin: 0.2em 0;
	border-top: 1px dotted #ccc;
	padding: 1em 0;
	text-align: right;
	font-size: 1.1em;
}

/*
・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・
dl dotted
*/

#content dl.dotted dd {
	margin: 0;
	padding: 0;
}

#content dl.dotted dd:before {
	content: '・';
	font-weight: bolder;
}

/*
・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・
dl dotted
*/

#content dl.kajyogaki dt {
	font-weight: bolder;
	font-size: 1em;
}
#content dl.kajyogaki dd {
	margin: 0;
}

/*
・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・
dl ll,rl
*/

#content dl.ll ,
#content dl.rl {
	font-size: 1.1em;
	border-bottom: 1px dotted #ccc;
	overflow: hidden;
}

#content section:last-child dl:last-child.ll ,
#content section:last-child dl:last-child.rl {
	border-bottom: 0;
}

#content dl.ll dt ,
#content dl.rl dt {
	position: relative;
	margin: 0;
	border-top: 1px dotted #ccc;
	padding: 1em 0;
	/zoom: 1;
}

#content dl.ll dt {
	text-align: left;
}
#content dl.rl dt {
	text-align: right;
}

#content dl.ll dd ,
#content dl.rl dd {
	margin: 0.2em 0 1em;
	padding: 0;
}

/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
quality
*/

.quality#index .profile .smaller {
	margin: 0 0.5em;
}

/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
calendar
*/

.calendar #content .notice {
	margin: -2em 0 2em;
	color: #ef856d;
}

/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
shop
*/

.shop #content .body dt {
	margin: 1em 0 0;
	font-weight: bolder;
}

.shop #content .body .place {
	margin-right: 1em;
	font-weight: bolder;
	font-size: 1.1em;
}

.shop #content .notice {
	color: #ef856d;
}

.shop #content .notice a {
	color: #ef856d;
}
.shop #content .notice a:hover {
	color: #ccc;
}

/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
onlineshop
*/

.onlineshop #content header {
	margin: 0 0 1em;
}

.onlineshop #content h1 {
	margin: 0.8em 0 0.2em;
	padding: 0;
	background: none;
	font-size: 3em;
}

.onlineshop #content h1 .smaller {
	font-size: 0.4em;
	font-weight: normal;
	font-family: メイリオ,Meiryo, "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, sans-serif;
}

.onlineshop #content header .sub {
	margin: 0 0.2em;
	padding: 0;
	line-height: 1.2;
	list-style: none;
}

.onlineshop #content header .sub li {
	margin: 0 0 0.2em;
	font-size: 1.4em;
	font-weight: normal;
}

.onlineshop #content .caption {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0 0 0 16px;
	border: none;
	background: url(http://yakiimo-biyori.com/common/images/lst-imo-gold.png) no-repeat 0 0.25em;
	color: #231815;
	font-size: 1em;
	font-weight: normal;
}

.onlineshop #content .lead {
	margin: 1em 0;
	color: #dc143c;
	font-size: 1.2em;
	line-height: 1.6;
}

.products #content .cart .btn_buy ,
.onlineshop#index #content .goto_inline a {
	display: inline-block;
	border: 0;
	padding: 1em 3em;
	background: #f8b62c;
	color: #fff;
	font-size: 1.1em;
	font-weight: bolder;
	cursor: pointer;
	text-shadow: 0 0 2px rgba(255,255,255,0.2);
	text-decoration: none;
}
.products #content .cart .btn_buy:hover ,
.onlineshop#index #content .goto_inline a:hover {
	background: #f39800;
	text-shadow: 0 0 2px rgba(255,255,255,0.8);
}
.ie .products #content .cart .btn_buy:hover ,
.ie .onlineshop#index #content .goto_inline a {
	position: relative;
	behavior: url(http://yakiimo-biyori.com/PIE.htc);
}

/*
───────────────────────────────────────
index
*/

.onlineshop#index #content section {
	border-bottom: 1px solid #B4B4B4;
	margin: 0 0 10px;
	padding: 0 0 10px;
}
.onlineshop#index #content section:last-child {
	border-bottom: 0;
	margin: 0;
	padding: 0;
}

.onlineshop#index #content .goto_inline {
	margin: 2em 0 0;
}

.products#index #content .image {
	margin-bottom: 0;
}

/*
───────────────────────────────────────
products
*/

.products #content .image {
	float: left;
	width: 420px;
	margin: 0 0 3em;
	overflow: hidden;
}

.products #content .image .main {
	height: 280px;
	margin: 0 0 5px;
	overflow: hidden;
}
.products #content .image .main img {
	width: 420px;
	vertical-align: middle;
}

.products #content .image .thumb {
	overflow: hidden;
}

.products #content .image .thumb ul {
	width: 430px;
	margin: 0 -10px 0 0;
	padding: 0;
	list-style: none;
}

.products #content .image .thumb li {
	float: left;
	width: 80px;
	margin: 0 5px 5px 0;
}

.products #content .right {
	position: relative;
	float: right;
	width: 390px;
	margin: 0 0 0 30px;
}

.products #content .body {
	float: left;	/* headerのmargin-bottomを生かす＝indexと同じマージン。 */
	margin: 0 0 1.5em;
}

.products #content .body dd {
	margin: 0 0 0 2.2em;
}

/*
・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・
cart
*/

.products #content .cart {
	clear: left;
	position: relative;
	margin: 0;
	border: 1px solid #9c9896;
	padding: 10px 15px;
}

.products #content .cart .notice {
	color: #dc143c;
}

.products #content .cart form {
	display: table;
	width: 100%;
}

.products #content .cart dl {
	margin: 0;
	line-height: 1.4;
	font-size: 100%;
}

.products #content .cart dt {
	clear: left;
	float: left;
	margin: 0.2em 0;
	font-size: 1.1em;
	font-weight: bolder;
}

.products #content .cart dt:after {
	content: "/";
	padding: 0 0.2em;
}

.products #content .cart dd {
	float: left;
	/width: 60%;
	margin: 0.2em 0;
	font-size: 1.1em;
	font-weight: bolder;
}

.products #content .cart form dd select ,
.products #content .cart form dd textarea ,
.products #content .cart form dd input {
	margin: 0;
	padding: 0.2em 0.4em;
	border: 1px solid #ccc;
	-webkit-box-shadow: inset 0 0 1px #ccc;
	-moz-box-shadow: inset 0 0 1px #ccc;
	box-shadow: inset 0 0 1px #ccc;
	font-weight: normal;
	font-size: 1em;
}
.products #content .cart form dd select {
	padding: 0;
}
.products #content .cart form dd select option {
	padding: 0.1em 0.4em;
}
.ie .products #content .cart form dd * {
	position: relative;
	behavior: url(http://yakiimo-biyori.com/PIE.htc);
}

.products #content .cart .btn_wrap {
	margin: 1em 0 0;
}

.products #content .lnk_guide {
	position: absolute;
	right: 20px;
	bottom: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: right;
}

.products #content .lnk_guide li {
	display: inline-block;
	/display: inline;
	margin: 0;
}

.products #content .lnk_guide a {
	display: inline-block;
	border: 0;
	padding: 0.4em 1em;
	background: #d5d5d5;
	color: #1e1e1e;
	font-size: 0.9em;
	text-decoration: none;
}
.products #content .lnk_guide a:hover {
	background: #1e1e1e;
	color: #fff;
}

.products #content .lnk_guide .btn_cart a {
	width: 1.4em;
	background-image: url(http://yakiimo-biyori.com/common/images/cart.png);
	background-repeat: no-repeat;
	background-position: center;
	text-indent: -5000px;
	overflow: hidden;
	text-align: left;
}
.products #content .lnk_guide .btn_cart a:hover {
	background-image: url(http://yakiimo-biyori.com/common/images/cart-w.png);
}

/*
・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・
*/

.products #content .body dt {
	font-size: 1em;
}

.products #content .lnk_relevant {
	margin: 0;
}

.products #content .lnk_relevant ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.products #content .lnk_relevant li {
	margin: 0 0 0.3em;
	padding: 0 0 0 10px;
	background: url(http://yakiimo-biyori.com/common/images/list-tri-red-right.png) no-repeat 0 0.25em;
}

.products #content .lnk_relevant a {
	color: #ef7c61;
	text-decoration: none;
}
.products #content .lnk_relevant a:hover {
	text-decoration: underline;
}

.products #content footer {
	float: left;
}

/*
───────────────────────────────────────
shop
*/

.shop #content .image .img {
	float: left;
	width: 64px;
}

.shop #content .image .desc dl {
	width: 160px;
	margin: 0 0 0 80px
}

.shop #content .image .desc dt {
	font-weight: bolder;
}
.shop #content .image .desc dd {
	margin: 0;
}

/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
contact
*/

.contact #content section {
	margin-right: 60px;
	margin-left: 60px;
}

.contact #content section textarea {
	width: 97% !important;
	min-height: 10em;
	min-width: 97%;
	max-width: 97%;
}

.contact #content #direct {
	margin: 5em 60px;
}

.contact #content #direct .body ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 1.1em;
}

.contact #content #direct .body li {
	margin-left: 1.7em;
}

.contact #content #form {
	position: relative;
}

.contact #content #form .notice {
	position: absolute;
	top: 4em;
	right: 0;
	margin: -2em 0 0;
	margin: 0 0 1em;
	text-align: right;
}

.contact #content #form .notice .require {
	color: #ef856d;
	font-size: 1.2em;
	font-weight: bolder
}

/*
mailformprへの指定は、
/common/mailform.css
*/

/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
outline
*/

.outline #content section {
	margin-right: 180px;
	margin-left: 180px;
}

.outline #content section .body {
	margin: 1em 0 3em;
}

/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
transactions
*/

.transactions #content section {
	margin-right: 120px;
	margin-left: 120px;
}

.transactions #content section .table {
	margin-bottom: 0;
}

#content dl.table dt ,
#content dl.table dd {
	font-size: 1.2em;
}

.transactions #content section .ll {
	margin-top: 0;
}

/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
policy
*/

.policy #content section {
	margin-right: 120px;
	margin-left: 120px;
}

.policy #content section dt {
	font-size: 1.4em;
}

/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
guide
*/

.guide #content section {
	margin-right: 120px;
	margin-left: 120px;
}

.guide #content section h1 {
	margin: 0;
	padding: 0;
	height: 0;
	line-height: 0;
	overflow: hidden;
}

.guide #content section .nav_content {
	margin-right: -100px;
	margin-left: -100px;
}

.guide #content .nav_content .active a {
	margin: 0;
}

.guide #content section section {
	margin: 2em 0 0;
}
.guide #content section section h2 {
	margin: 1em 0;
}


.guide #content .box_border {
	margin: 2em 60px;
	border: 1px solid #333;
	padding: 1em 3em 2em;
}

/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
waku
*/

#content .waku {
	margin: 3em 100px;
	border: 1px solid #ccc;
	padding: 1em 3em;
}

#content .waku h1 {
	margin: 1em 0;
}

#content .waku .aligncenter {
	margin: 2em 0;
	text-align: center;
}
#content .waku .larger {
	display: inline-block;
	margin: 0 0.2em;
	font-size: 1.6em;
	font-weight: bolder;
}

#content .btn {
	padding: 1.5em 4em 0.9em;
	background: #7f7f7f;
	color: #fff;
	font-size: 1em;
	font-weight: normal;
	text-decoration: none;
	border-radius: 0;
}
#content a.btn:hover {
	background: #1e1e1e;
	color: #fff;
	text-decoration: none;
}
/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
hack
*/

/* float bug fix */
/* このcssに登場する属性のみを指定すること。 */

.oddeven:after ,
#content:after ,
#content section:after ,
.products #content .images .thum ul:after ,
.products #content .cart dl:after ,
.screen-local:after {
	content:"";
	display:block;
	clear:both;
	height:0;
	overflow:hidden;
}

*+html .oddeven ,
*+html #content ,
*+html #content section ,
*+html .products #content .images .thumb ul ,
*+html .products #content .cart dl ,
*+html .screen-local {
	zoom: 1;
}

/*\*/
* html .oddeven ,
* html #content ,
* html #content section ,
* html .products #content .images .thumb ul ,
* html .products #content .cart dl ,
* html .screen-local {
	height: 0;
	overflow: visible;
}
/**/