*,*::before,*::after{box-sizing:border-box}
body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}
ul[role="list"],ol[role="list"]{list-style:none}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

body,a,p{
  font-family: yu-mincho-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  text-decoration: none;
  line-height: 2.2;
  letter-spacing: 0.08rem;
}
body{
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-anchor: none;
  background: #f2efee;
}
ul{
  padding: 0;
}
li{
  list-style: none;
}
img{
  height: auto;
}

.pc{
  display: block;
}
.sp{
  display: none;
}
.flex-box{
  display: flex;
}
.slide-box{
  max-width: 100%;
  overflow: hidden;
}
/* アニメーション */
.fade{
  opacity: 0;
}
.header-fade,
.fade.active{
  animation-name: fade;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fade{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.zoomin{
  opacity: 0;
}
.zoomin.active{
  animation: zoomin;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes zoomin{
  0%{
    opacity: 0;
    filter: blur(10px);
    transform: translateY(10%);
  }
  100%{
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.slideup{
  opacity: 0;
}
.header-slideup,
.slideup.active{
  animation: slideup;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transition: ease-out;
  opacity: 0;
}
@keyframes slideup{
  0% {
    opacity: 0;
    transform: translate(0, 80px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.clippath-left{
  opacity: 0;
}
.header-clippath-left,
.clippath-left.active{
  animation-name: clippath-left;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath-left{
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.clippath-right{
  opacity: 0;
}
.clippath-right.active{
  animation-name: clippath-right;
  animation-duration: 2.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath-right{
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.clippath-center{
  opacity: 0;
}
.clippath-center.active{
  animation-name: clippath-center;
  animation-duration: 2.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath-center{
  0% {
    opacity: 0;
    filter: blur(6px);
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    -webkit-clip-path: circle(100% at 50% 50%);
    clip-path: circle(100% at 50% 50%);
  }
}

.header-slidedown{
  animation: slidedown;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transition: ease-out;
  opacity: 0;
}
@keyframes slidedown{
  0% {
    transform: translate(0, -100px);
    filter: blur(6px);
  }
  50%{
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
  }
}

.slideleft{
  opacity: 0;
}
.header-slideleft,
.slideleft.active{
  animation: slideleft;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transition: ease-out;
  opacity: 0;
}
@keyframes slideleft{
  0% {
    opacity: 1;
    transform: translate(-80px, 0);
  }
  60%{
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.slideright{
  opacity: 0;
}
.header-slideright,
.slideright.active{
  animation: slideright;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transition: ease-out;
  opacity: 0;
}
@keyframes slideright{
  0% {
    opacity: 1;
    transform: translate(80px, 0);
  }
  60%{
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* header */
.header{
  position: relative;
  width: 100%;
  aspect-ratio: 2560 / 1440;
  overflow: hidden;
}
.header .photo01{
  position: absolute;
  top: 0;
  left: 0;
  width: calc(1573.0636 / 2560 * 100%);
  overflow: hidden;
}
.header .photo01 .photo{
  animation-delay: 0.2s;
}
.header .photo02{
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(717.0009 / 2560 * 100%);
  overflow: hidden;
  z-index: 2;
  animation-delay: 3s;
}
.header .photo02 .photo{
  animation-delay: 3s;
}
.header .title-area{
  display: flex;
  justify-content: center;
}
.header .title01{
  position: absolute;
  top: 21.2%;
  left: 34.9%;
  width: calc(858.3737 / 2560 * 100%);
  animation-delay: 1s;
  z-index: 3;
}
.header .title02{
  position: absolute;
  top: 33%;
  left: 39%;
  width: calc(550.9619 / 2560 * 100%);
  animation-delay: 1.4s;
  z-index: 3;
}
.header .title03{
  position: absolute;
  top: 42.4%;
  left: 34.4%;
  width: calc(814.2324 / 2560 * 100%);
  animation-delay: 1.6s;
  z-index: 3;
}
.header .title04{
  position: absolute;
  top: 51%;
  left: 32%;
  width: calc(1065.043 / 2560 * 100%);
  animation-duration: 1s;
  animation-delay: 2.1s;
  z-index: 1;
}
.header .title05-box{
  position: absolute;
  top: 62.2%;
  left: 41.14%;
  width: calc(566.3955 / 2560 * 100%);
  overflow: hidden;
}
.header .title05{
  animation-duration: 1s;
  animation-delay: 3.8s;
  z-index: 3;
}
.header .header-logo{
  position: absolute;
  bottom: 17.75%;
  left: 50%;
  transform: translateX(-50%);
  width: 4%;
  animation-duration: 1s;
  animation-delay: 4.8s;
  z-index: 3;
}
/* リード */
.lead{
  position: relative;
  margin: 6% auto;
  text-align: center;
}
.lead .line{
  position: absolute;
  top: -12%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  animation-duration: 2s;
}
.lead .text{
  position: relative;
  margin-top: 2%;
  font-size: clamp(16px, 1.5vw, 18px);
  z-index: 2;
}
.lead .text span{
  color: #91383b;
}
/* nav */
.main-nav {
  padding-bottom: 140px;
  overflow: hidden;
}
.main-nav ul{
  display: flex;
  gap: 3.5%;
  width: calc(1470 / 2560 * 100%);
  min-width: 720px;
  margin: 1.5% auto 0;
}
.main-nav ul a .photo{
  transition: 0.6s ease-in-out;
}
.main-nav ul a .photo:hover{

  transition: 0.6s ease-in-out;
}
.main-nav ul .text{
  margin: 3% auto 0;
}
.main-nav ul .nav01 .text{
  width: calc(262.1539 / 450 * 100%);
}
.main-nav ul .nav02 .text{
  width: calc(330.5143 / 450 * 100%);
}
.main-nav ul .nav03 .text{
  width: calc(323.3958 / 450 * 100%);
}
.main-nav ul .photo{
  position: relative;
  overflow: hidden;
}
.main-nav ul .mask{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  width: 0;
  height: 0;
  border-radius: 50% 50%;
  background: rgba(227,220,220,0.2);
  opacity: 0;
  filter: blur(6px);
  transition: 1.4s ease-in-out;
}
.main-nav ul a:hover .mask{
  width: 30vw;
  height: 30vw;
  opacity: 1;
  filter: blur(0);
}
/* リンクボックス */
.link-box{
  width: 19.1875rem;
  margin: 0 auto;
}
.link-box .main{
  padding-bottom: calc(4% - 0.7rem);
  border-bottom: 1px solid #6e6e6e;
}
.link-box .other{
  padding-top: 4%;
}
.cart-btm{
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in-out;
  margin-bottom: 0.3em;
  color: #fff;
}
.other .cart-btm .btn{
  border: 1px solid #000;
  color: #231815;
}
.cart-title{
  position: relative;
  width: 100%;
  font-size: clamp(13px,0.9vw,16px);
  line-height: 1.4;
  letter-spacing: 0.02rem;
  font-weight: 400;
  font-style: normal;
}
.cart-btm.size1 .cart-title{
  padding-top: 1.5em;
}
.cart-yen{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 30%;
  line-height: 1.4;
  font-size: clamp(13px, 0.9vw, 16px);
  letter-spacing: 0.06rem;
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
}
.cart-yen img{
  width: clamp(12px, 0.9vw, 16px);
  margin: 0 0.5rem 0 0;
}
.cart-yen .size-space{
  margin-right: 1.06rem;
}
.cart-yen span{
  margin: 0 0 -2px 3%;
  color: #231815;
  font-size: clamp(10px, 0.6vw, 12px);
}
.cart-btm .btn{
  margin: 0 0 0 1%;
  padding: 0.4em 0.5em;
  color: #fff;
  line-height: 1em;
  font-size: clamp(10px, 0.6vw, 15px);
}
.btn-arrow{
  position: relative;
  -webkit-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
}
.btn-arrow span {
  display: inline-block;
  position: relative;
  letter-spacing: 0.02rem;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: transform;
}
.btn-arrow img{
  position: absolute;
  width: 1.1em;
  right: 0px;
  right: 0rem;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: right, opacity;
}
.cart-btm:hover .btn-arrow span {
  -webkit-transform: translate3d(-.5rem, 0, 0);
  transform: translate3d(-.5rem, 0, 0);
}
.btn-arrow img{
  position: absolute;
  width: 1.1em;
  right: 0px;
  right: 0rem;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: right, opacity;
}
.btn-arrow img *{
  stroke-width: 5;
  -webkit-text-stroke-color: transparent;
}
.cart-btm:hover .btn-arrow img {
  opacity: 1;
  right: -0.75rem;
}
/* アコーディオン */
.accordion .toggle{
  display: none;
}
.accordion .accordion-btn,
.accordion .text-area{
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.accordion .accordion-btn{
  position: relative;
  display: block;
  margin-top: 1em;
  padding-left: 1em;
  font-size: clamp(13px,0.9vw,16px);
  line-height: clamp(13px,0.9vw,16px);
  cursor:pointer;
  transition: all 0.6s;
}
.accordion .accordion-btn::before,
.accordion .accordion-btn::after{
  content: "";
  display: block;
  width: 0.65em;
  height: 1px;
  background: #303e5b;
  position: absolute;
  left: 1%;
  top: 44%;
  transform: translate(-50%, -50%);
  transition: all 0.6s;
}
.accordion .accordion-btn::before{
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion .other{
  max-height: 0;
  overflow: hidden;
}
.accordion .other p,
.accordion-btn + .other{
  transition: all 0.6s;
}
.accordion .other p,
.toggle:checked + .accordion-btn + .other{
  max-height: 500px;
  transition: all 1.5s;
}
.toggle:checked + .accordion-btn::before{
  transform: translate(-50%, -50%) rotate(0deg);
}
/* collection */
.collection{
  position: relative;
  padding: 6% 0 3%;
}
.collection .bgi01{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.collection .bgi02{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.collection-inner{
  min-width: 700px;
  margin: 0 auto;
  animation-delay: 1.2s;
}
.collection .title01{
  width: calc(671.6504 / 1471.4489 * 100%);
  margin: 0 auto;
}
.collection-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4%;
}
.collection-box .title{
  font-size: clamp(16px,1.2vw,21px);
  font-weight: bold;
}
.collection-box .text{
  color: #595757;
  font-size: clamp(15px, 1.1vw, 16px);
  text-align: justify;
  line-height: 2;
}
.collection-box .link-box{
  width: 80%;
  margin: 3% auto 0 0;
}
.collection-box .link-box .main{
  border: none;
}
.collection-box .link-box .cart-btm{
  margin-bottom: 0.2em;
}
/* サイドタイトル */
.sidetitle{
  position: sticky;
  top: 3%;
  width: calc(107.0222 / 2560 * 100%);
  margin: 6rem auto 0 3%;
  z-index: 6;
}
/* key01 */
.key01{
  padding-top: 1%;
}
.key01 .link-box .main .cart-btm .btn{
  background: #9b8172;
}
.key01 .collection{
  padding-bottom: 4%;
}
.key01 .collection .title02{
  width: calc(507.6619 / 1471.4489 * 100%);
  margin: 2% auto 0;
}
.key01 .collection-wrapper{
  background: #e2dddb;
  animation-delay: 1.2s;
}
.key01 .collection-inner{
  width: calc(1471.4489 / 2560 * 100%);
}
.key01 .collection-box .photo-area{
  width: calc(730 / 1471.4489 * 100%);
}
.key01 .collection-box .text-area{
  width: calc(623.7019 / 1471.4489 * 100%);
}
/* key01-1 */
.key01-1{
  margin-top: -17%;
}
.key01-1 .box01{
  display: flex;
  justify-content: space-between;
  width: calc(1944.5144 / 2560 * 100%);
  margin: 0 auto 0 16%;
}
.key01-1 .box01 .photo-area{
  width: calc(980 / 1944.5144 * 100%);
}
.key01-1 .box01 .photo-area .photo01{
  animation-delay: 1s;
}
.key01-1 .box01 .text-area{
  width: calc(964.5144 / 1944.5144 * 100%);
}
.key01-1 .box01 .title{
  width: calc(727.6035 / 964.5144 * 100%);
  margin: 32% auto 0 9%;
}
.key01-1 .box01 .text-area .photo02{
  width: calc(700 / 964.5144 * 100%);
  margin: 20% 0 0 auto;
  animation-duration: 1.4s;
  animation-delay: 1s;
}
.key01-1 .box02{
  position: relative;
}
.key01-1 .box02 .line{
  position: absolute;
  top: 10%;
  right: 0;
  width: calc(1351.1635 / 2560 * 100%);
  animation-delay: 1s;
}
.key01-1 .box02-inner{
  position: relative;
  display: flex;
  align-items: flex-end;
  width: calc(1314.1039 / 2560 * 100%);
  margin: -3% 13% 0 auto;
  z-index: 2;
}
.key01-1 .box02 .photo-area{
  width: calc(700 / 1314.1039 * 100%);
}
.key01-1 .box02 .photo-area .photo03{
  animation-delay: 1s;
}
.key01-1 .box02 .text-area{
  width: calc(700 / 1314.1039 * 100%);
}
.key01-1 .box02 .text-area .link-box{
  margin-left: 10%;
}
/* key01-2 */
.key01-2{
  margin-top: 10%;
}
.key01-2 .box01{
  position: relative;
}
.key01-2 .box01 .photo01{
  animation-duration: 2s;
}
.key01-2 .box01 .title{
  position: absolute;
  top: 39%;
  right: 16%;
  width: calc(805.7411 /2560 * 100%);
}
.key01-2 .box02{
  display: flex;
  justify-content: space-between;
  width: calc(1536.6065 / 2560 * 100%);
  margin: 3% auto 0;
}
.key01-2 .box02 .photo-area{
  width: calc(820 / 1536.6065 * 100%);
}
.key01-2 .box02 .photo-area .photo02{
  animation-delay: 1s;
}
.key01-2 .box02 .text-area{
  width: calc(700 / 1536.6065 * 100%);
  margin-top: 30%;
}
.key01-2 .box02 .text-area .photo02{
  animation-delay: 1s;
}
.key01-2 .box02 .text-area .photo03{
  animation-delay: 1s;
}
.key01-2 .box02 .text-area .link-box{
  margin: 3% 0 0 auto;
}
/* key02 */
.key02{
  margin-top: 6%;
}
.key02 .link-box .main .cart-btm .btn{
  background: #b181a5;
}
.key02 .collection{
  padding: 9% 0 5%;
}
.key02 .collection .title02{
  width: calc(630.5869 / 1197.2932 * 100%);
  margin: 2% auto 0;
}
.key02 .collection-wrapper{
  background: #e3dcdc;
  animation-delay: 1.2s;
}
.key02 .collection-inner{
  width: calc(1197.2932 / 2560 * 100%);
}
.key02 .collection-box .photo-area{
  width: calc(450 / 1197.2932 * 100%);
}
.key02 .collection-box .text-area{
  width: calc(637.1894 / 1197.2932 * 100%);
}
/* key02-1 */
.key02-1{
  margin-top: -20%;
}
.key02-1 .box01{
  position: relative;
  width: calc(2030 / 2560 * 100%);
  margin: 0 auto;
}
.key02-1 .box01 .title{
  position: absolute;
  top: 40%;
  right: 13.5%;
  width: calc(677.1587 / 2030 * 100%);
}
.key02-1 .box02{
  position: relative;
}
.key02-1 .box02 .line{
  position: absolute;
  top: 51%;
  left: 0;
  width: calc(1317.0622 / 2560 * 100%);
  animation-delay: 1s;
}
.key02-1 .box02-inner{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: calc(1570.648 / 2560 * 100%);
  margin: 8% auto  0;
  z-index: 2;
}
.key02-1 .box02 .text-area{
  position: relative;
  width: calc(700 / 1570.648 * 100%);
  margin-right: -5.5%;
  z-index: 3;
}
.key02-1 .box02 .text-area .photo02{
  animation-delay: 1s;
}
.key02-1 .box02 .text-area .link-box{
  position: absolute;
  bottom: 0;
  right: 20%;
}
.key02-1 .box02 .photo-area{
  width: calc(950 / 1570.648 * 100%);
  margin-top: 38%;
  margin-right: -5.5%;
}
.key02-1 .box02 .photo-area .photo03{
  animation-delay: 1s;
}
/* key02-2 */
.key02-2{
  display: flex;
  justify-content: space-between;
  width: calc(1675.3216 / 2560 * 100%);
  margin: 10% auto 0;
}
.key02-2 .photo-area{
  width: calc(900 / 1675.3216 * 100%);
}
.key02-2 .photo-area .photo01{
  animation-duration: 2s;
}
.key02-2 .text-area{
  width: calc(700 / 1675.3216 * 100%);
  margin-top: 18%;
}
.key02-2 .text-area .title{
  width: calc(574.4229 / 700 * 100%);
  margin-left: 6%;
}
.key02-2 .text-area .photo02{
  margin-top: 28%;
}
.key02-1 .box02 .photo-area .photo03{
  animation-duration: 2s;
  animation-delay: 1s;
}
.key02-2 .text-area .link-box{
  margin: 3% 0 0 auto;
}
/* key03 */
.key03{
  margin-top: 6%;
}
.key03 .link-box .main .cart-btm .btn{
  background: #64403b;
}
.key03 .collection{
  padding: 9% 0 5%;
}
.key03 .collection .title02{
  width: calc(628.8872 / 1197.7869 * 100%);
  margin: 2% auto 0;
}
.key03 .collection-wrapper{
  background: #eae3dc;
  animation-delay: 1.2s;
}
.key03 .collection-inner{
  width: calc(1197.7869 / 2560 * 100%);
}
.key03 .collection-box .photo-area{
  width: calc(450 / 1197.7869 * 100%);
}
.key03 .collection-box .text-area{
  width: calc(640.0002 / 1197.7869 * 100%);
}
/* key03-1 */
.key03-1{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: calc(1858.2116 / 2560 * 100%);
  margin: -20% auto 0;
}
.key03-1 .text-area{
  width: calc(1000 / 1858.2116 * 100%);
}
.key03-1 .text-area .title{
  width: calc(724.6338 / 1000 * 100%);
  margin: 36% 0 0 auto;
}
.key03-1 .text-area .photo01{
  margin-top: 22%;
  animation-delay: 1s;
}
.key03-1 .text-area .link-box{
  margin: 16% -4% 0 auto;
}
.key03-1 .photo-area{
  position: relative;
  width: calc(780 / 1858.2116 * 100%);
}
.key03-1 .photo-area .photo02{
  animation-delay: 1s;
}
.key03-1 .photo-area .photo03{
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(700 / 780 * 100%);
  animation-duration: 2s;
  animation-delay: 1s;
}
/* key03-2 */
.key03-2{
  position: relative;
  margin-top: 10%;
}
.key03-2 .line{
  position: absolute;
  top: 9%;
  right: 0;
  width: calc(1448.5488 / 2560 * 100%);
  animation-duration: 1.6s;
  animation-delay: 1s;
}
.key03-2 .box01{
  position: relative;
  display: flex;
  justify-content: space-around;
  width: calc(1833.4043 / 2560 * 100%);
  margin: 0 auto;
  z-index: 3;
}
.key03-2 .box01 .photo-area{
  width: calc(900 / 1833.4043 * 100%);
}
.key03-2 .box01 .photo-area .photo01{
  animation-delay: 1s;
}
.key03-2 .box01 .text-area{
  width: calc(856.3601 / 1833.4043 * 100%);
  margin-top: 16%;
}
.key03-2 .box01 .text-area .title{
  width: calc(829.2134 / 856.3601 * 100%);
  margin-left: 2%;
}
.key03-2 .box01 .text-area .photo02{
  width: calc(700 / 856.3601 * 100%);
  margin: 36% 0 0 auto;
  animation-delay: 1.4s;
}
.key03-2 .box02{
  width: calc(1050/ 2560 * 100%);
  margin: 3% auto 0;
}
.key03-2 .box02 .photo03{
  width: 100%;
  margin-top: -22%;
  animation-duration: 2s;
}
.key03-2 .box02 .link-box{
  margin: 3% 0 0 auto;
  animation-delay: 1.4s;
}
/* pickup */
.pickup{
  margin-top: 12%;
}
.pickup .title{
  width: calc(253.8696 / 2560 * 100%);
  margin: 0 auto;
}
.pickup .banner{
  width: calc(750 / 2560 * 100%);
  min-width: 400px;
  margin: 2% auto 6%;
}

/*banner-block*/
.banner-block{
  width: 100%;
  max-width: 960px;
  margin: 3% auto;
  position: relative;
  z-index: 1;
}
.all-btn{
  margin-bottom: 3%;
}
.c-btn01{
  width: 70%;
  margin: 0 auto 2% auto;
  border: 1px solid #ccc;
  display: block;
  transition: 0.6s ease-in-out;
}
.c-btn01:hover{
  transition: 0.6s ease-in-out;
  border: 1px solid #000;
}
.all-btn .c-btn01{
  border: 1px solid transparent;
}
.all-btn .c-btn01:hover{
  border: 1px solid transparent;
  opacity: 0.8;
}
.end-box{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto ;
}
.end-box .txt{
  font-size: 13px;
  font-family: 'EB Garamond', serif;
  letter-spacing: 1px;
  line-height: 2.5em;
  text-align: center;
}
/* footer */
.footer{
  color: #000;
  letter-spacing: 0.3em;
  padding: 0 0 2% 0;
  position: relative;
  text-align: center;
}
.footer a{
  transition: 0.3s ease-in-out;
}
.footer a:hover img{
  opacity: 0.6;
  transition: 0.3s ease-in-out;
}
.footer_sns {
  display: inline-block;
  width: 2.5%;
  margin: auto;
}
.f-ow {
  width: 120px;
  margin: 25px auto 0 auto;
}
.copyright {
  font-family: "Helvetica",serif;
  font-size: 10px;
  letter-spacing: 0.02em;
  margin: 34px 0 0;
}

.pagetop{
  position: fixed;
  right: 30px;
  bottom: 20px;
  width: 35px;
  z-index: 99;
}

/* ナビ */
.sidenav {
  display: none;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5vw;
  max-width: 180px;
  min-width: 80px;
  margin-top: -0.8vw;
  z-index: 99;
}
.sidenav .flex-box {
  flex-direction: column;
}
.sidenav ul li {
  width: 100%;
  margin: 0;
}
.sidenav ul li:not(:last-child) {
  margin-bottom: 1vw;
}
.sidenav ul li .photo{
  transition: 0.6s ease-in-out;
}
.sidenav ul li a:hover .photo{
  opacity: 0.6;
}
.sidenav .text{
  width: auto;
  height: 1.3vw;
  min-height: 24px;
  margin: 0.1vw auto 0;
}

@media screen and (max-width:767px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .flex-box{
    flex-direction: column;
  }
  /* アニメーション */
  .zoomin.active,
  .clippath-center.active{
    animation-duration: 2s;
  }
  /* header */
  .header{
    aspect-ratio: inherit;
    overflow: hidden;
  }
  .header .title-area{
    display: inherit;
  }
  .header .title01{
    top: 22%;
    left: auto;
    right: 4%;
    width: calc(98.1964 / 1280 * 100%);
    animation-duration: 1.6s;
    animation-delay: 2.6s;
  }
  .header .title02{
    position: relative;
    top: auto;
    left: auto;
    width: calc(608.9639 / 1280 * 100%);
    margin: 5% auto 0;
    animation-delay: 2.6s;
  }
  .header .title03{
    position: relative;
    top: auto;
    left: auto;
    width: calc(910.0466 / 1280
    * 100%);
    margin: 2% auto 0;
    animation-delay: 2.8s;
  }
  .header .title04{
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: -8%;
    animation-delay: 3s;
  }
  .header .title05-box{
    position: relative;
    top: auto;
    left: auto;
    width: calc(625.6533 / 1280 * 100%);
    margin: -4% auto 0;
  }
  .header .title05 {
    animation-duration: 1.4s;
    animation-delay: 3.2s;
    z-index: 3;
  }
  .header .header-logo{
    display: none;
  }
  .swiper-container{
    width: calc(1082.673 / 1280 * 100%);
    animation-duration: 2s;
  }
  .swiper-container .swiper-slide img{
    animation-duration: 3s;
  }
  /* リード */
  .lead{
   margin: 14% auto 16%;
   padding: 0;
  }
  .lead .line{
    top: auto;
    bottom: 2%;
  }
  .lead .logo{
    display: inline-block;
   width: 18%;
   margin: 3% auto 6%;
  }
  .lead .text{
    width: 96%;
    margin: auto;
    text-align: center;
    font-size: 0.95rem;
  }
  /* メインナビ */
  .main-nav{
    padding-bottom: 12%;
  }
  .main-nav ul{
    width: calc(1140 / 1280 * 100%);
    min-width: inherit;
  }
  .main-nav ul .nav01 .text{
    width: calc(252.1922 / 360 * 100%);
  }
  .main-nav ul .nav02 .text{
    width: calc(336.5596 / 360 * 100%);
  }
  .main-nav ul .nav03 .text{
    width: calc(271.9059 / 360 * 100%);
  }
  /* リンクボックス */
  .link-box{
    width: 84%;
    margin: 6% auto 0 !important;
  }
  .link-box .main{
    padding-bottom: 2%;
  }
  .link-box .mix{
    padding-top: 5%;
  }
  .link-box .cart-btm{
    margin-top: 0.1px;
    margin-bottom: 3%;
    border-bottom: 1px solid rgba(0,0,0,0);
  }
  .cart-title{
    font-size: 0.9rem;
    line-height: 1.2;
    letter-spacing: 0.06rem;
  }
  .size-area {
    margin: -1.25em auto 0.5em;
  }
  .size-area a{
    font-size: 0.8rem;
  }
  .cart-yen{
    font-size: 0.95rem;
    line-height: 1.2;
    letter-spacing: 0.04rem;
  }
  .cart-yen img{
    width: 0.95rem;
    margin: 0 0.3rem 0 0;
  }
  .cart-yen .size-space{
    margin-right: 0.84rem;
  }
  .cart-yen.price img {
    margin-right: 0.81rem
  }
  .cart-yen span{
    font-size: 0.7rem;
    margin: 2px;
  }
  .cart-btm .btn{
    margin-left: 1%;
    padding: 1.4% 1.4%;
    font-size: 0.5rem;
  }
  .accordion .accordion-btn{
    font-size: 0.9rem;
    line-height: 0.9rem;
  }
  /* サイドタイトル */
  .sidetitle{
    display: none;
  }
  /* コレクション */
  .collection{
    margin-bottom: 10%;
  }
  .collection .bgi02{
    animation-duration: 0.2s;
  }
  .key01 .collection-wrapper,
  .key02 .collection-wrapper,
  .key03 .collection-wrapper{
    animation-delay: 0s;
  }
  .collection .title01{
    width: calc(872.5847 / 996.0118 * 100%);
    margin-top: 8%;
  }
  div[class*="key0"] .collection-inner{
    width: 80%;
    min-width: inherit;
  }
  .collection-box{
    flex-direction: column;
    margin-top: 6%;
  }
  div[class*="key0"] .collection-box .photo-area,
  div[class*="key0"] .collection-box .text-area{
    width: 100%;
  }
  .collection-box .title{
    margin: 4% auto;
    text-align: center;
    line-height: 1.6;
  }
  .collection-box .link-box{
    width: 100%;
  }
  .collection-box .link-box .cart-btm{
    margin-bottom: 0.5em;
  }
  /* 共通 */
  div[class*="key0"]{
    width: 100%;
    margin-bottom: 12%;
  }
  div[class*="key0"] .box01,
  div[class*="key0"] .box02,
  div[class*="key0"] .box01 .photo-area,
  div[class*="key0"] .box01 .text-area,
  div[class*="key0"] .box02 .photo-area,
  div[class*="key0"] .box02 .text-area,
  div[class*="key0"] .box03 .photo-area,
  div[class*="key0"] .box03 .text-area,
  .key01-1 .box02-inner,
  .key02-1 .box02-inner,
  .key02-2,
  .key03-1{
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
  }
  div[class*="key0"] .photo01,
  div[class*="key0"] .photo02,
  div[class*="key0"] .photo03{
    animation-delay: 0s !important;
  }
  /* key01 */
  .key01 .collection{
    padding: 12% 0 6%;
  }
  .key01 .collection .title02{
    width: calc(713.1294 / 996.0118 * 100%);
    margin-top: 4%;
  }
  .key01 .collection .photo{
    width: 90%;
    margin: 0 auto;
  }
  /* key01-1 */
  .key01-1{
    margin-top: 0;
  }
  .key01-1 .box01 .photo-area .photo01{
    width: calc(1180 / 1280 * 100%);
  }
  .key01-1 .box01 .title{
     width: calc(943.8391 / 1280 * 100%);
     margin: 8% auto -4% 8%;
  }
  .key01-1 .box01 .text-area .photo02{
    width: calc(1000 / 1280 * 100%);
    margin-top: 3%;
  }
  .key01-1 .box02 .photo-area a{
    display: block;
    width: calc(900 / 1280 * 100%);
    margin: 16% auto 0 8%;
  }
  /* key01-2 */
  .key01-2 .box01 .title{
    position: relative;
    top: auto;
    right: auto;
    width: calc(905.5171 / 1280 * 100%);
    margin: 8% auto 8% 8%;
  }
  .key01-2 .box02 .photo-area .photo02{
    width: calc(947 / 1280 * 100%);
    margin: 0 6% 0 auto;
  }
  .key01-2 .box02 .text-area .photo03{
    margin-top: 8%;
  }
  /* key02 */
  .key02 .collection{
    padding: 12% 0 6%;
  }
  .key02 .collection .title02{
    width: calc(882.8242 / 996.0118 * 100%);
    margin-top: 4%;
  }
  .key02 .collection .photo{
    width: calc(700 / 997.5198 * 100% );
    margin: 0 auto;
  }
  /* key02-1 */
  .key02-1{
    margin-top: 0;
  }
  .key02-1 .title{
    position: relative;
    width: calc(932.3237 / 1280 * 100%);
    margin: 8% auto 8% 8%;
    z-index: 2;
  }
  .key02-1 .line{
    width: 100%;
    margin-top: -31%;
    animation-duration: 1.4s;
  }
  .key02-1 .box01{
    animation-duration: 1.4s;
  }
  .key02-1 .box02 .line{
    display: none;
  }
  .key02-1 .box02 .text-area .photo02{
    width: calc(800 / 1280 * 100%);
    margin: -6% 8% 0 auto;
  }
  .key02-1 .box02 .photo-area .photo03{
    margin-top: 10%;
  }
  .key02-1 .box02 .text-area .link-box{
    position: relative;
    bottom: auto;
    right: auto;
  }
  /* key02-2 */
  .key02-2 .photo-area,
  .key02-2 .text-area{
    width: 100%;
  }
  .key02-2 .text-area{
    margin-top: 0;
  }
  .key02-2 .text-area .title{
    width: calc(982.9014 / 1280 * 100%);
    margin: 12% auto 12% 8%;
  }
  .key02-2 .text-area .photo02{
    width: calc(1100 / 1280 * 100%);
    margin: 0 0 0 auto;
  }
  /* key03 */
  .key03 .collection{
    padding: 12% 0 6%;
  }
  .key03 .collection .title02{
    width: calc(880.4443 / 996.0118 * 100%);
    margin-top: 4%;
  }
  .key03 .collection .photo{
    width: calc(700 / 997.5198 * 100% );
    margin: 0 auto;
  }
  /* key03-1 */
  .key03-1{
    flex-direction: column-reverse;
    margin-top: 0;
  }
  .key03-1 .photo-area,
  .key03-1 .text-area{
    width: 100%;
  }
  .key03-1 .photo-area .photo02{
    width: calc(1000 / 1280 * 100%);
    margin: 0 0 0 auto;
  }
  .key03-1 .photo-area .photo03{
    position: relative;
    bottom: auto;
    left: auto;
  }
  .key03-1 .text-area .title{
    margin: 9% auto 9% 8%;
  }
  .key03-1 .text-area .photo01{
    margin-top: 0;
  }
  .key03-1 .photo03{
    width: calc(900 / 1280 * 100%);
    margin: 10% auto 0;
    animation-duration: 2s;
  }
  /* key03-2 */
  .key03-2 .box01 .photo-area .photo01{
    width: calc(1100 / 1280 * 100%);
  }
  .key03-2 .box01 .text-area .title{
    width: calc(960.3975 / 1280 * 100%);
    margin: 10% auto -6% 8%;
  }
  .key03-2 .line{
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    animation-duration: 1.4s;
    animation-delay: 0s;
  }
  .key03-2 .box01 .text-area .photo02{
    width: calc(1000 / 1280 * 100%);
    margin: 2% 6% 0 auto;
  }
  .key03-2 .box02 .photo03{
    margin-top: 10%;
  }
  /* pickup   */
  .pickup{
    margin: 20% auto 10%;
  }
  .pickup .title{
    width: calc(378.498 / 1280 * 100%);
    min-width: inherit;
    margin-bottom: 5%;
  }
  .pickup .banner{
    width: 92%;
    min-width: inherit;
  }
  /* フッター */
  .end-box{
    margin-bottom: 12%;
  }
  .f-ow {
    width: 120px;
    margin: 25px auto 0 auto;
  }
  .end-box .txt{
    font-size: 0.75rem;
  }
  .banner-block{
    margin-bottom: 10%;
  }
  .c-btn01{
    width: 80%;
    margin-bottom: 6%;
  }
  .footer{
    padding-bottom: 18%;
  }
  .footer_sns{
    width: 8vw;
  }
  .f-ow{
    margin-top: 3%;
  }
  .footer_copyright{
    font-size: 10px;
    letter-spacing: 0.02em;
    margin: 5% 0 0 0;
  }
  /* stepnav */
  .stepnav{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3rem;
    background: #f2efee;
    z-index: 99;
  }
  .stepnav .nav-list{
    display: flex;
    align-items: center;
    gap: 6%;
    width: 82%;
    height: 3rem;
    margin: 0 0 0 3%;
    padding: 0;
  }
  .stepnav .pagetop{
    right: 0;
    bottom: 0;
    width: 2.91rem;
  }
  .stepnav .current img{
    filter: invert(25%) sepia(20%) saturate(2039%) hue-rotate(309deg) brightness(105%) contrast(90%);
  }

}
