/* Default Options */
/* Media Query */
/* Transform Font Size */
/* --------------------------------- */
.l-contents {
  padding-inline: 0;
}
.l-contents .p-pageheader {
  padding-inline: var(--contents-inner-padding);
}

/* --------------------------------- */
.p-item-nav {
  display: flex;
  justify-content: flex-start;
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x;
}
.p-item-nav::-webkit-scrollbar {
  display: none;
}
.p-item-nav-list {
  height: 64px;
  padding-inline: var(--contents-inner-padding);
  list-style: none;
  display: flex;
  column-gap: clamp(15px, 3vw, 40px);
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}
.p-item-nav-list .item {
  position: relative;
  cursor: pointer;
}
.p-item-nav-list .item a {
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  font-size: clamp(0.9375rem, 0.4772727273rem + 1.2784090909vw, 1.5rem);
  text-decoration: none;
  line-height: 1;
  transition: var(--hover-animation-speed);
}
.p-item-nav-list .item a span {
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-item-nav-list .item a:hover, .p-item-nav-list .item a.current {
  text-decoration: underline;
}
.p-item-nav-list .item.dropdown a {
  display: grid;
  grid-template-columns: auto 20px;
  column-gap: 5px;
  pointer-events: none;
  cursor: pointer;
}
.p-item-nav-list .item.dropdown a:before, .p-item-nav-list .item.dropdown a:after {
  content: "";
  display: block;
  box-sizing: border-box;
  transition: var(--hover-animation-speed);
}
.p-item-nav-list .item.dropdown a:before {
  width: 8px;
  height: 8px;
  border-inline-end: 1px solid var(--text-color);
  border-block-end: 1px solid var(--text-color);
  position: absolute;
  top: calc(50% - 5px);
  right: 6px;
  transform-origin: center;
  transform: rotate3d(0, 0, 1, 45deg);
}
.p-item-nav-list .item.dropdown a:after {
  width: 20px;
  height: 20px;
  background-color: var(--bg-color);
  border: 1px solid var(--text-color);
  border-radius: 50%;
}
.p-item-nav-list .item.dropdown a span:before, .p-item-nav-list .item.dropdown a span:after {
  content: "";
  display: block;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  transition: var(--hover-animation-speed);
}
.p-item-nav-list .item.dropdown a span:before {
  width: 20px;
  height: 16px;
  background-color: var(--bg-color);
  bottom: -16px;
  left: calc(50% - 10px);
  z-index: 2;
}
.p-item-nav-list .item.dropdown a span:after {
  width: 22px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0.15);
  bottom: -17px;
  left: calc(50% - 11px);
  z-index: 1;
}
[data-dropdown-open=tops] .p-item-nav-list .item.dropdown[data-name=tops] a {
  text-decoration: underline;
}
[data-dropdown-open=tops] .p-item-nav-list .item.dropdown[data-name=tops] a:before {
  border-inline-end-color: var(--bg-color);
  border-block-end-color: var(--bg-color);
}
[data-dropdown-open=tops] .p-item-nav-list .item.dropdown[data-name=tops] a:after {
  background-color: var(--text-color);
}
[data-dropdown-open=tops] .p-item-nav-list .item.dropdown[data-name=tops] a span:before {
  bottom: -1px;
}
[data-dropdown-open=tops] .p-item-nav-list .item.dropdown[data-name=tops] a span:after {
  bottom: 0;
}

[data-dropdown-open=bottoms] .p-item-nav-list .item.dropdown[data-name=bottoms] a {
  text-decoration: underline;
}
[data-dropdown-open=bottoms] .p-item-nav-list .item.dropdown[data-name=bottoms] a:before {
  border-inline-end-color: var(--bg-color);
  border-block-end-color: var(--bg-color);
}
[data-dropdown-open=bottoms] .p-item-nav-list .item.dropdown[data-name=bottoms] a:after {
  background-color: var(--text-color);
}
[data-dropdown-open=bottoms] .p-item-nav-list .item.dropdown[data-name=bottoms] a span:before {
  bottom: -1px;
}
[data-dropdown-open=bottoms] .p-item-nav-list .item.dropdown[data-name=bottoms] a span:after {
  bottom: 0;
}

[data-dropdown-open=other] .p-item-nav-list .item.dropdown[data-name=other] a {
  text-decoration: underline;
}
[data-dropdown-open=other] .p-item-nav-list .item.dropdown[data-name=other] a:before {
  border-inline-end-color: var(--bg-color);
  border-block-end-color: var(--bg-color);
}
[data-dropdown-open=other] .p-item-nav-list .item.dropdown[data-name=other] a:after {
  background-color: var(--text-color);
}
[data-dropdown-open=other] .p-item-nav-list .item.dropdown[data-name=other] a span:before {
  bottom: -1px;
}
[data-dropdown-open=other] .p-item-nav-list .item.dropdown[data-name=other] a span:after {
  bottom: 0;
}

.p-item-nav-dropdown {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 64px;
  left: 0;
  background-color: var(--bg-color);
  border-block: 1px solid rgba(0, 0, 0, 0.15);
  z-index: 5;
  transition: var(--hover-animation-speed);
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}
[data-dropdown-open=tops] .p-item-nav-dropdown[data-name=tops] {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

[data-dropdown-open=bottoms] .p-item-nav-dropdown[data-name=bottoms] {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

[data-dropdown-open=other] .p-item-nav-dropdown[data-name=other] {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.p-item-nav-dropdown .title {
  width: 100%;
  display: flex;
  justify-content: center;
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
}
.p-item-nav-dropdown .title span {
  width: 100%;
  max-width: 720px;
  padding-inline: 20px;
  box-sizing: border-box;
}
.p-item-nav-dropdown .title a {
  padding-block: 20px;
  display: flex;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}
.p-item-nav-dropdown .title a:hover {
  text-decoration: underline;
}
.p-item-nav-dropdown .list {
  width: 100%;
  max-width: 720px;
  padding-inline: 20px;
  padding-block: var(--space-xs);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--space-sm);
  box-sizing: border-box;
}
.p-item-nav-dropdown .list ul {
  padding-inline: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.p-item-nav-dropdown .list a {
  text-decoration: none;
  line-height: 1;
}
.p-item-nav-dropdown .list a:hover {
  text-decoration: underline;
}
.p-item-detail {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-sm);
  position: relative;
}
.p-item-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.p-item-head-image, .p-item-head-thumb {
  position: relative;
}
.p-item-head-image .swiper-wrapper, .p-item-head-thumb .swiper-wrapper {
  padding-inline: 0;
  list-style: none;
}
.p-item-head-image .swiper-slide, .p-item-head-thumb .swiper-slide {
  aspect-ratio: 1/1;
  position: relative;
}
.p-item-head-image .swiper-slide img, .p-item-head-thumb .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-item-head-image {
  overflow: hidden;
}
.p-item-head-image .swiper-button-prev:after, .p-item-head-image .swiper-button-next:after {
  display: none;
}
.p-item-head-image .swiper-button-prev {
  left: var(--space-xxs);
}
.p-item-head-image .swiper-button-next {
  right: var(--space-xxs);
}
.p-item-head-image .swiper-slide:not(:first-child) {
  display: none;
}
.p-item-head-image.swiper-initialized .swiper-slide:not(:first-child) {
  display: block;
}
.p-item-head-thumb {
  padding-inline: 10px;
}
.p-item-head-thumb .swiper-slide:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid var(--text-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
  transition: var(--hover-animation-speed);
}
.p-item-head-thumb .swiper-slide img {
  position: relative;
  z-index: 0;
}
.p-item-head-thumb .swiper-slide.swiper-slide-thumb-active:before {
  opacity: 1;
}
.p-item-head-detail {
  padding-block: var(--space-sm);
  padding-inline: var(--space-xs);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-color);
}
.p-item-head-detail .wrap {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xxs);
}
.p-item-head-detail .category {
  padding-inline: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-item-head-detail .category li a {
  height: 30px;
  padding-inline: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  text-decoration: none;
  box-sizing: border-box;
  font-weight: 500;
  line-height: 1;
  transition: var(--hover-animation-speed);
}
.p-item-head-detail .category li a:hover {
  background-color: var(--text-color);
  color: var(--bg-color);
}
.p-item-head-detail .name {
  font-weight: 600;
  line-height: 1.4;
}
.p-item-head-detail .price {
  font-weight: 600;
  line-height: 1;
}
.p-item-head-detail .option {
  margin-block-start: var(--space-sm);
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.p-item-head-detail .option .title {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
}
.p-item-head-detail .option dd {
  margin-block-end: 10px;
}
.p-item-head-detail .button button {
  width: 100%;
  height: clamp(60px, 5vw, 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: var(--text-color);
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  font-weight: 600;
  line-height: 1;
  color: var(--bg-color);
  cursor: pointer;
  transition: var(--hover-animation-speed);
}
.p-item-head-detail .button button:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../../assets/images/item/bg_denim.jpg);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.8;
  transition: var(--hover-animation-speed);
}
.p-item-head-detail .button button span {
  position: relative;
  z-index: 2;
}
.p-item-head-detail .button button svg {
  width: clamp(20px, 1vw, 24px);
  position: absolute;
  top: 50%;
  right: var(--space-xs);
  z-index: 1;
  fill: var(--bg-color);
  transform: translateY(-50%);
  transition: var(--hover-animation-speed);
}
.p-item-head-detail .button button:hover {
  filter: brightness(120%);
}
.p-item-head-detail .button button:hover:before {
  opacity: 1;
}
.p-item-head-detail .button button:hover svg {
  transform: translateX(5px) translateY(-50%);
}
.p-item-head-detail .free-shipping {
  margin-block-start: var(--space-xxs);
  padding-block: 10px;
  border-block: 1px solid rgba(0, 0, 0, 0.3);
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.p-item-head-detail .notice {
  margin-block-start: var(--space-xxs);
  padding: clamp(15px, 1vw, 20px);
  border: 1px solid var(--text-color);
  font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
  line-height: 1.4;
  box-sizing: border-box;
}
.p-item-section, .p-item-related {
  margin-inline: var(--contents-inner-padding);
  padding-block-start: var(--space-xs);
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xs);
  border-block-start: 1px solid rgba(0, 0, 0, 0.15);
}
.p-item-section .title, .p-item-related .title {
  font-weight: 600;
  line-height: 1.6;
}
.p-item-section .inner b,
.p-item-section .inner strong {
  font-weight: 600;
}
.p-item-section .inner #openSizeGuide {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding-inline: 20px;
  background-color: var(--text-color);
  color: var(--bg-color);
  border: 1px solid var(--text-color);
  border-radius: 15px;
  text-decoration: none;
  font-weight: 500;
  line-height: 1;
  box-sizing: border-box;
  transition: var(--hover-animation-speed);
}
.p-item-section .inner #openSizeGuide:hover {
  background-color: #f4f2e7;
  color: var(--text-color);
}
.p-item-section .inner .sizing {
  width: 100%;
  max-width: 1000px;
  border-collapse: collapse;
}
.p-item-section .inner .sizing th,
.p-item-section .inner .sizing td {
  padding-block: clamp(5px, 0.5vw, 10px);
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
  text-align: center;
}
.p-item-section .inner .sizing .line {
  border-block-end: 1px solid var(--text-color);
}
.p-item-related {
  padding-block-start: var(--space-sm);
  row-gap: 20px;
}
@media screen and (min-width: 992px) {
  .p-item-nav {
    justify-content: center;
    overflow-x: visible;
  }
  .p-item-nav-list {
    padding-inline: 0;
    flex-shrink: 1;
  }
  .p-item-nav-list a.dropdown {
    pointer-events: all;
  }
  .p-item-nav-dropdown .list {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-item-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-item-head {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-item-head-image, .p-item-head-thumb, .p-item-head-detail {
    width: 50vw;
  }
  .p-item-head-image {
    grid-area: 1/1/2/2;
  }
  .p-item-head-thumb {
    grid-area: 2/1/3/2;
  }
  .p-item-head-detail {
    grid-area: 1/2/2/3;
  }
  .p-item-head-detail .wrap {
    max-width: 500px;
  }
  .p-item-section {
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    column-gap: var(--space-xs);
  }
  .p-item-section .title {
    grid-column: 1/4;
  }
  .p-item-section .inner {
    grid-column: 5/13;
  }
}
@media screen and (min-width: 1600px) {
  .p-item-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-size-guide-header {
  margin-block-end: var(--space-sm);
}
.p-size-guide-header h2 {
  font-weight: 600;
  line-height: 1;
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
  padding-block-end: 10px;
}
.p-size-guide-header h2 span {
  margin-inline-start: 10px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}
.p-size-guide-title {
  margin-block-end: var(--space-xxs);
}
.p-size-guide-title span {
  margin-left: 10px;
  font-weight: normal;
}
.p-size-guide-notice {
  margin-block-end: var(--space-xs);
  padding: var(--space-xxs);
  background-color: #f7f7f7;
  line-height: 1.6;
}
.p-size-guide-item {
  margin-block-end: var(--space-sm);
}
.p-size-guide-item-name {
  font-weight: normal;
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
  margin-block-end: var(--space-xs);
}
.p-size-guide-image {
  display: flex;
  justify-content: center;
}
.p-size-guide-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.p-size-guide-image .sp {
  display: block;
}
.p-size-guide-image .pc {
  display: none;
}
@media screen and (min-width: 992px) {
  .p-size-guide-image .sp {
    display: none;
  }
  .p-size-guide-image .pc {
    display: block;
    max-width: 700px;
  }
}
.p-size-guide-footer {
  padding: var(--space-xs);
  background-color: #f7f7f7;
}
.p-size-guide-definitions {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.p-size-guide-definitions div {
  display: flex;
  column-gap: var(--space-xxs);
}
.p-size-guide-definitions dt {
  width: 100px;
  font-weight: 600;
  flex-shrink: 0;
}
.p-size-guide-definitions dd {
  margin: 0;
  line-height: 1.5;
}
.p-size-guide-definitions dd small {
  display: block;
  margin-block-start: 5px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.9em;
}

/* --------------------------------- */
body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0;
}
.modal-overlay.is-active {
  display: flex;
}

.modal-container {
  background-color: #fff;
  width: 80%;
  max-width: 900px;
  max-height: 90vh;
  position: relative;
  padding: 40px 20px;
  overflow-y: auto;
}

@media screen and (min-width: 992px) {
  .modal-container {
    padding: 60px 40px;
  }
}
/*
.modal-close-btn {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 24px;
  background: none; border: none; cursor: pointer;
}
*/
/* --------------------------------- *//*# sourceMappingURL=item.css.map */