*,*::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,h1,h2,h3,h4{
font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  color: #4D4D4D;
  text-decoration: none;
  font-size: 13px;
  line-height: 2.2;
}
body{
  position: relative;
  -webkit-overflow-scrolling: touch;
}
ul{
  padding: 0;
  margin: 0 auto;
}
li{
  list-style: none;
}
img{
  width: 100%;
}

.pc{
  display: block;
}
.sp{
  display: none;
}

.fadein{
  animation: fadeIn 2.4s ease 0s 1 normal;
  -webkit-animation: fadeIn 2.4s ease-in 0s 1 normal;
}
.fadein1{
  opacity: 0;
}
.fadein1.active{
  animation: fadeIn 1.8s ease-in 0s 1 normal;
  -webkit-animation: fadeIn 1.8s ease-in 0s 1 normal;
  opacity: 1;
}
.bgi{
  opacity: 0;
}
.bgi.active{
  animation: fadeIn 1.8s ease-in 0s 1 normal;
  -webkit-animation: fadeIn 1.8s ease-in 0s 1 normal;
  opacity: 1;
}
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

.fade-in-bottom{
   opacity: 0;
   animation-name: fadein-bottom;
   animation-duration: 0.8s;
   animation-timing-function: ease-out;
   animation-fill-mode: forwards;
   animation-delay: 1.4s;
}
@keyframes fadein-bottom {
   0% {
      opacity: 0;
      transform: translateY(60px);
   }
   100% {
      opacity: 1;
      transform: translateY(0);
   }
}

.fade-in-bottom1{
   opacity: 0;
}
.fade-in-bottom1.active{
   animation-name: fadein-bottom1;
   animation-duration: 0.8s;
   animation-timing-function: ease-out;
   animation-fill-mode: forwards;
}
@keyframes fadein-bottom1{
   0% {
      opacity: 0;
      transform: translateY(100px);
   }
   100% {
      opacity: 1;
      transform: translateY(0);
   }
}

.fade-in-bottom2{
   opacity: 0;
}
.fade-in-bottom2.active{
   animation-name: fadein-bottom2;
   animation-duration: 1s;
   animation-timing-function: ease-out;
   animation-fill-mode: forwards;
   animation-delay: .4s;
}
@keyframes fadein-bottom2{
   0% {
      opacity: 0;
      transform: translateY(100px);
   }
   100% {
      opacity: 1;
      transform: translateY(0);
   }
}

.fade-in-bottom3{
   opacity: 0;
}
.fade-in-bottom3.active{
   animation-name: fadein-bottom3;
   animation-duration: 1s;
   animation-timing-function: ease-out;
   animation-fill-mode: forwards;
   animation-delay: .8s;
}
@keyframes fadein-bottom3{
   0% {
      opacity: 0;
      transform: translateY(100px);
   }
   100% {
      opacity: 1;
      transform: translateY(0);
   }
}

.slide-in {
  overflow: hidden;
  display: inline-block;
}
.slide-in_inner {
  display: inline-block;
}
.leftAnime{
  opacity: 0;
}

.slideAnimeLeftRight{
  animation-name: slideTextX100;
  animation-duration: 3s;
  animation-delay: -0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX100{
  from {
    transform: translateX(-300%);
    opacity: 0;
  }
  to {
  transform: translateX(0);
    opacity: 1;
  }
  80%{
    opacity: 0.8;
  }
}
.slideAnimeRightLeft{
  animation-name: slideTextX-100;
  animation-duration: 3s;
  animation-delay: -0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX-100{
  from {
    transform: translateX(300%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
  80%{
    opacity: 0.8;
  }
}

header{
  position: relative;
  margin-bottom: 6%;
}
header .header_logo{
  position: absolute;
  bottom: 3vw;
  right: 2vw;
  z-index: 1;
}
header .header_text{
position: absolute;
    width: 30.8%;
    top: 20vh;
    left: calc(50% - 15.4%);
}
header .header_logo2{
  position: absolute;
  bottom: 3vw;
  left: 2vw;
  z-index: 1;
}
header .header_text2{
position: absolute;
    width: 63.3%;
    top: 19vh;
    left: 2%;
}

section {overflow: hidden;}
.lead{
  margin: 6% auto 6%;
  text-align: center;
}
.lead .title{
  width: 21%;
  margin: 0 auto 3%;
}
.lead .lead_text{
  text-align: center;
  font-size: 16px;
	font-weight: bold;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  letter-spacing: 0.1rem;
}

.main_category{
max-width: 560px;
    margin: 0 auto;
    padding-bottom: 5%;
}
.main_category .title{
  width: 125px;
  margin: 0 auto 10%;
}
.nav{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 5px;
}
.nav div{
  position: relative;
  width: 100%;
  margin: auto;
}
.nav div a{
  display: block;
  width: 100%;
  height: 100%;
}
.nav div:hover .mask{
  display: block;
  opacity: 0.5;
  transition: 0.8s;
}
.nav .mask{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 1);
  opacity: 0;
}
.nav .text{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  width: 70%;
}
.other_catecory{
  width: 50%;
  margin: 10rem auto 8rem;
}
.other_catecory .title{
  width: 24%;
  margin: -3rem auto 2rem;
}
.other_catecory .nav{
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.other_catecory .nav .text{
  width: 78%;
}

.link-box .main{
  padding-bottom: 3%;
}
.link-box .mix{
  padding-top: 3%;
}
.link-box p{
  text-align: left;
  line-height: 2;
}
.cart-btm{
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in-out;
	margin-bottom: 1rem;
}
.cart-title{
	font-weight: bold;
  width: 100%;
  position: relative;
  letter-spacing: 0.1rem;
}
.cart-yen{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 80%;
  font-size: 13px;
	font-weight: bold;
  letter-spacing: 0.06rem;
  white-space: nowrap;
}
.cart-yen img{
  width: 17px;
  margin: 0 0.5rem 2px 0;
}
.cart-yen.price img{
  margin-right: 1.03rem;
}
.cart-yen span{
  font-size: 12px;
	font-weight: bold;
  margin: 0 0 0 5px;
}
.cart-btm .btn{
	width: 80px;
	height: 25px;
font-size: 10px;
    line-height: 1em;
    padding: 8px 22px;
    margin: 0 0 0 10px;
    font-weight: bold;
}
.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;
}
.cart-btm:hover .btn{
  background: #e3e3e2;
}
.link-line{
  margin: 3% 0;
}

.item_box{
  position: relative;
  margin-bottom: 6rem;
}
.item_box .box_inner{
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.item_box .item_title{
  margin: auto;
  display: block;
  text-align: center;
	z-index: 1;
}
.item_box .item_title img{
  width: auto;
  margin: 0 auto 4%;
}
.item_box ul{
  display: flex;
  align-items: center;
	margin-bottom: 3rem;
}
.item_box ul .photo{
  /*width: 50%;*/
}
.item_box ul .text_box{
  width: 100%;
}
.item_box ul .text_box .inner{
width: 90%;
    margin: 30px 0 0 10%;
}
.item_box .text_box .inner .text{
  margin-bottom: 20%;
  text-align: justify;
}

/***** background color *****/
header .bgc_bg{
	background-color: #FCFAF0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	z-index: -1;
}
.bgc_bg{
	background-color: #FCFAF0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
#item1-1 .bgc_bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 23%;
  background: #FCFAF0;
  z-index: -1;
}
#item1-2 .bgc_lgr{
    position: absolute;
    top: -25vh;
    left: 0;
    width: 100%;
    height: 120%;
    background: #ECF5F2;
    z-index: -2;
}

#item1-2 .bgc_flr{
background-image: url(../img/pc_bg_flower.png);
    background-size: cover;
    position: absolute;
    top: 31vh;
    left: 0;
    width: 720px;
    height: 405px;
    z-index: -1;
}

#item1-3 .bgc_bg{
	position: absolute;
    top: 30vh;
    left: 0;
    width: 100%;
    height: 347%;
    background: #FCFAF0;
    z-index: -2;
}
#item1-5 .bgc_lgr{
	  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
     width: 100%;
    height: 45%;
  background: #ECF5F2;
  z-index: -1;
}
#item2-1 .bgc_bg{
	position: absolute;
    top: 35vh;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FCFAF0;
    z-index: -1;
}
#item2-1 .bgc3 {
    top: 0;
    left: 6.5%;
    width: 87%;
    margin: 0 auto;
}
#item2-2 .bgc_bg{
	position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 54%;
    background: #FCFAF0;
    z-index: -1;
}
#item2-3 .bgc_bg{
	position: absolute;
    top: 9%;
    right: 0;
    width: 100%;
    height: 43%;
    background: #FCFAF0;
    z-index: -2;
}
#item2-3 .bgc_btncl{
    position: absolute;
    top: 28%;
    left: 0;
    max-width: 920px;
    z-index: -2;
}

#item2-3 .bgc_red{
	position: absolute;
    bottom: 9%;
    left: 0;
    width: 100%;
    height: 19%;
    background: #F5CFC3;
    z-index: -1;
}

#item2-4 .bgc_bl{
	position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 87%;
    background: #4F66A0;
    z-index: -1;
}

#item2-5 .bgc_bg{
	position: absolute;
    top: 20%;
    right: 0;
    width: 100%;
    height: 100%;
    background: #FCFAF0;
    z-index: -3;
}
#item2-5 .bgc_btncl_l{
    position: absolute;
    top: 8%;
    left: 0;
    max-width: 391px;
    z-index: -2;
}
#item2-5 .bgc_btncl_r{
    position: absolute;
    bottom: -4%;
    right: 0;
    max-width: 291px;
    z-index: -2;
}
.banner-block .bgc_bg{
	background-color: #FCFAF0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

footer .bgc_bg{
	background-color: #FCFAF0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
/***** background color *****/
#item1-1{
  padding-top: 5%;
}
#item1-1 .photo{
position: relative;
}
#item1-1 .one-piece{
	position: absolute;
    z-index: 1;
    top: 18vh;
    left: 2vw;
}
#item1-1 .item_title img{
  height: 8.5rem;
}
#item1-1 ul .photo{
  max-width: 450px;
	margin-top: 25%;
}
#item1-1 ul .photo2{
max-width: 380px;
    margin-top: -15%;
}
#item1-1 .cart-btm .btn{
  background: #B8D7D6;
  color: #fff;
}
#item1-2{
  margin-bottom:30px;
}

#item1-2 .photo{
  max-width: 820px;
  margin: 0 0 0 auto;
}
#item1-2 .photo2{
  max-width: 960px;
  margin: 180px auto;
}

#item1-2 .text_box .inner{
  display: flex;
  width: 80%;
  margin: auto;
}
#item1-2 .text_box .inner .textarea{
  width: 46%;
}
#item1-2 .text_box .inner .link-box{
  width: 53%;
  padding: 0 5% 0 9%;
}

#item1-2 .cart-btm .btn{
  background: #B8D7D6;
}
#item1-3{
    margin-top: -120px;
    padding-top: 4rem;
}
#item1-3 ul {display: flex;}
#item1-3 ul li.photo{max-width: 500px;}
#item1-3 ul li.text_box{
    max-width: 420px;
    padding: 0px 40px 0 55px;
}

#item1-3 .photo{
  margin: 0 0 auto 0;
}
#item1-3 .photo img{
	margin-left: 11%;
}
#item1-3 .bgc3{
  position: absolute;
	top: 120px;
  display: block;
	margin: 0 auto;
  width: 920px;	
  height: 550px;
  z-index: -1;
}

#item1-3 .cart-btm .btn{
  background: #d7dce2;
}
#item1-4 .photo{
	max-width: 500px;
}
#item1-4 .photo2{
	max-width: 360px;
	margin-left: 60px;
}
#item1-4 .photo3{
	max-width: 920px;
	margin: 120px auto 0;
}
#item1-4 .blouson{
	position: relative;
	left: -2rem;
	top: -2rem;
}
#item1-4 .cart-btm .btn{
  background: #B8D7D6;
  color: #fff;
}

#item1-4 .cart {
    width: 70%;
    margin: 30px 0 0 auto;
}
#item1-5{
	margin-top: 120px;
    margin-bottom: 160px;
    padding-top: 90px;
    padding-bottom: 120px;
}

#item1-5 .bgc6{
	  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
     width: 100%;
    height: 44%;
  background: #ECF5F2;
  z-index: -1;
}
#item1-5 .photo{
	max-width: 500px;
}
#item1-5 .photo .small{
	max-width: 450px;
	margin-top: 120px;
	margin-left: 50px;
}

#item1-5 .photo2 .large{
	width: 500px;
	display: block;
}
#item1-5 .photo2{
	max-width: 420px;
	position: relative;
	left: -80px;
	top: -80px;	
}
#item1-5 .photo4{
	position: relative;
	top: 180px;	
}
#item1-5 .tittle{
max-width: 440px;
    position: relative;
    top: 0;
    left: 50px;
}
#item1-5 .slide-in{
	overflow: inherit;
}
#item1-5 .cart-btm .btn{
  background: #B8D7D6;
  color: #fff;
}
#item1-5 .r-80{
	position: relative;
	right: -80px;
	display: block;
}
#item2_bgi{
  margin: -1rem auto 5rem 0;
  width: 50%;
  opacity: 0.7;
}

#item2-1{
  margin-bottom: 10rem;
  padding-top: 5%;
}
#item2-1 .sub_t_02{
	width: 311px;
}
#item2-1 ul{
	max-width: 920px;
}

#item2-1 ul .photo{
  max-width: 550px;
	z-index: 2;
	margin-top:50px;
}
#item2-1 ul .photo span img{
	width: 180px;
	margin: 1rem 0;
	display: block;
}
#item2-1 ul .text_box {
    max-width: 370px;
	z-index: 1;
}

#item2-1 .bgc_red {
background-color: #FF494D;
top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    margin: 0 0 0 -60px;
    padding: 100px 30px 100px 22%;
}

#item2-1 .text{
	color: #fff;
}

#item2-2{
	margin-top: 120px;
    margin-bottom: 120px;
}

#item2-2 .photo{
	max-width: 500px;
}
#item2-2 .photo3{
}
#item2-2 .photo .small{
	max-width: 380px;
	display: block;
	margin-bottom: 60px;
}
#item2-2 .photo .large{
	width: 500px;
	display: block;
}
#item2-2 .photo2{
	max-width: 480px;
	position: relative;
	left: -60px;
	top: -80px;	
}
#item2-2 .photo2 .large{
	width: 480px;
	display: block;
}


#item2-2 .photo4{
	position: relative;
	top: 180px;	
}
#item2-2 .tittle{
max-width: 440px;
    position: relative;
    top: 0;
    left: 0;
	    margin-bottom: 60px;
}
#item2-2 .slide-in{
	/*overflow: inherit;*/
}
#item2-2 .cart-btm .btn{
  background: #DDB997;
  color: #fff;
}

#item2-2 ul .text_box .inner {
    width: 75%;
    margin: 30px 0 0 auto;
}




#item2-3{
  margin-bottom: 0;
}
#item2-3 .photo01{
	max-width: 920px;
	margin-bottom: 60px;
}
#item2-3 ul .photo{
	width: 50%;
	z-index: 1;
}
#item2-3 ul .photo img{
	position: relative;
	left: 50px;
}
#item2-3 ul .photo img.tittle_red{
	max-width: 515px;
	top: 0;
	left: 0px;
}
#item2-3 ul .mt440{margin-top: 440px;}

#item2-3 ul .photo2{
	width: 50%;
}
#item2-3 ul .photo2 img{
	position: relative;
	right: 50px;
}

#item2-3 ul .photo3{
	width: 50%;
}
#item2-3 ul .photo3 img.skirt1{
	max-width: 450px;
	margin-bottom: 60px;
}
#item2-3 ul .photo3 img.skirt2{
	max-width: 460px;
	margin-left: 111px;
}
#item2-3 ul .photo4{
	max-width: 380px;
	margin: 0 30px;
}
#item2-3 ul .photo4 img{
	margin-top: 90px;
}


#item2-3 .bgc{
  position: absolute;
  top: 30%;
  right: 0;
  display: block;
  width: 100%;
  height: 42%;
  background: #dde8e4;
  z-index: -1;
}
#item2-3 .item_title img{
  height: 8.5rem;
}
#item2-3 ul{
  align-items: flex-start;
}
#item2-3 .text_box .inner{
	width: 100%;
	margin: 30% 0 0 0;
}
#item2-3 .text_box .inner > a{
  display: block;
  margin-bottom: 3rem;
  width: calc(100% + 8%);
  margin: 0 -8% 3rem 0 ;
}
#item2-3 .text_box .inner .photo{
  width: 100%;
}
#item2-3 .cart-btm .btn{
  background: #FF494D;
	color: #fff;
}


#item2-4{
	margin-top: 120px;
    margin-bottom: 160px;
}
#item2-4 .bgc5{
	  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 61%;
  background: #fff;
  z-index: -1;
}
#item2-4 .bgc6{
	  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
     width: 100%;
    height: 44%;
  background: #ECF5F2;
  z-index: -1;
}
#item2-4 .photo{
	max-width: 500px;
}
#item2-4 .photo .small{
	max-width: 450px;
	margin-top: 60px;
	margin-left: 50px;
}

#item2-4 .photo2 .large{
	width: 500px;
	display: block;
}
#item2-4 .photo2{
	max-width: 420px;
	position: relative;
	left: -80px;
	top: 160px;	
}
#item2-4 .photo4{
	position: relative;
	top: 180px;	
}
#item2-4 .tittle{
max-width: 354px;
    position: relative;
    top: 0;
    left: -100px;
    margin-top: 60px;
}
#item2-4 .slide-in{
	overflow: inherit;
}
#item2-4 .cart-btm .btn{
  background: #4F66A0;
  color: #fff;
}
#item2-4 .r-80{
	position: relative;
	right: -80px;
    bottom: -200px;
	display: block;	
}

#item2-5{
	margin-bottom: 5rem;
	padding-bottom: 5rem;
}
#item2-5 .photo{
	max-width: 500px;
	margin: 0 auto 60px;
}

#item2-5 ul .text_box .inner{
	margin: 60px 0 0 0;
	width: 80%;
}
#item2-5 .cart-btm .btn{
  background: #4D4D4D;
  color: #fff;
}

/*banner-block*/
.banner-block{
width: 100%;
    margin: 0% auto 0;
    position: relative;
    z-index: 10;
    padding-top: 8%;
    padding-bottom: 5%;
}
.c-btn01{
  max-width: 500px;
  margin: 0 auto 50px auto;
  border: 1px solid #ccc;
  display: block;
	background-color: #fff;
}

#pagetop{
  position: fixed;
  right: 15px;
  bottom: 20px;
  width: 35px;
  z-index: 99;
}

#sidenav{
  position: fixed;
  right: 0;
  top: 8vh;
  width: 7vw;
  z-index: 99;
}

#sidenav img{
  margin-bottom: 10%;
  transition: 0.6s ease-in-out;
}
#sidenav img:hover{
  opacity: 0.8;
  transition: 0.6s ease-in-out;
}

.end-box{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 4% auto;
}
.end-box .txt{
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 2.5em;
  text-align: center;
  color: #595757;
  font-family: 'EB Garamond', serif;
}

.footer {
  color: #000;
  letter-spacing: 0.3em;
  padding: 10px 0 2% 0;
  position: relative;
  text-align: center;
}
.footer .insta{
  display: block;
  width: 450px;
  border: 1px solid #eee;
  margin: 0 auto 3% auto;
  transition: .3s;
}
.footer .insta:hover{
  border: 1px solid #000;
  transition: .3s;
}
.footer_sns {
  margin: 26px 0 0;
}
.footer_snsNode {
  display: inline-block;
  margin: 0 10px;
  width: 30px;
}
.f-ow {
  width: 120px;
  margin: 25px auto 0 auto;
}
.footer_copyright {
  font-family: "Helvetica",serif;
  font-size: 10px;
  letter-spacing: 0.02em;
  margin: 34px 0 0;
}

@media screen and (min-width:920px) and (max-width:1100px){
  body, a, p, h1, h2, h3, h4,.cart-yen{
    font-size: 14px;
  }
  .item_box .box_inner{
    width: 96%;
  }
  #item3-2 .text_box .inner{
    width: 80%;
  }
}
@media screen and (min-width:767px) and (max-width:919px){
  body, a, p, h1, h2, h3, h4, .cart-yen{
    font-size: 0.85rem;
  }
  .cart-title{
    font-size: 0.8rem;
  }
  .cart-btm .btn{
    font-size: 0.7rem;
    margin-left: 0.3rem;
  }
  .item_box .box_inner{
    width: 100%;
  }
  .item_box ul .text_box .inner{
    width: 84%;
  }
  .item_box .item_title img{
    transform: scale(0.8);
  }
  #item3-2 .text_box .inner{
    width: 80%;
  }
}
@media screen and (max-width:766px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  header{
    background: #fff;
  }
  header .header_text{
    position: absolute;
    top: 3%;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 8% 13%;
  }
header .header_logo{
	width: 19%;
	position: absolute;
	bottom:1.5vh;
	left: 3vw;
  }
  .lead{
    margin: 0 auto 8%;
    padding: 0;
  }
  .lead .header_logo{
    width: 20%;
    margin: 20% auto 14%;
  }
  .lead .title{
    width: 70%;
    margin-bottom: 4%;
  }
  .lead .lead_text{
    width: 100%;
    margin: auto;
    font-size: 0.76rem;
    line-height: 2.2;
  }

  .main_category .title{
    width: 110px;
    margin: 0 auto 10%;
  }
  .nav{
    gap: 2rem 8%;
  }

  .link-box{
    width: 94%;
    margin: auto;
  }
  .link-box .cart-btm{
    margin-bottom: 10px;
  }
.item_box {
    margin-bottom: 3rem;
}
.sp2c_ct {
    position: absolute;
    margin-top: -2.2rem;
}
.jstycon_fs {
    justify-content: flex-start;
}
  .cart-title{
    font-size: 0.75rem;
    line-height: 1.2;
  }
  .cart-yen{
    font-size: 0.8rem;
    line-height: 1.2;
  }
  .cart-yen img{
    width: 1.05rem;
    margin: 0 0.5rem 0;
  }
  .cart-yen.price img {
    margin-right: 1.07rem;
  }
  .link-line{
    margin: 4% 0;
  }

  .main_category{
    width: 76%;
    margin-bottom: 0%;
	  padding-bottom: 15%;
  }
  .other_catecory{
    width: 90%;
    margin-top: 0;
  }
  .other_catecory .title {
    width: 52%;
    margin: -3rem auto 2rem;
  }
  .nav div:hover .mask{
    display: none;
  }

  .item_box .box_inner{
    width: 100%;
  }
  .item_box .item_title img{
    height: auto;
    margin-bottom: 0.5rem;
  }
  .item_box ul, #item1-2 .text_box .inner, #item2-2 .text_box .inner, #item3-2 .text_box .inner{
    flex-direction: column;
    width: 100%;
  }
  .item_box ul .text_box, .item_box ul .text_box .inner{
    width: 100%;
	  margin: 30px auto;
  }
  .item_box .text_box .inner .text{
    width: 80%;
    margin: 8% auto;
    line-height: 1.8;
  }

  #item1-1 .bgc{
    width: 67%;
    height: 69%;
  }
  #item1-1 .item_title img{
    width: 60%;
    height: auto;
    margin: 0 auto 0 2%;
  }
	
#item1-1 .one-piece {
    position: absolute;
    z-index: 1;
    top: 7vh;
    left: 2vw;
}
#item1-1 ul{
	 flex-direction: inherit;
	margin-top: 5%;
	}
#item1-1 ul .photo{
    width: 50%;
    margin: 0 auto 0 0;
  }
	#item1-1 ul .photo img{
		position: absolute;
		top: -90px;
	}	
#item1-1 ul .photo2 {
    max-width: none;
	width: 50%;
    margin-top: 0;
	padding-right: 5%;
}
  #item1-2{
	  margin-top: -5%;
    padding-bottom: 4rem;
  }
  #item1-2 .bgc{
    height: 60%
  }
  #item1-2 .item_title img{
    width: 76%;
  }
  #item1-2 .photo{
	  max-width: none;
	  width: 85%;
    margin: 0 0 0 auto;
  }
  #item1-2 .text_box .inner .textarea, #item1-2 .text_box .inner .link-box{
    width: 100%;
  }
#item1-2 .bgc_flr {
    background-image: url(../img/pc_bg_flower.png);
    background-size: cover;
    position: absolute;
    top: 15vh;
    left: 0;
    width: 64%;
    height: 23%;
    z-index: -1;
}
#item1-2 .bgc_lgr {
    position: absolute;
    top: -7vh;
    left: 0;
    width: 100%;
    height: 80%;
    background: #ECF5F2;
    z-index: -2;
}
#item1-2 .photo2 {
    max-width: 960px;
    margin: 120px auto;
}
#item1-3 .photo img {
    margin-left: 0;
}
#item1-3 ul li.photo {
    max-width: none;
    margin: 0 auto;
    width: 80%;
    position: relative;
    top: -3vh;
}
#item1-3 ul li .sp_sub_tittle01{
	width: 70%;
	margin: 30px auto 0;
	}	
#item1-3 .bgc_bg {
    top: 30%;
    height: 350%;
}
#item1-3 .bgc3 {
    top: 0px;
    left: 6.5%;
    width: 87%;
    margin: 0 auto;
}
#item1-4 .blouson {
    position: relative;
    left: -3rem;
    top: 5rem;
    z-index: 1;
    width: 90%;
}
#item1-4 .photo {
	width: 80%;
    max-width: none;
    margin-top: -7rem;
}
#item1-4 .cart {
    width: 100%;
}
#item1-4 .photo2 {
    max-width: none;
    margin-left: 5%;
	margin-right: 5%;
	margin-top: 0px;
    display: flex;
}
	#item1-4 .photo3 {
		width: 100%;
    max-width: none;
    margin: 0px auto 0;
}
#item1-4 .mt{
		margin-top: 50%;
	}
#item1-5 {
    margin-top: 0px;
    margin-bottom: 160px;
    padding-top: 0px;
    padding-bottom: 120px;
}
#item1-5 .photo {
    max-width: none;
	width: 80%;
	margin: 0 auto 0 0;
}
#item1-5 .photo3 {
	width: 53%;
	margin: 0 auto 0 3%;
}
#item1-5 .photo4 {
	width: 47%;
	margin: 0 3% 0 auto;
}
#item1-5 .blouse {
position: absolute;
    right: -9%;
    top: 30vh;
    z-index: 1;
    width: 100%;
}
#item1-5 .tittle {
    max-width: none;
    width: 50%;
}
#item1-5 .ds_flx {
    display: flex;
	flex-direction: initial;
	margin-top: 30px;
}
#item1-5 .photo2 {
    max-width: none;
	width: 50%;
    position: relative;
    left: 0;
    top: 0;
}
#item1-5 .photo2:first-child {
    max-width: none;
	width: 47%;
	margin-right: 3%;
	margin-top: 40%;
    position: relative;
    left: 0;
    top: 0;
}
#item1-5 .bgc_lgr {
    height: 50%;
}
header .header_text2 {
    width: 78%;
    margin: 0 auto;
    top: 11%;
    left: 11%;
}
header .header_logo2 {
	width: 19%;
    position: absolute;
    bottom: 1.5vw;
    right: 2vw;
    z-index: 1;
	left: inherit;
}
#item2-1 {
    margin-bottom: 0;
    padding-top: 5%;
}
#item2-1 ul li.photo {
width: 80%;
    max-width: none;
    margin: 0 auto;
    position: relative;
    top: -12vh;
}
#item2-1 ul li .sp_sub_tittle01{
	width: 70%;
	margin: 30px auto 0;
	}	
#item2-1 .bgc_bg {
    top: 32vh;
	height: 100%;
}	
#item2-1 .text {
    color: #4D4D4D;
}

#item2-1 ul {
    max-width: none;
    margin-bottom: -100px;
}
#item2-2 {
    margin-top: 80px;
    margin-bottom: 120px;
}
#item2-2 .bgc_bg {
    height: 63%;
}
#item2-2 .photo {
	width: 84%;
    max-width: none;
    margin: 0 auto;
}
	#item2-2 .photo3 {
	width: 54%;
    margin: 10% auto 0 8%;
}
#item2-2 .photo4 {
	width: 45%;
    margin: 0 0 0 auto;
	position: absolute;
    right: 0;
    top: 38%;
}

#item2-2 .tittle {
max-width: none;
    width: 60%;
    margin-bottom: 0;
    margin: 0 auto 0 6%;
}	
#item2-2 .item_title {
    z-index: 1;
    position: absolute;
    top: -30px;
    left: -10px;
}
#item2-2 .ds_flx {
    display: flex;
	flex-direction: initial;
	margin-top: 30px;
}
#item2-2 .link-box{
width: 82%;
    margin: 0 auto 0;
	}
#item2-3 ul {
    display: flex;
	flex-direction: initial;
}
#item2-3 ul .photo2 {
	width: 57%;
    position: absolute;
	right: 0px;
}
#item2-3 ul .photo {
    width: 43%;
}
#item2-3 ul .photo img {
    left: 0;
}
#item2-3 ul .photo2 img {
    position: relative;
    right: 0px;
}

#item2-3 ul .photo img.tittle_red {
    max-width: none;
    top: 0;
    left: 32%;
    width: 95%;
	z-index: 1;
}
#item2-3 ul .mt440{margin-top: 100px;}
#item2-3 .bgc_btncl {
        top: 68vh;
    max-width: none;
    width: 90%;
}
#item2-3 .slide-in {
    overflow: initial;
    display: inline-block;
}
#item2-3 ul.photos{display: flex;
	flex-direction: column;}

#item2-3 ul .photo3 {
    width: 87%;
    margin: 90px auto;
}
#item2-3 ul .photo3 img.skirt1 {
    max-width: none;
    margin-bottom: 60px;
}
#item2-3 ul .photo4 {
    max-width: none;
    margin: 0 auto;
    width: 100%;
    display: flex;
}
#item2-3 ul .photo4 img {
    margin-top: 0px;
}
#item2-3 ul .photos1{
	width: 54%;
	position: relative;
	top: 0;
	left: 0;
	}
#item2-3 ul .photos2{
    margin-left: 5%;
    position: absolute;
    bottom: 32vh;
    right: 0;
    width: 44%;
}
#item2-3 .text_box .inner {
    width: 80%;
    margin: 30px auto 0;
}
#item2-3 .bgc_bg {
    height: 33%;
}
#item2-3 .bgc_red {
    bottom: 28vh;
    height: 80vh;
}
#item2-4 {
    margin-top: 80px;
    margin-bottom: 100px;
}
#item2-4 .photo {
    max-width: none;
    width: 87%;
    margin: 0 auto 0 0;
}
#item2-4 .photo .small {
max-width: none;
    margin-top: 170px;
    margin-left: 8%;
    width: 52%;
}
#item2-4 .photo2 {
    max-width: none;
    position: absolute;
    left: auto;
    top: 60vh;
    width: 52%;
    right: 0;
}
#item2-4 .photo2 .large {
    width: auto;
}
#item2-4 .tittle {
max-width: none;
    position: relative;
    top: 100px;
    left: -23%;
    margin-top: -10px;
    width: 50%;
}
#item2-4 .bgc_bl {
    top: 23%;
    height: 58%;
}	
#item2-4 .text_box .inner {
    width: 80%;
    margin: 0 auto;
}
#item2-5 .photo {
    max-width: none;
	width: 87%;
    margin: 0 auto 60px;
}	
#item2-5 .item_box .item_title{
		position: relative;
	left: 5%;
	}
#item2-5 .sp2c{
		flex-direction: initial;
	}
#item2-5 .photo3{width: 44%;}
#item2-5 .photo3 img{
	width: 100%;
	position: relative;
	left: 0;
	top: 40px;
	z-index: 1;
	}
#item2-5 .photo4{
	width: 56%;
	margin-top: -100px;
	position: relative;
    z-index: -1;
}
#item2-5 .photo4 img{
	width: 100%;
	position: relative;
	right: 0;
	}
#item2-5 .item_title img{
	width: 95%;
    position: relative;
    left: 12%;
	}
#item2-5 .slide-in {
    overflow: initial;
    display: inline-block;
}
#item2-5 .bgc_btncl_l {
    top: 30%;
    width: 33%;
}
#item2-5 .bgc_btncl_r {
    bottom: 10%;
    width: 30%;
}
#item2-5 .text_box .inner {
    width: 80%;
    margin: 0 auto;
}
	.end-box{
    margin-bottom: 3rem;
  }

  #pagetop{
    position: fixed;
    right: 0;
    bottom: 12.5%;
    width: 10%;
    z-index: 99;
  }

  #footnav{
    display: flex;
    position: fixed;
    right:auto;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 99;
  }
  #footnav div{
    position: relative;
  }
  #footnav div:not(:last-of-type)::after{
    bottom: 13%;
  }

  footer{
    margin-bottom: 18%;
  }
.c-btn01{
	max-width: none;
	width: 90%;
}
}


.mb60{
	margin-bottom: 60px;
}