@charset "UTF-8";

/*
-----------------------------*/
.solrbar {
    display:none;
}

#contents {
	width: 100%;
	padding: 0;
	margin: 0;
	background:#000;
	overflow-y: hidden;
	overflow-x: hidden;
}

/*
----------------------------------*/

.section_mainbanner:before {
  content: "";
  display: block;
  padding-top: 50%;
}

@media screen and (max-width: 1000px) {
  .section_mainbanner:before {
      content: "";
      display: block;
      padding-top: 133.33333%;
  }
}

.mainbanner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.mainbanner {
  width:100%;
  height:auto;
}

.mainbanner_pc,
.mainbanner_sp {
  display:none;
}

@media screen and (min-width: 1001px) {
  .mainbanner_pc {
      display:block;
  }
}

@media screen and (max-width: 1000px) {
  .mainbanner_sp {
      display:block;
  }
}

/*
------------------------------------------*/
.section_top {
    padding: 100px 0;
}

.lead {
    color: #fff;
    width: 528px;
    margin: 0 auto;
    max-width: 90%;
    line-height: 1.75em;
    font-size: 16px;
}

.lead {
  position:relative;
}


@media screen and (min-width: 1001px) {
  .lead:before {
      content:"”";
      color:#fff;
      font-size: 48px;
      position:absolute;
      top: calc(50% + -50px);
      left: -100px;
      width: 17px;
      transform: rotate(180deg);
  }

  .lead:after {
      content:"”";
      color:#fff;
      font-size: 48px;
      position:absolute;
      top: calc(50% - 25px);
      right: -100px;
      width: 17px;
  }

}

@media screen and (max-width: 1000px) {
  .lead:before {
      content:"”";
      color:#fff;
      font-size: 64px;
      position:absolute;
      top: -100px;
      left: calc(50% - 50px);
      width: 50px;
      transform: rotate(180deg);
  }

  .lead:after {
      content:"”";
      color:#fff;
      font-size: 64px;
      position:absolute;
      bottom: -100px;
      left: calc(50% - 25px);
      width: 50px;
  }
}

@media screen and (max-width: 1000px) {
	.lead {
	    font-size: 15px;
	}
}

/*
------------------------------------------*/

.product_list {
  display: grid;
  /* grid-row-gap: 1px; */
  grid-column-gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  /* border: 1px solid #fff; */
  background: #fff;
  border-top: 1px solid #FFF;
}

@media screen and (max-width: 1000px) {
	.product_list {
		/* grid-row-gap: 1px; */
		/* grid-column-gap: 2px; */
		grid-template-columns: repeat(2, minmax(0, 1fr))!important;
	}
}

@media screen and (min-width: 1080px) {
	.product_list {
		grid-template-columns: repeat(4, minmax(0, 1fr))!important;
	}
}

.product_item_image {
    width: 100%;
    height: auto;
}

.product_item_image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.product_photo {
	position:relative;
}

.product_photo:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.product_item {
  cursor: pointer;
  background: #000;
}

.product_item_inner {
  position: relative;
}

.product_brand_logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 84px;
  height: 55px;
  z-index: 100;
}

.product_brand_logo svg {
    fill: #fff;
}

.product_brand_gender {
  position: absolute;
  color: #fff;
  bottom: 20px;
  left: 20px;
  z-index: 100;
  font-size: 12px;
  letter-spacing: 0;
}

.product_info {
	opacity: 1;
	transition: opacity .3s;
	display: flex !important;
	justify-content: center;
	flex-flow: column;
	flex-wrap: wrap;
	gap: 10px 0;
	justify-content: center;
	position: absolute;
	top: 0;
	bottom:0;
	left:0;
	right:0;
	width: 100%;
	height: 100%;
	/* background: rgba(26,26,26,0.4); */
	/*z-index: 99;*/
	cursor: pointer;
  border-bottom: 1px solid #FFF;
}

.product_info:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.maskTrigger .imageBox:hover .product_info_item{
  /* width: auto; */
}

@media screen and (min-width: 1000px) {
  .maskTrigger .imageBox:hover .product_info_item  {
      border: 1px solid #FFF;
      padding: 20px 30px;
      border-radius: 50px;
      width: 243px;
  }
}

.product_item_inner:hover .list-button {
  opacity: 1;
}

.product_item_inner.opened:hover .list-button .list-button__item {
  opacity: 1;
}

.product_item_inner:hover .list-button .list-button__item {
  opacity: 0;
}

.product_item_inner:hover .list-button_arrow {
  opacity: 1;
  display: block;
  bottom: 5px;
  height: 30px;
  position: absolute;
  right: 17px;
}

.product_item_inner:hover .list-button_arrow::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
}

.product_item_inner:hover .list-button_arrow::before {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}

.product_item_inner.opened:hover .list-button_arrow {
  opacity: 0;
}

.product_item_inner.opened:hover .list-button {
  opacity: 1;
}

.product_info_list {
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    gap: 10px 0;
    justify-content: center;
    /* align-items: center; */
    /* height: 100%; */
    /* max-width: 200px; */
    margin: 0 auto;
    /* padding: 0 20px; */
    text-align: center;
    max-inline-size: max-content;
    margin-inline: auto;
}

.product_info_item {
    display: inline-block;
    text-align: left;
    line-height: 1.14em;
    width: 172px;
    font-size: 14px;
    text-align: center;
    /* padding: 0 30px; */
    -webkit-transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

@media screen and (min-width: 1001px) {
	.product_info_item {
		width: 243px;
	}
}
.product_info_link {
    color: #fff;
    /* text-decoration: underline; */
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0em;
}

.product_info_link:hover {
    color: #fff;
    opacity: 0.5;
}

.product_item_inner.opened .product_info_item {
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  width: auto;
}


@media screen and (min-width: 1001px) {
	.product_item_inner.opened .product_info_item {
	  /* width: auto; */
	  background: #fff;
	  padding: 20px 30px;
	  border-radius: 50px;
	  width: 243px;
	}
}

.product_item_inner.opened .product_info {
    background: rgba(26, 26, 26, 0.4);
    /* border-bottom: none; */
}

.product_item_inner.opened .product_info_link {
    color:#000;
    /* background:#fff; */
    /* padding: 20px 30px; */
    /* border-radius: 50px; */
}

@media screen and (max-width: 1000px) {
  .product_brand_logo {
    top: 8px;
    left: 8px;
    width: 50px;
    height: auto;
  }

  .product_brand_gender {
    font-size: 9px;
    left: 8px;
    bottom: 10px;
  }

	.product_info_link {
	    font-size: 11px;
	}
	.product_item_inner.opened .product_info_link {
	    /* padding: 10px 20px; */
	}

  .maskTrigger .imageBox:hover .product_info_item .product_info_link {
    /* padding: 10px 20px; */
  }
}

/**************************/
.list-button {
	bottom: 10px;
	height: 30px;
	position: absolute;
	right: 10px;
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
	width: 30px;
	z-index: 99;
	background: rgba(0, 0, 0, 0.2);
	padding: 10px;
	border-radius: 50px;
	cursor: pointer;
	opacity:0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.list-button__item {
  background-color: #fff;
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  width: 20px;
}

.list-button__item:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg)
}

.product_item_inner.opened .list-button {
  /* opacity:1; */
}

/*
----------------------------------------------*/

.product_detail {
	display: none;
	position: absolute;
	width: calc((100% * 3) + 3px);
	left: 0;
	right: 0;
	/* top: calc(444px + 2px); */
	/* bottom: 0; */
	z-index: 1000;
	background: #000;
	/* border-top: 1px solid #fff; */
	/* border-bottom: 1px solid #fff; */
	height:0;
	/* overflow-y: hidden;
	overflow-x: hidden; */
}

.product_item_inner.opened .product_detail {
  height:auto;
  z-index: 1;
  border-top: 1px solid #fff;
  display: block;
}

.product_detail_inner {
  display: grid;
  /* grid-row-gap: 1px; */
  grid-column-gap: 0px;
  grid-template-columns: calc(50% - 1px ) calc(50% - 80px) 80px;
  width: 100%;
  background: #000;
  position: relative;
  /* border-top: 1px solid #fff; */
  border-bottom: 1px solid #FFF;
}

@media screen and (max-width: 1000px) {
	.product_detail_inner {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
        border-top: none;
        border-bottom: none;
	}

	.product_detail {
		width: calc((100% * 2) + 3px);
    border-top: none;
	}
}

@media screen and (min-width: 1080px) {
	.product_detail {
		width: calc((100% * 4) + 5px);
	}
}

@media screen and (min-width: 1000px) {
  .product_top_btn {
    position: absolute;
  }
  .product_top_btn .product_close {
    display: none;
    border: none;
  }
}

@media screen and (max-width: 1000px) {
	.product_top_btn {
	    position: absolute;
	    top: 0px;
	    width: 100%;
	    display: flex;
	    justify-content: space-between;
	}

	.product_item_inner.opened .product_top_btn.fixed {
		position: fixed;
		top: 47px;
		z-index: 100;
		width: calc(100% + 1px);
		/* left: 0; */
		right: -1px;
	}

	.product_item_inner.opened .product_top_btn.fixed .product_buy_link{
		background:#000;
	}

	.product_item_inner.opened .product_top_btn.fixed .product_detail_close{
		background:#000;
	}

  .product_item_inner.opened .list-button {
      bottom: 0px;
      right: 0;
  }
}

.product_buy_link {
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    border-radius: 20px;
    letter-spacing: 0;
}

.product_buy {
    padding: 30px 20px;
}

.product_close {
	/* bottom: 10px;
	height: 30px; */
	position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
/* top:20px;
	right: 10px; */
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
	width: 50px;
	z-index: 99;
	background: rgba(0, 0, 0, 0.2);
	padding: 10px;
	border-radius: 50px;
	cursor: pointer;
	opacity:1;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (max-width: 1000px) {
	.product_detail_close {
	    width: 50px;
      height: 50px;
      border-left: 1px solid #FFF;
	}

  .detail_info {
    border-top: 1px solid #FFF;
  }

  .detail_info_list .detail_info_item._bdname {
    margin-bottom: 5px;
  }

  .detail_info_list .detail_info_item._name {
    margin-bottom: 15px;
  }

  .product_buy {
    position: relative;
    top: 15px;
    left: 10px;
    padding: 0;
  }

  .product_buy_link {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 26px;
  }
}

.close__item {
  background-color: #fff;
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  width: 40px;
}

.close__item:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg)
}

@media screen and (max-width: 1000px) {
  .close__item {
    width: 22px;
  }
}

.detail_main_image {
  width: 100%;
  height: auto;
}

.detail_image {
  width: 100%;
  height: auto;
}



.detail_main {
  /* border-top: 1px solid #fff; */
  border-right: 1px solid #fff;
}

.detail_sub {
      /* border-top: 1px solid #fff; */
      border-right: 1px solid #fff;
}

.detail_info {
    color: #fff;
    padding: 50px;
}

.detail_photo_text {
    color: #fff;
    padding: 20px 20px 45px 20px;
    line-height: 1.5;
    font-size: 16px;
}

.detail_photo {
    border-top: 1px solid #fff;
    /* border-bottom: 1px solid #fff; */
}

.detail_info_list {
	display: flex;
	flex-flow: column;
	flex-wrap: wrap;
	/* gap: 10px 0; */
	justify-content: center;
	/* align-items: center; */
	/* height: 100%; */
	/* max-width: 200px; */
	margin: 0 auto;
	/* padding: 0 20px; */
	text-align: left;
	/* max-inline-size: max-content; */
	/* margin-inline: auto; */
}

.detail_info_list .detail_info_item._bdname {
  font-size: 12px;
  line-height: 1.2em;
  letter-spacing: 0;
}

.detail_info_list .detail_info_item._name {
  font-size: 30px;
  line-height: 1.06em;
  padding: 10px 0;
  letter-spacing: 0;
}

.detail_info_list .detail_info_item._name ._gender {
  font-size: 21px;
  line-height: 1.5em;
  padding-left: 10px;
  letter-spacing: 0;
}

.detail_info_list .detail_info_item._name_kana {
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0;
}

.detail_info_list .detail_info_item._price {
  font-size: 12px;
  line-height: 2.1em;
  letter-spacing: 0;
}

.styling_photo:before {
  content: "";
  display: block;
  padding-top: 125%;
}

.styling_image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.styling_image {
    width:100%;
    height:auto;
}

.styling_text {
	color: #fff;
	line-height: 1.5;
	padding: 20px 20px 40px;
	font-size: 16px;
	cursor: auto;
}

.styling_text .styling_text_model {
  font-size: 12px;
}

.styling_photo {
    position: relative;
    border-top: 1px solid #fff;
}

a.credit_link {
    display: block;
    color: #fff;
    /* text-decoration: underline; */
    /* text-decoration-thickness: 2px; */
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
}

a.credit_link:hover {
  opacity: 0.5;
}

.styling_credit_list {
    /*position: absolute;
    bottom: 20px;
    left: 20px;**/
    display: flex;
    flex-flow: column;
    gap: 10px 0;
}

.styling_credit_list .styling_credit_item .credit_name {
  font-size: 14px;
  line-height: 1.0em;
  padding-bottom: 0;
  letter-spacing: 0;
  /* border-bottom: 1px solid #fff; */
}

.styling_credit_item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;    
}

.styling_credit_list.top .styling_credit_item:first-child {
  padding-bottom: 25px;
}

.styling_credit_list.top .styling_credit_item:first-child .credit_name {
  font-size: 24px;
  line-height: 1.0em;
  letter-spacing: 0;
  padding-bottom: 0;
}

.styling_credit_list .credit_price {
    font-size: 11px;
    line-height: 1.0em;
    letter-spacing: 0;
    /* border-bottom: 1px solid #fff; */
}

.styling_credit_list .styling_credit_item .credit_link {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  cursor: pointer;
}

.paging_pc {
	display:block;
}

.paging_sp {
    display: none;
}

@media screen and (max-width: 1000px) {
    .paging_sp {
        display: none;
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #000;
        -webkit-transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
        transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    }

	.paging_pc {
		display:none;
	}

	.product_item_inner.opened .paging_sp {
	    display:flex;
      height: 60px;
	}
}

.product_detail_close {
  position: relative;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 1000px) {
	.product_top_btn .product_detail_close {
	    border-bottom: none;
	}
}

@media screen and (max-width: 1000px) {
	.product_detail_close {
	    width: 50px;
      height: 50px;
      border-left: 1px solid #FFF;
	}
}

.product_detail_pager {
  display: flex;
}

.product_detail_pager_prev,
.product_detail_pager_next {
    position:relative;
    width: 40px;
    height: 80px;
    /* border: 1px solid #fff; */
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}

.product_detail_pager_prev:after {
    content: "";
    display: block;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 12px;
    bottom: 0;
    left: 6px;
    margin: auto 0;
    transform: rotate(-135deg);
    transition: transform 0.3s ease;
    transform-origin: 75% 25%;
}

.product_detail_pager_next:after {
    content: "";
    display: block;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 12px;
    bottom: 0;
    left:6px;
    scroll-margin-right: 6px;
    margin: auto 0;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    transform-origin: 75% 25%;
}


.product_detail_pager_name {
    width: calc(100% - 80px);
    border: 1px solid #fff;
    color:#fff;
    text-align:center;
    font-size: 20px;
    /* line-height: 50px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1000px) {
  .product_detail_pager_name {
    font-size: 11px;
  }

  .product_detail_pager_prev,
  .product_detail_pager_next {
    height: 60px;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 0;
  }

  .product_detail_pager_prev,
  .product_detail_pager_next {
      border-right: none;
  }

  }

.product_detail_pager {
    display: flex;
}

.product_detail_name {
    color: #fff;
    font-size:14px;
    height: 560px;
    width: 100%;
    writing-mode: vertical-lr;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0;
}

.detail_styling_list .slick-dots{
  width: 12px;
  bottom: 14%;
  right: 25px;
  transform: translateY(-50%);
}

.detail_styling_list .slick-dots li.slick-active button:before {
  color: #FFF;
  background-color: #FFF;
  border-radius: 50px;
  opacity: 1;
}

.detail_styling_list .slick-dots li button:before {
    border: 1px solid #FFF;
    border-radius: 50px;
    width: 12px;
    height: 12px;
    font-size: 0;
}

.detail_styling_list .slick-dots li {
    height: 12px;
    width: 12px;
}

.detail_styling_list .slick-dots li:first-child {
  margin-bottom: 10px;
}

.detail_styling_list.slick-vertical .detail_styling_item.slick-slide {
  border: none;
}

/*
--------------------------------------*/
.srction_bottom {
    padding: 100px 0;
}

.viewall_btn {
    text-align: center;
}

.viewall_btn_link {
    display: inline-block;
    color: #fff;
    border-radius: 50px;
    border: 1px solid #fff;
    padding: 16px;
    font-size: 24px;
    letter-spacing: -0.04em;
    width: 300px;
}

/*
---------------------------------------*/
.maskTrigger {
  position: relative;
  /* background: #000; */
  /* border-bottom: 1px solid #fff; */
}

.maskTrigger:after {
  content:"";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #1e1e1e;
  z-index: 100;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform, animation, position;
  -webkit-transition: width 0.8s cubic-bezier(0.32, 0, 0.67, 0);
  transition: width 0.8s cubic-bezier(0.32, 0, 0.67, 0);
}


.maskTrigger.mask-image:after {
  width: 0;
  left: 0;
}

.maskTrigger.show-image:after {
  width: 0;
  right: 0;
  left: inherit;
  /* opacity: 1; */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform, animation, position;
  -webkit-transition: width 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition: width 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.maskTrigger.mask-image .imageBox {
  /* visibility: hidden; */
  opacity: 0;
}

.maskTrigger.show-image .imageBox {
  opacity: 1;
  -webkit-transform: scale(1.0);
  transform: scale(1.0);
}
.maskTrigger .imageBox {
  opacity: 0;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-transition: opacity 0.8s, transform 1.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 0.8s, transform 1.4s cubic-bezier(0.33, 1, 0.68, 1);
}

/*
--------------------------------*/
.section_titilelog {
    width: 425px;
    margin: 0 0 40px 30px;
}

.titlelogo_image {
    width:100%;
    height:auto;
}

@media screen and (max-width: 1000px) {
  .section_titilelog {
    width: 100%;
    margin: 0;
    margin-bottom: 60px;
    padding: 0 28px;
  }
}

.styling_title {
    font-size: 11px;
    margin-bottom: 5px;
}

.detail_photo_text_link {
    color: #fff;
    text-decoration: underline;
}
