*,
*::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
}
@font-face  {
  font-family: 'hannari';
  src: url('../font/HannariMincho-Regular.otf');
}
body,
a,
p  {
  color: #000;
  font-family: shippori-mincho, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1vw, 22px);
  letter-spacing: 0.1rem;
  line-height: 2;
}
body  {
  position: relative;
  -webkit-overflow-scrolling: touch;
}
ul  {
  padding: 0;
  margin: 0 auto;
}
li  {
  list-style: none;
}
a  {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
img  {
  width: 100%;
  height: auto;
}
.pc  {
  display: block;
}
.sp  {
  display: none;
}
.flex-box  {
  display: flex;
  justify-content: center;
  position: relative;
}
.slide-box  {
  overflow: hidden;
}
/* アニメーション */
.header-clippath  {
  animation: header-clippath;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-delay: 1.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes header-clippath  {
  0%  {
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
  }
  100%  {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.zoom  {
  opacity: 0;
}
.header-zoomin,
.zoom.active  {
  animation: header-zoomin;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 2.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes header-zoomin  {
  0%  {
    opacity: 0;
    transform: scale(1.3);
  }
  100%  {
    opacity: 1;
    transform: scale(1);
  }
}
.zoomin  {
  opacity: 0;
}
.fadezoomin,
.zoomin.active  {
  animation: fadezoomin 2s ease-out 0.4s 1 forwards;
  opacity: 0;
}
@keyframes fadezoomin  {
  0%  {
    filter: blur(4px);
    opacity: 0;
    transform: scale(1.1);
  }
  100%  {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
}
.fadezoom  {
  animation: fadezoom 1.8s ease-out 0.4s 1 forwards;
  opacity: 0;
  filter: blur(4px);
}
@keyframes fadezoom  {
  0%  {
    opacity: 0;
  }
  100%  {
    filter: blur(0);
  }
  80%,
  100%  {
    opacity: 1;
  }
}
.clippath  {
  opacity: 0;
}
.clippath.active  {
  animation: clippath;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath  {
  0%  {
    opacity: 0;
    -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);
  }
}
.fade  {
  opacity: 0;
}
.header-fade,
.fade.active  {
  animation: fade;
  animation-duration: 1.8s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fade  {
  0%  {
    opacity: 0;
  }
  100%  {
    opacity: 1;
  }
}
.fadeUp  {
  opacity: 0;
}
.fadeUp.active  {
  will-change: transform;
  animation: fadeinUp;
  animation-duration: 1.4s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 2;
}
@keyframes fadeinUp  {
  0%  {
    opacity: 0;
    transform: translateY(50px);
  }
  100%  {
    opacity: 1;
    transform: none;
  }
}
.fadeDown  {
  opacity: 0;
}
.fadeDown.active  {
  will-change: transform;
  animation: fadeDown;
  animation-duration: 1.4s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 2;
}
@keyframes fadeDown  {
  0%  {
    opacity: 0;
    transform: translateY(-50px);
  }
  100%  {
    opacity: 1;
    transform: none;
  }
}
.fadeLeft  {
  opacity: 0;
}
.fadeLeft.active  {
  will-change: transform;
  animation: fadeinLeft;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeinLeft  {
  0%  {
    opacity: 0;
    transform: translateX(-50px);
  }
  100%  {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight  {
  will-change: transform;
  opacity: 0;
}
.fadeRight.active  {
  animation: fadeinRight;
  animation-duration: 1.4s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes fadeinRight  {
  0%  {
    opacity: 0;
    transform: translate(50px, 0);
  }
  100%  {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slideLeft  {
  opacity: 0;
}
.slideLeft.active  {
  animation: slideLeft;
  animation-duration: 1.2s;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes slideLeft  {
  0%  {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  100%  {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.slideRight  {
  opacity: 0;
}
.slideRight.active  {
  animation: slideRight;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes slideRight  {
  0%  {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  100%  {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.slideUp  {
  opacity: 0;
}
.slideUp.active  {
  animation: slideUp;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes slideUp  {
  0%  {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
  100%  {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.slideDown  {
  opacity: 0;
}
.slideDown.active  {
  animation: slideDown;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  z-index: 1;
}
@keyframes slideDown  {
  0%  {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  100%  {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* header */
header  {
  position: relative;
  margin-bottom: 3%;
  overflow: hidden;
}
header .photo01  {
  animation-duration: 0.6s;
  animation-delay: 0.1s;
}
header .photo02  {
  animation-duration: 0.6s;
  animation-delay: 0.5s;
}
header .photo03  {
  animation-duration: 0.6s;
  animation-delay: 1s;
}
header .logo  {
  position: absolute;
  top: 78.25%;
  left: 38.5%;
  width: 3.75%;
}
header .logo img  {
  animation-delay: 2.6s;
}
header .title-area  {
  overflow: hidden;
}
header .title01  {
  position: absolute;
  top: 19%;
  left: 27%;
  width: 27%;
  animation-delay: 1.8s;
  z-index: 2;
}
header .heart  {
  position: absolute;
  top: 43%;
  left: 49%;
  width: 4%;
  z-index: 2;
  animation-delay: 2.7s;
}
header .title02  {
  position: absolute;
  top: 56.25%;
  left: 28%;
  width: 24.5%;
  z-index: 2;
  animation-delay: 2s;
}
header .title03  {
  position: absolute;
  top: 68%;
  left: 32.65%;
  width: 15.25%;
  z-index: 2;
  animation-delay: 2.2s;
}
/* lead */
.lead  {
  position: relative;
  margin: 0 auto 5%;
  text-align: center;
  overflow: hidden;
}
.lead .main_text  {
  margin: 2.5% auto 3.5%;
  font-size: clamp(24px, 1.75vw, 40px);
  letter-spacing: 0.2rem;
  line-height: 1.6;
}
.lead .title  {
  position: absolute;
  top: 33%;
  left: 50.05%;
  transform: translateX(-50%);
  width: 22.5%;
  z-index: -1;
}
/* mainnav */
#mainnav  {
  width: 46%;
  min-width: 620px;
  margin: auto;
}
#mainnav ul  {
  gap: 1.5rem;
}
#mainnav li  {
  position: relative;
  overflow: hidden;
}
#mainnav li .photo  {
  transition: 0.6s ease-in-out;
}
#mainnav li:hover .photo  {
  transform: scale(1.1);
}
#mainnav li span  {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.6s ease-in-out;
}
#mainnav li:nth-child(1) span  {
  background: #ff9fa5;
}
#mainnav li:nth-child(2) span  {
  background: #e5174c;
}
#mainnav li:hover span  {
  opacity: 0.3;
}
#mainnav li .text  {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
}
#mainnav li:nth-child(1) .text  {
  width: 36%;
}
#mainnav li:nth-child(2) .text  {
  width: 48%;
}
/* item-main-title */
.item-maintitle  {
  position: relative;
  margin: 7% auto 5rem;
  padding-top: 1rem;
  text-align: center;
}
.item-maintitle .title  {
  margin: 0 auto 2rem;
}
/* lace */
#lace .item-maintitle .title  {
  width: 15%;
}
#lace .item-maintitle .heart  {
  position: absolute;
  top: 38%;
  right: 39.75%;
  width: 4.75%;
  z-index: -1;
}
#lace .main .cart-btm .btn  {
  background-color: #ff9fa5;
  border: 1px solid #ff9fa5;
}
/* detail */
#detail .item-maintitle .title  {
  width: 15%;
}
#detail .item-maintitle .heart  {
  position: absolute;
  top: 32%;
  right: 38%;
  width: 4.75%;
  z-index: -1;
}
#detail .main .cart-btm .btn  {
  background-color: #e5174c;
  border: 1px solid #e5174c;
}
/* style-box共通 */
.style-box  {
  position: relative;
  margin: 0 auto 200px;
}
.style-box .number  {
  width: auto;
  height: 5vw;
  min-height: 66px;
  margin-bottom: 3rem;
}
/* lace01 */
#lace01 .box01  {
  position: relative;
  z-index: 2;
}
#lace01 .box01 .photo-area  {
  width: 40%;
}
#lace01 .text-area  {
  width: 30%;
  margin: 8% 0 0 4%;
}
#lace01 .number  {
  margin-right: 8%;
  margin-left: auto;
}
#lace01 .title  {
  margin-bottom: 26%;
}
#lace01 .photo02  {
  display: block;
  width: 96%;
}
#lace01 .box02  {
  justify-content: flex-end;
  align-items: flex-end;
  margin: -3% 17% 0 auto;
}
#lace01 .box02 .photo-area  {
  width: 41%;
}
#lace01 .link-box {
  margin-left: 12%;
}
#lace01 .link-box .main  {
  padding-bottom: 0;
  border: none;
}
/* lace02 */
#lace02 .flex-box  {
  align-items: flex-end;
  overflow: hidden;
}
#lace02 .box01  {
  width: 49.5%;
}
#lace02 .box01 .number  {
  margin: 0 24% 6% auto;
}
#lace02 .box01 .title  {
  position: relative;
  width: 48%;
  margin: 0 -9% 12% auto;
  z-index: 2;
}
#lace02 .box01 .photo01  {
  display: block;
  width: 96%;
}
#lace02 .box02  {
  width: 55%;
}
#lace02 .box02 .photo-area  {
  margin-bottom: 24%;
}
#lace02 .link-box  {
  position: relative;
  margin-left: -10%;
  z-index: 2;
}
#lace02 .link-box .main  {
  border: none;
}
/* lace03 */
#lace03 .box01  {
  position: relative;
  width: 49%;
}
#lace03 .box01 .photo-area  {
  margin-bottom: 20%;
}
#lace03 .box01 .photo01  {
  position: relative;
  z-index: 2;
}
#lace03 .box01 .link-area  {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 10%;
}
#lace03 .box02  {
  width: 31.25%;
  margin-top: 16%;
  margin-left: -3%;
}
#lace03 .box02 .number  {
  margin: 0 auto 1rem 14%;
}
#lace03 .box02 .title  {
  width: 70%;
  margin: 0 auto 80% 17%;
}
/* detail01 */
#detail01 .flex-box  {
  justify-content: flex-start;
}
#detail01 .box01  {
  position: relative;
  width: 50%;
  margin-right: 2%;
}
#detail01 .box01 .photo-area  {
  margin-bottom: 10%;
}
#detail01 .box01 .link-area  {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: -1%;
}
#detail01 .box02  {
  width: 37%;
  margin-top: 16%;
}
#detail01 .box02 .number  {
  margin: 0 auto 1rem 8%;
}
#detail01 .box02 .title  {
  width: 64%;
  margin: 0 auto 24% 10%;
}
/* detail02 */
#detail02 .box01  {
  width: 47%;
  margin: 9% -4% 0 0;
}
#detail02 .box01 .number  {
  margin: 0 auto 6% 6%;
}
#detail02 .box01 .title  {
  width: 52%;
  margin: 0 auto 12% 10%;
}
#detail02 .box01 .photo01  {
  display: block;
  width: 96%;
}
#detail02 .box02  {
  position: relative;
  width: 35%;
  margin-left: -8%;
}
#detail02 .box02 .photo-area  {
  margin-bottom: 24%;
}
#detail02 .link-box  {
  position: absolute;
  bottom: 3%;
  left: 8%;
  z-index: 2;
}
/* detail03 */
#detail03 .title-area  {
  align-items: center;
  margin-bottom: 1rem;
}
#detail03 .title-area .number  {
  margin: 0 1.5em 0 0;
}
#detail03 .title-area .title  {
  width: 39%;
}
#detail03 .photo-area  {
  gap: 0.5%;
  margin-bottom: 1%;
}
#detail03 .photo01,
#detail03 .photo02  {
  width: 43%;
}
#detail03 .link-box  {
  margin: auto;
}
/* detail04 */
#detail04 .photo-area  {
  position: relative;
  margin-bottom: 1%;
}
#detail04 .photo-area .photo  {
  display: block;
  width: 50%;
  margin: auto;
}
#detail04 .photo-area .number  {
  position: absolute;
  top: 7%;
  left: 20.5%;
  z-index: 2;
}
#detail04 .photo-area .title  {
  position: absolute;
  top: 12%;
  right: 18%;
  width: 20%;
}
#detail04 .link-box  {
  margin: auto;
}
#detail04 .link-box .main  {
  padding-bottom: 0;
  border: none;
}
/* カート */
.link-box  {
  width: 20vw;
  min-width: 260px;
}
.link-box .main  {
  padding-bottom: 3%;
  border-bottom: 1px solid #6e6e6e;
}
.link-box .mix  {
  padding-top: calc(3% + 0.25em);
}
.link-box p  {
  text-align: left;
  line-height: 1.8;
}
.cart-btm  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in-out;
  margin-bottom: 0.25em;
}
.cart-btm:last-of-type  {
  margin-bottom: 0;
}
.cart-title  {
  position: relative;
  width: 60%;
  font-family: yu-mincho-pr6n, sans-serif;
  font-size: clamp(15px, 0.95vw, 25px);
  text-transform: uppercase;
  letter-spacing: 0.01rem;
}
.cart-yen  {
  display: flex;
  align-items: center;
  font-family: yu-mincho-pr6n, sans-serif;
  justify-content: flex-end;
  font-size: clamp(14px, 0.95vw, 21.5px);
  white-space: nowrap;
  letter-spacing: 0.01rem;
}
.cart-yen img  {
  width: clamp(12px, 0.9vw, 21px);
  margin: 0.15rem 0.5rem 0 0;
}
.cart-yen.price-space img  {
  margin-right: 1.1rem;
}
.cart-yen span  {
  margin: 0 0 -4px 5px;
  font-size: clamp(10px, 0.6vw, 12px);
}
.cart-btm .btn  {
  padding: 0.8% 3% 1.6% 3%;
  margin: 0 0 0 10px;
  color: #fff;
  font-size: clamp(9px, 0.6vw, 12px);
  line-height: 1;
}
.main .cart-btm .btn  {
  box-sizing: border-box;
  color: #fff;
}
.mix .cart-btm .btn  {
  box-sizing: border-box;
  border: 1px solid #808080;
  background: #fff;
  color: #808080;
}
.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;
  font-family: 'hannari';
  letter-spacing: 0.02rem;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: transform;
}
.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: -1rem;
}
/*banner-block*/
.banner-block  {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 3%;
  position: relative;
  z-index: 1;
}
.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 6% auto;
}
.end-box .txt  {
  font-size: 13px;
  font-family: 'EB Garamond', serif;
  letter-spacing: 1px;
  line-height: 2.5em;
  text-align: center;
}
.archive  {
  margin-bottom: 6%;
  text-align: center;
}
.archive p  {
  margin-bottom: 1%;
  font-size: clamp(26px, 2.2vw, 32px);
  font-family: meno-banner, serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.1rem;
}
.archive .flex-box  {
  gap: 2%;
}
.archive a  {
  display: inline-block;
  width: 26%;
  min-width: 300px;
  transition: 0.6s ease-in-out;
}
.archive a:hover  {
  opacity: 0.8;
}
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%;
  min-width: 36px;
  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: 6rem;
  max-width: 180px;
  margin-top: -2vw;
  z-index: 99;
}
#sidenav .flex-box  {
  flex-direction: column;
}
#sidenav li  {
  position: relative;
  overflow: hidden;
}
#sidenav ul li:not(:last-child)  {
  margin-bottom: 2vw;
}
#sidenav li .photo  {
  transition: 0.6s ease-in-out;
}
#sidenav li:hover .photo  {
  transform: scale(1.1);
}
#sidenav li span  {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.6s ease-in-out;
}
#sidenav li:nth-child(1) span  {
  background: #ff9fa5;
}
#sidenav li:nth-child(2) span  {
  background: #e5174c;
}
#sidenav li:hover span  {
  opacity: 0.3;
}
#sidenav li:nth-child(1) .text  {
  position: relative;
  width: 72%;
  margin: -4% auto 0;
  z-index: 2;
}
#sidenav li:nth-child(2) .text  {
  position: relative;
  width: 80%;
  margin: -2% auto 0;
  z-index: 2;
}
@media screen and (max-width:767px)  {
  .pc  {
    display: none;
  }
  .sp  {
    display: block;
  }
  .flex-box  {
    flex-direction: column;
  }
  /* アニメーション */
  .fade.active,
  .slideUp.active,
  .clippath.active,
  .zoomin.active  {
    animation-delay: 0s;
  }
  /* header */
  header  {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
  }
  header .title-bg01  {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }
  header .title01  {
    width: 90%;
    top: auto;
    bottom: 13%;
    left: 50%;
    transform: translateX(-50%);
  }
  header .title02  {
    width: 49%;
    top: auto;
    bottom: 6%;
    left: 48%;
    transform: translateX(-50%);
  }
  header .title03  {
    width: 73%;
    top: auto;
    bottom: 3.5%;
    left: 50%;
    transform: translateX(-50%);
  }
  header .heart  {
    width: 7%;
    top: auto;
    bottom: 12%;
    left: 64%;
    transform: translateX(-50%);
  }
  @keyframes header-zoomin  {
    0%  {
      opacity: 0;
      transform: scale(1.6);
    }
    100%  {
      opacity: 1;
      transform: scale(1);
    }
  }
  /* lead */
  .lead  {
    margin: 0 auto 12%;
    padding: 4%;
  }
  .lead .header_logo  {
    width: 18%;
    margin: 12% auto 10%;
  }
  .lead .main_text  {
    margin-top: 8%;
    margin-bottom: 8%;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .lead .lead_text  {
    width: 96%;
    margin: 0 auto 0;
    text-align: center;
    font-size: 0.85rem;
    line-height: 2.2;
  }
  .lead .title  {
    width: 70%;
    top: 45.75%;
  }
  /* mainnav */
  #mainnav  {
    width: 100%;
    min-width: inherit;
    margin: 0 auto 12%;
  }
  #mainnav .flex-box  {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
  #mainnav .flex-box li  {
    width: 42%;
  }
  /* item-maintitle */
  /* lace */
  #lace .item-maintitle .title  {
    width: 30%;
  }
  #lace .item-maintitle .heart {
    top: 28%;
    right: 19.75%;
    width: 16%;
  }
  /* detail */
  #detail .item-maintitle .title {
    width: 48%;
  }
  #detail .item-maintitle .heart {
    top: 31%;
    right: 21%;
    width: 15%;
  }
  /* itemエリア   */
  .style-box  {
    width: 100%;
    margin: 0 auto 6rem;
  }
  .style-box .number  {
    height: 14vw;
    min-height: inherit;
  }
  /* lace01 */
  #lace01 .number {
    margin-bottom: 5%;
    margin-right: 10%;
  }
  #lace01 .box01 .photo-area {
    width: 82%;
    overflow: hidden;
  }
  #lace01 .text-area {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  #lace01 .title {
    position: relative;
    width: 80%;
    margin: 4% auto 0;
    z-index: 2;
  }
  #lace01 .photo02 {
    width: 62.5%;
    margin: -5% 0 12% auto;
  }
  #lace01 .box02 {
    margin: 0 auto;
  }
  #lace01 .box02 .photo-area {
    width: 100%;
    overflow: hidden;
  }
  #lace01 .box02 .photo03 {
    display: block;
    width: 86%;
    margin: auto;
  }
  #lace01 .box02 .link-area {
    width: 100%;
  }
  #lace01 .box02 .link-box {
    margin-left: auto;
  }
  /* lace02 */
  #lace02 .box01,
  #lace02 .box02 {
    width: 100%;
  }
  #lace02 .box01 .number {
    margin: 0 auto 3% 6%;
  }
  #lace02 .box01 .title {
    width: 68%;
    margin: 0 auto -5% 25%;
  }
  #lace02 .box01 .photo-area {
    margin-bottom: 8%;
    overflow: hidden;
  }
  #lace02 .box01 .photo01 {
    width: 86%;
  }
  #lace02 .link-box {
    margin-left: auto;
  }
  /* lace03 */
  #lace03 > div.flex-box {
    flex-direction: column-reverse;
  }
  #lace03 .box01,
  #lace03 .box02 {
    width: 100%;
    margin: 0 auto;
  }
  #lace03 .box01 .photo-area {
    width: 92%;
    margin-bottom: 4%;
  }
  #lace03 .box01 .photo02 {
    display: block;
    width: 82%;
    margin: 0 0 0 auto;
    overflow: hidden;
  }
  #lace03 .box02 .number {
    margin: 0 9% 1rem auto;
  }
  #lace03 .box02 .title {
    margin: 0 auto 8% 12%;
  }
  #lace03 .box01 .link-area {
    position: relative;
    right: auto;
    width: 100%;
  }
  /* detail01 */
  #detail01 .flex-box {
    flex-direction: column-reverse;
  }
  #detail01 .box01,
  #detail01 .box02 {
    width: 100%;
    margin: 0 auto;
  }
  #detail01 .box01 .link-area {
    position: relative;
    right: auto;
    width: 100%;
  }
  #detail01 .box02 .number {
    position: relative;
    margin: 0 6% -3% auto;
    z-index: 2;
  }
  #detail01 .box02 .title {
    width: 69%;
    margin: 6% auto 8% 12%;
  }
  #detail01 .box02 .photo-area {
    overflow: hidden;
  }
  #detail01 .box02 .photo02 {
    display: block;
    width: 78%;
    margin: auto;
  }
  /* detail02 */
  #detail02 .box01,
  #detail02 .box02 {
    width: 100%;
    margin: 0 auto;
  }
  #detail02 .box01 .title {
    width: 80%;
    margin: 0 auto 6% 9%;
  }
  #detail02 .box01 .photo-area {
    overflow: hidden;
  }
  #detail02 .box01 .photo02 {
    display: block;
    width: 70%;
    margin: 0 0 8% auto;
  }
  #detail02 .box01 .photo01 {
    width: 93%;
  }
  #detail02 .link-box {
    position: relative;
    bottom: auto;
    left: auto;
  }
  /* detail03 */
  #detail03 .title-area {
    display: block;
  }
  #detail03 .title-area .number {
    margin: 0 auto 3% 8%;
  }
  #detail03 .title-area .title {
    position: relative;
    width: 68%;
    margin: 0 auto -9.5% 15%;
    z-index: 2;
  }
  #detail03 .photo01, #detail03 .photo02 {
    width: 86%;
    margin: auto;
  }
  #detail03 .photo01 {
    margin-bottom: 1%;
  }
  #detail03 .link-box {
    margin: 6% auto 0;
  }
  /* detail04 */
  #detail04 .photo-area .number {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 8% 4% auto;
  }
  #detail04 .photo-area .title {
    position: relative;
    top: auto;
    right: auto;
    width: 72%;
    margin: 0 auto 4% 12%;
  }
  #detail04 .photo-area .photo {
    width: 100%;
    overflow: hidden;
  }
  #detail04 .link-box {
    margin: 6% auto 0;
  }
  /* リンクエリア */
  .link-box  {
    width: 86%;
    min-width: inherit;
    margin: 6% auto 0;
  }
  .link-box .cart-btm  {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .link-box .cart-title  {
    width: 30%;
    line-height: 1.2;
    letter-spacing: 0;
  }
  .link-box .cart-yen  {
    width: 46%;
    font-size: 0.95rem;
    line-height: 1.2;
  }
  .link-box .cart-yen span  {
    margin-left: 0.3em;
    margin-bottom: 0;
    font-size: 9px;
  }
  .link-box .cart-yen img  {
    width: 0.95rem;
    margin: 0.15em 0.5rem 0;
  }
  .link-box .cart-yen.price-space img  {
    margin-right: 1.07rem;
  }
  .link-box .cart-btm .btn  {
    margin-left: 0.3em;
    font-size: 11px;
    line-height: 1em;
    padding: 1.2% 2% 1.3%;
    margin: 0 0 0 10px;
  }
  .link-box .link-line  {
    margin: 4% 0;
  }
  .banner-block  {
    margin: 0 auto 8%;
  }
  /* footer */
  .all_btn a  {
    width: 100%;
    padding: 2em 0;
    letter-spacing: 0.1rem;
  }
  .all_btn a::before  {
    top: auto;
    bottom: 0.3em;
    right: 0.75em;
    width: 2em;
  }
  .end-box  {
    margin-bottom: 14%;
  }
  .archive  {
    margin-bottom: 10%;
  }
  .archive a  {
    width: 90%;
    min-width: inherit;
  }
  .archive a:nth-child(1) {
    margin-bottom: 1%;
  }
  .c-btn01  {
    width: 79%;
  }
  footer  {
    margin-bottom: 12%;
  }
  #footnav  {
    position: fixed;
    align-items: flex-end;
    left: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    z-index: 99;
  }
  #footnav>div  {
    position: relative;
  }
  #footnav a.current span  {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 29.5%;
    z-index: -1;
  }
  #footnav>div:nth-child(2) a.current span  {
    background: rgba(255, 159, 165, 0.2);
  }
  #footnav>div:nth-child(3) a.current span  {
    background: rgba(229, 23, 76, 0.2);
  }
}