@charset "UTF-8";
/* CSS Document */
.top {
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
}
@media(min-width:1160px) {
  .top {
    max-width: 1140px;
  }
}
/*TOPバナー*/
.top-banner-are {
  width: 100%;
  margin-bottom: 60px;
}
.top-banner-are img {
  width: 100%;
}
/*新作*/
.top-contents_new {
  width: 100%;
  margin: 0 auto;
}
.top-contents_new h1 {
  color: #333;
  font-size: 1.8rem;
}
.h1-border {
  width: 80px;
  height: 0.5px;
  background-color: #333;
  margin: 10px auto 30px auto;
}
.top-contents__new-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.top-contents__new__item {
  width: 43%;
  margin: 15px 10px;
  position: relative;
}
.top-contents__new__item img {
  width: 160px;
  height: 160px;
  object-fit: cover;
}
.top-contents__new__item-name, .top-contents__new__item-price {
  color: #333;
  font-size: 1.3rem;
  text-align: center
}
.top-contents__new__more {
  width: 340px;
  height: 50px;
  border: 1px solid #333;
  margin: 30px auto;
}
.top-contents__new__more a {
  display: inline-block;
  text-decoration: none;
  line-height: 50px;
  color: #333;
}
.top-contents__new-wrapper a{
 position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media(min-width:1160px) {
  .top-contents_new {}
  .h1-border {
    margin: 10px auto 60px auto;
  }
  .top-contents__new-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .top-contents__new__item {
    width: 24%;
	margin: 10px 5px;
  }
  .top-contents__new__item img {
    width: 230px;
    height: 230px;
  }
}
/*ランキング*/
/*tabの形状*/
.tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.tab li a {
  display: block;
  border-bottom: solid 1px #999;
  color: #999;
  font-weight: 600;
  margin: 0 0px;
  padding: 8px 20px;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  color: #333;
  border-bottom: solid 1px #333;
}
/*エリアの表示非表示と形状*/
.ranking-area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #fff;
  padding: 0;
}
/*areaにis-activeというクラスがついた時の形状*/
.ranking-area.is-active {
  display: block; /*表示*/
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*========= レイアウトのためのCSS ===============*/
ul {
  list-style: none;
  padding-left: 0px;
}
a {
  color: #333;
  text-decoration: none;
}
.ranking-wrapper {
  max-width: 375px;
  width: 100%;
  margin: 30px auto;
  background: #fefefe;
    padding: 0;
}
.ranking-wrapper h1 {
  color: #333;
  font-size: 1.5rem;
  padding-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.ranking-contents {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.ranking-contents-items {
  margin: 15px 10px;
  width: 43%;
}
.ranking-contents-items p {
  font-size: 1.3rem;
  color: #333;
  text-align: center;
}
.ranking-contents-items img {
  width: 160px;
  height: 160px;
  object-fit: cover;
}
.ranking-icon {
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.ranking01 {
  color: #ba9e21;
}
.ranking02 {
  color: #aaaaaa;
}
.ranking03 {
  color: #a36b21;
}
@media(min-width:1160px) {
  .tab li a {
    padding: 15px 30px;
    font-size: 1.2rem;
  }
  .ranking-wrapper {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
  }
  .ranking-contents-items {
    width: 24%;
    margin: 10px 5px;
  }
  .ranking-contents-items p {
    font-size: 1.2rem;
  }
  .ranking-contents-items img {
    width: 230px;
    height: 230px;
  }
  .ranking-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.top-contents_ranking__more {
  width: 340px;
  height: 50px;
  border: 1px solid #333;
  margin: 30px auto;
}
.top-contents_ranking__more a {
  display: inline-block;
  text-decoration: none;
  line-height: 50px;
  color: #333;
}
/*スタイルブック*/
.top-contents_coordinate {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}
.top-contents_coordinate h1 {
  color: #333;
  font-size: 1.8rem;
}
#top-contents_coordinate-slide {
  width: 100%;
}
.top-contents_coordinate__item {
  margin: 0 5px;
}
.top-contents_coordinate__item img {
  width: 100%;
}
.top-contents_coordinate__more {
  width: 340px;
  height: 50px;
  border: 1px solid #333;
  margin: 30px auto;
}
.top-contents_coordinate__more a {
  display: inline-block;
  text-decoration: none;
  line-height: 50px;
  color: #333;
}
@media(min-width:1160px) {
  .top-contents_coordinate {
    max-width: 1140px;
    width: 100%;
    margin: 60px auto;
  }
}
/*探す*/
.top-contents_select {
  max-width: 345px;
  width: 100%;
  margin: 0 auto;
}
.top-contents_select h1 {
  color: #333;
  font-size: 1.8rem;
}
.top-contents_select__h1{
	margin-top:60px;
}

.top-contents_select__select-item{
	width: 100%;
	margin: 20px 0px;
}
.top-contents_select__select-item img{
	width: 100%;
}
.top-contents_select__select-item p{
	text-align: left;
	font-size: 1.2rem;
	line-height: 2.4rem;
}
.find-scene{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto;
}
.find-scene__item{
	width: 46%;
	margin: 15px 3px;
}
.find-scene__item img{
	width:  100%;
}
@media(min-width:1160px){
	.top-contents_select {
  max-width: 1140px;
}

.top-contents_select__select-wrapper{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.top-contents_select__select-item{
	width: 46%;
	margin: 20px 5px;
}
.top-contents_select__select-item img{
	width: 100%;
}
.top-contents_select__select-item p{
	text-align: left;
	font-size: 1.2rem;
	line-height: 2.4rem;
}
}
/*雑誌掲載*/
.top-contents_magazine {
  margin-bottom: 60px;
}
.top-contents_magazine_wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.top-contents_magazine_item {
  width: 45%;
  margin: 10px 3px;
}
.top-contents_magazine_item img {
  width: 100%;
}
.top-contents_magazine_item p {
  font-size: 1.2rem;
}
.top-contents_about {
  width: 100%;
  margin-bottom: 60px;
}
@media(min-width:1160px) {
  .top-contents_magazine {
    max-width: 1140px;
    widows: 100%;
    margin: 0px auto 60px auto;
  }
  .top-contents_magazine_item {
    width: 23%;
    margin: 10px 10px;
  }
  .top-contents_magazine_item p {
    font-size: 1.5rem;
  }
}
/*about*/
.top-contents_about{
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
}
.top-contents_about__bg {
  background-image: url("https://leggingslab.itembox.design/item/leggings.jpg");
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.9);
  background-blend-mode: lighten;
  background-repeat: repeat-y;
}
.top-contents_about__contents {
  max-width: 345px;
  width: 100%;
  margin: 0 auto;
}

.top-contents_about h3 {
  padding-top: 60px;
  color: #333;	
  font-weight: 300;
  letter-spacing: 3px;
  font-size: 1.3rem;
}
.top-contents_about p {
  line-height: 3rem;
  letter-spacing: 3px;
  font-size: 1.3rem;
  padding-bottom: 60px;
}
@media(min-width:1160px) {
  .top-contents_about__contents {
    max-width: 1140px;
  }
  .sp-only {
    display: none;
  }
}
/*ブログ*/
.top-contents_blog {
  width: 100%;
  background-color: #f5f5f5;
  padding-bottom: 60px;
}
.top-contents_blog h1 {
  color: #333;
  font-size: 1.8rem;
  padding-top: 60px;
}
.top-contents_blog__contents {
  max-width: 335px;
  width: 100%;
  height: 300px;
  margin: 0 auto;
  background-color: #fff;
}
.top-contents_blog__contents__inner {
  padding: 15px;
  position: relative;
}
.top-contents_blog__contents__inner img {
  width: 100%;
}
.top-contents_blog__title {
  color: #333;
  font-size: 1.2rem;
  text-align: left;
}
.top-contents_blog__contents__inner__border {
  width: 300px;
  height: 1.5px;
  background-color: #f5f5f5;
  margin: 5px auto;
}
.top-contents_blog__date {
  color: #333;
  font-size: 0.5rem;
  text-align: left;
  display: inline-block;
  position: absolute;
  left: 20px;
}
.top-contents_blog__contents__more {
  width: 80px;
  height: 20px;
  border: 1px solid #a9a9a9;
  border-radius: 5px;
  display: inline-block;
  position: absolute;
  right: 10px;
}
.top-contents_blog__contents__more a {
  display: inline-block;
  font-size: 0.6rem;
  color: #333;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.top-contents_blog__contents__all-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media(min-width:1160px) {
  .top-contents_blog {
    width: 100%;
    background-color: #f5f5f5;
    padding-bottom: 60px;
  }
  .top-contents_blog__contents {
    max-width: 550px;
    width: 100%;
    height: 400px;
  }
  .top-contents_blog__flex {
    display: flex;
    justify-content: center;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
  }
  .top-contents_blog__title {
    color: #333;
    font-size: 1.4rem;
    text-align: left;
  }
  .top-contents_blog__contents__inner__border {
    width: 500px;
    height: 1px;
    margin: 8px auto;
  }
  .top-contents_blog__date {
    font-size: 0.8rem;
  }
}
/*会員登録*/
.top-contents_member {
  width: 100%;
  height: 360px;
}
.top-contents_member__bg {
  background-color: rgba(0, 0, 0, 0.8);
  height: 360px;
}
.top-contents_member__contents {
  max-width: 335px;
  width: 100%;
  margin: 0 auto;
}
.top-contents_member__contents h1 {
  padding-top: 60px;
  color: #fff;
}
.h1-border_member {
  width: 80px;
  height: 0.5px;
  background-color: #fff;
  margin: 10px auto 30px auto;
}
.pc-only {
  display: none;
}
.top-contents_member__contents p {
  font-weight: 200;
  padding-bottom: 20px;
  color: #fff;
  font-size: 1.3rem;
}
.top-contents_member__more {
  width: 340px;
  height: 50px;
  border: 1px solid #fff;
  margin: 30px auto;
}
.top-contents_member__more a {
  display: inline-block;
  text-decoration: none;
  line-height: 50px;
  color: #fff;
}
@media(min-width:1160px) {
  .pc-only {
    display: block;
  }
  .top-contents_member {
    height: 360px;
  }
  .top-contents_member__bg {
    height: 360px;
  }
  .top-contents_member__contents {
    max-width: 1140px;
  }
}
/*卸*/
.top-contents_wholesale {
  width: 100%;
  height: 360px;
}
.top-contents_wholesale__contents {
  max-width: 335px;
  width: 100%;
  margin: 0 auto;
}
.top-contents_wholesale__contents h1 {
  padding-top: 60px;
}
.top-contents_wholesale__contents p {
  font-weight: 200;
  padding-bottom: 20px;
  font-size: 1.3rem;
}
.top-contents_wholesale__more {
  width: 340px;
  height: 50px;
  border: 1px solid #333;
  margin: 30px auto;
}
.top-contents_wholesale__more a {
  display: inline-block;
  text-decoration: none;
  line-height: 50px;
}
@media(min-width:1160px) {
  .top-contents_wholesale__contents {
    max-width: 1140px;
  }
}