/* CSS Document */

body {
  background-color: #FFFFFF;
}

/*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;
  }
}

/*=================
フェード
===================*/
@media (max-width: 768px), (max-height: 715px) {
  .fade-sp {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .fade-sp.is-active {
    opacity: 1;
    transform: translateY(0);
  }
}


/*=================
FV
===================*/
#fv {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#fv .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
/* #fv picture,#fv img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
} */

#fv .sp {
  display: none;
}
@media (max-width: 768px) {
  #fv .sp {
    display: block;
  }
  #fv .pc {
    display: none;
  }
}

/*fv catch bb*/
#fv .img_bb {
  position: relative;
  width: 100%;
  height: 100%;
}
#fv .img_bb .pc {
  object-position: 50% 20%;
  object-fit: cover;
  width: 100%;
  height: 100%;

}
#fv .img_bb .catch_text {
  position: absolute;
}
#fv .img_bb .catch1 {
  position: absolute;
  width: 60%;
  height: auto;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
  mix-blend-mode: soft-light;
} 
#fv .img_bb .catch2 {
  position: absolute;
  width: 88%;
  height: auto;
  bottom: 40px;
  left: 48%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #fv .img_bb .base_sp {
    width: 100%;
    height: 100%;
    object-position: 50% 29%;
    object-fit: cover;
  }
  #fv .img_bb .catch2 {
    width: 92%;
    left: 50%;
    bottom: 60px;
  }
}

/* FV 画像フェードイン */
.fb_fadein {
  animation: fb_fadein 1.6s ease-in-out 0s 1 normal;
}
@keyframes fb_fadein { 
  0% {
    opacity: 0;
  } 
  100% {
    opacity: 1;
  } 
}

@media (max-width: 768px) {
  /*共通*/
  #fv {
      height: calc(100vh - 60px);
  }
}


/*=================
D.H.E.システム
===================*/
#dhe {
  background: #0B0B0B;
  background: #060606;
  color: #FFF;
  text-align: center;
  height: 180vh;
  position: relative;
}
#dhe::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(6, 6, 6, 1) 50%);
  top: -60px;
  left: 0;
}
#dhe .sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#dhe .dhe-title {
  font-size: 5.6rem;
  font-weight: 800;
  letter-spacing: 5px;
  line-height: 1.6;
  margin-bottom: 4rem;
  -webkit-text-fill-color: #fff;
  overflow: hidden;
  position: relative;
}
#dhe .dhe-title span {
  display: inline-block;
  background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 185, 161, 1) 12%, rgba(252, 250, 249, 1) 32%, rgba(189, 216, 248, 1) 60%, rgba(144, 178, 219, 1) 78%, rgba(255, 255, 255, 1) 100%); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* transform: translateY(100%); */
}
/* #dhe .dhe-title.is-active span {
  animation: revealUp 0.8s ease forwards;
  animation-delay: 0.5s;
} */

/* @keyframes revealUp {
  to {
    transform: translateY(0);
  }
} */

#dhe .dhe-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0B0B0B;
  background: #060606;

  transform: translateX(0);
}
#dhe .dhe-title.is-active::after {
  animation: wipe 0.8s ease forwards;
}
@keyframes wipe {
  to {
    transform: translateX(100%);
  }
}

#dhe .catch {
  opacity: 0;
  transform: translateY(40px);
}
#dhe .catch1 .text_s {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 3.3px;
  margin-bottom: 9px;
}
#dhe .catch1 .text_l {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 3.2px;
  margin-bottom: 5.5rem;
}
#dhe .catch2 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 2.2;
}

#dhe .catch1.is-active {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.9s;
}
#dhe .catch2.is-active {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.5s;
}

#dhe .catch .sp620 {
  display: none;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  #dhe .dhe-title {
    font-size: 5rem;
  }
  #dhe .catch2 {
    font-size: 2rem;
  }
}
@media (max-width: 620px) {
  #dhe .catch .sp620 {
    display: block;
  }
}
@media (max-width: 460px) {
  #dhe {
    height: 120vh;
  }
  #dhe .dhe-title {
    font-size: 4rem;
    letter-spacing: 3px;
  }
  #dhe .catch1 .text_s {
    font-size: 1.4rem;
    letter-spacing: 2x;
    margin-bottom: 9px;
  }
  #dhe .catch1 .text_l {
    font-size: 2.8rem;
    letter-spacing: 2px;
    margin-bottom: 4rem;
  }
  #dhe .catch2 {
    font-size: 1.7rem;
  }
}

/*=================
Appeal Point
===================*/
#appeal {
  height: 500vh;
  background: #0B0B0B;
  background: #060606;
  color: #FFF;
}
#appeal .sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
#appeal .contents {
  position: relative;
  height: 100%;
}

#appeal .contents .content {
  position: absolute;
  inset: 0;
  width: stretch;
  height: 100%;
  display: flex;
  padding: 6.5rem 5% 0 8%;
  justify-content: center;
  background: #0B0B0B;
  background: #060606;
  color: #fff;
  clip-path: inset(100% 0 0 0);
  will-change: transform, clip-path, opacity;
}
#appeal .content_wrap {
  display: flex;
  color: #FFF;
  width: 100%;
  position: relative;
}
#appeal .content_wrap .text_wrap {
  width: 45%;
  position: relative;
  z-index: 2;
}
#appeal .content_wrap .text_wrap .number {
  display: flex;
  gap: 36px;
  align-items: center;
  margin-bottom: 10px;
}
#appeal .content_wrap .text_wrap .number .num {
  font-family: "Anton", sans-serif;
  font-size: 8.8rem;
  letter-spacing: 5px;
  line-height: 1.35;
}
#appeal .content_wrap .text_wrap .number .txt {
  font-family: "Barlow", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;

}
#appeal .content_wrap .text_wrap h3 {
  font-size: 4.4rem;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.6;
}
#appeal .content_wrap .text_wrap h3 sup {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.6;
  padding-right: 1px;
  position: relative;
  top: -10px;
}
#appeal .content_wrap .text_wrap .text {
  margin-top: 5.4rem;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  line-height: 1.9;
  font-feature-settings: "palt";
}
#appeal .content_wrap .text_wrap .text sup {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  padding-right: 1px;
  position: relative;
  top: -3px;
}
#appeal .content_wrap .text_wrap .text_s {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1.3px;
  line-height: 1.6;
  margin-top: 4rem;
  font-feature-settings: "palt";
}

#appeal .content_wrap .video_wrap {
  width: 64%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}
#appeal .content_wrap .video_wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*個別調整*/
/*appeal content2*/
#appeal .content2 .content_wrap .text_wrap .text {
  margin-top: 10rem;
}

@media (max-width: 1024px) {
  #appeal .contents .content {
    padding: 4rem 5% 0 6%;
  }
  #appeal .content_wrap .text_wrap .number .num {
    font-family: "Anton", sans-serif;
    font-size: 6rem;
  }
  #appeal .content_wrap .text_wrap h3 {
    font-size: 3.2rem;
  }
  #appeal .content_wrap .text_wrap {
    width: 47%;
  }
  #appeal .content_wrap .text_wrap .text {
    font-size: 1.6rem;
    letter-spacing: 1.4px;
    line-height: 1.7;
  }

  #appeal .content2 .content_wrap .text_wrap .text {
    margin-top: 5.4rem;
  }
}
@media (max-width: 834px), (max-height: 715px) {
  #appeal {
    height: auto;
  }
  #appeal .sticky {
    position: static;
    height: auto;
  }
  #appeal .contents {
    position: static;
    padding-bottom: 9rem;
  }
  #appeal .contents .content {
    position: relative;
    clip-path: none !important;
    transform: none !important;
    padding: 8rem 5% 0 6%;
  }
  #appeal .content_wrap {
    transform: none !important;
    opacity: 1 !important;
  }

  /*個別調整*/
  #appeal .contents .content1 {
    padding-top: 2rem;
  }
  #appeal .content2 .content_wrap .video_wrap {
    max-height: 260px;
    display: flex;
    align-items: center;
  }
  #appeal .content2 .content_wrap .video_wrap img {
    max-height: 60%;
    object-fit: cover;
    object-position: bottom;
  }
}

/*高さの低いPCウィンドウ*/
@media (max-height: 715px) and (min-width: 835px) {
  #appeal .contents .content {
    padding: 15rem 5% 0 6%;
  }
  #appeal .contents .content1 {
    padding-top: 2rem;
  }
  #appeal .contents {
    padding-bottom: 12rem;
  }
}

@media (max-width: 834px) {
  #appeal .content_wrap {
    flex-direction: column;
  }
  #appeal .content_wrap .text_wrap {
    width: 100%;
  } 
  #appeal .content_wrap .video_wrap {
    width: 100%;
    position: relative;
    top: 0;
    transform: none;
  }
  
  #appeal .content_wrap .text_wrap .number {
    gap: 20px;
  }
  #appeal .content_wrap .text_wrap .number .txt {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  #appeal .content_wrap .text_wrap h3 {
    font-size: 2.9rem;
    letter-spacing: 2.4px;
  }   
}

/*=================
Feature
===================*/
#feature {
  padding-top: 16rem;
  background: #FFF;
}
#feature .content_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}
#feature .content_wrap .item {
  width: calc((100% - 100px) / 2);
  display: flex;
  flex-direction: column;
}

#feature .content_wrap .item .image_wrap {
  aspect-ratio: 3 / 2;
}
#feature .content_wrap .item .image_wrap img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#feature .content_wrap .item .text_wrap {
  margin-top: 2.6rem;
}
#feature .content_wrap .item .text_wrap .catch {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.6;
}
#feature .content_wrap .item .text_wrap .text {
  margin-top: 2rem;
  font-weight: 500;
}
#feature .content_wrap .item .text_wrap .text .text_s {
  font-size: 1.3rem;
  margin-top: 5px;
}

/*個別調整*/
/*item1*/
#feature .content_wrap .item:nth-of-type(1) .catch .logo_txt img {
  display: inline-block;
  padding-right: 6px;
}
#feature .content_wrap .item:nth-of-type(1) .text_wrap .catch sup {
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.6;
  position: relative;
  top: -0.7em;
  left: -1px;
}
#feature .content_wrap .item:nth-of-type(1) .text .comment {
  margin-top: 8px;
  font-size: 1.25rem;
}

@media (max-width: 1024px) {
  #feature {
    padding-top: 8rem;
  }
  #feature .content_wrap {
    gap: 50px 40px;
  }
  #feature .content_wrap .item {
    width: calc((100% - 80px) / 2);
  }
  #feature .content_wrap .item .text_wrap {
    margin-top: 1.8rem;
  }
  #feature .content_wrap .item .text_wrap .catch {
    font-size: 2.2rem;
    letter-spacing: 1.6px;
  }
  #feature .content_wrap .item .text_wrap .text {
    margin-top: 1.6rem;
  }

  /*個別調整*/
  /*item1*/
  #feature .content_wrap .item:nth-of-type(1) .text_wrap .catch sup {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  #feature .content_wrap {
    flex-direction: column;
    gap: 40px;
  }
  #feature .content_wrap .item {
    width: 100%
  }
  #feature .content_wrap .item .text_wrap {
    margin-top: 1.2rem;
  }
  #feature .content_wrap .item .text_wrap .text {
    margin-top: 1rem;
  }
  #feature .content_wrap .item .text_wrap .catch {
    font-size: 2.2rem;
  }
}

/*=================
Other Feature
===================*/
#other_feature {
  padding-top: 12rem;
  padding-bottom: 19rem;
  background: #FFF;
}
#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;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
#other_feature .wrapper .item p {
  font-weight: 500;
}
@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;
  padding: 0 10% 12rem 10%;
  background: #FFF;
}
#main-item .wrapper {
  display: flex;
  column-gap: 80px;
  flex-wrap: wrap;
}
#main-item .left {
  width: calc(48% - 40px);
}
#main-item .right {
  width: calc(52% - 40px);
}

#main-item .left .image_wrap {
  width: 100%;
  max-width: 368px;
  margin: 0 auto;
}

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

/*メインカート周りテキスト*/
#main-item .text_wrap {
  z-index: 1;
  line-height: 1.5;
}
#main-item .txt_shipping {
  padding: 7px 20px 8px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  display: inline-block;
  border: 1.5px solid #035792;
  color: #035792;
  margin-bottom: 20px;
}

#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 .caution.red {
  background-color: #CE2323;
  display: inline;
  padding: 0 0 1px;
  line-height: 1.5;
}
#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 .txt_shipping {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.8rem;
    letter-spacing: 2px;
    padding: 6px 20px 7px;
  }
  #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;
  }
}


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

/*カート*/
.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: 54%;
  transform: translate(-360%, -49%);
}

/*予約前*/
.cart_btn_wrap .btn .advance-notice{
  display: block;
  padding: 14px 12px;
  font-size: 1.65rem;
  font-weight: 500;
  width: 100%;
  text-align: center;
  pointer-events: none;
  color: #0c3f69;
  padding: 10px 20px;
  border: 1px solid #0c3f69;
  margin-bottom: 10px;
}
.cart_btn_wrap .btn .reserve {
  /* flex-direction: column; */
  text-align: center;
  padding: 17px 12px;
  border-radius: 5em;
  background: #035792;
  color: #FFF;
  border: none;
  padding-left: 3.8em;
  /*発売前*/
  pointer-events: none;
  opacity: 0.5;
}
.cart_btn_wrap .btn .reserve span {
  font-size: 1.2rem;
}
.cart_btn_wrap .btn .reserve.btn-cart::before {
  background: url("/outfield/img/common/icon_cart.svg") no-repeat;
  background-size: contain;
  left: 37%;
  top: 54%;
}


/*楽天*/
.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.png") no-repeat;
  background-size: contain;
  width: 70px;
  height: 35px;
  top: 50%;
  left: 47%;
  transform: translate(-110%, -38%);
}
/*楽天 予告*/
#main-item .cart_btn_wrap .btn .rakuten.soon {
  pointer-events: none;
  font-size: 1.5rem;
  padding-left: 7.3em;
  opacity: 0.5;
}
#main-item .cart_btn_wrap .btn .rakuten.soon::before {
  background-size: contain;
  width: 66px;
  height: 36px;
  top: 50%;
  left: 41%;
  transform: translate(-138%,-36%);
}
/* .cart_btn_wrap .btn .rakuten.pre {
  pointer-events: auto;
  opacity: 1;
  font-size: 1.5rem;
  padding-left: 7.3em;
}
.cart_btn_wrap .btn .rakuten.pre::before {
  background-size: contain;
  width: 66px;
  height: 36px;
  top: 50%;
  left: 41%;
  transform: translate(-138%,-36%);
} */

/*JRE*/
.cart_btn_wrap .btn .jre {
  background: #008303;
  border: none;
  color: #FFFFFF;
  font-weight: 500;
  padding-left: 5.55em;
  position: relative;
}
.cart_btn_wrap .btn .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 予告*/
#main-item .cart_btn_wrap .btn .jre.soon {
  pointer-events: none;
  font-size: 1.5rem;
  padding-left: 7.3em;
  opacity: 0.5;
}
#main-item .cart_btn_wrap .btn .jre.soon::before {
  left: 41%;
  width: 100px;
  transform: translate(-115%, -32%);
}

.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 .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;
  }
}
@media (max-width: 460px) {
  .cart_btn_wrap .btn .reserve {
    padding: 16px 12px;
    padding-left: 3.2em;
  }
  .cart_btn_wrap .btn .reserve.btn-cart::before {
    width: 19px;
    height: 19px;
    left: 29%;
    top: 54%;
  }
}


/*商品外部リンク*/
.ex_link_wrap {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ex_link_wrap a {
  position: relative;
  padding-right: 12px;
  font-size: 1.4rem;
  font-weight: 500;
  transition: 0.3s;
}
.ex_link_wrap a::after {
  content: '';
  background:url("/outfield/img/common/ex-link_bl.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 {
  width: 100%;
  margin-top: 60px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  border-collapse: collapse;
  table-layout: fixed;
}
#main-item table tr {
  text-align: left;
}
#main-item table tr th {
  min-width: 10em;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 6px 4px;
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  font-feature-settings: "palt";
}
#main-item table tr th span {
  font-size: 1.2rem;
}
#main-item table tr td {
  font-size: 1.4rem;
  margin: 0;
  padding: 6px 6px;
  vertical-align: top;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
  font-feature-settings: "palt";
}
#main-item table tr td.boder-r {
  border-right: 1px solid #e0e0e0;
}

#main-item table + .comment_wrap {
  margin-top: 20px;
  font-size: 1.25rem;
  font-feature-settings: "palt";
}



/*=================
Relates Items
===================*/
#related-items {
  background: #EEE;
  padding: 10rem 0 10rem;
  position: relative;
  z-index: 1;
}
#related-items .wrapper {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 90px 60px 96px;
}
#related-items h2 {
  font-family: "Oswald", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.5;
  margin-bottom: 46px;
  text-align: center;
}

@media (max-width: 1200px) {
  #related-items .-w-wrapper {
    margin: 0 100px 0 40px;
  }
  #related-items .wrapper {
    padding: 90px 20px 96px;
  }
}
@media (max-width: 768px) {
  #related-items .-w-wrapper {
    margin: 0 40px;
  }
  #related-items .wrapper {
    padding: 40px 24px;
  }
  #related-items h2 {
    font-size: 4rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 600px) {
  #related-items {
    padding: 6rem 0;
  }
  #related-items .-w-wrapper {
    margin: 0 20px;
  }
  #related-items .wrapper {
    padding: 40px 20px;
  }
  #related-items h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}


/*ボックス*/
.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 .txt_shipping {
  padding: 4px 24px 5px;
  background: #2B42A2;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 20px;
}

.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 .flex_wrap {
  display: flex;
  gap: 15px;
  align-items: center;
}
.item_wrap .text_wrap .flex_wrap .announce {
  display: inline-block;
  padding: 3px 12px 4px;
  border: 1px solid #035792;
  color: #035792;
  font-weight: 500;
  line-height: 1.5;
  margin-top: -3px;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .item_wrap .text_wrap .flex_wrap {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    margin-bottom: 6px;
  }
}
@media (max-width: 600px) {
  .item_wrap .text_wrap .flex_wrap .announce {
    padding: 2px 10px 3px;
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .item_wrap .text_wrap .flex_wrap {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    margin-bottom: 6px;
  }
}

.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 .txt_shipping {
    padding: 2px 20px 3px;
    font-size: 1.6rem;
    letter-spacing: 1.6px;
    margin-bottom: 15px;
  }

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

/*発売前*/
#related-items .btn .soon {
  pointer-events: none;
  opacity: 0.5;
}
#related-items .btn-cart.soon {
  background: #ACACAC;
  border: none;
  color: #181818;
  padding-left: 3em;
}
#related-items .btn-cart::before {
  left: 51%;
}

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

.in-cart_pop {
  width: 100%;
  max-height: 92vh !important;
}
.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: 28px;
}
.in-cart_pop .box .alert p {
  font-size: 2.1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.in-cart_pop .box .txt_wrap_shipping {
  text-align: center;
}
.in-cart_pop .box .txt_shipping {
  padding: 6px 30px 7px;
  background: #304AB6;
  color: #FFF;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 2.4px;
  display: inline-block;
  text-align: center;
}

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


@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 .txt_shipping {
    padding: 3px 24px 4px;
    font-size: 1.7rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
    margin-top: -10px;
  }

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


.lity {
  background: rgba(0,0,0,.7);
}
#cta {
  margin-top: 0;
}