@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Alatsi&family=Noto+Sans+JP:wght@400;700&display=swap');

body {
    font-family: 'Alatsi', 'Noto Sans JP', sans-serif;
}

html {
    font-size: 62.5%;
}


.pc {
    display: block;
}

.sp {
    display: none;
}

header {
    background: #000;
    color: #fff;
}

header a {
    color: #fff;
}

.topbox {
    max-width: 1200px;
    margin: 0 auto;
}

.hd_nav {
    padding: 15px;
    font-size: 1.4rem;
    border-bottom: 1px solid #606060;
}

.hd_nav div {
    display: flex;
    justify-content: space-between;
}

.hd_nav ul {
    display: flex;
}

.hd_nav li {
    margin-right: 15px;
    border-left: 1px solid #606060;
    padding-left: 15px;
}

.pc_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.pc_header>a {
    width: 15%;
}

.pc_header>div {
    display: flex;
    width: 80%;
    justify-content: flex-end;
    align-items: center;
}

.pc_header>div img {
    transition: 0.3s;
}

.pc_header>div img:hover {
    opacity: 0.6;
}

.joker_logo {
    width: 140px;
}

.search-form {
    display: flex;
    width: 35%;
}

.search-form form {
    display: table;
    table-layout: fixed;
    font-size: 1.4rem;
    width: 100%;
    margin-right: 30px;
}

.search-form input[type=text] {
    display: table-cell;
    width: 100%;
    height: 38px;
    padding: 10px;
    border-radius: 0;
    -webkit-appearance: none;
    border: 1px solid #ccc;
}

.search-form .search-button {
    display: table-cell;
    vertical-align: top;
    width: 13%;
}


.search-form .search-button input[type="image"] {
    width: 38px;
    height: 38px;
    font-weight: bold;
    color: #444;
    border: none;
    background: #ddd;
    padding: 0;
    border-radius: 0;
    -webkit-appearance: none;
}

a.cartbtn {
    background: #545454;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1.5rem;
    display: flex;
    margin: 15px 0;
    align-items: center;
    transition: 0.3s;
}

a.cartbtn:hover {
    background: #740000;
    color: #fff;
}

a.cartbtn img {
    margin-right: 10px;
}


@media (max-width: 767px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .sp_header h1 {
        padding: 10px;
    }

    .sp_header_box {
        display: flex;
        justify-content: space-between;
    }

    .sp_header_box>a {
        width: 30%;
        padding-left: 15px;
    }

    .sp_header>a img {
        width: 100%;
    }

    .joker_logo {
        width: 110px;
    }

    /*
    .cartbtn_box {
        width: 35%;
        margin-right: 10px;
    }

    a.cartbtn {
        font-size: 1.3rem;
        padding: 5px 10px;
        justify-content: center;
    }
*/
    .hd_banner {
        width: 55%;
        display: flex;
    }

    .hd_banner img {
        width: 100%;
    }

 
}