.spDisplay {
    display: none;
}

@media screen and (max-width: 764px) {
    .pcDisplay {
        display: none;
    }

    .spDisplay {
        display: block;
    }
}

body {
    line-height: 2;
    color: #191a1c;
    font-size: 18px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
}


a {
    color: #3680d4;
}

a:hover,
button:hover {
    opacity: 0.65;
    transition: all 0.25s ease-in-out;
}

img {
    pointer-events: none;
}

main {
    background-color: #eff4f5;
}

.blockWrap {
    display: grid;
    grid-template-columns: 300px 1fr;
}

@media screen and (max-width: 764px) {
    .blockWrap {
        display: block;
    }
}

.blockSearch {
    position: relative;
    background-color: #ffffff;
    padding: 24px 16px;
}

@media screen and (max-width: 764px) {
    .blockSearch {
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100vw - 60px);
        height: 100vh;
        z-index: 10;
        transition: transform 0.3s ease;
        transform: translateX(-100%);
    }

    .blockSearch.active {
        transform: translateX(0);
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
    }
}

.spMenuClose {
    display: none;
}

@media screen and (max-width: 764px) {
    .spMenuClose {
        position: absolute;
        display: block;
        top: 16px;
        right: 14px;
        width: 28px;
        height: 28px;
        line-height: 1;
        cursor: pointer;
    }

    .spMenuClose img {
        width: 100%;
    }
}

.slide-enter-active, .slide-leave-active {
    transition: transform 0.3s ease;
}

.slide-enter-from, .slide-leave-to {
    transform: translateX(-100%);
}

.slide-enter-to, .slide-leave-from {
    transform: translateX(0);
}

.blockResult {
    padding-bottom: 80px;
}

h1 {
    line-height: 1.4;
    font-size: 14px;
    font-weight: 300;
}

h1 .h1Title {
    font-size: 24px;
}

@media screen and (max-width: 764px) {
    h1 {
        font-size: 12px;
    }

    h1 .h1Title {
        font-size: 18px;
    }
}

.titleWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.titleSPButton {
    display: none;
}

@media screen and (max-width: 764px) {
    .titleSPButton {
        display: block !important;
        width: 32px;
        line-height: 1;
    }

    .titleSPButton img {
        width: 100%;
    }
}

.topText {
    font-weight: 200;
    margin-top: 24px;
}

.centerText {
    text-align: center;
    margin-top: 24px;
}

@media screen and (max-width: 764px) {
    .centerText {
        text-align: left;
    }
}

.noteText01 {
    font-size: 14px;
}

@media screen and (max-width: 764px) {
    .noteText01 {
        margin-top: 16px;
    }
}

input {
    position: relative;
    width: 100%;
    border-radius: 1em;
    background-color: #eff4f5;
    font-size: 14px;
    padding: 4px 8px;
}

input::placeholder {
    color: #cccccc;
}


footer {
    background-color: #191a1c;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}


@media screen and (max-width: 764px) {
    footer {
        font-size: 16px;
    }

    footer .noteText01 {
        font-size: 12px;
        margin-top: 0;
    }
}

.searchBox {
    position: relative;
    margin-bottom: 24px;
}

.searchBox::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 10px);
    left: calc(100% - 28px);
    width: 20px;
    height: 20px;
    background: url(search.png) no-repeat 0 0;
    background-size: contain;
    z-index: 2;
}

.tagButton {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tagButton button {
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 14px;
    font-size: 14px;
    padding: 0 12px;
}

.tagButton button.active {
    background: #191a1c;
    color: #ffffff;
}

.tagButton button.optionBtn {
    display: block;
    background: #e1e9eb;
    border-radius: 4px;
}

.mixWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    line-height: 1.6;
    margin-top: 16px;
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
}

.mixItem {
    width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 16px;
}


@media screen and (max-width: 764px) {
    .mixWrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 8px;
        margin-top: 0;
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .mixItem {
        width: auto;
        border-radius: 0;
        padding: 8px;
    }
}

.listItemImg {
    text-align: center;
    margin-bottom: 16px;
}

.listItemImg img {
    width: 100%;
    max-width: 250px;
}

.itemMainTag {
    position: relative;
    background-color: #e1e9eb;
    font-size: 14px;
    padding: 4px 8px;
}

.itemCN {
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
}

.itemHN {
    font-weight: 600;
}

.itemNum {
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;

}

@media screen and (max-width: 764px) {
    .itemCN {
        font-size: 12px;
    }

    .itemHN {
        line-height: 1.4;
        font-size: 14px;
    }
}

.itemSNS {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 6px 12px;
    margin-top: 8px;
}

.listItemTag {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 4px;
    margin-top: 8px;
    padding-bottom: 8px;
}

.listItemTag li {
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 12px;
    padding: 4px 6px;
}

@media screen and (max-width: 764px) {
    .itemSNS {
        gap: 2px 6px;
    }
}

.pagetopLink {
    display: none;
}

@media screen and (max-width: 764px) {
    .pagetopLink {
        position: fixed;
        display: block;
        bottom: 0;
        right: 0;
        width: 48px;
        height: 48px;
    }

    .pagetopLink img {
        width: 100%;
        z-index: 5;
    }

    .pagetopLink::before {
        position: relative;
        content: "";
        display: block;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 40px;
        border-radius: 24px;
        background-color: rgba(60, 60, 60, 0.2);
    }

    .pagetopLink::after {
        position: absolute;
        content: "";
        display: block;
        top: calc(50% - 2px);
        right: 50%;
        width: 8px;
        height: 8px;
        border-top: 1px solid #191a1c;
        border-right: 1px solid #191a1c;
        transform: rotate(-45deg);
    }
}