@charset "UTF-8";
/* CSS Document */

/*header 白*/
header .menu_inner img {
    filter: invert(1) brightness(2);
}
.openbtn span {
    background: #FFFFFF;
}
.openbtn span:nth-of-type(3) {
    color: #FFFFFF;
}
header .menu_wrapper {
    background: rgba(14,15,23,.4);
}
header .header_menu ul li a img, header .header_menu ul li a svg {
    filter: invert(0);
}

@media (max-width: 768px) {
    header .menu_wrapper {
        background: #262626;
    }
    header .menu_inner img {
        filter: none;
    }
}

/*=================
パンくず
===================*/
._w_bread_name {
  background-color: #08061D;
}
._w_bread_name .-w-wrapper {
  display: flex;
  justify-content: space-between;
}
#bread-list {
  display: flex;
  gap: 46px;
  white-space: nowrap;
}
#bread-list li {
    color: #FFFFFF;
}
#bread-list li a {
  color: #FFFFFF;
  transition: .3s;
}
#bread-list li:nth-of-type(n + 2)::before {
  background-color: #FFFFFF;
}
._w_bread_name .en_name {
  margin: 0;
  padding: 18px 11% 18px 0;
  
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #FFFFFF;
}

@media screen and (max-width:830px) {
  ._w_bread_name .en_name {
    display: none;
  }
}
@media screen and (max-width:768px) {
  #bread-list {
    gap: 30px;
    overflow-x: auto;
  }
}


/*=================
背景
===================*/
#bg_night {
    background: #010101;
    background: linear-gradient(190deg,
    rgba(1, 1, 1, 1) 35%,
     rgba(28, 39, 57, 1) 65%,
      rgba(26, 50, 84, 1) 70%,
       rgba(44, 40, 90, 1) 80%,
        rgba(1, 1, 1, 1) 91%);
    width: 100%;
    height: 100%;
    position: relative;
}
#bg_night::before {
    content: '';
    background: url("/outfield/nightblack/slf/img/starry-sky.webp");
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    display: block;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#bg_night::after {
    content: '';
    background: linear-gradient(180deg,rgba(1, 1, 1, 1) 0%, rgba(1, 1, 1, 1) 100%);
    width: 100%;
    height: 150px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
  #bg_night {
    background: linear-gradient(210deg,
  rgba(1, 1, 1, 1) 35%,
    rgba(28, 39, 57, 1) 48%,
    rgba(26, 50, 84, 1) 55%,
      rgba(44, 40, 90, 1) 80%,
      rgba(1, 1, 1, 1) 91%);
  }
  #bg_night::before {
    background-size: 230%;
  }
}


/*=================
FV
===================*/
#fv {
  padding-top: 7.5rem;
  display: flex;
  gap: 34px;
  margin: 0 10rem;
  position: relative;
  z-index: 1;
}
#fv ._w_text {
  width: 32%;
  padding-top: 9rem;
  color: #FFFFFF;
}
#fv ._w_text .tag {
  font-family: 'Alata', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: center;
  display: inline-block;
  padding: 0 12px;
  border: 0.5px solid #ffffff;
  color: #ffffff;
  margin-bottom: 2.6rem;
}
#fv ._w_text .main_c {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.5;
}
#fv ._w_text .sub_c {
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 1.8px;
  margin-bottom: 2rem;
}
#fv ._w_img {
  width: 68%;
}
#fv ._w_img img {
  width: 100%;
}
/* FV 画像フェードイン */
.fb_fadein {
  animation: fb_fadein 1.6s ease-in-out 0s 1 normal;
}
@keyframes fb_fadein { 
  0% {
    opacity: 0;
  } 
  100% {
    opacity: 1;
  } 
}
/* FVキャッチコピー1 フェードイン */
.fb_fade_catch1 {
  animation: fb_fade_catch1 0.9s ease-in-out 0.8s forwards;
  opacity: 0;
}
@keyframes fb_fade_catch1 {
  0% {
    opacity: 0;
  transform: translateY(20%);
  }
  100% {
    opacity: 1;
  transform: translateY(0);
  }
}
/* FVキャッチコピー2 フェードイン */
.fb_fade_catch2 {
  animation: fb_fade_catch2 1.2s ease-in-out 1.3s forwards;
  opacity: 0;
}
@keyframes fb_fade_catch2 {
  0% {
    opacity: 0;
    transform: translateY(30%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* FVキャッチコピー3 フェードイン */
.fb_fade_catch3 {
  animation: fb_fade_catch2 1.5s ease-in-out 1.8s forwards;
  opacity: 0;
}
@keyframes fb_fade_catch2 {
  0% {
    opacity: 0;
    transform: translateY(30%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:1024px) {
  #fv {
    padding-top: 0rem;
    display: block;
    margin: 0;
    position: relative;
  }
  #fv ._w_text {
    position: absolute;
    width: 80%;
    padding-top: 0rem;
    left: 4vw;
    bottom: 4%;
    color: #ffffff;
  }
  #fv ._w_text .tag {
    margin-bottom: 1.4rem;
  }
  #fv ._w_text .main_c {
    font-size: 2.8rem;
  }
  #fv ._w_text .sub_c {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
  #fv ._w_text .texl_l {
    font-size: 1.5rem;
    margin-bottom: .5rem;
  }
  #fv ._w_text .texl_m {
    font-size: 1.4rem;
  }
  #fv ._w_img {
    width: 100%;
    height: calc(82vh - 60px);
  }
  #fv ._w_img img {
    height: 100%;
    object-fit: cover;
  }
}
/*SL catch位置調整*/
@media (max-width: 480px) {
    #fv ._w_text {
      left: 44%;
      width: fit-content;
    }
}


/*=================
FEATURE
===================*/
#feature {
    color: #FFFFFF;
}
/* START Feature スライダー画像 */
.spacer_top {
  height: 11.2rem;
}
/* セクション全体 */
#feature.scroll-section {
  position: relative;
  height: 400vh; /* スクロール領域 */
}
/* 固定表示エリア */
#feature .sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
/* タイトル */
#feature h2 {
  font-family: "Alata", sans-serif;
  font-size: 4rem;
  letter-spacing: 4px;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
/* 画像部分 */
#feature .images {
  position: relative;
  width: 77.84%;
  height: 60vh;
  width: 82%;
  height: 77vh;
  top: 48px;
}
#feature .images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s;
}
#feature .images img.active {
  opacity: 1;
}
/* テキスト部分 */
#feature .texts {
  position: relative;
  width: 23.4%;
  right: 11%; /* 画像と少し重なる */
  background: #090909;
  padding: 0 5.5rem 0;
  box-sizing: content-box;
  min-height: 328px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#feature .text-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
}
#feature .text-slide h3 {
  font-size: 1.55rem;
  letter-spacing: 2px;
}
#feature .text-slide.active {
  opacity: 1;
  transform: translateX(0);
}
#feature .text-slide.exit-left {
  transform: translateX(-100%);
  opacity: 0;
}
/* ページ送りドット */
#feature .dots {
  position: absolute;
  bottom: 53px;
  left: 50%;
  transform: translateX(-50%);
}
#feature .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: transparent;
}
#feature .dot.active {
  background: #ffffff;
}
@media screen and (max-width:768px) {
  .spacer {
    height: 8rem;
  }
  /* セクション全体 */
  #feature.scroll-section {
    height: 400vh; /* スクロール領域 */
  }
  /* 固定表示エリア */
  #feature .sticky-wrapper {
    height: 90vh;
    flex-direction: column;
    top: 60px;
  }
  /* タイトル */
  #feature  h2 {
    position: initial;
    transform: initial;
  }
  /* 画像部分 */
  #feature .images {
    width: 100%;
    height: 80vh;
    top: 32px;
  }
  /* テキスト部分 */
  #feature .texts {
    position: initial;
    width: 72%;
    padding: 0 3rem 0;
    min-height: 218px;
    /* margin-top: -126px; */
    z-index: 1;
  }
  #feature .text-slide {
    font-size: 1.4rem;
  }
  /* ページ送りドット */
  #feature .dots {
    bottom: 22px;
  }
}
/* END Feature スライダー画像 */
.spacer_bottom {
  height: 3.7rem;
}

/* START Feature イメージ画像 */
.feature_img {
  padding: 0 8% 9rem;
  margin-top: 160px;
}
.feature_img .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 112px;
}
.feature_img .wrapper .img1 {
  padding-top: 9vh;
  width: 58%;
}
.feature_img .wrapper .img2 {
  margin: -18vh 6vw 0 0;
  width: 31%;
}
.feature_img .wrapper .img1 img, .feature_img .wrapper .img2 img {
  width: 100%;
}
@media screen and (max-width:1024px) {
  .feature_img {
    padding-bottom: 4.5rem;
    margin-top: 60px;
  }
  .feature_img .wrapper {
    flex-direction: column-reverse;
    gap: 1.9rem;
  }
  .feature_img .wrapper .img1 {
    padding-top: 0;
    /* width: 80%; */
    width: 90%;
  }
  .feature_img .wrapper .img2 {
    margin: 0;
    margin: 0 0 0 auto;
    width: 51.9%;
  }
}
/* END Feature イメージ画像 */


/*=================
Other Feature
===================*/
#other_feature {
  padding: 0 8% 21.6rem;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
}
#other_feature .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 21px;
}
#other_feature .wrapper .item {
  width: calc(25% - 63px / 4);
  text-align: center;
}
#other_feature .wrapper .item img {
  margin-bottom: 10px;
}
#other_feature .wrapper .item p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1.4px;
}
@media screen and (max-width:768px) {
  #other_feature {
    padding: 0 8% 8rem;
  }
  #other_feature .wrapper {
    gap: 20px 13px;
  }
  #other_feature .wrapper .item {
    width: calc(50% - 13px / 2);
  }
  #other_feature .wrapper .item img {
    margin-bottom: 4px;
  }
  #other_feature .wrapper .item p {
    font-size: 1.4rem;
  }
}
/* END Other Feature */


/*=================
製品カート周り 
===================*/
#main-item {
    position: relative;
    z-index: 1;
}
#main-item .wrapper {
    display: flex;
    column-gap: 120px;
    flex-wrap: wrap;
}
#main-item .left {
    width: calc(45% - 60px);
}
#main-item .right {
    width: calc(55% - 60px);
}

@media (max-width: 1200px) {
    #main-item .wrapper {
        column-gap: 60px;
    }
    #main-item .left {
        width: calc(45% - 30px);
    }
    #main-item .right {
        width: calc(55% - 30px);
    }
}
@media (max-width: 768px) {
  #main-item .wrapper {
    flex-direction: column;
    padding-left: 6%;
    padding-right: 6%;
  }
  #main-item .left,#main-item .right {
    width: 100%;
  }
  
}

#main-item .image_wrap {
    width: 100%;
}

/*swiper*/
#main-item .image_wrap .swiper-slide img {
    aspect-ratio: 4 / 3;
    max-height: 400px;
    object-fit: cover;
}

/*選択外を半透明に*/
#product_thumbs .swiper-slide {
    opacity: 0.7;
}
#product_thumbs .swiper-slide-thumb-active {
  opacity: 1;
  /* border: 2px solid #FFFFFF;
  border-radius: 4px; */
}
/*選択枠*/
#product_thumbs {
  position: relative;
  margin-top: 30px;
}
.thumb-indicator {
  position: absolute;
  border: 2px solid #fff;
  border-radius: 4px;
  pointer-events: none;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: 1;
}

/*メインカート周りテキスト*/
#main-item .text_wrap {
    color: #FFFFFF;
    z-index: 1;
    line-height: 1.5;
}
#main-item .text_wrap h2 {
    margin-bottom: 20px;
}
#main-item .text_wrap h2 .product_name {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 2px;
}
#main-item .text_wrap .product_name_sub {
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}
#main-item .text_wrap h2 .product_number {
    font-size: 3.4rem;
    font-weight: 600;
}
#main-item .text_wrap .caution {
    font-size: 1.3rem;
    font-weight: 500;
}
#main-item .text_wrap .price {
    font-size: 2.7rem;
    font-weight: 600;
    margin-bottom: 20px;
}
#main-item .text_wrap .price small {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    #main-item .text_wrap h2 {
        margin-top: 28px;
    }
    #main-item .text_wrap h2 .product_name {
        font-size: 1.7rem;
        font-weight: 500;
        letter-spacing: 2px;
    }
    #main-item .text_wrap h2 .product_number {
        font-size: 2.8rem;
        font-weight: 600;
    }
}

/*グラフィックゴトク説明*/
.graphic-trivet_wrap {
  max-width: 390px;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 15px 24px 16px;
  margin-bottom: 28px;
}
.graphic-trivet_wrap .main_text {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #1F2F72;
  padding-bottom: 6px;
  margin-bottom: 18px;
  text-align: center;
  position: relative;
}
.graphic-trivet_wrap .main_text::after {
  content: '';
  background: #65709f;
  height: 1px;
  width: 80px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.graphic-trivet_wrap img {
  display: block;
  object-fit: contain;
  max-width: 280px;
  height: auto;
  margin: 0 auto 6px;
}
.graphic-trivet_wrap .sub_text {
  color: #1F2F72;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}
.graphic-trivet_wrap .text {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.55;
  color: #181818;
  letter-spacing: 0.6px;
}

@media (max-width: 768px) {
  .graphic-trivet_wrap {
    width: 100%;
    padding: 12px 24px 13px;
  }
  .graphic-trivet_wrap img {
    max-width: 265px;
  }
}
@media (max-width: 350px) {
  .graphic-trivet_wrap img {
    max-width: 220px;
  }
}


/*ボタン*/
.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;
  }
  #related-items .item_wrap .cart_btn_wrap .btn .jre.soon::before {
    width: 87px;
    transform: translate(-145%, -32%);
  }
}

/*カート*/
.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;
    }
}


/*購入特典*/
#limited-offer_wrap {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 24px 40px;
    margin-top: 30px;
    max-width: 530px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#limited-offer_wrap h3 {
    color: #1F2F72;
    text-align: center;
}
#limited-offer_wrap h3 span {
    display: block;
}
#limited-offer_wrap h3 .en {
    font-family: "Alata", sans-serif;
    font-size: 2rem;
    letter-spacing: 1.8px;
}
#limited-offer_wrap h3 .jp {
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    padding-bottom: 16px;
    position: relative;
}
#limited-offer_wrap h3 .jp::after {
    content: '';
    background: url("/outfield/nightblack/slf/img/limited_offer_line.svg") no-repeat;
    position: absolute;
    width: 290px;
    height: 12px;
    background-size: contain;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
#limited-offer_wrap .text_wrap {
    color: #181818;
    text-align: center;
    width: 100%;
    margin-top: 16px;
    font-size: 1.3rem;
    font-weight: 500;
}
#limited-offer_wrap .image_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    margin-top: 24px;
}
#limited-offer_wrap .image_wrap img {
    object-fit: contain;
    max-height: 200px;
}
#limited-offer_wrap .image_wrap img.img1 {
    width: calc(45% - 4px);
}
#limited-offer_wrap .image_wrap img.img2 {
    width: calc(55% - 4px);
}

/*商品外部リンク*/
.ex_link_wrap {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ex_link_wrap a {
    color: #FFFFFF;
    position: relative;
    padding-right: 12px;
    font-size: 1.4rem;
    /* text-decoration: underline; */
    transition: 0.3s;
}
.ex_link_wrap a::after {
    content: '';
    background:url("/outfield/img/common/ex-link.svg") no-repeat;
    background-size: contain;
    width: 13px;
    height: 13px;
    position: absolute;
    bottom: 2.8px;
    right: -6px;
}
.ex_link_wrap a.inner_link::after {
    content: none;
}
.ex_link_wrap a:hover {
    opacity: 0.7;
}


/*仕様*/
#main-item table {
    color: #FFF;
    width: 100%;
    margin-top: 60px;
    border-top: 1px solid #A0A0A0;
    border-bottom: 1px solid #A0A0A0;
    border-collapse: collapse;
}
#main-item table tr {
    text-align: left;
}
#main-item table tr th {
    min-width: 10em;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 7px 0;
}
#main-item table tr td {
    font-size: 1.4rem;
    margin: 0;
    padding: 7px 0;
    vertical-align: top;
}
#main-item table tr:first-of-type th,#main-item table tr:first-of-type td {
    padding-top: 20px;
}
#main-item table tr:last-of-type th,#main-item table tr:last-of-type td {
    padding-bottom: 20px;
}


/*=================
Relates Items
===================*/
#related-items {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 90px 60px 96px;
    margin-top: 120px;
    position: relative;
    z-index: 1;
}
#related-items h2 {
    font-family: "Alata", sans-serif;
    font-size: 4rem;
    letter-spacing: 2.8px;
    line-height: 1.5;
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 980px) {
    #related-items {
        padding: 60px 30px;
    }
}
@media (max-width: 768px) {
    #related-items {
        padding: 40px 30px;
        margin: 100px 24px;
    }
    #related-items h2 {
        font-size: 2.8rem;
        margin-bottom: 24px;
    }
}
@media (max-width: 600px) {
    #related-items {
        padding: 40px 16px;
    }
}

/*ボックス*/
.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 {
    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 .ex_link_wrap a {
    color: #181818;
    font-weight: 600;
}
.item_wrap .ex_link_wrap a::after {
    background:url("/outfield/img/common/ex-link_bl.svg") no-repeat;
    background-size: contain;
}

.item_wrap .cart_btn_wrap {
    gap: 8px;
}
.item_wrap .ex_link_wrap {
    margin-top: 20px;
}
.item_wrap .ex_link_wrap a {
    font-size: 1.5rem;
}

.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;
    }
}

/*ナイトブラックのとき*/
@media (max-width: 768px) {
    #bg_night .item_wrap .cart_btn_wrap .btn .btn-cart::before {
        transform: translate(-320%, -49%);
    }

    #bg_night .item_wrap .cart_btn_wrap .btn a.rakuten::before {
        width: 66px;
    }
    #bg_night .item_wrap .cart_btn_wrap .btn a.jre::before {
        width: 96px;
        height: 13px;
        top: 50%;
        left: 50%;
        transform: translate(-104%, -32%);
    }

    #bg_night .item_wrap .ex_link_wrap a {
        font-size: 1.3rem;
        letter-spacing: 0.2px;
    }
}


/*=================
OTHER PRODUCTS
===================*/
#other_products {
    margin-top: 140px;
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    padding-bottom: 100px;
}
/*ブラック背景*/
#bg_night2 {
    background: linear-gradient(180deg,rgba(7, 8, 30, 1) 0%, rgba(26, 57, 95, 1) 52%, rgba(22, 26, 84, 1) 72%, rgba(8, 12, 39, 1) 100%);
    width: 100%;
    height: 100%;
    position: relative;
}
#bg_night2::before {
    content: '';
    background: url("/outfield/nightblack/szf/img/starry-sky.webp");
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    display: block;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

#other_products h2 {
    color: #FFFFFF;
    font-family: "Alata", sans-serif;
    font-size: 4rem;
    letter-spacing: 2.8px;
    line-height: 1.5;
    margin-bottom: 40px;
    text-align: center;
}

#other_products .wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 680px;
    align-items: flex-end;
    margin: 0 auto;
}

#other_products .wrapper .item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 165px;
}

#other_products .wrapper .item a {
    color: #FFFFFF;/*ブラック*/
    position: relative;
    transition: 0.3s;
}

#other_products .wrapper .item .image_wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s;
}

#other_products .wrapper .item .text_wrap {
    margin-top: 3px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    justify-content: flex-end;
}
#other_products .wrapper .item .text_wrap .product_name {
    line-height: 1.3;
    min-height: calc(1.5em * 2);
    font-size: 1.3rem;
}
#other_products .wrapper .item .text_wrap .product_number {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.3;
}

#other_products .wrapper .item .image_wrap img.sz {
    width: 142px;
}
#other_products .wrapper .item .image_wrap img.cpf25 {
    width: 120px;
}
#other_products .wrapper .item .image_wrap img.cpf33 {
    width: 152px;
}
#other_products .wrapper .item .image_wrap img.sl{
    width: 162px;
}

#other_products .wrapper .item a:hover .image_wrap img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    #other_products {
        margin-top: 100px;
    }
    #other_products h2 {
        font-size: 2.8rem;
    }

    #other_products .wrapper {
        gap: 12px;
    }
    #other_products .wrapper .item .text_wrap .product_name {
        font-size: 0.9rem;
    }
    #other_products .wrapper .item .text_wrap .product_number {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    #other_products .wrapper .item .image_wrap img.sz {
      width: 79px;
    }
    #other_products .wrapper .item .image_wrap img.cpf25 {
        width: 70px;
    }
    #other_products .wrapper .item .image_wrap img.cpf33 {
        width: 84px;
    }
    #other_products .wrapper .item .image_wrap img.sl{
        width: 98px;
    }
}





/*カートに入れる*/
.sp380 {
  display: none;
}
@media (max-width: 400px) {
  .sp380 {
    display: block;
  }
}

.in-cart_pop {
  width: 100%;
  max-height: 92vh !important;
  overflow: auto;
}
.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 p {
    font-size: 2.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.in-cart_pop .box ul {
  padding-left: 1em;
}
.in-cart_pop .box ul li {
  font-weight: 500;
  line-height: 1.7;
  padding-left: 0.08em;
  list-style-type: disc;
}
.in-cart_pop .box ul .red {
  color: #e12c2c;
}
.in-cart_pop .box ul li img {
  margin: 15px 0;
}
.in-cart_pop .box ul li ul li::marker {
  content: "・";
}
.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 .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 {
    position: relative;
}
.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;
}
.in-cart_pop .box .button form .addCart:hover {
    cursor: pointer;
    opacity: 0.7;
}

/*===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===*/

@media (max-width: 768px) {
    .in-cart_pop .box {
        padding: 40px 5%;
        margin: 0 20px;
    }
   .in-cart_pop .box .alert strong {
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.45;
        display: block;
        margin-bottom: 20px;
    }
    .in-cart_pop .box .alert p {
        font-size: 1.7rem;
        font-weight: 500;
        margin-bottom: 20px;
    }
  .in-cart_pop .box .button > a {
        margin-right: 15px;
  }
    .in-cart_pop .box .button a {
        padding: 10px 35px;
  }
}

@media screen and (max-width: 460px) {
    .in-cart_pop .box ul {
        margin-left: 0;
        padding-left: 15px
    }
}
@media screen and (max-width: 380px) {
     .in-cart_pop .box .alert strong {
       font-size: 2.3rem;
         line-height: 1.4;
    }
}

/*===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===*/

.lity {
    background: rgba(0,0,0,.7);
}

#cta {
    margin-top: 0;
}