@charset "utf-8";
/* CSS Document */


/* #product_list_wrap
----------------------------------------- */
#product_list_wrap {
}

#product_list_wrap .inner {
    padding: 0;
    padding-top: 6rem;
    padding-bottom: 20rem;
    display: flex;
    flex-flow: column;
    grid-row-gap: 20rem;
}
#product_list_wrap.other .inner {
    padding-top: 6rem;
}
#product_list_wrap.other h3.ttl {
    display: flex;
    align-items: center;
    column-gap: 3rem;
}
#product_list_wrap.other h3.ttl img {
    width: auto;
    height: 2.58rem
}

#product_list_wrap .product_cat {
}
#product_list_wrap .product_cat .ttl_wrap {
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
}
#product_list_wrap .product_cat .ttl_wrap .ttl a {
    display: flex;
    flex-flow: column;
    gap: 1.5rem;
    
    font-size: 3.3rem;
    letter-spacing: 0.065em;
    font-weight: 200;
    line-height: 1;
}
#product_list_wrap .product_cat .ttl_wrap.season .ttl a {
    flex-flow: row;
    align-items: baseline;
}
#product_list_wrap .product_cat .ttl_wrap .ttl a::after {
    content: '';
    display: block;
    width: 5.2rem;
    height: 0.8rem;
    background: url("../images/arrow.svg") no-repeat bottom right / auto;
    transition: all .6s;
}
#product_list_wrap .product_cat .ttl_wrap .ttl a:hover::after {
    transform: translateX(0.5rem);
}

#product_list_wrap .product_cat .ttl_wrap .desc {
    display: flex;
    gap: 0 8rem;
}
#product_list_wrap .product_cat .ttl_wrap .desc h3.ttl {
    font-size: 1.5rem;
    letter-spacing: 0;
    font-weight: 400;
    line-height: 1.2;
}
#product_list_wrap .product_cat .ttl_wrap .desc .txt {
    font-size: 1.3rem;
    letter-spacing: 0;
    line-height: calc(21 / 13);
    font-weight: 400;
}
#product_list_wrap .product_cat .ttl_wrap .desc .txt p:not(:first-child) {
    margin-top: 0.5em;
}

#product_list_wrap .product_cat .more_btn {
    margin-top: 3rem;
    padding: 0 2rem;
}
#product_list_wrap .product_cat .more_btn a {
    display: flex;
    align-items: baseline;
    column-gap: 1rem;
    
    font-size: 1.7rem;
    letter-spacing: 0.065em;
    line-height: 1;
    font-weight: 400;
}
#product_list_wrap .product_cat .more_btn a::after {
    content: '';
    display: block;
    width: 5.2rem;
    height: 0.8rem;
    background: url("../images/arrow.svg") no-repeat bottom right / auto;
    transition: all .6s;
}
#product_list_wrap .product_cat .more_btn a:hover::after {
    transform: translateX(0.5rem);
}


#product_list_wrap .product_list {
	width: 100%;
	display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
    margin-top: 2rem;
}
#product_list_wrap .product_list.top {
	grid-template-columns: repeat(1,100%);
    gap: 1rem 0;
}
#product_list_wrap .product_list > li {
}

#product_list_wrap .product_list > li > a {
	display: block;
}
#product_list_wrap .product_list .img_wrap {
	width: 100%;
    aspect-ratio: 652 / 670;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#product_list_wrap .product_list.top .img_wrap {
	width: 100%;
    aspect-ratio: 1316 / 670;
    position: relative;
    z-index: 1;
}
#product_list_wrap .product_list .img_wrap img {
	width: 100%;
    height: 112%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#product_list_wrap .product_list.top .img_wrap img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
#product_list_wrap .product_list .img_wrap::after {
    content: '';
	width: 100%;
    height: 100%;
    background: #C5C5C4;
    background: linear-gradient(180deg, rgba(197, 197, 196, 0.05) 25%, rgba(35, 24, 21, 0.05) 100%);
    
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
#product_list_wrap .product_list .img_wrap .ttl {
    font-size: 1.4rem;
    letter-spacing: 0.065em;
    line-height: 1;
    font-weight: 200;
    
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 3;
}

#product_list_wrap .slider {
    width : 100%;
    position: relative;
    z-index: 1;
}

#product_list_wrap .slider a {
  display: block;
}

#product_list_wrap .slider div.slide_wrap {
  display: block;
  width: 100%;
  padding-top: 112.0689%;
  margin: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#product_list_wrap .color_list {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    z-index: 3;
}
#product_list_wrap .color_list .color_wrap {
	width: 0.7rem;
	height: 0.7rem;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}
#product_list_wrap .color_list .color_wrap:not(:last-child) {
	margin-right: 1rem;
}

#product_list_wrap .color_list .color_wrap::after {
    content: "";
    display: block;
    width: 1.3rem;
	height: 1.3rem;
    border: 0.1rem solid #dbdcdc;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	opacity: 0;
    -webkit-transition: all .6s;
    transition: all .6s;
}
#product_list_wrap .color_list .color_wrap.thumb-media-active::after {
	opacity: 1;
}
#product_list_wrap .color_list .color_wrap:hover::after {
	opacity: 1;
}


@media screen and (max-width: 768px) {
#product_list_wrap {
}

#product_list_wrap .inner {
    grid-row-gap: 10rem;
    padding-top: 3rem;
    padding-bottom: 6rem;
}
#product_list_wrap.other .inner {
    padding-top: 6rem;
}
#product_list_wrap.other h3.ttl {
    column-gap: 2rem;
}
#product_list_wrap.other h3.ttl img {
    width: auto;
    height: 1.4rem
}
    
  
#product_list_wrap .product_cat .ttl_wrap {
    padding: 0;
    flex-flow: column;
    gap: 2.5rem 0;
}
#product_list_wrap .product_cat .ttl_wrap .ttl a {
    flex-flow: row;
    align-items: baseline;
    gap: 0.8rem;
    font-size: 2.6rem;
}
#product_list_wrap .product_cat .ttl_wrap .ttl a::after {
    width: 3.0rem;
    height: 0.7rem;
}
#product_list_wrap .product_cat .ttl_wrap .ttl a img {
    width: auto;
    height: 2rem;
}
    
#product_list_wrap .product_cat .ttl_wrap .desc {
    flex-flow: column;
    gap: 1.5rem 0;
}
#product_list_wrap .product_cat .ttl_wrap .desc h3.ttl {
    font-size: 1.5rem;
}
#product_list_wrap .product_cat .ttl_wrap .desc .txt {
    font-size: 1.2rem;
}
    
#product_list_wrap .product_list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
    margin-top: 1.5rem;
}
    
#product_list_wrap .product_list .img_wrap .ttl {
    font-size: 1.0rem;
    bottom: 1rem;
    left: 1rem;
}
    
#product_list_wrap .product_list.top .img_wrap {
	width: 100%;
    aspect-ratio: 345 / 390;
    position: relative;
    z-index: 1;
}
#product_list_wrap .product_list.top .img_wrap img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
    
#product_list_wrap .product_cat .more_btn {
    margin-top: 2rem;
    padding: 0;
}
#product_list_wrap .product_cat .more_btn a {
    column-gap: 0.8rem;
    font-size: 1.4rem;
}
#product_list_wrap .product_cat .more_btn a::after {
    width: 3.0rem;
    height: 0.7rem;
}
    
}



/* #product_single_wrap
----------------------------------------- */
#product_single_wrap {
}

#product_single_wrap .inner {
    padding-bottom: 6rem;
}

#product_single_wrap .layout {
    position: relative;
    z-index: 1;
}
#product_single_wrap .main_img_wrap {
    position: relative;
    z-index: 1;
}
#product_single_wrap h1.ttl {
    font-size: 2rem;
    letter-spacing: 0.045em;
    line-height: 1;
    
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    grid-row-gap: 1rem;
    
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    z-index: 2;
}
#product_single_wrap h1.ttl img {
    width: auto;
    height: 2.1rem
}

#product_single_wrap .slider {
    width: 100%;
    margin-left: 0;
    position: relative;
    z-index: 1;
}

#product_single_wrap .slider a {
  display: block;
}

#product_single_wrap .slider div.slide_wrap {
    display: block;
    width: 100%;
    aspect-ratio: 1316 / 670;
    margin: 0;
    
    position: relative;
    z-index: 1;
}
#product_single_wrap .slider div.slide_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#product_single_wrap .slider div.slide_wrap::after {
    content: '';
    width: 100%;
    height: 100%;
    background: #C5C5C4;
    background: linear-gradient(180deg, rgba(197, 197, 196, 0.05) 25%, rgba(35, 24, 21, 0.05) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
#product_single_wrap .swiper-button-next:after,
#product_single_wrap .swiper-button-prev:after {
    display: none;
}
#product_single_wrap .swiper-button-next,
#product_single_wrap .swiper-button-prev {
}
#product_single_wrap .swiper-button-prev {
    left: 2rem;
    right: auto;
}
#product_single_wrap .swiper-button-next {
    right: 2rem;
    left: auto;
}

#product_single_wrap .swiper-button-next.swiper-button-disabled,
#product_single_wrap .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

#product_single_wrap .name_wrap {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    z-index: 2;
}
#product_single_wrap .award {
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
    margin-bottom: 1rem;
}
#product_single_wrap .award img {
    height: 5rem;
    width: auto;
}

#product_single_wrap .layout .name {
    font-size: 1.6rem;
    letter-spacing: 0.065em;
    line-height: calc(25 / 16);
    font-weight: 200;
    
    display: flex;
    flex-wrap: wrap;
    gap: 0 1em;
}
#product_single_wrap .layout .name span {
    font-size: 1.4rem;
}

#product_single_wrap .info_wrap {
    position: absolute;
    z-index: 2;
    bottom: 2rem;
    right: 2rem;
    
    display: flex;
    flex-flow: column;
    align-items: flex-end;
}

#product_single_wrap .info_wrap .cut_img_wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /*column-gap: 0.6rem;*/
}

#product_single_wrap .info_wrap .cut_img_wrap .cut_img {
    display: flex;
    width: 5rem;
}
#product_single_wrap .info_wrap .cut_img_wrap .cut_img:not(:last-child) {
    margin-right: 0.6rem;
}
#product_single_wrap .info_wrap .cut_img_wrap .cut_img .img {
    display: flex;
    width: 100%;
    align-items: center;
    aspect-ratio: 50 / 51;
    margin: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#product_single_wrap .info_wrap .cut_img_wrap .cut_img .img img {
    width: 100%;
    /*height: 100%;*/
    height: 112%;
    object-fit: cover;
}
#product_single_wrap .info_wrap .cut_img_wrap .cut_img .img::after {
    content: '';
    width: 100%;
    height: 100%;
    background: #C5C5C4;
    background: linear-gradient(180deg, rgba(197, 197, 196, 0.05) 25%, rgba(35, 24, 21, 0.05) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

#product_single_wrap .info_wrap .color_wrap {
    width: 100%;
    max-width: 55.5rem;
    margin-top: 1.2rem;
    position: relative;
}
#product_single_wrap .info_wrap .slider-color {
    overflow: hidden;
}
#product_single_wrap .info_wrap .color_img_wrap {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    /*justify-content: flex-end;*/
    /*column-gap: 0.6rem;*/
}
#product_single_wrap .info_wrap .color_img_wrap .color_img {
    display: flex;
    width: 5rem;
}
#product_single_wrap .info_wrap .color_img_wrap .color_img:not(:last-child) {
    margin-right: 0.6rem;
}
#product_single_wrap .info_wrap .color_img_wrap .color_img .img {
    display: flex;
    align-items: center;
    width: 100%;
    aspect-ratio: 50 / 51;
    margin: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#product_single_wrap .info_wrap .color_img_wrap .color_img .img img {
    width: 100%;
    /*height: 100%;*/
    height: 112%;
    object-fit: cover;
}
#product_single_wrap .info_wrap .color_img_wrap .color_img .img::after {
    content: '';
    width: 100%;
    height: 100%;
    background: #C5C5C4;
    background: linear-gradient(180deg, rgba(197, 197, 196, 0.05) 25%, rgba(35, 24, 21, 0.05) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
#product_single_wrap .info_wrap .color_wrap .swiper-button-next,
#product_single_wrap .info_wrap .color_wrap .swiper-button-prev {
    width: 0.6rem;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#product_single_wrap .info_wrap .color_wrap .swiper-button-prev {
    left: -1.2rem;
    right: auto;
}
#product_single_wrap .info_wrap .color_wrap .swiper-button-next {
    right: -1.2rem;
    left: auto;
}

#product_single_wrap .info_wrap .color_wrap.no-swiper .swiper-button-next,
#product_single_wrap .info_wrap .color_wrap.no-swiper .swiper-button-prev {
  display: none;
}


#product_single_wrap .spec_wrap {
    width: 100%;
    padding-top: 2rem;
    padding-left: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}
#product_single_wrap .spec_wrap .spec_table {
    font-size: 1.2rem;
}
#product_single_wrap .spec_wrap .spec_table th {
    white-space: nowrap;
    font-weight: normal;
    padding-right: 2rem;
}

#product_single_wrap .pagenavi {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 2.5rem;
}
#product_single_wrap .pagenavi li {
}
#product_single_wrap .pagenavi li a {
    display: flex;
}
#product_single_wrap .pagenavi li span {
	font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.065em;
    font-weight: 400;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
#product_single_wrap {
}

#product_single_wrap .inner {
    padding-bottom: 6rem;
}

#product_single_wrap .layout {
    position: relative;
    z-index: 1;
}

#product_single_wrap h1.ttl {
    font-size: 2rem;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    z-index: 2;
}
#product_single_wrap h1.ttl img {
    width: auto;
    height: 1.25rem;
}
    
#product_single_wrap .slider div.slide_wrap {
    aspect-ratio: 345 / 390;
}

#product_single_wrap .name_wrap {
    bottom: 1rem;
    left: 1.5rem;
}
#product_single_wrap .award {
    column-gap: 1rem;
    margin-bottom: 1rem;
}
#product_single_wrap .award img {
    height: 2.8rem;
    width: auto;
}
    
#product_single_wrap .layout .name {
    font-size: 1.3rem;
    flex-flow: column;
    gap: 0;
}
#product_single_wrap .layout .name span {
    font-size: 1.2rem;
}
        
#product_single_wrap .info_wrap {
    position: relative;
    bottom: auto;
    right: auto;
    
    width: 30rem;
    margin: auto;
    margin-top: 2rem;
    
    align-items: flex-start;
}
    
#product_single_wrap .main_img_wrap .swiper-button-prev {
    display: none;
}
#product_single_wrap .main_img_wrap .swiper-button-next {
    display: none;
}
    
    
#product_single_wrap .info_wrap .cut_img_wrap {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    justify-content: space-between;
    column-gap: 0.6rem;
}

#product_single_wrap .info_wrap .cut_img_wrap .cut_img {
    width: 4.5rem;
}
#product_single_wrap .info_wrap .cut_img_wrap .cut_img:not(:last-child) {
    margin-right: 0;
}

    
#product_single_wrap .info_wrap .color_wrap {
    margin-top: 1.8rem;
}
#product_single_wrap .info_wrap .slider-color {
    overflow: hidden;
}
#product_single_wrap .info_wrap .color_img_wrap {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    /*justify-content: flex-end;*/
    /*column-gap: 0.6rem;*/
}
#product_single_wrap .info_wrap .color_img_wrap .color_img {
    display: flex;
    width: 4.5rem;
}
#product_single_wrap .info_wrap .color_img_wrap .color_img:not(:last-child) {
    margin-right: 0.6rem;
}
    
    
#product_single_wrap .spec_wrap {
    width: 100%;
    padding-top: 2rem;
    padding-left: 0;
    margin-top: 1.5rem;
    flex-flow: column;
    align-items: flex-start;
    gap: 4rem 0;
    position: relative;
}
/*#product_single_wrap .spec_wrap::before {
    content: '';
    display: block;
    width: 100vw;
    height: 1px;
    background-color: #989899;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: -1.5rem;
}*/
#product_single_wrap .spec_wrap .spec_table {
    width: 30rem;
    margin: auto;
    font-size: 1.2rem;
}
#product_single_wrap .spec_wrap .spec_table th {
    white-space: nowrap;
    font-weight: normal;
    padding-right: 2rem;
}

#product_single_wrap .pagenavi {
}
	
#product_single_wrap .pagenavi li a {
	font-size: 1.4rem;
}
#product_single_wrap .pagenavi li a.btn span {
    font-size: 1.4rem;
}
    
}


/* pagenation
----------------------------------------- */
#pagenation {
	text-align: center;
    margin: 0 auto 8rem;
}
#pagenation #pagenation-list {
	display: inline-flex;
    align-items: center;
    justify-content: center;
}
#pagenation:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
#pagenation #pagenation-list li {
    margin-right: 10px;
	display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .8s;
    transition: all .8s;
}

#pagenation #pagenation-list li:last-child {
	margin-right: 0;
}

#pagenation #pagenation-list a,
#pagenation #pagenation-list span{
	font-size: 1.8rem;
	line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    -webkit-transition: all .8s;
    transition: all .8s;
}

#pagenation #pagenation-list a.num {
    border: 1px solid #E3E3E3;
    box-sizing: border-box;
    border-radius: 0;
    width: 35px;
    height: 35px;
}

/*#pagenation #pagenation-list a.next{
    background: url(../images/next_arrow.svg) no-repeat;
    background-size: cover;
    width: 23px;
    height: 25px;
    margin-left: 20px;
    margin-right: -80px;
    border-radius: 0;
    background-position: 0 center;
    -webkit-transition: all .8s;
    transition: all .8s;
}

#pagenation #pagenation-list a.next:hover {
	background-position: 5px center;
}


#pagenation #pagenation-list a.prev{
    background: url(../images/prev_arrow.svg) no-repeat;
    background-size: cover;
    width: 23px;
    height: 25px;
    margin-right: 20px;
    margin-left: -80px;
    border-radius: 0;
    background-position: 5px center;
    -webkit-transition: all .8s;
    transition: all .8s;
}

#pagenation #pagenation-list a.prev:hover {
	background-position: 0 center;
}*/


#pagenation #pagenation-list .current{
	color: #333333;
    background: #E3E3E3;
    border-radius: 0;
    width: 35px;
    height: 35px;
}

#pagenation #pagenation-list .omit{
	padding: 0 2px;
	color: #333333;
    width: 35px;
    height: 35px;
}

#pagenation #pagenation-list a.num:hover{
	color: #333333;
    background: #E3E3E3;
}

#pagenation #pagenation-list a.next:hover,
#pagenation #pagenation-list a.prev:hover {
    background-color: transparent;
	opacity: 0.6;  
    filter: alpha(opacity=60);  
	-ms-filter: "alpha( opacity=60 )";
}

#pagenation #pagenation-list li:hover .current,
#pagenation #pagenation-list li .prev,
#pagenation #pagenation-list li .next {
	border: none;
}

@media screen and (max-width: 768px) {
#pagenation {
    text-align: center;
    margin: 0px auto 0px;
}
}