/* =========================================
トップページ専用 CSS
========================================= */

/* -----------------------------------------
FV（ファーストビュー）
----------------------------------------- */
.fv {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.fv_img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 55vw;
    min-width: 600px;
}

.fv_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FV テキスト */
.fv_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

/* FVタイトル初期色は白 */
.fv_title,
.fv_sub {
    color: #333;
}

.fv_title {
    font-family: 'Roboto', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow:
        2px 2px 0 #fff,
        -2px 2px 0 #fff,
        2px -2px 0 #fff,
        -2px -2px 0 #fff;
}

.fv_sub {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-shadow:
        1px 1px 0 #fff,
        -1px 1px 0 #fff,
        1px -1px 0 #fff,
        -1px -1px 0 #fff;
}

/* SNS（右下固定） */
.fv_sns {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 12px;
}

.fv_sns img {
    width: auto;
    height: 54px;
}

/* =============================
スマホ
============================= */
@media (max-width: 768px) {

    .fv {
        height: 85vh;
    }

    .fv_img {
        width: 100%;
        min-width: auto;
    }

    .fv_text {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .fv_title {
        font-size: clamp(20px, 7vw, 30px);
    }

    .fv_sub {
        font-size: clamp(12px, 4vw, 16px);
    }

    .fv_sns img {
        height: 48px;
    }
}

/* -----------------------------------------
120 YEARS セクション（黄色背景）
----------------------------------------- */
.history {
    background: #FFCC00;
    background: linear-gradient(0deg, rgba(255, 204, 0, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 200px 0;
}

.history_inner {
    width: min(1110px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.history_lead {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
}

.history_num {
    font-size: 120px;
    font-weight: bold;
    margin-bottom: 20px;
}

.history_num small {
    font-size: 48px;
    font-weight: bold;
    margin-left: 5px;
}

.learn_more {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    width: 13.5rem;
    height: auto;
}

.learn_more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #ffffff;
    border-radius: 1.625rem;
}

.learn_more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #333333;
}

.learn_more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.learn_more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -5px;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #333;
    border-right: 0.125rem solid #333;
    transform: rotate(45deg);
}

.learn_more .button_text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.8rem 0 0.8rem 4rem;
    margin: 0;
    color: #333;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1em;
    text-align: left;
    text-transform: uppercase;
}

.learn_more:hover .circle {
    width: 100%;
}

.learn_more:hover .circle .icon.arrow {
    background: #333;
    transform: translate(1rem, 0);
}

.learn_more:hover .button_text {
    color: #333;
}

.history_right {
    width: 60%;
    position: relative;
    max-width: 534px;
    min-height: 380px;
}

.history_right img {
    position: absolute;
    width: 100%;
    max-width: 360px;
}

.history_right img:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 2;
}

.history_right img:nth-child(2) {
    bottom: 0;
    right: 0;
    transform: translateY(100px);
    z-index: 1;
}

.history_text {
    font-size: 16px;
    line-height: 2.0em;
    margin-bottom: 1.5em;
    font-weight: 500;
}

/* スマホ */
@media (max-width: 768px) {
    .history {
        padding: 120px 0;
    }

    .history_inner {
        flex-direction: column;
        text-align: center;
    }

    .history_left,
    .history_right {
        width: 100%;
        margin-bottom: 30px;
    }

    .history_lead {
        font-size: 28px;
        font-weight: bold;
    }

    .history_num {
        font-size: 60px;
    }

    .history_num small {
        font-size: 34px;
    }

    .history_text {
        font-size: 14px;
    }

    .history_right img {
        max-width: 80%;
        min-height: auto;
    }

}


/* -----------------------------------------
3 POINTS（黒背景）
----------------------------------------- */
.points {
    background: #222;
    color: #fff;
    padding: 100px 0;
}

.points .inner {
    max-width: 1000px;
}

.point_head {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.point_head .num {
    font-size: 62px;
    font-weight: 700;
    line-height: 1;
    margin-left: 4px;
}

.points_title {
    font-weight: 500;
    font-size: 72px;
    text-align: center;
    margin-bottom: 60px;
}

.points_title span {
    font-weight: 500;
    font-size: 188px;
    color: #FDD33E;
    line-height: 1;
    display: inline-block;
}

.point {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.point.reverse {
    flex-direction: row-reverse;
}

.point_img {
    max-width: 342px;
}

.point_img img {
    width: 100%;
}

.point_text {
    width: 55%;
}

.point_head span {
    color: #FDD33E;
    font-weight: bold;
}

.point_text p {
    font-size: 16px;
    line-height: 2.0em;
}


/* スマホ */
@media (max-width: 768px) {
    .points_title {
        font-size: clamp(28px, 7vw, 46px);
    }

    .points_title span {
        font-size: clamp(62px, 18vw, 120px);
    }

    .point {
        flex-direction: column;
    }

    .point.reverse {
        flex-direction: column;
    }

    .point_head {
        font-size: 24px;
        text-align: center;
    }

    .point_head .num {
        font-size: clamp(32px, 12vw, 46px);
        margin-left: 2px;
    }

    .point_img,
    .point_text {
        width: 100%;
    }
}


/* -----------------------------------------
BRAND SERIES
----------------------------------------- */
.brand {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.brand_title {
    font-size: 64px;
    margin-bottom: 1.5em;
    ;
}

.brand_grid {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.brand_grid img {
    width: 100%;
    background: #000;
}


/* スマホ */
@media (max-width: 768px) {
    .brand_title {
        font-size: 28px;
    }

    .brand_grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}


/* -----------------------------------------
ONLINE SHOP バナー
----------------------------------------- */
section.online {
    background: linear-gradient(134deg, rgb(34 34 34) 0%, rgb(169 169 169) 100%);
}

.online a {
    width: min(1200px, 92%);
    display: block;
    margin: 0 auto;
    padding: 100px 0;
}

.online a img {
    width: 100%;
    display: block;
}

/* スマホ */
@media (max-width: 768px) {
    .online a {
        padding: 20px 0;
    }
}