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

/* #product_navi_wrap
----------------------------------------- */
#product_navi_wrap {
}

#product_navi_wrap .inner {
    padding-top: 12rem;
}
#product_navi_wrap .page_ttl {
    font-size: 1.8rem;
    line-height: 1;
}
#product_navi_wrap .product_navi_list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2rem;
    margin-top: 3rem;
}
#product_navi_wrap .product_navi_list a {
    padding: 0.6rem 1.5rem;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    column-gap: 1rem;
    
    font-size: 1.3rem;
    line-height: 1;
}
#product_navi_wrap .product_navi_list a.red-label,
#product_navi_wrap .product_navi_list a.black-label,
#product_navi_wrap .product_navi_list a.blue-label {
    color: #FFFFFF;
}
#product_navi_wrap .product_navi_list a.red-label #pd_svg .a,
#product_navi_wrap .product_navi_list a.black-label #pd_svg .a,
#product_navi_wrap .product_navi_list a.blue-label #pd_svg .a {
    fill:#FFFFFF;
}
#product_navi_wrap .product_navi_list a.accessories {
    border: 1px solid #000000;
    background-color: transparent !important;
}


@media screen and (max-width: 768px) {
#product_navi_wrap .inner {
    padding-top: 5rem;
}
#product_navi_wrap .page_ttl {
    font-size: 1.3rem;
}
#product_navi_wrap .product_navi_list {
    gap: 1rem;
    margin-top: 2rem;
}
#product_navi_wrap .product_navi_list a {
    padding: 0.6rem 1.5rem;
    font-size: 1.25rem;
}
}


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

#product_list_wrap .inner {
    padding: 0;
    padding-top: 18rem;
    padding-bottom: 18rem;
    display: flex;
    flex-flow: column;
    grid-row-gap: 20rem;
}

#product_list_wrap .product_cat {
    width: 100%;
}
#product_list_wrap .product_cat .ttl_layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}
#product_list_wrap .product_cat .ttl_layout .ttl_wrap {
    display: flex;
    flex-flow: column;
    gap: 4rem 0;
    padding-left: 2rem;
    position: relative;
}
#product_list_wrap .product_cat .ttl_layout .ttl_wrap .ttl {
    display: flex;
    flex-flow: column;
    gap: 1.5rem;
}
#product_list_wrap .product_cat .ttl_layout .ttl_wrap .ttl .color {
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 1rem;
    left: 0;
}
#product_list_wrap .product_cat .ttl_layout .ttl_wrap .ttl .name {
    display: block;
    
    font-size: 3rem;
    letter-spacing: -0.02em;
    line-height: 1;
}
#product_list_wrap .product_cat .ttl_layout .ttl_wrap .ttl .sub_ttl {
    display: block;
    
    font-size: 1.4rem;
    line-height: 1;
}

#product_list_wrap .product_cat .ttl_layout .ttl_wrap .desc .txt {
}
#product_list_wrap .product_cat .ttl_layout .ttl_wrap .desc .txt p:not(:first-child) {
    margin-top: 0.5em;
}


#product_list_wrap .product_cat .ttl_layout .btn_wrap .owlclassic svg {
    width: auto;
    height: 1.2rem;
    margin-left: 0.5em;
}


#product_list_wrap .product_list {
	width: 100%;
	display: grid;
    grid-template-columns: repeat(3,calc(340/1100*100%));
    gap: 9rem calc(40/1100*100%);
    margin-top: 6rem;
}
#product_list_wrap .product_list > li {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
}
#product_list_wrap .product_list > li > a {
	display: block;
}

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

#product_list_wrap .swiper-slide {
  width:auto;
}

#product_list_wrap .slider a {
  display: block;
}

#product_list_wrap .slider div.slide_wrap {
  display: block;
  width: 100%;
  aspect-ratio: 340 / 240;
  margin: 0;
}
#product_list_wrap .slider div.slide_wrap img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}

#product_list_wrap .color_list_wrap {
}
#product_list_wrap .color_list_wrap .ttl {
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
}
#product_list_wrap .color_list {
	display: flex;
    margin-top: 1rem;
}
#product_list_wrap .color_list .color_wrap {
	width: 1.8rem;
	height:1.8rem;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}
#product_list_wrap .color_list .color_wrap:not(:last-child) {
	margin-right: 1.5rem;
}

#product_list_wrap .color_list .color_wrap::after {
    content: "";
    display: block;
    width: 1.8rem;
	height:1.8rem;
    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;
}

#product_list_wrap .info_wrap {
    width : 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 2.5rem 0;
    margin-top: 2.5rem;
}
#product_list_wrap .info_wrap .ttl_wrap .ttl {
    font-size: 2rem;
    letter-spacing: -0.02em;
    text-align: center;
}
#product_list_wrap .info_wrap .price_wrap {
    line-height: 1;
}


#product_list_wrap .child_cat_wrap {
    width: 100%;
    margin-top: 8rem;
    display: flex;
    flex-flow: column;
    gap: 12rem 0;
}
#product_list_wrap .child_cat_wrap .child_cat_ttl {
    display: flex;
    align-items: baseline;
    column-gap: 2rem;
    
    line-height: 1;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #000000;
}
#product_list_wrap .child_cat_wrap .child_cat_ttl .fAbc {
    font-size: 1.7rem;
    letter-spacing: -0.02em;
}
#product_list_wrap .child_cat_wrap .product_list {
    margin-top: 4rem;
}


@media screen and (max-width: 768px) {
#product_list_wrap .inner {
    grid-row-gap: 12rem;
    padding-top: 6rem;
    padding-bottom: 8rem;
}   
  
#product_list_wrap .product_cat .ttl_layout {
    flex-flow: column;
    align-items: flex-start;
}
#product_list_wrap .product_cat .ttl_layout .ttl_wrap {
    gap: 2rem 0;
    padding-left: 0;
}
#product_list_wrap .product_cat .ttl_layout .ttl_wrap .ttl {
    display: flex;
    flex-flow: column;
    gap: 0.8rem;
    padding-left: 2rem;
}
#product_list_wrap .product_cat .ttl_layout .ttl_wrap .ttl .color {
    width: 0.6rem;
    height: 0.6rem;
    position: absolute;
    top: 0.65rem;
    left: 0;
}
#product_list_wrap .product_cat .ttl_layout .ttl_wrap .ttl .name {
    font-size: 2rem;
}
#product_list_wrap .product_cat .ttl_layout .ttl_wrap .ttl .name.owlclassic {
    margin-top: -0.3rem;
}
#product_list_wrap .product_cat .ttl_layout .ttl_wrap .ttl .name.owlclassic svg {
    width: 13rem;
    height: auto;
}
#product_list_wrap .product_cat .ttl_layout .ttl_wrap .ttl .sub_ttl {
    font-size: 1.2rem;
}

#product_list_wrap .product_cat .ttl_layout .ttl_wrap .desc .txt {
    font-size: 1.2rem;
}
#product_list_wrap .product_cat .ttl_layout .ttl_wrap .desc .txt p:not(:first-child) {
    margin-top: 0.5em;
}
    
#product_list_wrap .product_cat .ttl_layout .btn_wrap {
    margin-top: 2rem;
}



#product_list_wrap .product_list {
	width: 100%;
	display: grid;
    grid-template-columns: repeat(2,calc(150/325*100%));
    gap: 4rem calc(25/325*100%);
    margin-top: 5rem;
}

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

#product_list_wrap .swiper-slide {
  width:auto;
}

#product_list_wrap .slider a {
  display: block;
}

#product_list_wrap .slider div.slide_wrap {
  display: block;
  width: 100%;
  aspect-ratio: 340 / 240;
  margin: 0;
}
#product_list_wrap .slider div.slide_wrap img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}

#product_list_wrap .color_list_wrap {
}
#product_list_wrap .color_list_wrap .ttl {
    font-size: 1.2rem;
}
#product_list_wrap .color_list {
	display: flex;
    margin-top: 0.8rem;
}
#product_list_wrap .color_list .color_wrap {
	width: 1.25rem;
	height:1.25rem;
}
#product_list_wrap .color_list .color_wrap:not(:last-child) {
	margin-right: 1rem;
}

#product_list_wrap .color_list .color_wrap::after {
    width: 1.25rem;
	height:1.25rem;
}
#product_list_wrap .color_list .color_wrap.thumb-media-active::after {
	opacity: 1;
}
#product_list_wrap .color_list .color_wrap:hover::after {
	opacity: 1;
}

#product_list_wrap .info_wrap {
    gap: 1.5rem 0;
    margin-top: 1.5rem;
}
#product_list_wrap .info_wrap .ttl_wrap .ttl {
    font-size: 1.4rem;
    line-height: calc(22/14);
}
#product_list_wrap .info_wrap .price_wrap {
    line-height: 1;
}

#product_list_wrap .child_cat_wrap {
    margin-top: 5rem;
    gap: 5rem 0;
}
#product_list_wrap .child_cat_wrap .child_cat_ttl {
    display: flex;
    align-items: baseline;
    column-gap: 1.5rem;
    font-size: 1.2rem;
    line-height: 1;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #000000;
}
#product_list_wrap .child_cat_wrap .child_cat_ttl .fAbc {
    font-size: 1.4rem;
}
#product_list_wrap .child_cat_wrap .product_list {
    margin-top: 2rem;
}
    
}



/* #product_list_wrap.tax
----------------------------------------- */
#product_list_wrap.tax{
}

#product_list_wrap.tax .inner {
    padding: 0;
    padding-top: 10rem;
    padding-bottom: 18rem;
    display: flex;
    flex-flow: column;
    grid-row-gap: 20rem;
}
#product_list_wrap.tax .ttl_img {
    width: 100%;
    aspect-ratio: 1440 / 430;
}
#product_list_wrap.tax .ttl_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#product_list_wrap.tax .product_cat .ttl_layout {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
}
#product_list_wrap.tax .product_cat .ttl_layout .page_ttl {
    font-size: 1.8rem;
    line-height: 1;
}
#product_list_wrap.tax .product_cat .ttl_layout .ttl_wrap {
    display: flex;
    flex-flow: row;
    gap: 4rem 0;
    padding-left: 2rem;
    position: relative;
    margin-top: 4rem;
}
#product_list_wrap.tax .product_cat .ttl_layout .ttl_wrap .ttl {
    width: 36rem;
}
#product_list_wrap.tax .product_list {
    margin-top: 8rem;
}

#product_list_wrap.tax .point_list_wrap {
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 9rem 0;
}
#product_list_wrap.tax .point_list_wrap .point {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-left: 2.5rem;
    position: relative;
}
#product_list_wrap.tax .point_list_wrap .point::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #000000;
    transition: all .3s;
    
    position: absolute;
    top: 1rem;
    left: 0;
}
#product_list_wrap.tax .point_list_wrap .point .txt_wrap {
    width: calc(444 / 1100*100%);
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
#product_list_wrap.tax .point_list_wrap .point .img_wrap {
    width: calc(550 / 1100*100%);
}

#product_list_wrap.tax .point_list_wrap .point .txt_wrap .ttl {
    font-size: 1.6rem;
    line-height: calc(25/16);
}
#product_list_wrap.tax .point_list_wrap .point .txt_wrap .txt {
    margin-top: 2rem;
    text-align: justify;
}
#product_list_wrap.tax .point_list_wrap .point .txt_wrap .btn_wrap {
    margin-top: 2rem;
}
#product_list_wrap.tax .point_list_wrap .point .img_wrap .img {
    width: 100%;
    aspect-ratio: 550 / 315;
}
#product_list_wrap.tax .point_list_wrap .point .img_wrap .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#fix_navi_wrap {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
}
#fix_navi_wrap .fix_navi_list {
    display: flex;
    flex-flow: column;
    gap: 0.3rem 0;
}
#fix_navi_wrap .fix_navi_list a {
    width: 8rem;
    height: 6.6rem;
    display: flex;flex-flow: column;
    align-items: center;
    justify-content: center;
    
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    line-height: calc(16/13);
    text-align: center;
    color: #FFFFFF;
}
#fix_navi_wrap .fix_navi_list a::after {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #FFFFFF;
    transition: all .3s;
    margin-top: 0.5rem;
}
#fix_navi_wrap .fix_navi_list a.white-label {
    color: #000000;
}
#fix_navi_wrap .fix_navi_list a.white-label::after {
    background-color: #000000;
}

#fix_navi_wrap .product_list_wrap {
    display: none;
}

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

#product_list_wrap.tax .inner {
    padding-top: 5rem;
    padding-bottom: 8rem;
    grid-row-gap: 8rem;
}
#product_list_wrap.tax .ttl_img {
    aspect-ratio: 345 / 175;
}
#product_list_wrap.tax .product_cat .ttl_layout {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
}
#product_list_wrap.tax .product_cat .ttl_layout .page_ttl {
    font-size: 1.3rem;
}
#product_list_wrap.tax .product_cat .ttl_layout .ttl_wrap {
    display: flex;
    flex-flow: column;
    gap: 1rem 0;
    padding-left: 0;
    position: relative;
    margin-top: 2rem;
}
#product_list_wrap.tax .product_cat .ttl_layout .ttl_wrap .ttl {
    width: 100%;
}
#product_list_wrap.tax .product_list {
    margin-top: 5rem;
}

#product_list_wrap.tax .point_list_wrap {
    gap: 6rem 0;
}
#product_list_wrap.tax .point_list_wrap .point {
    flex-flow: column;
    gap: 1.5rem 0;
    padding-left: 1.5rem;
}
#product_list_wrap.tax .point_list_wrap .point::before {
    width: 0.35rem;
    height: 0.35rem;
    top: 0.6rem;
}
#product_list_wrap.tax .point_list_wrap .point .txt_wrap {
    width: 100%;
}
#product_list_wrap.tax .point_list_wrap .point .img_wrap {
    width:100%;
}

#product_list_wrap.tax .point_list_wrap .point .txt_wrap .ttl {
    font-size: 1.3rem;
}
#product_list_wrap.tax .point_list_wrap .point .txt_wrap .txt {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

#fix_navi_wrap {
    position: fixed;
    top: auto;
    bottom: 2.5rem;
    right: 0;
    transform: translateY(0);
    z-index: 10;
}
#fix_navi_wrap .fix_navi_list {
    display: flex;
    flex-flow: column;
    gap: 0.3rem 0;
}
#fix_navi_wrap .fix_navi_list a {
    width: 7rem;
    height: 6.6rem;
    display: flex;flex-flow: column;
    align-items: center;
    justify-content: center;
    
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    line-height: calc(12/11);
    text-align: center;
    color: #FFFFFF;
}
#fix_navi_wrap .fix_navi_list a::after {
    content: "";
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background-color: #FFFFFF;
    transition: all .3s;
    margin-top: 0.5rem;
}
    
#fix_navi_wrap .fix_navi_list a.white-label {
    color: #000000;
}
#fix_navi_wrap .fix_navi_list a.white-label::after {
    background-color: #000000;
}
    
    
#fix_navi_wrap .product_list_wrap {
    display: flex;
    flex-flow: column;
    align-items: center;
    background-color: #000000;
}
#fix_navi_wrap .product_list_wrap.open {
    padding: 2rem;
    padding-top: 3rem;
}
    
#fix_navi_wrap .product_list_wrap .open_con {
    display: none;
}
    
#fix_navi_wrap .product_list_wrap.open .open_con {
    display: block;
}
    
#fix_navi_wrap .product_list_wrap .open_con > .ttl {
    font-size: 1.3rem;
    color: #FFFFFF;
    text-align: center;
}
#fix_navi_wrap .product_list {
    width: 11.5rem;
    display: flex;
    flex-flow: column;
    gap: 1.5rem;
    margin-top: 1rem;
}
#fix_navi_wrap .product_list a {
    width: 100%;
    height: 8rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
#fix_navi_wrap .product_list a .ttl span {
    font-size: 1.45rem;
    color: #FFFFFF;
}
#fix_navi_wrap .product_list a .ttl svg {
    width: auto;
    height: 1.3rem;
}
#fix_navi_wrap .product_list a .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}
#fix_navi_wrap .product_list a .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#fix_navi_wrap .product_list a .bg::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.35);
}
#fix_navi_wrap .product_list a .color {
    width: 5.5rem;
    height: 0.5rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
#fix_navi_wrap .product_list a::after {
    content: '';
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #FFFFFF;
    
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
}
    
#fix_navi_wrap .product_list_wrap .close {
    width: 1rem;
    height: 1rem;
    margin-left: auto;
    margin-top: 1.5rem;
    position: relative;
}
#fix_navi_wrap .product_list_wrap .close::before {
    content: '';
    display: block;
    width: 1rem;
    height: 1px;
    background-color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
#fix_navi_wrap .product_list_wrap .close::after {
    content: '';
    display: block;
    width: 1rem;
    height: 1px;
    background-color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
}
#fix_navi_wrap .product_list_wrap .btn {
    display: block;
    margin-left: auto;
}
#fix_navi_wrap .product_list_wrap.open .btn {
    display: none;
}
#fix_navi_wrap .product_list_wrap .btn a {
    width: 7rem;
    height: 6.6rem;
    display: flex;flex-flow: column;
    align-items: center;
    justify-content: center;
    
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    line-height: calc(12/11);
    text-align: center;
    color: #FFFFFF;
}
#fix_navi_wrap .product_list_wrap .btn a .dots {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background-color: #FFFFFF;
    transition: all .3s;
    margin-top: 0.7rem;
    position: relative;
}
#fix_navi_wrap .product_list_wrap .btn a .dots::before {
    content: "";
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background-color: #FFFFFF;
    transition: all .3s;
    position: absolute;
    top: 0;
    left: -0.6rem;
    /*transform: translateY(-50%);*/
}
#fix_navi_wrap .product_list_wrap .btn a .dots::after {
    content: "";
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background-color: #FFFFFF;
    transition: all .3s;
    position: absolute;
    top: 0;
    right: -0.6rem;
    /*transform: translateY(-50%);*/
}
}  
    

/* #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;
}
}