@charset "UTF-8";

/*--- Reset ---*/

body {
    /* font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        "Segoe UI",
        "Yu Gothic",
        Meiryo,
        sans-serif; */
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: #333;
}


/*--- .Breadcrumb ---*/

.Breadcrumb {
    padding: 1em;
}

.Breadcrumb-ListGroup {
    display: flex;
}

.Breadcrumb-ListGroup-Item-Link[href]:hover {
    opacity: 0.5;
}

.Breadcrumb-ListGroup>*+* {
    margin-left: 0.5em;
}

.Breadcrumb-ListGroup>*+*::before {
    content: ">";
    margin-left: 0.5em;
    margin-right: 0.5em;
}


/*--- Anime ---*/

.fade-in {
    opacity: 0;
    transition: opacity 1.5s ease;
}

.scroll-in {
    opacity: 1;
    transform: translateY(0);
}

.fade-in img {
    transform: none;
}


/*--- Link ---*/

.btn_link {
    margin: 120px 0;
    text-align: center;
}

.btn {
    display: block;
    width: min(260px, 80%);
    margin: 0 auto 24px;
    padding: 12px 0;
    color: #8c847c;
    border: 1.5px solid #8c847c;
    text-decoration: none;
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.06em;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
    color: #6f6760;
    border-color: #6f6760;
}


/*--- .main ---*/

.main-wrapper {
    background-color: #fafafa;
}

.main {
    max-width: 700px;
    margin: 0 auto;
    font-family: "helvetica-lt-pro", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    overflow: hidden;
    letter-spacing: 0.05em;
}

.collection-visual {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.collection-mv {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.collection-mv video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0;
    animation: videoFade 1.5s ease forwards;
    /* vertical-align: bottom; */
    margin-bottom: -1px;
}

@keyframes videoFade {
    to {
        opacity: 1;
    }
}

/*--- ホワイトアウト ---*/
.collection-item {
    position: relative;
    overflow: hidden;
}

.collection-item a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #fcfcfc;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-item a:hover::after {
    opacity: 0.12;
}

.collection-item img {
    vertical-align: bottom;
}

/*--- ホワイトアウト＋ズーム ---*/
/* .collection-item {
  position: relative;
  overflow: hidden;
}

.collection-item img {
  transition: transform 0.4s ease;
}

.collection-item a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.collection-item a:hover img {
  transform: scale(1.05);
}

.collection-item a:hover::after {
  opacity: 0.12;
} */



@media (max-width: 768px) {

    .btn_link {
        margin: 100px 0;
    }

    .btn {
        font-size: 14px;
    }

}