@font-face {
  font-family: "shippori";
  src: url("../font/ShipporiMincho-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "EBGaramond";
  src: url("../font/EBGaramond-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Ivymode";
  src: url("../font/IvyMode-Light.ttf") format("truetype");
}

*,*::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}}
html {
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}
html,body{
  height: 100%;
}
body{
  height: 100%;
  min-height: 100%;
  background: #0A0F3F;
}

#particles-js{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color:#0A0F3F;
}

#wrapper{
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

body,a,p{
  color: #fff;
  font-family: 'shippori', sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  line-height: 2.2;
  letter-spacing: 0.08rem;
}
body{
  position: relative;
}
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;
}

/* アニメーション */
.header-zoomin,
.zoomin.active{
  animation-name: header-zoomin;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes header-zoomin{
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50%{
    opacity: 1;
    transform: scale(1.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fade{
  opacity: 0;
}
.header-fade,
.fade.active{
  animation-name: fade;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-delay: 2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
.fade.active{
  animation-duration: 0.6s;
  animation-delay: 0s;
}
@keyframes fade{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header-blurfade,
.blurfade.active{
  animation-name: blurfade;
  animation-duration: 3.4s;
  animation-timing-function: ease-in-out;
  animation-delay: 1.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transform: opacity;
  opacity: 0;
}
.blurfade{
  opacity: 0;
}
.blurfade.active{
  animation-duration: 2s;
  animation-delay: 0s;
}
@keyframes blurfade{
  0% {
    filter: blur(6px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
.zoomin{
  opacity: 0;
}
.zoomin.active{
  animation: zoomin;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-delay: 3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes zoomin{
  0%{
    opacity: 1;
    transform: scale(1.4);
  }
  100%{
    opacity: 1;
    transform: scale(1);
  }
}
.clippath-left{
  opacity: 0;
}
.header-clippath-left,
.clippath-left.active{
  animation-name: clippath-left;
  animation-duration: 1.6s;
  animation-timing-function: ease;
  animation-delay: 2.8s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes clippath-left{
  0% {
    filter: blur(3px);
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.clippath-right{
  opacity: 0;
}
.clippath-right.active{
  animation-name: clippath-right;
  animation-duration: 1.8s;
  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;
    filter: blur(3px);
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.slideup{
  opacity: 0;
}
.header-slideup,
.slideup.active{
  animation: slideup;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideup{
  0% {
    opacity: 0;
    transform: translate(0, 10%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slidedown{
  opacity: 0;
}
.header-slidedown,
.slidedown.active{
  animation: slidedown;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transition: ease-out;
  opacity: 0;
}
@keyframes slidedown{
  0% {
    opacity: 1;
    transform: translate(0, -20%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 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;
  will-change: transform;
  opacity: 0;
}
@keyframes slideleft{
  0% {
    opacity: 1;
    transform: translate(-10%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slideright{
  opacity: 0;
}
.header-slideright{
  animation: header-slideright;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
  opacity: 0;
}
@keyframes header-slideright{
  0% {
    opacity: 0;
    filter: blur(2px);
    transform: translate(10%, 0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0);
  }
}
.slideright{
  opacity: 0;
}
.slideright.active{
  animation: slideright;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: transform;
}
@keyframes slideright{
  0% {
    opacity: 0;
    transform: translate(10%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* header */
.header{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.header-inner{
  display: flex;
}
.header .photo{
  width: calc(785 / 2560 * 100%);
}
.header .title-area{
  width: calc(990 / 2560 * 100%);
  margin-top: 11.6%;
}
.header .title01{
  width: calc(476 / 990 * 100%);
  margin: 0 auto;
  animation-delay: 0.4s;
}
.header .title02{
  width: calc(778 / 990 * 100%);
  margin: 7% auto 0;
}
.header .titlebox03-04{
  display: flex;
  flex-direction: column;
  width: calc(789 / 990 * 100%);
  margin: 3% auto 0;
}
.header .title03{
  width: calc(402 / 789 * 100%);
  margin: 0 auto 0 0;
}
.header .title04{
  width: calc(543 / 789 * 100%);
  margin: 5.5% 0 0 auto;
  animation-delay: 3.4s;
}
.header .icon{
  width: calc(50 / 990 * 100%);
  margin: 9% auto 0;
  animation-delay: 3.8s;
}
.header .name-box{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: calc(590 / 990 * 100%);
  margin: 7.4% auto 0;
}
.header .title05{
  width: calc(158 / 590 * 100%);
  animation-duration: 1s;
  animation-delay: 3.8s;
}
.header .title06{
  width: calc(404 / 590 * 100%);
  margin-top: -8%;
  animation-delay: 4.6s;
}
.header .logo-box{
  position: absolute;
  top: 2%;
  right: 1%;
  width: calc(100 / 2560 * 100%);
  z-index: 2;
}
.header .logo{
  width: 100%;
}
/* lead */
.lead{
  margin-top: 6%;
  text-align: center;
  font-size: min(17px, 3.6vw);
  line-height: 2.2;
  letter-spacing: 0.06rem;
}
.lead .icon{
  width: calc(50 / 2560 * 100%);
  margin: 3% auto 0;
}
/* main-nav */
.main-nav{
  margin: 8% auto;
}
.main-nav .title01{
  width: calc(408 / 2560 * 100%);
  margin: 0 auto;
}
.main-nav .title02{
  width: calc(251 / 2560 * 100%);
  margin: 1% auto 0;
}
.main-nav .nav-box{
  width: calc(1636 / 2560 * 100%);
  margin: 1.5% auto 0;
}
.main-nav .nav-box .list{
  display: flex;
  justify-content: space-between;
}
.main-nav .nav-box .list .slide-box{
  width: calc(299 / 1636 * 100%);
}
.main-nav .nav-box .list a{
  transition: 0.4s ease-in-out;
}
.main-nav .nav-box .list a:hover{
  opacity: 0.6;
}
.main-nav .nav-box .list a .photo{
  transition: 0.6s ease-in-out;
}
.main-nav .nav-box .list a:hover .photo{
  opacity: 0.6;
}
.main-nav .nav-box .title-area{
  display: flex;
  justify-content: center;
  margin: 6% auto 0;
}
.main-nav .nav-box .title-area .style{
  width:calc(90 / 299 * 100%) ;
}
.main-nav .nav-box .title-area .number{
  margin-left: 0.1em;
  font-family: 'Ivymode', sans-serif;
  font-size: min(35px,2.2vw);
  line-height: 1;
}
/* リンクボックス */
.link-box{
  width: 19.1875rem;
  margin: 0 auto;
}
.link-box .main{
  padding-bottom: calc(4% - 0.7rem);
  border-bottom: 1px solid #fff;
}
.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;
}
.cart-title{
  position: relative;
  width: 100%;
  font-size: min(17px,1.4vw);
  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: min(18px,1.4vw);
  letter-spacing: 0.06rem;
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
}
.cart-yen img{
  width: min(16px,1.4vw);
  margin: 0 0.5rem 0 0;
}
.cart-yen .size-space{
  margin-right: 1.06rem;
}
.cart-yen span{
  margin: 0 0 -2px 3%;
  color: #fff;
  font-size: min(10px, 0.8vw);
}
.cart-btm .btn{
  margin: 0 0 0 1%;
  padding: 0.4em;
  color: #0A0F3F;
  background: #fff;
  border: 1px solid #fff;
  font-size: min(10px, 0.95vw);
  line-height: 1em;
}
.other .cart-btm .btn{
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.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: min(17px,1.4vw);
  line-height: 1.2;
  cursor:pointer;
  transition: all 0.6s;
}
.accordion .accordion-btn::before,
.accordion .accordion-btn::after{
  content: "";
  display: block;
  width: 0.65em;
  height: 1px;
  background: #fff;
  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);
}
/* 共通 */
.look-wrapper{
  margin-top: 160px;
}
.look-wrapper .color-text{
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  font-family: "EBGaramond", sans-serif;
  line-height: 1;
  letter-spacing: 0.2rem;
}
.look-wrapper .color-text .color{
  font-size: min(68px, 4vw);
  animation-duration: 1s;
  animation-delay: 0s;
}
.look-wrapper .color-text .small{
  margin: 0 0.1em;
  font-size: min(40px, 3vw);
  animation-duration: 1s;
  animation-delay: 0.2s;
}
.look-wrapper .color-text .item{
  font-size: min(39px, 3vw);
}
.look-wrapper .color-text .icon{
  margin: auto 0 0.5em 0.5em;
  animation-delay: 1.2s;
}
/* 共通 */
.style-wrapper{
  margin-top: 14%;
}
.style-wrapper .number-box{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.style-wrapper .style{
  width: auto;
  height: calc(126 / 1300 * 16rem);
}
.style-wrapper .number{
  font-family: 'Ivymode', sans-serif;
  font-size: min(80px,5vw);
  margin-left: 0.1em;
}
/* item-area */
/* mainitem-box */
.item-area .mainitem-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(1430 / 2560 * 100%);
  min-width: 700px;
  margin: 6% auto 0;
}
.item-area .mainitem-box .photo-area{
  position: relative;
  width: calc(555 / 1430 * 100%);
}
.item-area .mainitem-box .photo-area .photo-box{
  border-radius: 50px;
  background: rgba(255,255,255,0.2);
}
.item-area .mainitem-box .photo{
  border-radius: 50px;
  animation-delay: 0.8s;
}
.item-area .mainitem-box .item-title{
  position: absolute;
  top: 0.6em;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0A0F3F;
  font-family: 'Ivymode', sans-serif;
  font-size: min(32px,2vw);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.item-area .mainitem-box .item-style{
  color: #AB8A56;
  font-family: 'Ivymode', sans-serif;
  font-size: min(28px,1.6vw);
  text-transform: uppercase;
  line-height: 1;
}
.item-area .mainitem-box .number-box{
  display: flex;
  justify-content: flex-start;
}
.item-area .mainitem-box .item-icon{
  width: calc(50 / 555 * 100%);
  margin: 0 0.1em;
  animation-duration: 2s;
  animation-delay: 0.6s;
}
.item-area .mainitem-box .item-number{
  margin-left: 0.1em;
  color: #AB8A56;
  font-size: min(24px,1.5vw);
  line-height: 1;
}
.item-area .mainitem-box .text-box{
  position: relative;
  width: calc(766 / 1430 * 100%);
  padding-bottom: 2em;
}
.item-area .mainitem-box .link-box{
  width: 98%;
  margin: 0 auto;
}
.item-area .mainitem-box .link-box .main{
  margin-top: 6%;
  border: none;
}
.item-area .mainitem-box .name{
  font-family: 'Ivymode', sans-serif;
  font-size: min(47px,2.8vw);
  line-height: 1;
}
.item-area .mainitem-box .point{
  margin-top: 12%;
  font-family: 'Ivymode', sans-serif;
  font-size: min(24px,2vw);
  text-transform: uppercase;
  line-height: 1;
}
.item-area .mainitem-box .point-title{
  margin-top: 3%;
  font-size: min(24px,1.7vw);
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  line-height: 1.8;
}
.item-area .mainitem-box .point-title span{
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
.item-area .mainitem-box .point-text{
  margin-top: 4%;
  font-family: YuGothic, "Yu Gothic", 游ゴシック体, 游ゴシック, "Hiragino Kaku Gothic ProN", HiraKakuPro-W3, メイリオ, Meiryo, Verdana, serif;
  font-size: min(15.5px,1.3vw);
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}
/* styling-box */
.item-area .styling-box{
  position: relative;
  right: 8%;
  width: calc(1016 / 2560 * 100%);
  min-width: 420px;
  margin: 2% 0 0 auto;
}
.item-area .styling-box .styling-title{
  font-family: 'Ivymode', sans-serif;
  font-size: min(36px,1.8vw);
  line-height: 1;
}
.item-area .styling-box .list{
  position: relative;
  display: flex;
  justify-content: space-between;
}
.item-area .styling-box .list .item{
  width: calc(329 / 1016 * 100%);
}
.item-area .styling-box .list .item:nth-child(1) .photo{
  animation-delay: 0.2s;
}
.item-area .styling-box .list .item:nth-child(2) .photo{
  animation-delay: 0.4s;
}
.item-area .styling-box .list .item:nth-child(3) .photo{
  animation-delay: 0.6s;
}
.item-area .styling-box .list .photo-box .photo{
  border-radius: 30px;
}
.item-area .styling-box .list .link-box{
  position: relative;
  width: 82%;
  min-width: 170px;
  margin: 0 auto 0 0;
}
.item-area .styling-box .list .cart-btm{
  flex-direction: column;
}
.item-area .styling-box .list .cart-btm .cart-title{
  margin-bottom: 0.2em;
}
.item-area .styling-box .list .cart-yen{
  justify-content: flex-start;
  width: 100%;
}
.item-area .styling-box .list .btn{
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.4em 0.7em;
}
/* style01 */
.style01 .box01{
  position: relative;
  right: 3%;
  width: calc(1950 / 2560 * 100%);
  margin: 0 auto;
}
.style01 .box01 .photo{
  width: 100%;
}
.style01 .box01 .number-box{
  position: absolute;
  top: 22%;
  right: 25.5%;
  display: flex;
  justify-content: flex-start;
}
.style01 .box01 .number{
  color: #0A0F3F;
}
.style01 .box01 .title{
  position: absolute;
  top: 42.5%;
  right: 6.9%;
  width: calc(594 / 1950 * 100%);
}
.style01 .box02{
  position: relative;
  left: 4%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: calc(1760 / 2560 * 100%);
  margin: 6% auto 0;
}
.style01 .box02 .photo-box{
  width: calc(800 / 1760 * 100%);
}
.style01 .box02 .text-box{
  width: calc(900 / 1760 * 100%);
}
.style01 .box02 .link-box{
  margin: 16% auto 0 0;
}
/* style02 */
.style02 .box01{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: calc(1884 / 2560 * 100%);
  margin: 0 auto;
}
.style02 .box01 .photo-box{
  width: calc(850 / 1884 * 100%);
}
.style02 .box01 .text-box{
  width: calc(900 / 1884 * 100%);
  margin: 13% auto 0 6%;
}
.style02 .box01 .title{
  width: calc(671 / 900 * 100%);
}
.style02 .box02{
  display: flex;
  justify-content: space-between;
  width: calc(1884 / 2560 * 100%);
  margin: -8% auto 0;
}
.style02 .box02 .photo-box{
  width: calc(900 / 1884 * 100%);
}
.style02 .box02 .text-box{
  width: calc(900 / 1884 * 100%);
  margin-top: 30%;
}
.style02 .box02 .link-box{
  margin: 3% 0 0 auto;
}
/* style03 */
.style03 .box01{
  display: flex;
  justify-content: space-between;
  width: calc(1894 / 2560 * 100%);
  margin: 0 auto;
}
.style03 .box01 .photo-box{
  width: calc(850 / 1894 * 100%);
}
.style03 .box01 .text-box{
  width: calc(900 / 1894 * 100%);
  margin: 0 auto 0 10%;
}
.style03 .box01 .title{
  width: calc(684 / 900 * 100%);
}
.style03 .box02{
  position: relative;
  left: 2%;
  display: flex;
  justify-content: space-between;
  width: calc(1740 / 2560 * 100%);
  margin: -24% auto 0;
}
.style03 .box02 .photo-box{
  width: calc(850 / 1740 * 100%);
  margin-top: 56%;
}
.style03 .box02 .text-box{
  position: relative;
  width: calc(850 / 1740 * 100%);
}
.style03 .box02 .link-box{
  position: absolute;
  bottom: 0;
  left: 0;
}
/* style04 */
.style04 .box01{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: calc(1857 / 2560 * 100%);
  margin: 0 auto;
}
.style04 .box01 .photo-box{
  width: calc(850 / 1857 * 100%);
}
.style04 .box01 .text-box{
  width: calc(900 / 1857 * 100%);
  margin: 10% auto 0 4%;
}
.style04 .box01 .title{
  width: calc(723 / 900 * 100%);
}
.style04 .box02{
  display: flex;
  justify-content: space-between;
  width: calc(1757 / 2560 * 100%);
  margin: -14% auto 0;
}
.style04 .box02 .photo-box{
  width: calc(850 / 1757 * 100%);
}
.style04 .box02 .text-box{
  width: calc(800 / 1757 * 100%);
  margin-top: 42%;
}
.style04 .box02 .link-box{
  margin: 3% 0 0 auto;
}
/* style05 */
.style05 .box01{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: calc(1806 / 2560 * 100%);
  margin: 0 auto;
}
.style05 .box01 .photo-box{
  width: calc(1000 / 1806 * 100%);
}
.style05 .box01 .text-box{
  width: calc(806 / 1806 * 100%);
  margin: 8% auto 0 4%;
}
.style05 .box01 .title{
  width: calc(510 / 806 * 100%);
}
.style05 .box02{
  position: relative;
  left: 2%;
  display: flex;
  justify-content: space-between;
  width: calc(1872 / 2560 * 100%);
  margin: -15% auto 0;
}
.style05 .box02 .photo-box{
  width: calc(900 / 1872 * 100%);
}
.style05 .box02 .text-box{
  width: calc(800 / 1872 * 100%);
  margin-top: 54%;
}
.style05 .box02 .link-box{
  margin: 3% 0 0 auto;
}
/* all-btn */
.all-btn{
  margin: 12% auto 0;
}
.all-btn .title01{
  width: calc(407 / 2560 * 100%);
  margin: 0 auto;
}
.all-btn .title02{
  width: calc(251 / 2560 * 100%);
  margin: 1% auto 0;
}
.all-btn .btn{
  margin: 3% auto 0;
  text-align: center;
}
.all-btn .btn a{
  margin: 0 auto;
  padding: 1.5% 4%;
  border-top: 1px solid #AB8A56;
  border-bottom: 1px solid #AB8A56;
  color: #AB8A56;
  font-size: min(22px,2vw);
  letter-spacing: 0.2rem;
  transition: 0.6s ease-in-out;
  white-space: nowrap;
}
.all-btn .btn a:hover{
  background: rgba(71,138,86,0.2);
  border: 1px solid #AB8A56;
}
/*banner-block*/
.banner-block{
  width: 100%;
  max-width: 1200px;
  margin: 5% auto 0;
  position: relative;
  z-index: 1;
}
.c-btn01{
  width: 56%;
  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;
  background: rgba(255,255,255,0.2);
}
.end-box{
  width: 100%;
  max-width: 1000px;
  margin: 5% auto 0;
}
.end-box .txt{
  font-size: 14px;
  font-family: 'EBGaramond', sans-serif;
  letter-spacing: 1px;
  line-height: 2em;
  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: 3% auto 0;
}
.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;
}

/* ナビ */
.stepnav {
  position: fixed;
  right: 1%;
  top: 46%;
  transform: translateY(-50%);
  width: 3vw;
  margin-top: -0.8vw;
  z-index: 99;
}
.stepnav .title{
  width: 82%;
  margin: 0 auto 0 0;
}
.stepnav .nav-list a{
  position: relative;
  color: #fff;
  font-family: 'Ivymode',sans-serif;
  font-size: min(32px,2.4vw);
  line-height: 1.8;
}
.stepnav .nav-list a::before{
  content: url(../img/star-icon-gold.svg);
  width: 1vw;
  height: auto;
  position: absolute;
  top: 41%;
  right: -1.2vw;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.stepnav .nav-list a::after{
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #AB8A56;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.2s ease-in-out;
}
.stepnav .nav-list a.current{
  color: #AB8A56;
}
.stepnav .nav-list a.current::before{
  opacity: 1;
}
.stepnav .nav-list a.current::after{
  width: 100%;
}
@media screen and (max-width:1250px){
  .item-area .styling-box{
    min-width: 500px;
  }
  .item-area .styling-box .list .link-box{
    min-width: 150px;
  }
}
@media screen and (max-width:900px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  /* アニメーション */
  .clippath-left.active,
  .fade.active{
    animation-delay: 0s;
  }
  /* header */
  .header-fade{
    animation-duration: 3s;
  }
  .header .title-area{
    width: 100%;
    margin-top: 8%;
  }
  .header .title01{
    width: calc(476 / 1280 * 100%);
  }
  .header .title02{
    width: calc(778 / 1280 * 100%);
    margin-top: 4%;
  }
  .header .title03{
    width: calc(1073 / 1280 * 100%);
    margin: 3% auto 0;
  }
  .header .icon{
    width: calc(69 / 1280 * 100%);
    margin-top: 4%;
  }
  .header .name-box{
    align-items: center;
    width: calc(620 / 1280 * 100%);
    margin-top: 4%;
  }
  .header .title05{
    width: calc(166 / 620 * 100%);
  }
  .header .title06{
    width: calc(424 / 620 * 100%);
  }
  .header .logo-box{
    position: relative;
    top: auto;
    right: auto;
    width: calc(230 / 1280 * 100%);
    margin: 20% auto 0;
  }
  /* lead */
  .lead{
    margin-top: 8%;
  }
  .lead .icon{
    width: calc(69 / 1280 * 100%);
  }

  /* メインナビ */
  .main-nav{
    margin-top: 14%;
  }
  .main-nav .title01{
    width: calc(632 / 1280 * 100%);
  }
  .main-nav .title02{
    width: calc(392 / 1280 * 100%);
    margin-top: 5%;
  }
  .main-nav .nav-box{
    width: calc(1180 / 1280 * 100%);
  }
  .main-nav .nav-box .list{
    flex-wrap: wrap;
  }
  .main-nav .nav-box .list .slide-box{
    width: calc(365 / 1180 * 100%);
    margin: 4% auto 6%;
  }
  .main-nav .nav-box .list .slide-box:nth-child(4){
    margin-left: 17%;
  }
  .main-nav .nav-box .list .slide-box:nth-child(5){
    margin-right: 17%;
  }
  .main-nav .nav-box .title-area{
    margin-top: 8%;
  }
  .main-nav .nav-box .title-area .style{
    width: calc(109 / 365 * 100%);
  }
  .main-nav .nav-box .title-area .number{
    margin-left: 0.2em;
    font-size: 6vw;
  }
  /* リンクボックス */
  div[class*="style"] .box02 .link-box{
    width: 80%;
    margin: 8% auto 0;
  }
  .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: 4vw;
    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: 4vw;
    line-height: 1.2;
    letter-spacing: 0.04rem;
  }
  .cart-yen img{
    width: 3.6vw;
    margin: 0 1vw 0 0;
  }
  .cart-yen .size-space{
    margin-right: 0.84rem;
  }
  .cart-yen.price img {
    margin-right: 0.81rem
  }
  .cart-yen span{
    font-size: 2.2vw;
    margin: auto 0 2px 3px;
  }
  .cart-btm .btn{
    margin-left: 1%;
    padding: 1.4% 1.4%;
    font-size: 2.8vw;
  }
  .accordion .accordion-btn{
    font-size: 4vw;
    line-height: 0.9rem;
  }
  /* 共通 */
  .style-wrapper{
    margin-top: 20%;
  }
  div[class*="style"],
  div[class*="style"] .box01,
  div[class*="style"] .box02,
  div[class*="style"] .box01 .photo-box,
  div[class*="style"] .box01 .text-box,
  div[class*="style"] .box02 .photo-box,
  div[class*="style"] .box02 .text-box{
    width: 100%;
    right: auto;
    left: auto;
  }
  .style-wrapper .style{
    height: 1.2rem;
  }
  div[class*="style"] .box01 .text-box{
    margin: 0 auto 0 10%;
  }
  div[class*="style"] .box01 .number{
    color: #fff;
    font-size: 18vw;
    line-height: 1.5;
  }
  /* item-area*/
  .item-area{
    margin-top: 16%;
  }
  /*mainitem-box */
  .item-area .mainitem-box{
    flex-direction: column;
    width: 100%;
    min-width: inherit;
  }
  .item-area .mainitem-box .photo-area{
    width: calc(900 / 1280 * 100%);
  }
  .item-area .mainitem-box .photo-area .photo-box,
  .item-area .mainitem-box .photo{
    border-radius: 25px;
  }
  .item-area .mainitem-box .item-title{
    margin-top: 0.4em;
    font-size: 6vw;
  }
  .item-area .mainitem-box .item-style{
    font-size: 5vw;
  }
  .item-area .mainitem-box .item-number{
    font-size: 4.8vw;
  }
  .item-area .mainitem-box .item-icon{
    width: 8%;
  }
  .item-area .mainitem-box .text-box{
    width: 80%;
    margin: 6% auto 0;
    padding-bottom: 0;
  }
  .item-area .link-box .main{
    border: none;
  }
  .item-area .mainitem-box .name{
    text-align: center;
    font-size: 8vw;
  }
  .item-area .mainitem-box .point{
    text-align: center;
    font-size: 5.3vw;
  }
  .item-area .mainitem-box .point-title{
    margin-top: 1%;
    text-align: center;
    font-size: 4.2vw;
    letter-spacing: 0.02rem;
  }
  .item-area .mainitem-box .point-text{
    font-size: 3.8vw;
  }
  .item-area .link-box{
    width: 80%;
    margin: 6% auto 0;
  }
  /* styling-box */
  .item-area .styling-box{
    right: auto;
    width: calc(1140 / 1280 * 100%);
    min-width: inherit;
    margin: 12% 0 0 auto;
  }
  .item-area .styling-box .styling-title{
    font-size: 5.4vw;
  }
  .item-area .styling-box .list{
    margin-left: -28.5%;
  }
  .item-area .styling-box .list .link-box{
    width: 98%;
    min-width: inherit;
  }
  .item-area .styling-box .list .btn{
    padding: 0.4em;
    font-size: 2.7vw;
  }
  .item-area .styling-box .list .cart-btm .cart-title,
  .item-area .styling-box .list .cart-yen{
    font-size: 3.8vw;
  }
  .item-area .styling-box .list .photo-box .photo{
    border-radius: 15px;
  }
  /* swiper */
  .swiper-item{
    margin: 0 auto;
    overflow: hidden;
  }
  .swiper-item .swiper-slide{
    padding: 0 1%;
  }
  .item-area .styling-box .swiper-item .swiper-slide .slide-photo01{
    animation-delay: 0s;
  }
  .item-area .styling-box .swiper-item .swiper-slide .slide-photo02{
    animation-delay: 0.2s;
  }
  .item-area .styling-box .swiper-item .swiper-slide .slide-photo03{
    animation-delay: 0.4s;
  }
  .swiper-item .swiper-button-next{
    top: -2%;
    right: 14%;
  }
  .swiper-item .swiper-button-prev{
    top: -2%;
    right: 32%;
    left: auto;
  }
  .swiper-item .swiper-rtl .swiper-button-prev:after,
  .swiper-item .swiper-button-prev:after{
    content: url(../img/slide-arrow01.svg);
    width: 3vw;
    height: 3vw;
  }
  .swiper-item .swiper-button-next:after,
  .swiper-item .swiper-rtl .swiper-button-next:after{
    content: url(../img/slide-arrow02.svg);
    width: 3vw;
    height: 3vw;
  }
  /* style01 */
  .style01 .box01{
    display: flex;
    flex-direction: column-reverse;
  }
  .style01 .text-box .number-box{
    position: relative;
    top: auto;
    right: auto;
  }
  .style01 .box01 .title{
    position: relative;
    top: auto;
    left: auto;
  }
  .style01 .sp-box .title{
    width: calc(940 / 1280 * 100%);
    margin: 8% auto 8% 10%;
  }
  .style01 .box02{
    flex-direction: column;
  }
  .style01 .photo02{
    width: calc(1000 / 1280 * 100%);
    margin-top: 10%;
  }
  .style01 .photo03{
    width: calc(1080 / 1280 * 100%);
    margin: 0 0 0 auto;
  }
  /* style02 */
  .style02 .box01{
    flex-direction: column-reverse;
  }
  .style02 .sp-box .title{
    width: calc(1034 / 1280 * 100%);
    margin: 8% auto 12% 10%;
  }
  .style02 .box02{
    flex-direction: column;
    margin: 0 auto;
  }
  .style02 .box02 .photo-box a{
    display: block;
    width: calc(1000 / 1280 * 100%);
    margin: 0 0 0 auto;
  }
  .style02 .box02 .text-box{
    margin-top: 12%;
  }
  .style02 .box02 .text-box .photo{
    display: block;
    width: calc(1100 / 1280 * 100%);
  }
  /* style03 */
  .style03 .box01{
    flex-direction: column-reverse;
  }
  .style03 .box01 .title{
    width: calc(1031 / 1280 * 100%);
  }
  .style03 .box01 .photo-box a{
    display: block;
    width: calc(1032 / 1280 * 100%);
    margin: 10% 0 0 auto;
  }
  .style03 .box02{
    flex-direction: column;
    margin-top: 12%;
  }
  .style03 .box02 .photo-box{
    margin-top: 0;
  }
  .style03 .box02 .link-box{
    position: relative;
    bottom: auto;
    left: auto;
  }
  .style03 .photo02{
    display: block;
    width: calc(1180 / 1280 * 100%);
    margin-top: 12%;
  }
  .style03 .box02 .photo-box a{
    display: block;
    width: calc(1100 / 1280 * 100%);
    margin: 0 0 0 auto;
  }
  /* style04 */
  .style04 .box01{
    flex-direction: column-reverse;
  }
  .style04 .sp-box .title{
    width: calc(1051 / 1280 * 100%);
    margin: 8% auto 12% 10%;
  }
  .style04 .box02{
    flex-direction: column;
    margin-top: 10%;
  }
  .style04 .box02 .photo-box .photo{
    display: block;
    width: calc(900 / 1280 * 100%);
    margin: 0 0 0 auto;
  }
  .style04 .box02 .photo-box .photo02{
    display: block;
    width: calc(1100 / 1280 * 100%);
    margin-top: 12%;
  }
  /* style05 */
  .style05 .box01{
    flex-direction: column-reverse;
  }
  .style05 .box01 .photo{
    display: block;
    width: calc(1150 / 1280 * 100%);
    margin: 0 auto;
  }
  .style05 .sp-box .title{
    width: calc(911 / 1280 * 100%);
    margin: 8% auto 12% 10%;
  }
  .style05 .box02{
    flex-direction: column;
    margin-top: 10%;
  }
  .style05 .box02 .photo02{
    display: block;
    width: calc(1000 / 1280 * 100%);
    margin: 0 0 0 auto;
  }
  .style05 .box02 .photo03{
    display: block;
    width: calc(900 / 1280 * 100%);
    margin: 10% auto 0 10%;
  }
  .style05 .styling-box .list{
    width: 130%;
    margin-left: 0%;
  }
  /* フッター */
  .all-btn{
    margin: 24% auto 0;
  }
  .all-btn .title01{
    width: calc(626 / 1280 * 100%);
  }
  .all-btn .title02{
    width: calc(388 / 1280 * 100%);
    margin-top: 4%;
  }
  .all-btn .btn{
    margin-top: 8%;
  }
  .all-btn .btn a{
    padding: 4% 6%;
    font-size: 5vw;
  }
  .end-box{
    margin: 12% auto;
  }
  .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;
  }
  /* footnav */
  .footnav{
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
  }
  .nav-list{
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  /* stepnav */
  .stepnav{
    right: auto;
    top: auto;
    bottom: 0;
    left: 0;
    transform: translateY(0);
    width: 100%;
    margin: 0 auto;
    padding-bottom: 0.5vh;
    background: #0A0F3F;
  }
  .stepnav .nav-list{
    width: 84%;
    margin: 0 auto 0 4%;
  }
  .stepnav .nav-list li{
    padding: 0 2.5vw;
  }
  .stepnav .nav-list li.title{
    width: 86%;
    margin: 0 auto 0 0;
    padding: 0;
  }
  .stepnav .nav-list a{
    margin: 0 auto;
    font-size: 7vw;
    line-height: 1.2;
  }
  .stepnav .nav-list a::before{
    display: none;
  }
  .pagetop{
    right: 0;
    bottom: 0;
    width: 10.5vw;
    z-index: 100;
  }
}
