﻿@charset "UTF-8";

:root {
  --scrollbar-width: 15px;
  --font-default: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-en: "Poppin","Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --text-color: #333333;
  --text-color-second: #3E1506;
  
  --color-red: #cc0000;
  --color-gray: #F5F5F5;
  --color-beige: #F0ECE6;
}
html * {
  scrollbar-width: thin;
}
body {
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}

body:has(.alorb) .direct-obj,
body:not(:has(.alorb)) .alorb-obj {
  display: none!important;
}

a {
  color: inherit;
}
a img {
  transition: opacity 0.3s;
}
a:hover img {
  opacity: 0.8;
}
img {
  vertical-align: top;
}
input[type="checkbox"] {
  width: 21px;
  height: 21px;
  margin-right: 8px;
}

input[name="pwd_display"] {
  margin-top: -5px;
}

.page-estimate input[name="pwd_display"] {
  margin-top: 0;
}

h1,
.h1 {
  margin: 0 0 20px;
  padding: 0 0;
  background: none;
  border: none;
  font-size: 30px;
  font-weight: 500;
}

h2,
.h2 {
  margin: 0 0 20px;
  padding: 0 0;
  background: none;
  border: none;
  font-size: 24px;
  font-weight: 500;
}

h3,
.h3 {
  margin: 0 0 20px;
  padding: 0 0;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 500;
}

h4,
.h4 {
  margin: 0 0 20px;
  padding: 0 0;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
}

h5,
.h5 {
  margin: 0 0 20px;
  padding: 0 0;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
}

h6,
.h6 {
  font-size: 14px;
  font-weight: 500;
}

.common-tit01 {
  margin: 0 0 40px;
  padding: 0;
  background: none;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #848484;
}
.common-tit01 span {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #434343;
  display: block;
  text-align: center;
}
.common-tit01.alorb span {
  color: var(--text-color-second)
}
body:has(.alorb) .common-tit01 span {
  color: #3E1506;
}

.block-goods-list--pager-top {
  /*display: none;*/
}

.price {
  color: #595757;
}
.default-price + .price {
  color: var(--color-red);
}

.price::after {
  font-size: calc(1em * 12 / 16);
  content: "（税抜）";
}
.default-price::after {
  /*font-size: max(10px,calc(1em * 12 / 16));*/
  content: "（税抜）";
}

.price.pickup-parent-price::after {
  content: "（税抜）～";
}
.net-price {
  display: none!important;
}

.pager {
  position: relative;
  margin: 20px 0;
  padding: 0;
  border: none;
}
.pager ~ .pager {
  margin-top: 60px;
}

.block-goods-list--pager.pager {
}


.pager-total {
  display: flex;
  align-items: center;
  height: 40px;
  margin: 0 0 20px;
  padding: 5px 20px;
  background: #848484;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
.pager .pager-scope:has(+ .pager-total) {
  position: absolute;
  right: 10px;
  top: 5px;
  color: #ffffff;

}
.pager-current {
}

.pagination-frame {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}
.pagination-frame .pagination {
  display: flex;
  gap: 10px;
}
.pagination-frame .pagination:has(.pager-first),
.pagination-frame .pagination:has(.pager-last) {
  gap: 5px;
}

.pagination > * {
  margin: 0;
  padding: 0;
  border: 0;
}

.pagination li a,
.pagination li span {
  color: #595757;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s;
}
.pagination li span {
  color: #ffffff;
  background: #333333;
}
.pagination li a:hover {
  text-decoration: none;
  background: #E5E5E5;
}


.pagination li.pager-first a,
.pagination li.pager-previous a,
.pagination li.pager-next a,
.pagination li.pager-last a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
  background: none;
}
.pagination li.pager-first a::before,
.pagination li.pager-first a::after,
.pagination li.pager-previous a::before {
  position: absolute;
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-top: 2px solid #434343;
  border-left: 2px solid #434343;
  transform: rotate(-45deg);
  content: "";
}
.pagination li.pager-first a::before {
  left: calc(50% - 2px);
}
.pagination li.pager-first a::after {
  left: calc(50% - 9px);
}
.pagination li.pager-previous a::before {
  left: calc(50% - 5px);
}

.pagination li.pager-next a::before,
.pagination li.pager-last a::before,
.pagination li.pager-last a::after {
  position: absolute;
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-top: 2px solid #434343;
  border-right: 2px solid #434343;
  transform: rotate(45deg);
  content: "";
}
.pagination li.pager-next a::before {
  right: calc(50% - 5px);
}
.pagination li.pager-last a::before {
  right: calc(50% - 2px);
}
.pagination li.pager-last a::after {
  right: calc(50% - 9px);
}

.action .btn {
  border-bottom-width: 1px;
}

.btn-default,
.btn-primary,
.btn-secondary,
.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%,235px);
  min-height: 50px;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s;
  opacity: 1!important;
  text-decoration: none!important;
}
.btn-default {
  border: 1px solid #BFBFBF;
  color: var(--text-color);
  background: #ffffff;
}
.btn-default:hover {
  background-color: #E5E5E5;
}
.btn-primary {
  border: 1px solid #434343;
  color: #ffffff;
  background: #434343;
}
.btn-primary:hover {
  background-color: #000000;
  border-color: #000000;
}
.btn-secondary {
  border: 1px solid #BFBFBF;
  color: #ffffff;
  background: #BFBFBF;
}
.btn-secondary:hover {
  background-color: #9F9F9F;
  border-color: #9F9F9F;
}

.btn-danger {
  border: 1px solid #FFE8E6;
  color: #E55454;
  background: #FFE8E6;
}
.btn-danger:hover {
  background-color: #FFC7C3;
  border-color: #FFC7C3;
}

.btn-charcoal {
  border: 1px solid #848484;
  color: #ffffff;
  background: #848484;
}
.btn-charcoal:hover {
  background-color: #9F9F9F;
  border-color: #9F9F9F;
}


.btn-danger,
.btn-small {
  min-width: auto;
  min-height: auto;
  border-radius: 40px;
  padding: 6px;
}
.btn-large {
  width: min(100%,400px);
  padding: 6px;
}
.btn-arrow {
  background-image: url(../../img/usr/common/arrow_r01.png);
  background-size: 16px;
  background-position: calc(100% - 15px) 50%;
  background-repeat: no-repeat;
}
.btn-primary.btn-arrow,
.btn-secondary.btn-arrow {
  background-image: url(../../img/usr/common/arrow_r03.png);
}
.btn-download {
  background-image: url(../../img/usr/common/download.png);
  background-size: 22px auto;
  background-position: calc(100% - 15px) 45%;
  background-repeat: no-repeat;
}

.common-btn01 {
  min-width: 235px;
  min-height: 50px;
  border-radius: 50px;
  padding: 10px 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #434343 url(../../img/usr/common/arrow_r03.png) calc(100% - 15px) center / 18px auto no-repeat;
  border: solid 1px #434343;
  color: #ffffff;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none!important;
  transition: all 0.3s;
}
.common-btn01:hover {
  opacity: 0.8;
}

body:has(.alorb) .common-btn01,
.common-btn01.alorb {
  background-color: #3E1506;
  border: solid 1px #3E1506;
}
.btnarea-more {
  margin-top: 1.5rem;
  text-align: center;
}

.star-base {
  width: 110px;
  height: 22px;
  background-position: 0 0;
  background-size: 110px 44px;
}

.star-select {
  width: 110px;
  height: 22px;
  background-position: -110px -22px;
  background-size: 110px 44px;
}

.fieldset .form-control {
  padding-left: 12px;
}

[v-cloak] {
  display: none;
}

.wrapper:has(#header) { padding-top: 71px; }
.wrapper:has(#header):has(#glovalnav) { padding-top: calc(71px + 41px); }
/* header */
#header {
  position: relative;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  padding: 0 50px;
  background: #ffffff;
  border-bottom: solid 1px var(--color-gray);
  color: #595757;
}
#header > .container {
  min-width: calc(1024px - 100px);
  width: 100%;
  height: 70px;
  padding: 5px 0;
  display: flex;
  align-items: center;
}
#header .block-header-logo {
  margin: 0;
  padding: 0;
  font-size: inherit;
  flex: 1;
}
#header .block-header-logo img {
  max-width: 205px;
}
#header .block-header-search {
  margin: 0 42px;
  width: 250px;
  border: solid 1px #C1C1C1;
  border-radius: 5px;
}
#header .block-header-search form {
  display: flex;
  align-items: stretch;
}
#header .block-header-search input.block-global-search--keyword {
  appearance: none;
  border: none;
  outline: none;
  width: auto;
  flex: 1;
  background: none;
  padding: 5px 8px;
  width: calc(100% - 36px);
  max-width: calc(100% - 36px);
}
#header .block-header-search .block-global-search--submit {
  appearance: none;
  width: 36px;
  height: 40px;
  border: none;
  outline: none;
  background: url(../../img/usr/common/icon_header_search.png) left center no-repeat;
  cursor: pointer;
}
#header .block-header-nav > ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
#header .block-header-nav > ul .block-headernav--item-cart {
  position: relative;
}
#header .block-header-nav > ul .block-headernav--item-cart .block-headernav--cart-count:empty {
  display: none;
}
#header .block-header-nav > ul .block-headernav--item-cart .block-headernav--cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #848484;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
}
#header.alorb .block-header-nav > ul .block-headernav--item-cart .block-headernav--cart-count {
  background: #3e1506;
}
#header .block-header-contact .common-btn01 {
  padding-right: 45px;
}

/* glovalnav */
#glovalnav {
  position: relative;
  z-index: 1000;
  color: #595757;
  position: fixed;
  left: 0;
  right: 0;
  top: 71px;
}
.glovalnav-list {
  position: relative;
  z-index: 1001;
  background: #ffffff;
  border-bottom: solid 1px var(--color-gray);
}
.glovalnav-list > ul {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 40px;
  gap: 30px;
  font-size: 14px;
}
.glovalnav-list > ul li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  border-bottom: solid 1px #ffffff;
  text-decoration: none!important;
}
.glovalnav-list > ul li a:hover {
  opacity: 0.8;
}
.glovalnav-list > ul li a.active {
  border-bottom: solid 1px #848484;
}
.glovalnav-contents {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  z-index: 1000;
  background: #ffffff;
}
.glovalnav-contents-section {
  display: none;
  width: 1000px;
  margin: 0 auto;
  font-size: 14px;
}
.glovalnav-contents-bg {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(0,0,0,0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
#glovalnav:has(.js-gnav-btn.active) + .glovalnav-contents-bg {
  visibility: visible;
  opacity: 1;
}
.glovalnav-brand-list {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  padding: 40px 0;
}
.glovalnav-brand-list li {
  position: relative;
}
.glovalnav-brand-list li a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.glovalnav-brand-list li:not(:has(figure))::before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: #ddd;
}
.glovalnav-brand-list li a:hover {
  color: #ffffff;
  background: rgba(67,67,67,0.7);
  text-decoration: none;
}
.glovalnav-brand-list li figure img {
  vertical-align: top;
}

.glovalnav-category-list {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.glovalnav-category-list .glovalnav-category-list--left {
  width: 210px;
  overflow: auto;
  max-height: 50vh;
  padding: 40px 20px 40px 0;
  direction: rtl;

}
.glovalnav-category-list .glovalnav-category-list--left ul li {
  padding: 0 8px 0 0;
  direction: ltr;
}
.glovalnav-category-list .glovalnav-category-list--left ul li + li {
  margin-top: 20px;
}
.glovalnav-category-list .glovalnav-category-list--left ul li a {
  position: relative;
  width: 182px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #BFBFBF;
  border-radius: 5px;
  padding: 15px 10px;
  transition: all 0.3s;
}
.glovalnav-category-list .glovalnav-category-list--left ul li a:hover {
  text-decoration: none;
}
.glovalnav-category-list .glovalnav-category-list--left ul li a::before {
  position: absolute;
  left: calc(100% - 1px);
  top: calc(50% - 8px);
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #84848400;
  border-right: 0;
  transition: all 0.3s;
}
.glovalnav-category-list .glovalnav-category-list--left ul li a.glovalnav-category-list--btn.active,
.glovalnav-category-list .glovalnav-category-list--left ul li a.glovalnav-category-list--btn:hover {
  background: #848484;
}
.glovalnav-category-list .glovalnav-category-list--left ul li a.btn_nochildren:hover {
  text-decoration: underline;
  background: #848484;
}
.glovalnav-category-list .glovalnav-category-list--left ul li a.glovalnav-category-list--btn.active::before,
.glovalnav-category-list .glovalnav-category-list--left ul li a.glovalnav-category-list--btn:hover::before {
  border-left: 8px solid #848484;
}

body:has(.alorb) .glovalnav-category-list .glovalnav-category-list--left ul li a {
  color: #ffffff;
  background: #BFBBB4;
}
body:has(.alorb) .glovalnav-category-list .glovalnav-category-list--left ul li a::before {
  border-left: 8px solid #BFBBB400;
}
body:has(.alorb) .glovalnav-category-list .glovalnav-category-list--left ul li a.glovalnav-category-list--btn.active,
body:has(.alorb) .glovalnav-category-list .glovalnav-category-list--left ul li a.glovalnav-category-list--btn:hover {
  background: #C6B493;
}
body:has(.alorb) .glovalnav-category-list .glovalnav-category-list--left ul li a.btn_nochildren:hover {
  background: #C6B493;
}

body:has(.alorb) .glovalnav-category-list .glovalnav-category-list--left ul li a.glovalnav-category-list--btn.active::before,
body:has(.alorb) .glovalnav-category-list .glovalnav-category-list--left ul li a.glovalnav-category-list--btn:hover::before {
  border-left: 8px solid #C6B493;
}


.glovalnav-category-list .glovalnav-category-list--right {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 80vh;
  flex: 1;
  padding: 40px 0 40px 0;
  scrollbar-color: #bbb transparent;
}
.glovalnav-category-list .glovalnav-category-list--right::-webkit-scrollbar-thumb {
  background: #bbb;
}
.glovalnav-category-list .glovalnav-category-list--right::-webkit-scrollbar-track {
  background: transparent;
}
.glovalnav-category-list .glovalnav-category-list--right ul {
  display: grid;
  grid-template-columns: repeat(4,calc((100% - 20px * 3) / 4));
  gap: 20px;
}
.glovalnav-category-list .glovalnav-category-list--right ul li a {
  height: 100%;
  min-height: 70px;
  padding: 10px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-top: solid 1px #E5E5E5;
  border-bottom: solid 1px #E5E5E5;
  gap: 10px;
}
.glovalnav-category-list .glovalnav-category-list--right ul li a figure {
  /*width: 50px;
  min-width: 50px;*/
}
.glovalnav-category-list .glovalnav-category-list--right ul li a figure img {
  width: auto;
  height: 50px;
}

#header-important-textarea {
  position: relative;
  text-align: center;
  font-size: 12px;
  padding: 20px;
}
/* footer */
#footer_pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100;
  opacity: 1!important;
}
#footer_pagetop a {
  position: absolute;
  right: 15px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background:#BFBFBF;
  color: #ffffff;
  border: solid 1px rgba(255,255,255,0.5);
  font-size: 10px;
  padding-top: 10px;
  letter-spacing: 1px;
}
#footer_pagetop a::after {
  display: block;
  content: 'TOP';
}
#footer_pagetop a::before {
  position: absolute;
  left: calc(50% - 6px);
  top: calc(50% - 11px);
  width: 10px;
  height: 10px;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  transform: rotate(-45deg);
  content: "";
}

.pane-footer {
  margin: 0 0 0;
  padding: 100px 10px 80px;
  background: var(--color-gray);
  color: #595757;
}
.pane-footer:has(.alorb) {
  background: #E8E1D6;
}
.pane-footer:has(.block-page-top + .block-footerst) {
  padding: 24px 10px 24px;
}
.block-footernav {
}
.block-footernav .block-footernav--tit {
  margin: 0 0 40px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #848484;
}
.block-footernav .block-footernav--tit span {
  display: block;
  color: #434343;
  font-size: 30px;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 2px;
}

.block-footernav--item-list {
  margin: 0 0 60px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px 42px;
  font-weight: 500;
}
.block-footernav--item-list li a {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  border-bottom: solid 1px #ffffff;
  padding: 0 24px 8px 0;
  background: url(../../img/usr/common/arrow_r01.png) right calc(100% - 17px) no-repeat;
}
.block-footernav--item-list2 {
  margin: 0 0 60px;
  display: flex;
  flex-flow: wrap;
  gap: 20px 40px;
  font-weight: 500;
}
.block-footerst {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.block-footerst address {
  font-size: 12px;
  margin: 0 0 20px;
}
.block-footerst address + p {
  font-size: 12px;
}
.block-footerst address + p a {
  display: inline-block;
  text-decoration: none;
  padding: 0 27px 0 0;
  background: url(../../img/usr/common/arrow_r02.png) right center no-repeat;
}
.block-footerst address + p a span {
  display: inline-flex;
  align-items: center;
  border-bottom: solid 1px #595757;
  padding-bottom: 5px;
}
.block-footerst address + p a:hover {
  opacity: 0.7;
}
.block-footerst #copyright {
  font-size: 10px;
  font-weight: 400;
}
.block-footerst div:last-child ul {
  margin: 0 0 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
.block-footerst div:last-child ul li img {
  width: 30px;
}
/* common footer */
.pane-footer:has(.footer__common) {
  padding: 18px 10px 17px;
  text-align: center;
}
.pane-footer:has(.footer__common) .block-footerst {
  justify-content: center;
}

/* swiper */
.swiper .swiper-pagination {
  bottom: 0;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #cccccc;
  margin: 0 8px;
}
.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #C6B493;
}
.wrapper .swiper-button-prev {
  left: 0;
  width: 40px;
  height: 40px;
  background: #B9B9B9 url(../../img/usr/common/arrow_l03.png) center no-repeat;
}
.wrapper .swiper-button-next {
  right: 0;
  width: 40px;
  height: 40px;
  background: #B9B9B9 url(../../img/usr/common/arrow_r03.png) center no-repeat;
}
.wrapper .swiper-button-prev svg,
.wrapper .swiper-button-next svg {
  display: none!important;
}
body:has(.alorb) .wrapper .swiper-button-prev,
body:has(.alorb) .wrapper .swiper-button-next {
  background-color: #DDCFB6;
}
.wrapper .swiper-button-prev::after,
.wrapper .swiper-button-next::after {
  display: none;
}
.wrapper .swiper-button_ar-prev::before,
.wrapper .swiper-button_ar-next::before {
  content:"";
  width: 18px;
  height: 18px;
  border-top: solid 2px #BFBFBF;
  border-right: solid 2px #BFBFBF;
  transform: rotate(45deg);
  position: absolute;
  right: calc(50% - 4px);
  top: calc(50% - 9px);
}
.wrapper .swiper-button_ar-prev::before {
  transform: rotate(225deg);
  right: calc(50% - 10px);
}

.wrapper .swiper-button_ar-prev,.wrapper .swiper-button_ar-next {
  top: 120px;
  width: 40px;
  height: 40px;
  background: none!important;
}

div[class$="--customer-name"] {
  margin-bottom: 20px;
}

