@charset "UTF-8";
.c-basic-title01 {
  color: #a5915a;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: clamp(27px, 4.2vw, 42px);
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .c-basic-title01 {
    font-size: 42px;
  }
}
.c-basic-title01 .reduce {
  color: #505050;
  font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "Noto Sans JP", "IBM Plex Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 45%;
  display: block;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  margin-top: 0.2rem;
}
@media screen and (min-width: 992px) {
  .c-basic-title01 .reduce {
    font-size: 35%;
  }
}

.c-button-round--black {
  background-color: #1f1e21;
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  text-align: center;
  white-space: nowrap;
  word-break: keep-all;
}
.c-button-round--black::after {
  background-image: url(../images/common/icon_right_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: "";
  display: block;
  height: 11px;
  width: 9px;
  margin: 0 0 0 5px;
}
.c-button-round--black:hover {
  background-color: #4d4d4e;
}
.c-button-round--black.comingsoon {
  background-color: #d4d4d4;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0);
  color: #fcfcfc;
  pointer-events: none;
  cursor: default;
}
.c-button-round--gold {
  background-color: #a5915a;
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  text-align: center;
  white-space: nowrap;
  word-break: keep-all;
}
.c-button-round--gold::after {
  background-image: url(../images/common/icon_right_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: "";
  display: block;
  height: 11px;
  width: 9px;
  margin: 0 0 0 5px;
}
.c-button-round--gold:hover {
  background-color: #dbcb9c;
}

/* =========================================================
pagination
========================================================= */
.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: clamp(13px, 1.5vw, 15px);
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .c-pagination {
    font-size: 15px;
  }
}
.c-pagination a {
  color: #222;
  text-decoration: none;
}
.c-pagination a:hover {
  text-decoration: underline;
}
.c-pagination .current {
  color: #a5915a;
  cursor: default;
  font-weight: bold;
  text-decoration: underline;
}
.c-pagination .dots {
  color: #777;
  padding: 0 4px;
  cursor: default;
}

.c-breadcrumbs--wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 4%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.c-breadcrumbs--wrap::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 992px) {
  .c-breadcrumbs--wrap {
    padding: 2px 2%;
  }
}
.c-breadcrumbs-list {
  display: flex;
  width: 200vw;
}
@media screen and (min-width: 430px) {
  .c-breadcrumbs-list {
    width: auto;
  }
}
.c-breadcrumbs-list > li {
  margin-right: 0.5rem;
  padding-right: 1rem;
}
.c-breadcrumbs-list > li:not(:last-of-type) {
  position: relative;
  display: inline-block;
}
.c-breadcrumbs-list > li:not(:last-of-type)::before, .c-breadcrumbs-list > li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 5px;
  height: 1px;
  border-radius: 9999px;
  background-color: #a1a1a1;
  transform-origin: calc(100% - 0.5px) 50%;
}
.c-breadcrumbs-list > li:not(:last-of-type)::before {
  transform: rotate(45deg);
}
.c-breadcrumbs-list > li:not(:last-of-type)::after {
  transform: rotate(-45deg);
}
.c-breadcrumbs-list > li a,
.c-breadcrumbs-list > li .current {
  color: #a1a1a1;
  font-size: clamp(10px, 1.2vw, 12px);
}
@media screen and (min-width: 992px) {
  .c-breadcrumbs-list > li a,
.c-breadcrumbs-list > li .current {
    font-size: 12px;
  }
}
.c-breadcrumbs-list > li a {
  text-decoration: underline;
}
.c-breadcrumbs-list > li a:hover {
  text-decoration: none;
}

.c-results {
  background-color: #f6f6f6;
}
.c-results--wrap {
  margin: auto;
  max-width: 1200px;
  padding: 90px 2%;
}
@media screen and (min-width: 992px) {
  .c-results--wrap {
    padding: 90px 0;
  }
}
.c-results-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .c-results-list {
    justify-content: flex-start;
  }
}
.c-results-list > li {
  margin: 0 1% 20px;
  max-width: 220px;
  width: 31.3333333333%;
}
@media screen and (min-width: 768px) {
  .c-results-list > li {
    margin: 0 1%;
    width: 18%;
  }
}
@media screen and (min-width: 768px) {
  .c-results-list > li:nth-child(-n+10) {
    margin-bottom: 30px;
  }
}
.c-results-list > li.no-data {
  max-width: none;
  padding: 50px;
  text-align: center;
  width: 100%;
}
.c-results-list .image {
  aspect-ratio: 216/162.5;
  background-color: #f6f6f6;
  border: 1px solid #9c9e9c;
  text-align: center;
}
.c-results-list .image img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.c-results-list .info {
  background-color: #c7bfa9;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  font-size: clamp(10px, 1.2vw, 12px);
  line-height: 1;
  padding: 1px 4px;
  text-align: right;
  word-break: break-all;
}
@media screen and (min-width: 992px) {
  .c-results-list .info {
    font-size: 12px;
  }
}
.c-results-list .name {
  font-size: clamp(13px, 1.6vw, 16px);
  margin-top: 8px;
  word-break: break-all;
}
@media screen and (min-width: 992px) {
  .c-results-list .name {
    font-size: 16px;
  }
}
.c-results-list .price {
  line-height: 1;
  margin-top: 8px;
  padding-top: 6px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-results-list .price {
    margin-top: 15px;
    padding-top: 13px;
  }
}
.c-results-list .price::before {
  background-color: #d4d4d4;
  content: "";
  display: block;
  height: 2px;
  width: 35%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.c-results-list .price .title {
  display: block;
  font-size: clamp(11px, 1.6vw, 16px);
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .c-results-list .price .title {
    font-size: 16px;
  }
}
.c-results-list .price .amount {
  color: #aa0000;
  display: block;
  font-size: clamp(18px, 3vw, 30px);
  font-weight: bold;
  letter-spacing: 0.1rem;
  margin-top: 0.3rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .c-results-list .price .amount {
    font-size: 30px;
  }
}
.c-results-list .price .amount .yen {
  font-size: 70%;
}
.c-results-btn {
  margin: 40px auto 0;
  max-width: 350px;
  min-width: 200px;
  width: 78%;
}
@media screen and (min-width: 768px) {
  .c-results-btn {
    width: auto;
  }
}
.c-results-btn a {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 2rem 1.5rem;
}
@media screen and (min-width: 992px) {
  .c-results-btn a {
    font-size: 16px;
  }
}

.c-brandlist--wrap {
  margin: auto;
  max-width: 1200px;
  padding: 45px 2%;
}
@media screen and (min-width: 992px) {
  .c-brandlist--wrap {
    padding: 90px 0;
  }
}
.c-brandlist-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.c-brandlist-list > li {
  max-width: 170px;
  padding: 0 10px;
  width: 33.3333333333%;
}
@media screen and (min-width: 768px) {
  .c-brandlist-list > li {
    width: 25%;
  }
}
@media screen and (min-width: 992px) {
  .c-brandlist-list > li {
    width: 16.6666666667%;
  }
}
.c-brandlist-list > li a {
  pointer-events: none;
  cursor: default;
}
.c-brandlist-list .image {
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.c-brandlist-list .name {
  font-size: clamp(14px, 1.6vw, 16px);
  margin-top: 8px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .c-brandlist-list .name {
    font-size: 16px;
  }
}
.c-brandlist-btn {
  margin: 40px auto 0;
  max-width: 350px;
  min-width: 200px;
  width: 78%;
}
@media screen and (min-width: 768px) {
  .c-brandlist-btn {
    width: auto;
  }
}
.c-brandlist-btn a,
.c-brandlist-btn .comingsoon {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 2rem 1.5rem;
}
@media screen and (min-width: 992px) {
  .c-brandlist-btn a,
.c-brandlist-btn .comingsoon {
    font-size: 16px;
  }
}

.c-itemlist--wrap {
  margin: auto;
  max-width: 1026px;
  padding: 45px 2%;
}
@media screen and (min-width: 992px) {
  .c-itemlist--wrap {
    padding: 90px 0;
  }
}
.c-itemlist-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.c-itemlist-list > li {
  max-width: 240px;
  margin: 0 0.8% 12px;
  width: 31.7333333333%;
}
@media screen and (min-width: 768px) {
  .c-itemlist-list > li {
    margin: 0 0.8%;
    width: 23.4%;
  }
}
@media screen and (min-width: 992px) {
  .c-itemlist-list > li:nth-child(-n+5) {
    margin-bottom: 30px;
  }
}
.c-itemlist-list > li:last-of-type {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-itemlist-list > li:last-of-type {
    display: block;
  }
}
.c-itemlist-list > li:hover .image {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  opacity: 0.7;
}
.c-itemlist-list > li.comingsoon .image {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0);
  border: 2px solid #eeeeee;
  opacity: 0.6;
}
.c-itemlist-list > li.comingsoon .name {
  color: #c5c5c5;
}
.c-itemlist-list .image {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  border-radius: 5px;
}
.c-itemlist-list .name {
  font-size: clamp(13px, 1.7vw, 17px);
  font-weight: bold;
  margin-top: 8px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .c-itemlist-list .name {
    margin-top: 14px;
    font-size: 17px;
  }
}
.c-itemlist-list .name .reduce {
  font-size: 80%;
  display: block;
  margin-top: 0.4rem;
}
.c-itemlist-btn {
  margin: 40px auto 0;
  max-width: 350px;
  min-width: 200px;
  width: 78%;
}
@media screen and (min-width: 768px) {
  .c-itemlist-btn {
    width: auto;
  }
}
.c-itemlist-btn a,
.c-itemlist-btn .nolink {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 2rem 1.5rem;
}
@media screen and (min-width: 992px) {
  .c-itemlist-btn a,
.c-itemlist-btn .nolink {
    font-size: 16px;
  }
}

.c-brandlist + .c-itemlist .c-itemlist--wrap {
  border-top: 2px solid #ccc;
}

.c-method {
  border-top: 1px solid #666666;
}
.c-method--wrap {
  margin: auto;
  max-width: 1200px;
  padding: 45px 2%;
}
@media screen and (min-width: 992px) {
  .c-method--wrap {
    padding: 90px 0;
  }
}
.c-method-list {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 620px) {
  .c-method-list {
    justify-content: center;
  }
}
.c-method-list > li {
  margin: 0 1%;
  max-width: 370px;
  width: 48%;
}
@media screen and (min-width: 620px) {
  .c-method-list > li {
    width: 31.3333333333%;
  }
}
.c-method-list > li:nth-child(-n+3) {
  margin-bottom: 60px;
}
.c-method-list > li.line .title {
  color: #07b53b;
}
.c-method-list > li.line .btn {
  background-color: #07b53b;
}
.c-method-list > li.line .btn:hover {
  background-color: #3fe43f;
}
.c-method-list > li.tel .title {
  color: #07b3b5;
}
.c-method-list > li.tel .btn {
  background-color: #07b3b5;
}
.c-method-list > li.tel .btn:hover {
  background-color: #64d8da;
}
.c-method-list > li.mail .title {
  color: #b5af07;
}
.c-method-list > li.mail .btn {
  background-color: #b5af07;
}
.c-method-list > li.mail .btn:hover {
  background-color: #ddd852;
}
.c-method-list > li.shop .title {
  color: #b57e07;
}
.c-method-list > li.shop .btn {
  background-color: #b57e07;
}
.c-method-list > li.shop .btn:hover {
  background-color: #e2b450;
}
.c-method-list > li.visit .title {
  color: #b53c07;
}
.c-method-list > li.visit .btn {
  background-color: #b53c07;
}
.c-method-list > li.visit .btn:hover {
  background-color: #d4602f;
}
.c-method-list figure figcaption {
  flex-grow: 1;
}
.c-method-list .title {
  font-size: clamp(22px, 2.6vw, 26px);
  font-weight: bold;
  letter-spacing: 0.1rem;
  margin-top: 10px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .c-method-list .title {
    font-size: 26px;
  }
}
.c-method-list .title .reduce {
  color: #505050;
  font-size: 45%;
  display: block;
  margin-bottom: 0.3rem;
}
@media screen and (min-width: 620px) {
  .c-method-list .title .reduce {
    font-size: 60%;
    margin-bottom: 0;
  }
}
.c-method-list .text {
  font-size: clamp(14px, 1.5vw, 15px);
  min-height: 6.2rem;
  line-height: 1.6;
  margin-top: 10px;
  padding: 0 0.8rem;
}
@media screen and (min-width: 992px) {
  .c-method-list .text {
    font-size: 15px;
  }
}
.c-method-list .btn {
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: bold;
  letter-spacing: 0.1rem;
  margin: 15px auto 0;
  padding: 0.9rem;
  width: 95%;
}
@media screen and (min-width: 620px) {
  .c-method-list .btn {
    width: 70%;
  }
}
@media screen and (min-width: 992px) {
  .c-method-list .btn {
    font-size: 15px;
  }
}
.c-method-list .time {
  display: block;
  font-size: clamp(12px, 1.4vw, 14px);
  margin-top: 5px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .c-method-list .time {
    font-size: 14px;
  }
}

.c-cta {
  background-color: #f6f6f6;
}
.c-cta--wrap {
  margin: auto;
  max-width: 1150px;
  padding: 45px 2%;
}
@media screen and (min-width: 768px) {
  .c-cta--wrap {
    padding: 90px 0;
  }
}
.c-cta-list {
  display: flex;
  flex-wrap: wrap;
  margin: 40px auto 0;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .c-cta-list {
    max-width: none;
  }
}
.c-cta-list li.line, .c-cta-list li.tel, .c-cta-list li.mail {
  margin: 0 0.5% 6px;
  width: 49%;
}
@media screen and (min-width: 768px) {
  .c-cta-list li.line, .c-cta-list li.tel, .c-cta-list li.mail {
    margin: 0 0.5%;
    width: 32.3333333333%;
  }
}
.c-cta-list li.shop, .c-cta-list li.visit {
  margin: 0 0.5% 6px;
  width: 49%;
}
@media screen and (min-width: 768px) {
  .c-cta-list li.shop, .c-cta-list li.visit {
    margin: 10px 0.5% 0;
  }
}
.c-cta-list li.line a {
  background-color: #00b900;
}
.c-cta-list li.line a::before {
  background-image: url(../images/common/icon_line.svg);
}
.c-cta-list li.line a:hover {
  background-color: #3fe43f;
}
.c-cta-list li.tel a::before {
  background-image: url(../images/common/icon_tel_round.svg);
}
.c-cta-list li.mail a::before {
  background-image: url(../images/common/icon_mail_round.svg);
}
.c-cta-list li.shop a::before, .c-cta-list li.shop label::before {
  background-image: url(../images/common/icon_shop_round.svg);
}
.c-cta-list li.visit a::before, .c-cta-list li.visit label::before {
  background-image: url(../images/common/icon_visit_round.svg);
}
.c-cta-list li a,
.c-cta-list li label {
  background-color: #1f1e21;
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 3.8709677419vw;
  font-weight: bold;
  height: 100%;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  padding: 1.2rem 1rem;
  transition: 0.4s;
  white-space: nowrap;
  word-break: keep-all;
}
@media screen and (min-width: 620px) {
  .c-cta-list li a,
.c-cta-list li label {
    font-size: 3.125vw;
    padding: 1.2rem 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .c-cta-list li a,
.c-cta-list li label {
    font-size: clamp(18px, 2.4vw, 24px);
  }
}
@media screen and (min-width: 992px) {
  .c-cta-list li a,
.c-cta-list li label {
    font-size: 24px;
    padding: 1.8rem 2.5rem;
  }
}
.c-cta-list li a:hover,
.c-cta-list li label:hover {
  background-color: #4d4d4e;
}
.c-cta-list li a::before,
.c-cta-list li label::before {
  aspect-ratio: 1/1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 999px;
  content: "";
  display: block;
  margin-right: 4%;
  width: 30px;
}
@media screen and (min-width: 768px) {
  .c-cta-list li a::before,
.c-cta-list li label::before {
    width: 6.6666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .c-cta-list li a::before,
.c-cta-list li label::before {
    width: 80px;
  }
}
.c-cta-list li a .reduce,
.c-cta-list li label .reduce {
  display: none;
  font-size: 60%;
  margin-bottom: 0.4rem;
}
@media screen and (min-width: 768px) {
  .c-cta-list li a .reduce,
.c-cta-list li label .reduce {
    display: block;
  }
}
.c-cta-list li a .text,
.c-cta-list li label .text {
  color: #ffffff;
  width: calc(100% - 40px);
}
@media screen and (min-width: 768px) {
  .c-cta-list li a .text,
.c-cta-list li label .text {
    width: 6.6666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .c-cta-list li a .text,
.c-cta-list li label .text {
    width: calc(100% - 80px);
  }
}
.c-cta-list li a time,
.c-cta-list li label time {
  display: block;
  font-size: 53%;
  margin-top: 0.1rem;
}
@media screen and (min-width: 768px) {
  .c-cta-list li a time,
.c-cta-list li label time {
    font-size: 58%;
    margin-top: 0.4rem;
  }
}

/* =========================================================
results
========================================================= */
.p-results-list--wrap {
  margin: auto;
  max-width: 1200px;
  padding: 60px 4%;
}
@media screen and (min-width: 992px) {
  .p-results-list--wrap {
    padding: 90px 2%;
  }
}
.p-results-list-filter {
  background-color: #f6f6f6;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 10px 20px;
}
@media screen and (min-width: 620px) {
  .p-results-list-filter {
    justify-content: center;
  }
}
@media screen and (min-width: 992px) {
  .p-results-list-filter {
    justify-content: flex-start;
  }
}
.p-results-list-filter > label {
  margin: 4px 1%;
  width: 48%;
}
@media screen and (min-width: 620px) {
  .p-results-list-filter > label {
    margin: 4px 3px;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-results-list-filter > label {
    margin: 8px 6px;
  }
}
.p-results-list-filter .screen-reader-text {
  display: block;
  font-size: clamp(12px, 1.4vw, 14px);
  width: 120px;
}
@media screen and (min-width: 992px) {
  .p-results-list-filter .screen-reader-text {
    font-size: 14px;
  }
}
.p-results-list-filter select,
.p-results-list-filter input[type=text] {
  box-sizing: border-box;
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 1.3;
  padding: 0.4rem 1rem;
  width: 100%;
}
@media screen and (min-width: 620px) {
  .p-results-list-filter select,
.p-results-list-filter input[type=text] {
    padding: 0.7rem 1rem;
    min-width: 142px;
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-results-list-filter select,
.p-results-list-filter input[type=text] {
    font-size: 14px;
  }
}
@media screen and (min-width: 620px) {
  .p-results-list-filter input[type=text] {
    min-width: 280px;
  }
}
@media screen and (min-width: 992px) {
  .p-results-list-filter input[type=text] {
    min-width: 220px;
  }
}
.p-results-list-filter button {
  background-color: #1f1e21;
  border-radius: 5px;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: clamp(12px, 1.4vw, 14px);
  height: 100%;
  margin: auto 0 4px 10px;
  padding: 7px 16px;
}
@media screen and (min-width: 620px) {
  .p-results-list-filter button {
    padding: 10px 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-results-list-filter button {
    margin: auto 0 8px 10px;
  }
}
@media screen and (min-width: 992px) {
  .p-results-list-filter button {
    font-size: 14px;
  }
}
.p-results-list-filter button:hover {
  opacity: 0.85;
}
.p-results-list-filter--reset {
  border-radius: 5px;
  border: none;
  color: #505050;
  cursor: pointer;
  display: block;
  font-size: clamp(13px, 1.4vw, 14px);
  height: 100%;
  margin: auto 0 4px 10px;
  padding: 10px 0px;
  text-decoration: underline;
}
@media screen and (min-width: 620px) {
  .p-results-list-filter--reset {
    margin: auto 0 8px 10px;
    padding: 10px 16px;
  }
}
@media screen and (min-width: 992px) {
  .p-results-list-filter--reset {
    margin: auto 0 auto 10px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .p-results-list-filter--reset {
    margin: auto 0 auto auto;
  }
}
.p-results-list-filter--reset:hover {
  opacity: 0.85;
}
.p-results-list_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 7px;
  margin-top: 40px;
}
@media screen and (min-width: 430px) {
  .p-results-list_cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-results-list_cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .p-results-list_cards {
    grid-template-columns: repeat(5, 1fr);
  }
}
.p-results-list_cards > li {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.p-results-list_cards .image {
  position: relative;
  padding-top: 75%;
  background: #f0f0f0;
}
.p-results-list_cards .image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-results-list_cards figure {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-results-list_cards figure figcaption {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.p-results-list_cards .info {
  background-color: #c7bfa9;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  line-height: 1;
  padding: 0.3rem 4px;
}
@media screen and (min-width: 430px) {
  .p-results-list_cards .info {
    font-size: clamp(10px, 1.3vw, 13px);
    padding: 0.3rem 10px;
  }
}
@media screen and (min-width: 992px) {
  .p-results-list_cards .info {
    font-size: 13px;
  }
}
.p-results-list_cards .name {
  flex-grow: 1;
  font-size: 13px;
  flex-grow: 1;
  line-height: 1.4;
  padding: 0.6rem 4px;
}
@media screen and (min-width: 430px) {
  .p-results-list_cards .name {
    font-size: clamp(13px, 1.4vw, 14px);
    padding: 0.6rem 10px;
  }
}
@media screen and (min-width: 992px) {
  .p-results-list_cards .name {
    font-size: 14px;
  }
}
.p-results-list_cards .price {
  padding: 6px 4px 8px;
}
@media screen and (min-width: 430px) {
  .p-results-list_cards .price {
    padding: 4px 10px 10px;
  }
}
.p-results-list_cards .price .title {
  display: block;
  color: #666;
  font-size: clamp(10px, 1.4vw, 12px);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.2rem;
}
@media screen and (min-width: 992px) {
  .p-results-list_cards .price .title {
    font-size: 12px;
  }
}
.p-results-list_cards .price .amount {
  color: #aa0000;
  font-size: clamp(17px, 3.2vw, 24px);
  font-weight: bold;
  letter-spacing: 0.07rem;
}
@media screen and (min-width: 768px) {
  .p-results-list_cards .price .amount {
    font-size: clamp(17px, 2.4vw, 24px);
  }
}
@media screen and (min-width: 992px) {
  .p-results-list_cards .price .amount {
    font-size: 24px;
  }
}
.p-results-list_cards .price .yen {
  margin-left: 2px;
  font-size: 12px;
}
.p-results-list_cards .no-data {
  grid-column: 1/-1;
  padding: 40px 0;
  text-align: center;
  color: #666;
}
.p-results-detail--wrap {
  margin: auto;
  max-width: 1200px;
  padding: 20px 4%;
}
@media screen and (min-width: 992px) {
  .p-results-detail--wrap {
    padding: 50px 2%;
  }
}
.p-results-detail_head .title {
  border-bottom: 1px solid #bdbdbd;
  line-height: 1.3;
  margin-bottom: 18px;
  padding-bottom: 9px;
}
.p-results-detail_head .meta {
  display: block;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 992px) {
  .p-results-detail_head .meta {
    font-size: 16px;
  }
}
.p-results-detail_head .name {
  color: #a5915a;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .p-results-detail_head .name {
    font-size: 30px;
  }
}
.p-results-detail_body figure {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  max-width: 400px;
}
@media screen and (min-width: 992px) {
  .p-results-detail_body figure {
    align-items: flex-start;
    flex-direction: row;
    max-width: none;
  }
}
.p-results-detail_body figure .image {
  margin-bottom: 15px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .p-results-detail_body figure .image {
    margin-bottom: 0;
    margin-right: 2%;
    width: 48%;
  }
}
.p-results-detail_body figure figcaption {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .p-results-detail_body figure figcaption {
    width: 50%;
  }
}
.p-results-detail_body figure figcaption .info-wrap {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
}
.p-results-detail_body figure figcaption .info-wrap:not(:first-of-type) {
  border-bottom: 1px solid #bdbdbd;
}
.p-results-detail_body figure figcaption .info-wrap.amount {
  background-color: #f1f1f1;
}
.p-results-detail_body figure figcaption .info-wrap.amount dt {
  font-size: clamp(13px, 1.5vw, 15px);
}
@media screen and (min-width: 992px) {
  .p-results-detail_body figure figcaption .info-wrap.amount dt {
    font-size: 15px;
  }
}
.p-results-detail_body figure figcaption .info-wrap.amount dd {
  color: #aa0000;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .p-results-detail_body figure figcaption .info-wrap.amount dd {
    font-size: 40px;
  }
}
.p-results-detail_body figure figcaption .info-wrap.amount dd .yen {
  font-size: 70%;
}
.p-results-detail_body figure figcaption .info-wrap dt {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: bold;
  width: 140px;
}
@media screen and (min-width: 992px) {
  .p-results-detail_body figure figcaption .info-wrap dt {
    font-size: 15px;
    width: 160px;
  }
}
.p-results-detail_body figure figcaption .info-wrap dd {
  font-size: clamp(18px, 2vw, 20px);
  width: calc(100% - 140px);
}
@media screen and (min-width: 992px) {
  .p-results-detail_body figure figcaption .info-wrap dd {
    font-size: 20px;
    width: calc(100% - 160px);
  }
}

.c-method {
  border-top: none;
}
/*# sourceMappingURL=style-results.css.map */