@charset "UTF-8";
/* 共通 */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Noto+Serif+JP:wght@400;500;600;700&display=swap');
.f-serif {
    font-family: 'Lora', 'Noto Serif JP', serif;
}
.wapper {
    background: #000;
    padding-top: 64px;
    overflow: hidden;
}
.inner {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}
.sub-title {
    color: #fff;
    text-align: center;
    font-size: 1.9rem;
    font-weight: bold;
    letter-spacing: 1.5px;
}
.anchor_link {
    position: relative;
    /* top: -145px; */
    top: -105px;
    display: block;
}
.float-bnr {
    display: none !important;
}

@media (max-width: 769px){
    .sub-title {
        font-size: 1.5rem;
    }
}

/**** mian ****/
.main {
    margin: auto;
    padding: 3vw 0 2%;
    text-align: center;
    width: 95%;
}
@media (max-width: 769px){
    .main {
        padding: 5vw 0 4%;
    }
}

/**** story ****/
.story {
    color: #b2916b;
    background: url(../img/bg_story.png) no-repeat;
    background-size: contain;
}
.story .inner {
    padding: 12% 0;
}
.story .laed {
    text-align: center;
    font-weight: bold;
    font-size: 1.9rem;
    margin-bottom: 15px;
}
.story .text {
    text-align: center;
    font-size: 1.35rem;
    line-height: 2.1;
    font-weight: 600;
}
@media (max-width: 769px){
    .story .laed {
        font-size: 7vw;
    }
    .story .text {
        text-align: left;
        font-size: 4vw;
        font-weight: bold;
        letter-spacing: 1px;
    }
}

/**** youtube ****/
.yotube-box {
    display: flex;
    margin-top: 12%;
}
.youtube-movie {
    position: relative;
    line-height: 0;
    transition: all 0.3s;
    margin: 0 10px;
}
.youtube-movie a {
    display: block;
}
.youtube-movie .thumb_img {
    width: 580px;
    height: auto;
    max-width: 100%;
    position: relative;
}
.youtube-movie .play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10vw;
    max-width: 106px;
}
.youtube-movie .title {
    color: #fff;
    margin-top: 20px;
    font-size: 14px;
}
@media (max-width: 769px){
    .yotube-box {
        display: block;
    }
    .youtube-movie {
        margin-bottom: 7%;
    }
    .youtube-movie .play_btn {
        width: 20vw;
    }
    .youtube-movie .title {
        margin-top: 17px;
        font-size: 12px;
    }
}

/**** product ****/
.product {
    padding: 5% 0 0;
}
.product .product-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    margin-bottom: 5%;
}
.product .product-box .data_box {
    max-width: 531px;
    width: 50%;
    margin-right: 6%;
    letter-spacing: 1px;
}
.product .product-box .data_box .heading {
    font-size: 1.37rem;
}
.product .product-box .data_box .text {
    margin: 20px 0;
    font-size: 1rem;
    line-height: 36px;
}
.product .product-box .data_box a {
    display: inline-block;
    position: relative;
    color: #fff;
    transition: .5s;
}
.product .product-box .data_box a i {
    font-size: 90%;
    margin-left: 7px;
}
.product .product-box .data_box a::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scale(1,1);
    transform-origin: left top;
    transition: transform .5s;
}
.product .product-box .data_box a:hover {
    opacity: 1;
}
.product .product-box .data_box a:hover::after {
    transform: scale(0,1);
    transform-origin: right top;
}
.product .product-box .img {
    max-width: 600px;
    width: 55%;
}
.product .product-box .img figcaption {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-top: 5px;
}
.product .product-box:nth-child(odd) {
    flex-direction: row-reverse;
}
.product .product-box:nth-child(odd) .data_box {
    margin-right: 0;
    margin-left: 6%;
}
.product .product-box:nth-child(odd) .img figcaption {
    text-align: right;
}
.product .ef-hover {
    margin-top: 10%;
}
.product .btn-alink {
    max-width: 700px;
    width: 100%;
    background: #ba996b;
}
.product .btn-alink span {
    color: #fff;
}
.product .btn.ef-bgleft:before {
    background: #000;
}
.product .ef-hover:hover .btn span {
    color: #ba996b;
}

/* ladies-lefty */
.product .product-box.ladies,
.product .product-box.lefty {
    display: block;
    position: relative;
    margin-top: 10%;
}
.product .product-box.ladies .data_box {
    position: absolute;
    top: 12%;
    right: 4%;
    text-align: center;
    margin: auto;
}
.product .product-box.lefty .data_box {
    position: absolute;
    top: 12%;
    left: 4%;
    text-align: center;
    margin: auto;
}
.product .product-box.ladies .data_box .heading,
.product .product-box.lefty .data_box .heading {
    margin-bottom: 4px;
}
.product .product-box.ladies .img,
.product .product-box.lefty .img {
    width: 100%;
    max-width: inherit;
}

@media (max-width: 769px){
    .product {
        padding: 5% 0 0;
    }
    .product .product-box {
        display: block;
        margin-bottom: 20%;
    }
    .product .product-box .data_box {
        width: 95%;
    }
    .product .product-box .img {
        width: 100%;
    }
    .product .product-box .data_box {
        margin-bottom: 13%;
    }
    .product .product-box .data_box .text {
        font-size: 0.9rem;
        line-height: 30px;
    }
    .product .product-box .data_box a {
        font-size: 0.85rem;
    }
    .product .product-box .img figcaption {
        margin-top: 2px;
    }
    .product .btn-alink span {
        padding: 13px 17px;
    }

    .product .product-box.ladies,
    .product .product-box.ladies .data_box,
    .product .product-box.lefty,
    .product .product-box.lefty .data_box {
        position: inherit;
    }
    .product .product-box.ladies .img,
    .product .product-box.lefty .img {
        width: 112%;
        max-width: inherit;
        margin-left: -6%;
        margin-top: 8%;
    }
}

/**** lineup ****/
.lineup {
    margin-top: 17%;
    padding-bottom: 3%;
}
.set_box {
    margin-top: 5%;
}
.set_box .subject {
    color: #fff;
    font-size: min(4vw,20px);
    letter-spacing: 0.75px;
    max-width: min(90%,1080px);
    margin: auto;
    margin-bottom: 10px;
}

.lineup_box .l-list {
    display: flex !important;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.lineup_box .l-list .img {
    width: 45%;
}
.lineup_box .l-list .data_box {
    width: 40%;
    margin-left: 5%;
}
.lineup_box .l-list .data_box .name {
    font-size: 1.25rem;
}
.lineup_box .l-list .data_box .name .note-lefty {
    font-size: 70%;
}
.lineup_box .l-list .data_box .family {
    font-size: 0.88rem;
    margin: 20px 0 0;
}
.lineup_box .l-list .data_box .f-list {
    margin-bottom: 10px;
}
.lineup_box .l-list .data_box .tax {
    font-size: 12px;
    margin-bottom: 25px;
    display: block;
    width: 195px;
    text-align: right;
}
.lineup_box .l-list .data_box a {
    background: #fff;
    display: block;
    width: 195px;
    padding: 13px 10px;
    text-align: center;
    font-weight: bold;
    box-sizing: border-box;
}
.lineup_box .l-list .data_box a i {
    margin-right: 5px;
}
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    color: #d8d8d8;
    font-size: 1.9rem;
}
.slick-prev {
    left: -3%;
}
.slick-next {
    right: -2%;
}
.slick-dots {
    position: relative;
    z-index: 3;
    margin: 4% auto 0;
    text-align: center;
}
.slick-dots li {
    display: inline-block;
    margin: 0 3px;
}
.slick-dots li button {
    padding: 0;
    color: transparent;
    outline: none;
    width: 42px;
    border: unset;
    height: 2px;
    display: block;
    background: #4d4d4d;
    cursor: pointer;
}
.slick-dots li.slick-active button {
    background: #b1906b;
}

@media (max-width: 769px){
    .lineup {
        margin-top: 30%;
        padding-bottom: 15%;
    }
    .set_box {
        margin-top: 10%;
    }
    .set_box .subject {
        width: 80%;
    }

    .lineup_box .l-list {
        display: block !important;
    }
    .lineup_box .l-list .img {
        width: 80%;
        margin: auto;
    }
    .lineup_box .l-list .data_box {
        width: 80%;
        margin: 7% auto 5%;
    }
    .lineup_box .l-list .data_box .name {
        font-size: 1.3rem;
        font-weight: bold;
        letter-spacing: 1px;
    }
    .lineup_box .l-list .data_box .family {
        margin: 10px 0;
    }
    .lineup_box .l-list .data_box .tax {
        width: 100%;
    }
    .lineup_box .l-list .data_box a {
        width: 100%;
        margin: auto;
    }
    .slick-prev {
        left: -2%;
    }
    .slick-dots {
        margin: 6% auto 0;
    }
}

/**** catalog ****/
.catalog {
    margin-top: 5%;
    padding-bottom: 7%;
}
.catalog .link_box {
    margin: auto;
    margin-top: 3%;
    max-width: 726px;
    width: 95%;
    display: flex;
    justify-content: space-between;
}
.catalog .link_box a {
    margin: 0 2%;
}
@media (max-width: 769px){
    .catalog {
        padding-bottom: 14%;
    }
    .catalog .link_box {
        margin-top: 6%;
        display: block;
    }
    .catalog .link_box a {
        margin: 0 auto 3%;
        display: block;
    }
}

/**** beres7s ****/
.beres7s {
    margin-top: 2%;
    padding-bottom: 7%;
}
.beres7s .bnr_box {
    width: min(697px,95%);
    text-align: center;
    margin: 3% auto 0;
}
.beres7s .bnr_box .item_link {
    display: block;
    border: 1px solid #2c221c;
}
@media (max-width: 769px){
    .beres7s {
        padding-bottom: 20%;
    }
}

/**** リンク公開前 ****/
.no-link {
    display: none !important;
}