@charset "UTF-8";
/* custom property ------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Barlow:wght@400;500;600;700&display=swap");
/* Default Options */
/* Media Query */
/* Transform Font Size */
/* reset --------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/* init --------------------------------------*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", "Zen Kaku Gothic New", "メイリオ", "MS Pゴシック", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0;
  color: var(--text-color);
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: #f4f2e7;
  font-weight: 400;
  line-height: 2;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.03em;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body.bg2 {
  background-color: var(--background-color2);
}
body.bg3 {
  background-color: var(--background-color3);
}

a {
  color: var(--text-color);
}
a:hover {
  text-decoration: none;
  color: #000;
}

input[type=submit],
button {
  border-radius: 0;
  appearance: none;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
}

::-moz-selection {
  background-color: var(--text-color);
  color: var(--bg-color);
}

::selection {
  background-color: var(--text-color);
  color: var(--bg-color);
}

.l-header {
  width: 100%;
  height: clamp(60px, 6vw, 80px);
  padding-inline: max(4vw, 10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: var(--space-xxs);
  background-color: rgb(244, 242, 231);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-sizing: border-box;
  transition: var(--hover-animation-speed);
}
.l-header:before {
  content: "";
  width: 100%;
  height: 40px;
  display: block;
  background-color: rgb(244, 242, 231);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.l-header-logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.l-header-logo:before {
  content: "";
  width: 130%;
  height: 100%;
  display: block;
  background-image: url(../../assets/images/common/bg_logo.svg);
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  left: -15%;
  bottom: calc(clamp(5px, 0.5vw, 9px) * -1);
}
.l-header-logo a {
  width: 100%;
}
.l-header-logo img {
  width: auto;
  height: clamp(36px, 4.5vw, 60px);
  position: relative;
  z-index: 1;
}
.l-header-nav {
  margin-inline-start: auto;
  position: relative;
  z-index: 2;
  align-self: start;
  transition: var(--hover-animation-speed);
}
.l-header-nav .main,
.l-header-nav .sub {
  padding-inline: 0;
  list-style: none;
}
.l-header-nav .main a,
.l-header-nav .sub a {
  text-decoration: none;
}
.l-header-nav .main {
  display: none;
}
.l-header-nav .sub {
  height: 40px;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.l-header-nav .sub li a .icon {
  width: clamp(24px, 2vw, 26px);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--text-color);
  border-radius: 50%;
}
.l-header-nav .sub li a .icon svg {
  fill: var(--bg-color);
}
.l-header-nav .sub li a .icon.guide svg {
  width: 12px;
}
.l-header-nav .sub li a .icon.user svg {
  width: 10px;
}
.l-header-nav .sub li a .icon.cart svg {
  width: 14px;
}
.l-header-nav .sub li a span {
  display: none;
}
.l-header-nav .sub li.sns {
  display: none;
}
.l-header-menu {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  align-self: start;
  position: relative;
  z-index: 3;
  cursor: pointer;
}
.l-header-menu span {
  width: 32px;
  height: 2px;
  display: block;
  background-color: var(--text-color);
  transform-origin: center;
  transition: var(--hover-animation-speed);
}
.navigationOpened .l-header-menu span:nth-child(1) {
  transform: translateY(4.5px) rotate3d(0, 0, 1, 45deg);
}
.navigationOpened .l-header-menu span:nth-child(2) {
  opacity: 0;
}
.navigationOpened .l-header-menu span:nth-child(3) {
  transform: translateY(-4.5px) rotate3d(0, 0, -1, 45deg);
}

@media screen and (min-width: 992px) {
  .l-header-nav {
    display: flex;
    flex-direction: column;
    align-items: end;
  }
  .l-header-nav .main {
    height: 40px;
    display: flex;
    column-gap: clamp(40px, 5vw, 60px);
    align-items: center;
  }
  .l-header-nav .main a {
    font-weight: 500;
    line-height: 1;
    transition: var(--hover-animation-speed);
  }
  .l-header-nav .sub {
    align-items: center;
    column-gap: 20px;
  }
  .l-header-nav .sub li {
    padding-inline-start: 20px;
    position: relative;
  }
  .l-header-nav .sub li:before {
    content: "";
    width: 1px;
    height: 24px;
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: calc(50% - 12px);
    left: 0;
  }
  .l-header-nav .sub li:first-child {
    padding-inline-start: 0;
  }
  .l-header-nav .sub li:first-child:before {
    display: none;
  }
  .l-header-nav .sub li a {
    display: grid;
    grid-template-columns: 30px auto;
    align-items: center;
    column-gap: 8px;
  }
  .l-header-nav .sub li a span {
    display: block;
    line-height: 1;
  }
  .l-header-nav .sub li.sns {
    padding-inline-start: 0;
    display: block;
  }
  .l-header-nav .sub li.sns:before {
    display: none;
  }
  .l-header-nav .sub li.sns a {
    display: block;
  }
  .l-header-nav .sub li.sns a svg {
    width: 24px;
  }
  .l-header-menu {
    display: none;
  }
}

.l-footer {
  margin-block-start: var(--space-lg);
  padding-inline: var(--contents-inner-padding);
}
.l-footer-nav {
  padding-inline: 0;
  list-style: none;
  padding-block: var(--space-xs);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-block-start: 1px solid rgba(0, 0, 0, 0.15);
}
.l-footer-nav a {
  padding-block: var(--space-xxs);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}
.l-footer-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.l-footer-list .item {
  padding-block: clamp(30px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: var(--space-xxs);
  border-block-start: 1px solid rgba(0, 0, 0, 0.15);
}
.l-footer-list .item svg.comment {
  width: 36px;
}
.l-footer-list .item svg.device {
  width: 36px;
}
.l-footer-list .item svg.track {
  width: 40px;
}
.l-footer-list .item svg.cart {
  width: 28px;
}
.l-footer-list .item .title {
  margin-block-end: 10px;
  font-weight: 500;
  line-height: 1;
}
.l-footer-list .item p {
  line-height: 1.6;
  text-align: center;
}
.l-footer-list .item .instagram a {
  display: grid;
  grid-template-columns: 18px auto;
  column-gap: 5px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.l-footer-list .item .text {
  line-height: 1;
}
.l-footer-list .item .price {
  width: 200px;
  padding-block: 10px;
  border-block: 1px solid rgba(0, 0, 0, 0.15);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.l-footer-list .item .c-notice {
  width: 200px;
  line-height: 1.2;
}
.l-footer-list .item .list {
  width: 200px;
  padding-block: 10px;
  padding-inline: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 10px;
  border-block: 1px solid rgba(0, 0, 0, 0.15);
}
.l-footer-list .item .list li:first-child {
  border-inline-end: 1px solid rgba(0, 0, 0, 0.15);
}
.l-footer-list .item .list li a {
  padding-inline: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: var(--hover-animation-speed);
}
.l-footer-list .item .list li a:hover {
  text-decoration: underline;
}
.l-footer-list .item .card {
  width: 150px;
}
.l-footer-bottom {
  padding-block: var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: var(--space-xs);
  border-block-start: 1px solid rgba(0, 0, 0, 0.15);
}
.l-footer-bottom p {
  line-height: 1.2;
}
.l-footer-bottom .info,
.l-footer-bottom .nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--space-xs);
  line-height: 1.2;
}
.l-footer-bottom .nav {
  padding-inline: 0;
  list-style: none;
}
.l-footer-bottom .nav a {
  font-weight: 500;
  text-decoration: none;
  transition: var(--hover-animation-speed);
}
.l-footer-bottom .nav a:hover {
  text-decoration: underline;
}
.l-footer-bottom .sns {
  padding-inline: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 24px);
  align-items: center;
  column-gap: var(--space-xs);
}
.l-footer-bottom .logo {
  width: 180px;
  margin-block: 20px;
}
.l-footer-bottom .logo img {
  width: 100%;
}
.l-footer-bottom .copyright {
  font-size: 0.625rem;
}
@media screen and (min-width: 992px) {
  .l-footer {
    padding-inline: max(7vw, 20px);
  }
  .l-footer-nav {
    margin-block-end: var(--space-xs);
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: clamp(40px, 5vw, 100px);
    border-block-start: 0;
  }
  .l-footer-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-block-start: 0;
  }
  .l-footer-list .item {
    border-block-start: 0;
    border-inline-end: 1px solid rgba(0, 0, 0, 0.15);
  }
  .l-footer-list .item:last-child {
    border-inline-end: 0;
  }
  .l-footer-bottom {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    column-gap: 60px;
    row-gap: var(--space-xxs);
    border-block-start: 0;
  }
  .l-footer-bottom .text {
    grid-area: 1/1/2/2;
  }
  .l-footer-bottom .info,
  .l-footer-bottom .nav {
    display: flex;
    column-gap: 30px;
  }
  .l-footer-bottom .info {
    grid-area: 1/2/2/3;
  }
  .l-footer-bottom .nav {
    grid-area: 2/1/3/2;
  }
  .l-footer-bottom .sns {
    grid-area: 1/3/2/4;
    column-gap: 30px;
  }
  .l-footer-bottom .logo {
    margin-block: 0;
    grid-area: 1/4/3/5;
  }
  .l-footer-bottom .copyright {
    grid-area: 2/2/3/4;
  }
}

/* ----------------------------------------- */
body.navigationOpened {
  overflow: hidden;
}
body.navigationOpened .l-header-wrap {
  transition: all 0ms ease;
  box-shadow: 0 0 0 !important;
}

/* navigation ------------------------------ */
.p-nav {
  width: 100%;
  height: 100vh;
  background-color: var(--text-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  box-sizing: border-box;
  pointer-events: none;
  overflow-y: scroll;
  transition: var(--hover-animation-speed);
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}
.p-nav-main {
  width: 100%;
  padding-inline: var(--space-sm);
  box-sizing: border-box;
}
.navigationOpened .p-nav {
  pointer-events: auto;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.p-nav-inner {
  padding-block-start: 160px;
  padding-block-end: 20px;
  display: flex;
  flex-direction: column;
  row-gap: var(--space-sm);
}
.p-nav-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xs);
}
.p-nav-list a {
  text-decoration: none;
  line-height: 1;
  color: var(--bg-color);
}
.p-nav-sns {
  padding-inline: 0;
  list-style: none;
  display: flex;
  column-gap: 20px;
}
.p-nav-sns a svg {
  width: 24px;
  fill: var(--bg-color);
}
@media screen and (min-width: 992px) {
  .p-nav {
    display: none;
  }
}

:root {
  --contents-inner-padding: max(5vw, 20px);
  --grid-column-guide: repeat(12, 1fr);
  --space-lg: clamp(120px, 15vw, 240px);
  --space-md: clamp(80px, 10vw, 160px);
  --space-sm: clamp(40px, 5vw, 80px);
  --space-xs: clamp(20px, 3vw, 40px);
  --space-xxs: clamp(10px, 1vw, 20px);
  --bg-color: rgba(255, 255, 255, 1);
  --text-color: rgba(0, 0, 0, 1);
  --accent-color: rgba(0, 133, 101, 1);
  --hover-animation-speed: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

/* import ---------------------------------- */
/* layout ---------------------------------- */
.l-wrapper {
  width: 100%;
  position: relative;
}
.l-wrapper.column {
  display: grid;
  grid-template-columns: var(--grid-column-guide);
  column-gap: var(--space-xxs);
}
.l-contents {
  padding-block-start: var(--space-sm);
  padding-inline: var(--contents-inner-padding);
}
.l-container {
  position: relative;
}
@media screen and (min-width: 992px) {
  .l-section__title {
    grid-column: 1/4;
  }
  .l-section__inner {
    grid-column: 4/13;
  }
}
@media screen and (min-width: 1280px) {
  .l-contents.column {
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    column-gap: var(--space-xxs);
  }
  .l-contents.column .p-pageheader {
    grid-area: 1/1/2/4;
  }
  .l-contents.column .l-container {
    grid-area: 1/4/2/13;
  }
  .l-contents.introduction {
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    column-gap: var(--space-xxs);
  }
  .l-contents.introduction .p-pageheader {
    grid-area: 1/1/2/4;
  }
  .l-contents.introduction .p-intro {
    grid-area: 1/4/2/13;
  }
  .l-contents.introduction .l-container {
    grid-area: 2/1/3/13;
  }
}

/* Project --------------------------------- */
.p-pageheader {
  margin-block-end: var(--space-sm);
  display: flex;
  flex-direction: column;
  row-gap: var(--space-xxs);
}
.p-pageheader .title {
  margin-inline: 10px;
}
.p-pageheader .title img {
  width: auto;
  height: clamp(32px, 3vw, 48px);
}
.p-pageheader .text {
  display: flex;
  align-items: center;
  column-gap: var(--space-xxs);
  line-height: 1;
}
.p-intro {
  margin-block-end: var(--space-md);
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  column-gap: var(--space-xs);
  row-gap: var(--space-sm);
}
.p-intro .image {
  grid-area: 1/1/2/10;
  width: 100%;
  position: relative;
  z-index: 0;
}
.p-intro .image .inner {
  width: calc(100vw - var(--contents-inner-padding));
  max-height: 640px;
  aspect-ratio: 4/3;
  background-color: rgba(0, 0, 0, 0.2);
}
.p-intro .image .inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-intro .copy {
  grid-area: 2/1/3/4;
  display: flex;
  flex-direction: row-reverse;
  justify-self: center;
  align-items: start;
  column-gap: 10px;
  position: relative;
  z-index: 1;
}
.p-intro .copy span {
  padding-block: 10px 5px;
  padding-inline: var(--space-xs);
  background-image: url(../../assets/images/item/bg_denim.jpg);
  background-position: right;
  background-size: cover;
  position: relative;
  font-size: clamp(1.5rem, 0.8863636364rem + 1.7045454545vw, 2.25rem);
  font-weight: 600;
  line-height: 1;
  writing-mode: vertical-rl;
  font-feature-settings: normal;
  color: var(--bg-color);
}
.p-intro .copy span:last-child {
  margin-top: var(--space-xs);
}
.p-intro p {
  grid-area: 2/4/3/10;
}
.p-news-list.detail {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  column-gap: var(--space-xs);
}
.p-news-list .item a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.p-news-list .item a:hover .image {
  opacity: 0.8;
}
.p-news-list .item .image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 5px;
  transition: var(--hover-animation-speed);
}
.p-news-list .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-news-list .item .inner {
  padding-block: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 10px;
}
.p-news-list .item .name {
  font-weight: 500;
  line-height: 1.6;
}
.p-news-list .item .price {
  line-height: 1;
}
.p-item-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: var(--space-sm);
}
.p-item-list .item a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.p-item-list .item a:hover .image {
  opacity: 0.8;
}
.p-item-list .item .image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  transition: var(--hover-animation-speed);
}
.p-item-list .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-item-list .item .inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 10px;
}
.p-item-list .item .category {
  height: 24px;
  display: flex;
  padding-inline: 15px;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  line-height: 1;
}
.p-item-list .item .name {
  font-weight: 500;
  line-height: 1.6;
}
.p-item-list .item .price {
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .p-pageheader .breadcrumbs li:last-child {
    flex: inherit;
  }
  .p-intro .image .inner {
    aspect-ratio: 2/1;
  }
}
@media screen and (min-width: 1280px) {
  .p-intro {
    grid-area: 1/4/2/13;
  }
  .p-intro .image .inner {
    width: calc(100% + var(--contents-inner-padding));
  }
  .p-intro .copy {
    grid-area: 2/1/3/5;
  }
  .p-intro p {
    grid-area: 2/5/3/10;
  }
}

/* component ------------------------------- */
.c-icon-arrow {
  width: clamp(32px, 3vw, 40px) !important;
  height: auto !important;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  box-sizing: border-box;
  transition: var(--hover-animation-speed);
}
.c-icon-arrow svg {
  width: 50% !important;
  transition: var(--hover-animation-speed);
}
.c-icon-arrow.reverse {
  transform: scale(-1, 1);
}
.c-icon-arrow:hover {
  background-color: var(--text-color);
}
.c-icon-arrow:hover svg {
  fill: var(--bg-color);
  transform: translateX(5px);
}
a:hover .c-icon-arrow {
  background-color: var(--text-color);
}
a:hover .c-icon-arrow svg {
  fill: var(--bg-color);
  transform: translateX(5px);
}

.c-anchor {
  display: grid;
  grid-template-columns: auto clamp(32px, 3vw, 40px);
  column-gap: var(--space-xxs);
  align-items: center;
  line-height: 1;
  text-decoration: none;
}
.c-anchor .text {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.c-anchor .text:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: var(--text-color);
  transform-origin: left;
}
.c-anchor:hover .text:after {
  animation: anchorline 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
@keyframes anchorline {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.c-button {
  width: 100%;
  min-width: 200px;
  height: clamp(48px, 5vw, 64px);
  padding-inline: clamp(30px, 3vw, 50px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 2vw, 30px);
  border: 2px solid var(--accent-color);
  border-radius: clamp(24px, 2.5vw, 32px);
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  color: var(--accent-color);
  box-sizing: border-box;
  transition: var(--hover-animation-speed);
}
.c-button svg {
  width: 36px;
  fill: var(--accent-color);
  transition: var(--hover-animation-speed);
}
.c-button:hover {
  background-color: var(--accent-color);
  color: var(--bg-color);
}
.c-button:hover svg {
  fill: var(--bg-color);
  transform: translateX(5px);
}
.c-button.white {
  border-color: var(--bg-color);
  color: var(--bg-color);
}
.c-button.white svg {
  fill: var(--bg-color);
}
.c-button.white:hover {
  background-color: var(--bg-color);
  color: var(--accent-color);
}
.c-button.white:hover svg {
  fill: var(--accent-color);
}
.c-breadcrumbs {
  margin-block-start: clamp(80px, 10vw, 120px);
  padding-block-start: 10px;
  padding-inline: var(--contents-inner-padding);
  display: flex;
  justify-content: end;
  border-block-start: 1px solid rgba(0, 0, 0, 0.15);
}
.c-breadcrumbs ul {
  max-width: 100%;
  padding-inline: 0;
  list-style: none;
  display: flex;
  justify-content: end;
  align-items: center;
  column-gap: 8px;
}
.c-breadcrumbs li {
  display: grid;
  grid-template-columns: auto 10px;
  align-items: center;
  column-gap: 8px;
  overflow: hidden;
}
.c-breadcrumbs li span {
  width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.c-breadcrumbs li:after {
  content: "";
  width: 10px;
  height: 1px;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
}
.c-breadcrumbs li:last-child {
  display: block;
  flex: 1;
}
.c-breadcrumbs li:last-child:after {
  display: none;
}
.c-breadcrumbs li a {
  text-decoration: none;
  white-space: nowrap;
}
.c-breadcrumbs li a:hover {
  text-decoration: underline;
}
.c-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  backdrop-filter: blur(20px);
  pointer-events: none;
  opacity: 0;
  transition: var(--hover-animation-speed);
}
.navigationOpened .c-overlay,
[data-dropdown-open] .c-overlay {
  pointer-events: visible;
  opacity: 1;
}

.c-pagination {
  margin-block-start: var(--space-md);
  padding: 0;
  display: flex;
  justify-content: center;
  column-gap: var(--space-xs);
  list-style: none;
}
.c-pagination a {
  width: clamp(32px, 4vw, 40px);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  box-sizing: border-box;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
  transition: var(--hover-animation-speed);
}
.c-pagination a:hover, .c-pagination a.current {
  border-color: var(--text-color);
  font-weight: 500;
}
.c-pagination a.prev, .c-pagination a.next {
  border-color: var(--text-color);
}
.c-pagination a.prev svg, .c-pagination a.next svg {
  width: 40%;
  transform-origin: center;
  transition: var(--hover-animation-speed);
}
.c-pagination a.prev svg {
  transform: rotate3d(0, 0, 1, 180deg);
}
.c-notice {
  padding-inline: var(--inner-padding);
  list-style: none;
  text-decoration: none;
}
.c-notice li {
  padding-inline-start: 1em;
  text-indent: -1em;
  font-size: clamp(0.75rem, 0.6988636364rem + 0.1420454545vw, 0.8125rem);
  line-height: 1.4;
}
.c-notice li:before {
  content: "※";
}
.c-select {
  position: relative;
}
.c-select select {
  width: 100%;
  height: clamp(40px, 4vw, 48px);
  padding-inline: var(--space-xxs);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  appearance: none;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  transition: var(--hover-animation-speed);
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.c-select select:hover, .c-select select.focus {
  border-color: var(--text-color);
}
.c-select:after {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  border-inline-end: 1px solid var(--text-color);
  border-block-end: 1px solid var(--text-color);
  box-sizing: border-box;
  position: absolute;
  top: calc(50% - 3px);
  right: var(--space-xxs);
  z-index: 1;
  transform-origin: center;
  transform: rotate3d(0, 0, 1, 45deg);
}
.c-input-text, .c-input-textarea {
  width: 100%;
  padding-inline: var(--space-xxs);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  transition: var(--hover-animation-speed);
  outline: none;
}
.c-input-text:hover, .c-input-text.focus, .c-input-textarea:hover, .c-input-textarea.focus {
  border-color: var(--text-color);
}
.c-input-text {
  height: clamp(40px, 4vw, 48px);
}
.c-input-textarea {
  height: clamp(200px, 20vw, 300px);
}
.c-input-radio {
  width: 100%;
  padding-inline: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--space-xs);
  row-gap: var(--space-xxs);
}
.c-input-radio li {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  line-height: 1;
}
.c-input-radio li input {
  position: absolute;
  z-index: 0;
  opacity: 0;
}
.c-input-radio li input:checked + label:before {
  border-color: var(--text-color);
}
.c-input-radio li input:checked + label:after {
  opacity: 1;
}
.c-input-radio li label {
  display: grid;
  grid-template-columns: 16px auto;
  column-gap: 5px;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.c-input-radio li label:before, .c-input-radio li label:after {
  content: "";
  display: block;
  transition: var(--hover-animation-speed);
}
.c-input-radio li label:before {
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: var(--bg-color);
  box-sizing: border-box;
  position: relative;
  z-index: 0;
}
.c-input-radio li label:after {
  width: 8px;
  aspect-ratio: 1/1;
  background-color: var(--text-color);
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 4px);
  left: 4px;
  z-index: 1;
  opacity: 0;
}
.c-input-submit {
  width: 100%;
  height: clamp(60px, 5vw, 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: var(--text-color);
  background-image: url(../../assets/images/item/bg_denim.jpg);
  background-size: cover;
  border: 0;
  border-radius: 5px !important;
  overflow: hidden;
  font-weight: 600;
  line-height: 1;
  color: var(--bg-color);
  cursor: pointer;
  transition: var(--hover-animation-speed);
}
.c-input-submit span {
  position: relative;
  z-index: 2;
}
.c-input-submit:hover {
  filter: brightness(120%);
}

/* utility --------------------------------- */
.u-width-max {
  max-width: 2000px;
  margin-inline: auto;
}
.u-mg-block-xs {
  margin-block: var(--space-xs);
}
.u-mg-block-sm {
  margin-block: var(--space-sm);
}
.u-mg-block-md {
  margin-block: var(--space-md);
}
.u-mg-block-lg {
  margin-block: var(--space-md);
}
.u-txt-size-xxs {
  font-size: clamp(0.6875rem, 0.6363636364rem + 0.1420454545vw, 0.75rem);
}
.u-txt-size-xs {
  font-size: clamp(0.75rem, 0.6477272727rem + 0.2840909091vw, 0.875rem);
}
.u-txt-size-sm {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
}
.u-txt-size-md {
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
}
.u-txt-size-lg {
  font-size: clamp(1.125rem, 0.8181818182rem + 0.8522727273vw, 1.5rem);
}
.u-txt-size-xl {
  font-size: clamp(1.5rem, 0.8863636364rem + 1.7045454545vw, 2.25rem);
  line-height: 1.6;
}
.u-txt-size-xxl {
  font-size: clamp(2rem, 1.1818181818rem + 2.2727272727vw, 3rem);
  line-height: 1.6;
}
.u-txt-f-number {
  font-family: "Barlow", sans-serif;
}
.u-txt-up {
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  .u-pd-block-end-side {
    padding-block-end: clamp(160px, 20vw, 300px);
  }
}

/* --------------------------------- */
/* --------------------------------- *//*# sourceMappingURL=common.css.map */