@charset "UTF-8";
html {
  display: flex;
  flex-direction: column;
  scroll-padding-top: 60px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  min-height: 1px;
}

footer {
  margin-top: auto;
}

html {
  overflow-y: scroll;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: #010101;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
body.js-no_scroll {
  overflow: hidden;
}
body.js-no_scroll:before {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
}
body:before {
  content: "";
  background-color: #f2ece3;
  background-image: url(../img/bodybg.png);
  position: fixed;
  top: -20vh;
  height: 100%;
  min-height: 200dvh;
  width: 100vw;
  will-change: transform;
  transform: translate3d(0, 0, -1px);
  z-index: -1;
}

body {
  position: relative;
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden; /* モーダル表示時のスクロール無効化 */
}

main {
  padding-top: 110px;
  background: url(../img/side_line_l.png) left top/32px auto repeat-y, url(../img/side_line_r.png) right top/32px auto repeat-y;
}
@media (max-width: 767px) {
  main {
    padding-top: 95px;
    background: none;
    border: 4px solid #C8B268;
  }
}
@media (max-width: 575px) {
  main {
    padding-top: 19vw;
  }
}

p {
  line-height: 1.6;
}

:focus,
button:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

h2 {
  display: block;
  color: #a98220;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 40px;
}
@media (max-width: 575px) {
  h2 {
    font-size: 14px;
  }
}
h2 img {
  height: 68px;
  width: auto;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  h2 img {
    max-height: 60px;
    height: 12vw;
    width: auto;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .container,
  .container-sm {
    max-width: 90%;
  }
}
.section-info {
  position: relative;
  padding: 40px;
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .section-info {
    margin: 0 auto 32px;
    max-width: 96%;
    padding: 28px 16px 24px;
  }
}
.section-info .whbg {
  padding: 10px 0;
  z-index: 1;
  position: relative;
}
.section-info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 0;
  clip-path: polygon(60px 0, calc(100% - 60px) 0, 100% 60px, 100% calc(100% - 60px), calc(100% - 60px) 100%, 60px 100%, 0 calc(100% - 60px), 0 60px);
}
@media (max-width: 767px) {
  .section-info::after {
    clip-path: polygon(40px 0, calc(100% - 40px) 0, 100% 40px, 100% calc(100% - 40px), calc(100% - 40px) 100%, 40px 100%, 0 calc(100% - 40px), 0 40px);
  }
}
.section-info .section-content {
  position: relative;
  z-index: 3;
}

.corner {
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url("../img/corner.png");
  background-size: 40px 40px;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (max-width: 767px) {
  .corner {
    width: 28px;
    height: 28px;
    background-size: 28px 28px;
  }
}
.corner.tl {
  top: 0;
  left: 0;
}
.corner.tr {
  top: 0;
  right: 0;
  transform: scaleX(-1);
}
.corner.bl {
  bottom: 0;
  left: 0;
  transform: scaleY(-1);
}
.corner.br {
  bottom: 0;
  right: 0;
  transform: scale(-1);
}

.line-edge {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.line-edge.top {
  top: 0;
  left: 40px;
  right: 40px;
  height: 40px;
  background-image: url("../img/corner-line.png");
  background-size: 40px 40px;
  background-repeat: repeat-x;
}
@media (max-width: 767px) {
  .line-edge.top {
    top: 0;
    left: 28px;
    right: 28px;
    height: 28px;
    background-size: 28px 28px;
  }
}
.line-edge.bottom {
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 40px;
  background-image: url("../img/corner-line.png");
  background-size: 40px 40px;
  background-repeat: repeat-x;
  transform: scaleY(-1);
}
@media (max-width: 767px) {
  .line-edge.bottom {
    bottom: 0;
    left: 28px;
    right: 28px;
    height: 28px;
    background-size: 28px 28px;
  }
}
.line-edge.left {
  left: 0;
  top: 40px;
  bottom: 40px;
  width: 40px;
  background-image: url("../img/corner-line-v.png");
  background-size: 40px 40px;
  background-repeat: repeat-y;
}
@media (max-width: 767px) {
  .line-edge.left {
    top: 28px;
    bottom: 28px;
    width: 28px;
    background-size: 28px 28px;
  }
}
.line-edge.right {
  right: 0;
  top: 40px;
  bottom: 40px;
  width: 40px;
  background-image: url("../img/corner-line-v.png");
  background-size: 40px 40px;
  background-repeat: repeat-y;
  transform: scaleX(-1);
}
@media (max-width: 767px) {
  .line-edge.right {
    top: 28px;
    bottom: 28px;
    width: 28px;
    background-size: 28px 28px;
  }
}

.section-sort {
  background-color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid #ddbb47;
  border-bottom: 1px solid #ddbb47;
  padding: 40px 32px 20px;
  margin: 32px auto 60px;
  position: relative;
  width: 92%;
}
@media (max-width: 767px) {
  .section-sort {
    padding: 24px 12px 8px;
  }
}
.section-sort::before, .section-sort::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 50%;
  max-width: 300px;
  aspect-ratio: 6/1;
  background: url("../img/search-top.png") no-repeat center/contain;
  pointer-events: none;
}
.section-sort::before {
  top: 0;
  transform: translate(-50%, -70%);
}
.section-sort::after {
  bottom: 0;
  transform: translate(-50%, 70%) scale(-1, -1);
}
.section-sort .dropdown-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 44px 0 32px;
}
@media (max-width: 991px) {
  .section-sort .dropdown-wrap {
    margin: 25px 0;
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .section-sort .dropdown-wrap {
    position: relative;
  }
}
@media (max-width: 575px) {
  .section-sort .dropdown-wrap:before, .section-sort .dropdown-wrap:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    line-height: 1;
    color: #010101;
    z-index: 1;
    position: absolute;
    right: 35px;
    transform: translateY(-50%);
    pointer-events: none;
  }
}
@media (max-width: 575px) {
  .section-sort .dropdown-wrap:before, .section-sort .dropdown-wrap:after {
    right: 15px;
  }
}
@media (max-width: 575px) {
  .section-sort .dropdown-wrap:before {
    top: 22px;
  }
}
@media (max-width: 575px) {
  .section-sort .dropdown-wrap:after {
    bottom: 8px;
  }
}
.section-sort .dropdown-wrap select {
  width: calc((100% - 24px) / 2);
  max-width: 480px;
  padding: 12px;
  background-color: #fff;
  color: #5b4717;
  border: 1px solid #5b4717;
}
@media (max-width: 991px) {
  .section-sort .dropdown-wrap select {
    width: 100%;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .section-sort .dropdown-wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
}
.section-sort .js-sort-clear {
  padding: 8px 12px;
  color: #fff;
  background: #558bbe;
  font-size: 18px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .section-sort .js-sort-clear {
    font-size: 14px;
  }
}

.hdg-sort {
  text-align: center;
  border-bottom: 1px solid #010101;
  padding-bottom: 12px;
}
@media (max-width: 767px) {
  .hdg-sort {
    font-size: 24px;
  }
}

.form-wrap {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .form-wrap {
    padding: 12px 0 72px;
  }
}

.section-item {
  background-color: #fff;
  margin: 40px 0;
  padding: 40px 20px;
  border: 1px solid #ddbb47;
}
@media (max-width: 767px) {
  .section-item {
    padding: 20px 12px;
    margin: 12px 0;
  }
}
.section-item .limit-item {
  border: 1px solid #a98220;
  color: #a98220;
  background-color: #fffcf6;
  padding: 4px 8px;
  display: inline-block;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-item .limit-item {
    margin: 12px 0;
  }
}
.section-item .js-sold + span + .soldTxt {
  background-color: #C7161B;
  color: #fff;
  display: block;
  width: 4em;
  padding: 0 8px;
  margin: 4px auto;
  letter-spacing: 0.2em;
  font-size: 14px;
  text-align: center;
}
.section-item select {
  margin-right: 8px;
  padding: 2px 8px;
  color: #333;
}
@media (max-width: 767px) {
  .section-item select {
    margin-left: 8px;
  }
}

#anchor-cart {
  padding: 40px;
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 575px) {
  #anchor-cart {
    margin: 0 auto 32px;
    padding: 28px 16px 24px;
  }
}
#anchor-cart .whbg {
  padding: 10px 0;
  z-index: 1;
  position: relative;
}
#anchor-cart::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 0;
  clip-path: polygon(60px 0, calc(100% - 60px) 0, 100% 60px, 100% calc(100% - 60px), calc(100% - 60px) 100%, 60px 100%, 0 calc(100% - 60px), 0 60px);
}
@media (max-width: 767px) {
  #anchor-cart::after {
    clip-path: polygon(40px 0, calc(100% - 40px) 0, 100% 40px, 100% calc(100% - 40px), calc(100% - 40px) 100%, 40px 100%, 0 calc(100% - 40px), 0 40px);
  }
}

:root {
  scroll-behavior: auto !important;
}

@media (width < 768px) {
  select {
    font-size: 1rem;
  }
}
header .img-logo {
  display: block;
  width: 18vw;
  max-width: 94px;
}

nav.navbar {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  padding: 8px 0;
  max-height: 100vh;
  background-color: rgba(255, 255, 255, 0.96);
}
@media (max-width: 767px) {
  nav.navbar .container {
    padding: 0 8px;
  }
}
nav.navbar button.btn.btn-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #010101;
  border: none;
  text-decoration: none;
  font-size: 14px;
}
@media (max-width: 575px) {
  nav.navbar button.btn.btn-link {
    margin-right: 0;
  }
}
nav.navbar button.btn.btn-link::before {
  content: "MENU";
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: black;
}
nav.navbar button.btn.btn-link:focus {
  outline: none;
  box-shadow: none;
}
nav.navbar button.btn.btn-link .navbar-toggler-icon {
  width: 35px;
  height: 35px;
  margin-top: 10px;
}
nav.navbar .modal-dialog {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background-color: #fff;
}
nav.navbar .modal-header {
  border-bottom: none;
  justify-content: flex-end;
  padding: 40px 20px 0;
}
@media (max-width: 575px) {
  nav.navbar .modal-header {
    padding: 35px 18px 0;
  }
}
nav.navbar .modal-header .btn-close {
  position: relative;
  border: none;
  font-size: 20px;
}
@media (max-width: 575px) {
  nav.navbar .modal-header .btn-close {
    margin-right: 0;
    font-size: 18px;
  }
}
nav.navbar .modal-header .btn-close::before {
  display: block;
  content: "CLOSE";
  font-size: 12px;
  line-height: 1;
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
}
nav.navbar .modal-header .btn-close:focus {
  outline: none;
  box-shadow: none;
}
nav.navbar .btn-anchor a {
  padding: 12px 32px;
  background-image: linear-gradient(90deg, #c29f4a, #E7D688 50%, #c29f4a);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  nav.navbar .btn-anchor a {
    padding: 10px;
    line-height: 1;
  }
}
nav.navbar .btn-anchor a:before {
  content: "";
  display: block;
  background-image: url(../img/search.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  nav.navbar .btn-anchor a:before {
    width: 20px;
    height: 20px;
  }
}
nav.navbar .modal-body {
  padding: 20px 0;
  list-style-type: none;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 1200px;
  max-width: 96%;
  margin: 0 auto;
}
nav.navbar .modal-body .nav-item {
  width: 50%;
  padding: 0 8px;
}
@media (max-width: 767px) {
  nav.navbar .modal-body .nav-item {
    width: 100%;
  }
}
nav.navbar .modal-body .nav-link {
  border-bottom: 1px solid #ccc;
  padding: 12px;
  text-decoration: none;
  color: #010101;
  height: 100%;
  display: flex;
  align-items: center;
}

.modal-backdrop {
  z-index: 1;
}

footer {
  background-image: linear-gradient(90deg, #c29f4a, #e9d98b 50%, #c29f4a);
  padding: 12px;
}
footer a img {
  width: 80px;
}
@media (max-width: 575px) {
  footer a img {
    width: 50px;
  }
}
footer .link-pageup {
  position: fixed;
  z-index: 1;
  right: 40px;
  bottom: 20px;
  font-size: 40px;
  color: #010101;
  text-decoration: none;
}
@media (max-width: 991px) {
  footer .link-pageup {
    right: 8px;
    bottom: 12px;
  }
}
@media (hover) {
  footer .link-pageup:hover {
    color: #666666;
  }
}
footer .link-pageup i {
  display: block;
}
footer .copyright {
  display: block;
  text-align: center;
  color: #fff;
}

h1.hdg-title {
  margin: 0px 0 40px;
}
h1.hdg-title .kv-img img {
  display: block;
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  h1.hdg-title .kv-img img {
    width: 100%;
    padding-bottom: 0px;
  }
}

.section-item .hdg-item {
  font-size: 24px;
  color: #a98220;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(90deg, #a07633, #ddbb47 25%, #ffefc7 50%, #ddbb47 76%, #a07633 98%);
     border-image: linear-gradient(90deg, #a07633, #ddbb47 25%, #ffefc7 50%, #ddbb47 76%, #a07633 98%);
  border-image-slice: 1;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-item .hdg-item {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.list-icon {
  list-style-type: none;
  padding-left: 0;
}
.list-icon > li {
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 8px;
}
.list-icon > li span {
  color: #9b6b1c;
  position: absolute;
  left: 0;
}

.section-info .list-info {
  margin: 32px 0;
}
.section-info .list-info dt {
  margin-bottom: 8px;
  font-size: 18px;
  color: #8d5f18;
  border-bottom: 1px solid;
}
@media (max-width: 767px) {
  .section-info .list-info dt {
    font-size: 16px;
  }
}
.section-info .list-info dd {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-info .list-info dd {
    font-size: 14px;
  }
}
.section-info .list-info dd .list-icon {
  margin: 12px 0 0;
}
.section-info .list-info dd .method {
  display: table;
  border: 1px solid;
  padding: 2px 4px;
  color: #d3c186;
}

.section-item .list-item dt {
  margin-bottom: 4px;
  font-size: 18px;
  color: #8d5f18;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section-item .list-item dt {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.section-item .list-item dd {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-item .list-item dd {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.section-item .list-item .txt-description {
  margin-bottom: 12px;
}
.section-item .list-item .txt-catchphrase {
  font-size: 14px;
  margin: 20px 0 32px;
}
.section-item .list-item .txt-note-comment03 {
  margin: 32px 0 0;
}
.section-item .list-item .txt-note-comment01 {
  margin: 8px 0 20px;
}

.list-select {
  margin: 4px 4px 20px;
}
.list-select dt,
.list-select dd {
  font-size: 14px;
  text-align: center;
}
.list-select dt {
  margin-bottom: 4px;
}

a {
  text-decoration: underline;
  color: #9b6b1c;
  word-break: break-all;
}
@media (hover) {
  a:hover {
    text-decoration: none;
    opacity: 0.8;
    color: #9b6b1c;
  }
}
a.btn {
  text-decoration: none;
}

.btn-item {
  background-color: #b7994f;
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 8px;
  text-align: center;
  margin: 40px auto 0;
  border: none;
  width: 480px;
  max-width: 92%;
}
@media (max-width: 767px) {
  .btn-item {
    margin: 20px auto 0;
  }
}
.btn-item:after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  padding-left: 8px;
  font-size: 20px;
}
.btn-item:hover {
  color: #fff;
  text-decoration: none;
}
@media (hover) {
  .btn-item:hover {
    opacity: 0.7;
  }
}

.btn-cart {
  background-image: linear-gradient(90deg, #b7994f, #dccb7e 50%, #b7994f);
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 8px;
  width: 800px;
  max-width: 100%;
  text-align: center;
  margin: 20px auto 0;
  border: none;
}
@media (max-width: 575px) {
  .btn-cart {
    font-size: 4.5vw;
    letter-spacing: 0;
  }
}
.btn-cart:before {
  content: "\f07a";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  padding-right: 8px;
  font-size: 20px;
}
@media (max-width: 575px) {
  .btn-cart:before {
    font-size: 4vw;
  }
}
@media (hover) {
  .btn-cart:hover {
    opacity: 0.8;
    color: #fff;
  }
}