/* CSS Document */

/* 共通 */
:root {
	--color-black: #353535;
	--color-black-rgb: 53,53,53;
	--color-bg: #EEEEEE;
    --color-btn: #7B7B7B;
    --color-btn2: #3D3D3D;
}
.zero {
    color: var(--color-black);
    font-size: 16px;
    background-color: #fff;
}
.zero-inner {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}
.zero a * { 
    color: var(--color-black);
}
.font-mincho {
    font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}
@media screen and (max-width:540px){
    .zero {
        font-size: 14px;
    }
}

/* メインV */
.mainV {
    background-color: var(--color-bg);
    padding-top: 8em;
}
.mainV_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    column-gap: 3%;
}
.mainV_textbox {
    text-align: center;
    padding-bottom: 6em;
}
.mainV_textbox_logo {
}
.mainV_textbox_logo_img {
    display: block;
    width: 20%;
    max-width: 80px;
    margin: 1em auto 0;
}
.mainV_textbox_logo_txt {
    font-size: clamp(18px, 2vw, 27px);
}
.mainV_textbox_title {
    font-size: clamp(14px, 1.5vw, 24px);
    text-align: center;
    margin-top: 1em;
}
.mainV_picbox {
    width: 34%;
    min-width: 310px;
    text-align: center;
}
.mainV_picbox_img {
}
@media screen and (max-width:690px){
    .mainV {
        background-image: url(zero-lineup_img/mainV_woman.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: -60px bottom;
        position: relative;
    }
    .mainV::after {
        content: "";
        width: 100%;
        height: 100%;
        background-image: linear-gradient(90deg, #d5d5d5, #cdcdcd);
        opacity: .6;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }
    .mainV_inner {
        position: relative; 
        z-index: 1;
    }
    .mainV_picbox {
        display: none;
    }
}
@media screen and (max-width:590px){
    .mainV {
    }
    .mainV_textbox {
        width: 100%;
    }
    .mainV_textbox_logo_img {
        width: 14%;
    }
}

/* 商品一覧 */
.sec-lineup {
    padding: 6em 0 8em;
}
.sec-lineup_inner {
    
}
.sec-lineup_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4em 5%; 
}
.sec-lineup_list_item {
    
}
.sec-lineup_list_item a {
    display: block;
    width: 100%;
    height: 100%;background-color: var(--color-bg);
    border: 1px solid #D5D5D5;
    border-radius: 8px;
    padding: 1.6em;
    
}
.sec-lineup_list_item .picbox {
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 2em 0;
    margin-bottom: 1em;
}
.sec-lineup_list_item .picbox_img {
    display: block;
    width: 20%;
    margin: 0 auto;
}
.sec-lineup_list_item .textbox {
    font-size: 14px;
    text-align: left;
}
.sec-lineup_list_item .textbox_tit {
    font-size: 12px
}
.sec-lineup_list_item .textbox_tit_eng {
    font-family: 'EvolveSans', sans-serif;
    font-size: clamp(17px, 2.2vw, 26px);
    margin-bottom: .2em;
}
.sec-lineup_list_item .textbox_tit_jp {
    font-size: 1em;
    margin-bottom: 2em;
    padding: 0;
    text-align: left;
    letter-spacing: 1px;
}
.sec-lineup_list_item .textbox_text {
    color: #737373;
}
.sec-lineup_list_item .textbox_btn {
    background-color: var(--color-btn);
    text-align: center;
    border-radius: 100vh;
    font-size: 1.2em;
    font-weight: bold;
    padding: .4em;
    margin-top: 1.2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
}
.sec-lineup_list_item a:hover .textbox_btn {
    background-color: var(--color-btn2);
}
.sec-lineup_list_item .textbox_btn_txt {
    flex: 1;
    text-align: center;
    font-size: 15px;
    color: #fff;
    padding-left: 8%;
}
.sec-lineup_list_item .textbox_btn_arrow {
    /*display: block;*/
    width: 11%;
    aspect-ratio: 1 / 1;
    background-color: var(--color-btn2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}
.sec-lineup_list_item a:hover .textbox_btn_arrow {
    background-color: var(--color-btn);
}
.sec-lineup_list_item .textbox_btn_arrow_img {
    width: 40%;
}
@media screen and (max-width:768px){
    .sec-lineup_list {
        grid-template-columns: repeat(2, 1fr);
    }
    .sec-lineup_list_item .textbox_tit_eng {
        font-size: 21px;
    }
}
@media screen and (max-width:560px){
    .sec-lineup_inner {
        width: 80%;
    }
    .sec-lineup_list {
        grid-template-columns: repeat(1, 1fr);
    }
    .sec-lineup_list_item a {
        padding: 2em;
    }
}


