*,*::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}

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap');

body,a,p{
  color: #000;
  font-family: 'Shippori Mincho B1', serif;;
  font-size: clamp(14px, 1.05vw, 19px);
  line-height: 1.8;
}
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%;
}

.pc{
  display: block;
}
.sp{
  display: none;
}
.flex-box{
  display: flex;
  justify-content: space-between;
}

/* アニメーション */
/* スクロール */
@keyframes sdl{
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* マスク */
.mask-area{
  position: relative;
}
.mask-area .mv-mask{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  opacity: 1;
  animation: mask;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 1;
}
@keyframes mask{
  0%{
    opacity: 1;
  }
  60%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}
.mask.active{
  mix-blend-mode: multiply;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1.2s 1s ease, visibility 1.2s 1s ease;
  transition: opacity 1.2s 1s ease, visibility 1.2s 1s ease;
}

.slide-up{
  opacity: 0;
}
.slideup,
.slide-up.active{
  will-change: transform;
  animation: slideup;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transition: ease-out;
  opacity: 0;
  z-index: 1;
}
@keyframes slideup{
  0% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.fade{
  opacity: 0;
}
.fadein,
.fade.active{
  animation: fade;
  animation-duration: 1.8s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  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;
  transition: ease-out;
  opacity: 0;
  z-index: 2;
}
@keyframes fadeinUp{
  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;
  transition: ease-out;
  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;
  transition: ease-out;
  opacity: 0;
  z-index: 1;
}

@keyframes fadeinRight{
  0% {
    opacity: 0;
    transform: translate(50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* header */
header{
  position: relative;
  margin-bottom: 60px;
}
header .mv_photo{
  display: flex;
  width: 100%;
  margin-bottom: 1%;
}
header .photo-box{
  position: relative;
  display: block;
  width: 33.33333%;
}
header .photo-box:nth-child(1){
  animation-delay: 0.4s;
}
header .photo-box:nth-child(2){
  animation-delay: 0s;
}
header .photo-box:nth-child(3){
  animation-delay: 0.4s;
}
header .photo-box .mvmask{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
header .photo-box:nth-child(1) .mv-mask{
  background-color: #e1677e;
}
header .photo-box:nth-child(2) .mv-mask{
  background-color: #558aaf;
}
header .photo-box:nth-child(3) .mv-mask{
  background-color: #e9bc23;
}
header .icon01{
  position: absolute;
  top: 4%;
  right: 1%;
  width: 30%;
  animation-delay: 1.2s;
}
header .icon02{
  position: absolute;
  bottom: 2%;
  left: 7%;
  width: 35%;
  animation-delay: 1.2s;
}
header .icon03{
  position: absolute;
  top: 4%;
  left: 6%;
  width: 36%;
  animation-delay: 1.2s;
}
header .logo{
  position: absolute;
  top: 1vw;
  right: 1vw;
  width: 3%;
}
header .title01{
  width: 49%;
  margin: 0 auto 1.25%;
  animation-delay: 2s;
}
header .title02{
  width: 70%;
  margin: 0 auto;
  animation-delay: 2s;
}

/* lead */
.lead{
  position: relative;
  margin: 0 auto 9%;
  padding-top: 140px;
  text-align: center;
}
.lead::before{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 120px;
  background : linear-gradient(0deg, rgba(233, 188, 35, 0.2) 0%, rgba(85, 138, 175, 0.2) 49.54%, rgba(225, 103, 126, 0.2) 100%);
}
.lead::after{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 120px;
  background : linear-gradient(0deg, rgba(233, 188, 35, 1) 0%, rgba(85, 138, 175, 1) 49.54%, rgba(225, 103, 126, 1) 100%);
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}
.lead p{
  text-align: center;
  font-size: clamp(14px, 1.15vw, 23px);
  letter-spacing: 0.1rem;
  line-height: 2;
}
.lead .main_text{
  font-size: clamp(24px,1.5vw,26px);
  letter-spacing: 0.2rem;
  line-height: 3;
}
/* メインナビ */
.main_nav{
display: flex;
justify-content: space-between;
width: 50%;
max-width: 1000px;
margin: 0 auto 120px;
}
.main_nav .nav{
  position: relative;
  width: 28%;
}
.main_nav .title01{
  width: 70%;
  margin: 0 auto 8%;
}
.main_nav .title02{
  width: 70%;
  margin: 0 auto 6%;
}
.main_nav .title03{
  width: 80%;
  margin: 0 auto 7%;
}
.main_nav .icon01{
  position: absolute;
  top: 7%;
  right: -15%;
  width: 42%;
}
.main_nav .icon02{
  position: absolute;
  top: 7.5%;
  right: -17%;
  width: 46%;
}
.main_nav .icon03{
  position: absolute;
  top: 7%;
  right: -20%;
  width: 46%;
}
/* product */
.product{
  width: 70%;
  max-width: 1600px;
  min-width: 750px;
  margin: 0 auto 80px;
  text-align: center;
}
.product .text{
  width: 16%;
  margin: 0 auto 1%;
}
.product .line01{
  margin-bottom: 4%;
}
.product .title01{
  width: 46%;
  margin: 0 auto 2%;
  animation-duration: 0.6s;
  animation-delay: 0.5s;
}
.product .title02{
  position: relative;
  width: 29%;
  margin: 0 auto;
  z-index: 1;
  animation-duration: 0.6s;
  animation-delay: 0.7s;
}
.product .photo-area{
  position: relative;
  margin-bottom: 5%;
}
.product .photo{
  width: 98%;
  margin: -2.5% auto 0;
  animation-delay: 1.2s;
}
.product .flex-box{
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  flex-wrap: wrap;
  width: 70%;
  min-width: 670px;
  margin: auto;
}
.product .flex-box .cart-btm{
  width: 48%;
}
.product .flex-box .cart-btm .btn{
  background: #000;
}
/* detail */
.detail{
  position: relative;
  margin-bottom: 120px;
  padding: 3% 0;
  background: #f9f7f1;
  text-align: center;
}
.detail::before{
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  width: 1px;
  height: 130px;
  background: rgba(0,0,0,0.2);
}
.detail::after{
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  width: 1px;
  height: 130px;
  background: #000;
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}
.detail .wrapper{
  width: 40%;
  margin: auto;
}
.detail .title01{
  width: 9%;
  margin: 0 auto 1.5%;
}
.detail .title02{
  position: relative;
  display: inline-block;
  margin-bottom: 10%;
  padding: 0 1em;
  text-align: center;
  font-size: clamp(25px, 2vw, 32px);
  line-height: 1;
}
.detail .title02::before{
  content: url(../img/detail-icon01.svg);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3%;
}
.detail .title02::after{
  content: url(../img/detail-icon02.svg);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 3%;
}
.detail .point{
  position: relative;
  width: 43%;
  text-align: justify;
}
.detail .point::before{
  content: url(../img/point-icon.svg);
  position: absolute;
  top: -5%;
  left: -10%;
  width: 23%;
}
.detail .photo{
  margin-bottom: 2%;
}
.detail .text{
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* color */
.color{
  justify-content: flex-start;
  width: 70%;
  max-width: 1400px;
  margin: 0 auto 120px;
}
#yellow .color{
  margin-bottom: 60px;
}
.color .title{
  width: 40%;
  margin-right: 2%;
}
#yellow .color .title{
  width: 53%;
}
.color .icon{
  width: 14%;
}
/* item_box共通 */
.item-box{
  position: relative;
  width: 80%;
  max-width: 1600px;
  margin: 0 auto 12%;
}
.item-box .title{
  position: relative;
  width: auto;
  margin: 0 auto 2.5rem;
  padding-left: 3.25em;
  font-size: clamp(21px, 1.8vw, 44px);
  font-style: italic;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  white-space: nowrap;
}
.item-box .title::before{
  position: absolute;
  top: 50%;
  left: 1.5em;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 2.5em;
  height: 1px;
}
.item-box .title.title-2line::before{
  top: 23%;
}
.item-box .text{
  text-align: justify;
  font-size: clamp(14px, 1.05vw, 20px);
  letter-spacing: 0.08rem;
  line-height: 2;
}
.item-box .number{
  position: relative;
  width: auto;
  height: 7vw;
  z-index: 1;
}
.item-box .mask-area .mask{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
#pink .item-box .title::before{
  background:#e1677e;
}
#blue .item-box .title::before{
  background:#558aaf;
}
#yellow .item-box .title::before{
  background:#e9bc23;
}
#pink .item-box .mask-area .mask{
  background:#e1677e;
}
#blue .item-box .mask-area .mask{
  background: #558aaf;
}
#yellow .item-box .mask-area .mask{
  background: #e9bc23;
}
#pink .main .cart-btm .btn{
  background: #e1677e;
}
#blue .main .cart-btm .btn{
  background: #558aaf;
}
#yellow .main .cart-btm .btn{
  background: #e9bc23;
}
/* pink01 */
#pink01 .photo-area{
  position: relative;
  width: 60%;
  margin: 0 auto 3%;
}
#pink01 .number{
  position: absolute;
  top: -3.5rem;
  left: -5.5rem;
}
#pink01 .text-area{
  width: 74%;
  margin: auto;
}
#pink01 .text{
  width: 50%;
}
#pink01 .link-box{
  width: 40%;
  margin: 0 auto;
}
/* pink02 */
#pink02 .photo-area{
  width: 51%;
}
#pink02 .text-area{
  width: 34%;
  margin: auto;
}
#pink02 .number{
  margin: 0 auto 20% -6%;
}
#pink02 .title span{
  display: block;
  margin-left: 3.25em;
}
#pink02 .text{
  margin-bottom: 16%;
}
/* pink03 */
#pink03{
  align-items: flex-end;
}
#pink03 .box01{
  width: 40%;
  margin: 0 auto;
}
#pink03 .box02{
  width: 50%;
}
#pink03 .number{
  margin: 0 auto 14% 0;
}
#pink03 .title span{
  display: block;
  margin-left: 4.75em;
}
#pink03 .text{
  margin-bottom: 16%;
}
#pink03 .mask-area01{
  width: 94%;
  margin: 0 auto 0 0;
}
#pink03 .photo02{
  margin-bottom: 20%;
}
#pink03 .link-box{
  width: 60%;
  margin-left: -6%;
}
/* blue01 */
#blue01 .photo-area{
  position: relative;
  width: 60%;
  margin: 0 auto 3%;
}
#blue01 .number{
  position: absolute;
  top: -3.5rem;
  left: -5.5rem;
}
#blue01 .text-area{
  width: 74%;
  margin: auto;
}
#blue01 .title span{
  display: block;
  margin-left: 3.25em;
}
#blue01 .text{
  width: 50%;
}
#blue01 .link-box{
  width: 40%;
  margin: 0 auto;
}
/* blue02 */
#blue02 .photo-area{
  width: 51%;
}
#blue02 .text-area{
  width: 34%;
  margin: auto;
}
#blue02 .number{
  margin: 0 auto 20% -6%;
}
#blue02 .title span{
  display: block;
}
#blue02 .text{
  margin-bottom: 16%;
}
/* blue03 */
#blue03{
  align-items: flex-end;
}
#blue03 .box01{
  width: 40%;
  margin: 0 auto;
}
#blue03 .box02{
  width: 50%;
}
#blue03 .number{
  margin: 0 auto 14% 0;
}
#blue03 .title span{
  display: block;
  margin-left: 3em;
}
#blue03 .text{
  margin-bottom: 16%;
}
#blue03 .photo02{
  margin-bottom: 40%;
}
#blue03 .link-box{
  width: 60%;
}
/* yellow01 */
#yellow01{
  width: 70%;
  max-width: 1400px;
}
#yellow01 .box01{
  position: relative;
}
#yellow01 .number{
  margin: 0 auto 11% -3%;
}
#yellow01 .text-area{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44%;
  margin: auto;
  z-index: 1;
}
#yellow01 .title span{
  display: block;
  margin-left: -0.25em;
}
#yellow01 .photo-area{
  width: 65%;
  margin: 0 0 3% auto;
}
#yellow01 .link-box{
  width: 40%;
  margin: 0 0 0 auto;
}
/* yellow02 */
#yellow02 .photo-area{
  width: 51%;
}
#yellow02 .text-area{
  width: 34%;
  margin: auto;
}
#yellow02 .number{
  margin: 0 auto 20% 0;
}
#yellow02 .title span{
  display: block;
  margin-left: 3em;
}
#yellow02 .text{
  margin-bottom: 16%;
}
/* yellow03 */
#yellow03{
  align-items: flex-end;
}
#yellow03 .box01{
  position: relative;
  width: 65%;
  margin: 0 0 0 auto;
}
#yellow03 .number{
  margin: 0 auto 14% 0;
}
#yellow03 .title span{
  display: block;
  margin-left: 0.75em;
}
#yellow03 .text{
  width: 86%;
  margin-bottom: 10%;
}
#yellow03 .link-box{
  width: 85%;
}
/* カート */
.link-box .main{
  padding-bottom: 3%;
  border-bottom: 1px solid #6e6e6e;
}
.link-box .mix{
  padding-top: 3%;
}
.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;
}
.cart-title{
  position: relative;
  width: 100%;
  font-size: clamp(13px, 0.95vw, 16px);
  font-family: yu-mincho-pr6n, serif;
  text-transform: uppercase;
}
.cart-title span{
  font-size: clamp(10px, 0.5vw, 16px);
}
.cart-yen{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: clamp(13.5px, 1vw, 21px);
  font-family: "YuMincho", 'Yu Mincho', serif;
  white-space: nowrap;
}
.cart-yen img{
  width: clamp(12px, 0.9vw, 21px);
  margin: 0 0.5rem 1px 0;
}
.cart-yen.price-space img{
  margin-right: 1rem;
}
.cart-yen span{
  margin: 0 0 -4px 5px;
  font-size: clamp(10px, 0.6vw, 12px);
}
.cart-btm .btn{
  padding: 1.2% 4% 1.3%;
  margin: 0 0 0 10px;
  color: #fff;
  line-height: 1em;
  font-size: clamp(9px, 0.6vw, 12px);
  font-family: "Arial", "メイリオ", Arial, sans-serif;
}
.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: "Arial",sans-serif;
  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;
  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;
}
.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 4% auto;
}
.end-box .txt{
  font-size: 13px;
  font-family: 'EB Garamond', serif;
  letter-spacing: 1px;
  line-height: 2.5em;
  text-align: center;
}
.pickup{
  text-align: center;
}
.pickup p{
  font-size: clamp(26px, 2.2vw, 32px);
  font-family: meno-banner, serif;
  font-weight: 300;
  font-style: normal;
}
.pickup img{
  display: inline-block;
  width: 52%;
  min-width: 580px;
  margin: 0 auto 6%;
  transition: 0.6s ease-in-out;
}
.pickup img: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: 6.5vw;
  max-width: 100px;
  margin-top: -1vw;
  z-index: 99;
}
#sidenav > div{
  padding-bottom: 0.5vw;
  background: #fff;
}
#sidenav > div:not(:last-child){
  margin-bottom: 1.5vw;
}
#sidenav a{
  transition: filter 1s ease;
}
#sidenav a:hover{
  filter: opacity(80%) sepia(10%);
}

@media screen and (min-width:1040px) and (max-width:1400px){
  .item_box{
    width: 92%;
  }
}
@media screen and (min-width:768px) and (max-width:1039px){
  .item_box{
    width: 90%;
  }
}
@media screen and (max-width:767px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .flex-box{
    flex-direction: column;
  }

  /* アニメーション */
  .fadeLeft.active,
  .fadeRight.active,
  #skirt01 .photo02,
  #skirt02 .link-box,
  #skirt03 .link-box,
  #knit05 .link-box,
  #outer01 .photo02,
  #outer03 .link-box{
    animation-delay: 0s;
  }
  .main_nav .nav{
    animation-duration: -1s;
  }
  /* header */
  header{
    margin-bottom: 12%;
  }
  header .mv_photo{
    flex-wrap: wrap;
    margin-bottom: 3%;
  }
  header .photo-box:nth-child(1){
    width: 100%;
    animation-delay: 0.4s;
  }
  header .photo-box:nth-child(2),
  header .photo-box:nth-child(3){
    width: 50%;
    animation-delay: 0.8s;
  }
  header .icon01{
    width: 24%;
  }
  header .icon02{
    bottom: 0;
    width: 56%; 
  }
  header .icon03{
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    width: 60%;
  }
  header .title01{
    width: 90%;
    margin-bottom: 3%;
  }
  header .title02{
    width: 92%;
  }
  /* lead */
  .lead{
    margin: 0 auto 16%;
    padding-top: 16%;
  }
  .lead::after,
  .lead::before{
    height: 22%;
  }
  .lead .header_logo{
    width: 18%;
    margin: 16% auto 8%;
  }
  .lead .lead_text{
    width: 90%;
    margin: 0 auto 2%;
    text-align: center;
    font-size: 0.85rem;
    line-height: 2.2;
  }
  .lead .main_text{
    font-size: 1.3rem;
    line-height: 1.8;
  }
/* メインナビ   */
  .main_nav{
    width: 88%;
    margin-bottom: 16%;
  }
  .main_nav .nav{
    width: 31%;
  }
  .main_nav .nav .photo{
    width: 94%;
    margin: auto;
  }
  .main_nav .nav .title01{
    width: 87%;
  }
  .main_nav .nav .title02{
    width: 87%;
  }
  .main_nav .nav .title03{
    width: 100%;
  }
  .main_nav .icon01{
    top: 9%;
    right: -11%;
  }
  /* .product */
  .product{
    width: 92%;
    min-width: inherit;
    margin-bottom: 12%;
  }
  .product .text {
    width: 36%;
    margin-bottom: 2%;
  }
  .product .title01{
    width: 86%;
    margin-bottom: 4%;
  }
  .product .title02{
   width: 54%; 
  }
  .product .photo-area{
    width: 100vw;
    margin: -4% calc(50% - 50vw) 0;
  }
  .product .photo{
    width: 100%;
    margin: auto;
  }
  .product .link-box{
    position: relative;
    left: inherit;
    bottom: inherit;
    min-width: inherit;
    transform: none;
    width: 80%;
    margin: -8% auto 6%;
  }
  .product .flex-box .cart-btm{
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0.75rem;
  }
  /* detail */
  .detail{
    margin-bottom: 20%;
    padding: 8% 0 12% 0;
  }
  .detail::before,
  .detail::after{
    top: -70px;
    height: 90px;
  }
  .detail .wrapper{
    width: 100%;
  }
  .detail .title01{
    width: 11%;
  }
  .detail .text{
    line-height: 1.4;
  }
  .detail .point{
    width: 60%;
    margin: 0 auto 12%;
  }
  .detail .point:last-child{
    margin-bottom: 0;
  }
  .detail .point::before{
    top: -7%;
    left: -5%;
  }
  /* color */
  .color{
    flex-direction: row;
    width: 88%;
    margin-bottom: 8%;
  }
  #yellow .color{
    align-items: flex-end;
  }
  .color .title{
    width: 70%;
    margin-right: 4%;
  }
  #yellow .color .title{
    width: 50%;
    margin-right: 0;
  }
  .color .icon{
    width: 26%;
  }
  /* itemエリア   */
  .item-box{
    width: 100%;
    margin-bottom: 20%;
    overflow: hidden;
  }
  .item-box .photo_box{
    width: 100%;
  }
  .item-box .number{
    height: 18vw;
  }
  .item-box .photo{
    margin-bottom: 6%;
  }
  .item-box .title{
    margin-bottom: 3%;
    padding-left: 4em;
  }
  .item-box .title::before{
    top: 22%;
    left: 2.25em;
    width: 2.5em;
  }
  .item-box .text{
    margin: 0 auto 8%;
  }
  /* pink01 */
  #pink01 .photo-area,
  #pink01 .text-area{
    width: 100%;
  }
  #pink01 .number{
    position: relative;
    top: auto;
    left: auto;
    margin: 0 8% -5.5% auto;
  }
  #pink01 .title span{
    display: block;
    margin-left: -1em;
  }
  #pink01 .text, #pink01 .link-box{
    width: 88%;
  }
  /* pink02 */
  #pink02 .number{
    margin: 0 auto -3.5% 5%;
  }
  #pink02 .photo-area,
  #pink02 .text-area{
    width: 100%;
  }
  #pink02 .title span{
    margin-left: 5em;
  }
  #pink02 .text{
    width: 88%;
  }
  /* pink03 */
  #pink03 .box01,
  #pink03 .box02{
    width: 100%;
  }
  #pink03 .number{
    margin: 0 5% -5% auto;
  }
  #pink03 .mask-area:nth-child(2){
    width: 90%;
    margin: 0 0 6% auto;
  }
  #pink03 .mask-area:nth-child(3){
    width: 90%;
    margin: 0 auto 6% 0;
  }
  #pink03 .photo01,
  #pink03 .photo02{
    margin-bottom: 0;
  }
  #pink03 .title span{
    margin-left: -0.25em;
  }
  #pink03 .text{
    width: 88%;
    margin-bottom: 8%;
  }
  #pink03 .link-box{
    width: 88%;
    margin: auto;
  }
  /* blue01 */
  #blue01 .photo-area,
  #blue01 .text-area{
    width: 100%;
  }
  #blue01 .number{
    position: relative;
    top: auto;
    left: auto;
    margin: 0 5% -4.5% auto;
  }
  #blue01 .title span{
    margin-left: 3.25em;
  }
  #blue01 .text, #blue01 .link-box{
    width: 88%;
  }
  /* blue02 */
  #blue02 .number{
    margin: 0 auto -4% -4%;
  }
  #blue02 .photo-area{
    width: 90%;
    margin: 0 0 0 auto;
  }
  #blue02 .text-area{
    width: 100%;
  }
  #blue02 .title span{
    margin-left: 0.75em;
  }
  #blue02 .text{
    width: 88%;
    margin-bottom: 8%;
  }
  #blue02 .cart-title span{
    display: block;
  }
  /* blue03 */
  #blue03 .box01,
  #blue03 .box02{
    width: 100%;
  }
  #blue03 .number{
    margin: 0 5% -5% auto;
  }
  #blue03 .mask-area:nth-child(2){
    width: 90%;
    margin: 0 0 6% auto;
  }
  #blue03 .mask-area:nth-child(3){
    width: 90%;
    margin: 0 auto 6% 0;
  }
  #blue03 .photo01,
  #blue03 .photo02{
    margin-bottom: 0;
  }
  #blue03 .title span{
    margin-left: 3.75em;
  }
  #blue03 .text{
    width: 88%;
    margin-bottom: 8%;
  }
  #blue03 .link-box{
    width: 88%;
    margin: auto;
  }
  /* yellow01 */
  #yellow01{
    width: 100%;
  }
  #yellow01 .photo-area,
  #yellow01 .text-area{
    width: 100%;
  }
  #yellow01 .text-area{
    position: static;
    top: auto;
    left: auto;
    transform: none;
  }
  #yellow01 .number{
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto -4.5% 5%;
  }
  #yellow01 .title span{
    margin-left: -1em;
  }
  #yellow01 .text, #yellow01 .link-box{
    width: 88%;
  }
  #yellow01 .link-box{
    margin: auto;
  }
  /* yellow02 */
  #yellow02 .number{
    margin: 0 8% -4% auto;
  }
  #yellow02 .photo-area,
  #yellow02 .text-area{
    width: 100%;
  }
  #yellow02 .mask-area{
    width: 90%;
    margin: auto;
  }
  #yellow02 .title span{
    margin-left: 3.5em;
  }
  #yellow02 .text{
    width: 88%;
    margin-bottom: 8%;
  }
  /* yellow03 */  
  #yellow03{
    flex-direction: column-reverse;
  }
  #yellow03 .box01,
  #yellow03 .box02{
    width: 100%;
  }
  #yellow03 .number{
    margin: 0 auto -4.5% 5%;
  }
  #yellow03 .title span{
    margin-left: 2.25em;
  }
  #yellow03 .text{
    width: 88%;
    margin-bottom: 8%;
  }
  #yellow03 .link-box{
    width: 88%;
    margin: auto;
  }

  /* リンクエリア */
  .link-box{
    width: 88%;
    margin: auto;
  }
  .link-box .cart-btm{
    width: 100%;
    margin-bottom: 0.15rem;
  }
  .link-box .cart-title{
    width: 42%;
    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 0.5rem 0.15em;
  }
  .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% 4% 1.3%;
    margin: 0 0 0 10px;
    font-family: "Arial", "メイリオ", Arial, sans-serif;
  }
  .link-box .link-line{
    margin: 4% 0;
  }

  .banner-block{
    margin: 0 auto 8%;
  }
  .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%;
  }
  
  .pickup img{
    width: 90%;
    min-width: inherit;
  }
  .c-btn01{
    width: 79%;
  }

  #footnav{
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    z-index: 10;
  }

  footer{
    margin-bottom: 3%;
    padding-bottom: 12%;
  }

}
