@charset "utf-8";

/* CSS Document */
.fix {
    position: fixed;
}

a {
    display: block;
    height: 100%;
}

h4 {
    margin-bottom: 1rem;
    font-size: 1.1em;
    font-weight: 500;
}

.line {
    border: solid 0.5px #EBEBEB;
    margin: 6rem 0 0 0;
}

.br415 {
    display: none;
}

@media screen and (max-width:415px) {
    /*
    * {
        font-size: 1.4rem;
    }
*/

    .br415 {
        display: block;
    }

    .line {
        border: solid 0.3px #EBEBEB;
        margin: 30px 0 0 0;
    }

    .pc {
        display: none;
    }
}

#header_read {
    background-color: #fff;
    height: 210px;
    height: 230px;
}

@media screen and (max-width:480px) {
    #header_read {
        /*        height: 206px;*/
        height: 185px;
        height: 125px;
    }
}


/*--------------------------------------
 #header
---------------------------------------*/
header {
    height: 170px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    /*最前面へ*/
    transition: all 0.5s ease;
    background-color: #fff;
}

/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
header.scroll-nav {
    height: 90px;
    /* コンテンツの背景が白でもナビゲーションだと分かりやすいように影をつける */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

header.scroll-nav .top_info {
    display: none;
    transition: all 0.5s ease;
}

/* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
header.scroll-nav #header_pc {
    top: 0;
    left: 0;

}


/**********************************　
	以下、ハンバーガーメニューの設定　
************************************/



@media (max-width: 990px) {
    html {
        scroll-padding-top: 50px;
        scroll-behavior: initial;
        /* 固定ヘッダの高さ分 */
    }
}



/*--------------------------------------
section
---------------------------------------*/


.section_ttl {
    padding: 7.2rem 0 3.7rem;
    display: flex;
    align-items: baseline;
    gap: 2.5rem;
}

.section_ttl p {
    font-size: 1.6rem;
}

.section_ttl h3 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 3rem;
}

.section_ttl p {
    font-size: 1.6rem;
}

.xscroll_list h6 {
    font-size: 1.8rem;
    padding-bottom: 1rem;
}

.xscroll_list .item_list a {
    width: calc((90vw - 60px)/5.5);
    /*width: calc((90vw - 60px)/5.2);*/
}

/* .xscroll_list .item_list img {
	width: 300px;
	height: 300px;
} */


@media screen and (max-width: 480px) {
    .section_ttl {
        flex-direction: column;
        gap: 1rem;
        padding: 4rem 0 2.2rem;

    }

    .section_ttl h3 {
        font-size: 2rem;
    }

    .section_ttl p {
        font-size: 1.4rem;
    }

    .xscroll_list h6 {
        font-size: 1.6rem;
    }

    .xscroll_list .item_list a {
        min-width: calc((90vw - 2rem)/2.2);
    }

    .xscroll_list .item_list img {
        width: 100%;
        height: auto;
    }

}

/*==================================================
横スクロールするアイテム
===================================*/
.xscroll {
    overflow: hidden;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    /*IE(Internet Explorer)・Microsoft Edgeスクロールバー非表示*/
    -ms-overflow-style: none;
    /*Firefoxスクロールバー非表示*/
    scrollbar-width: none;
}

/*Google Chrome、Safariスクロールバー非表示*/
.xscroll::-webkit-scrollbar {
    display: none;
}

.xscroll_list {
    display: flex;
    gap: 15px;
    /* width: 500vw; */
    height: auto;
    /* white-space: nowrap; */
}

@media screen and (max-width:480px) {
    .xscroll_list {
        gap: 8px;

    }
}

/*--------------------------------------
item
---------------------------------------*/
.item_text_area {
    /*    background-color: #fff;*/
    box-sizing: border-box;
    padding: 1rem 1rem 8rem 1rem;
}

/* .item_list {
	max-width: 320px;
	width: 100%;
} */

.item_list .item_ttl {
    padding: 0.8rem 0rem 0.8rem 0rem;
}

.item_list .item_maker {
    display: block;
    padding: 0rem 0rem 0.8rem 0rem;
    color: #949494;
}

.item_list .item_price {
    font-family: 'Lexend Deca', sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.item_list img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    object-fit: cover;
}

.item_list_wrapper {
    overflow: hidden;
    /*    border-radius: 5px;*/
    display: flex;
    flex-wrap: wrap;
}

.item_list_wrapper .item_list {
    width: calc(100% / 4);
    height: auto;
    background-color: #fff;
}

@media screen and (max-width:480px) {
    .item_list_wrapper .item_list {
        width: calc(100% / 2);
    }

    .item_text_area {
        padding: 0.5rem 1rem 5rem 0.7rem;
    }

    .item_list .item_ttl {
        padding: 0.5rem 0rem 0.4rem 0rem;
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .item_list .item_maker {
        font-size: 1.3rem;
    }

    .item_list .item_price {
        font-size: 1.5rem;
    }

    .item_list img {
        width: 100%;


    }
}

/*--------------------------------------
切り抜きアイテムのリスト
---------------------------------------*/


.clipping_item_list dl {
    padding: 1rem 0rem 0rem 0rem;
}


@media screen and (max-width:480px) {
    .clipping_item_list img {
        width: 150px;
        height: 150px;
    }

    .clipping_item_list dl {
        padding: 0.8rem 0rem 0rem 0rem;
    }
}

/*--------------------------------------
more もっと見るボタン
---------------------------------------*/
.inner {
    margin: 0 auto;

}

.item_list_wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
}

.button {
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
    border-radius: 30px;
    padding: 15px 0;
    border: 1px solid #000;
    box-sizing: border-box;
    border-radius: 50px;
}

.button:hover {
    cursor: pointer;
}

.button--more i {
    margin-left: 5px;
}

.button--close i {
    margin-left: 5px;
}

/*--------------------------------------
カテゴリから探す
---------------------------------------*/
#search_category .cate_item_list_wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
    width: 100%;
    height: auto;
}

#search_category .cate_item_list {
    border-radius: 10px;
    border: solid 1px #EBEBEB;
    overflow: hidden;
}

.cate_item_list .item_ttl {
    padding: 1rem 0rem 0.8rem 0rem;
}

.cate_item_list .item_maker {
    padding: 0rem 0rem 0.8rem 0rem;
    color: #949494;
}

.cate_item_list img {
    width: 100%;

}


#search_category h5 {
    box-sizing: border-box;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
}

@media screen and (max-width:480px) {
    #search_category .cate_item_xscroll {
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        /*IE(Internet Explorer)・Microsoft Edgeスクロールバー非表示*/
        -ms-overflow-style: none;
        /*Firefoxスクロールバー非表示*/
        scrollbar-width: none;
    }

    /*Google Chrome、Safariスクロールバー非表示*/
    #search_category .cate_item_xscroll::-webkit-scrollbar {
        display: none;
    }


    #search_category .cate_item_list_wrapper {
        grid-template-columns: repeat(9, 1fr);
        grid-gap: 5px;
        width: 250vw;
        white-space: nowrap;
    }

    #search_category ul li {
        display: inline-block;
        width: calc((95vw-10px)/3);
    }

    #search_category h5 {
        padding: 0.8rem;
        font-size: 1.4rem;
    }
}

/*--------------------------------------
ブランドから探す
---------------------------------------*/
#search_brand .cate_item_list_wrapper {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(11, 1fr);
    grid-gap: 15px;
    width: 100%;
    height: auto;
    /* place-items: center; */
}

#search_brand .cate_item_list {
    width: fit-content;
}

#search_brand .cate_item_list a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#search_brand .cate_item_list img {
    border-radius: 50%;
    width: 9rem;
    height: 9rem;
    border: solid 1px #EBEBEB;
    overflow: hidden;
    object-fit: cover;
}

#search_brand h5 {
    box-sizing: border-box;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: normal;
    padding: 1rem 0;
}

@media screen and (max-width:480px) {
    #search_brand .cate_item_xscroll {
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        /*IE(Internet Explorer)・Microsoft Edgeスクロールバー非表示*/
        -ms-overflow-style: none;
        /*Firefoxスクロールバー非表示*/
        scrollbar-width: none;
    }

    /*Google Chrome、Safariスクロールバー非表示*/
    #search_brand .cate_item_xscroll::-webkit-scrollbar {
        display: none;
    }


    #search_brand .cate_item_list_wrapper {
        grid-template-columns: repeat(11, 1fr);
        grid-gap: 8px;
        width: fit-content;
    }

    #search_brand ul li {
        display: inline-block;
        width: calc((95vw-10px)/3);
    }

    #search_brand h5 {
        padding: 0.8rem 0;
        font-size: 1.2rem;
    }

    #search_brand .cate_item_list img {
        width: 6.5rem;
        height: 6.5rem;
    }
}

/*--------------------------------------
 container
---------------------------------------*/


/*----- footerのh2と共通 -----*/
h2.titlebar {
    padding: 5px 10px;
    margin-bottom: 10px;
    border-left: solid 5px #000000;
    font-weight: normal;
}

h2.titlebar .title {
    font-family: Montserrat, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 18px;
    font-size: 1.2rem;
    -webkit-text-stroke: 0.2px #000;
}

h2.titlebar .subtitle {
    margin-left: 10px;
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 16px;
    font-size: 1rem;
}
