@charset "utf-8";

/* ============
MAIN: HEADER: FV
============ */
.fv-slider {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* トラック：下辺そろえ + 無限スクロール */
.slider-track {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    width: max-content;
    height: 360px;
    animation: fv-scroll-left 90s linear infinite;
}

/* 各アイテム：高さは固定しない（＝画像の多様性を維持） */
.slider-item {
    width: 70vw;
    flex-shrink: 0;
    /* display: flex;  */
    align-items: flex-end;
    justify-content: center;
    /* 画像を横方向中央に（任意） */
}

/* 3の倍数だけ上辺そろえ */
.slider-item:nth-child(3n-2) {
    align-self: flex-start;
}

.slider-item img {
    display: block;
    height: auto;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* アニメーション */
@keyframes fv-scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* ループ用。重なり具合で調整可 */
}

.fv-title {
    margin-top: 40px;
    text-align: center;
    font-family: "Montserrat", Poppins, sans-serif;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: normal;
    position: relative;
    z-index: 10;
}

.fv-subTitle {
    margin-top: 20px;
    margin-bottom: 100px;
    text-align: center;
    font-family: "Montserrat", Poppins, sans-serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: normal;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .slider-track {
        height: 500px;
    }

    .slider-item {
        width: auto;
    }

    .fv-title {
        font-size: 4.8rem;
        margin-top: 80px;

    }

    .fv-subTitle {
        font-size: 3.2rem;
        margin-bottom: 100px;
    }

    .brSp {
        display: none;
    }
}

/* === Main Header END === */

/* ============
section: ABOUT
============ */
.about {
    width: var(--contentWidth);
    margin: 0 auto;
}

.about__img {
    display: block;
    height: auto;
    margin: 60px auto 12px;
}

.section__lead {
    font-size: 2.2rem;
    font-weight: 500;
    margin-top: 40px;
    text-align: center;
}

.section__txt {
    font-size: 1.6rem;
    margin-top: 24px;
}

.leadbtn {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: normal;
    margin-left: auto;
    width: fit-content;
    border: solid 1px #292929;
    color: var(--primary-white);
    background-color: var(--text-black);
    padding: 8px 16px;
    margin-top: 60px;
    transition: background-color 0.3s ease;
}

.leadbtn:hover {
    background-color: var(--primary-white);
    color: var(--text-black);
}


.leadbtn span {
    font-family: "Montserrat", Poppins, sans-serif;
    font-weight: 400;
    margin-right: 4px;
}

@media (min-width: 768px) {
    .section__lead {
        font-size: 2.8rem;
        font-weight: 600;
        margin-bottom: 60px;
    }

    .section__lead__about {
        text-align: start;
        padding-left: 0;
    }

    .about {
        display: flex;
        width: 100%;
        margin-right: auto;
        margin-top: 80px;
    }

    .about__img {
        width: 40%;
        max-width: 600px;
        height: auto;
        object-fit: contain;
        margin: 0;
    }

    .about__content {
        width: 60%;
        padding-left: var(--contentPadding);
        padding-right: var(--contentPadding);
    }

    .section__txt {
        font-size: 1.8rem;
    }

    .leadbtn {
        padding: 12px 32px;
    }
}

@media (min-width: 1240px) {
    .br__lead {
        display: none;
    }
}

/* === About END === */

/* ============
section: LEAD
============ */
.lead {
    margin: 80px auto;
    width: var(--contentWidth);
}

.lead__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.section__lead__lead,
.section__lead__collaboration {
    text-align: start;
    margin: 0;
}

.lead__link {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lead__list li:nth-of-type(2) .lead__link {
    flex-direction: row-reverse;
}

.lead__wrap {
    height: 50%;
    width: 50%;
    object-fit: cover;
    transition: 1s all;
    overflow: hidden;
}

.lead__wrap img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.lead__wrap img:hover,
.lead__wrap img:active {
    transform: scale(1.1, 1.1);
    transition: 1s all;
}

.lead__page {
    width: 40%;
    font-family: "Montserrat", Poppins, sans-serif;
    font-size: 2rem;
    margin-left: 8px;
}

.lead__page:hover,
.lead__page:active {
    color: var(--gray-low);
    transition: 1s all;
}

.lead__content:hover,
.lead__content:active {
    cursor: pointer;
}

.lead__content:nth-child(2) .lead__page {
    text-align: right;
}


/* section: top__ceoMessage: PC 1024px-*/
@media screen and (min-width: 1024px) {
    .lead {
        margin: 120px auto;
        max-width: 1400px;
    }

    .lead__header {
        display: flex;
        text-align: left;
        gap: 2%;
        max-width: 1200px;
    }

    .section__lead__lead {
        width: 46%;
    }

    .section__txt__lead {
        width: auto;
        text-align: left;
    }

    .lead__list {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin-top: 60px;
    }

    .lead__link {
        flex-direction: column;
        gap: 10px;
    }

    .lead__content {
        width: auto;
    }

    .lead__list li:nth-of-type(2) .lead__link {
        flex-direction: column;
    }

    .lead__wrap {
        width: 80%;
    }

    .lead__page {
        width: 100%;
        text-align: center;
        font-weight: 500;
    }

    .lead__list li:nth-of-type(2) .lead__page {
        width: 100%;
        text-align: center;
    }

}

/* === Lead  END === */

/* ============
section: COLLABORATION
============ */
.collaboration {
    width: var(--contentWidth);
    margin: 0 auto;
}

.section__lead__collaboration {
    padding-left: 0;
}

.collaboration__img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-top: 20px;
}

.collaboration__img--pc {
    display: none;
}

@media screen and (min-width: 769px) {
    .collaboration {
        width: 75%;
        display: flex;
        justify-content: center;
        gap: 10%;
    }

    .collaboration-content {
        width: 50%;
    }

    .collaboration__img--sp {
        display: none;
    }

    .imgPC__wrap {
        width: 50%;
    }

    .collaboration__img--pc {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 2/1;
    }
}

/* === Collaboration END === */

/* ============
section: SHOP-IG
============ */
.shop-ig {
    margin-top: 80px;
}

.shop__wrap {
    width: var(--contentWidth);
    margin: 0 auto;
}

.shop__wrap a {
    display: flex;
    justify-content: center;
    gap: 10%;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    padding: 8px 16px;
    background-color: #b22222;
    color: var(--primary-white);
    transition: background-color 0.4s ease;
}

.shop__wrap a:hover {
    background-color: rgba(178, 34, 34, 0.7);
}

.shop__img {
    display: block;
    height: 80%;
    max-height: 90px;
    width: auto;
    object-fit: contain;
}

.shop__wrap span {
    display: block;
}


.section__txt__shop {
    width: var(--contentWidth);
    margin: 16px auto;
}

.section__lead__ig {
    font-family: "Montserrat", Poppins, sans-serif;
    font-weight: 500;
    padding-left: 0;
}

.section__txt__ig {
    text-align: center;
}

.lightwidget-widget {
    margin-top: 24px;
}

.ig-btn {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: normal;
    width: fit-content;
    border: solid 1px #292929;
    color: var(--primary-white);
    background-color: var(--text-black);
    padding: 8px 16px;
    margin: 24px auto;
    transition: background-color 0.3s ease;
}

.ig-btn:hover {
    background-color: var(--primary-white);
    color: var(--text-black);
}

@media screen and (min-width: 769px) {
    .shop-ig {
        width: 84%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        gap: 8%;
        margin: 60px auto 0;
    }

    .shop__wrap {
        width: 50%;
    }

    .shop__img {
        margin: 0 auto;
        max-width: 500px;
    }

    .section__txt__shop {
        width: 80%;
        max-width: 600px;
        margin-top: 40px;
    }

    .section__lead__ig {
        margin: 40px auto 0;
    }

    .ig__wrap {
        width: 50%;
    }

    .shop__wrap a {
        justify-content: center;
        gap: 10%;
        max-width: 600px;
        margin: 0 auto;
        padding: 12px 32px;
    }

    .ig-btn {
        padding: 12px 32px;
        font-size: 1.8rem;
    }

}

/* === Shop-IG END === */