@charset "UTF-8";
/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  -webkit-box-shadow: 0 0 0 5px Canvas;
          box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

/* ROOT
--------------------------------------------------------- */
:root {
  --BK: #0d0d0d;
  --BL: #33629c;
  --DBL: #2c3b4e;
}

html {
  scroll-behavior: smooth;
}

html body {
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-style: normal;
  font-weight: normal;
  position: relative;
  color: var(--BK);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: #fff;
}
html body.hamburger-active {
  overflow: hidden;
}

/* フォント */
/* PC・SP出し分け */
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  vertical-align: top;
  width: 100%;
}

a {
  text-decoration: none;
  color: var(--DBL);
}

@media screen and (min-width: 769px) {
  a, button {
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  a:hover, button:hover {
    opacity: 0.7;
  }
}
/* inner */
/* .inner {
	margin: 0 auto;
	width: 1100px;
	min-width: 1000px
} */
.wrapper {
  position: relative;
}

main {
  position: relative;
  padding-top: 1px;
}

main .container {
  max-width: 1500px;
  padding: 0;
}

/* ---------------------------------------------------------
 　■ サイドカテゴリ
--------------------------------------------------------- */
.s-nav-wp {
  position: fixed;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 0;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.s-nav-wp.active {
  background: rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.s-nav-wp .s-nav-inner {
  position: relative;
  left: -400px;
  background: #fff;
  width: 350px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.s-nav-wp.active .s-nav-inner {
  left: 0;
}
.s-nav-wp .avatar_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px;
  border-bottom: 1px solid #EDF2F7;
  background: #fafbfc;
}
.s-nav-wp .avatar_name img {
  width: 45px;
  margin-right: 17px;
}
.s-nav-wp .avatar_name figcaption {
  font-size: 16px;
  font-weight: bold;
}
.s-nav-wp .ttl {
  font-size: 18px;
  font-weight: bold;
  padding: 15px 20px;
  border-bottom: 1px solid #EDF2F7;
}
.s-nav-wp .s-nav {
  padding: 0 23px 0 38px;
  line-height: 3.125;
  margin-top: 10px;
}
.s-nav-wp .s-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.s-nav-wp .s-nav li a::after {
  background-image: url(../../img/common/snav_arrow_rt.svg);
  background-position: 0px 0px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 11px;
  height: 14px;
  content: "";
  display: block;
}
.s-nav-wp .close-btn {
  position: absolute;
  left: 100%;
  top: 0px;
  width: 55px;
  height: 55px;
  cursor: pointer;
}
.s-nav-wp .close-btn::before, .s-nav-wp .close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 3px;
  background-color: white;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.s-nav-wp .close-btn::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.s-nav-wp .close-btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

/* ---------------------------------------------------------
 　■ Header
--------------------------------------------------------- */
header#header {
  position: relative;
}
header#header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  padding: 0 39px 0 21px;
  min-width: 1100px;
  max-width: 1140px;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header#header .logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
header#header .search-box {
  margin-left: auto;
  margin-right: 39px;
  width: 500px;
}
header#header .search-box .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header#header .search-box .select-wp {
  overflow: hidden;
  width: 115px;
  height: 45px;
  text-align: center;
  border: 1px solid #d9d9d9;
  background: #f2f2f2;
  border-right: none;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
}
header#header .search-box .select-wp::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 5px 0 5px;
  border-color: var(--BL) transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -4px;
  z-index: 0;
}
header#header .search-box .select-wp select {
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  z-index: 1;
  padding: 2px 24px 0px 15px;
  font-size: 14px;
}
header#header .search-box .input-wp {
  font-size: 16px;
  position: relative;
  font-size: 14px;
  width: 310px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
header#header .search-box .input-wp input + span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #999999;
  -webkit-transition: 256ms;
  transition: 256ms;
}
header#header .search-box .input-wp input + span::before {
  background-image: url(../../img/common/ico_search.svg);
  background-position: 0px 0px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 16px;
  content: "";
  display: block;
  margin: auto 10px auto 12px;
}
header#header .search-box .input-wp input {
  border: none;
  outline: none;
  background: none;
  padding: 10px 15px;
  border: 1px solid #E5E5E5;
  width: 100%;
  height: 45px;
}
header#header .search-box .input-wp input:focus + span {
  opacity: 0;
}
header#header .search-box .input-wp input:not(:-moz-placeholder-shown) + span {
  opacity: 0;
}
header#header .search-box .input-wp input:not(:-ms-input-placeholder) + span {
  opacity: 0;
}
header#header .search-box .input-wp input:not(:placeholder-shown) + span {
  opacity: 0;
}
header#header .search-box .submit-btn {
  width: 75px;
  height: 45px;
  border-radius: 0 5px 5px 0;
  color: #fff;
  background: var(--DBL);
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
header#header .line {
  width: 1px;
  height: 50px;
  background: #d9d9d9;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
header#header .account {
  margin-left: 23px;
  margin-right: 30px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap; /* 改行禁止 */
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
header#header .account::before {
  background-image: url(../../img/common/ico_avatar.svg);
  background-position: 0px 0px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
  content: "";
  display: block;
  margin-right: 13px;
}
header#header .cart {
  background-image: url(../../img/common/ico_cart.svg);
  background-position: 0px 0px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 26px;
  position: relative;
  width: 30px;
  height: 27px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
header#header .cart span {
  font-size: 18px;
  font-weight: bold;
  color: #d83e3f;
  background: #fff;
  position: absolute;
  left: calc(100% - 9px);
  top: -6px;
}
header#header .nav-g {
  background: #EFF3F7;
  border-top: 1px solid #E3EAF2;
  min-width: 1100px;
}
header#header .nav-g ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  min-width: 1100px;
  padding: 0;
}
header#header .nav-g ul li > a, header#header .nav-g ul li > span {
  height: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  color: var(--BK);
}
header#header .nav-g ul .category {
  position: relative;
  width: 173px;
  padding-left: 10px;
  border-left: 1px solid #dee5ee;
  border-right: 1px solid #dee5ee;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
}
header#header .nav-g ul .category::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 5px 0 5px;
  border-color: var(--BL) transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  z-index: 0;
}
header#header .nav-g ul .category .menu-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 4px;
  position: absolute;
  top: 18px;
  left: 20px;
}
header#header .nav-g ul .category .menu-button__line,
header#header .nav-g ul .category .menu-button::before,
header#header .nav-g ul .category .menu-button::after {
  content: "";
  width: 17px;
  height: 2px;
  background-color: var(--BL);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
header#header .nav-g ul .category .menu-button.is-opened .menu-button__line {
  opacity: 0;
}
header#header .nav-g ul .category .menu-button.is-opened::before {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
}
header#header .nav-g ul .category .menu-button.is-opened::after {
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
}
header#header .nav-g ul .repurchase {
  width: 130px;
}
header#header .nav-g ul .favorite {
  width: 150px;
}
header#header .nav-g ul .mypage {
  width: 145px;
}
header#header .nav-g ul .support {
  width: 180px;
}
header#header .nav-g ul .faq {
  width: 170px;
}
header#header .nav-g ul .logout {
  width: 180px;
}

header#header.checkout {
  border-bottom: 1px solid #edf1f5;
}
header#header.checkout .regi {
  margin: 0 auto;
  font-weight: bold;
}
header#header.checkout .regi .ttl {
  font-size: 26px;
}
header#header.checkout .regi .lnk {
  font-size: 18px;
}

/* ---------------------------------------------------------
 　■ page-top
--------------------------------------------------------- */
.page-top {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 5;
}
.page-top a {
  padding-bottom: 5px;
  width: 60px;
  height: 60px;
  border: 1px solid #d9d9d9;
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-top span {
  display: inline-block;
  width: 18.34px;
  height: 15.88px;
  background: var(--BL);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

/* ---------------------------------------------------------
 　■ Footer
--------------------------------------------------------- */
footer#footer {
  font-size: 14px;
  position: relative;
  border-top: 1px solid #e3eaf2;
  background-color: #fff;
  min-width: 1100px;
}
footer#footer .footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px 22px;
}
footer#footer .company-info {
  width: 63.64%;
}
footer#footer .company-info .ttl {
  padding: 35px 7px 13px;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #e3eaf2;
}
footer#footer .company-info dl {
  line-height: 1.9;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0 0;
  padding-left: 3px;
}
footer#footer .company-info dl dt {
  margin-bottom: 10px;
  width: 150px;
}
footer#footer .company-info dl dt:nth-of-type(1) {
  font-weight: bold;
}
footer#footer .company-info dl dd {
  margin-left: 0;
  margin-bottom: 10px;
  width: calc(100% - 150px);
}
footer#footer .company-info dl dd:nth-of-type(1) {
  font-weight: bold;
}
footer#footer .footer-nav {
  width: 30%;
  margin-top: 30px;
}
footer#footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2.938;
}
footer#footer .footer-nav ul li a {
  color: var(--BL);
  text-decoration: none;
  font-size: 16px;
}
footer#footer .footer-copyright {
  text-align: center;
  font-size: 14px;
  background: #f2f6fa;
  padding: 25px 0;
}

/* ---------------------------------------------------------
 　■ 最初から開いているモーダル
--------------------------------------------------------- */
.attention-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.attention-modal * {
  letter-spacing: 0.04em;
  padding-left: 0.5em;
}
.attention-modal .modal-content {
  background-color: #fff;
  margin: 60px auto;
  padding: 24px 30px 30px;
  max-width: 800px;
  position: relative;
  border-radius: 5px;
}
.attention-modal .modal-content > .ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.417;
  padding: 0 0 12px 5px;
  border-bottom: 1px solid #e3eaf2;
}
.attention-modal .modal-content > .date {
  font-size: 15px;
  color: #737373;
  text-align: right;
  margin: 15px 0 30px;
}
.attention-modal .modal-content > p {
  line-height: 1.875;
  margin: 1.9em 0;
  letter-spacing: 0.05em;
}
.attention-modal .modal-content .close-attention-btn-wp {
  position: relative;
  margin-top: 46px;
}
.attention-modal .modal-content .close-attention-btn-wp::before {
  position: absolute;
  top: 50%;
  height: 2px;
  content: "";
  display: block;
  background-color: #eff3f7;
  width: 100%;
}
.attention-modal .modal-content .close-attention-btn {
  font-family: sans-serif;
  background-color: #eff3f7;
  position: relative;
  border-radius: 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: 40px;
  margin: 0 auto;
}
.attention-modal .modal-content .close-icon {
  width: 21px;
  height: 21px;
  border: none;
  border-radius: 50%;
  background-color: var(--DBL);
  color: #fff;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 11px;
  right: 10px;
}

/* ---------------------------------------------------------
 　■ 共通
--------------------------------------------------------- */
/* === 星レーティング === */
.star_rating-wp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.star_rating {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
  color: #db6503;
  font-size: 15px;
  letter-spacing: 0.15em;
}

.star_rating:before {
  content: "☆☆☆☆☆";
}

.star_rating:after {
  content: "★★★★★";
}

.star_rating:after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #db6503;
}

.star_rating[data-rate="5"]:after {
  width: 100%;
}

.star_rating[data-rate="4.9"]:after {
  width: 92.5%;
}

.star_rating[data-rate="4.8"]:after {
  width: 92%;
}

.star_rating[data-rate="4.7"]:after {
  width: 91%;
}

.star_rating[data-rate="4.6"]:after {
  width: 90%;
}

.star_rating[data-rate="4.5"]:after {
  width: 89%;
}

.star_rating[data-rate="4.4"]:after {
  width: 88%;
}

.star_rating[data-rate="4.3"]:after {
  width: 87%;
}

.star_rating[data-rate="4.2"]:after {
  width: 86%;
}

.star_rating[data-rate="4.1"]:after {
  width: 85%;
}

.star_rating[data-rate="4"]:after {
  width: 80%;
}

.star_rating[data-rate="3.9"]:after {
  width: 73%;
}

.star_rating[data-rate="3.8"]:after {
  width: 72%;
}

.star_rating[data-rate="3.7"]:after {
  width: 71%;
}

.star_rating[data-rate="3.6"]:after {
  width: 70%;
}

.star_rating[data-rate="3.5"]:after {
  width: 69%;
}

.star_rating[data-rate="3.4"]:after {
  width: 68%;
}

.star_rating[data-rate="3.3"]:after {
  width: 67%;
}

.star_rating[data-rate="3.2"]:after {
  width: 66%;
}

.star_rating[data-rate="3.1"]:after {
  width: 65%;
}

.star_rating[data-rate="3"]:after {
  width: 60%;
}

.star_rating[data-rate="2.9"]:after {
  width: 53%;
}

.star_rating[data-rate="2.8"]:after {
  width: 52%;
}

.star_rating[data-rate="2.7"]:after {
  width: 51%;
}

.star_rating[data-rate="2.6"]:after {
  width: 50%;
}

.star_rating[data-rate="2.5"]:after {
  width: 49%;
}

.star_rating[data-rate="2.4"]:after {
  width: 48%;
}

.star_rating[data-rate="2.3"]:after {
  width: 47%;
}

.star_rating[data-rate="2.2"]:after {
  width: 46%;
}

.star_rating[data-rate="2.1"]:after {
  width: 45%;
}

.star_rating[data-rate="2"]:after {
  width: 40%;
}

.star_rating[data-rate="1.9"]:after {
  width: 32.5%;
}

.star_rating[data-rate="1.8"]:after {
  width: 32%;
}

.star_rating[data-rate="1.7"]:after {
  width: 31%;
}

.star_rating[data-rate="1.6"]:after {
  width: 30%;
}

.star_rating[data-rate="1.5"]:after {
  width: 29%;
}

.star_rating[data-rate="1.4"]:after {
  width: 28%;
}

.star_rating[data-rate="1.3"]:after {
  width: 27%;
}

.star_rating[data-rate="1.2"]:after {
  width: 26%;
}

.star_rating[data-rate="1.1"]:after {
  width: 25%;
}

.star_rating[data-rate="1"]:after {
  width: 20%;
}

.star_rating[data-rate="0.9"]:after {
  width: 12.3%;
}

.star_rating[data-rate="0.8"]:after {
  width: 11.3%;
}

.star_rating[data-rate="0.7"]:after {
  width: 10.3%;
}

.star_rating[data-rate="0.6"]:after {
  width: 9.6%;
}

.star_rating[data-rate="0.5"]:after {
  width: 8.6%;
}

.star_rating[data-rate="0.4"]:after {
  width: 8%;
}

.star_rating[data-rate="0.3"]:after {
  width: 7%;
}

.star_rating[data-rate="0.2"]:after {
  width: 6%;
}

.star_rating[data-rate="0.1"]:after {
  width: 5%;
}

.star_rating[data-rate="0"]:after {
  width: 0%;
}

.star_rating-txt {
  font-size: 15px;
  font-weight: bold;
  display: inline-block;
}

/* === タイトル === */
.sec-head {
  position: relative;
}
.sec-head .heading-large {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
.sec-head .more-link {
  position: absolute;
  right: 30px;
  top: 10px;
}
.sec-head .more-link a {
  font-size: 18px;
  font-weight: bold;
}

.bg {
  background: #FAFBFC;
  min-width: 1100px;
}

.product-card {
  width: 290px;
  padding: 35px 0 25px;
  -webkit-box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.15);
  background: #fff;
}
.product-card figure {
  text-align: center;
  margin-bottom: 25px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 200px;
}
.product-card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.product-card .product-name {
  line-height: 1.375;
  padding: 0 20px;
}
.product-card .product-name a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
.product-card .product-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0 20px;
}
.product-card .product-meta .star-rating-wp {
  padding: 3px 0 3px 4px;
}
.product-card .product-meta .highlight-badge {
  font-size: 14px;
  color: #fff;
  padding: 3px 5px 4px;
  white-space: nowrap;
  letter-spacing: -0.01em;
  margin-left: 7px;
}
.product-card .product-meta .highlight-badge.bestseller {
  background: #d83e3f;
}
.product-card .product-meta .highlight-badge.reseller {
  background: #0b4489;
}
.product-card .product-meta .icon-leaf {
  width: 17px;
  margin-left: 10px;
}
.product-card .price {
  margin-top: 10px;
  padding: 0 20px;
  color: var(--BK);
  font-weight: bold;
  letter-spacing: 0.08em;
}
.product-card .price .yen {
  font-size: 14px;
}
.product-card .price .num {
  font-size: 20px;
}
.product-card .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 10px 0 0 20px;
}

.cart-button {
  background: #ffe509;
  color: var(--BK);
  height: 40px;
  width: 140px;
  font-size: 15px;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.doc-act-button {
  background: #EFF3F7;
  border: 1px solid #e3eaf2;
  color: var(--BK);
  height: 40px;
  width: 140px;
  font-size: 15px;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wishlist-button {
  position: relative;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--BK);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.wishlist-button::before {
  background-image: url(../../img/common/ico_wish.svg);
  background-position: 0px 0px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  height: 15px;
  content: "";
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.wishlist-button.in-wishlist::before {
  background-image: url(../../img/common/ico_wish_active.svg);
}

.slick-prev, .slick-next {
  width: 50px;
  height: 50px;
  z-index: 5;
}

.slick-next:before,
.slick-prev:before {
  background-position: 0px 0px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  content: "";
  display: block;
  opacity: 1;
}

.slick-next:before {
  background-image: url(../../img/common/arrow_rt.svg);
}

.slick-prev:before {
  background-image: url(../../img/common/arrow_lt.svg);
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.5;
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li button {
  padding: 0;
  width: 14px;
  height: 14px;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e5e5e5;
  content: "";
  text-align: center;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  background: var(--BL);
}

.pager {
  margin-top: 50px;
  padding: 0 25px;
}
.pager ul {
  padding: 40px 0;
  border-top: 1px solid #e3eaf2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.pager ul li {
  width: 50px;
  height: 50px;
  font-size: 18px;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.pager ul li a, .pager ul li span {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  color: var(--BK);
}
.pager ul li.current a, .pager ul li.current span {
  color: #fff;
  background: var(--DBL);
}
.pager ul li.prv {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: auto;
  margin-right: 20px;
}
.pager ul li.prv a, .pager ul li.prv span {
  gap: 10px;
  background: transparent;
}
.pager ul li.prv a::before, .pager ul li.prv span::before {
  background-image: url(../../img/common/pager_arrow_lt.svg);
  background-position: 0px 0px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 17px;
  content: "";
  display: block;
}
.pager ul li.nxt {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: auto;
  margin-left: 20px;
}
.pager ul li.nxt a, .pager ul li.nxt span {
  gap: 10px;
  background: transparent;
}
.pager ul li.nxt a::after, .pager ul li.nxt span::after {
  background-image: url(../../img/common/pager_arrow_rt.svg);
  background-position: 0px 0px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 17px;
  content: "";
  display: block;
}
/*# sourceMappingURL=common.css.map */
