@charset "utf-8";

.menu-header {
    display: block;
    height: 100vh;
    background-image: url(../img/bg_b.jpg);
}

.menu-fv {
    display: flex;
    align-items: center;
    width: 100%;
}

.menu-fv-img {
    background-image: url(../img/menu/mv_menu_pc.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 81vh;
}

.menu-fv-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    padding-bottom: 100px;
}

.logo_box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
}

.txt_box {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 75%;
    padding: 20px 61px 56px 0;
}

.menu-fv-logo {
    width: 28%;
}

.menu-fv-text-group {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 20%;
}


.menu-fv-text {
    font-size: 20px;
    line-height: 1.8;
}

@media screen and (max-width:1024px) {
    .menu-fv-logo {
        width: 4.3rem;
        padding-bottom: 0.5rem;
    }

    .menu-fv-img {
        height: 85vh;
    }

    .menu-fv-img {
        background-image: url(../img/menu/mv_menu_tb.jpg);
        height: 81vh;
    }
}

@media screen and (max-width:767.9px) {
    .menu-header {
        height: 50vh;
    }

    .menu-fv-title {
        width: 30%;
    }

    .title-img {
        width: 45%;
    }

    .logo_box {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30%;
    }

    .txt_box {
        display: flex;
        justify-content: end;
        align-items: center;
        width: 75%;
        padding: 2.3rem 1.5rem 2.9rem 0;
    }

    .menu-fv-logo {
        width: 3.7rem;
        padding-bottom: 0.5rem;
        margin-top: 0;
    }

    .menu-fv-text-group {
        width: 100%;
        align-items: center;
    }

    .menu-fv-img {
        background-image: url(../img/menu/mv_menu_sp.jpg);
        height: 40vh;
    }

    .menu-fv-text {
        font-size: 1.2rem;
        line-height: 1.8;
        height: 44%;
    }
}

/* ------------------
lineup
---------------------*/
.tab {
    cursor: pointer;
    width: 10%;
    text-align: center;
    transition: 0.3s;
}

.content {
    display: none;
}

.lineup {
    padding: 10.4% 6.3% 11.7%;
    background-image: url(../img/bg_w.jpg);
	/*background-size:cover;*/
}

.lineup a:hover {
    opacity:0.6;
}

.lineup-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #808080;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid #808080;
    padding: 0 49px 22px;
}

.lineup-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 105px;
}

.lineup-main-img {
    width: 50%;
}

.lineup-main-text {
    width: 40%;
    color: #111111;
    padding: 0 30px 0 50px;
}

.lineup-title {
    font-size: 24px;
    font-weight: 700;
}

.lineup-price {
    font-size: 18px;
    margin-top: 20px;
    line-height: 2;
}

.lineup-price-big {
    font-size: 18px;
    margin-top: 10px;
    line-height: 2;
	font-weight:600;
}

.lineup-text {
    font-size: 18px;
    margin-top: 20px;
    line-height: 2;
}

.lineup-text-small {
    font-size: 14px;
    margin-top: 20px;
    line-height: 2;
}

.lineup-btn {
    position: relative;

}

.lineup-btn::after {
    content: "";
    position: absolute;
    background-image: url(../img/arrow-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 70px;
    height: 50px;
    bottom: -180px;
    right: 0px;
    transition: 0.3s;
    cursor: pointer;
}

.lineup-btn::after:hover {
    opacity: 0.3;
}

.lineup-btn {
    width: 10%;
    transition: 0.3s;
}

.lineup-content {
    margin-top: 98px;
}

.lineup-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5%;
}

.lineup-item {
    margin-top: 21px;
    width: 240px;
    height: auto;
    display: flex;
    flex-direction: column;
    color: #111111;
}

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

.lineuplist-text {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
	height: 100px;
}

.lineuplist-title {
    font-size: 14px;
    font-weight: 700;
}

.price-group {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 15px;
}

.lineuplist-arrow {
    display: flex;
    transition: 0.3s;
}

.lineup-btn:hover,
.lineuplist-arrow:hover {
    opacity: 0.5;
}

/* activeクラスの追加で文字色変更 */
.tab.active {
    color: #111111;
}

/* acttiveクラスの追加でコンテンツを表示 */
.content.active {
    display: block;
}

@media screen and (max-width:1024px) {
    .lineup-item {
        width: 31.4%;
    }

    .lineup-main-img {
        width: 65%;
    }
}

@media screen and (max-width:767.9px) {
    
    .content {
        display: none;
    }
    
    .lineup {
        padding: 5rem 1.5rem;
    }
    
    .lineup-tab {
        font-size: 1.2rem;
        padding: 0 1.4rem 1.7rem;
        gap: 1rem;
    }

    .tab {
        width: auto;
        text-align: center;
    }

    .lineup-group {
        display: block;
        padding-top: 1.5rem;
    }

    .lineup-main-img {
        width: 100%;
    }

    .lineup-main-text {
        width: 100%;
        margin-top: 8px;
        padding: 0;
    }

    .lineup-title {
        font-size: 1.6rem;
    }

    .price-group {
        margin-top: 1.5rem;
    }

    .lineuplist-arrow {
        width: 2rem;
    }

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

    .lineup-price {
        font-size: 1.6rem;
        margin-top: 2.5rem;
    }
	
	.lineup-price-big {
        font-size:14px;
    }

    .lineup-text {
        font-size: 1.4rem;
        margin-top: 1.2rem;
    }
	
	.lineup-text-small {
        font-size: 12px;
        margin-top: 1.2rem;
    }

    .lineup-btn::after {
        width: 4rem;
        bottom: -4vh;
        right: -30.7rem;
    }

    .lineup-content {
        margin-top: 9.6rem;
    }

    .lineup-list {
        gap: 1.6rem 2.1rem;
    }

    .lineup-item {
        width: 16rem;
        margin-top: 0;
    }

    .lineuplist-text {
        margin-top: 0.8rem;
        min-height: 20%;
    }

    .lineuplist-title {
        font-size: 1.2rem;
    }
}