@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/* -----------------------------------------------
common
----------------------------------------------- */
:root {
  --barlow: barlow-semi-condensed, sans-serif;
  --barlow_r: 400;
  --barlow_m: 500;
  --barlow_sb: 600;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
body {
  color: #333;
  line-height: 1.5;
  letter-spacing: 0;
  /* font-family: yu-gothic-pr6n,"Noto Sans JP", sans-serif; */
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
a,
button {
  color: inherit;
}
*[class^="barlow__"] {
  font-family: barlow-semi-condensed, sans-serif;
}
.barlow__r {
  font-weight: 400;
}
.barlow__m {
  font-weight: 500;
}
.barlow__sb {
  font-weight: 600;
}
.inner__wrap {
  margin-inline: auto;
}
.head__wrap {
  text-align: center;
}
.head__wrap.head__fx {
  text-align: left;
}
.head__wrap strong {
  font-family: var(--barlow);
  font-weight: var(--barlow_sb);
  line-height: 1;
  letter-spacing: 0.02em;
  display: block;
}
.head__wrap h1,.head__wrap h2 {
  font-weight: bold;
  line-height: 1;
}
.parts__hidden {
  display: none;
}
.sec__head__wrap * {
  font-weight: bold;
}
.fs-c-productPrice__addon::before {
  content: '（';
}
.fs-c-productPrice__addon::after {
  content: '）';
}
.viewall__btn a {
  background-color: #fff;
  border: 1px solid #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-inline: auto;
}
.viewall__btn a::after {
  content: '';
  height: 1px;
  background-color: #333333;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
.viewall__btn span {
  font-family: var(--barlow);
  font-weight: var(--barlow_r);
}

@media (max-width: 767px) {
  :root {
    --vw: calc(100vw / 375); /* ●●● = 基準値、vwの計算に使用：calc(var(--vw) * px) */
  }
  .pc__only {
    display: none;
  }
  body {
    font-size: 14px;
  }
  main {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .inner__wrap {
    width: 86.67%;
  }
  .head__wrap {
    margin-bottom: 25px;
  }
  .head__wrap strong {
    font-size: min(calc(var(--vw) * 40), 40px);
  }
  .head__wrap h1,.head__wrap h2 {
    font-size: min(calc(var(--vw) * 14), 14px);
    margin-top: 13px;
  }
  .head__wrap.head__fx {
    width: 86.67%;
    margin-inline: auto;
  }
  .sec__head__wrap * {
    font-size: 17px;
    line-height: 1.47;
    margin-bottom: 22px;
    text-align: center;
  }
  .sec__head__wrap * {
    font-size: 17px;
    line-height: 1.47;
    margin-bottom: 19px;
  }
  .viewall__btn {
    margin-top: 25px;
  }
  .viewall__btn a {
    width: 200px;
    height: 40px;
  }
  .viewall__btn a::after {
    width: 10px;
  }
  .viewall__btn span {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  :root {
    --vw: calc(100vw / 1140); /* ●●● = 基準値、vwの計算に使用：calc(var(--vw) * px) */
  }
  .sp__only {
    display: none;
  }
  body {
    font-size: 16px;
  }
  main {
    padding-top: 122px;
  }
  .inner__wrap {
    width: 100%;
    max-width: calc(1120px + 40px);
    padding: 0 20px;
  }
  .head__wrap {
    margin-bottom: 50px;
  }
  .head__wrap strong {
    font-size: 70px;
  }
  .head__wrap h1,.head__wrap h2 {
    font-size: 18px;
    margin-top: 24px;
  }
  .head__wrap.head__fx {
    display: flex;
    align-items: center;
    gap: 23px;
    width: 100%;
    max-width: calc(1120px + 40px);
    padding: 0 20px;
    margin-inline: auto;
  }
  .head__wrap.head__fx h1,.head__wrap.head__fx h2 {
    margin-top: 0;
  }
  .sec__head__wrap * {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .viewall__btn {
    margin-top: 62px;
  }
  .viewall__btn a {
    width: 250px;
    height: 55px;
  }
  .viewall__btn a::after {
    width: 20px;
  }
  .viewall__btn span {
    font-size: 16px;
  }
}

@media (any-hover: hover) {
  a,
  button {
    transition: opacity .3s;
    cursor: pointer;
  }
  a:hover,
  button:hover {
    opacity: 0.8;
  }
}

/* -----------------------------------------------
header
----------------------------------------------- */
header {
  position: fixed;
  background-color: #fff;
  width: 100%;
  z-index: 9999;
}
.sub__nav a {
  font-family: var(--barlow);
  font-weight: var(--barlow_r);
}
header .header__nav__wrap {
  background-color: #333333;
  color: #fff;
}
.search .search__form__wrap form {
  position: relative;
}
.search .search__form__wrap input {
  border-radius: 50vh;
  display: block;
}
.search .search__form__wrap input:focus {
  box-shadow: none;
}
.search .search__form__wrap button {
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  border: none;
}


@media (max-width: 767px) {
  header {
    height: 50px;
    border-bottom: 1px solid #EFEFEF;
  }
  .header__inner {
    width: 100%;
    height: 100%;
    padding-left: 3.33%;
    padding-right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 10px;
  }
  .header__logo {
    width: 168px;
  }
  header .search {
    line-height: 1;
  }
  header .search__button {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    width: 20px;
    height: 50px;
  }
  header .search__form__wrap {
    display: none;
  }
  .header__serach__open .search__form__wrap {
    display: block;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    z-index: 10;
    background: #fff;
    padding: 10px 0;
  }
  .search .search__form__wrap input {
    width: 94.66%;
    height: 30px;
    font-size: 14px;
    line-height: 1;
    padding-inline: 20px 40px;
    display: block;
    margin-inline: auto;
    background-color: #fff;
    border: 1px solid #EFEFEF;
  }
  .search .search__form__wrap input::placeholder {
    color: #D9D9D9;
  }
  .search .search__form__wrap button {
    width: 30px;
    right: 14px;
    background: url(../images/common/icon_search_sp.svg) center / 18px no-repeat;
  }
  .header__icon__wrap {
    display: flex;
    align-items: center;
  }
  .header__icon__wrap .link__list {
    display: flex;
    align-items: center;
    margin-right: 8px;
  }
  .header__icon__wrap .link__list li {
    width: 30px;
  }
  .header__icon__wrap .link__list li.pc__only + li {
    margin-left: 10px;
  }
  .header__icon__wrap .link__list li + li {
    margin-left: 9px;
  }
  .header__icon__wrap .link__list li a {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header__icon__wrap .link__list li a picture {
    width: 20px;
  }

  /* ハンバーガー */
  header {
    /* position: relative; */
    /* width: 100%; */
  }
  html:has(body.menu__open),
  body.menu__open {
    height: 100%;
    overflow: hidden;
  }
  #nav__toggle {
    background: #333333;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 10;
    border: none;
    padding: 0;
  }
  #nav__toggle span {
    width: 25px;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background: #fff;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease;
  }
  #nav__toggle span:nth-child(1) {
    top: 15px;
  }
  #nav__toggle span:nth-child(2) {
    top: 25px;
  }
  #nav__toggle span:nth-child(3) {
    top: 35px;
  }
  body.menu__open #nav__toggle span:nth-child(1) {
    top: 25px;
    transform: translateX(-50%) rotate(45deg);
  }
  body.menu__open #nav__toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  body.menu__open #nav__toggle span:nth-child(3) {
    top: 25px;
    transform: translateX(-50%) rotate(-45deg);
  }
  .header__nav__wrap {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transition: all 0.5s;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 calc(50% - 50vw);
    padding: 64px 4% 150px;
    overflow-y: scroll;
    z-index: 9;
  }
  body.menu__open .header__nav__wrap {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  .header__nav > li > a {
    font-size: 17px;
    font-weight: bold;
    border-bottom: 1px solid #fff;
    display: block;
    padding: 10px 35px 3px 10px;
    position: relative;
  }
  .header__nav > li:has(.sub) > a::before {
    content: '';
    width: 15px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 10px;
    translate: 0 -50%;
  }
  .header__nav > li:has(.sub) > a::after {
    content: '';
    width: 1px;
    height: 15px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 17px;
    translate: 0 -50%;
  }
  .header__nav > li.nav__acc__open:has(.sub) > a::after {
    content: none;
  }
  .header__nav__wrap .sub {
    display: none;
  }
  .header__nav__wrap .nav__acc__open .sub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 10px 6px;
    gap: 11px;
  }
  .header__nav__wrap .sub a {
    display: block;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    border-left: 1px solid #3A7BC1;
    padding-left: 8px;
  }
  .header__nav__wrap .sub__nav__wrap {
    margin-top: 27px;
  }
  .header__nav__wrap .sub__nav a {
    font-size: 17px;
    padding-left: 10px;
  }
  .header__nav__wrap .contact__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    border-radius: 50vh;
    border: 1px solid #fff;
    font-size: min(calc(var(--vw) * 14), 14px);
    font-weight: bold;
    margin-top: 31px;
    position: relative;
  }
  .header__nav__wrap .contact__link::before {
    content: '';
    width: 22px;
    aspect-ratio: 44/33;
    background: url(../images/common/icon_send_w.svg) center / contain no-repeat;
    position: absolute;
    top: 50%;
    left: 19.5%;
    translate: 0 -50%;
  }
  .header__nav__wrap .contact__link::after {
    content: '';
    width: 8px;
    aspect-ratio: 1/1;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    translate: 0 -50%;
    rotate: 45deg;
  }
  .header__nav__wrap .sns__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
  }
  .header__nav__wrap .sns__wrap span {
    font-size: 14px;
    line-height: 1;
  }
  .header__nav__wrap .sns__wrap a {
    width: 30px;
  }
}

@media (min-width: 768px) {
  header .header__inner,
  .header__logo,
  .sub__nav__wrap .sub__nav,
  .header__icon__wrap,
  .link__list__wrap .link__list {
    display: flex;
    align-items: center;
  }
  header .header__inner {
    max-width: 1600px;
    min-height: 60px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header__logo span {
    font-size: 14px;
    font-weight: normal;
    margin-left: 23px;
  }
  .header__top__nav {
    display: flex;
    align-items: center;
  }
  .sub__nav__wrap {
    margin-left: auto;
  }
  .sub__nav a {
    font-weight: normal;
    font-size: 14px;
  }
  .sub__nav__guide {
    margin-right: 44px;
  }
  .sub__nav__guide a {
    display: flex;
    align-items: center;
    width: 152px;
    height: 30px;
    border: 1px solid #333;
    border-radius: 50vh;
    padding-left: 14px;
    position: relative;
  }
  .sub__nav__guide a::before {
    content: '';
    width: 12px;
    aspect-ratio: 1/1;
    background-color: #333;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 10px;
    translate: 0 -50%;
  }
  .sub__nav__guide a::after {
    content: '';
    width: 4px;
    aspect-ratio: 1/1;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 50%;
    right: 15px;
    translate: 0 -50%;
    rotate: 45deg;
  }
  .sub__nav__guide picture {
    width: 14px;
    margin-right: 11px;
  }
  .sub__nav__guide span {
    padding-bottom: 2px;
  }
  .sub__nav__about {
    margin-right: 26px;
  }

  .header__icon__wrap .search {
    margin-right: 10px;
  }

  .search .search__form__wrap input {
    width: 200px;
    height: 30px;
    font-size: 14px;
    line-height: 1;
    padding-inline: 10px 10px;
    background-color: #EEEEEE;
    border: none;
  }
  .search .search__form__wrap input::placeholder {
    color: #888888;
  }
  .search .search__form__wrap button {
    width: 30px;
    right: 0;
    background: url(../images/common/icon_search.svg) center / 15px no-repeat;
  }
  .search .search__form__wrap button:hover {
    opacity: .8;
  }

  .header__nav__wrap ul.header__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    /* max-width: 980px; */
    min-height: 40px;
    margin-inline: auto;
    max-width: calc(1120px + 40px);
    padding: 0 20px;
  }
  .header__nav__wrap .header__nav > li {
    position: relative;
    margin-inline: 0.24%;
  }
  .header__nav__wrap .header__nav > li > a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    padding-inline: 10px;
  }
  
  .header__nav__wrap .header__nav > li .sub {
    background: #333;
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    z-index: 2;
    padding: 6px 19px 15px 15px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s;
  }
  .header__nav__wrap .header__nav > li:hover .sub {
    visibility: visible;
    opacity: 1;
  }
  .header__nav__wrap .header__nav > li .sub li + li {
    margin-top: 7px;
  }
  .header__nav__wrap .header__nav > li .sub a {
    font-size: 12px;
    border-left: 1px solid #3A7BC1;
    padding-left: 9px;
  }
}

/* -----------------------------------------------
guide__wrap
----------------------------------------------- */
.guide__list li a {
  display: flex;
  align-items: center;
  height: 100%;
}
.guide__list li a p {
  font-weight: bold;
}

@media (max-width: 767px) {
  .guide__list__wrap {
    margin-top: 26px;
  }
  .guide__list {
    width: 84.61%;
    margin-inline: auto;
  }
  .guide__list li {
    border-bottom: 1px solid #333333;
  }
  .guide__list li a {
    justify-content: flex-start;
    position: relative;
    padding: 14px 45px 15px 4%;
  }
  .guide__list li a::before {
    content: '';
    width: 25px;
    aspect-ratio: 1/1;
    background-color: #333;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 10px;
    translate: 0 -50%;
  }
  .guide__list li a::after {
    content: '';
    width: 8px;
    aspect-ratio: 1/1;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    translate: 0 -50%;
    rotate: 45deg;
  }
  .guide__list li a picture {
    width: 34.25%;
  }
  .guide__list li a p {
    font-size: 14px;
    margin-left: 15px;
  }
}

@media (min-width: 768px) {
  .guide__list__wrap {
    margin-top: 62px;
  }
  .guide__list {
    display: flex;
    justify-content: center;
  }
  .guide__list li {
    width: 25%;
    aspect-ratio: 1/0.909;
  }
  .guide__list li + li {
    position: relative;
  }
  .guide__list li + li::before {
    content: '';
    width: 1px;
    height: 100%;
    background-color: #707070;
    position: absolute;
    top: 0;
    left: 0;
  }
  .guide__list li a {
    flex-direction: column;
    justify-content: center;
  }
  .guide__list li a picture {
    width: 36.36%;
  }
  .guide__list li a p {
    font-size: 16px;
    padding-right: 30px;
    margin-top: 18px;
    position: relative;
  }
  .guide__list li a p::before {
    content: '';
    width: 20px;
    aspect-ratio: 1/1;
    background-color: #333;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -50%;
  }
  .guide__list li a p::after {
    content: '';
    width: 6px;
    aspect-ratio: 1/1;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 50%;
    right: 8px;
    translate: 0 -50%;
    rotate: 45deg;
  }
}

/* -----------------------------------------------
newsletter__wrap
----------------------------------------------- */
.newsletter__wrap {
  position: relative;
}
.newsletter__wrap::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, .7);
  position: absolute;
  top: 0;
  left: 0;
}
.newsletter__wrap .inner__wrap {
  position: relative;
}
.newsletter__wrap .inner__wrap {
  width: 60%;
  margin: 0 auto;
}
.newsletter__wrap p {
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.newsletter__wrap .input__text__wrap {
  position: relative;
}
.newsletter__wrap .input__text__wrap input {
  width: 100%;
  border-radius: 50vh;
  border: none;
  box-shadow: none;
  font-weight: bold;
}
.newsletter__wrap .input__text__wrap input::placeholder {
  color: #CCCCCC;
}
.newsletter__wrap .input__text__wrap button {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  height: 100%;
  display: flex;
  align-items: center;
  border: none;
  background: none;
}
.newsletter__wrap label.check {
  display: flex;
  justify-content: center;
}
.newsletter__wrap label.check input {
  display: none;
}
.newsletter__wrap label.check span {
  color: #fff;
  font-weight: 500;
  position: relative;
  display: block;
}
.newsletter__wrap label.check span::before {
  content: '';
  aspect-ratio: 1/1;
  background: url(../images/common/newsletter_check_off.svg) center / contain no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.newsletter__wrap label.check input:checked + span::before {
  background: url(../images/common/newsletter_check_on.svg) center / contain no-repeat;
}

@media (max-width: 767px) {
  .newsletter__wrap {
    background: url(../images/common/newsletter_bg_sp.jpg) center / cover no-repeat;
    margin-top: 40px;
    padding: 59px 0 70px;
    aspect-ratio: 750/600;
    position: relative;
  }
  .newsletter__wrap .inner__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 90%;
  }
  .newsletter__wrap p {
    font-size: 14px;
    line-height: 1.6;
  }
  /* newsletter_wrap スマホ */
  .newsletter__wrap_sp {
    padding: 59px 0 70px;
    aspect-ratio: 750/600;
    position: relative;
  }
  .newsletter__wrap_sp .inner__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 90%;
  }
  .newsletter__wrap_sp p {
    font-size: 14px;
    line-height: 1.6;
  }
  /* ここまで */

  .newsletter__wrap form {
    margin-top: 19px;
    width: 100%;
    margin-inline: auto;
  }
  .newsletter__wrap .input__text__wrap input {
    height: 40px;
    font-size: 14px;
    padding-left: 15px;
    padding-right: 50px;
  }
  .newsletter__wrap .input__text__wrap button {
    width: 45px;
  }
  .newsletter__wrap .input__text__wrap button picture {
    width: 22px;
  }
  .newsletter__wrap label.check {
    margin-top: 27px;
  }
  .newsletter__wrap label.check span {
    font-size: 12px;
    padding-left: 30px;
  }
  .newsletter__wrap label.check span::before {
    width: 20px;
  }
}

@media (min-width: 768px) {
  .newsletter__wrap {
    background: url(../images/common/newsletter_bg_pc.jpg) center / cover no-repeat;
    margin-top: 100px;
    padding: 106px 0 112px;
  }
  .newsletter__wrap p {
    font-size: 16px;
    line-height: 1.875;
  }
  .newsletter__wrap form {
    margin-top: 20px;
    width: 500px;
    margin-inline: auto;
  }
  .newsletter__wrap .input__text__wrap input {
    height: 50px;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 60px;
  }
  .newsletter__wrap .input__text__wrap button {
    width: 48px;
  }
  .newsletter__wrap .input__text__wrap button picture {
    width: 28px;
  }
  .newsletter__wrap label.check {
    margin-top: 30px;
  }
  .newsletter__wrap label.check span {
    font-size: 14px;
    padding-left: 30px;
  }
  .newsletter__wrap label.check span::before {
    width: 20px;
  }
}

/* -----------------------------------------------
追従ボタン
----------------------------------------------- */
@media (max-width: 767px) {
  .fixed__cart {
    width: 50px;
    position: fixed;
    bottom: 55px;
    right: 0;
    z-index: 10;
  }
  .fixed__cart a {
    display: block;
  }
  .fixed__to__top {
    width: 50px;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10;
  }
  .fixed__to__top a {
    display: block;
  }
}

/* -----------------------------------------------
footer
----------------------------------------------- */
footer {
  background-color: #333333;
  color: #fff;
}
.footer__logo {
  display: block;
}
.footer__logo__wrap a.insta {
  line-height: 1;
  position: relative;
  display: inline-block;
}
.footer__logo__wrap a.insta::after {
  content: '';
  aspect-ratio: 1/1;
  background: url(../images/common/icon_insta_w.svg) center / contain no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
.copy__fx ul li a {
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  footer {
    padding: 40px 0 0;
  }
  .footer__logo {
    width: 211px;
  }
  .footer__logo__wrap p {
    font-size: 12px;
    line-height: 1.67;
    margin-top: 18px;
  }
  .footer__logo__wrap .sns__wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 34px;
  }
  .footer__logo__wrap .sns__wrap span {
    font-size: 14px;
    line-height: 1;
    width: 100%;
  }
  .footer__logo__wrap .sns__wrap a.insta {
    width: 20px;
  }
  .footer__logo__wrap .sns__wrap a.line {
    width: 224px;
  }
  .footer__nav {
    margin-top: 40px;
  }
  .footer__nav dl + dl {
    margin-top: 27px;
  }
  .footer__nav dt {
    font-size: 27px;
    line-height: 1;
  }
  .footer__nav dd {
    margin-top: 15px;
  }
  .footer__nav dd ul + ul {
    margin-top: 11px;
  }
  .footer__nav li + li {
    margin-top: 9px;
  }
  .footer__nav a {
    font-size: 13px;
    padding-left: 10px;
    border-left: 1px solid #3A7BC1;
  }
  .copy__fx {
    margin-top: 48px;
  }
  .copy__fx ul {
    display: flex;
    justify-content: center;
  }
  .copy__fx ul li + li {
    margin-left: 15px;
  }
  .copy__fx ul li a {
    font-size: 10px;
  }
  .copy {
    font-size: 10px;
    border-top: 1px solid #555555;
    padding: 10px 0 11px;
    margin-top: 12px;
    text-align: center;
  }
}

@media (min-width: 768px) {
  footer {
    padding: 96px 0 0;
  }
  .footer__fx {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px 20px;
  }
  .footer__logo {
    width: 222px;
  }
  .footer__logo__wrap p {
    font-size: 14px;
    line-height: 2.14;
    margin-top: 22px;
  }
  .footer__logo__wrap .sns__wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
  }
  .footer__logo__wrap .sns__wrap span {
    font-size: 14px;
    line-height: 1;
  }
  .footer__logo__wrap .sns__wrap a.insta {
    width: 20px;
  }
  .footer__logo__wrap .sns__wrap a.line {
    width: 224px;
  }
  .footer__nav {
    display: flex;
  }
  .footer__nav dl + dl {
    margin-left: 57px;
  }
  .footer__nav dt {
    font-size: 25px;
    line-height: 1;
  }
  .footer__nav dd {
    display: flex;
    margin-top: 26px;
  }
  .footer__nav dd ul + ul {
    margin-left: 43px;
  }
  .footer__nav li + li {
    margin-top: 7px;
  }
  .footer__nav a {
    font-size: 13px;
    padding-left: 10px;
    border-left: 1px solid #3A7BC1;
  }
  .copy__fx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    border-top: 1px solid #555555;
    padding: 7px 0 9px;
    margin-top: 94px;
  }
  .copy__fx ul {
    display: flex;
    align-items: center;
  }
  .copy__fx ul li + li {
    margin-left: 30px;
  }
  .copy__fx ul li a {
    font-size: 14px;
  }
  .copy {
    font-size: 14px;
  }
}

/* -----------------------------------------------
パンくずリスト
----------------------------------------------- */
.fs-c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
}
.fs-c-breadcrumb__listItem {
  margin-right: 0.5em;
}
.fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem {
  padding-left: 1em;
  position: relative;
}
.fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem::before {
  content: '';
  width: 5px;
  aspect-ratio: 1/1;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  rotate: 45deg;
}

@media (max-width: 767px) {
  .fs-c-breadcrumb {
    padding-bottom: 17px;
  }
  .fs-c-breadcrumb__list {
    font-size: 11px;
    font-weight: bold;
  }
}

@media (min-width: 768px) {
  .fs-c-breadcrumb {
    padding-bottom: 56px;
  }
  .fs-c-breadcrumb__list {
    font-size: 14px;
  }
}

/* -----------------------------------------------
商品マーク
----------------------------------------------- */
/* .fs-c-productMark__mark {
  background-color: #282828;
} */
.fs-c-productMark__mark.tag__red {
  background-color: #D00200;
}

/* -----------------------------------------------
ai-recommend__list
----------------------------------------------- */
.ai-recommend__list .fr3-item__productName {
  font-family: var(--barlow);
}
.ai-recommend__list .fr3-item__productPrice__price {
  font-family: var(--barlow);
}
.ai-recommend__list .fr3-item__productPrice__addon {
  display: none;
}

@media (max-width: 767px) {
  .ai-recommend__list .fr3-productListStatic__responsive_4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 6.15%;
    padding: 0;
  }
  .ai-recommend__list.sp__scroll .fr3-productListStatic__responsive_4 {
    display: flex;
    gap: 30px 30px;
    overflow-x: auto;
  }
  .ai-recommend__list.sp__scroll .fr3-productListStatic__responsive_4 .fr3-item {
    width: 120px;
    min-width: 120px;
  }
  .ai-recommend__list .fr3-item__link {
    gap: 14px;
  }
  .ai-recommend__list .fr3-item__productName {
    font-size: 15px;
    line-height: 1.16;
  }
  .ai-recommend__list .fr3-item__productPrice {
    margin-top: 2px;
  }
  .ai-recommend__list .fr3-item__productPrice__price {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .ai-recommend__list .fr3-productListStatic__responsive_4 {
    grid-template-columns: repeat(6, 1fr);
    gap: 60px 2.9%;
    padding: 0;
  }
  .ai-recommend__list .fr3-item__productName {
    font-size: 16px;
  }
  .ai-recommend__list .fr3-item__productPrice {
    margin-top: 0px;
  }
  .ai-recommend__list .fr3-item__productPrice__price {
    font-size: 20px;
  }
}

/* -----------------------------------------------
fs-c-productListItem
----------------------------------------------- */
.sp__scroll .fs-c-productListCarousel {
  justify-content: flex-start;
  align-items: flex-start;
}
.fs-c-productList__list,
.sp__scroll .fs-c-productListCarousel__list__itemTrack {
  display: grid;
}
.fs-c-productListItem .fs-c-productListItem__productName a {
  display: block;
}
.fs-c-productListItem .fs-c-productName__name {
  font-family: var(--barlow);
  font-weight: var(--barlow_r);
  display: block;
}
.fs-c-productListItem .fs-c-productMark__mark {
  margin: 0;
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 500;
  line-height: 1;
}
.fs-c-productListItem .fs-c-productPrice__main__price {
  font-family: var(--barlow);
  justify-content: flex-start;
}
.fs-c-productListItem .fs-c-productPrice--listed,
.fs-c-productListItem .fs-c-productPrice__main__label,
.fs-c-productListItem .fs-c-productPrice__addon,
.fs-c-productListItem .fs-c-productListItem__control,
.fs-c-productListItem .fs-c-productListItem__viewMoreImageButton {
  display: none;
}
.sp__scroll .fs-c-slick .slick-track:before,
.sp__scroll .fs-c-slick .slick-track:after {
  content: "";
  display: table;
}
.fs-p-heading--lv2 {
  display: none;
}
.fs-c-productListItem__outOfStock {
  background-color: #DEDEDE;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #282828;
  width: 100%;
}

@media (max-width: 767px) {
  .fs-c-productList__list {
    margin-top: 39px;
  }
  .fs-c-productList__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 6.15%;
  }
  .sp__scroll .fs-c-productListCarousel__list__itemTrack {
    display: flex;
    gap: 30px 30px;
    overflow-x: auto;
  }
  .sp__scroll .fs-c-productListCarousel__list__itemTrack .fs-c-productListItem{
    width: 120px;
    min-width: 120px;
  }
  .fs-c-productListItem .fs-c-productListItem__productName a {
    padding-top: 14px;
  }
  .fs-c-productListItem .fs-c-productName__name {
    font-size: 15px;
    line-height: 1.16;
  }
  .fs-c-productListItem .fs-c-productMarks {
    margin-top: 7px;
  }
  .fs-c-productListItem .fs-c-productMark {
    gap: 6px;
  }
  .fs-c-productListItem .fs-c-productMark__mark {
    min-width: 44px;
    min-height: 16px;
    font-size: 11px;
    padding: 2px 6px;
  }
  .fs-c-productListItem .fs-c-productListItem__prices{
    margin-top: 0;
  }
  .fs-c-productListItem .fs-c-productPrice__main__price {
    font-size: 20px;
  }
  .fs-c-productListItem__outOfStock {
    margin-top: 5px;
    height: 21px;
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .fs-c-productList__list {
    margin-top: 50px;
  }
  .fs-c-productList__list,
  .sp__scroll .fs-c-productListCarousel__list__itemTrack {
    grid-template-columns: repeat(6, 1fr);
    gap: 60px 2.9%;
  }
  .fs-c-productListItem .fs-c-productListItem__productName a {
    padding-top: 8px;
  }
  .fs-c-productListItem .fs-c-productName__name {
    font-size: 16px;
  }
  .fs-c-productListItem .fs-c-productMarks {
    margin-top: 7px;
  }
  .fs-c-productListItem .fs-c-productMark {
    gap: 5px;
  }
  .fs-c-productListItem .fs-c-productMark__mark {
    min-width: 60px;
    min-height: 20px;
    font-size: 12px;
  }
  .fs-c-productListItem .fs-c-productListItem__prices{
    margin-top: 2px;
  }
  .fs-c-productListItem .fs-c-productPrice__main__price {
    font-size: 20px;
  }
  .fs-c-productListItem__outOfStock {
    margin-top: 5px;
    height: 21px;
    font-size: 12px;
  }
}


/* -----------------------------------------------
並び替え・ページャーエリア
----------------------------------------------- */
.sort__wrap .fs-c-pagination,
.pager__wrap .fs-c-sortItems,
.pager__wrap .fs-c-listControl__status  {
  display: none;
}

/* 並び替え */
.sort__select__box {
  position: relative;
  display: flex;
  align-items: center;
}
.sort__select__box > strong {
  border: 1px solid #707070;
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  cursor: pointer;
  font-weight: normal;
}
.sort__select__box > strong::after {
  content: '';
  aspect-ratio: 1/1;
  background: url(../images/common/icon_sort.svg) center / contain no-repeat;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.sort__select__box .fs-c-sortItems__label {
  display: none;
}
.sort__wrap ul.fs-c-sortItems__list {
  border: 1px solid #c5c5c5;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  width: auto;
}
.sort__wrap .fs-c-sortItems__list {
  z-index: 2;
}
.sort__wrap .fs-c-sortItems__list li.is-active,
.sort__wrap .fs-c-sortItems__list li:has(a:hover) {
  background: #f8f8f8;
}
.sort__wrap .fs-c-sortItems__list li {
  cursor: default;
  box-sizing: border-box;
  padding: 2px 10px;
}
.sort__wrap .fs-c-sortItems__list li > * {
  word-break: keep-all;
  display: block;
}
.sort__wrap .fs-c-listControl__status {
  color: #707070;
}

@media (max-width: 767px) {
  div.sort__wrap {
    margin-top: 39px;
  }
  .sort__select__box {
    padding-right: 155px;
    height: 35px;
  }
  .sort__select__box > strong {
    font-size: 12px;
    width: 135px;
    height: 35px;
    border-radius: 3px;
    padding-left: 10px;
  }
  .sort__select__box > strong::after {
    width: 13px;
    right: 12px;
  }
  .sort__wrap .fs-c-sortItems__list li > * {
    font-size: 14px;
    padding: .3em .5em .4em;
  }
  .sort__wrap .fs-c-listControl__status {
    font-size: 12px;
    font-weight: bold;
  }
}

@media (min-width: 768px) {
  div.sort__wrap {
    margin-top: 95px;
  }
  .sort__select__box {
    padding-right: 180px;
    height: 40px;
  }
  .sort__select__box > strong {
    font-size: 14px;
    width: 150px;
    height: 40px;
    border-radius: 5px;
    padding-left: 13px;
  }
  .sort__select__box > strong::after {
    width: 18px;
    right: 15px;
  }
  .sort__wrap .fs-c-sortItems__list li > * {
    font-size: 14px;
  }
  .sort__wrap .fs-c-listControl__status {
    font-size: 14px;
  }
}

/* ページャー */
.pager__wrap .fs-c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pager__wrap .fs-c-pagination__item {
  line-height: 1;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: initial;
  text-align: center;
  padding: 0;
}
.pager__wrap .fs-c-pagination__item[role="button"] {
  border: 1px solid #828282;
}
.pager__wrap .fs-c-pagination__item.is-active {
  background: #F2F2F2;
}
.pager__wrap :is(.fs-c-pagination__item--prev, .fs-c-pagination__item--next) {
  position: relative;
  border: none!important;
}
.pager__wrap .fs-c-pagination__item--prev::before {
  content: '';
  height: auto;
  aspect-ratio: 1/1;
  border-top: 2px solid #282828;
  border-left: 2px solid #282828;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: -45deg;
}
.pager__wrap .fs-c-pagination__item--next::before {
  content: '';
  height: auto;
  aspect-ratio: 1/1;
  border-top: 2px solid #282828;
  border-right: 2px solid #282828;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: 45deg;
}
  
@media (max-width: 767px) {
  .pager__wrap .fs-c-productList__controller:has(.fs-c-pagination) {
    margin: 77px auto;
  }
  .pager__wrap .fs-c-pagination {
    height: 35px;
    gap: 8px;
  }
  .pager__wrap .fs-c-pagination__item {
    font-size: 18px;
    width: 35px;
    border-radius: 5px;
  }
  .pager__wrap .fs-c-pagination__item--prev::before {
    width: 12px;
  }
  .pager__wrap .fs-c-pagination__item--next::before {
    width: 12px;
  }
}
  
@media (min-width: 768px) {
  .pager__wrap .fs-c-productList__controller:has(.fs-c-pagination) {
    margin: 86px auto 0;
  }
  .pager__wrap .fs-c-pagination {
    height: 40px;
    gap: 10px;
  }
  .pager__wrap .fs-c-pagination__item {
    font-size: 22px;
    width: 40px;
    border-radius: 5px;
  }
  .pager__wrap .fs-c-pagination__item--prev::before {
    width: 14px;
  }
  .pager__wrap .fs-c-pagination__item--next::before {
    width: 14px;
  }
}

/* -----------------------------------------------
category__wrap
----------------------------------------------- */
.category__wrap .head__wrap {
  text-align: center;
}
.category__list__wrap li {
  position: relative;
}
.category__list__wrap li a {
  display: block;
}
.category__list__wrap li .text {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 100%;
  text-align: center;
}
.category__list__wrap li .text strong {
  display: block;
  font-family: var(--barlow);
  color: #fff;
}
.category__list__wrap li .text span {
  display: block;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 767px) {
  .category__wrap {
    margin-top: 67px;
  }
  .category__list__wrap li + li {
    margin-top: 5px;
  }
  .category__list__wrap li .text strong {
    font-size: 23px;
    line-height: 1.14;
    text-shadow: 0 0 8px #333333;
    font-weight: var(--barlow_m);
  }
  .category__list__wrap li .text span {
    font-size: 13px;
    line-height: 1.2;
    margin-top: 4px;
    text-shadow: 0 0 8px #333333;
  }
}

@media (min-width: 768px) {
  .category__wrap {
    margin-top: 100px;
  }
  .category__list__wrap ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 0.3125%;
  }
  .category__list__wrap li {
    width: 33.125%;
  }
  .category__list__wrap li:nth-child(n + 4) {
    width: 24.75%;
  }
  .category__list__wrap li .text strong {
    font-size: min(2.1875vw, 35px);
    line-height: 1.14;
    text-shadow: 0 0 15px #333333;
    font-weight: var(--barlow_sb);
  }
  .category__list__wrap li .text span {
    font-size: min(1.06vw, 17px);
    line-height: 1.2;
    margin-top: min(0.625vw, 10px);
    text-shadow: 0 0 15px #333333;
  }
}