@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
html {
  scroll-behavior: smooth;
}

ul,
li {
  list-style: none;
}

a:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.goods-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #030B1C;
  color: #fff;
  padding: 0 32px;
  box-sizing: border-box;
  z-index: 500;
}

.goods-header-logo {
  width: 64px;
}
.goods-header-logo a {
  cursor: pointer;
}
.goods-header-logo img {
  margin: initial;
}

.goods-nav-menu {
  display: flex;
  column-gap: 28px;
}
.goods-nav-menu .goods-nav-list {
  list-style: none;
  font-size: 23px;
  line-height: 1;
  font-family: alternate-gothic-atf, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.goods-nav-menu a {
  color: #fff;
  text-decoration: none;
}

.goods-nav-breadcrumbs {
  display: none;
}
.goods-nav-breadcrumbs li {
  display: inline;
  font-family: alternate-gothic-atf, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.goods-nav-breadcrumbs li + li:before {
  padding: 0 4px 0 2px;
  color: #fff;
  content: ">";
}

#menu-toggle {
  display: none;
}

.menu-btn {
  display: none;
  cursor: pointer;
  width: 20px;
  height: 30px;
  position: relative;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.menu-btn span {
  top: 50%;
  transform: translateY(-50%);
}

.menu-btn span::before {
  content: "";
  top: -5px;
}

.menu-btn span::after {
  content: "";
  bottom: -5px;
}

@media screen and (max-width: 840px) {
  .goods-header {
    height: 70px;
  }
  .goods-header-logo {
    width: 34px;
  }
  .goods-nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    height: 100vh;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    padding: 20px;
    background: #030B1C;
    box-sizing: border-box;
  }
  .goods-nav-menu .goods-nav-list {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
  }
  .menu-btn {
    display: block;
    z-index: 100;
  }
  #menu-toggle:checked ~ .goods-nav-breadcrumbs {
    display: block;
  }
  #menu-toggle:checked ~ .goods-nav-menu {
    display: flex;
  }
  #menu-toggle:checked ~ .menu-btn span {
    background-color: transparent;
  }
  #menu-toggle:checked ~ .menu-btn span::before {
    transform: rotate(45deg);
    top: 0;
  }
  #menu-toggle:checked ~ .menu-btn span::after {
    transform: rotate(-45deg);
    top: 0;
  }
  .goods-nav-breadcrumbs {
    display: block;
    line-height: 1;
    padding: 0 0 20px;
    margin: 16px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    text-transform: uppercase;
  }
}
/*  GOODS TOP */
.goods .goods-main {
  margin-top: 80px;
}
@media screen and (max-width: 840px) {
  .goods .goods-main {
    margin-top: 70px;
  }
}
.goods .main-visual {
  position: relative;
  padding: 100px 0 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #ededed;
}
.goods .main-visual .filter {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 11, 12, 0), rgba(8, 11, 12, 0.46));
  z-index: 100;
}
.goods .main-visual-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  height: calc(100vh - 120px);
}
@media screen and (max-width: 840px) {
  .goods .main-visual-carousel {
    height: calc(100vh - 128px);
  }
}
.goods .main-visual-carousel .main-visual-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fade 8s infinite;
}
.goods .main-visual-carousel .main-visual-slide:nth-child(1) {
  animation-delay: 0s;
}
.goods .main-visual-carousel .main-visual-slide:nth-child(2) {
  animation-delay: 4s;
}
@keyframes fade {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}
.goods .main-visual-carousel .main-visual-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.goods .main-visual-content {
  color: #030B1C;
  bottom: 64px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 200;
}
@media screen and (max-width: 840px) {
  .goods .main-visual-content {
    bottom: 122px;
  }
}
.goods .main-visual-title {
  font-size: 40px;
  line-height: 1;
  font-family: alternate-gothic-atf, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
@media screen and (max-width: 840px) {
  .goods .main-visual-title {
    font-size: 30px;
  }
}
.goods .main-visual-nav {
  display: flex;
  width: 420px;
  font-family: alternate-gothic-atf, sans-serif;
  font-weight: 300;
  justify-content: space-between;
  margin: 0 auto;
  font-size: 20px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 840px) {
  .goods .main-visual-nav {
    width: 327px;
  }
}
.goods .main-visual-nav li a {
  display: block;
  color: #030B1C;
  width: 120px;
  height: auto;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid #030B1C;
}
@media screen and (max-width: 840px) {
  .goods .main-visual-nav li a {
    width: 327px;
    width: 100px;
  }
}
.goods .goods-news {
  position: relative;
  background: #030B1C;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goods .news-container {
  padding: 0 2em 0 1em;
}
.goods .news-item .pc-none {
  display: none;
}
@media screen and (max-width: 840px) {
  .goods .news-item .pc-none {
    display: block;
  }
}
.goods .news-item a {
  font-size: 12px;
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 11px 0;
}
.goods .news-item a::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
}
.goods .section-inner {
  padding: 0 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.goods .section-title {
  font-size: 38px;
  font-family: alternate-gothic-atf, sans-serif;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}
.goods .section-lead {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0 auto 56px;
  text-align: center;
}
@media screen and (max-width: 840px) {
  .goods .section-lead {
    margin-bottom: 40px;
    text-align: justify;
  }
}
.goods .line-section {
  padding: 96px 0;
}
.goods .basic-line {
  background: #fff;
}
.goods .basic-line .section-title {
  color: #030B1C;
}
.goods .basic-line .section-lead {
  color: #030B1C;
}
.goods .basic-line .goods-item {
  width: 33.33333%;
  margin-bottom: 4%;
  display: none;
  position: relative;
}
.goods .basic-line .goods-item a {
  text-decoration: none;
}
.goods .basic-line .goods-item a:hover {
  opacity: 1;
}
@media screen and (max-width: 840px) {
  .goods .basic-line .goods-item {
    width: 46.3%;
  }
}
@media screen and (max-width: 840px) {
  .goods .basic-line .goods-item-price {
    font-size: 11px;
  }
}
.goods .basic-line .goods-item-name {
  margin-bottom: 12px;
}
@media screen and (max-width: 840px) {
  .goods .basic-line .goods-item-name {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .goods .basic-line .goods-item-name > span {
    display: none;
  }
}
.goods .basic-line .goods-grid-wrap {
  text-align: center;
}
.goods .basic-line .goods-grid {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: start;
  margin-bottom: 2%;
}
.goods .basic-line .goods-info {
  width: 100%;
  font-size: 20px;
  text-align: left;
  font-family: alternate-gothic-atf, sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #030B1C;
  letter-spacing: 0.12em;
  padding-top: 23px;
  display: block;
}
@media screen and (max-width: 840px) {
  .goods .basic-line .goods-info {
    padding-top: 16px;
  }
}
.goods .basic-line .status {
  text-align: center;
  font-size: 14px;
  color: #9A9DA4;
  margin-bottom: 12px;
}
.goods .basic-line .show-more-button {
  width: 472px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  display: inline-block;
  margin: 0 auto 12px;
  padding: 20px;
  background-color: #030B1C;
  color: white;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}
@media screen and (max-width: 840px) {
  .goods .basic-line .show-more-button {
    width: 100%;
    font-size: 15px;
    padding: 18.5px;
  }
}
.goods .basic-line input[type=checkbox] {
  display: none;
}
@media (min-width: 840px) {
  .goods .basic-line .goods-item:nth-child(-n+6) {
    display: block;
  }
  .goods .basic-line #show-more-1:checked ~ .goods-grid .goods-item:nth-child(-n+12) {
    display: block;
  }
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ .goods-grid .goods-item:nth-child(-n+18) {
    display: block;
  }
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ #show-more-3:checked ~ .goods-grid .goods-item {
    display: block;
  }
  .goods .basic-line .status:before {
    content: "21件中6件表示";
  }
  .goods .basic-line #show-more-1:checked ~ .status:before {
    content: "21件中12件表示";
  }
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ .status:before {
    content: "21件中18件表示";
  }
  .goods .basic-line #show-more-1:checked ~ #show-more-3:checked ~ .status:before {
    content: "21件中21件表示";
  }
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ .show-more-button {
    display: none;
  }
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ .show-more-button[for=show-more-2] {
    display: none;
  }
  .goods .basic-line {
    /* 19件
    #show-more-1:checked~#show-more-2:checked~#show-more-3:checked~.status:before {
        content: "19件中19件表示";
    }


    #show-more-1:checked~#show-more-2:checked~#show-more-3:checked~.show-more-button {
        display: none;
    }

    #show-more-1:checked~#show-more-2:checked~#show-more-3:checked~.show-more-button[for="show-more-3"] {
        display: none;
    }
    */
  }
}
@media screen and (max-width: 840px) {
  .goods .basic-line .goods-grid {
    justify-content: space-between;
  }
  .goods .basic-line .goods-item:nth-child(-n+4) {
    display: block;
  }
  .goods .basic-line #show-more-1:checked ~ .goods-grid .goods-item:nth-child(-n+8) {
    display: block;
  }
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ .goods-grid .goods-item:nth-child(-n+12) {
    display: block;
  }
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ #show-more-3:checked ~ .goods-grid .goods-item:nth-child(-n+16) {
    display: block;
  }
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ #show-more-3:checked ~ #show-more-4:checked ~ .goods-grid .goods-item:nth-child(-n+20) {
    display: block;
  }
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ #show-more-3:checked ~ #show-more-4:checked ~ #show-more-5:checked ~ .goods-grid .goods-item {
    display: block;
  }
  .goods .basic-line .status:before {
    content: "21件中4件表示";
  }
  .goods .basic-line #show-more-1:checked ~ .status:before {
    content: "21件中8件表示";
  }
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ .status:before {
    content: "21件中12件表示";
  }
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ #show-more-3:checked ~ .status:before {
    content: "21件中16件表示";
  }
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ #show-more-3:checked ~ #show-more-4:checked ~ .status:before {
    content: "21件中20件表示";
  }
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ #show-more-3:checked ~ #show-more-4:checked ~ #show-more-5:checked ~ .status:before {
    content: "21件中21件表示";
  }
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ #show-more-3:checked ~ #show-more-4:checked ~ #show-more-5:checked ~ .show-more-button {
    display: none;
  }
}
.goods .basic-line .show-more-button[for=show-more-1] {
  display: inline-block;
}
.goods .basic-line .show-more-button[for=show-more-2],
.goods .basic-line .show-more-button[for=show-more-3],
.goods .basic-line .show-more-button[for=show-more-4],
.goods .basic-line .show-more-button[for=show-more-5] {
  display: none;
}
.goods .basic-line #show-more-1:checked ~ .show-more-button[for=show-more-1] {
  display: none;
}
.goods .basic-line #show-more-1:checked ~ .show-more-button[for=show-more-2] {
  display: inline-block;
}
.goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ .show-more-button[for=show-more-2] {
  display: none;
}
.goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ .show-more-button[for=show-more-3] {
  display: inline-block;
}
.goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ #show-more-3:checked ~ .show-more-button[for=show-more-3] {
  display: none;
}
.goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ #show-more-3:checked ~ .show-more-button[for=show-more-4] {
  display: inline-block;
}
@media (min-width: 840px) {
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ #show-more-3:checked ~ .show-more-button[for=show-more-4] {
    display: none;
  }
}
.goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ #show-more-3:checked ~ #show-more-4:checked ~ .show-more-button[for=show-more-4] {
  display: none;
}
.goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ #show-more-3:checked ~ #show-more-4:checked ~ .show-more-button[for=show-more-5] {
  display: inline-block;
}
@media (min-width: 840px) {
  .goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ #show-more-3:checked ~ #show-more-4:checked ~ .show-more-button[for=show-more-5] {
    display: none;
  }
}
.goods .basic-line #show-more-1:checked ~ #show-more-2:checked ~ #show-more-3:checked ~ #show-more-4:checked ~ #show-more-5:checked ~ .show-more-button[for=show-more-5] {
  display: none;
}
.goods .basic-line .show-more-button_wrap {
  text-align: center;
}
.goods .basic-line .accordion-container {
  width: 472px;
  box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (max-width: 840px) {
  .goods .basic-line .accordion-container {
    width: 100%;
  }
}
.goods .basic-line .accordion {
  border: 1px solid #030B1C;
  overflow: hidden;
}
.goods .basic-line .accordion-content {
  max-height: 0;
  overflow: hidden;
  text-align: left;
  color: #030B1C;
}
.goods .basic-line .accordion-input {
  display: none;
}
.goods .basic-line .accordion-label {
  font-size: 14px;
  text-align: center;
  margin: 0 auto;
  display: block;
  color: #030B1C;
  padding: 15px;
  line-height: 1;
  background-color: #fff;
  cursor: pointer;
  position: relative;
}
.goods .basic-line .accordion-label::after {
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 16px;
  top: 47%;
  transform: translateY(-50%);
}
.goods .basic-line .accordion-input:checked + .accordion-container .accordion-label::after {
  content: "-";
}
.goods .basic-line .accordion-input:checked + .accordion-container .accordion-content {
  max-height: 9999px;
  padding: 24px 16px;
  border-top: 1px solid #030B1C;
}
.goods .basic-line .accordion-text {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 840px) {
  .goods .basic-line .accordion-text {
    font-size: 12px;
  }
}
.goods .basic-line .accordion-text.last {
  margin-bottom: 30px;
}
.goods .basic-line .accordion-text-list > li {
  list-style-type: disc;
  list-style-position: inside;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 840px) {
  .goods .basic-line .accordion-text-list {
    font-size: 12px;
  }
}
.goods {
  /* BASIC LINE ITEM SLIDE */
}
.goods .basic-slide {
  position: relative;
}
.goods .basic-slide:hover .basic-slide_label {
  opacity: 1;
}
.goods .basic-slide input[type=radio] {
  display: none;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  content: 4;
}
.goods .basic-slide input[type=radio]:nth-of-type(1):checked ~ a .basic-slide_list > li:nth-of-type(n+1):nth-of-type(-n+1) {
  opacity: 1;
  z-index: 10;
}
.goods .basic-slide input[type=radio]:nth-of-type(1):checked ~ a .basic-slide_list > li:nth-of-type(n+1):nth-of-type(-n+1) > a::before {
  z-index: 11;
}
.goods .basic-slide input[type=radio]:nth-of-type(1):checked ~ .basic-slide_label > label:nth-of-type(4) {
  display: block;
  right: 0;
}
.goods .basic-slide input[type=radio]:nth-of-type(1):checked ~ .basic-slide_label > label:nth-of-type(4)::before {
  right: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.goods .basic-slide input[type=radio]:nth-of-type(1):checked ~ .basic-slide_label > label:nth-of-type(2) {
  display: block;
  left: auto;
}
.goods .basic-slide input[type=radio]:nth-of-type(1):checked ~ .basic-slide_label > label:nth-of-type(2)::before {
  left: 0;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.goods .basic-slide input[type=radio]:nth-of-type(1):checked ~ .basic-slide_page > label:nth-of-type(1)::before {
  content: "";
}
.goods .basic-slide input[type=radio]:nth-of-type(2):checked ~ a .basic-slide_list > li:nth-of-type(n+2):nth-of-type(-n+2) {
  opacity: 1;
  z-index: 10;
}
.goods .basic-slide input[type=radio]:nth-of-type(2):checked ~ a .basic-slide_list > li:nth-of-type(n+2):nth-of-type(-n+2) > a::before {
  z-index: 11;
}
.goods .basic-slide input[type=radio]:nth-of-type(2):checked ~ .basic-slide_label > label:nth-of-type(1) {
  display: block;
  right: 0;
}
.goods .basic-slide input[type=radio]:nth-of-type(2):checked ~ .basic-slide_label > label:nth-of-type(1)::before {
  right: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.goods .basic-slide input[type=radio]:nth-of-type(2):checked ~ .basic-slide_label > label:nth-of-type(3) {
  display: block;
  left: auto;
}
.goods .basic-slide input[type=radio]:nth-of-type(2):checked ~ .basic-slide_label > label:nth-of-type(3)::before {
  left: 0;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.goods .basic-slide input[type=radio]:nth-of-type(2):checked ~ .basic-slide_page > label:nth-of-type(2)::before {
  content: "";
}
.goods .basic-slide input[type=radio]:nth-of-type(3):checked ~ a .basic-slide_list > li:nth-of-type(n+3):nth-of-type(-n+3) {
  opacity: 1;
  z-index: 10;
}
.goods .basic-slide input[type=radio]:nth-of-type(3):checked ~ a .basic-slide_list > li:nth-of-type(n+3):nth-of-type(-n+3) > a::before {
  z-index: 11;
}
.goods .basic-slide input[type=radio]:nth-of-type(3):checked ~ .basic-slide_label > label:nth-of-type(2) {
  display: block;
  right: 0;
}
.goods .basic-slide input[type=radio]:nth-of-type(3):checked ~ .basic-slide_label > label:nth-of-type(2)::before {
  right: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.goods .basic-slide input[type=radio]:nth-of-type(3):checked ~ .basic-slide_label > label:nth-of-type(4) {
  display: block;
  left: auto;
}
.goods .basic-slide input[type=radio]:nth-of-type(3):checked ~ .basic-slide_label > label:nth-of-type(4)::before {
  left: 0;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.goods .basic-slide input[type=radio]:nth-of-type(3):checked ~ .basic-slide_page > label:nth-of-type(3)::before {
  content: "";
}
.goods .basic-slide input[type=radio]:nth-of-type(4):checked ~ a .basic-slide_list > li:nth-of-type(n+4):nth-of-type(-n+4) {
  opacity: 1;
  z-index: 10;
}
.goods .basic-slide input[type=radio]:nth-of-type(4):checked ~ a .basic-slide_list > li:nth-of-type(n+4):nth-of-type(-n+4) > a::before {
  z-index: 11;
}
.goods .basic-slide input[type=radio]:nth-of-type(4):checked ~ .basic-slide_label > label:nth-of-type(3) {
  display: block;
  right: 0;
}
.goods .basic-slide input[type=radio]:nth-of-type(4):checked ~ .basic-slide_label > label:nth-of-type(3)::before {
  right: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.goods .basic-slide input[type=radio]:nth-of-type(4):checked ~ .basic-slide_label > label:nth-of-type(1) {
  display: block;
  left: auto;
}
.goods .basic-slide input[type=radio]:nth-of-type(4):checked ~ .basic-slide_label > label:nth-of-type(1)::before {
  left: 0;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.goods .basic-slide input[type=radio]:nth-of-type(4):checked ~ .basic-slide_page > label:nth-of-type(4)::before {
  content: "";
}
.goods .basic-slide_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 380/480;
  margin: 0 auto;
  position: relative;
}
.goods .basic-slide_list > li {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.goods .basic-slide_list > li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 0 16px 0;
}
.goods .basic-slide_label {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.goods .basic-slide_label > label {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 100;
}
.goods .basic-slide_label > label::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-left: 1px solid #030B1C;
  border-bottom: 1px solid #030B1C;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  right: 0;
  left: 0;
  bottom: 50%;
  margin: auto;
}
@media screen and (max-width: 840px) {
  .goods .basic-slide_label > label::before {
    left: 5px;
    right: 5px;
  }
}
.goods .basic-slide_page {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 6.6%;
  z-index: 100;
}
.goods .basic-slide_page > label {
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: #fff;
  border: 1px solid #030B1C;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 840px) {
  .goods .basic-slide_page > label {
    display: none;
  }
}
.goods .basic-slide_page > label:not(:first-of-type) {
  margin-left: 10px;
}
.goods .basic-slide_page > label::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #030B1C;
  cursor: pointer;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 840px) {
  .goods .basic-slide {
    width: 100%;
    height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .goods .basic-slide::-webkit-scrollbar {
    display: none;
  }
  .goods .basic-slide input[type=radio] {
    display: none;
  }
  .goods .basic-slide_list {
    position: relative;
    flex-wrap: nowrap;
    aspect-ratio: auto;
    justify-content: initial;
  }
  .goods .basic-slide_list > li {
    position: relative;
    opacity: 1;
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
  .goods .basic-slide_label {
    display: none;
  }
  .goods .basic-slide_page {
    display: none;
  }
  .goods {
    /* //SP swipe */
  }
}
.goods {
  /* //BASIC LINE */
}
.goods .premium-line {
  background: #000;
}
.goods .premium-line .section-lead {
  width: 900px;
  color: #fff;
  text-align: left;
  padding: 0 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 840px) {
  .goods .premium-line .section-lead {
    width: 100%;
  }
}
.goods .premium-line {
  /* PREMIUM LINE SLIDE */
}
.goods .premium-line .slider-container {
  position: relative;
  width: 860px;
  margin: auto;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 840px) {
  .goods .premium-line .slider-container {
    width: 100%;
  }
}
.goods .premium-line .premium-slider {
  display: flex;
  width: 100%;
  scroll-snap-type: x mandatory;
  overflow-x: scroll;
}
.goods .premium-line .premium-slider::-webkit-scrollbar {
  height: 4px;
}
.goods .premium-line .premium-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
}
.goods .premium-line .premium-slider::-webkit-scrollbar-thumb {
  background: #fff;
}
.goods .premium-line .premium-slider::-webkit-scrollbar-thumb:hover {
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}
.goods .premium-line .premium-slide {
  width: 100%;
  min-width: 100%;
  height: 100%;
  box-sizing: border-box;
  scroll-snap-align: center;
  margin-bottom: 40px;
}
.goods .premium-line .premium-slide img {
  width: 860px;
  height: auto;
  margin-bottom: 40px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media screen and (max-width: 840px) {
  .goods .premium-line .premium-slide img {
    width: 100%;
    aspect-ratio: 390/488;
  }
}
.goods .premium-line .slide-content {
  color: #fff;
}
@media screen and (max-width: 840px) {
  .goods .premium-line .slide-content {
    padding: 0 20px;
  }
}
.goods .premium-line .slide-heading {
  font-size: 29px;
  font-weight: 700;
  font-family: alternate-gothic-atf, sans-serif;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 12px;
}
@media screen and (max-width: 840px) {
  .goods .premium-line .slide-heading {
    font-size: 25px;
  }
}
.goods .premium-line .slide-txt {
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  text-align: justify;
}
@media screen and (max-width: 840px) {
  .goods .premium-line .slide-txt {
    font-size: 14px;
  }
}
.goods .premium-line .slide-content a {
  color: #fff;
  text-decoration: underline;
  font-size: 15px;
}
@media screen and (max-width: 840px) {
  .goods .premium-line .slide-content a {
    font-size: 14px;
  }
}
.goods {
  /*  //PREMIUM LINE */
}
.goods .section-btn-wrap {
  margin: 40px 0 0;
  padding: 0 20px;
}
.goods .section-btn-wrap .section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 576px;
  padding: 14px;
  border: 1px solid #fff;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 840px) {
  .goods .section-btn-wrap .section-btn {
    width: 100%;
  }
}
.goods .section-btn-wrap .section-btn:hover {
  background: #fff;
  color: #030B1C;
  opacity: 1;
}
.goods .pro-line {
  background: #383838;
}
.goods .pro-line .section-lead {
  padding: 0 20px;
  color: #fff;
}
.goods .pro-line .gallery-container {
  width: 100%;
  overflow: hidden;
}
.goods .pro-line .gallery {
  display: flex;
  gap: 1px;
}
.goods .pro-line .gallery img {
  width: 25%;
  margin: 0;
  aspect-ratio: 4/5;
  object-fit: cover;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.goods .pro-line .gallery {
  animation: scroll 48s linear infinite;
}
@media screen and (max-width: 840px) {
  .goods .pro-line .gallery {
    width: 400%;
    gap: 8px;
  }
  .goods .pro-line .gallery img {
    width: 20%;
  }
}
.goods {
  /*  //PRO LINE */
}

/*  //GOODS TOP */
/*  GOODS DETAIL */
.goods-detail {
  background: #fff;
}
@media screen and (min-width: 840px) {
  .goods-detail .goods-header-nav {
    display: none;
  }
}
.goods-detail .goods-detail-main {
  max-width: 1097px;
  margin-right: 143px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  margin: 80px auto 0;
}
@media screen and (max-width: 840px) {
  .goods-detail .goods-detail-main {
    flex-direction: column;
    overflow: hidden;
    padding: 0;
  }
}
.goods-detail .goods-detail-img {
  flex: 0 1 504px;
}
@media screen and (max-width: 840px) {
  .goods-detail .goods-detail-img {
    flex: initial;
    margin: 0 0 28px;
  }
}
.goods-detail .goods-detail-img .slide-img-wrap {
  display: none;
}
.goods-detail .goods-detail-img .img-wrap img {
  margin: 0 0 54px 0;
  width: 100%;
}
@media screen and (max-width: 840px) {
  .goods-detail .goods-detail-img .img-wrap img {
    margin: 0;
  }
}
@media screen and (max-width: 840px) {
  .goods-detail .carousel-container {
    width: 100%;
    margin: 0 auto 28px;
    position: relative;
  }
  .goods-detail .carousel {
    display: flex;
    width: 100%;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
  .goods-detail .carousel-item {
    width: 79.5%;
    margin: 0 0 0 10px;
    flex-shrink: 0;
    box-sizing: border-box;
    scroll-snap-align: center;
  }
  .goods-detail .carousel-item:first-child {
    margin: 0 0 0 40px;
  }
  .goods-detail .carousel-item:last-child {
    margin: 0 40px 0 10px;
  }
  .goods-detail .carousel-item:only-child {
    margin: 0 40px;
  }
  .goods-detail .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
  }
}
.goods-detail .goods-detail-spec {
  flex: 0 1 410px;
  padding-left: 40px;
  color: #030B1C;
}
@media screen and (max-width: 840px) {
  .goods-detail .goods-detail-spec {
    flex: initial;
    padding: 0 40px;
    margin: 0 0 56px;
  }
}
.goods-detail .sticky {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 840px) {
  .goods-detail .sticky {
    position: relative;
    transform: none;
  }
}
.goods-detail .item-name {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
  font-family: alternate-gothic-atf, sans-serif;
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 840px) {
  .goods-detail .item-name {
    font-size: 19px;
    margin-bottom: 8px;
  }
}
.goods-detail .item-price {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  font-family: alternate-gothic-atf, sans-serif;
  line-height: 1;
}
@media screen and (max-width: 840px) {
  .goods-detail .item-price {
    font-size: 15px;
  }
}
.goods-detail .accordion {
  width: 100%;
  margin: 72px auto 0;
  border-bottom: 1px solid #D8D8D8;
}
@media screen and (max-width: 840px) {
  .goods-detail .accordion {
    margin: 28px auto 0;
  }
}
.goods-detail .accordion-item {
  border-top: 1px solid #D8D8D8;
  margin-bottom: 5px;
  overflow: hidden;
}
.goods-detail .accordion-header {
  background-color: #fff;
  padding: 8px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.16em;
}
.goods-detail .accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.75;
}
.goods-detail .accordion-content p {
  text-align: justify;
}
.goods-detail .accordion-item input[type=radio] {
  display: none;
}
.goods-detail .accordion-item input[type=radio]:checked ~ .accordion-content {
  max-height: 1000px;
  opacity: 1;
  margin: 13px 0 0;
  transition: all 0.3s cubic-bezier(0.58, 0, 0.01, 1);
}
.goods-detail .accordion-item input[type=radio]:checked ~ .accordion-content p {
  margin: 0 0 25px;
}
.goods-detail .accordion-item input[type=radio]:checked ~ .accordion-content table {
  margin: 0 0 20px;
}
.goods-detail .icon::before {
  content: "+";
  font-size: 13px;
  display: inline-block;
}
.goods-detail .accordion-item input[type=radio]:checked ~ .accordion-header .icon::before {
  content: "-";
}
.goods-detail table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 11px;
  color: #030B1C;
}
.goods-detail th,
.goods-detail td {
  padding: 3% 0;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: normal;
}
.goods-detail tr:first-child {
  border-bottom: 1px solid #030B1C;
  font-weight: normal;
}
.goods-detail td:first-child,
.goods-detail th:first-child {
  width: 20%;
  text-align: justify;
  text-align-last: justify;
  text-justify: inter-character;
  padding-left: 5%;
  padding-right: 4%;
}
.goods-detail td:not(:first-child),
.goods-detail th:not(:first-child) {
  width: auto;
}
.goods-detail td:last-child,
.goods-detail th:last-child {
  width: 5%;
}
