﻿@charset "UTF-8";

/* ---- HEADER ---- */
#header {
  position: relative;
  width: 100%;
  background: #FFF;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#header.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
#header.block-order-header {
  padding: 16px 0 12px;
  border-top: 4px solid #9A846C;
}
.block-header-news {
  background: #9A846C;
  text-align: center;
  padding: 2px 0;
  width: 100%;
}
#header.fixed .block-header-news {
  display: none;
}
.block-header-news a {
  position: relative;
  display: inline-block;
  padding: 2px 0 0 25px;
  color: #FFF;
  font-size: 15px;
  font-weight: bold;
}
.block-header-news a:before {
  content: '!';
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #FFF;
  border-radius: 50%;
  text-align: center;
  color: #9A846C;
  font-size: 14px;
}
.block-header-logo {
  padding: 0 0 0 34px;
  margin: 0 15px 0 0;
  line-height: 0;
}
.block-header-logo img {
  width: 145px;
}
.block-header-logo a:hover {
  opacity: .8;
}
.block-header-nav {
  display: flex;
  align-items: center;
}
.block-header-nav > li {
  position: relative;
}
.block-header-nav > li > a,
.block-header-nav > li > p {
  position: relative;
  display: inline-block;
  padding: 27px 15px;
  cursor: pointer;
}
.block-header-nav > li > a:before,
.block-header-nav > li > p:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 27px;
  margin: auto;
  width: 0;
  height: 1px;
  background: #000;
  transition: .3s ease;
}
.block-header-nav > li > a:hover {
  text-decoration: none;
}
.block-header-nav > li > a:hover:before,
.block-header-nav > li > p:hover:before {
  width: 30px;
}
.block-header-nav > li > p:after {
  content: '';
  position: absolute;
  left: calc(50% - 9px);
  bottom: 0;
  border-style: solid;
  border-width: 0 9px 18px 9px;
  border-color: transparent transparent #F5F5F5 transparent;
  opacity: 0;
  transition: .3s ease;
}
.block-header-nav > li:hover > p:after {
  opacity: 1;
}
.block-header-nav-contents {
  display: none;
  background: #F5F5F5;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100vw;
  z-index: 11;
}
#header.fixed .block-header-nav-contents {
  top: 80px !important;
}
.block-header-nav > li:hover .block-header-nav-contents {
  display: block;
}
.block-header-nav-products {
  width: 900px;
  margin: 0 auto;
  padding: 10px 0 30px;
}
.block-header-nav-products--line {
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #707070;
  padding: 25px 0;
}
.block-header-nav-products--line-title {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  width: 124px;
  margin: 0 16px 0 0;
}
.block-header-nav-products--line-title:after {
  content: ':';
  position: absolute;
  top: -2px;
  right: 5px;
  font-size: 16px;
}
.block-header-nav-products--line ul {
  display: flex;
  flex: 1;
}
.block-header-nav-products--line li:nth-child(1) {
  width: 124px;
}
.block-header-nav-products--line li:nth-child(2) {
  width: 181px;
}
.block-header-nav-products--line li:nth-child(3) {
  width: 189px;
}
.block-header-nav-products--line li:nth-child(4) {
  width: 171px;
}
.block-header-nav-products--line li:nth-child(5) {
  width: 90px;
}
.block-header-nav-products--line li a {
  font-size: 14px;
  padding: 1px 0 0 25px;
  background: url(../../img/usr/common/icon_arrow_w.png) no-repeat left center;
}
.block-header-nav-contents--btn {
  position: relative;
  display: block;
  width: 240px;
  margin: 30px auto 0;
  padding: 8px 0 4px;
  text-align: center;
  border: 1px solid #000;
  border-radius: 30px;
}
.block-header-nav-contents--btn:after {
  content: '';
  position: absolute;
  top: 16px;
  right: 24px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
}
.block-header-nav-contents--btn:hover {
  text-decoration: none;
  opacity: .8;
}
.block-header-nav-brand {
  padding: 30px;
}
.block-header-nav-brand ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.block-header-nav-brand li {
  margin: 0 13px 10px 0;
}
.block-header-nav-brand li a {
  display: block;
  line-height: 0;
  width: 160px;
  border-radius: 5px;
  overflow: hidden;
}
.block-header-nav-brand li img {
  transition: .3s ease;
}
.block-header-nav-brand li a:hover img {
  transform: scale(1.1);
}
.block-header-search {
  margin: 0 27px 0 auto;
}
.block-header-search form {
  display: flex;
  align-items: center;
  background: #F8F8F8;
  border: 1px solid #DDD;
  border-radius: 30px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, .2) inset;
  width: 300px;
  padding: 9px 25px 7px 22px;
}
input.block-header-search--keyword {
  border: 0;
  padding: 0;
  font-size: 13px;
  background: transparent;
  box-shadow: none;
  width: 229px;
}
.block-header-search--submit {
  border: 0;
  background: transparent;
  width: 22px;
  padding: 0;
  border-radius: 0;
}
.block-header-menu {
  display: flex;
  align-items: center;
  padding: 0 40px 0 0;
}
.block-header-menu li:not(:last-child) {
  margin: 0 30px 0 0;
}
.block-header-menu li a {
  position: relative;
  display: block;
  line-height: 0;
}
.block-header-menu li a:hover {
  opacity: .8;
}
.block-header-menu--cart-count {
  position: absolute;
  top: -9px;
  right: -13px;
  width: 22px;
  height: 22px;
  background: #F02B40;
  border-radius: 50%;
  color: #FFF;
  font-size: 13px;
  text-align: center;
  padding: 12px 0 0;
}
.block-header-menu--cart-count:empty {
  display: none;
}

/* ---- FOOTER ---- */
.pane-footer {
  padding: 60px 0;
  background: #F5F5F5;
}
.page-cart .pane-footer {
  padding: 0;
}
body.page-estimate .pane-footer {
  margin: 0;
}
.pane-footer .container {
  width: 1200px;
  margin: 0 auto;
}
.block-footer-customer-nav {
  display: flex;
  justify-content: space-between;
  margin: 0 0 30px;
}
.block-footer-customer-nav--item {
  width: 285px;
  background: #FFF;
  border-radius: 5px;
  padding: 20px 52px 18px;
}
.block-footer-customer-nav--item-title {
  font-size: 15px;
  font-weight: bold;
  padding: 36px 0 0;
  margin: 0 0 5px;
  text-align: center;
}
.block-footer-customer-nav--item:nth-child(1) .block-footer-customer-nav--item-title {
  background: url(../../img/usr/common/icon_beginner.png) no-repeat center top;
}
.block-footer-customer-nav--item:nth-child(2) .block-footer-customer-nav--item-title {
  background: url(../../img/usr/common/icon_gift.png) no-repeat center top;
}
.block-footer-customer-nav--item:nth-child(3) .block-footer-customer-nav--item-title {
  background: url(../../img/usr/common/icon_delivery.png) no-repeat center top 2px;
}
.block-footer-customer-nav--item:nth-child(4) .block-footer-customer-nav--item-title {
  background: url(../../img/usr/common/icon_mail.png) no-repeat center top 2px;
}
.block-footer-customer-nav--item-text {
  font-size: 12px;
  margin: 0 0 10px;
}
.block-footer-customer-nav--item-btn {
  display: block;
  width: 120px;
  border-radius: 30px;
  text-align: center;
  margin: 0 auto;
  padding: 3px 0 1px;
  font-size: 12px;
  background: #F5F5F5 url(../../img/usr/common/icon_arrow_w.png) no-repeat right 5px center;
}
.block-footer-customer-nav--item-btn:hover {
  text-decoration: none;
  opacity: .8;
}
.block-footer-link {
  margin: 0 0 30px;
  border-bottom: 1px solid #999;
}
.block-footer-link ul {
  display: flex;
  margin: 0 0 30px;
}
.block-footer-link li:not(:last-child) {
  margin: 0 30px 0 0;
}
.block-footer-link li a {
  font-size: 14px;
  padding: 0 0 0 20px;
  background: url(../../img/usr/common/icon_arrow_b.png) no-repeat left center;
}
.block-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 20px 0 0;
}
.block-footer-bottom--l-col {
  flex: 1;
}
.block-footer-logo {
  width: 60px;
}
.block-footer-site-nav {
  display: flex;
  margin: 0 0 25px;
}
.block-footer-site-nav li:not(:last-child) {
  margin: 0 40px 0 0;
}
.block-footer-site-nav li a {
  font-size: 13px;
}
.block-footer-site-nav li a[target="_blank"] {
  padding: 0 18px 0 0;
  background: url(../../img/usr/common/icon_link.png) no-repeat right top 2px;
}
.block-footer-copyright {
  font-size: 12px;
  margin: 0 0 10px;
}
.page-cart .block-footer-copyright {
  margin: 0;
}
.block-footer-caution {
  font-size: 10px;
}
