@charset "utf-8";

/**********
** 変数
***********************************/

:root {
  --font1: 'Noto Sans JP', sans-serif;
  --font2: 'Marcellus', serif;

  /* color */
  --bg: rgba(239, 231, 214, .5);
  --main-color: #ec4d28;
}

/**********
** base
***********************************/

#maincontent {
  overflow: hidden;
  min-width: 1080px;
}

h2 {
  margin: 0;
}

/**********
** mv
***********************************/

.bx-mv_bg {
  padding-top: 40px;
  padding-bottom: 53px;
  position: relative;
}

.bx-mv_bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--bg);
  margin-left: calc(50% - 50vw);
  width: 100vw;
  height: calc(100% + 41px);
}

.bx-mv_img {
  opacity: 0;
  transform: translateY(50px);
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
}

.bx-mv_img.fadeIn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bx-mv_img img {
  aspect-ratio: 1080 / 579;
  object-fit: cover;
  width: 100%;
}

.bx-mv_text {
  margin-top: 58px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  visibility: hidden;
  transition: opacity 1s, visibility 1s, transform 1s;
}

.bx-mv_text.fadeIn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bx-mv_text p {
  font-size: 14px;
  font-weight: 400;
  line-height: calc(24 / 14);
  font-family: var(--font1);
}

/**********
** 商品品切れ時
***********************************/

.boxlink_sold .bx-item_btn{
  display:none;
}

/**********
** 商品
***********************************/

.bx-item:nth-of-type(n+2) {
  margin-top: 174px;
}

.bx-item_bg {
  position: relative;
}

.bx-item_bg::before {
  content: '';
  position: absolute;
  top: 215px;
  left: 0;
  z-index: -1;
  margin-left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  background-color: var(--bg);
}

.bx-item_bg.bx-item_bg_last::before {
  height: calc(100% - 124px);
}

.bx-item_images {
  display: grid;
  grid-template-columns: 541px 1fr;
  max-width: 979px;
  margin-right: auto;
  margin-left: auto;
}

.bx-item_images.bx-item_images_rev {
  grid-template-columns: 1fr 541px;
  max-width: 1029px;
}

.bx-item_img-main img {
  aspect-ratio: 541 / 767;
  object-fit: cover;
  width: 100%;
}

.bx-item_images.bx-item_images_rev .bx-item_img-main {
  order: 2;
}

.bx-item_img-body {
  margin-top: 20px;
}

.bx-item_images.bx-item_images_rev .bx-item_img-body {
  max-width: 420px;
}

.bx-item_title {
  text-align: center;
  position: relative;
}

.bx-item_title::after {
  content: '';
  position: absolute;
  bottom: -82px;
  left: 50%;
  transform: translateX(-50%);
  width: .5px;
  height: 62px;
  background-color: var(--main-color);
}

.bx-item_title h2 {
  font-size: 40px;
  line-height: 1;
  letter-spacing: .06em;
  font-family: var(--font2) !important;
  color: var(--main-color);
  text-transform: uppercase;
}

.bx-item_sub-img {
  margin-top: 91px;
  margin-right: auto;
  margin-left: auto;
  max-width: 421px;
}

.bx-item_sub-img img {
  aspect-ratio: 420 / 588;
  object-fit: cover;
  width: 100%;
}

.bx-item_desc {
  margin-top: 50px;
  text-align: center;
}

.bx-item_list li {
  font-size: 15px;
  font-weight: 400;
  line-height: calc(21 / 15);
  font-family: var(--font1);
  display: flex;
  justify-content: center;
}

.bx-item_list li::before {
  content: '□';
  margin-right: 4px;
}

.bx-item_list li:nth-child(n+2) {
  margin-top: 8px;
}

.bx-item_desc-img {
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
  max-width: 258px;
}

.bx-item_desc-img img {
  aspect-ratio: 258 / 192;
  object-fit: cover;
  width: 100%;
}

.bx-item_detail {
  margin-top: 52px;
}

.bx-item_brand.brandname {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  font-family: var(--font1);
  color: #808384;
}

.bx-item_name.itemname {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  font-family: var(--font1);
}

.bx-item_price {
  margin-top: 0 !important;
}

.bx-item_price .price {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  font-family: var(--font1);
}

.bx-item_btn {
  margin-top: 18px;
}

.bx-item_btn a {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .08em;
  font-family: var(--font1);
  color: white !important;
  display: inline-block;
  min-width: 339px;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 23px;
  padding: 13px 13px 14px;
  position: relative;
  transition: .3s;
  text-decoration: none;
}

.bx-item_btn a::after {
  content: '';
  position: absolute;
  top: 38%;
  right: 48px;
  transform: translateX(-50%) rotate(-45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}

.bx-item_btn a:hover {
  background-color: white;
  color: var(--main-color) !important;
}

.bx-item_btn a:hover::after {
  border-right-color: var(--main-color);
  border-bottom-color: var(--main-color);
}

/*
** ここからnaviPC
***********************************/
#new-item .navi {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  column-gap: 1rem;
  width: 1000px;
  row-gap: 0.75rem;
  padding-top: 10rem;
}

#new-item .other>section,
#new-item .other .moreButton {
  margin-bottom: 7%;
}

#new-item .navi li div::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: solid 1px #5a5a5a;
  border-right: solid 1px #5a5a5a;
  transform: rotate(135deg);
  position: absolute;
  bottom: 14%;
  left: 48%;
  transition: all .4s;
}

#new-item .other .category ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  row-gap: 0.5rem;
}

#new-item .navi li div:hover::after {
  bottom: 5%;
}

#new-item .other .itemList4 li {
  width: 24%;
}

/*** ここからnaviSP
***********************************/

#new-item .navi li img {
  background-color: #f7f7f7;
}

#new-item .other .itemTitle {
  font-family: 'Noto Serif JP', serif !important;
}

#new-item .other .button a {
  font-size: 16px !important;
  background-color: var(--main-color) !important;
  border: 1px solid var(--main-color) !important;
}

#new-item .other .button a:hover {
  background-color: white !important;
  color: var(--main-color) !important;
}

#new-item .other .moreButton a {
  font-size: 16px !important;
}

#new-item .other .moreButton a:hover {
  color: #333 !important;
}


/*** ここからcategory
***********************************/
#new-item .category {
  background-color: #fdeee3;
}

@media(max-width: 520px) {
  /**********
  ** base
  ***********************************/
  #maincontent {
    min-width: 100%;
  }

  /**********
  ** mv
  ***********************************/
  .bx-mv_bg {
    padding-top: 0;
    padding-bottom: 33px;
  }

  .bx-mv_bg::before {
  height: calc(100% + 170px);
  }

  .bx-mv_img img {
    aspect-ratio: 750 / 750;
    object-fit: cover;
    width: 100%;
  }

  .bx-mv_text p {
    font-size: 12px;
  }
  /**********
  ** 商品
  ***********************************/
  .bx-item:nth-of-type(n+2) {
    margin-top: 93px;
  }

  .bx-item_bg::before {
    top: 1076px;
    top: calc(50% + 270px);
    height: 50%;
  }

  .bx-item_bg.bx-item_bg_last::before {
    height: 38%;
  }

  .bx-item_images,
  .bx-item_images.bx-item_images_rev {
    grid-template-columns: repeat(1, 1fr);
  }

  .bx-item_img-main {
    order: 2;
    margin-top: 42px;
    padding-left: 14px;
  }

  .bx-item_images.bx-item_images_rev .bx-item_img-main {
    margin-right: 0;
    padding-right: 14px;
    padding-left: 0;
  }

  .bx-item_img-body {
    display: contents;
  }

  .bx-item_title::after {
    bottom: -38px;
    height: 30px;
  }

  .bx-item_title h2 {
    font-size: 28px;
    line-height: 1.05;
  }

  .bx-item_sub-img {
    order: 3;
    margin-top: 42px;
    max-width: 323px;
  }

  .bx-item_desc {
    margin-top: 37px;
  }

  .bx-item_list {
    margin-right: auto;
    margin-left: auto;
    padding: 0 30px;
    text-align: left;
    width: clamp(375px, 90%, 520px);
  }

  .bx-item_list li {
    font-size: clamp(0.75rem, -0.2813rem + 3.75vw, 0.9375rem);
    letter-spacing: .04em;
    display: inline-flex;
  }

  .bx-item_list li:nth-child(n+2) {
    margin-top: 8px;
  }

  .bx-item_desc-img {
    max-width: 57%;
  }

  .bx-item_detail {
    margin-top: 47px;
  }

  .bx-item_brand.brandname {
    font-size: 11px;
  }

  .bx-item_name.itemname {
    font-size: 14px;
    line-height: 1;
  }

  .bx-item_price .price {
    font-size: 14px;
  }

  .bx-item_btn {
    margin-top: 14px;
  }

  .bx-item_btn a {
    font-size: 14px;
    min-width: 260px;
    background-color: var(--main-color);
    border-radius: 23px;
    padding: 11px 15px 15px;
    position: relative;
  }

  .bx-item_btn a::after {
    right: 36px;
    width: 8px;
    height: 8px;
  }

  /*
  ** ここからnaviSP
  ***********************************/
  #new-item .navi {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 0.75rem;
    width: 100% !important;
  }

  #new-item .navi li div:hover::after {
    bottom: 8%;
  }

  #new-item .other>section,
  #new-item .other .moreButton {
    margin-bottom: 15%;
  }

  #new-item .other .category ul {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.5rem;
  }

  #new-item .other .itemList4 li {
    width: 49%;
  }

  #new-item .other .itemList4 li {
    width: 49%;
  }

  #new-item .navi li div::after {
    bottom: 16%;
  }

}
