@charset "utf-8";
html {
    /*
    scroll-behavior: smooth;
    */
    scroll-padding-top: 94px;
}
main {
    margin: 94px auto 0;
    width: max(1000px, 100%);
    max-width: 1920px;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    line-height: 2.5;
    color: #4E4E4E;
}
@media (max-width: 640px) {
    main {
        width: 640px;
        margin: 0 auto;
    }
}

a {
    text-decoration: none;
    color: inherit;
}
/*
a:visited {
    color: inherit;
}
*/
div {
    box-sizing: border-box;
}

.inner {
    width: min(100%, 1590px);
    margin: 0 auto;
    padding: 0 min(6%, calc((1590px - 1400px) / 2));
}
@media (max-width: 768px) {
    .inner {
        padding: 0 4%;
    }
}

.main-visual {
    position: relative;
    width: 100%;
}
.main-visual .txt p {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    font-family: "Cormorant Infant", serif;
    font-size: clamp(2.5rem, 0.583rem + 3.99vw, 5.375rem);
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
}
.main-visual img {
    width: 100%;
}

.story {
    background: #FBFBFB;
    margin-bottom: -120px;
}
.story .story__container {
    display: flex;
    gap: 7%;
}
.story .story__container .img {
    width: 56%;
}
.story .story__container .txt {
    width: 37%;
}
.story .story__container .txt h2 {
    width: 91%;
}
.story .story__container .txt p {
    margin-left: 10%;
}
@media (max-width: 768px) {
    .story .story__container {
        flex-direction: column-reverse;
        row-gap: 30px;
    }
    .story .story__container .img {
        width: 100%;
    }
    .story .story__container .txt {
        width: 100%;
    }
    .story .story__container .txt p {
        margin-left: unset;
    }
    .story .story__container .txt h2 {
        max-width: 300px;
        margin: 0 auto;
    }
}



.dress {
    overflow: hidden;
    background: #ffffff;
}
.dress .inner {
    display: flex;
    align-items: flex-start;
    gap: 100px;
    container-type: inline-size;
    container-name: dress__inner;
}
.dress .inner .txt {
    width: calc(50% - 200px);
}
.dress .inner .img {
    margin-top: 70px;
    width: calc(50% + 100px);
    position: relative;
    height: calc(min(calc(50vw + 100px), calc(1920px / 2 + 100px)) / 106 * 65);
}
/*
.dress .inner .img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50vw + 100px);
    max-width: calc(1920px / 2 + 100px);
    aspect-ratio: 106/ 65;
    background: url(../img/top/dress.webp) center center / 100% 100% no-repeat;
}*/
.dress .inner .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50vw + 100px);
    max-width: calc(1920px / 2 + 100px);
}
.dress .inner .img::after {
    content: '';
    position: absolute;
    width: 45%;
    aspect-ratio: 478 / 110;
    background: url(../img/top/h2_dress.svg) center center / 100% 100% no-repeat;
    bottom: 0;
    left: 0;
    transform: translate(-80%, 40%);
}
@container (max-width:1400px) {
    .dress .inner .img::after {
        width: 34cqw;
    }
}
.dress h3 {
    font-family: "Cormorant Infant", serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1.2;
}
.dress .txt .lnk {
    display: flex;
    width: 215px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: #4E4E4E;
}
.dress .txt .lnk::after {
    content: '';
    display: block;
    width: 35px;
    height: 1px;
    background: #707070;
    position: absolute;
    left: calc(100% - 35px);
    top: 50%;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
.dress .txt .lnk:hover::after {
    left: calc(100% - 35px - 20px);
}
@media (max-width: 1590px) {
    .dress .inner .txt {
        width: 500px;
    }
    .dress .inner .img {
        margin-top: 50px;
        width: calc(100% - 500px - 100px);
    }
}
@media (max-width: 1280px) {
    .dress .inner {
        flex-direction: column;
        gap: unset;
    }
    .dress .inner .txt {
        width: 100%;
    }
    .dress .inner .img {
        margin-top: 0;
        width: 100%;
        height: unset;
        aspect-ratio: 106/ 65;
    }
    /*
    .dress .inner .img::before {
        max-width: unset;
        width: 100%;
        height: 100%;
    }
    */
    .dress .inner .img img {
        max-width: unset;
        width: 100%;
        height: 100%;
    
    }
    .dress .inner .img::after {
        left: unset;
        right: 0;
        transform: translate(0, 60%);
    }
}


.brand {
    position: relative;
    overflow: hidden;
    padding-bottom: 450px;
}
.brand .band {
    position: absolute;
    width: 73%;
    height: 340px;
    bottom: 0;
    left: 0;
}
.brand .band::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #EBE6DE;
    z-index: -1;
}
.brand h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    aspect-ratio: 487 / 121;
    z-index: 1;
}
.brand .inner {
    /* display: flex; */
    justify-content: space-between;
    position: relative;
    gap: 130px;
}
.brand .txt {
    width: 400px;;
}
.brand .slick01 {
    width: 1300px;
    position: absolute;
    top: 0;
    left: 38%;
}
.brand .slick01 li {
    padding-right: 30px;
}
.brand .btn {
    color: #4E4E4E;
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}
.brand .btn::after {
    content: '';
    display: block;
    /*
    width: 50px;
    aspect-ratio: 50 / 30;
    background: url(../img/top/btn_bw.svg) center center / 100% 100% no-repeat;
    */
    width: 30px;
    height: 30px;
    margin: 0 0 0 20px;
    border: 1px #707070 solid;
    border-radius: 50%;
    box-sizing: border-box;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
.brand .btn:hover::after {
    transform: scale(1.2, 1.2);
    opacity: 0;
    filter: blur(2px);
}
.brand .btn span {
    position: relative;
}
.brand .btn span::before {
    content: '';
    display: block;
    width: 35px;
    height: 1px;
    background-color: #707070;
    position: absolute;
    right: -65px;
    top: 50%;
    transform: translateY(-50%);
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
.brand .btn:hover span::before {
    width: 0;
}
@media (max-width: 1280px) {
    .brand .band {
        height: 300px;
    }
    .brand h2 {
        left: 70%;
    }
    .brand .slick01 {
        left: 50%;
        width: 420px;
    }
}
@media (max-width: 640px) {
    .brand {
        padding-bottom: 50px;
    }
    .brand .band {
        position: relative;
        width: 100%;
        height: 200px;
    }
    .brand .txt {
        margin: 0 auto 40px;
    }
    .brand .slick01 {
        position: relative;
        left: unset;
        width: 100%;
    }
    .brand .slick01 li {
        padding-right: 0;
    }
}



.flow {
    background: linear-gradient(180deg, #fff 0%, #fff 15%, #FBFBFB 15%, #FBFBFB 100%);
}
.flow h2 {
    margin-left: auto;
    width: 26%;
}
.flow .sub__ttl {
    text-align: right;
    font-size: 20px;
}
.flow .container {
    display: flex;
    flex-wrap: wrap;
    gap: 100px 4%;
}
.flow .container .flow__box {
    width: 22%;
    line-height: 1.875;
}
.flow .container .flow__box .border {
    height: 1px;
    width: 100%;
    background: #707070;
}
.flow .container .flow__box h3 {
    display: flex;
    align-items: center;
    position: relative;
    gap: 50px;
    font-size: 21px;
}
.flow .container .flow__box h3::before {
    content: '';
    display: block;
    width: 9.2px;
    aspect-ratio: 9.2 / 35;
    background: url(../img/top/flow_1.svg) center center / 100% 100% no-repeat;
}
.flow .container .flow__box:nth-child(2) h3:before {
    width: 29.9px;
    aspect-ratio: 29.9 / 35.8;
    background: url(../img/top/flow_2.svg) center center / 100% 100% no-repeat;
}
.flow .container .flow__box:nth-child(3) h3:before {
    width: 30.5px;
    aspect-ratio: 30.5 / 35.8;
    background: url(../img/top/flow_3.svg) center center / 100% 100% no-repeat;
}
.flow .container .flow__box:nth-child(4) h3:before {
    width: 32px;
    aspect-ratio: 32 / 35.4;
    background: url(../img/top/flow_4.svg) center center / 100% 100% no-repeat;
}
.flow .container .flow__box:nth-child(5) h3:before {
    width: 30.1px;
    aspect-ratio: 30.1 / 36.2;
    background: url(../img/top/flow_5.svg) center center / 100% 100% no-repeat;
}
.flow .container .flow__box:nth-child(6) h3:before {
    width: 31.8px;
    aspect-ratio: 31.8 / 35.8;
    background: url(../img/top/flow_6.svg) center center / 100% 100% no-repeat;
}
.flow .container .flow__box:nth-child(7) h3:before {
    width: 29.4px;
    aspect-ratio: 29.4 / 35.4;
    background: url(../img/top/flow_7.svg) center center / 100% 100% no-repeat;
}
@media (max-width: 1280px) {
    .flow .container {
        gap: 80px 5%;
    }
    .flow .container .flow__box {
        width: 30%;
    }
    .flow .container .flow__box h3 {
        font-size: 18px;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .flow .container {
        gap: 40px 6%;
    }
    .flow .container .flow__box {
        width: 47%;
    }
    .flow .container .flow__box h3 {
        gap: 20px;
    }
}
@media (max-width: 640px) {
    .flow {
        background: linear-gradient(180deg, #fff 0%, #fff 5%, #FBFBFB 5%, #FBFBFB 100%);
    }
}

.shop {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.shop::before {
    content: '';
    position: absolute;
    top: -15px;
    bottom: -15px;
    left: -15px;
    right: -15px;
    background: url(../img/top/shop.webp) center center / cover no-repeat;
    filter: blur(15px);
    z-index: -1;
}
.shop .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.shop .inner h2 {
    width: 30%;
}
.shop .inner .btn {
    color: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}
.shop .inner .btn::after {
    content: '';
    display: block;
    /*
    width: 50px;
    aspect-ratio: 50 / 30;
    background: url(../img/top/btn.svg) center center / 100% 100% no-repeat;
    */
    
    width: 30px;
    height: 30px;
    margin: 0 0 0 20px;
    border: 1px #fff solid;
    border-radius: 50%;
    box-sizing: border-box;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
.shop .inner .btn:hover::after {
    transform: scale(1.2, 1.2);
    opacity: 0;
    filter: blur(2px);
}
.shop .inner .btn span {
    position: relative;
}
.shop .inner .btn span::before {
    content: '';
    display: block;
    width: 35px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: -65px;
    top: 50%;
    transform: translateY(-50%);
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
.shop .inner .btn:hover span::before {
    width: 0;
}
.brand-main-visual {
    background: linear-gradient(180deg, #fff 0%, #fff 40%, #FBFBFB 40%, #FBFBFB 100%);
}
.brand-main-visual .inner {
    position: relative;
}
.brand-main-visual h2 {
    margin-left: 20px;
    max-width: 565px;
    aspect-ratio: 565 / 140;
}
.brand-main-visual .txt {
    position: absolute;
    width: 36%;
    z-index: 2;
}
.brand-main-visual .txt p {
    width: fit-content;
    margin: 0 auto;
    color: #606060;
}
.brand-main-visual .img {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 20px;
    width: 61%;
}
.brand__mv__img__1 {
    width: 55%;
    max-width: 470px;
    aspect-ratio: 470 / 650;
    flex: 1 1;
}
.brand__mv__img__2 {
    width: 42%;
    max-width: 360px;
    aspect-ratio: 360 / 500;
    flex: 1 1;
}
@media (max-width: 640px) {
    .brand-main-visual .txt {
        width: 360px
    }
    .brand-main-visual .img {
        flex-direction: column;
        align-items: flex-end;
    }
    .brand__mv__img__2 {
        display: none;
    }
}


.brand__information {
    color: #606060;
    background: #FBFBFB;
}
.brand__information h2 {
    font-family: "Cormorant Infant", serif;
    font-size: 60px;
    text-align: center;
    color: #4E4E4E;
    line-height: 1.2;
}
.brand__information .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 35px;
}
.brand__information .info__box {
    width: 170px;
    line-height: 1.25;
}
.brand__information .info__box p {
    margin-top: 15px;
}
.brand__information .link__container {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: center;
    gap: 30px 40px;
}
.brand__information .link__container a {
    line-height: 1.5;
}
@media (max-width: 640px) {
    .brand__information h2 {
        font-size: 40px;
    }
}


.designers h2 {
    font-family: "Cormorant Infant", serif;
    font-size: 60px;
    text-align: center;
    color: #4E4E4E;
    line-height: 1.2;
}
.designers .brand__container {
    display: flex;
    flex-wrap: wrap;
    gap: 140px 80px;
}
.designers .brand__container h3 {
    font-size: 33px;
    color: #606060;
    line-height: 1.4;
}
.designers .brand__container .region {
    color: #606060;
    font-size: 18px;
    line-height: 1.5;
}
.designers .brand__container .desc {
    line-height: 2;
}
.designers .brand__box__wide {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 70px;
    width: 100%;
}
.designers .brand__box__wide .txt {
    width: 50%;
}
.designers .brand__container .txt a.btn {
    display: inline-block;
    color: #717171;
    position: relative;
}
.designers .brand__container .txt a.btn::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 1px;
    background: #707070;
    top: 50%;
    /*
    right: 0;
    transform: translate(calc(20px + 100%), -50%);
    */
    left: calc(100% + 20px);
    top: 50%;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    transform: translateY(-50%);
}
.designers .brand__container .txt a.btn:hover::after {
    left: calc(100% + 5px);
}
.designers .brand__box__wide .img {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: calc(100% - 50% - 70px);
}
.designers .brand__box__wide .img img {
    width: calc((100% - 10px) / 2);
}
.designers .brand__box__half {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: calc((100% - 80px) / 2);
}
.designers .brand__box__half .txt,
.designers .brand__box__half .img {
    width: calc((100% - 30px) / 2);
}
@media (max-width: 1280px) {
    .designers .brand__container {
        gap: 100px 40px;
    }
    .designers .brand__box__half {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .designers .brand__container {
        gap: 40px;
    }
    .designers .brand__box__wide {
        gap: 30px;
    }
    .designers .brand__box__wide .txt,
    .designers .brand__box__wide .img {
        width: 100%;
    }
}
@media (max-width: 640px) {
    .designers h2 {
        font-size: 40px;
    }
    .designers .brand__container h3 {
        font-size: 26px;
    }
}


.search-main-visual {
    background: linear-gradient(180deg, #fff, #fff 30%,#FBFBFB 30%, #FBFBFB 70%, #fff 70%, #fff 100%);
}
.search-main-visual .inner {
    /*
    display: flex;
    */
    min-height: max(450px, min(42.58vw, 677px));
    color: #606060;
    position: relative;
}
.search-main-visual .inner:has(.formal) {
    min-height: 0;
}
.search-main-visual .inner .txt {
    position: relative;
    z-index: 1;
}
.search-main-visual .inner .txt h2 {
    width: min(70%, 682px);
}
.search-main-visual .inner .txt p {
    width: fit-content;
    width: min(100%, 930px);
    margin: 0 auto;
}
.search-main-visual .inner .txt p br.sp {
    display: none;
}
.search-main-visual .inner .img {
    /*
    margin-left: -50px;
    */
    display: flex;
    align-items: flex-start;
    gap: 50px;
    position: absolute;
    left: calc(50% - 70px);
    top: 0;
}
.search__mv__img__1 {
    width: 36.4%;
    aspect-ratio: 280 / 380;
    max-width: 280px;
}
.search__mv__img__2 {
    width: 57%;
    max-width: 440px;
    aspect-ratio: 440/ 620;
}
@media (max-width: 640px) {
.search-main-visual .inner .txt p:has(.kimono) {
    padding-top: 40px;
}
.search-main-visual .inner .txt p br.sp {
    display: inline;
}
}



.selector .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.selector .container div {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    height: 50px;
}
.selector .container div.current {
    color: #AD8B53;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.selector .container div:not(:first-child) {
    border-left: 1px solid #707070;
}
.selector .search__btn {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 460px;
    height: 70px;
    border: 1px solid #707070;
    background: #fff;
    font-size: 20px;
    color: #606060;
    padding: 20px 30px;
    text-align: left;
    cursor: pointer;
}
.selector .search__btn::before,
.selector .search__btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translate(0, -50%);
    width: 20px;
    height: 1px;
    background: #707070;
}
.selector .search__btn::after {
    transform:rotate(-90deg);
    transition:transform 0.3s;
}
.selector .search__btn.active::after {
    transform:rotate(0deg);
}
.selector .search__detail {
    display: none;
    border: 1px solid #f4eae0;
    padding: 80px 100px;
    color: #606060;
}
.selector .search__detail.active {
    display: block;
}
.selector .search__detail dl {
    display: flex;
    align-items: flex-start;
}
.selector .search__detail dl dt {
    width: 140px;
    line-height: 1.4;
    position: relative;
}
.selector .search__detail dl dt::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: #707070;
}
.selector .search__detail dl dd {
    width: calc(100% - 140px - 40px);
    padding-left: 40px;
    line-height: 1.4;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px 40px;
}
.selector .search__detail dl dd a {
    display: block;
    padding: 5px;
    background: transparent;
}
.selector .search__detail dl dd a:hover,
.selector .search__detail dl dd a.active {
    background: #f4eae0;
    color: #606060;
    opacity: 1;
}
.selector .search__detail .silhouette {
    align-items: center;
}
.selector .search__detail .silhouette img {
    height: 80px;
    margin-bottom: 20px;
}
.selector .search__detail .silhouette dd {
    align-items: center;
}
.selector .search__detail dd a {
    transition: all .2s;
}
.selector .search__detail dd a:hover {
    opacity: 0.7;
}
@media (max-width: 640px) {
    .selector .search__detail {
        padding: 40px 20px
    }
    .selector .search__detail dl dt {
        width: 100px;
    }
    .selector .search__detail dl dd {
        width: calc(100% - 100px - 20px);
        padding-left: 20px;
    }
}
.search__list .search__header {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    color: #606060;
}
.search__list .search__header .sort__btn {
    position: relative;
    /* padding-left: 44px; */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-trigger {
    position: relative;
    width: 32px;
    height: 20px;
    cursor: pointer;
}
.btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: black;
    border-radius: 1px;
}
.btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
    top: 0;
}
.btn-trigger span:nth-of-type(2) {
    top: 10px;
}
.btn-trigger span:nth-of-type(3) {
    bottom: 0;
}
.sort__btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
}
.sort__btn.active span:nth-of-type(2) {
    opacity: 0;
}
.sort__btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
}
/* .search__list .search__header .sort__btn::before { */
    /* content: ''; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 0; */
    /* transform: translateY(-50%); */
    /* width: 32px; */
    /* aspect-ratio: 32 / 20; */
    /* background: url(../img/search/sort.svg) center center / 100% 100% no-repeat; */
/* } */
.search__list .sort__box {
    display: none;
}
.search__list .sort__box .sort__container {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}
.search__list .search__contents {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
    row-gap: 60px;
}
.search__list .search__contents .result__box {
    width: 22%;
    transition-duration: 0.3s;
}
.search__list .search__contents .result__box:hover {
    opacity: 0.5;
}
    .search__list .search__contents .result__box img {
        height: max(min(25.78vw, 410px), 258px);
        object-fit: cover;
    }

@media (max-width: 640px) {
    .search__list .search__contents {
        gap: 4%;
        row-gap: 30px;
    }
    .search__list .search__contents .result__box {
        width: 48%;
    }
        .search__list .search__contents .result__box img {
            height: 365px;
        }
}
.search__list .search__contents .result__box .dress__name {
    color: #606060;
    font-size: 18px;
    line-height: 1.8;
}
.search__list .search__contents .result__box .brand__name {
    color: #BCBCBC;
    line-height: 2;
}
.search__list .pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    color: #606060;
}
.search__list .pagination a.num {
    width: 35px;
    aspect-ratio: 35 / 45;
    background: #F2F2F2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search__list .pagination a.num.current {
    background: #E0E0E0;
}
.search__list .pagination a.next {
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    border-top: 1px solid #707070;
    border-right: 1px solid #707070;
}
.search__list .pagination a.previous {
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    border-bottom: 1px solid #707070;
    border-left: 1px solid #707070;
}



.single__dress .inner {
    display: flex;
    color: #606060;
}
.single__dress h1,
.single__dress h2 {
    font-size: 30px;
    color: #606060;
    float: none;
    width: 100%;
    height: auto;
    padding-top: 0;
}
.single__dress h2 img + img {
    margin: 20px 0 0;
}
.single__dress .inner .img {
    width: 50%;
}
.single__dress .inner .txt {
    width: 50%;
    padding-left: 8%;
}
.single__dress .txt dl {
    display: flex;
    flex-wrap: wrap;
}
.single__dress .txt dl dt {
    width: 120px;
    position: relative;
}
.single__dress .txt dl dt::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 16px;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    background: #707070;
}
.single__dress .txt dl dd {
    width: calc(100% - 120px - 30px);
    padding-left: 30px;
}
.single__dress .btn__return {
    display: inline-block;
    position: relative;
    padding-left: 55px;
}
.single__dress .btn__return::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 35px;
    height: 1px;
    background: #707070;
}
@media (max-width: 640px) {
    .single__dress .inner {
        flex-direction: column;
    }
    .single__dress .inner .img {
        width: 100%;
    }
    .single__dress .inner .txt {
        width: 100%;
        padding-left: 0;
    }
}