/* ---- toast notification (categoryと同じ) ---- */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.toast-box {
    min-width: 250px;
    max-width: 300px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}
.toast-box.success {
    background-color: #28a745;
}
.toast-box.removed {
    background-color: #ab2323;
}
.toast-box.error {
    background-color: #dc3545;
}
.toast-message {
    flex: 1;
    padding-right: 0.5rem;
}
.toast-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.search-main {
    padding-top: 15px;
}
.search-main .routes-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 17px;
}
@media screen and (max-width: 1400px) {
    .search-main .routes-wrapper {
        padding: 0 1.5rem;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 991px) {
    .search-main .routes-wrapper {
        padding: 0 10px;
    }
}
.search-main .section-itemSearch {
    padding-top: 50px;
    background-color: #efefef;
}
@media screen and (max-width: 991px) {
    .search-main .section-itemSearch {
        padding-top: 12px;
    }
}
.search-main .section-itemSearch .itemSearch-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 55px;
    position: relative;
}
@media screen and (max-width: 1400px) {
    .search-main .section-itemSearch .itemSearch-wrapper {
        padding: 0 1.5rem;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 991px) {
    .search-main .section-itemSearch .itemSearch-wrapper {
        padding: 0 10px;
    }
}
.search-main .section-itemSearch .itemSearch-wrapper.itemSearch-wrapper_detailSearch {
    margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-wrapper.itemSearch-wrapper_detailSearch {
        margin-bottom: 24px;
    }
}
.search-main .section-itemSearch .itemSearch-form {
    padding-bottom: 8px;
}
.search-main .section-itemSearch.forceSearch-section-itemSearch .itemSearch-form {
    padding-bottom: 0;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-form {
        padding-bottom: 8px;
    }
    .search-main .section-itemSearch.forceSearch-section-itemSearch .itemSearch-form {
        padding-bottom: 0;
    }
}
.search-main .section-itemSearch .itemSearch-title {
    margin-right: 48px;
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #1a1a1a;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-title {
        font-size: 14px;
        line-height: 20px;
    }
}
@media screen and (max-width: 991px) {
    .search-main .section-itemSearch .itemSearch-title {
        margin-right: 25px;
    }
}
.search-main .section-itemSearch .itemSearch-search {
    width: 100%;
    display: flex;
    justify-content: stretch;
    gap: 8px;
}
.search-main .section-itemSearch .itemSearch-search .search-dropdownBtn {
    max-width: 245px;
    width: 100%;
    position: relative;
}
@media screen and (max-width: 991px) {
    .search-main .section-itemSearch .itemSearch-search .search-dropdownBtn {
        max-width: 200px;
    }
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-search .search-dropdownBtn {
        max-width: 105px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-dropdownBtn
    .search-link {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 17px 23px;
    box-sizing: border-box;
    background-color: #1c3388;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-search
        .search-dropdownBtn
        .search-link {
        padding: 10px 8px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-dropdownBtn
    .search-text {
    margin-right: 26px;
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-search
        .search-dropdownBtn
        .search-text {
        font-size: 12px;
        line-height: 17px;
    }
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-search
        .search-dropdownBtn
        .search-text {
        margin-right: 5px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-dropdownBtn
    .search-arrow {
    width: 9px;
    height: 9px;
    display: inline-block;
    position: relative;
    transform: translateY(-30%) rotate(135deg);
    transition: all 0.3s linear 0s;
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-dropdownBtn
    .search-arrow::before {
    content: "";
    height: 1.5px;
    position: absolute;
    background: #ffffff;
    border-radius: 1px;
    top: 0;
    left: 0;
    right: 0;
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-dropdownBtn
    .search-arrow::after {
    content: "";
    width: 1.5px;
    position: absolute;
    background: #ffffff;
    border-radius: 1px;
    top: 0;
    right: 0;
    bottom: 0;
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-dropdownBtn
    .search-arrow.rotate {
    transform: translateY(30%) rotate(315deg);
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-dropdownBtn
    .search-innerNav {
    width: 100%;
    height: 0;
    position: absolute;
    top: 100%;
    z-index: 10;
    overflow-y: scroll;
    background-color: #ffffff;
    transition: all 0.3s linear 0s;
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-dropdownBtn
    .search-innerNav.show {
    height: 50vh;
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-dropdownBtn
    .search-innerNav
    .innerNav-list {
    padding: 11px 19px;
    box-sizing: border-box;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-search
        .search-dropdownBtn
        .search-innerNav
        .innerNav-list {
        padding: 10px 8px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-dropdownBtn
    .search-innerNav
    .innerNav-item
    + .innerNav-item {
    margin-top: 10px;
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-dropdownBtn
    .search-innerNav
    .innerNav-item_link {
    font-family:
        "Helvetica Neue", "Noto Sans JP", Arial, "Hiragino Sans",
        "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-search
        .search-dropdownBtn
        .search-innerNav
        .innerNav-item_link {
        font-size: 12px;
        line-height: 16px;
    }
}
.search-main .section-itemSearch .itemSearch-search .search-input {
    flex-grow: 1;
    position: relative;
}
.search-main .section-itemSearch .itemSearch-search .search-input_text {
    width: 100%;
    height: 100%;
    padding: 18px;
    box-sizing: border-box;
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #8b8b8b;
    border: none;
    border-bottom: 1px solid #1c3388;
    background-color: #ffffff;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-search .search-input_text {
        font-size: 12px;
        line-height: 17px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-input_text::placeholder {
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #8b8b8b;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-search
        .search-input_text::placeholder {
        font-size: 12px;
        line-height: 17px;
    }
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-search .search-input_text {
        padding: 10px;
        border-bottom: none;
    }
}
.search-main .section-itemSearch .itemSearch-search .search-btn {
    max-width: 156px;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-search .search-btn {
        max-width: 38px;
    }
}
.search-main .section-itemSearch .itemSearch-search .search-btn .search-link {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 25px;
    box-sizing: border-box;
    background-color: #515b60;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-search
        .search-btn
        .search-link {
        padding: 10px;
    }
}
.search-main .section-itemSearch .itemSearch-search .search-btn .search-pic {
    max-width: 27px;
    margin-right: 7px;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-search
        .search-btn
        .search-pic {
        max-width: 23px;
        margin-right: 0;
    }
}
.search-main .section-itemSearch .itemSearch-search .search-btn .search-text {
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-search
        .search-btn
        .search-text {
        font-size: 16px;
        line-height: 24px;
    }
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-search
        .search-btn
        .search-text {
        display: none;
    }
}
.search-main .section-itemSearch .itemSearch-search .search-suggest {
    width: 100%;
    height: 0;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    overflow-y: scroll;
    transition: all 0.3s linear 0s;
}
.search-main .section-itemSearch .itemSearch-search .search-suggest.show {
    height: 50vh;
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-suggest
    .suggest-inner {
    padding: 11px 19px 0;
    box-sizing: border-box;
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-suggest
    .suggest-title {
    margin-bottom: 7.5px;
    padding-bottom: 6.5px;
    border-bottom: 1px solid #bababa;
    font-family:
        "Helvetica Neue", "Noto Sans JP", Arial, "Hiragino Sans",
        "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-search
        .search-suggest
        .suggest-title {
        font-size: 12px;
        line-height: 16px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-suggest
    .suggest-list {
    margin-bottom: 42px;
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-suggest
    .suggest-item_link {
    font-family:
        "Helvetica Neue", "Noto Sans JP", Arial, "Hiragino Sans",
        "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-search
        .search-suggest
        .suggest-item_link {
        font-size: 12px;
        line-height: 16px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-search
    .search-suggest
    .suggest-text {
    font-family:
        "Helvetica Neue", "Noto Sans JP", Arial, "Hiragino Sans",
        "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-search
        .search-suggest
        .suggest-text {
        font-size: 12px;
        line-height: 16px;
    }
}
.search-main .section-itemSearch .itemSearch-type {
    display: flex;
    align-items: center;
    padding: 7.5px 13px;
    box-sizing: border-box;
    border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-type {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
}
.search-main .section-itemSearch .itemSearch-type .type-category {
    display: flex;
    align-items: center;
    margin-right: 27px;
    padding-right: 124px;
    box-sizing: border-box;
    border-right: 2px solid #c8c8c8;
}
@media screen and (max-width: 1199px) {
    .search-main .section-itemSearch .itemSearch-type .type-category {
        margin-right: 25px;
        padding-right: 25px;
    }
}
@media screen and (max-width: 991px) {
    .search-main .section-itemSearch .itemSearch-type .type-category {
        margin-right: 10px;
        padding-right: 10px;
    }
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-type .type-category {
        margin-bottom: 15px;
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-type
    .type-category
    .category-list {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    gap: 6px 0;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-type
        .type-category
        .category-list {
        gap: 6px 13px;
    }
}
@media screen and (max-width: 380px) {
    .search-main
        .section-itemSearch
        .itemSearch-type
        .type-category
        .category-list {
        gap: 6px 5px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-type
    .type-category
    .category-item_wrapper {
    display: flex;
    align-items: center;
}
.search-main
    .section-itemSearch
    .itemSearch-type
    .type-category
    .category-item_input {
    margin-right: 16px;
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-type
        .type-category
        .category-item_input {
        margin-right: 5px;
    }
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-type
        .type-category
        .category-item_input {
        margin-right: 3px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-type
    .type-category
    .category-item_label {
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-type
        .type-category
        .category-item_label {
        font-size: 16px;
        line-height: 16px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-type
    .type-category
    .category-item
    + .category-item {
    margin-left: 25px;
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-type
        .type-category
        .category-item
        + .category-item {
        margin-left: 13px;
    }
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-type
        .type-category
        .category-item
        + .category-item {
        margin-left: 0;
    }
}
.search-main .section-itemSearch .itemSearch-type .type-model {
    flex: 1;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 991px) {
    .search-main .section-itemSearch .itemSearch-type .type-model {
        width: 100%;
    }
}
.search-main .section-itemSearch .itemSearch-type .type-model .model-title {
    margin-right: 16px;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-type .type-model .model-title {
        margin-right: 25px;
    }
}
.search-main .section-itemSearch .itemSearch-type .type-model .model-input {
    width: 65%;
    padding: 10px 15px;
    box-sizing: border-box;
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    border: 1px solid #d3ab23;
    border-radius: 10px;
    background-color: #ffffff;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-type .type-model .model-input {
        font-size: 12px;
        line-height: 17px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-type
    .type-model
    .model-input::placeholder {
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #8b8b8b;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-type
        .type-model
        .model-input::placeholder {
        font-size: 12px;
        line-height: 17px;
    }
}
@media screen and (max-width: 991px) {
    .search-main .section-itemSearch .itemSearch-type .type-model .model-input {
        width: 100%;
        flex: 1;
    }
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-type .type-model .model-input {
        padding: 8px 14px;
    }
}
.search-main .section-itemSearch .itemSearch-shape {
    padding: 13px;
    box-sizing: border-box;
    background-color: #fcfcfc;
    border-bottom: 1px solid #707070;
}
.search-main .section-itemSearch .itemSearch-shape .shape-inner {
    display: flex;
    align-items: center;
}
.search-main .section-itemSearch .itemSearch-shape .shape-list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 0;
}
.search-main .section-itemSearch .itemSearch-shape .shape-item {
    margin-right: 25px;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-shape .shape-item {
        margin-right: 10px;
    }
}
.search-main .section-itemSearch .itemSearch-shape .shape-item_wrapper {
    display: flex;
    align-items: center;
}
.search-main .section-itemSearch .itemSearch-shape .shape-item_pic {
    width: 34px;
    height: 34px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.search-main .section-itemSearch .itemSearch-shape .shape-item_pic img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
.search-main .section-itemSearch .itemSearch-shape .shape-item_input {
    margin-right: 12px;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-shape .shape-item_input {
        margin-right: 4px;
    }
}
.search-main .section-itemSearch .itemSearch-shape .shape-item_label {
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 14px;
    color: #000000;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-shape .shape-item_label {
        font-size: 14px;
        line-height: 14px;
    }
}
.search-main .section-itemSearch .itemSearch-size {
    display: flex;
    align-items: center;
}
.search-main .section-itemSearch .itemSearch-size .size-heading {
    max-width: 122px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 12px;
    box-sizing: border-box;
    background-color: #515b60;
}
@media screen and (max-width: 991px) {
    .search-main .section-itemSearch .itemSearch-size .size-heading {
        display: none;
    }
}
.search-main .section-itemSearch .itemSearch-size .size-pic {
    max-width: 22px;
}
.search-main .section-itemSearch .itemSearch-size .size-text {
    font-family:
        "Helvetica Neue", "Noto Sans JP", Arial, "Hiragino Sans",
        "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-size .size-text {
        font-size: 12px;
        line-height: 20px;
    }
}
.search-main .section-itemSearch .itemSearch-size .size-inner {
    width: 100%;
    display: flex;
}
@media screen and (max-width: 991px) {
    .search-main .section-itemSearch .itemSearch-size .size-inner {
        padding: 10px 0;
    }
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-size .size-inner {
        flex-direction: column;
    }
}
.search-main .section-itemSearch .itemSearch-size .size-rangeBar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-size .size-rangeBar {
        flex-direction: row;
        padding: 15px 14px 8px;
    }
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-size
        .size-rangeBar
        .rangeBar-heading {
        flex: 0 0 88px;
        width: 88px;
        justify-content: flex-start;
    }

    .search-main
        .section-itemSearch
        .itemSearch-size
        .size-rangeBar
        .rangeBar-inner {
        flex: 1;
        min-width: 0;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-size
    .size-rangeBar
    + .size-rangeBar {
    border-left: none;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-size
        .size-rangeBar
        + .size-rangeBar {
        border-left: none;
        border-top: none;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-size
    .size-rangeBar
    .rangeBar-heading {
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-main
    .section-itemSearch
    .itemSearch-size
    .size-rangeBar
    .rangeBar-title {
    margin-top: 4px;
    margin-bottom: 8px;
    font-family:
        "Helvetica Neue", "Noto Sans JP", Arial, "Hiragino Sans",
        "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;
    color: #434343;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-size
        .size-rangeBar
        .rangeBar-title {
        font-size: 14px;
        line-height: 19px;
    }
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-size
        .size-rangeBar
        .rangeBar-title {
        margin-bottom: 0;
        margin-right: 2px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .moreInfo-show
    .size-rangeBar
    .rangeBar-heading {
    justify-content: flex-start;
    padding-left: 12px;
    box-sizing: border-box;
}
.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .moreInfo-show
    .size-rangeBar
    .rangeBar-title_pic {
    margin-right: 0;
    margin-left: 6px;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-show
        .size-rangeBar
        .rangeBar-heading {
        flex: 0 0 88px;
        width: 88px;
        justify-content: flex-start;
        padding-left: 0;
    }

    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-show
        .size-rangeBar
        .rangeBar-inner {
        flex: 1;
        min-width: 0;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-size
    .size-rangeBar
    .rangeBar-title_pic {
    max-width: 20px;
    display: none;
    margin-right: 36px;
    vertical-align: middle;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-size
        .size-rangeBar
        .rangeBar-title_pic {
        display: none;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-size
    .size-rangeBar
    .rangeBar-inner {
    flex: 1;
}
.search-main
    .section-itemSearch
    .itemSearch-size
    .size-rangeBar
    .rangeBar-slider {
    height: 3px;
    background-color: #ffffff;
    border-bottom: 1px solid #c8c8c8;
    position: relative;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-size
        .size-rangeBar
        .rangeBar-slider {
        background-color: #dbdbdb;
        border-bottom: none;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-size
    .size-rangeBar
    .rangeBar-slider_bar {
    height: 100%;
    position: absolute;
    left: 0%;
    right: 0%;
    border-bottom: 1px solid #c8c8c8;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-size
        .size-rangeBar
        .rangeBar-slider_bar {
        border-bottom: none;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-size
    .size-rangeBar
    .rangeBar-range {
    position: relative;
}
.search-main
    .section-itemSearch
    .itemSearch-size
    .size-rangeBar
    .rangeBar-range_input {
    width: 100%;
    height: 3px;
    position: absolute;
    top: -4px;
    background: none;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.search-main
    .section-itemSearch
    .itemSearch-size
    .size-rangeBar
    .rangeBar-range_input::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #707070;
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-size
        .size-rangeBar
        .rangeBar-range_input::-webkit-slider-thumb {
        width: 15px;
        height: 15px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-size
    .size-rangeBar
    .rangeBar-range_input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #707070;
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-size
        .size-rangeBar
        .rangeBar-range_input::-moz-range-thumb {
        width: 15px;
        height: 15px;
    }
}
.search-main .section-itemSearch .itemSearch-size .size-rangeBar .rangeBar-num {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-size
        .size-rangeBar
        .rangeBar-num {
        justify-content: center;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-size
    .size-rangeBar
    .rangeBar-num_input {
    max-width: 60px;
    width: 100%;
    padding: 7px 0;
    box-sizing: border-box;
    border: 1px solid #bababa;
    border-radius: 10px;
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-size
        .size-rangeBar
        .rangeBar-num_input {
        font-size: 16px;
        line-height: 16px;
    }
}
@media screen and (max-width: 1199px) {
    .search-main
        .section-itemSearch
        .itemSearch-size
        .size-rangeBar
        .rangeBar-num_input {
        max-width: 50px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-size
    .size-rangeBar
    .rangeBar-num_text {
    margin: 0 4px;
    font-family:
        "Helvetica Neue", "Noto Sans JP", Arial, "Hiragino Sans",
        "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-size
        .size-rangeBar
        .rangeBar-num_text {
        font-size: 11px;
        line-height: 20px;
    }
}
.search-main .section-itemSearch .itemSearch-moreInfo {
    width: 100%;
    background-color: #1c3388;
    margin-bottom: 27px;
    border: none;
    outline: none;
    box-shadow: none;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-moreInfo {
        margin-bottom: 21px;
    }
}
.search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-link {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 19px 32px;
    box-sizing: border-box;
    background-color: #1c3388 !important;
    border: none;
}
@media screen and (max-width: 991px) {
    .search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-link {
        padding: 13px;
    }
}
.search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-text {
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-text {
        font-size: 11px;
        line-height: 14px;
    }
}
.search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-text br {
    display: none;
}
@media screen and (max-width: 991px) {
    .search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-text br {
        display: block;
    }
}
.search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-text span {
    font-size: 14px;
    line-height: 19px;
}
@media screen and (max-width: 1199px) {
    .search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-text span {
        font-size: 9px;
        line-height: 13px;
    }
}
.search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-arrow {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-left: auto;
    position: relative;
    transform: rotate(135deg);
    transition: all 0.3s linear 0s;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-arrow {
        transform: translateY(-30%) rotate(135deg);
    }
}
.search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-arrow::before {
    content: "";
    height: 1.5px;
    background: #ffffff;
    border-radius: 1px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-arrow::after {
    content: "";
    width: 1.5px;
    background: #ffffff;
    border-radius: 1px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}
.search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-arrow.rotate {
    transform: translateY(50%) rotate(315deg);
}
.search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-inner {
    height: auto;
    overflow: visible;
    transition: all 0.3s linear 0s;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}
.search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-show {
    border-top: none;
    box-sizing: border-box;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
}
.search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-dropdownMenu {
    width: 100%;
    display: flex;
    padding: 15px 13px 18px;
    box-sizing: border-box;
    background-color: #efefef;
    border-bottom: none;
    border-top: none !important;
    box-shadow: none !important;
    outline: none !important;
}
.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .itemSearch-size_moreInfo {
    background-color: #efefef;
    padding: 0 13px 18px;
    box-sizing: border-box;
    padding-bottom: 8px !important;
    border: none !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-left: none !important;
    box-shadow: none !important;
}

.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .itemSearch-size_moreInfo
    .size-inner,
.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .itemSearch-size_moreInfo
    .size-rangeBar {
    border: none !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-left: none !important;
    box-shadow: none !important;
}

.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .itemSearch-size_moreInfo
    .size-rangeBar
    .rangeBar-slider,
.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .itemSearch-size_moreInfo
    .size-rangeBar
    .rangeBar-slider_bar {
    border-bottom: none !important;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .itemSearch-size_moreInfo {
        padding: 0 13px 14px;
        padding-bottom: 8px !important;
    }
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-dropdownMenu {
        flex-direction: column;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .moreInfo-dropdownMenu
    .dropdownMenu-inner {
    flex: 1;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-dropdownMenu
        .dropdownMenu-inner {
        padding-left: 14px;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-dropdownMenu
        .dropdownMenu-inner
        + .dropdownMenu-inner {
        margin-top: 19px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .moreInfo-dropdownMenu
    .dropdownMenu-title {
    font-family:
        "Helvetica Neue", "Noto Sans JP", Arial, "Hiragino Sans",
        "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    min-width: 70px;
    margin-right: 30px;
    margin-bottom: 0;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-dropdownMenu
        .dropdownMenu-title {
        font-size: 14px;
        line-height: 20px;
    }
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-dropdownMenu
        .dropdownMenu-title {
        margin-right: 10px;
    }
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-dropdownMenu
        .dropdownMenu-title {
        flex: 0 0 88px;
        width: 88px;
        margin-right: 0;
        font-size: 14px;
        line-height: 19px;
        color: #434343;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .moreInfo-dropdownMenu
    .dropdownMenu-arrow {
    max-width: 250px;
    width: 100%;
    height: 42px;
    position: relative;
}
@media screen and (max-width: 1199px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-dropdownMenu
        .dropdownMenu-arrow {
        max-width: 200px;
    }
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-dropdownMenu
        .dropdownMenu-arrow {
        max-width: 160px;
    }
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-dropdownMenu
        .dropdownMenu-arrow {
        flex: 1;
        max-width: 100%;
        min-width: 0;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .moreInfo-dropdownMenu
    .dropdownMenu-arrow:after {
    content: "";
    width: 15px;
    height: 8px;
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 20px;
    aspect-ratio: 1/0.8660254038;
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    background: #d3ab23;
    transform: translateY(-50%);
    z-index: 9;
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-dropdownMenu
        .dropdownMenu-arrow:after {
        right: 10px;
    }
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-dropdownMenu
        .dropdownMenu-arrow:after {
        right: 20px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .moreInfo-dropdownMenu
    .dropdownMenu-select {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    padding: 10px;
    border: 1px solid #d3ab23;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 13px;
    line-height: 13px;
    color: #000000;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-dropdownMenu
        .dropdownMenu-select {
        font-size: 16px;
        line-height: 16px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .moreInfo-dropdownMenu
    .dropdownMenu-select
    option {
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-dropdownMenu
        .dropdownMenu-select
        option {
        font-size: 16px;
        line-height: 16px;
    }
}
.search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-prop {
    display: flex;
    padding: 22px 13px;
    box-sizing: border-box;
    background-color: #ffffff;
    border-bottom: none;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-prop {
        flex-direction: column;
        padding: 30px 13px;
        border-bottom: none;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .moreInfo-prop
    .prop-inner {
    flex: 1;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-prop
        .prop-inner:nth-child(2)
        .prop-title {
        margin-right: 50px;
    }
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-prop
        .prop-inner
        + .prop-inner {
        margin-top: 17px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .moreInfo-prop
    .prop-title {
    margin-right: 40px;
    font-size: 16px;
    line-height: 24px;
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-prop
        .prop-title {
        font-size: 14px;
        line-height: 20px;
    }
}
@media screen and (max-width: 1199px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-prop
        .prop-title {
        margin-right: 20px;
    }
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-prop
        .prop-title {
        margin-right: 10px;
    }
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-prop
        .prop-title {
        margin-right: 23px;
    }
}
.search-main .section-itemSearch .itemSearch-moreInfo .moreInfo-prop .prop-num {
    display: flex;
    align-items: center;
}
.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .moreInfo-prop
    .prop-num_input {
    max-width: 70px;
    width: 100%;
    padding: 7px 0;
    box-sizing: border-box;
    border: 1px solid #d3ab23;
    border-radius: 6px;
    text-align: center;
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-prop
        .prop-num_input {
        font-size: 16px;
        line-height: 16px;
    }
}
@media screen and (max-width: 1199px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-prop
        .prop-num_input {
        max-width: 65px;
    }
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-prop
        .prop-num_input {
        max-width: 50px;
    }
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-prop
        .prop-num_input {
        max-width: 70px;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-moreInfo
    .moreInfo-prop
    .prop-num_text {
    margin: 0 4px;
    font-family:
        "Helvetica Neue", "Noto Sans JP", Arial, "Hiragino Sans",
        "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}
@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-moreInfo
        .moreInfo-prop
        .prop-num_text {
        font-size: 11px;
        line-height: 20px;
    }
}
.search-main .section-itemSearch .itemSearch-total .total-text {
    margin-bottom: 19px;
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 26px;
    color: #1a1a1a;
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-total .total-text {
        font-size: 18px;
        line-height: 26px;
    }
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-total .total-text {
        display: none;
    }
}
.search-main
    .section-itemSearch
    .itemSearch-total
    .total-text
    span:first-child {
    margin-left: 5px;
    font-size: 34px;
    line-height: 49px;
    color: #1c3388;
    font-weight: 800;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-total
        .total-text
        span:first-child {
        font-size: 34px;
        line-height: 49px;
    }
}
.search-main .section-itemSearch .itemSearch-total .total-text span:last-child {
    margin-left: 11px;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch
        .itemSearch-total
        .total-text
        span:last-child {
        font-size: 16px;
        line-height: 24px;
    }
}
.search-main .section-itemSearch .itemSearch-send {
    width: 100%;
    display: flex;
    justify-content: center;
}
.search-main .section-itemSearch .itemSearch-send .send-btn {
    max-width: 270px;
    width: 100%;
    padding: 14px 0;
    border-radius: 36px;
    font-family:
        "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
        sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 26px;
    color: #515b60;
    border: 1px solid #515b60;
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-send .send-btn {
        font-size: 13px;
        line-height: 17px;
    }
}
.search-main .section-itemSearch .itemSearch-send .send-btn_reset {
    margin-right: 16px;
}
.search-main .section-itemSearch .itemSearch-send .send-btn_submit {
    display: flex;
    justify-content: center;
    color: #ffffff;
    background-color: #ba9f57;
    border: 1px solid #ba9f57;
    position: relative;
}
.search-main .section-itemSearch .itemSearch-send .send-btn_pic {
    max-width: 27px;
    width: 100%;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .search-main .section-itemSearch .itemSearch-send .send-btn_pic {
        max-width: 16px;
    }
}
@media screen and (max-width: 380px) {
    .search-main .section-itemSearch .itemSearch-send .send-btn_pic {
        left: 20px;
        transform: translateY(-40%);
    }
}
.search-main .section-itemSearch .itemSearch-arrow {
    width: 300px;
    height: 30px;
    background-color: #efefef;
    aspect-ratio: 1/0.8660254038;
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.search-main .section-itemSearch .input-checkbox {
    width: 30px;
    height: 30px;
    appearance: none;
    background: #ffffff;
    border: 2px solid #d3ab23;
    border-radius: 6px;
    box-shadow: 0 0 0 0 transparent;
    position: relative;
}
.search-main .section-itemSearch .input-checkbox::before {
    content: "";
    width: 6px;
    height: 12px;
    display: block;
    margin: auto;
    inset: 0;
    opacity: 0;
    transform: translateY(-10%) rotate(45deg);
    border-bottom: 4px solid #ffffff;
    border-right: 4px solid #ffffff;
    position: absolute;
}
.search-main .section-itemSearch .input-checkbox:checked {
    background: #d3ab23;
    border-color: #d3ab23;
}
.search-main .section-itemSearch .input-checkbox:checked::before {
    opacity: 1;
}
.search-main .section-sup {
    max-width: 880px;
    width: 100%;
    margin: 0 auto 45px;
}

.search-main {
    overflow-x: clip;
}

.search-main .section-itemSearch {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.search-main .section-itemSearch .itemSearch-type .type-category {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    display: block;
}

.search-main
    .section-itemSearch
    .itemSearch-type
    .type-category
    .category-title {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
}

.search-main
    .section-itemSearch
    .itemSearch-type
    .type-category
    .category-list_material {
    display: flex;
    flex-wrap: nowrap;
    gap: 0 18px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.search-main
    .section-itemSearch
    .itemSearch-type
    .type-category
    .category-item_material
    + .category-item_material {
    margin-left: 0;
}

.search-main
    .section-itemSearch
    .itemSearch-type
    .type-category
    .category-item_material {
    flex: 0 0 auto;
}

.search-main
    .section-itemSearch
    .itemSearch-type
    .type-category
    .category-item_material
    .category-item_label {
    font-size: 14px;
    line-height: 20px;
}

.search-main
    .section-itemSearch
    .itemSearch-type
    .type-category
    .category-item_material
    .category-item_input {
    margin-right: 10px;
}
.search-main
    .section-itemSearch.forceSearch-section-itemSearch
    .itemSearch-type
    .type-category
    .category-item_label_forcePreset {
    line-height: 1.35;
}
@media screen and (max-width: 767px) {
    .search-main
        .section-itemSearch.forceSearch-section-itemSearch
        .itemSearch-type
        .type-category
        .category-item_label_forcePreset {
        line-height: 1.3;
    }
}

@media screen and (max-width: 1200px) {
    .search-main
        .section-itemSearch
        .itemSearch-type
        .type-category
        .category-list_preset {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 16px;
        overflow-x: visible;
        overflow-y: visible;
    }

    .search-main
        .section-itemSearch
        .itemSearch-type
        .type-category
        .category-list_preset
        .category-item_material {
        flex: initial;
        min-width: 0;
    }

    .search-main
        .section-itemSearch
        .itemSearch-type
        .type-category
        .category-list_preset
        .category-item_material
        + .category-item_material {
        margin-left: 0;
    }
}

@media screen and (max-width: 991px) {
    .search-main
        .section-itemSearch
        .itemSearch-type
        .type-category
        .category-list_material {
        flex-wrap: wrap;
        overflow-x: visible;
        overflow-y: visible;
    }

    .search-main
        .section-itemSearch
        .itemSearch-type
        .type-category
        .category-item_material {
        flex: 0 1 auto;
    }

    .footer-wrapper {
        padding-bottom: 115px;
    }

    /* searchページでは共通SPバナー（検索する/入力リセット/TOP）を非表示 */
    .aside-banner_sp {
        display: none !important;
    }

    /* 旧下段メニュー（検索する / 入力をリセット / TOP）は非表示 */
    .search-main .section-itemSearch .itemSearch-send,
    .search-main #top-btn {
        display: none !important;
    }
}

@-webkit-keyframes slideFadeIn {
    from {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideFadeIn {
    from {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.tr-fade-in {
    -webkit-animation: slideFadeIn 0.3s linear 0s forwards;
    animation: slideFadeIn 0.3s linear 0s forwards;
}

.search-main .section-result .result-th_title {
    font-size: 12px;
    line-height: 20px;
}

.search-main .section-result .result-td_text {
    font-size: 12px;
    line-height: 20px;
}

.search-main .section-result .result-td_type .result-td_link {
    font-size: 12px;
    line-height: 20px;
}

/*# sourceMappingURL=search.css.map */
