@charset "UTF-8";
html {
  font-size: 10px;
}

@media screen and (max-width: 1100px) {
  html {
    font-size: 0.909vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.333vw;
  }
}
:root {
  --main-color: #67143f;
}

main {
  overflow: hidden;
}

main .inner {
  max-width: 1000px;
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
  line-break: strict; /* 禁則処理を厳格に適用 */
}

.border {
  background-color: #67143f;
  width: 100%;
  height: 1vw;
}

.border2 {
  background-color: #67143f;
  width: 100%;
  margin-top: 4px;
  height: 2px;
}

.border3 {
  background-color: #67143f;
  width: 100%;
  margin-bottom: 4px;
  height: 2px;
}

.mvArea {
  background-color: #d7d3ce;
  position: relative;
  padding-bottom: 2px;
}

.mvWrap {
  width: 100%;
  margin: 0 auto;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.mvArea__title {
  width: 74.6rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 3.5vw;
}

.mvArea__lead {
  margin-top: 2rem;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.8;
  position: absolute;
  z-index: 5;
  color: var(--main-color);
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .border2 {
    background-color: #67143f;
    width: 100%;
    margin-top: 0.3rem;
    height: 0.2rem;
  }
  .border3 {
    background-color: #67143f;
    width: 100%;
    margin-bottom: 0.2rem;
    height: 0.2rem;
  }
  .mvArea {
    padding-top: 0;
    padding-bottom: 0;
  }
  .mvWrap {
    width: 100%;
    margin: 0 0 0 auto;
  }
  .mvArea__title {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 5rem;
  }
  .mvArea__lead {
    margin-top: 1.9rem;
    font-size: 2.8vw;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1400px) {
  .mvArea__title {
    padding-top: 4rem;
  }
}
/* ----------mvArea anime*/
.mvArea__anime {
  position: relative;
  display: flex;
  padding-top: 1rem;
}

.mvArea__roop {
  display: flex;
  list-style: none;
  animation: infinity-scroll-left 30s linear infinite;
}

.mvArea__roop li {
  width: 110vw;
}

@media screen and (min-width: 1400px) {
  .mvArea__anime {
    padding-top: 0;
  }
  .mvArea__roop li {
    width: 200vw;
    max-width: 1484px;
  }
}
@media screen and (max-width: 768px) {
  .mvArea__anime {
    padding-top: 0;
  }
  .mvArea__roop li {
    width: 160rem;
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* ---------//mvArea anime*-----------/
// -----------end mvArea------------

  /* ----------cont--------------- */
.cont {
  background-color: #67143f;
  padding: 8rem 5% 10rem;
}

.contPic img {
  width: 100%;
  height: auto;
}

.contBox {
  position: relative;
}

.contWrap {
  margin-top: 88px;
  width: 100%;
  width: 99%;
  margin-left: 1%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  flex-wrap: wrap;
  gap: 14% 8%;
  height: auto;
  margin-bottom: 80px;
}

.gobold {
  font-size: 6.4rem;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
}

.gobold::after {
  content: "";
  width: 100%;
  height: 0.4rem;
  border-top: solid 2px #fff;
  margin-left: 3rem;
}

.contBox__bold {
  margin-top: 16px;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: left;
}

.contBox__txt {
  margin-top: 16px;
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: #fff;
  text-align: left;
}

.contBox__txt__size {
  width: 110%;
}

.contBox__txt__partner {
  width: 114%;
}

.contWrappic {
  display: flex;
  gap: 3%;
}

.contPic {
  width: 51%;
  margin: 0 auto;
}

.contBox__picrighttxt {
  width: 47%;
}

.brandLink {
  width: 16.8rem;
  margin: 5rem auto 0;
}

.brandLink a {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--main-color);
  padding: 0.3rem 2rem;
  background-color: #fff;
  border-radius: 0.5rem;
  position: relative;
}

.brandLink a::before,
.brandLink a::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  right: 1rem;
  width: 1px;
  height: 1rem;
  border-radius: 9999px;
  background-color: var(--main-color);
  transform-origin: 50% calc(100% - 0.5px);
}

.brandLink a::before {
  transform: rotate(27.5deg);
}

.brandLink a::after {
  transform: rotate(-27.5deg);
}

.cont__check {
  margin-bottom: 6rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media screen and (min-width: 1400px) {
  .cont {
    padding: 8rem 5% 7vw;
  }
}
@media screen and (max-width: 768px) {
  .contPic {
    width: 70%;
  }
  .contWrappic {
    flex-direction: column;
    width: 100%;
    margin-left: auto;
  }
  .contBox__txt__size {
    width: 100%;
  }
  .contBox__txt__partner {
    width: 100%;
  }
  .contBox__picrighttxt {
    margin-top: 3rem;
    width: 100%;
  }
  .brandLink {
    width: 25rem;
    margin: 5rem auto 0;
  }
  .brandLink a {
    font-size: 4.5rem;
    padding: 0.3rem 3rem;
    border-radius: 1rem;
  }
  .brandLink a::before,
  .brandLink a::after {
    top: calc(50% - 0.65rem);
    right: 1.3rem;
    height: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .cont {
    padding: 7rem 5% 3rem;
  }
  .contBox__bold {
    font-size: 3.9rem;
    margin-top: 2rem;
    margin-right: 0;
    text-align: center;
  }
  .contBox__txt {
    margin: 2rem auto 0;
    width: 100%;
    font-size: 2.6rem;
    text-align: justify;
  }
  .gobold:after {
    width: 100%;
  }
  .contWrap {
    margin: 6rem auto 6rem;
    width: 100%;
    display: block;
  }
  .contBox {
    width: 100%;
  }
  .contBox + .contBox {
    margin-top: 9rem;
  }
}
/*------------ collection */
.collection {
  padding: 10rem 0;
  border-bottom: dashed 1px #808080;
  background-color: #f4f4f4;
  position: relative;
  z-index: 0;
}

.collection::before {
  content: "";
  background-image: url(/base/pc/store/special/denimstyle/2025aw/img/top/denimhaikei1.webp);
  display: block;
  width: 100%;
  background-size: cover;
  aspect-ratio: 5/1;
  position: absolute;
  z-index: -4;
  top: -10vw;
}

@media screen and (min-width: 1400px) {
  .collection::before {
    content: "";
    background-image: url(/base/pc/store/special/denimstyle/2025aw/img/top/denimhaikei1long.webp);
    display: block;
    width: 100%;
    background-size: cover;
    aspect-ratio: 649/83;
    position: absolute;
    z-index: -4;
    top: -10vw;
  }
}
.collection__bg {
  position: absolute;
  width: 100%;
  z-index: -3;
}

.collection__bg__note {
  position: absolute;
  right: -81px;
  width: 69%;
  margin-top: -23vw;
}

@media screen and (min-width: 1400px) {
  .collection__bg__note {
    position: absolute;
    right: -6%;
    width: auto;
    margin-top: -23vw;
  }
}
@media screen and (max-width: 768px) {
  .collection__bg__note {
    position: absolute;
    right: -13%;
    margin-top: -24vw;
    max-width: 146.5vw;
    width: 154vw;
  }
}
.collection__TtlArea {
  position: relative;
  z-index: 10;
  max-width: 100rem;
  margin: auto;
}
.collection__TtlArea::after {
  position: absolute;
  content: "";
  top: 28%;
  background: url(/base/pc/store/special/denimstyle/2025aw/img/top/dog2.png);
  background-size: contain;
  width: 24rem;
  max-width: 247px;
  aspect-ratio: 8/10;
  background-repeat: no-repeat;
  left: -3.5%;
}

.collection__TtlArea__title {
  width: 70%;
  max-width: 779px;
  margin: 0 auto;
  font-size: 6.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

.collectionMainlead {
  color: var(--main-color);
  margin-top: 40px;
  font-size: min(2.4vw, 22px);
  font-weight: 600;
  line-height: 3.4rem;
  text-align: center;
}

.collection__lead {
  color: var(--main-color);
  margin-top: 4rem;
  font-size: min(1.8rem, 16px);
  font-weight: 500;
  line-height: 3.3rem;
  text-align: center;
}

.itemCont__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 13px;
  justify-items: center;
  justify-content: space-evenly;
  align-content: center;
  align-items: center;
  max-width: 1000px;
  margin-top: 5rem;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.itemCont__wrap::after {
  content: "";
  background-image: url(/base/pc/store/special/denimstyle/2025aw/img/top/bgball2.webp);
  display: block;
  position: absolute;
  left: -13%;
  bottom: -15%;
  width: 20rem;
  aspect-ratio: 224/456;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .itemCont__wrap::after {
    bottom: -8%;
  }
}

.itemCont__wrap--sp {
  display: none;
}

.itemCont__wrap__cheki {
  position: relative;
  width: 32rem;
  height: 50rem;
}

.collection .itemWrap {
  position: relative;
}

@media screen and (max-width: 768px) {
  .collection__TtlArea {
    padding-right: 5%;
    padding-left: 5%;
  }
  .collection__TtlArea::after {
    position: absolute;
    content: "";
    top: 73%;
    background: url(/base/pc/store/special/denimstyle/2025aw/img/top/dog2sp.png);
    background-size: contain;
    width: 24rem;
    max-width: 247px;
    aspect-ratio: 57/43;
    background-repeat: no-repeat;
    left: -2.5%;
  }
  .collection__TtlArea__title {
    width: 100%;
    margin: 0 auto;
  }
  .collection .collectionMainlead {
    margin-top: 4rem;
    font-size: 4.8vw;
    line-height: 2;
  }
  .collection__lead {
    margin-top: 1.5rem;
    font-size: 3.2vw;
    line-height: 2;
  }
  .itemCont__wrap {
    padding-right: 5%;
    padding-left: 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 13px;
    justify-items: center;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
    max-width: 940px;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
  }
  .itemCont__wrap--pc {
    display: none;
  }
  .itemCont__wrap--sp {
    display: grid;
  }
}
/* ------------modal */
.itemCont__wrap__cheki--2 {
  margin-top: 2rem;
}

.itemCont__wrap__cheki--2 img {
  padding-top: 17px;
  margin-top: -5px;
}

.itemCont__wrap__cheki--5 img {
  margin-top: -11px;
}

button {
  border: none;
}

.departdeloop {
  max-width: 1000px;
  margin-top: 6rem;
  margin-right: auto;
  font-size: 1.4rem;
  margin-left: 28%;
  margin-bottom: 6vw;
}

@media screen and (max-width: 768px) {
  .departdeloop {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    font-size: 2.86vw;
  }
}
/* モーダル */
.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__inner {
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  width: 100%;
  margin: auto;
  right: 0;
  left: 0;
  z-index: 30;
  bottom: 0;
  top: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 3rem;
}

.modal__txt {
  margin-top: 1vw;
  width: 100%;
  text-align: justify;
}

.modal__shop {
  margin-top: 1.5em;
  font-size: 1.5rem;
  width: 100%;
}

.modal__shop--small {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.3rem;
}

.modal__shop--sp {
  display: none;
}

.modal-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.modal-header {
  position: absolute;
  right: 15%;
  top: 12%;
}

.modal-close {
  background: transparent;
  border: 0;
  position: absolute;
  opacity: 0;
  width: 5rem;
  height: 5rem;
  z-index: 2000;
}

.modal-header .modal-close::before {
  content: "✕";
}

.modal-content {
  line-height: 1.5;
  padding-top: 58.5%;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 83% 100%, 100% 100%, 0 100%);
}

.modal-closebtn {
  position: relative;
  top: 0;
}

.modal-content__modal1 {
  background-color: #c9a7bb;
  background-image: linear-gradient(180deg, #c2a1b4 11%, #c9a7bb 8%, #c9a7bb 17%);
}

.modal-content__modal1 .modal__txt {
  color: #67143f;
}

.modal-content__modal1--close {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .modal-content.modal-content__modal1 {
    padding-top: 117%;
    clip-path: polygon(0 0, 100% 0, 100% 84%, 77% 100%, 100% 100%, 0 100%);
  }
  .modal-content__modal1 .modal__sp .modal__txt {
    top: 50rem;
    right: 7rem;
    width: 33%;
  }
  .modal__sp img {
    margin-left: -5%;
    transform: scale(1.05);
  }
  .modal-content__modal1 .modal__shop--sp {
    /* margin-left: -22rem; */
  }
}
.modal-content__modal2 {
  background-color: #e7d7db;
  background-image: linear-gradient(180deg, #dfcfd3 11%, #e7d7db 8%, #e7d7db 17%);
}

.modal-content__modal2 .modal__right {
  margin-top: -1rem;
}

.modal-content__modal2 .modal__txt {
  color: #a25474;
}

@media screen and (max-width: 768px) {
  .modal-content.modal-content__modal2 {
    padding-top: 130%;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 77% 100%, 100% 100%, 0 100%);
  }
  .modal-content__modal2 .modal__sp .modal__txt {
    top: 46rem;
    right: 8rem;
    width: 34%;
  }
  .modal-content__modal2 .modal__shop--sp {
    margin-top: 1rem;
  }
}
.modal-content__modal2--close {
  width: 100%;
}

.modal-content__modal3 {
  background-color: #dbd9e2;
  background-image: linear-gradient(180deg, #d3d1da 11%, #dbd9e2 8%, #dbd9e2 17%);
}

.modal-content__modal3 .modal__txt {
  color: #414196;
}

@media screen and (max-width: 768px) {
  .modal-content.modal-content__modal3 {
    padding-top: 117%;
    clip-path: polygon(0 0, 100% 0, 100% 84%, 77% 100%, 100% 100%, 0 100%);
  }
  .modal-content__modal3 .modal__sp .modal__txt {
    top: 51rem;
    right: 5rem;
    width: 40%;
  }
  .modal-content__modal3 .modal__shop--sp {
    /* margin-left: -17rem; */
  }
  .modal-content__modal3 .modal__sp img {
    margin-left: -3%;
  }
}
.modal-content__modal3--close {
  width: 100%;
}

.modal-content__modal4 {
  background-color: #dbd9e2;
  background-image: linear-gradient(180deg, #d4d2db 11%, #dbd9e2 8%, #dbd9e2 17%);
}

.modal-content__modal4 .modal__txt {
  color: #414197;
}

@media screen and (max-width: 768px) {
  .modal-content.modal-content__modal4 {
    padding-top: 132%;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 77% 100%, 100% 100%, 0 100%);
  }
  .modal-content__modal4 .modal__sp .modal__txt {
    top: 58rem;
    right: 5rem;
    width: 47%;
  }
  .modal-content__modal4 .modal__shop--sp {
    margin-top: 5rem;
  }
}
.modal-content__modal4--close {
  width: 100%;
}

.modal-content__modal5 {
  background-color: #c9a7bb;
  background-image: linear-gradient(180deg, #c2a1b4 11%, #c9a7bb 8%, #c9a7bb 17%);
}

.modal-content__modal5 .modal__txt {
  color: #67143f;
  width: 100%;
  font-size: 1.4rem;
  margin-top: -2vw;
}

.modal-content__modal5 .modal__shop {
  font-size: 1.4rem;
  margin-top: 1vw;
}

@media screen and (max-width: 768px) {
  .modal-content.modal-content__modal5 {
    padding-top: 148%;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 77% 100%, 100% 100%, 0 100%);
  }
  .modal-content__modal5 .modal__sp .modal__txt {
    top: 54rem;
    right: 5rem;
    width: 39%;
  }
  .modal-content__modal5 .modal__shop--sp {
    /* margin-left: -17rem; */
    margin-top: 2rem;
  }
}
.modal-content__modal5--close {
  width: 100%;
}

.modal-content__modal6 {
  background-color: #e7d7db;
  background-image: linear-gradient(180deg, #dfcfd3 11%, #e7d7db 8%, #e7d7db 17%);
  padding-top: 60.5%;
}

.modal-content__modal6 .modal__right img {
  margin-left: -0.5vw;
}

.modal-content__modal6 .modal__txt {
  color: #a25474;
  margin-top: -3vw;
  width: 99%;
  margin-left: -0.5vw;
}

.modal-content__modal6 .modal__shop {
  margin-left: -0.5vw;
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .modal-content.modal-content__modal6 {
    padding-top: 135%;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 77% 100%, 100% 100%, 0 100%);
  }
  .modal-content__modal6 {
    background-image: linear-gradient(180deg, #dfcfd3 8%, #e7d7db 8%, #e7d7db 17%);
  }
  .modal-content__modal6 .modal__sp .modal__txt {
    top: 43rem;
    right: 6rem;
    width: 41%;
  }
  .modal-content__modal6 .modal__shop--sp {
    /* margin-left: -17rem; */
  }
  .modal-content__modal6 .modal__sp {
    margin-top: -2rem;
  }
}
.modal-content__modal6--close {
  width: 100%;
}

.cheki__bg {
  width: 100%;
  height: 100%;
}

.cheki__bg--1 {
  background: url(/base/pc/store/special/denimstyle/2025aw/img/top/cheki1bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.cheki__bg--1 img {
  width: 100%;
  position: absolute;
  scale: 1.2;
  top: -1rem;
  left: -2rem;
}

.cheki__bg--2 {
  background: url(/base/pc/store/special/denimstyle/2025aw/img/top/cheki2bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.cheki__bg--2 img {
  width: 100%;
  position: absolute;
  left: 0;
  scale: 1.1;
  top: -2rem;
}

.cheki__bg--3 {
  background: url(/base/pc/store/special/denimstyle/2025aw/img/top/cheki3bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.cheki__bg--3 img {
  width: 100%;
  position: absolute;
  scale: 1.1;
  left: -3rem;
  top: -3rem;
}

.cheki__bg--4 {
  background: url(/base/pc/store/special/denimstyle/2025aw/img/top/cheki4bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.cheki__bg--4 img {
  width: 100%;
  position: absolute;
  left: -1rem;
  scale: 1.02;
  top: -4rem;
}

.cheki__bg--5 {
  background: url(/base/pc/store/special/denimstyle/2025aw/img/top/cheki5bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.cheki__bg--5 img {
  width: 100%;
  position: absolute;
  scale: 1.07;
  top: -1rem;
  left: -1rem;
}

.cheki__bg--6 {
  background: url(/base/pc/store/special/denimstyle/2025aw/img/top/cheki6bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.cheki__bg--6 img {
  width: 100%;
  position: absolute;
  left: -1rem;
  top: -3.5rem;
  scale: 1.05;
}

.modal-open {
  display: block;
  background: transparent;
  width: 100%;
  height: 100%;
}

.modal__sp {
  display: none;
}

@media screen and (max-width: 900px) {
  .modal-container {
    max-height: 100%;
    max-width: 100%;
    overflow-y: auto;
    padding: 0;
    width: 90%;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .modal-container {
    margin-top: 20rem;
    padding-bottom: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .modal__model {
    display: none;
  }
  .modal__right {
    display: none;
  }
  .modal__sp {
    display: block;
  }
  .modal__sp img {
    position: relative;
    width: 50rem;
  }
  .modal__sp .modal__txt {
    margin-top: 1vw;
    width: 83%;
    position: absolute;
    top: 40rem;
    right: 0;
    width: 34%;
    font-size: 2rem;
  }
  .modal-header {
    position: absolute;
    right: 20%;
    top: 15%;
  }
  .modal-close {
    background: transparent;
    border: 0;
    position: absolute;
    opacity: 0;
    width: 5rem;
    height: 5rem;
    z-index: 2000;
  }
  .modal__inner {
    position: absolute;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    margin: auto;
    right: 0;
    left: 0;
    z-index: 30;
    bottom: 0;
    padding-top: 6rem;
    padding-bottom: 6rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .modal__inner .modal__sp img {
    position: relative;
    width: 100%;
  }
  .modal-header .modal-close::before {
    content: "✕";
  }
  .modal-content__modal1--close {
    width: 100%;
  }
  .modal-content__modal2--close {
    width: 100%;
  }
  .modal-content__modal3--close {
    width: 100%;
  }
  .modal-content__modal4--close {
    width: 100%;
  }
  .modal-content__modal5--close {
    width: 100%;
  }
  .modal-content__modal6--close {
    width: 100%;
  }
  .modal-content {
    line-height: 1.5;
    margin-bottom: 2rem;
    margin-top: 2rem;
    padding-top: 110%;
    clip-path: polygon(0 0, 100% 0, 100% 81%, 77% 100%, 100% 100%, 0 100%);
  }
  .modal-closebtn {
    position: relative;
    top: 0;
  }
  .modal-open {
    display: block;
    background: transparent;
  }
  .modal__shop {
    margin-top: 2em;
    display: none;
  }
  .modal__shop--small {
    font-size: 1.6rem;
  }
  .modal__shop--sp {
    display: block;
    margin-top: 2rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .modal-container {
    margin-top: 1rem;
    width: 90%;
  }
}
/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal-overlay {
  padding-top: 6rem;
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

@media screen and (max-width: 768px) {
  .micromodal-slide[aria-hidden=false] .modal-overlay {
    padding-top: 3rem;
  }
}
.micromodal-slide[aria-hidden=false] .modal-container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}

/* mens */
.mensdenim {
  width: 90%;
  margin-top: 8rem;
  background-color: #fff;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  rotate: -5deg;
  box-shadow: 1px 1px #ccc;
}

.mensdenim::before {
  content: "";
  background-image: url(/base/pc/store/special/denimstyle/2025aw/img/top/mensitem_tape.png);
  display: block;
  position: absolute;
  left: -4%;
  top: -24px;
  width: 20rem;
  aspect-ratio: 241/127;
  background-size: contain;
  background-repeat: no-repeat;
}

.mensdenim::after {
  content: "";
  background-image: url(/base/pc/store/special/denimstyle/2025aw/img/top/mensitem2_tape.png);
  display: block;
  position: absolute;
  right: -7%;
  bottom: -24px;
  width: 20rem;
  aspect-ratio: 77/51;
  background-size: contain;
  background-repeat: no-repeat;
}

.mens__inner {
  rotate: 5deg;
  padding: 5.5rem 6.5rem 3rem 6.5rem;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.mens__left {
  width: 60%;
  max-width: 416px;
}

.mens .mensTtl {
  width: 18.2rem;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
  color: #0064be;
  background-color: #fff;
  border: solid 2px var(--main-color);
  border-radius: 0.5rem;
  position: absolute;
  top: -1.5rem;
  left: 6rem;
}

.mens__title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.5rem;
  padding-top: 1em;
  color: #31567a;
}

.mens__txt {
  margin-top: 2rem;
  line-height: 2;
  font-size: 1.6rem;
  text-align: justify;
}

.mens__txt--small {
  font-size: 1.2rem;
}

.mens__txt__price {
  margin-top: 2rem;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .mensdenim {
    width: 86%;
    rotate: 0deg;
  }
  .mensdenim::before {
    left: -5%;
    top: -4rem;
    width: 28rem;
    aspect-ratio: 241/127;
  }
  .mensdenim::after {
    right: -8%;
    bottom: -6rem;
    width: 22rem;
  }
  .mens__inner {
    rotate: 0deg;
    padding: 5.5rem 5% 2rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  .mens .mensTtl {
    font-size: 4rem;
    top: -2rem;
    left: calc(50% - 9.1rem);
  }
  .mens__left {
    width: 100%;
    max-width: 100%;
  }
  .mens__right {
    text-align: center;
  }
  .mens__right img {
    width: 90%;
    margin: auto;
  }
  .mens__title {
    text-align: center;
    font-size: 3.4rem;
    line-height: 1.4;
  }
  .mens__txt {
    margin-top: 2rem;
    line-height: 2;
    font-size: 2.6rem;
  }
  .mens__txt__price {
    margin-top: 2rem;
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  .mens__txt--small {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  .mensdenim {
    width: 90%;
    rotate: 0deg;
  }
  .mensdenim::before {
    left: -5%;
    top: -4rem;
    width: 28rem;
  }
  .mensdenim::after {
    right: -8%;
    bottom: -6rem;
    width: 22rem;
  }
}
.bodytype {
  background-color: #d5d1cc;
  position: relative;
  padding-top: 2vw;
  padding-bottom: 80px;
}

.bodytype::before {
  content: "";
  background-image: url(/base/pc/store/special/denimstyle/2025aw/img/top/denimhaikei2.webp);
  display: block;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 78/22;
  position: absolute;
  top: -9vw;
}

@media screen and (min-width: 1400px) {
  .bodytype::before {
    content: "";
    background-image: url(/base/pc/store/special/denimstyle/2025aw/img/top/denimhaikei2long.webp);
    display: block;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 81/12;
    position: absolute;
    top: -6vw;
  }
}
.bodytype__dog {
  position: absolute;
  z-index: 20;
  top: -19vw;
  width: 15%;
  max-width: 200px;
  left: 12%;
}

.bodytype__dog__wrapper {
  position: relative;
}

@media screen and (min-width: 1400px) {
  .bodytype__dog {
    position: absolute;
    z-index: 20;
    top: -13.5vw;
    width: 14%;
    aspect-ratio: 130/123;
    left: 9%;
  }
}
.type {
  color: var(--main-color);
  position: inherit;
}

.type__txt {
  width: 91%;
  background: #f1ebed;
  box-shadow: 1px 2px #a19d99;
  padding-bottom: 6rem;
  padding-top: 1rem;
  rotate: 1.5deg;
  background-position: 0vw -3.5%;
  background-size: contain;
  position: inherit;
  left: -0.9vw;
  padding-left: 13rem;
  top: 14vw;
  background-repeat: no-repeat;
}

@media screen and (min-width: 1400px) {
  .type__txt {
    width: 51.6vw;
    background: #f1ebed;
    box-shadow: 1px 2px #a19d99;
    padding-bottom: 6rem;
    padding-top: 1rem;
    rotate: 1.5deg;
    background-position: 0vw -3.5%;
    background-size: contain;
    position: inherit;
    left: 18.65vw;
    padding-left: 0;
    top: 4.5vw;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 2100px) {
  .type__txt {
    top: 5vw;
    left: 18.8vw;
  }
}
.type__title {
  font-size: 4rem;
  font-weight: bolder;
  text-align: center;
}

.type__read {
  text-align: center;
  font-size: 2rem;
  line-height: 1.8;
  margin-top: 2rem;
}

.type__check {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.type__check__titlearea {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
  margin-top: 16vw;
  padding-left: 5%;
  padding-right: 5%;
  vertical-align: middle;
  align-items: center;
}

.type__check__titlearea img {
  width: 18%;
}

.type__check__title {
  color: var(--main-color);
  font-size: min(3.4vw, 34px);
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  width: 18em;
}

.type__check__kansyu {
  color: var(--main-color);
  font-size: 1.6rem;
  text-align: center;
  margin-top: 1em;
}

.type__check__img {
  margin-top: 7rem;
  padding-left: 5%;
  padding-right: 5%;
  margin-bottom: 7rem;
}

.type__check__img img {
  display: block;
  margin: auto;
  max-width: 100%;
}

@media screen and (min-width: 1400px) {
  .type__check__titlearea {
    display: flex;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    margin-top: 7vw;
    padding-left: 5%;
    padding-right: 5%;
  }
  .type__txt__inner {
    margin-left: -0.9vw;
  }
}
@media screen and (max-width: 768px) {
  .bodytype {
    padding-top: 9vw;
  }
  .bodytype::before {
    content: "";
    width: 100%;
    background-size: contain;
    height: 100%;
    position: absolute;
    top: -2%;
    background-repeat: no-repeat;
  }
  .bodytype__dog {
    position: absolute;
    z-index: 30;
    top: -32vw;
    width: 20%;
    max-width: 200px;
    left: 7%;
  }
  .type__title {
    font-size: 4.4rem;
    font-weight: bolder;
    text-align: center;
    line-height: 1.3;
  }
  .type__txt {
    background: #f1ebed;
    width: 91%;
    padding-bottom: 6rem;
    box-shadow: 1px 2px #a19d99;
    rotate: 1.5deg;
    background-position: 0vw -3.5%;
    background-size: contain;
    position: inherit;
    top: 6rem;
    left: -1.5vw;
    padding-left: 0;
    background-repeat: no-repeat;
  }
  .type__check__titlearea {
    padding-left: 0;
    padding-right: 0;
    align-items: flex-end;
  }
  .type__check__titlearea img {
    padding-bottom: 2rem;
    width: 18%;
  }
  .type__check__title {
    font-size: 4.2vw;
    width: 100%;
  }
  .type__check__kansyu {
    font-size: max(1.9vw, 13px);
  }
}
.splide__slide {
  margin-right: 40px;
}

.custom-slide-buttons {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 3%;
  max-width: 834px;
  margin: auto;
  opacity: 0;
  margin-top: -101px;
}

.custom-slide-buttons button {
  width: 200px;
  height: 90px;
}

.custom-slide-buttons {
  text-align: center;
  margin-bottom: 20px;
}

.inner.slide {
  margin-top: 80px;
  padding-left: 5rem;
  padding-right: 5rem;
  max-width: 1000px;
}

main .splide__pagination {
  bottom: -2.5em;
}

.slide__straight {
  background: #EFE6EA;
  background-image: linear-gradient(180deg, #e7dee2 20%, #EFE6EA 8%, #EFE6EA 17%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 90%;
  margin: auto;
  padding-right: 3%;
  padding-left: 3%;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  position: relative;
}
.slide__straight::after {
  position: absolute;
  content: "";
  background-image: url(/base/pc/store/special/denimstyle/2025aw/img/top/stunderline.png);
  width: 100%;
  aspect-ratio: 19/2;
  display: block;
  bottom: -11%;
  right: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .slide__straight {
    background-image: none;
  }
  .slide__straight::after {
    bottom: -5%;
  }
}
.slide__straight .point__denimimg img {
  width: 100%;
  height: auto;
  padding-top: 3rem;
}

.slide__straight .point__line--left {
  margin-left: 12rem;
  width: 13rem;
  margin-top: 10rem;
}

.slide__straight .point__main__right {
  margin-top: 3rem;
}

.slide__straight .point__denimimgsp1 {
  margin-top: 5rem;
}
.slide__straight .point__denimimgsp1 img {
  transform: scale(1.2);
}

.slide__straight .point__denimimgsp2 img {
  transform: scale(1.05);
  margin-left: -2rem;
  margin-top: 2rem;
}

.slide__wave {
  background: #dfc6d0;
  background-image: linear-gradient(180deg, #d0b9c3 20%, #dfc6d0 8%, #dfc6d0 17%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 90%;
  margin: auto;
  padding-right: 3%;
  padding-left: 3%;
  padding-bottom: 3rem;
  position: relative;
}
.slide__wave::after {
  position: absolute;
  content: "";
  background-image: url(/base/pc/store/special/denimstyle/2025aw/img/top/waveunderline.png);
  width: 100%;
  aspect-ratio: 18/1;
  display: block;
  bottom: -4rem;
  right: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .slide__wave {
    background-image: none;
  }
  .slide__wave .point__denim__note {
    margin-top: 2rem;
  }
  .slide__wave::after {
    bottom: -2%;
  }
}
.slide__wave .point__denimimg img {
  width: 100%;
  height: auto;
  margin-top: 3rem;
  transform: scale(1.1);
}

.slide__wave .point__line--left {
  margin-left: 12rem;
  width: 10rem;
  margin-top: 5rem;
}

.slide__wave .point__main__right {
  margin-top: 4rem;
}

.slide__wave .point__line--right {
  margin-top: 1.5rem;
  margin-left: 0.5rem;
}

.point__denimnotesp--naturalb .point__square {
  margin-top: -2rem;
  padding-bottom: 2rem;
}

.slide__wave .point__denimimgsp1 img {
  transform: scale(1.1);
}

.slide__wave .point__denimimgsp2 img {
  transform: scale(1.1);
}

.slide__natural {
  background: #c9a7bb;
  background-image: linear-gradient(180deg, #c0a0b3 20%, #c9a7bb 8%, #c9a7bb 17%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 90%;
  margin: auto;
  padding-right: 3%;
  padding-left: 3%;
  padding-bottom: 3rem;
  position: relative;
}
.slide__natural::after {
  position: absolute;
  content: "";
  background-image: url(/base/pc/store/special/denimstyle/2025aw/img/top/natuunderline.png);
  width: 100%;
  aspect-ratio: 19/2;
  display: block;
  bottom: -10%;
  right: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .slide__natural {
    background-image: none;
  }
  .slide__natural::after {
    bottom: -5%;
  }
  .point__main--sp .point__denimnotesp {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .slide__natural .point__denimnotesp {
    margin-top: 1rem;
  }
}
.slide__natural .point__line--left {
  margin-left: 12rem;
  width: 13rem;
  margin-top: 6rem;
}
.slide__natural .point__line--left .point__square {
  margin-top: 2rem;
}

.slide__natural .point__denimimg img {
  width: 100%;
  height: auto;
  margin-top: 3rem;
}

.slide__natural .point__main__right {
  margin-top: 5rem;
}

.slide__natural .point__line--right {
  margin-left: -4rem;
  width: 10rem;
  margin-top: 2rem;
}

.slide__natural .point__denimimgsp1 {
  padding-top: 3rem;
}
.slide__natural .point__denimimgsp1 img {
  transform: scale(1.1);
}

.slide__natural .point__denimimgsp2 {
  margin-top: 5rem;
}
.slide__natural .point__denimimgsp2 img {
  transform: scale(1.2);
}

.splide__pagination .splide__pagination__page {
  background: #B1B1B1;
}

.splide__pagination .splide__pagination__page.is-active {
  background: #6D6D6D;
  transform: scale(1.4);
  z-index: 1;
}

.pointlogo {
  width: 10rem;
  padding-top: 0;
  height: auto;
}

.point__title {
  position: absolute;
  height: 9rem;
  margin-left: -4.5rem;
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  max-width: 760px;
  width: 87%;
  box-shadow: 0.1rem 0.2rem #a99b9b;
}

.straight__title {
  background: #414197;
}

.straight__title__img {
  padding: 1rem 1rem 0rem 4rem;
  width: 38%;
  height: auto;
  background-image: linear-gradient(90deg, #383884 25%, #373f7c 8%, #414197 27%);
}

.straight__title__txt {
  color: #ffedf4;
  font-size: 1.6rem;
  padding-top: 1.5em;
  width: 60%;
}

.wave__title {
  background: #bc7f96;
}

.wave__title__img {
  padding: 1rem 1rem 1rem 4rem;
  width: 30%;
  height: auto;
  background-image: linear-gradient(90deg, #AE748A 25%, #b0728a 8%, #bc7f96 27%);
}

.wave__title__txt {
  color: #ffedf4;
  width: 67%;
  padding-top: 1.5em;
}

.natural__title {
  background: #67143f;
}

.natural__title__img {
  padding: 1rem 1.5rem 1rem 3rem;
  width: 35%;
  height: auto;
  background-image: linear-gradient(90deg, #60123B 25%, #5a193a 8%, #67143f 27%);
}

.natural__title__txt {
  color: #ffedf4;
  width: 65%;
  padding-top: 1.5em;
}

.point__wrapper {
  position: relative;
  padding-top: 13rem;
  display: flex;
}

.point__square {
  margin-top: 1rem;
}

.point__txt {
  margin-top: 2em;
  margin-left: 1em;
  letter-spacing: 1.3px;
  font-size: 1.5rem;
  text-decoration: underline;
  font-weight: bolder;
}

.point__main {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}

.point__main__txt {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 1em;
  text-align: justify;
}

.point__main__txt--st {
  color: #414197;
}

.point__main__txt--wa {
  color: #a7748a;
}

.point__main__txt--na {
  color: #67143f;
}

.point__price__txt {
  line-height: 1.3;
  margin-top: 1rem;
  font-size: 1.3rem;
}

.point__price__txt--shop {
  font-size: 1.1rem;
}

.point__main--sp {
  display: none;
}

.point__main__left {
  width: 100%;
}

.point__line--left {
  margin-left: 12rem;
  width: 13rem;
  margin-top: 5rem;
}

.point__line--right {
  margin-left: -1rem;
  width: 9rem;
  margin-top: 2rem;
}

.point__denimimg {
  width: 100%;
}

.point__main__right {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .wave__title__txt {
    color: #ffedf4;
    width: 78%;
    padding-top: 1.5em;
  }
  .straight__title__img {
    padding: 1rem 1.6rem 0.4rem 3rem;
    width: 40%;
    height: auto;
  }
  .wave__title__img {
    padding: 1rem 2rem 1rem 2.5rem;
    width: 26%;
    height: auto;
    background-image: linear-gradient(90deg, #AE748A 40%, #b0728a 23%, #bc7f96 27%);
  }
  .point__denimnotesp--waveb {
    margin-top: 3rem;
  }
  .natural__title__img {
    padding: 1rem 1rem 1rem 3rem;
    width: 37%;
    height: auto;
  }
  .natural__title__txt {
    color: #ffedf4;
    width: 67%;
    padding-top: 0.7em;
  }
  .pointlogo {
    padding-top: 2rem;
    height: auto;
  }
  .point__main__txt {
    font-size: 1.9rem;
    line-height: 1.6;
    margin-top: 1em;
    text-align: justify;
  }
  .point__price__txt {
    line-height: 1.3;
    margin-top: 1em;
    font-size: 1.6rem;
  }
  .point__price__txt--shop {
    font-size: 1.5rem;
  }
  .pointlogo__wrapper {
    width: 19%;
  }
  .point__txt {
    letter-spacing: 0;
    font-size: 1.5rem;
    width: 80%;
  }
  .point__arrowspt {
    position: absolute;
    width: 8rem;
    margin-left: 22rem;
    margin-top: -1rem;
  }
  .point__arrowspt--natural {
    margin-top: -2rem;
  }
  .point__arrowspb {
    position: absolute;
    width: 8rem;
    margin-top: -3rem;
    margin-left: -9rem;
  }
  .point__arrowspt--wave {
    margin-left: 20rem;
    margin-top: -3rem;
    width: 11rem;
  }
  .point__arrowspb--wave {
    margin-top: -4rem;
    margin-left: -4rem;
  }
  .straight__title {
    width: 104%;
    margin-right: auto;
    margin-left: -2%;
    left: 0;
    right: 0;
  }
  .wave__title {
    width: 104%;
    margin-right: auto;
    margin-left: -2%;
    left: 0;
    right: 0;
  }
  .natural__title {
    width: 104%;
    margin-right: auto;
    margin-left: -2%;
    left: 0;
    right: 0;
  }
  .point__main {
    display: none;
  }
  .point__main--sp {
    display: block;
    margin-top: 2rem;
  }
  .point__main__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 7rem;
    width: 92%;
    margin-right: auto;
    margin-left: auto;
  }
  .point__main__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 92%;
    margin-right: auto;
    margin-left: auto;
  }
  .point__denim__note {
    position: relative;
  }
  .inner.slide {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
/* column */
main .column .heading {
  text-align: center;
}

main .column .heading h5 {
  font-size: 3rem;
}

main .column .heading .lead {
  margin-top: 1.6rem;
  font-size: 1.8rem;
}

main .column .viewAll {
  margin: 4.2rem auto 0;
  width: 14.9rem;
}

@media screen and (max-width: 768px) {
  main .column .inner {
    padding: 0rem 5rem 0;
  }
  main .column .heading h5 {
    font-size: 4.5rem;
  }
  main .column .heading .lead {
    font-size: 2.8rem;
  }
  main .column .viewAll {
    width: 30rem;
  }
}
/* linkCont */
.linkCont {
  margin-top: 11rem;
  background-color: #d4d7db;
  padding: 3.5rem 0;
}

.linkCont .linkBox {
  display: flex;
  justify-content: center;
  gap: 0 12.5rem;
}

.linkCont .linkBox > div {
  width: 36rem;
}

.linkCont .linkBox > div p a {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #000;
  border-radius: 0.5rem;
  background-color: #fff;
  position: relative;
}

.linkCont .linkBox > div p a::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 0.35rem);
  right: 1.5rem;
}

.linkCont .linkBox .insta a {
  gap: 0 2.5rem;
  padding: 1rem;
}

.linkCont .linkBox .insta img {
  width: 3.3rem;
}

.linkCont .linkBox .online a {
  padding: 1.16rem;
  gap: 0 5rem;
}

.linkCont .linkBox .online img:first-child {
  width: 21.7rem;
}

.linkCont .linkBox .online img:last-child {
  width: 2.9rem;
}

.linkCont .linkBox a:hover img {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .linkCont {
    margin-top: 10rem;
    padding: 6rem 3rem;
  }
  .linkCont .linkBox {
    display: block;
  }
  .linkCont .linkBox > div {
    width: 100%;
  }
  .linkCont .linkBox > div + div {
    margin-top: 7rem;
    padding-top: 6.5rem;
    border-top: solid 1px #000;
  }
  .linkCont .linkBox > div p a {
    margin-top: 1rem;
  }
  .linkCont .linkBox > div p a::after {
    width: 1rem;
    height: 1rem;
    top: calc(50% - 0.5rem);
    right: 2.5rem;
  }
  .linkCont .linkBox .insta a {
    font-size: 2.4rem;
    gap: 0 5rem;
    padding: 2.5rem;
  }
  .linkCont .linkBox .insta img {
    width: 4.6rem;
  }
  .linkCont .linkBox .online a {
    padding: 2.3rem 6rem 2.3rem 2rem;
    justify-content: space-between;
    gap: 0 5rem;
  }
  .linkCont .linkBox .online img:first-child {
    width: 36.5rem;
  }
  .linkCont .linkBox .online img:last-child {
    width: 5rem;
  }
}
/* shop */
main .shop {
  padding: 5rem 0;
}

main .shop .shopList {
  display: flex;
  flex-wrap: wrap;
  width: 72rem;
  margin: 3rem auto 0;
  gap: 1.5rem 0;
}

main .shop .shopList li {
  margin: 0 1rem;
  width: 21.9rem;
}

main .shop .shopList li a {
  display: block;
  border: solid 1px #000;
  border-radius: 0.6rem;
  padding: 1.2rem 1.5rem;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  text-align: left;
  position: relative;
}

main .shop .shopList li a::after {
  display: block;
  content: "";
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: rotate(-45deg);
  margin-top: -0.5rem;
}

main .shop .shopList li a span {
  font-size: 1.5rem;
  font-weight: bold;
}

main .shop .shopList li a span.small {
  font-size: 1.2rem;
}

main .shop .shopList li.season a {
  padding: 1.185rem 1.5rem;
  text-align: center;
  border: solid 1px #808080;
  background: #c1cdd7;
}

main .shop .shopList li.season a img {
  width: 11.4rem;
}

@media screen and (max-width: 768px) {
  main .shop {
    padding: 6rem 0;
  }
  main .shop .shopList {
    width: 100%;
    justify-content: space-between;
    gap: 2rem 0;
  }
  main .shop .shopList > li {
    margin: 0;
    width: 49%;
  }
  main .shop .shopList li a {
    padding: 2rem 1.5rem;
    font-size: 1.7rem;
  }
  main .shop .shopList li.season a {
    padding: 2rem 1.5rem;
    text-align: left;
  }
  main .shop .shopList li a.big {
    padding: 0.75rem 1.5rem;
  }
  main .shop .shopList li a::after {
    width: 1.2rem;
    height: 1.2rem;
    right: 2rem;
    margin-top: -0.6rem;
  }
  main .shop .shopList li a span {
    font-size: 2rem;
  }
  main .shop .shopList li a span.small {
    font-size: 1.5rem;
  }
  main .shop .shopList li.season a img {
    width: 14.9rem;
  }
}
/* brandlineup */
main .brandlineup {
  padding: 5rem 0;
  background: #dadde1;
}

main .brandlineup .brandList table + p {
  text-align: left;
}

@media screen and (max-width: 768px) {
  main .brandlineup {
    padding: 6rem 0;
  }
  main .brandlineup .brandList table + p {
    font-size: 2.2rem;
  }
}
/* anchorArea */
.anchorArea {
  padding: 5.5rem 0 7.5rem;
}

.anchorArea h2 {
  width: 60rem;
  margin: 0 auto;
}

.anchorArea .anchor {
  margin: 2rem auto 0;
  width: 102rem;
  display: flex;
  justify-content: space-between;
}

.anchorArea .anchor li {
  width: 14.3rem;
  z-index: 5;
}

.anchorArea .anchor li:first-child,
.anchorArea .anchor li:last-child {
  width: 16rem;
}

.anchorArea .anchor li:first-child {
  margin-right: -0.7rem;
}

.anchorArea .anchor li:last-child {
  margin-left: -0.7rem;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .anchorArea {
    padding: 5.5rem 0 4.5rem;
  }
  .anchorArea h2 {
    width: 42.9rem;
  }
  .anchorArea .anchor {
    margin: 2rem auto 0;
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 0;
  }
  .anchorArea .anchor li {
    width: 16.1rem;
    z-index: 5;
  }
  .anchorArea .anchor li:first-child,
  .anchorArea .anchor li:nth-child(4),
  .anchorArea .anchor li:nth-child(5),
  .anchorArea .anchor li:last-child {
    width: 18rem;
  }
  .anchorArea .anchor li:first-child,
  .anchorArea .anchor li:nth-child(5) {
    margin-right: -0.8rem;
  }
  .anchorArea .anchor li:nth-child(4),
  .anchorArea .anchor li:last-child {
    margin-left: -0.8rem;
    z-index: 1;
  }
}
/* mens */
.mens {
  margin-top: 8rem;
  background-color: var(--main-color);
  padding: 5.5rem 0.7rem 0 6.5rem;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.mens .mensTtl {
  width: 18.2rem;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
  color: #0064be;
  background-color: #fff;
  border: solid 2px var(--main-color);
  border-radius: 0.5rem;
  position: absolute;
  top: -1.5rem;
  left: 6rem;
}

@media screen and (max-width: 768px) {
  .mens {
    margin-top: 10rem;
    padding: 7rem 5.5rem 1.5rem;
    display: block;
  }
  .mens .mensTtl {
    font-size: 4rem;
    top: -2rem;
    left: calc(50% - 9.1rem);
  }
}
/* column */
main .column .heading {
  text-align: center;
}

main .column .heading h5 {
  font-size: 3rem;
}

main .column .heading .lead {
  margin-top: 1.6rem;
  font-size: 1.8rem;
}

main .column .viewAll {
  margin: 4.2rem auto 0;
  width: 14.9rem;
}

@media screen and (max-width: 768px) {
  main .column .inner {
    padding: 0rem 5rem 0;
  }
  main .column .heading h5 {
    font-size: 4.5rem;
  }
  main .column .heading .lead {
    font-size: 2.8rem;
  }
  main .column .viewAll {
    width: 30rem;
  }
}
/* linkCont */
.linkCont {
  margin-top: 11rem;
  background-color: #d4d7db;
  padding: 3.5rem 0;
}

.linkCont .linkBox {
  display: flex;
  justify-content: center;
  gap: 0 12.5rem;
}

.linkCont .linkBox > div {
  width: 36rem;
}

.linkCont .linkBox > div p a {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #000;
  border-radius: 0.5rem;
  background-color: #fff;
  position: relative;
}

.linkCont .linkBox > div p a::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 0.35rem);
  right: 1.5rem;
}

.linkCont .linkBox .insta a {
  gap: 0 2.5rem;
  padding: 1rem;
}

.linkCont .linkBox .insta img {
  width: 3.3rem;
}

.linkCont .linkBox .online a {
  padding: 1.16rem;
  gap: 0 5rem;
}

.linkCont .linkBox .online img:first-child {
  width: 21.7rem;
}

.linkCont .linkBox .online img:last-child {
  width: 2.9rem;
}

.linkCont .linkBox a:hover img {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .linkCont {
    margin-top: 10rem;
    padding: 6rem 3rem;
  }
  .linkCont .linkBox {
    display: block;
  }
  .linkCont .linkBox > div {
    width: 100%;
  }
  .linkCont .linkBox > div + div {
    margin-top: 7rem;
    padding-top: 6.5rem;
    border-top: solid 1px #000;
  }
  .linkCont .linkBox > div p a {
    margin-top: 1rem;
  }
  .linkCont .linkBox > div p a::after {
    width: 1rem;
    height: 1rem;
    top: calc(50% - 0.5rem);
    right: 2.5rem;
  }
  .linkCont .linkBox .insta a {
    font-size: 2.4rem;
    gap: 0 5rem;
    padding: 2.5rem;
  }
  .linkCont .linkBox .insta img {
    width: 4.6rem;
  }
  .linkCont .linkBox .online a {
    padding: 2.3rem 6rem 2.3rem 2rem;
    justify-content: space-between;
    gap: 0 5rem;
  }
  .linkCont .linkBox .online img:first-child {
    width: 36.5rem;
  }
  .linkCont .linkBox .online img:last-child {
    width: 5rem;
  }
}
/* shop */
main .shop {
  padding: 5rem 0;
}

main .shop .shopList {
  display: flex;
  flex-wrap: wrap;
  width: 72rem;
  margin: 3rem auto 0;
  gap: 1.5rem 0;
}

main .shop .shopList li {
  margin: 0 1rem;
  width: 21.9rem;
}

main .shop .shopList li a {
  display: block;
  border: solid 1px #000;
  border-radius: 0.6rem;
  padding: 1.2rem 1.5rem;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  text-align: left;
  position: relative;
}

main .shop .shopList li a::after {
  display: block;
  content: "";
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: rotate(-45deg);
  margin-top: -0.5rem;
}

main .shop .shopList li a span {
  font-size: 1.5rem;
  font-weight: bold;
}

main .shop .shopList li a span.small {
  font-size: 1.2rem;
}

main .shop .shopList li.season a {
  padding: 1.185rem 1.5rem;
  text-align: center;
  border: solid 1px #808080;
  background: #c1cdd7;
}

main .shop .shopList li.season a img {
  width: 11.4rem;
}

@media screen and (max-width: 768px) {
  main .shop {
    padding: 6rem 0;
  }
  main .shop .shopList {
    width: 100%;
    justify-content: space-between;
    gap: 2rem 0;
  }
  main .shop .shopList > li {
    margin: 0;
    width: 49%;
  }
  main .shop .shopList li a {
    padding: 2rem 1.5rem;
    font-size: 1.7rem;
  }
  main .shop .shopList li.season a {
    padding: 2rem 1.5rem;
    text-align: left;
  }
  main .shop .shopList li a.big {
    padding: 0.75rem 1.5rem;
  }
  main .shop .shopList li a::after {
    width: 1.2rem;
    height: 1.2rem;
    right: 2rem;
    margin-top: -0.6rem;
  }
  main .shop .shopList li a span {
    font-size: 2rem;
  }
  main .shop .shopList li a span.small {
    font-size: 1.5rem;
  }
  main .shop .shopList li.season a img {
    width: 14.9rem;
  }
}
/* brandlineup */
main .brandlineup {
  padding: 5rem 0;
  background: #dadde1;
}

main .brandlineup .brandList table + p {
  text-align: left;
}

@media screen and (max-width: 768px) {
  main .brandlineup {
    padding: 6rem 0;
  }
  main .brandlineup .brandList table + p {
    font-size: 2.2rem;
  }
} /*# sourceMappingURL=top.css.map */