#graphic-trivet {
  background-color: #F9F9F9;
  color: #181818;
}

/* 
----------------
MV
----------------
*/
#mv {
  padding: 7.5rem 90px 0;
  margin-bottom: 8.3rem;
}
#mv ._w_mv {
  display: flex;
  gap: 34px;
}
#mv ._w_text {
  width: 32%;
  padding-top: 9rem;
}
#mv ._w_text .heading {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5;
  margin-bottom: 3.6rem;
}
#mv ._w_text p {
  font-weight: 700;
  font-size: 1.6rem;
}
#mv ._w_img {
  width: 68%;
}
#mv ._w_img img {
  width: 100%;
}
@media screen and (max-width:1400px) {
  #mv {
    padding: 0 80px;
  }
  #mv ._w_mv {
    display: block;
    gap: 0;
    position: relative;
  }
  #mv ._w_text {
    position: absolute;
    width: auto;
    padding-top: 0;
    left: 4vw;
    bottom: 6%;
    color: #181818;
  }
  #mv ._w_text .heading {
    margin-bottom: 2.5rem;
  }
  #mv ._w_img {
    width: 100%;
  }
}

@media screen and (max-width:768px) {
  #mv {
    margin-bottom: 6rem;
    padding: 0;
  }
    #mv ._w_text {
    width: 90%;
    left: 6vw;
  }
  #mv ._w_text .heading {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  #mv ._w_text p {
    font-size: 1.5rem;
  }
}

/* 
----------------
START 画像一覧
----------------
*/
#image_list {
  margin-bottom: 12rem;
}
#image_list ._w_img {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#image_list .img_item {
  width: calc(50% - 20px / 2);
}
#image_list .img_item img {
  width: 100%;
  aspect-ratio: 1 / 0.98;
  object-fit: cover;
}

@media screen and (max-width:768px) {
  #image_list {
    margin-bottom: 8rem;
  }
  #image_list ._w_img {
    gap: 10px;
  }
  #image_list .img_item {
    width: calc(50% - 10px / 2);
  }
}
/* 
----------------
END 画像一覧
----------------
*/

/* 
-----------------
START カート
-----------------
*/
#related-items {
  border-radius: 10px;
  padding: 0px 60px 0px;
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  #related-items {
    padding: 60px 30px;
  }
}
@media (max-width: 768px) {
  #related-items {
    padding: 40px 30px;
    margin: 0px 24px;
  }
}
@media (max-width: 600px) {
  #related-items {
      padding: 0;
  }
}

/*ボックス*/
.item_wrap {
  border: 1px solid #8A8A8A;
  padding: 30px 60px 32px;
  display: flex;
  gap: 80px;
  align-items: center;
}
.item_wrap .image_wrap {
  width: calc(50% - 80px);
}
.item_wrap .text_wrap {
  color: #000000;
  width: 50%;
}
.item_wrap .text_wrap h3,.item_wrap .text_wrap .price {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.item_wrap .text_wrap h3 {
  margin-bottom: 9px;
  line-height: 1.4;
}
.item_wrap .text_wrap .price small {
  font-size: 1.5rem;
}
.item_wrap .text_wrap .text {
  font-size: 1.5rem;
  letter-spacing: 0.8px;
  line-height: 1.5;
}
.item_wrap .text_wrap .text:nth-of-type(n + 2) {
  margin-top: 8px;
}

.item_wrap .cart_btn_wrap {
  gap: 8px;
}
.item_wrap .ex_link_wrap {
  margin-top: 20px;
}
.ex_link_wrap a {
  color: #181818;
  font-weight: 600;
  font-size: 1.5rem;
  position: relative;
  padding-right: 12px;
}
.ex_link_wrap a::after {
  content: '';
  width: 13px;
  height: 13px;
  position: absolute;
  bottom: 2.8px;
  right: -6px;
  background:url("/outfield/img/common/ex-link_bl.svg") no-repeat;
  background-size: contain;
}

/*ボタン*/
.cart_btn_wrap {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart_btn_wrap .btn {
  max-width: 390px;
  width: auto;
}
.cart_btn_wrap .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 0;
  border-radius: 32px;
  font-size: 1.6rem;
  letter-spacing: 0.8px;
  font-weight: 600;
  line-height: 1.5;
  background: #FFFFFF;
  border: 1px solid #181818;
  transition: 0.3s;
}
.cart_btn_wrap .btn a:hover {
  opacity: 0.8;
}

/*楽天*/
.cart_btn_wrap .btn a.rakuten {
  background: #BF0000;
  border: none;
  color: #FFFFFF;
  font-weight: 500;
  padding-left: 5.55em;
  position: relative;
}
.cart_btn_wrap .btn a.rakuten::before {
  position: absolute;
  content: '';
  background: url("/outfield/img/common/btn_rakuten.svg") no-repeat;
  background-size: contain;
  width: 70px;
  height: 35px;
  top: 50%;
  left: 47%;
  transform: translate(-110%, -36%);
}
/*楽天 予告*/
.cart_btn_wrap .btn .rakuten.soon {
  pointer-events: none;
  font-size: 1.5rem;
  padding-left: 7.3em;
}
.cart_btn_wrap .btn .rakuten.soon::before {
  background-size: contain;
  width: 66px;
  height: 36px;
  top: 50%;
  left: 41%;
  transform: translate(-138%,-36%);
}

/*JRE*/
.cart_btn_wrap .btn a.jre {
  background: #008303;
  border: none;
  color: #FFFFFF;
  font-weight: 500;
  padding-left: 5.55em;
  position: relative;
}
.cart_btn_wrap .btn a.jre::before {
  position: absolute;
  content: '';
  background: url("/outfield/img/common/cta_jre.svg") no-repeat;
  background-size: contain;
  width: 112px;
  height: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-105%, -32%);
}
/*jre 予告*/
.cart_btn_wrap .btn .jre.soon {
  pointer-events: none;
  font-size: 1.5rem;
  padding-left: 7.3em;
}
.cart_btn_wrap .btn .jre.soon::before {
  left: 41%;
  width: 100px;
  transform: translate(-115%, -32%);
}

@media (max-width: 768px) {
  #related-items .cart_btn_wrap .btn .rakuten.soon,#related-items .cart_btn_wrap .btn .jre.soon {
    font-size: 1.35rem;
    padding-left: 7.2em;
  }
}

/*カート*/
.cart_btn_wrap .btn .btn-cart {
  position: relative;
  padding-left: 3em;
}
.cart_btn_wrap .btn .btn-cart::before {
  content: '';
  background: url("/outfield/img/common/icon_cart_bl.svg") no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-360%, -49%);
}

.cart_btn_wrap .btn .pre-release {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 0;
  border-radius: 32px;
  font-size: 1.6rem;
  letter-spacing: 0.8px;
  font-weight: 600;
  line-height: 1.5;
  background: #E8E8E8;
  transition: 0.3s;
  color: #686565;
}
.cart_btn_wrap .btn .end {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 0;
  border-radius: 32px;
  font-size: 1.6rem;
  letter-spacing: 0.8px;
  font-weight: 600;
  line-height: 1.5;
  background: #DDD;
  transition: 0.3s;
}

@media (max-width: 980px) {
  .cart_btn_wrap .btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 0;
    border-radius: 32px;
    font-size: 1.6rem;
  }
  .cart_btn_wrap .btn a {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
  .cart_btn_wrap .btn a.t_lg {
    font-size: 1.1rem;
    letter-spacing: 0.2px;
  }
  .cart_btn_wrap .btn .btn-cart::before {
    top: 50%;
    left: 50%;
    transform: translate(-360%, -49%);
  }
}
@media (max-width: 768px) {
  .cart_btn_wrap .btn a.rakuten,.cart_btn_wrap .btn a.jre {
    padding-left: 7em;
  }
  .cart_btn_wrap .btn {
    width: 100%;
    max-width: none;
  }
}

.item_wrap:nth-of-type(n + 2) {
  margin-top: 30px;
}

@media (max-width: 1280px) {
  .item_wrap {
    padding: 24px 30px 24px;
    gap: 40px;
  }
  .item_wrap .image_wrap {
    width: calc(50% - 40px);
  }
}

@media (max-width: 800px) {
  .item_wrap {
    gap: 20px;
  }
  .item_wrap .image_wrap {
    width: calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .item_wrap {
    flex-direction: column;
    padding: 24px 16px;
  }
  .item_wrap .image_wrap {
    width: 100%;
  }
  .item_wrap .text_wrap {
    width: 100%;
  }
  .item_wrap .text_wrap h3 {
    font-size: 1.7rem;
    margin-bottom: 9px;
    line-height: 1.3;
  }
  .item_wrap .text_wrap .price {
    font-size: 1.7rem;
  }
  .item_wrap .text_wrap .text {
    font-size: 1.4rem;
  }

  .item_wrap .ex_link_wrap {
    margin-top: 12px;
  }
  .item_wrap .ex_link_wrap a {
    font-size: 1.4rem;
  }
}
/* 
-----------------
END カート
-----------------
*/

/* 
----------------------
START カートポップアップ
----------------------
*/
.in-cart_pop .box {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px;
  background: #fff;
  color: #0a0a0a;
}
.in-cart_pop .box * {
  font-size: 14px;
}
.in-cart_pop .box .alert {
  color: #e12c2c;
  text-align: center;
}
.in-cart_pop .box .alert strong {
  font-size: 2.7rem;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.in-cart_pop .box .alert strong .sp380 {
  display: none;
}
.in-cart_pop .box ul {
  padding-left: 1em;
}
.in-cart_pop .box ul li {
  line-height: 1.7;
  padding-left: 0.08em;
  list-style-type: disc;
  font-weight: 600;
}
.in-cart_pop .box ul .red {
  color: #e12c2c;
}
.in-cart_pop .box .button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.in-cart_pop .box .button > a {
  margin-right: 30px;
  background: #acacac;
  padding: 10px 30px;
  border-radius: 4px;
  color: #070707;
}
.in-cart_pop .box .button form .arrow {
  position: relative;
}
.in-cart_pop .box .button form .addCart {
  background: #8FB217;
  border: none;
  padding: 10px 35px 10px 30px;
  border-radius: 4px;
  color: #fff;
  letter-spacing: 0.05em;
}
.in-cart_pop .box .button form .arrow::after {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1.5px #fff !important;
  border-right: solid 1.5px #fff !important;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  right: 1.5em;
}
@media screen and (max-width:768px) {
  .in-cart_pop .box {
    padding: 40px 5%;
    margin: 0 20px;
  }
  .in-cart_pop .box .alert strong {
    font-size: 2rem;
  }
  .in-cart_pop .box .button a {
    padding: 10px 35px;
  }
  .in-cart_pop .box .button > a {
    margin-right: 15px;
  }
}

@media screen and (max-width:460px) {
  .in-cart_pop .box ul {
    padding-left: 15px;
  }
}

@media screen and (max-width:380px) {
  .in-cart_pop .box .alert strong .sp380 {
    display: block;
  }
}

@media screen and (max-width:330px) {
  .in-cart_pop .box .button {
    flex-direction: column;
    gap: 15px;
  }
  .in-cart_pop .box .button > a {
    margin-right: 0px;
  }
}


/*===2ステップ用　追加 PC===*/
.in-cart_pop.steps .box {
  width: 90vw;
  max-width: 980px;
  min-height: 88vh;
  padding: 40px 60px;
  background: #fff;
  margin: auto;
  border-radius: 8px;
  box-sizing: border-box;
}
.in-cart_pop.steps .alert b {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.2px;
  font-weight: 600;
  color: #181818;
  margin-bottom: 20px;
}

/*step*/
.step-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 60px;
    transition: opacity 0.3s ease;
}
.step-content.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}
.step-content.inactive {
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}
.step-content.step2.active {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
/*選択して次へボタン*/
.in-cart_pop.steps .box .button > a.to-step2 {
  background: #8FB217;
  color: #FFF;
}
/*サムネイル*/
.cart_pop_thumbs {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.cart_pop_thumbs .tb {
  width: calc((100% - 48px) / 5);
  max-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cart_pop_thumbs img {
  width: 80px;
  height: 80px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  opacity: 0.4;
}
.cart_pop_thumbs .tb.selected img {
  border-color: #454546;
  border-radius: 50%;
  opacity: 1;
}
.cart_pop_thumbs .tb:nth-of-type(3) img {
  padding: 0.2px 0.2px 0.2px 0.2px;
}
.cart_pop_thumbs .tb:nth-of-type(4) img {
  padding: 0.5px 1.2px 0.3px 0px;
}
.cart_pop_thumbs .tb:nth-of-type(5) img {
  padding: 0.5px 1.2px 0.3px 0.3px;
}

/*プレビュー*/
.preview-area {
  width: 70%;
  margin: 0 auto;
}
.preview-area > div{
  display: flex;
  gap: 20px;
  align-items: center;
}
.preview-area img {
  width: calc(50% - 10px);
}
.preview-name {
  text-align: center;
  margin-top: 10px;
  font-size: 1.7rem;
  font-weight: 500;
}

.in-cart_pop.steps .box {
  width: 90vw;
  max-width: 980px;
  min-height: 88vh;
  padding: 40px 60px;
  background: #fff;
  margin: auto;
  border-radius: 8px;
  box-sizing: border-box;

  /* t 追加 */
  min-height: 70vh;
  max-height: 88vh;
}

.step-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 60px;
    transition: opacity 0.3s ease;

  /* t 追加 */
  height: 100%;
  overflow: scroll;
}
/*===2ステップ用　追加 PC end===*/

/*===2ステップ用 SP　追加===*/
@media (max-width: 768px) {
    .step-content {
      padding: 36px 20px;
    }
    .in-cart_pop.steps .alert b {
      font-size: 1.7rem;
      letter-spacing: 0;
      text-align: left;
    }
    .cart_pop_thumbs {
      flex-wrap: wrap;
      gap: 0;
    }
    .cart_pop_thumbs .tb {
      width: calc((100% - 24px) / 3);
    }
    .cart_pop_thumbs img {
      width: 72px;
      height: 72px;
    }
    .in-cart_pop.steps .box {
      min-height: 82vh;
      padding: 0;
    }
    .preview-area {
      width: 100%;
    }
    .in-cart_pop.steps .box .button a {
        padding: 10px 22px;
    }
}
/*===2ステップ用 SP　追加 end===*/



/* 
----------------------
END カートポップアップ
----------------------
*/