@charset "utf-8";@charset "UTF-8";

 /* Inter読み込み */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    font-family: "ヒラギノ角ゴ Pro W3", "Inter", sans-serif;
    margin: 0;
    padding: 0;
    background: #F5F5F5;
}
.header,
#header,
.sp-nav,
.crumbsList,
#footer,
.menu-list--sp {
	display: none;
}
#wrapper.scroll:not(.wrapper--header_nolink) {
    padding-top: 0;
}
@media (min-width: 751px) {
    #wrapper.scroll:not(.wrapper--header_nolink) {
        padding-top: 0;
    }
}
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
@media screen and (max-width: 750px) {
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }  
}
.collection {
    overflow: hidden;
}
.collection a:hover {
    opacity: 1;
}
.collection ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.collection .header-logo {
    position: absolute;
    top: 25vw;
    right: 10vw;
    z-index: 2;
    transition: all 0.1s ease-out;
    opacity: 0;
}
.collection .header-logo.active {
    opacity: 1;
}
.header-logo path {
    fill: #ffffff12;
    animation: fillAnimation 1s ease forwards;
}
.header-logo path:nth-child(1) { animation-delay: 1s; }
.header-logo path:nth-child(2) { animation-delay: 0.9s; }
.header-logo path:nth-child(3) { animation-delay: 0.8s; }
.header-logo path:nth-child(4) { animation-delay: 0.7s; }
.header-logo path:nth-child(5) { animation-delay: 0.6s; }
.header-logo path:nth-child(6) { animation-delay: 0.5s; }
.header-logo path:nth-child(7) { animation-delay: 0.4s; }
.header-logo path:nth-child(8) { animation-delay: 0.3s; }
.header-logo path:nth-child(9) { animation-delay: 0.2s; }
.header-logo path:nth-child(10) { animation-delay: 0.1s; }
.header-logo path:nth-child(11) { animation-delay: 0s; }
.header-logo path:nth-child(12) { animation-delay: -0.1s; }
.header-logo path:nth-child(13) { animation-delay: -0.2s; }

@keyframes fillAnimation {
    from {
        fill: #ffffff12;
    }
    to {
        fill: #fff;
    }
}
.collection .header-logo.fixed-logo {
    position: fixed;
    top: 35px;
    transition: none;
}
.collection .header-logo img {
    max-width: 340px;
}
.collection .title-img{
    position: absolute;
    top: 29vw;
    right: 10vw;
    z-index: 2;
    max-width: 991px;
    animation-name: fadeInBottom;
    animation-delay: 1s;
    animation-duration: 1s;
    animation-fill-mode: both;
}
.collection .title-img img {
    width: 100%;
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
    }
}
@media screen and (max-width: 750px) {
    .collection .header-logo {
        top: 30vw;
        right: 32px;
    }
    .collection .header-logo.fixed-logo {
        top: 20px;
        z-index: 1;
        display: block;
        margin: 0 auto;
        padding: 0;
    }
    .collection .header-logo svg {
        width: 178px;
    }
    .header-logo path:nth-child(1) { animation-delay: 2s; }
    .header-logo path:nth-child(2) { animation-delay: 1.8s; }
    .header-logo path:nth-child(3) { animation-delay: 1.6s; }
    .header-logo path:nth-child(4) { animation-delay: 1.4s; }
    .header-logo path:nth-child(5) { animation-delay: 1.2s; }
    .header-logo path:nth-child(6) { animation-delay: 1s; }
    .header-logo path:nth-child(7) { animation-delay: 0.8s; }
    .header-logo path:nth-child(8) { animation-delay: 0.6s; }
    .header-logo path:nth-child(9) { animation-delay: 0.4s; }
    .header-logo path:nth-child(10) { animation-delay: 0.2s; }
    .header-logo path:nth-child(11) { animation-delay: 0s; }
    .header-logo path:nth-child(12) { animation-delay: -0.2s; }
    .header-logo path:nth-child(13) { animation-delay: -0.4s; }
    .collection .title-img{
        top: 105vw;
        right: 32px;
        max-width: 236px;
    }
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
    .collection .header-logo svg {
        max-width: 29vw;
    }
    .collection .title-img {
        top: 31vw;
        max-width: 70vw;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1190px) {
    .collection .title-img {
        top: 30vw;
        max-width: 65vw;
    }
}
.collection .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
}
.collection .image-container img {
    width: 100%;
    height: 100%;
    display: block;
}
.collection .image-container .img-animation {
    position: relative;
}

.collection .image-container .img-animation img {
    margin-top: 0;
    animation: none;
}
.collection .image-container .img-animation img.active {
    margin-top: -69px;
    animation: slideUp 0.8s cubic-bezier(0.42, 0, 0.58, 1) forwards;
}
@keyframes slideUp {
    0% {
        margin-top: 0;
    }
    100% {
        margin-top: -69px;
    }
}
@media screen and (max-width: 750px) {
    .collection .image-container img {
        object-fit: cover;
    }
    .collection .image-container .img-animation img.active {
        margin-top: -13px;
    }
    @keyframes slideUp {
        0% {
            margin-top: 0;
        }
        100% {
            margin-top: -13px;
        }
    }
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
    .collection .image-container .img-animation img.active {
        margin-top: -30px;
    }
    @keyframes slideUp {
        0% {
            margin-top: 0;
        }
        100% {
            margin-top: -30px;
        }
    }
}
.collection .button-container {
    z-index: 999;
    position: fixed;
    top: 20%;
    right: 0;
    display: inline-table;
    margin: 0 auto;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: both;
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
 }
@keyframes fadeInRight {
    0% {
       opacity: 0;
       transform: translateX(20px);
    }
    100% {
       opacity: 1;
       transform: translateX(0);
    }
} 
.collection .button-container ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    padding: 0px;
    list-style: none;
}
.collection .button-container ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    line-height: 38.73px;
    color: rgb(255, 255, 255);
    font-family: "Inter", sans-serif;
    font-weight: 200;
    font-size: 32px;
    box-sizing: border-box;
}
.collection .button-container ul li:first-child {
    padding-bottom: 32px;
}
.collection .button-container ul li:first-child::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 1px;
    background: #000;
    bottom: 0;
}
.collection .button-container ul li:last-child {
    padding-top: 32px;
}
.collection .button-container ul li a {
    position: relative;
    padding: 0 7px;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}
.collection .button-container ul li:first-child a::before,
.collection .button-container ul li:last-child a::before {
    content: '';
    position: absolute;
    top: -4px;
    right: 0;
    width: 4px;
    background: #539EC6;
    border-radius: 4px 0 0 4px;
}
.collection .button-container ul li:first-child a::before {
    height: 237px;
}
.collection .button-container ul li:last-child a::before {
    height: 189px;
}
@media screen and (max-width: 750px) {
    .collection .button-container {
        top: 33%;
    }
    .collection .button-container ul li {
        font-weight: 300;
        font-size: 16px;
    }
    .collection .button-container ul li a {
        padding: 0;
    }
    .collection .button-container ul li:first-child {
        padding-bottom: 25px;
    }
    .collection .button-container ul li:first-child::before {
        width: 19px;
    }
    .collection .button-container ul li:last-child {
        padding-top: 25px;
    }
    .collection .button-container ul li:first-child a::before {
        height: 123px;
    }
    .collection .button-container ul li:last-child a::before {
        height: 102px;
    }
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
    .collection .button-container ul li {
        font-size: 2.5vw;
    }
    .collection .button-container ul li:first-child a::before {
        height: 19vw;
    }
    .collection .button-container ul li:last-child a::before {
        height: 15.5vw;
    }
}
.collection .look-list .look-slider-blk {
    display: flex;
}
@media screen and (max-width: 750px) {
    .collection .look-list .look-slider-blk {
        display: block;
    }
}
.collection .look-list .look-slider-blk img,
.collection .look-list .look-product ul li img {
    display: block;
    width: 100%;
    margin: 0 auto;
}
.collection .look-list .look-product ul li img {
    max-width: 426px;
}
.collection .look-list .look4 .look-product ul li img,
.collection .look-list .look7 .look-product ul li img {
    max-width: 640px;
}
.collection .look-list .look-img-blk,
.collection .look-list .look-slider-inner {
    width: 50%;
}
@media screen and (max-width: 750px) {
    .collection .look-list .look-img-blk,
    .collection .look-list .look-slider-inner {
        width: 100%;
    }
    .collection .look-list .look-product ul li img {
        max-width: 130px;
    }
    .collection .look-list .look4 .look-product ul li img,
    .collection .look-list .look6 .look-product ul li img,
    .collection .look-list .look7 .look-product ul li img {
        max-width: 100%;
    }
}
.collection .look-list .look-img-blk {
    position: relative;
}
.collection .look-list .look-img-blk .look-img {
    position: absolute;
    top: 40%;
    right: 48px;
    width: 44px;
    height: 167px;
}
.collection .look-list .look2 .look-img-blk .look-img {
    right: inherit;
    left: 48px;
}
.collection .look-list .look3 .look-img-blk .look-img {
    top: 20%;
    right: inherit;
    left: 48px;
}
.collection .look-list .look4 .look-img-blk .look-img {
    top: inherit;
    bottom: 48px;
}
.collection .look-list .look5 .look-img-blk .look-img {
    top: 19%;
}
.collection .look-list .look6 .look-img-blk .look-img {
    top: 20%;
    left: 48px;
    right: inherit;
}
.collection .look-list .look7 .look-img-blk .look-img {
    top: inherit;
    bottom: 48px;
    left: 48px;
    right: inherit;
}
@media screen and (max-width: 750px) {
    .collection .look-list .look-img-blk .look-img {
        top: 38%;
        right: 32px;
        width: 33px;
        height: 125px;
    }
    .collection .look-list .look2 .look-img-blk .look-img {
        top: 36%;
        left: 32px;
    }
    .collection .look-list .look3 .look-img-blk .look-img {
        top: 12%;
        left: 32px;
    }
    .collection .look-list .look4 .look-img-blk .look-img {
        bottom: 32px;
    }
    .collection .look-list .look6 .look-img-blk .look-img {
        top: 20%;
        left: 32px;
    }
    .collection .look-list .look7 .look-img-blk .look-img {
        bottom: 32px;
        left: 32px;
    }
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
    .collection .look-list .look-img-blk .look-img {
        width: 3.4vw;
        height: auto;
    }
}
.collection .look-list .look-product {
    background: #F5F5F5;
}
.collection .look-list .look-product ul {
    display: flex;
    justify-content: center;
}
.collection .look-list .look-product ul li {
    width: calc(100% / 3);
    background: #f6f6f6;
}
.collection .look-list .look-product ul li a {
    display: block;
}
.collection .look-list .look4 .look-product ul li,
.collection .look-list .look7 .look-product ul li {
    width: calc(100% / 2);
}
.collection .look-list .look-product ul li .item-details {
    padding: 16px 0 32px;
    text-align: center;
}
.collection .look-list .look-product ul li .item-details .item-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 18px;
    padding-bottom: 16px;
    color: #000;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1.28px;
    word-break: break-all;
    box-sizing: content-box;
}
.collection .look-list .look-product ul li .item-details .item-name.sp-only {
    display: none;
}
.collection .look-list .look2 .look-product ul li .item-details .item-name,
.collection .look-list .look5 .look-product ul li .item-details .item-name {
    min-height: 3.3vw;
}
.collection .look-list .look6 .look-product ul li .item-details .item-name {
    min-height: 3.5vw;
}
@media screen and (max-width: 750px) {
    .collection .look-list .look-product ul li .item-details {
        padding: 16px 0;
    }
    .collection .look-list .look-product ul li:nth-child(3n) {
        margin-right: 0;
    }
    .collection .look-list .look-product ul li .item-details .item-name span {
        letter-spacing: 0.04em;
    }
}
@media screen and (max-width: 363px) {
    .collection .look-list .look-product ul li .item-details .item-name {
        min-height: 10vw;
    }
}
@media screen and (max-width: 490.9px) {
    .collection .look-list .look-product ul li .item-details .item-name {
        line-height: 14.52px;
        padding: 0 5px 16px;
        font-size: 12px;
    }
    .collection .look-list .look2 .look-product ul li .item-details .item-name {
        min-height: 12vw;
    }
    .collection .look-list .look5 .look-product ul li .item-details .item-name {
        min-height: 15vw;
    }
    .collection .look-list .look6 .look-product ul li .item-details .item-name {
        min-height: 23vw;
    }
    .collection .look-list .look-product ul li .item-details .item-name.pc-only {
        display: none;
    }
    .collection .look-list .look-product ul li .item-details .item-name.sp-only {
        display: flex;
    }
}
@media screen and (min-width: 491px) and (max-width: 750.9px) {
    .collection .look-list .look-product ul li .item-details .item-name {
        line-height: 14.52px;
        padding: 0 5px 16px;
        font-size: 12px;
    }
    .collection .look-list .look2 .look-product ul li .item-details .item-name{
        min-height: 9vw;
    }
    .collection .look-list .look5 .look-product ul li .item-details .item-name{
        min-height: 8vw;
    }
    .collection .look-list .look6 .look-product ul li .item-details .item-name {
        min-height: 13vw;
    }
    .collection .look-list .look-product ul li .item-details .item-name.pc-only {
        display: none;
    }
    .collection .look-list .look-product ul li .item-details .item-name.sp-only {
        display: flex;
    }
}
@media screen and (min-width: 751px) and (max-width: 865.9px) {
    .collection .look-list .look2 .look-product ul li .item-details .item-name{
        min-height: 9vw;
    }
    .collection .look-list .look5 .look-product ul li .item-details .item-name{
        min-height: 9vw;
    }
}
@media screen and (min-width: 866px) and (max-width: 1280px) {
    .collection .look-list .look2 .look-product ul li .item-details .item-name{
        min-height: 8vw;
    }
    .collection .look-list .look5 .look-product ul li .item-details .item-name{
        min-height: 6vw;
    }
    .collection .look-list .look6 .look-product ul li .item-details .item-name{
        min-height: 7vw;
    }
}
@media screen and (min-width: 751px) and (max-width: 1080px) {
    .collection .look-list .look6 .look-product ul li .item-details .item-name {
        min-height: 10vw;
    }
}
.collection .look-list .look-product ul li .item-details .buy-btn,
.collection .look-list .look-product ul li .item-details .coming-btn {
    display: inline-block;
    line-height: 16.9px;
    padding: 4px 43px;
    background-color: #539EC6;
    color: #fff;
    border: 1px solid #539EC6;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1.28px;
    box-sizing: border-box;
}
.collection .look-list .look-product ul li .item-details .coming-btn {
    padding: 4px 8px;
    background-color: #9ecae3;
    border: 1px solid #9ecae3;
}
@media screen and (max-width: 400px) {
    .collection .look-list .look-product ul li .item-details .buy-btn {
        display: block;
        margin: 0 5px;
        padding: 4px 0;
    }
    .collection .look-list .look4 .look-product ul li .item-details .buy-btn,
    .collection .look-list .look6 .look-product ul li .item-details .buy-btn,
    .collection .look-list .look7 .look-product ul li .item-details .buy-btn {
        display: inline-block;
        padding: 4px 43px;
    }
}
@media screen and (max-width: 320px) {
    .collection .look-list .look-product ul li .item-details .coming-btn {
        padding: 4px 1px;
        font-size: 13px;
        letter-spacing: 0px;
    }
}
@media screen and (min-width: 321px) and (max-width: 420px)  {
    .collection .look-list .look-product ul li .item-details .coming-btn {
        padding: 4px 4px;
        font-size: 13px;
        letter-spacing: 0px;
    }
}
@media screen and (min-width: 401px) and (max-width: 750px) {
    .collection .look-list .look-product ul li .item-details .buy-btn {
        margin: 0 5px;
    }
    .collection .look-list .look-product ul li .item-details .coming-btn {
        padding: 4px 4px;
    }
}
.collection .look-list .look-product ul li .item-details .buy-btn:hover,
.collection .look-list .look-product ul li .item-details .coming-btn:hover {
    background-color: #fff;
    color: #539EC6;
}
.collection .all-link {
    width: 100%;
    background-color: #fff;
    padding: 30px 0;
}
.collection .all-item-link {
    width: 288px;
    height: 50px;
    display: flex;
    margin: 0 auto;
    border-radius: 5px;
    border: 1px solid #539EC6;
    background: #539EC6;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 360px) {
    .collection .all-item-link {
        width: 250px;
    }
}
.collection .all-item-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.collection .all-item-link a:hover {
    background-color: #fff;
    color: #539EC6;
    border-radius: 5px;
    opacity: 1;
}