@charset "UTF-8";
/*-------------------------------
変数
-------------------------------*/
:root {
  --color-black: #050505;
  --color-white: #fff;
  --color-red: #f43d25;
  --color-yellow: #020202;
  --bg: #da3a31;
  --font-size--small: 1rem;
  --font-size--medium: 1.2rem;
  --font-size--large: 1.4rem;
  --font-size--largest: 3rem;
}
@media (min-width: 600px) {
  :root {
    --font-size--small: 1.4rem;
    --font-size--medium: 1.8rem;
    --font-size--large: 2.4rem;
    --font-size--largest: 6rem;
  }
}

/*-------------------------------
全体
-------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: var(--font-size--medium);
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--color-black);
  font-feature-settings: "palt";
  background: var(--bg);
}

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

img {
  width: 100%;
  height: auto;
  display: block;
}

.img-link {
  position: relative;
  display: block;
}
.img-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: #000;
  opacity: 0;
  transition: 0.3s;
}
.img-link:hover::before {
  opacity: 0.2;
}

ul {
  list-style: none;
}

.sp_show {
  display: none;
}
@media (max-width: 599px) {
  .sp_show {
    display: block;
  }
}

.pc_show {
  display: block;
}
@media (max-width: 599px) {
  .pc_show {
    display: none;
  }
}

.view_timer {
  display: none;
}

/*-------------------------------
メインビジュアル
-------------------------------*/
.mv {
  line-height: 0;
}
@media (max-width: 599px) {
  .mv {
    aspect-ratio: 750/1200;
    background-size: contain;
  }
  .mv img {
    display: none;
  }
}
@media (min-width: 600px) {
  .mv {
    background: none !important;
  }
  .mv__wrap {
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
  .mv img {
    width: auto;
    max-height: 630px;
  }
}
@media (min-width: 1921px) {
  .mv img {
    width: auto;
    max-height: 800px;
  }
}

/*-------------------------------
MENU
-------------------------------*/
.menu {
  width: 100%;
  max-width: 800px;
  position: fixed;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  transition: 0.9s;
}
@media (max-width: 599px) {
  .menu {
    width: calc(100% - 20px);
  }
}
.menu.is-show {
  bottom: 0;
}
.menu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
@media (min-width: 600px) {
  .menu__list {
    gap: 20px;
  }
}
.menu__list--1 {
  grid-template-columns: repeat(1, 1fr);
  width: 60%;
  max-width: 500px;
  margin: 0 auto;
}
.menu__list--2 {
  grid-template-columns: repeat(2, 1fr);
}
.menu a {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--color-white);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top: 1px solid var(--color-black);
  border-left: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  padding: 10px 0;
}
@media (min-width: 600px) {
  .menu a {
    font-size: 1.8rem;
    padding: 20px 0;
  }
}

/*-------------------------------
メイン共通
-------------------------------*/
.section {
  background: #fbf1cf;
  padding: 50px 0;
}
@media (min-width: 600px) {
  .section {
    padding: 150px 0;
  }
}
.section__ttl {
  font-size: var(--font-size--largest);
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .section__ttl {
    margin-bottom: 80px;
  }
}
.section__ttl--sub {
  font-size: var(--font-size--large);
  display: block;
}
.section--margin {
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .section--margin {
    margin-bottom: 80px;
  }
}
.section--padding {
  padding-bottom: 0;
}

/*-------------------------------
クーポン/キャンペーン
-------------------------------*/
.frame {
  background: var(--color-white);
  max-width: 1000px;
  margin: 0 20px;
  padding: 30px 20px;
}
@media (min-width: 600px) {
  .frame {
    margin: 0 auto;
    padding: 50px 50px 100px;
  }
}
.frame--margin {
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .frame--margin {
    margin-bottom: 100px;
  }
}
.frame__ttl {
  font-size: var(--font-size--large);
  font-weight: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .frame__ttl {
    margin-bottom: 50px;
  }
}
.frame__ttl::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
}
@media (min-width: 600px) {
  .frame__ttl::before {
    width: 100px;
    height: 100px;
  }
}
.frame__ttl span {
  display: inline-block;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 5px;
}
.frame .ttl--cp::before {
  background: url("../../image/ic_ticket.png") no-repeat center;
  background-size: contain;
}
.frame .ttl--souryou::before {
  background: url("../../image/ic_car.png") no-repeat center;
  background-size: contain;
}
.frame .ttl--point::before {
  background: url("../../image/ic_point.png") no-repeat center;
  background-size: contain;
}
.frame .ttl--line::before {
  background: url("../../image/ic_user.png") no-repeat center;
  background-size: contain;
}
.frame-item__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media (min-width: 600px) {
  .frame-item__list {
    gap: 30px;
  }
}
.frame-item__list--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) {
  .frame-item__list--2 {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 0 auto;
  }
}
.frame-item {
  width: min(100%, 650px);
  margin: 0 auto;
}
@media (min-width: 600px) {
  .frame__inner--slider {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 80px;
  }
}
.frame-item__wrap {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  row-gap: 15px;
  height: auto;
}
@media (min-width: 600px) {
  .frame-item__wrap {
    row-gap: 30px;
  }
}
.frame-item__wrap.swiper-slide {
  grid-template-columns: 1fr;
}
.frame-swiper-item:nth-child(even) {
  margin-right: 10px;
}
@media (min-width: 600px) {
  .frame-swiper-item:nth-child(even) {
    margin-right: 30px;
  }
}

/*-------------------------------
ポイント
-------------------------------*/
.pt {
  text-align: center;
  font-weight: bold;
  background: var(--color-white);
  padding: 10px 0;
}
@media (min-width: 600px) {
  .pt {
    padding: 30px 0;
  }
}
.pt.pt--padding {
  padding-bottom: 0;
}
.pt-txt span {
  color: var(--color-red);
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #f2ced2 60%);
  padding: 0 5px;
}
@media (min-width: 600px) {
  .pt-txt span {
    font-size: 3.6rem;
    padding: 0 10px;
  }
}
.pt__inner {
  border-top: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-red);
  padding: 10px 0;
}
.pt--main span {
  color: var(--color-red);
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #f2ced2 60%);
  padding: 0 5px;
}
@media (min-width: 600px) {
  .pt--main span {
    font-size: 3.6rem;
    padding: 0 10px;
  }
}

/*-------------------------------
タイムセール
-------------------------------*/
.ts .section__ttl {
  color: var(--color-red);
}
.ts__wrap {
  margin-bottom: 50px;
}
@media (min-width: 600px) {
  .ts__wrap {
    margin-bottom: 150px;
  }
}
.ts-term {
  text-align: center;
  background: var(--color-white);
  margin-bottom: 30px;
  padding: 20px 0;
}
@media (min-width: 600px) {
  .ts-term {
    margin-bottom: 80px;
    padding: 30px 0;
  }
}
.ts-term-cd {
  font-size: var(--font-size--large);
}
.ts-cd-timer span {
  font-size: 150%;
}
.ts-item__wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
@media (min-width: 600px) {
  .ts-item__wrap {
    gap: 100px;
  }
}
.ts-item {
  width: clamp(280px, 100% - 100px, 600px);
  margin: 0 auto;
}
.ts-item-img {
  margin-bottom: 15px;
}
@media (min-width: 600px) {
  .ts-item-img {
    margin-bottom: 30px;
  }
}
.ts-item-price {
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  column-gap: 5px;
  row-gap: 10px;
  width: clamp(260px, 100% - 20px, 500px);
  margin: 0 auto 20px;
}
@media (min-width: 600px) {
  .ts-item-price {
    gap: 10px;
    margin-bottom: 50px;
  }
}
.ts-item-price div {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
@media (min-width: 600px) {
  .ts-item-price div {
    gap: 10px;
  }
}
.ts-item-link {
  width: clamp(100px, 80%, 400px);
  margin: 0 auto 10px;
}
.ts-item-link a {
  color: var(--color-white);
  font-weight: bold;
  background: var(--color-red);
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
}
@media (min-width: 600px) {
  .ts-item-link a {
    padding: 20px 0;
  }
}

.discount {
  color: var(--color-white);
  font-size: var(--font-size--large);
  font-weight: bold;
  background: var(--color-red);
  padding: 5px;
}
@media (min-width: 600px) {
  .discount {
    padding: 10px;
  }
}

.sf {
  color: var(--color-white);
  font-size: var(--font-size--large);
  font-weight: bold;
  background: #40579b;
  padding: 5px;
}
@media (min-width: 600px) {
  .sf {
    padding: 10px;
  }
}

.sale {
  color: var(--color-red);
  font-size: 2rem;
  font-weight: bold;
}
@media (min-width: 600px) {
  .sale {
    font-size: 3rem;
  }
}

.pre {
  text-decoration: line-through;
}

.tax {
  font-size: 60%;
}

.arrow {
  display: block;
  width: 8px;
  height: 5px;
  position: relative;
}
@media (min-width: 600px) {
  .arrow {
    width: 13px;
    height: 8px;
  }
}
.arrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(30deg);
}
@media (min-width: 600px) {
  .arrow::before {
    width: 13px;
    height: 2px;
  }
}
.arrow::after {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-30deg);
}
@media (min-width: 600px) {
  .arrow::after {
    width: 13px;
    height: 2px;
  }
}

.ts-banner__wrap {
  width: clamp(280px, 100% - 40px, 780px);
  margin: 0 auto;
}

/*-------------------------------
リミテッドセール
-------------------------------*/
.ls .section__ttl {
  color: var(--color-red);
}
.ls .fz--jp {
  font-size: 2.7rem;
}
@media (min-width: 600px) {
  .ls .fz--jp {
    font-size: 5.5rem;
  }
}
.ls__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: clamp(280px, 100% - 40px, 800px);
  margin: 0 auto 50px;
}
@media (min-width: 600px) {
  .ls__menu {
    gap: 20px;
    margin-bottom: 100px;
  }
}
.ls__menu li a {
  display: block;
  text-align: center;
  background: var(--color-white);
  padding: 8px 0;
  transition: all 0.3s;
}
@media (min-width: 600px) {
  .ls__menu li a {
    padding: 15px 0;
  }
}
.ls__menu li:hover a {
  color: var(--color-white);
  background: var(--color-black);
}
.ls-content {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.9s;
}
.ls-content.is-active {
  visibility: visible;
  opacity: 1;
  height: auto;
}
.ls-content__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: clamp(280px, 100% - 40px, 800px);
  margin: 0 auto 30px;
}
@media (min-width: 600px) {
  .ls-content__menu {
    gap: 20px;
    margin-bottom: 100px;
  }
}
.ls-content__menu li a {
  text-align: center;
  font-weight: bold;
  display: block;
  background: var(--color-white);
  border: 1px solid var(--color-black);
  padding: 8px 0;
  transition: 0.1s;
}
@media (min-width: 600px) {
  .ls-content__menu li a {
    padding: 15px 0;
  }
}
.ls-content__menu li a:hover {
  color: var(--color-white);
  background: var(--color-black);
}
.ls__wrap--margin {
  margin-bottom: 50px;
}
@media (min-width: 600px) {
  .ls__wrap--margin {
    margin-bottom: 100px;
  }
}
.ls__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(280px, 100% - 40px, 800px);
  margin: 0 auto 20px;
}
@media (min-width: 600px) {
  .ls__ttl {
    margin-bottom: 50px;
  }
}
.ls__ttl::before, .ls__ttl::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-black);
}
.ls__ttl span {
  font-size: 1.8rem;
  flex-shrink: 0;
  padding: 0 20px;
}
@media (min-width: 600px) {
  .ls__ttl span {
    font-size: 3rem;
    padding: 0 100px;
  }
}
.ls__inner {
  width: clamp(280px, 100% - 40px, 920px);
  position: relative;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .ls__inner {
    padding: 0 60px;
  }
}
@media (min-width: 600px) {
  .ls__inner--slider {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 80px;
  }
}
@media (max-width: 599px) {
  .ls-swiper {
    padding: 0 20px;
  }
}
.ls-item__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
  row-gap: 15px;
}
@media (min-width: 600px) {
  .ls-item__wrap {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 50px;
  }
}
.ls-item__wrap.swiper-slide {
  grid-template-columns: 1fr;
}
@media (max-width: 599px) {
  .ls-item__wrap.center {
    grid-template-columns: repeat(12, 1fr);
  }
  .ls-item__wrap.center .ls-item {
    grid-column: 4/10;
  }
}
@media (min-width: 600px) {
  .ls-item__wrap.center .ls-item {
    grid-column: 2/3;
  }
}
.ls-item {
  display: flex;
  flex-direction: column;
}
.ls-item-img {
  margin-bottom: 5px;
}
@media (min-width: 600px) {
  .ls-item-img {
    margin-bottom: 15px;
  }
}
.ls-item-name {
  font-size: var(--font-size--small);
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 5px;
  display: none;
}
@media (min-width: 600px) {
  .ls-item-name {
    margin-bottom: 10px;
  }
}
.ls-item-discount {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: auto;
  margin-bottom: 5px;
}
@media (min-width: 600px) {
  .ls-item-discount {
    gap: 10px;
    margin-bottom: 10px;
  }
}
.ls .discount {
  font-size: var(--font-size--small);
  padding: 0 3px;
}
@media (min-width: 600px) {
  .ls .discount {
    padding: 0 10px;
  }
}
.ls .sf {
  font-size: var(--font-size--small);
  padding: 0 3px;
}
@media (min-width: 600px) {
  .ls .sf {
    padding: 0 10px;
  }
}
.ls-item-price {
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media (min-width: 600px) {
  .ls-item-price {
    align-items: flex-end;
    gap: 10px;
  }
}
.ls .sale {
  font-size: 1.4rem;
}
@media (min-width: 600px) {
  .ls .sale {
    font-size: 1.8rem;
  }
}
.ls .sale--black {
  color: var(--color-black);
}
.ls .pre {
  font-size: 1.2rem;
}
@media (min-width: 600px) {
  .ls .pre {
    font-size: 1.4rem;
  }
}
.ls-link {
  margin: 0 auto;
}
@media (max-width: 599px) {
  .ls-link {
    width: clamp(250px, 70%, 300px);
    margin-top: 80px;
  }
}
@media (min-width: 600px) {
  .ls-link {
    max-width: 500px;
    margin-top: 150px;
  }
}
.ls-link p {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .ls-link p {
    font-size: 2.2rem;
  }
}
.ls .cp--single {
  margin: 0 20px 30px;
}
@media (min-width: 600px) {
  .ls .cp--single {
    max-width: 600px;
    margin: 0 auto 80px;
  }
}
.ls .cp__wrap {
  margin: 30px 20px 30px;
}
@media (min-width: 600px) {
  .ls .cp__wrap {
    max-width: 1000px;
    margin: 100px auto 80px;
  }
}
.ls .cp__list {
  display: grid;
  gap: 10px;
}
@media (min-width: 600px) {
  .ls .cp__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
.ls .cp__order {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .ls .cp__order {
    margin-bottom: 50px;
  }
}
.ls .cp__order p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  background: var(--color-red);
  border-radius: 100vh;
  padding: 10px 30px;
  display: inline-block;
  position: relative;
}
@media (min-width: 600px) {
  .ls .cp__order p {
    font-size: 2.4rem;
    padding: 20px 50px;
  }
}
.ls .cp__order p::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid var(--color-red);
}
@media (min-width: 600px) {
  .ls .cp__order p::before {
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid var(--color-red);
  }
}
.ls .ttl--ja {
  font-size: 1.4rem;
}
@media (min-width: 600px) {
  .ls .ttl--ja {
    font-size: 2.4rem;
  }
}

.swiper {
  display: none;
}
.swiper-initialized {
  display: block;
}

.button-prev,
.button-next {
  width: 35px;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 599px) {
  .button-prev,
  .button-next {
    display: none;
  }
}
.button-prev span,
.button-next span {
  display: block;
  width: 100%;
  height: 100%;
}
.button-prev.swiper-button-disabled span,
.button-next.swiper-button-disabled span {
  filter: opacity(0.2);
}

.button-prev {
  left: 0;
}
.button-prev span {
  background-image: url("../../image/arrow-prev.png");
  background-position: center;
  background-size: 20px;
}

.button-next {
  right: 0;
}
.button-next span {
  background-image: url("../../image/arrow-next.png");
  background-position: center;
  background-size: 20px;
}

.ls-button-prev,
.ls-button-next {
  background-color: var(--color-white);
}

.pu__inner {
  width: clamp(280px, 100% - 40px, 1050px);
  margin: 0 auto;
}
.pu-item__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
  row-gap: 15px;
}
@media (min-width: 600px) {
  .pu-item__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (min-width: 600px) {
  #ts .ls-item__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*-------------------------------
RECOMMEND
-------------------------------*/
.recommend__ttl--sub {
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
}
@media (min-width: 600px) {
  .recommend__ttl--sub {
    margin-bottom: 30px;
  }
}
.recommend__list-item:not(:last-of-type) {
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .recommend__list-item:not(:last-of-type) {
    margin-bottom: 80px;
  }
}
@media (min-width: 600px) {
  .recommend__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
  }
}
@media (max-width: 599px) {
  .recommend-slider, .feature-slider, .category-slider {
    padding: 0 20px;
  }
}
.recommend .swiper-slide {
  background: var(--color-white);
  height: auto;
  border-radius: 10px;
}
@media (min-width: 600px) {
  .recommend .swiper-slide {
    border-radius: 20px;
  }
}
.recommend img {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
@media (min-width: 600px) {
  .recommend img {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
  }
}
.recommend-name {
  font-size: var(--font-size--small);
  padding: 5px;
}
@media (min-width: 600px) {
  .recommend-name {
    padding: 10px 20px;
  }
}
.recommend .img-link::before {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
@media (min-width: 600px) {
  .recommend .img-link::before {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
  }
}

/*-------------------------------
CATEGORY
-------------------------------*/
@media (min-width: 600px) {
  .category__inner, .feature__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
  }
}
.category-item {
  font-weight: bold;
  background: var(--color-white);
  border: 1px solid var(--color-black);
  aspect-ratio: 1/1;
}
.category-item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 100%;
  position: relative;
}
@media (min-width: 600px) {
  .category-item a {
    gap: 10px;
  }
}
.category-item a::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
}
@media (min-width: 600px) {
  .category-item a::before {
    width: 45px;
    height: 45px;
  }
}
.category-item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: #000;
  opacity: 0;
  transition: 0.3s;
}
.category-item a:hover::after {
  opacity: 0.2;
}
.category-item--ranking a::before {
  background: url("../../image/bt_rank.png") no-repeat center;
  background-size: contain;
}
.category-item--new a::before {
  background: url("../../image/bt_new.png") no-repeat center;
  background-size: contain;
}
.category-item--tops a::before {
  background: url("../../image/bt_tops.png") no-repeat center;
  background-size: contain;
}
.category-item--outer a::before {
  background: url("../../image/bt_outer.png") no-repeat center;
  background-size: contain;
}
.category-item--carde a::before {
  background: url("../../image/bt_carde.png") no-repeat center;
  background-size: contain;
}
.category-item--blouse a::before {
  background: url("../../image/bt_shirt.png") no-repeat center;
  background-size: contain;
}
.category-item--op a::before {
  background: url("../../image/bt_op_aw.png") no-repeat center;
  background-size: contain;
}
.category-item--cutsew a::before {
  background: url("../../image/bt_cutsew.png") no-repeat center;
  background-size: contain;
}
.category-item--knit a::before {
  background: url("../../image/bt_knit.png") no-repeat center;
  background-size: contain;
}
.category-item--pt a::before {
  background: url("../../image/bt_pt.png") no-repeat center;
  background-size: contain;
}
.category-item--sk a::before {
  background: url("../../image/bt_sk.png") no-repeat center;
  background-size: contain;
}
.category-item--occ a::before {
  background: url("../../image/bt_occa.png") no-repeat center;
  background-size: contain;
}
.category-item--bag a::before {
  background: url("../../image/bt_bag.png") no-repeat center;
  background-size: contain;
}
.category-item--shoes a::before {
  background: url("../../image/bt_shoes.png") no-repeat center;
  background-size: contain;
}
.category-item--mens a::before {
  background: url("../../image/bt_mens.png") no-repeat center;
  background-size: contain;
}
.category-item--warm a::before {
  background: url("../../image/bt_warm.png") no-repeat center;
  background-size: contain;
}
.category-item--goods a::before {
  background: url("../../image/bt_goods.png") no-repeat center;
  background-size: contain;
}
.category-item--sweat a::before {
  background: url("../../image/bt_sweat.png") no-repeat center;
  background-size: contain;
}
.category-item--acc a::before {
  background: url("../../image/bt_acc.png") no-repeat center;
  background-size: contain;
}
.category-item--lightouter a::before {
  background: url("../../image/bt_l_outer.png") no-repeat center;
  background-size: contain;
}
.category-item--cdset a::before {
  background: url("../../image/bt_cs.png") no-repeat center;
  background-size: contain;
}
.category-item--parka a::before {
  background: url("../../image/bt_parka.png") no-repeat center;
  background-size: contain;
}
.category-item--func a::before {
  background: url("../../image/bt_func_aw.png") no-repeat center;
  background-size: contain;
}
.category-item--tank a::before {
  background: url("../../image/bt_tank.png") no-repeat center;
  background-size: contain;
}
.category-item--petti a::before {
  background: url("../../image/bt_petti.png") no-repeat center;
  background-size: contain;
}
.category-item--life a::before {
  background: url("../../image/bt_life.png") no-repeat center;
  background-size: contain;
}

/*-------------------------------
FEATURE
-------------------------------*/
/*-------------------------------
footer
-------------------------------*/
.footer {
  background: #fbf1cf;
  padding: 50px 0 50px;
}
@media (min-width: 600px) {
  .footer {
    padding: 150px 0 100px;
  }
}
.footer small {
  display: block;
  font-size: var(--font-size--small);
  text-align: center;
}

.sns-list {
  /*sns-list*/
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 600px) {
  .sns-list {
    gap: 30px;
  }
}
.sns-list li {
  width: 40px;
}
@media (min-width: 600px) {
  .sns-list li {
    width: 60px;
  }
}

.back-btn {
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 50px 30px;
}
@media (min-width: 600px) {
  .back-btn {
    gap: 40px;
    margin: 150px auto;
  }
}
.back-btn a {
  display: block;
  background: transparent;
  padding: 10px 20px;
  border: 1px solid var(--color-black);
  border-radius: 100vh;
}
@media (min-width: 600px) {
  .back-btn a {
    padding: 25px 50px;
  }
}

/*-------------------------------
公式
-------------------------------*/
.frame-item__list {
  gap: 30px;
}
@media (min-width: 600px) {
  .frame-item__list {
    gap: 100px;
  }
}

.frame-link {
  text-align: center;
  margin-top: 50px;
}
@media (min-width: 600px) {
  .frame-link {
    margin-top: 100px;
  }
}
.frame-link a {
  text-decoration: underline;
}
.frame-link a:hover {
  text-decoration: none;
}

.copybtn:hover {
  cursor: pointer;
}

.msg_success {
  display: none;
  color: var(--color-white);
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  width: 200px;
  border-radius: 5px;
  position: fixed;
  top: 20px;
  left: 50%;
  margin-left: -100px;
  padding: 5px 15px;
  z-index: 99999;
}
@media (min-width: 600px) {
  .msg_success {
    top: 30px;
    padding: 10px 20px;
    font-size: 1.4rem;
  }
}

.msg_error {
  display: none;
  color: var(--color-white);
  text-align: center;
  background: var(--color-red);
  width: 200px;
  border-radius: 5px;
  position: fixed;
  top: 20px;
  left: 50%;
  margin-left: -100px;
  padding: 5px 15px;
  z-index: 99999;
}
@media (min-width: 600px) {
  .msg_error {
    top: 30px;
    padding: 10px 20px;
    font-size: 1.4rem;
  }
}

.cp-code {
  text-align: center;
  border: 2px solid var(--color-black);
  border-radius: 10px;
  position: relative;
  margin: 25px auto 15px;
  padding: 10px;
}
@media (min-width: 600px) {
  .cp-code {
    width: 100%;
    max-width: 650px;
    margin: 50px auto;
    padding: 20px;
  }
}
.cp-code-heading {
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 0 20px;
}
.cp-code-num {
  font-size: 2rem;
}
@media (min-width: 600px) {
  .cp-code-num {
    font-size: 4rem;
  }
}

.cp-copy, .app_dl {
  color: var(--color-white);
  font-weight: bold;
  text-align: center;
  border-radius: 100vh;
  background: var(--color-black);
  width: clamp(250px, 60%, 500px);
  margin: 0 auto;
  padding: 8px 0;
}
@media (min-width: 600px) {
  .cp-copy, .app_dl {
    padding: 20px 0;
  }
}
.cp-copy:hover, .app_dl:hover {
  cursor: pointer;
}

.cp-ex {
  font-size: var(--font-size--medium);
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 600px) {
  .cp-ex {
    margin-top: 50px;
  }
}
.cp-ex p:first-child {
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .cp-ex p:first-child {
    margin-bottom: 20px;
  }
}
.cp-ex a {
  text-decoration: underline;
}

.cp-terms {
  margin-top: 20px;
}
@media (min-width: 600px) {
  .cp-terms {
    margin-top: 30px;
  }
}
.cp-terms__ttl {
  font-weight: bold;
  background: #ddd;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 600px) {
  .cp-terms__ttl {
    padding: 10px 0;
  }
}
.cp-terms__ttl span {
  width: 10px;
  height: 10px;
  position: relative;
}
@media (min-width: 600px) {
  .cp-terms__ttl span {
    width: 16px;
    height: 16px;
  }
}
.cp-terms__ttl span::before,
.cp-terms__ttl span::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 10px;
  height: 2px;
  background: var(--color-black);
}
@media (min-width: 600px) {
  .cp-terms__ttl span::before,
  .cp-terms__ttl span::after {
    top: 8px;
    width: 16px;
  }
}
.cp-terms__ttl span::after {
  transform: rotate(90deg);
}
.cp-terms__ttl.is-active span::after {
  display: none;
}
.cp-terms__content {
  font-size: 1.1rem;
  line-height: 2;
  display: none;
  margin-top: 10px;
}
@media (min-width: 600px) {
  .cp-terms__content {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

.cp-item-link {
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 600px) {
  .cp-item-link {
    margin-top: 30px;
  }
}
.cp-item-link a {
  text-decoration: underline;
}
.cp-item-link a:hover {
  text-decoration: none;
}

.cp-link {
  text-align: center;
}
.cp-link a {
  text-decoration: underline;
}

.app_dl {
  margin-top: 25px;
}
@media (min-width: 600px) {
  .app_dl {
    margin-top: 50px;
  }
}
.app_dl a {
  color: var(--color-white);
}

#pickup div {
  width: clamp(280px, 100% - 40px, 750px);
  margin: 0 auto;
}