/*
Theme Name: MinimalCube
Version: 1.0.2
Note: All content are copyrighted by author. Please, don't steal anything.
*/
/**
TABLE OF CONTENTS
- Global
	- bootstrap-theme
	- utility
- UI
	- header
	- footer
	- headline
	- box
	- list
	- form
	- table
	- nav
	- slider
	- shopping-guide
- Pages
	- cart
	- products
	- shopping
	- windowcolumn
*/
/* ------------------------------------- */
/*   bootstrap-theme   */
/* ------------------------------------- */
/*  eccube style  */
/*--------------------------------- */
.attention,
.point {
  color: #E64E4E;
}

.message {
  color: #000;
  font-size: 14px;
}

.box60 {
  width: 60px;
}
@media (max-width: 767px) {
  .box60 {
    width: 50px;
  }
}

.box80 {
  width: 80px;
}

.box120 {
  width: 100%;
}
@media (min-width: 768px) {
  .box120 {
    width: 120px;
  }
}

.box300 {
  width: 100%;
}
@media (min-width: 768px) {
  .box300 {
    width: 300px;
  }
}

.box380 {
  width: 100%;
}
@media (min-width: 768px) {
  .box380 {
    width: 380px;
  }
}

/*  body  */
/*--------------------------------- */
body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333;
  font-size: 14px;
  background-color: #fff;
}

/*  link  */
/*--------------------------------- */
a {
  transition: .2s;
  color: #000;
}
a:hover {
  text-decoration: none;
  color: #f00000;
}

/*  headline  */
/*--------------------------------- */
h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

/*  list  */
/*--------------------------------- */
dl dt {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 14px;
}
dl.dl-horizontal dt {
  margin-top: 0;
}

/*  img  */
/*--------------------------------- */
.img-responsive {
  margin: 0 auto;
}

/*  table  */
/*--------------------------------- */
table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
table thead > tr > th,
table tbody > tr > th,
table tfoot > tr > th,
table thead > tr > td,
table tbody > tr > td,
table tfoot > tr > td {
  padding: 8px;
  line-height: 1.4;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
@media (max-width: 991px) {
  table thead > tr > th,
  table tbody > tr > th,
  table tfoot > tr > th,
  table thead > tr > td,
  table tbody > tr > td,
  table tfoot > tr > td {
    padding: 4px;
  }
}

/*  form  */
/*--------------------------------- */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  border-radius: 0;
  border: 1px solid #ddd;
  background-color: #fafafa;
}

select {
  width: 100%;
  border-radius: 0;
}

@media (min-width: 768px) {
  .input-group {
    display: inline-block;
  }
  .input-group .form-control {
    width: 150px;
  }
  .input-group .input-group-btn {
    width: auto;
  }
}

/*  well  */
/*--------------------------------- */
.well {
  margin-bottom: 30px;
  border-radius: 0;
  color: #444;
  background-color: #f4f4f4;
}
.well p {
  margin-bottom: 0;
}

/* ------------------------------------- */
/*   utility: global class   */
/*		- display
/*		- position
/*		- padding
/*		- margin
/*		- border
/*		- font
/*		- background
/* ------------------------------------- */
/**
 *	display
 */
.div-inline > div {
  display: inline-block;
}

/**
 *	position
 */
.position-relative {
  position: relative;
}

.top-left {
  position: absolute;
  top: 15px;
  left: 15px;
}

.top-left-fit {
  position: absolute;
  top: 0;
  left: 0;
}

.top-left-xs {
  position: absolute;
  top: 5px;
  left: 5px;
}

.top-left-sm {
  position: absolute;
  top: 10px;
  left: 10px;
}

.top-left-lg {
  position: absolute;
  top: 30px;
  left: 30px;
}

.top-right {
  position: absolute;
  top: 15px;
  right: 15px;
}

.top-right-fit {
  position: absolute;
  top: 0;
  right: 0;
}

.top-right-xs {
  position: absolute;
  top: 5px;
  right: 5px;
}

.top-right-sm {
  position: absolute;
  top: 10px;
  right: 10px;
}

.top-right-lg {
  position: absolute;
  top: 30px;
  right: 30px;
}

.bottom-left {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.bottom-left-fit {
  position: absolute;
  bottom: 0;
  left: 0;
}

.bottom-left-xs {
  position: absolute;
  bottom: 5px;
  left: 5px;
}

.bottom-left-sm {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.bottom-left-lg {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.bottom-right {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.bottom-right-fit {
  position: absolute;
  bottom: 0;
  right: 0;
}

.bottom-right-xs {
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.bottom-right-sm {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.bottom-right-lg {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

/**
 *	padding
 */
.padding-none {
  padding: 0;
}

.padding-row {
  padding-top: 15px;
  padding-bottom: 15px;
}
.padding-row.ui-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.padding-row-xs {
  padding-top: 5px;
  padding-bottom: 5px;
}
.padding-row-xs.ui-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.padding-row-sm {
  padding-top: 10px;
  padding-bottom: 10px;
}
.padding-row-sm.ui-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.padding-row-lg {
  padding-top: 30px;
  padding-bottom: 30px;
}
.padding-row-lg.ui-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.padding-row-none {
  padding-top: 0;
  padding-bottom: 0;
}

.padding-box {
  padding: 15px;
}
.padding-box.ui-section {
  padding: 60px;
}

.padding-box-xs {
  padding: 5px;
}
.padding-box-xs.ui-section {
  padding: 20px;
}

.padding-box-sm {
  padding: 10px;
}
.padding-box-sm.ui-section {
  padding: 30px;
}

.padding-box-lg {
  padding: 30px;
}
.padding-box-lg.ui-section {
  padding: 120px;
}

.padding-box-none {
  padding: 0;
}

.padding-gutter {
  padding-left: 15px;
  padding-right: 15px;
}
.padding-gutter.row {
  padding: 0;
  margin-left: -15px;
  margin-right: -15px;
}
.padding-gutter.row > div {
  padding-left: 15px;
  padding-right: 15px;
}

.padding-gutter-xs {
  padding-left: 5px;
  padding-right: 5px;
}
.padding-gutter-xs.row {
  padding: 0;
  margin-left: -5px;
  margin-right: -5px;
}
.padding-gutter-xs.row > div {
  padding-left: 5px;
  padding-right: 5px;
}

.padding-gutter-sm {
  padding-left: 10px;
  padding-right: 10px;
}
.padding-gutter-sm.row {
  padding: 0;
  margin-left: -10px;
  margin-right: -10px;
}
.padding-gutter-sm.row > div {
  padding-left: 10px;
  padding-right: 10px;
}

.padding-gutter-lg {
  padding-left: 30px;
  padding-right: 30px;
}
.padding-gutter-lg.row {
  padding: 0;
  margin-left: -30px;
  margin-right: -30px;
}
.padding-gutter-lg.row > div {
  padding-left: 30px;
  padding-right: 30px;
}

.padding-gutter-none {
  padding-left: 0;
  padding-right: 0;
}
.padding-gutter-none.row {
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
.padding-gutter-none.row > div {
  padding-left: 0;
  padding-right: 0;
}

/**
 *	margin
 */
.margin-none {
  margin: 0;
}

.margin-row {
  margin-top: 15px;
  margin-bottom: 15px;
}
.margin-row.ui-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.margin-row-xs {
  margin-top: 5px;
  margin-bottom: 5px;
}
.margin-row-xs.ui-section {
  margin-top: 20px;
  margin-bottom: 20px;
}

.margin-row-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.margin-row-sm.ui-section {
  margin-top: 30px;
  margin-bottom: 30px;
}

.margin-row-lg {
  margin-top: 30px;
  margin-bottom: 30px;
}
.margin-row-lg.ui-section {
  margin-top: 120px;
  margin-bottom: 120px;
}

.margin-row-none {
  margin-top: 0;
  margin-bottom: 0;
}

.margin-section {
  margin-bottom: 60px;
}

.margin-section-xs {
  margin-bottom: 20px;
}

.margin-section-sm {
  margin-bottom: 30px;
}

.margin-section-lg {
  margin-bottom: 120px;
}

.margin-section-none {
  margin-bottom: 0;
}

.margin-content {
  margin-bottom: 15px;
}

.margin-content-xs {
  margin-bottom: 5px;
}

.margin-content-sm {
  margin-bottom: 10px;
}

.margin-content-lg {
  margin-bottom: 30px;
}

.margin-content-none {
  margin-bottom: 0;
}

/**
 *	border
 */
.border-none {
  border: none;
}

.border-box {
  border: 1px solid #ddd;
}

.divider {
  border-bottom: 1px solid #ddd;
}

.divider-dotted {
  border-bottom: 1px dotted #ddd;
}

.border-radius {
  border-radius: 0;
}

.border-radiusp-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.border-radiusp-bottom {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.border-radiusp-left {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.border-radiusp-right {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/**
 *	font
 */
.headline-h1 {
  font-size: 32px;
}

.headline-h2 {
  font-size: 24px;
}

.headline-h3 {
  font-size: 18px;
}

.headline-h4 {
  font-size: 16px;
}

.headline-h5 {
  font-size: 14px;
}

.headline-h6 {
  font-size: 12px;
}

.text-size-xs {
  font-size: 10px;
}

.text-size-sm {
  font-size: 12px;
}

.text-size-lg {
  font-size: 18px;
}

.text-bold {
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

.color-black {
  color: #000;
}

.color-gray-darker {
  color: #222;
}

.color-gray-dark {
  color: #333;
}

.color-gray {
  color: #555;
}

.color-gray-light {
  color: #777;
}

.color-gray-lighter {
  color: #eee;
}

.color-main {
  color: #000;
}

.color-sub {
  color: #fff;
}

.color-accent {
  color: #f00;
}

.color-link {
  color: #f00;
}

.color-hover {
  color: #f00000;
}

.hover-color-main:hover {
  color: #000;
}

.hover-color-sub:hover {
  color: #fff;
}

.hover-color-accent:hover {
  color: #f00;
}

.hover-color-link:hover {
  color: #f00;
}

.hover-color-hover:hover {
  color: #f00000;
}

/**
 *	background
 */
.fill-black {
  background-color: #000;
}

.fill-gray-darker {
  background-color: #222;
}

.fill-gray-dark {
  background-color: #333;
}

.fill-gray {
  background-color: #555;
}

.fill-gray-light {
  background-color: #777;
}

.fill-gray-lighter {
  background-color: #eee;
}

.fill-main {
  background-color: #000;
}

.fill-sub {
  background-color: #fff;
}

.fill-accent {
  background-color: #f00;
}

.fill-link {
  background-color: #f00;
}

.fill-hover {
  background-color: #f00000;
}

.hover-fill-black:hover {
  background-color: #000;
}

.hover-fill-gray-darker:hover {
  background-color: #222;
}

.hover-fill-gray-dark:hover {
  background-color: #333;
}

.hover-fill-gray:hover {
  background-color: #555;
}

.hover-fill-gray-light:hover {
  background-color: #777;
}

.hover-fill-gray-lighter:hover {
  background-color: #eee;
}

.hover-fill-main {
  background-color: #000;
}

.hover-fill-sub {
  background-color: #fff;
}

.hover-fill-accent {
  background-color: #f00;
}

.hover-fill-link {
  background-color: #f00;
}

.hover-fill-hover {
  background-color: #f00000;
}

/* ------------------------------------- */
/*  header: ヘッダーのスタイル
/*		- ui-header
/*		- ui-topbar
/* ------------------------------------- */
/*  layout  */
/*--------------------------------- */
.ui-header #site_description {
  margin-bottom: 0;
  font-size: 12px;
}
.ui-header .logo .title {
  margin: 0;
  font-size: 32px;
}
.ui-header .logo .title a {
    display: block;
    margin: 20px 0;
}
.ui-header .logo img {
  max-width: 100%;
}
.ui-header .logo .title a .sp-br{
	display: none;
}
.ui-header .logo .title a:hover{
	color: #000!important;
}
@media (max-width: 768px) {
	.ui-header .logo .title a {
		display: block;
		margin: 20px 0;
		font-size: 28px;
	}
	.ui-header .logo .title a .sp-br{
		display: block;
	}
}
/**
 *	ui-topbar
 */
.ui-topbar .topbar-body {
  padding: 3px 0;
  border-top: 3px solid #000;
  border-bottom: 1px solid #ddd;
  font-size: 12px;
}
.ui-topbar .topbar-body ul,
.ui-topbar .topbar-body p {
  margin-bottom: 0;
}
.ui-topbar .topbar-body .btn {
  padding: 0 3px;
}
.ui-topbar .topbar-body .header-login-block {
  text-align: right;
}
@media (min-width: 768px) {
  .ui-topbar .topbar-body input[type="text"],
  .ui-topbar .topbar-body input[type="email"],
  .ui-topbar .topbar-body input[type="password"] {
    width: 130px;
  }
}

/* ------------------------------------- */
/*  footer: フッターのスタイル
/*		- ui-footer
/*		- footerbottomcolumn
/* ------------------------------------- */
.ui-footer {
  font-size: 12px;
}
.ui-footer .footer-body {
  border-top: 1px solid #ddd;
}
.ui-footer #pagetop {
  margin-bottom: 10px;
}

/**
 *	footer bottom column
 */
#footerbottomcolumn {
  border-top: 1px solid #ddd;
}

/* ------------------------------------- */
/*  hadline: 見出しのスタイル
/*		- ui-headline
/*		- page-title
/*		- section-title
/*		- content-title
/* ------------------------------------- */
.ui-headline {
  position: relative;
}
.ui-headline .title {
  display: inline-block;
  margin: 0;
}
.ui-headline .title.title-colored {
  font-size: 18px;
}
.ui-headline .list-link {
  position: absolute;
  right: 15px;
  bottom: 15px;
  margin: 0;
}

/**
 *	page-title
 */
.page-title {
  padding-bottom: 10px;
  margin-bottom: 40px;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.page-title .title {
  color: #000;
  font-size: 32px;
  font-weight: normal;
}

/**
 *	section-title
 */
.section-title {
  margin-bottom: 25px;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.section-title .title {
  color: #000;
  font-size: 18px;
}
.section-title .title img {
  margin-left: 20px;
}

.ui-content .section-title:before {
  content: "";
  display: block;
  border-top: solid 1px #000;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.ui-content .section-title .title {
  background: #fff;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 20px;
  position: relative;
  z-index: 5;
}
.ui-content .section-title.text-center .title {
  padding-left: 20px;
}

/**
 *	side-title
 */
.side-title {
  margin-bottom: 0;
  padding: 10px;
  background-color: #000;
}
.side-title .title {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
}

/* ------------------------------------- */
/*  button: ボタンのスタイル
/*		- ui-form 	
/*		- @block: search_products, login
/*		- @plugin: 
/* ------------------------------------- */
.btn {
  border-radius: 2px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom-width: 2px;
}
@media (max-width: 767px) {
  .btn {
    width: 100%;
    padding: 8px 12px;
  }
}

div.btn,
li.btn,
p.btn {
  padding: 0;
  border: none;
  cursor: none;
}
div.btn:active,
li.btn:active,
p.btn:active {
  box-shadow: none;
}

/**
 *	btn style
 */
.btn-default {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.btn-black {
  color: #fff;
  background-color: #222;
  border-color: #000;
}
.btn-black:hover {
  color: #fff;
  background-color: #000;
}

.btn-border {
  color: #000;
  background-color: #fff;
  border: 1px solid #ddd;
}
.btn-border:hover {
  color: #fff;
  background-color: #000;
}

/* ------------------------------------- */
/*  content box: 商品リストのスタイル
/*		- ui-box
/*		- ui-side > ui-box
/*		- @block: recommend
/*		- @plugin: plg_ranking, plg_newProduct
/* ------------------------------------- */
.ui-box {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .ui-box {
    font-size: 12px;
  }
}
.ui-box .box-image {
  margin-bottom: 10px;
}
.ui-box .box-title {
  margin-bottom: 5px;
}
.ui-box .box-title .title {
  color: #333;
  font-size: 14px;
}
.ui-box .box-title .title a {
  color: #333;
}
.ui-box .box-title .title a:hover {
  color: #f00;
}
.ui-box .description,
.ui-box ul, .ui-box p {
  margin-bottom: 5px;
}
.ui-box .rank_num {
  padding: 2px 4px;
  margin-right: 5px;
  border: 1px solid #000;
  font-size: 10px;
}
.ui-box .item-price {
  color: #000;
  font-weight: bold;
}
.ui-box .item-price del {
  color: #777;
  font-weight: normal;
}
.ui-box .item-price .price {
  color: #000;
}
@media (min-width: 768px) {
  .ui-box .col-left-fit {
    padding-right: 0;
  }
  .ui-box .col-left-sm {
    padding-right: 10px;
  }
  .ui-box .col-left-lg {
    padding-right: 30px;
  }
}

.ui-side .ui-box {
  text-align: left;
}

@media (max-width: 767px) {
  .ui-box .status-icon img {
    width: 50px;
    margin-bottom: 3px;
  }
}

/* ------------------------------------- */
/*  list: リストコンテンツのスタイル
/*		- ui-list
/*		- list-category
/*		- @block: news, category
/*		- @plugin: 
/* ------------------------------------- */
.ui-list .date {
  font-size: 12px;
}
.ui-list.list-news .list-body {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.ui-list.list-scroll {
  overflow-y: scroll;
  max-height: 300px;
  padding: 5px 15px;
  border: 1px solid #ddd;
}

/**
 *	list-category
 */
.ui-list.list-category {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}
.ui-list.list-category li {
  padding: 5px 0;
}
.ui-list.list-category a {
  font-size: 14px;
  font-weight: bold;
}
.ui-list.list-category ul {
  list-style: disc;
  padding-left: 15px;
}

/* ------------------------------------- */
/*  form: フォームのスタイル
/*		- ui-form 	
/*		- @block: search_products, login
/*		- @plugin: 
/* ------------------------------------- */
.ui-form .formlist dt {
  color: #000;
  font-size: 12px;
}

/* ------------------------------------- */
/*  table: tableのスタイル
/*		- ui-table
/*		- @block: calendar
/*		- @plugin: 
/*		- @page: contact, cart
/* ------------------------------------- */
.ui-table tr th {
  color: #444;
  background-color: #f4f4f4;
}
.ui-table tr td select {
  margin-bottom: 10px;
  max-width: 150px;
}
.ui-table tr td input {
  padding: 2px 6px;
}

/**
 *	carendar
 */
.ui-side .ui-table caption {
  text-align: center;
}
@media (min-width: 768px) {
  .ui-side .ui-table > thead > tr > th {
    padding: 3px;
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .ui-side .ui-table > thead > tr > th {
    padding: 6px;
  }
}
.ui-side .ui-table > tbody > tr > td {
  border: none;
}
.ui-side .ui-table > tbody > tr > td.off {
  background-color: #FFCFCF;
}
@media (min-width: 768px) {
  .ui-side .ui-table > tbody > tr > td {
    padding: 3px;
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .ui-side .ui-table > tbody > tr > td {
    padding: 6px;
  }
}

/* ------------------------------------- */
/*  nav: ナビゲーションのスタイル
/*		- ui-nav
/*		- @block: 
/*		- @plugin: plg_Tetra_PulldownNav
/* ------------------------------------- */
.ui-nav {
  min-height: 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid #ddd;
  border-bottom: 2px solid #000;
  background-color: #fff;
}
.ui-nav .navbar-brand {
  color: #000;
  font-size: 14px;
  font-weight: normal;
}
.ui-nav .navbar-toggle {
  border: none;
}
.ui-nav .navbar-toggle:hover, .ui-nav .navbar-toggle:active, .ui-nav .navbar-toggle:focus {
  background-color: transparent;
}
.ui-nav .navbar-toggle .icon-bar {
  background-color: #000;
}
@media (min-width: 768px) {
  .ui-nav .nav > li {
    margin: 0 1px;
    color: #000;
    background-color: #fff;
  }
  .ui-nav .nav > li:hover, .ui-nav .nav > li:focus {
    color: #000;
  }
  .ui-nav .nav > li.active > a {
    color: #000;
    font-weight: normal;
    background-color: #fff;
  }
  .ui-nav .nav > li > a {
    padding: 15px 20px;
    color: #000;
  }
  .ui-nav .nav > li > a:hover, .ui-nav .nav > li > a:focus {
    color: #000;
    background-color: #fff;
  }
}

/**
 *	hover-open
 */
@media (min-width: 768px) {
  .ui-nav.open-hover .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/**
 *	submenu
 */
.ui-nav .dropdown-submenu {
  position: relative;
}
.ui-nav .dropdown-submenu > .dropdown-menu {
  top: 0 !important;
  left: 101%;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px 6px;
  border-radius: 0 6px 6px 6px;
}
.ui-nav .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.ui-nav .dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px;
}
.ui-nav .dropdown-submenu:hover > a:after {
  border-left-color: #ffffff;
}
.ui-nav .dropdown-submenu.pull-left {
  float: none;
}
.ui-nav .dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

/* ------------------------------------- */
/*  slider: スライダーのスタイル
/*    - ui-slider
/*    - @block: 
/*    - @plugin: plg_Tetra_slider_area
/* ------------------------------------- */
.ui-slider .carousel-indicators li {
  border: 1px solid #000;
}
.ui-slider .carousel-indicators li.active {
  background-color: #000;
}
.ui-slider .carousel-inner .item {
  text-align: center;
}
.ui-slider .carousel-inner .item img {
  display: inline-block;
}
.ui-slider .carousel-control {
  opacity: 1;
  width: 8%;
  text-shadow: none;
}
.ui-slider .carousel-control .glyphicon {
  opacity: .3;
}
.ui-slider .carousel-control:hover {
  color: #000;
  background-color: transparent;
}
.ui-slider .carousel-control:hover .glyphicon {
  opacity: 1;
}
.ui-slider .carousel-control.left {
  filter: none;
  background-image: none;
}
.ui-slider .carousel-control.right {
  filter: none;
  right: 0;
  background-image: none;
}

/* ------------------------------------- */
/*  shoppingu guide: ガイドのスタイル
/*    - shopping_guide
/*    - @block: 
/*    - @plugin: plg_Tetra_FotterGuide_area 
/* ------------------------------------- */
#shopping_guide {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #ddd;
  font-size: 12px;
}
#shopping_guide .footer_title {
  padding-bottom: 5px;
  padding-left: 20px;
  margin: -10px -20px 0 -20px;
  border-bottom: 1px solid #ddd;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}
#shopping_guide .footer_title span {
  font-size: 10px;
}
#shopping_guide .guide_title {
  padding: 6px 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
}
#shopping_guide .guide_body ul li {
  margin-bottom: 5px;
}
#shopping_guide .guide_body img {
  max-width: 100%;
  max-height: 100%;
}

/* ------------------------------------- */
/*   Cart: カートページのスタイル
/* ------------------------------------- */
#undercolumn_cart .point_announce {
  margin-bottom: 20px;
}
#undercolumn_cart .point_announce .price {
  color: #f00;
  font-weight: bold;
  padding: 0 5px;
}
#undercolumn_cart .totalmoney_area {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #undercolumn_cart .form_area table #quantity_level li {
    padding: 0;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
#undercolumn_cart .form_area table #quantity_level li a i {
  font-size: 18px;
}

/* ------------------------------------- */
/*  products: 商品ページのスタイル
/*    - page-navi
/*    - product-list
/*    - product-detail
/* ------------------------------------- */
/**
 *	page-navi
 */
#undercolumn #page_navi_top,
#undercolumn #page_navi_bottom {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #undercolumn #page_navi_top,
  #undercolumn #page_navi_bottom {
    margin-top: 20px;
  }
}
#undercolumn #page_navi_top .item_num,
#undercolumn #page_navi_bottom .item_num {
  margin-bottom: 15px;
  color: #000;
  font-weight: bold;
}
#undercolumn #page_navi_top .change,
#undercolumn #page_navi_bottom .change {
  text-align: right;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 767px) {
  #undercolumn #page_navi_top .change,
  #undercolumn #page_navi_bottom .change {
    text-align: center;
  }
}
#undercolumn #page_navi_top .change a,
#undercolumn #page_navi_bottom .change a {
  margin-right: 5px;
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid #ddd;
  font-size: 12px;
}
#undercolumn #page_navi_top .change a:hover,
#undercolumn #page_navi_bottom .change a:hover {
  color: #fff;
  text-decoration: none;
  border-color: #000;
  background-color: #000;
}
#undercolumn #page_navi_top .change select,
#undercolumn #page_navi_bottom .change select {
  width: 80px;
  height: 30px;
  border: 1px solid #ddd;
  background-color: #fff;
}
@media (max-width: 767px) {
  #undercolumn #page_navi_top .change select,
  #undercolumn #page_navi_bottom .change select {
    width: 100%;
    margin-top: 20px;
  }
}
#undercolumn #page_navi_top .navi,
#undercolumn #page_navi_bottom .navi {
  text-align: center;
  color: #000;
}
#undercolumn #page_navi_top .navi a,
#undercolumn #page_navi_bottom .navi a {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 2px;
  border: 1px solid #ddd;
  font-size: 12px;
}
#undercolumn #page_navi_top .navi a:hover,
#undercolumn #page_navi_bottom .navi a:hover {
  color: #fff;
  text-decoration: none;
  border-color: #000;
  background-color: #000;
}

/**
 *	product-list
 */
.list-products {
  text-align: left;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
}
.list-products:last-child {
  border: none;
}
.list-products .status_icon li {
  padding-right: 0;
}
.list-products .product-title {
  margin-bottom: 30px;
}
.list-products .product-title .title {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  color: #000;
  font-size: 24px;
}
.list-products .normal_price,
.list-products .sale_price {
  margin-bottom: 15px;
  color: #000;
  font-weight: bold;
}
.list-products .normal_price .price,
.list-products .sale_price .price {
  font-size: 18px;
}
.list-products .listcomment {
  margin-bottom: 15px;
}
.list-products .cart_area {
  padding-top: 15px;
  border-top: 2px solid #ddd;
}
@media (min-width: 768px) {
  .list-products .cart_area select {
    width: 130px;
  }
}
@media (min-width: 768px) {
  .list-products .cart_area input[type="text"] {
    width: 100px;
    margin-left: 6px;
  }
}
.list-products .cart_area dl {
  margin-bottom: 0;
}
.list-products .cart_area dl:last-child {
  margin-bottom: 15px;
}
.list-products .cart_area dl dt {
  display: inline-block;
  width: auto;
  color: #333;
}
.list-products .cart_area dl dd {
  display: inline-block;
}
.list-products .cart_area .quantity {
  margin-bottom: 15px;
  margin-right: 15px;
}
.list-products .cart_area .cartin_btn .btn {
  width: 150px;
}
@media (max-width: 767px) {
  .list-products .cart_area .cartin_btn .btn {
    width: 100%;
    padding: 8px 12px;
  }
}
.list-products .description {
  margin-bottom: 15px;
}
.list-products .detail_btn .btn {
  margin-bottom: 15px;
}

/**
 *	product-detail
 */
#detailarea #detailphotobloc {
  margin-bottom: 20px;
}
#detailarea #detailphotobloc img {
  margin-bottom: 5px;
}
#detailarea #detailrightbloc .status_icon li {
  padding-right: 0;
}
#detailarea #detailrightbloc .product-title {
  margin-bottom: 30px;
}
#detailarea #detailrightbloc .product-title .title {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  color: #000;
  font-size: 24px;
}
#detailarea #detailrightbloc .dl-horizontal {
  margin-bottom: 5px;
}
#detailarea #detailrightbloc .dl-horizontal dt {
  display: inline-block;
  width: 100px;
  color: #000;
  font-size: 12px;
}
@media (min-width: 768px) {
  #detailarea #detailrightbloc .dl-horizontal dt {
    width: 100px;
  }
}
#detailarea #detailrightbloc .dl-horizontal dd {
  display: inline-block;
}
@media (min-width: 768px) {
  #detailarea #detailrightbloc .dl-horizontal dd {
    margin-left: 0;
  }
}
#detailarea #detailrightbloc .price-area,
#detailarea #detailrightbloc .spec-area,
#detailarea #detailrightbloc .main_comment {
  margin-bottom: 15px;
}
#detailarea #detailrightbloc .normal_price .price,
#detailarea #detailrightbloc .sale_price .price {
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
#detailarea #detailrightbloc .cart_area {
  padding-top: 15px;
  border-top: 2px solid #ddd;
}
@media (min-width: 768px) {
  #detailarea #detailrightbloc .cart_area select {
    width: 130px;
  }
}
@media (min-width: 768px) {
  #detailarea #detailrightbloc .cart_area input[type="text"] {
    width: 100px;
    margin-left: 6px;
  }
}
#detailarea #detailrightbloc .cart_area .quantity {
  margin-bottom: 15px;
}
#detailarea #detailrightbloc .cart_area .quantity dt {
  display: inline-block;
  width: auto;
  color: #333;
}
#detailarea #detailrightbloc .cart_area .quantity dd {
  display: inline-block;
}
@media (min-width: 768px) {
  #detailarea #detailrightbloc .cart_area .quantity dd {
    margin-left: 20px;
  }
}
#detailarea #detailrightbloc .cart_area .cartin_btn {
  margin-bottom: 15px;
}
#detailarea #detailrightbloc .cart_area .cartin_btn .btn {
  width: 250px;
}
@media (max-width: 767px) {
  #detailarea #detailrightbloc .cart_area .cartin_btn .btn {
    width: 100%;
    padding: 8px 12px;
  }
}

#subcomment_area {
  margin-bottom: 60px;
}
#subcomment_area .sub_area {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
#subcomment_area .sub-title {
  margin-bottom: 15px;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 16px;
}
#subcomment_area .mini {
  display: inline-block;
  margin-top: 5px;
}

#customervoice_area {
  margin-bottom: 40px;
}
#customervoice_area .review_bloc {
  padding: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
#customervoice_area .review_bloc p {
  display: inline-block;
  margin: 0;
  font-size: 12px;
}
#customervoice_area .review_bloc .review_btn {
  display: inline-block;
  float: right;
}
@media (max-width: 767px) {
  #customervoice_area .review_bloc .review_btn {
    display: block;
    float: none;
    margin-top: 10px;
  }
}
#customervoice_area .review_bloc .review_btn a {
  padding: 4px 8px;
  border: 1px solid #000;
  border-radius: 2px;
  color: #000;
  font-size: 12px;
}
#customervoice_area .review_bloc .review_btn a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #000;
}
@media (max-width: 767px) {
  #customervoice_area .review_bloc .review_btn a {
    width: 100%;
    font-size: 14px;
  }
}
#customervoice_area ul {
  list-style: none;
  padding: 15px;
  font-size: 12px;
}
#customervoice_area ul li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#customervoice_area ul li .recommend_level {
  color: #ffbd30;
}

@media (max-width: 767px) {
  #cboxOverlay {
    max-width: 100% !important;
  }

  #colorbox,
  #cboxWrapper,
  #cboxContent {
    max-width: 100% !important;
    background-color: transparent;
  }

  #cboxLoadedContent {
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
  }

  .cboxPhoto {
    max-width: 100% !important;
    height: auto !important;
    border: 1px solid #333;
  }
}
/* ------------------------------------- */
/*  mypage: マイページのスタイル
/*    - mynavi_area
/* ------------------------------------- */
/**
 *  index
 */
@media (max-width: 767px) {
  #mynavi_area .mynavi_list li {
    display: block;
  }
  #mynavi_area .mynavi_list li a {
    display: block;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-bottom: none;
    background-color: #f4f4f4;
  }
  #mynavi_area .mynavi_list li:last-child a {
    border-bottom: 1px solid #ddd;
  }
}

/* ------------------------------------- */
/*  shopping: 購入ページのスタイル
/*    - shopping
/*    - login
/*    - customer
/* ------------------------------------- */
/**
 *  shopping
 */
#undercolumn_shopping .shopping-flow {
  padding-left: 0;
  margin-bottom: 30px;
}
#undercolumn_shopping .shopping-flow li {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 25%;
  height: 45px;
  margin-left: -4px;
  color: #000;
  line-height: 45px;
  background-color: #ececec;
}
#undercolumn_shopping .shopping-flow li.current {
  color: #fff;
  background-color: #000;
}
#undercolumn_shopping .shopping-flow li.row2 {
  line-height: 14px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  #undercolumn_shopping .shopping-flow li {
    width: 100%;
  }
}
#undercolumn_shopping .pay_area,
#undercolumn_shopping .pay_area02,
#undercolumn_shopping .point_area {
  margin-bottom: 40px;
}
#undercolumn_shopping .delivdate select {
  display: inline-block;
  width: 150px;
}
#undercolumn_shopping .radio-button li {
  margin-bottom: 15px;
}
#undercolumn_shopping .radio-button li input {
  margin-right: 5px;
}
#undercolumn_shopping .btn_area {
  text-align: center;
}
#undercolumn_shopping textarea {
  width: 100%;
}

/**
 *  login
 */
#undercolumn_login .login_area {
  margin-top: 40px;
}
#undercolumn_login .login_area .inputbox {
  margin: 30px 0;
}
#undercolumn_login .login_area .inputbox .btn_area {
  text-align: center;
}
#undercolumn_login .login_area .inputbox .btn_area ul {
  margin-bottom: 0;
}

/**
 *  customer
 */
#undercolumn_customer .shopping-flow {
  padding-left: 0;
}
#undercolumn_customer .shopping-flow li {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 25%;
  height: 45px;
  margin-left: -4px;
  color: #000;
  line-height: 45px;
  background-color: #ececec;
}
#undercolumn_customer .shopping-flow li.current {
  color: #fff;
  background-color: #000;
}
#undercolumn_customer .shopping-flow li.row2 {
  line-height: 14px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  #undercolumn_customer .shopping-flow li {
    width: 100%;
  }
}
#undercolumn_customer form table select {
  margin: 5px 0;
}
#undercolumn_customer form table select[name="order_year"],
#undercolumn_customer form table select[name="order_month"],
#undercolumn_customer form table select[name="order_day"] {
  width: 60px;
  margin-right: 5px;
}
@media (max-width: 767px) {
  #undercolumn_customer form table select[name="order_year"],
  #undercolumn_customer form table select[name="order_month"],
  #undercolumn_customer form table select[name="order_day"] {
    width: 110px;
  }
}
#undercolumn_customer form table td select {
  width: 130px;
}
#undercolumn_customer .btn_area {
  text-align: center;
}

/* ------------------------------------- */
/*  windowcolumn: ポップアップページのスタイル
/* ------------------------------------- */
#windowcolumn #forgot {
  padding: 10px;
}
#windowcolumn #forgot .name {
  margin-left: 49px;
}
@media (max-width: 767px) {
  #windowcolumn #forgot .name {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  #windowcolumn table {
    widows: 300px;
  }
  #windowcolumn table textarea {
    width: 200px;
  }
}

/* ------------------------------------- */
/*  header_wrap: ヘッダー背景
/* ------------------------------------- */
#header_wrap {
	background: url(../img/common/header_bg.png) left 90%;
    background-size: cover;
}