@charset "UTF-8";

/* products common
--------------------------------------------------------- */
.products #gNav_Wrap--pc .gNav > li > a.gNav_products{
    color: #000;
}


/* product-search
--------------------------------------------------------- */
.product-search-wrap {
    margin-bottom: 110px;
    @media screen and (max-width: 767px) {
        padding-inline: 15px;
    }
}


/* 製品一覧
--------------------------------------------------------- */
.product-grid--col4 {
    display: grid;
    gap: 53px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 83px;
    padding-inline: 23px; 
    transition: gap 0.3s;
    @media screen and (max-width: 767px) {
	padding-inline: 0px;
        grid-template-columns: 1fr;
        gap: 35px;
    }
}


/* 製品一覧の1アイテム */
.product-item {
    line-height: 1.2;
    @media screen and (max-width: 767px) {
        display: flex;
        gap: 9px;
    }
}
.f-carousel .product-item {
    @media screen and (max-width: 767px) {
        display: block;
        padding-inline: 50px;
    }
}
.product-item__image {
    margin: 0 auto 7px;
    text-align: center;
    @media screen and (max-width: 767px) {
        width: 170px;
        width: 40vw;
        img {
            max-width: 100%;
            width: auto;
        }
    }
}
.product-item__text {
    display: flex;
    flex-direction: column;
    @media screen and (max-width: 767px) {
        flex: 1;
    }
}
.product-item__fuel {
    order: 1;
    margin: 0 0 20px;
    padding-bottom: 3px;
    font-weight: bold;
    border-bottom: 1px solid var(--color-border-dark);
}
.product-item__title {
    order: 2;
    margin: 0 0 20px;
    font-size: 2rem;
    @media screen and (max-width: 767px) {
        font-size: 22px;
    }
    a {
        color: var(--color-link-dark);
        text-decoration: underline;
        &:hover {
            text-decoration: none;
            color: var(--color-link);
        }
    }
}
.product-item__pow {
    order: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
    li {
        font-size: 0.95rem;
        &:nth-child(2)::before {
            content: '/';
            display: inline-block;
            margin-right: 5px;
            font-size: 150%;
        }
        &:last-child {
            width: 100%;
        }
    }
    b {
        font-size: 150%;
    }
    @media screen and (max-width: 767px) {
        li {
            font-size: 10px;
            &:nth-child(2)::before {
                font-size: 14px;
            }
        }
        b {
            font-size: 14px;
        }
    }
}
.product-item__emission {
    order: 2;
    dt {
        margin: 0 0 10px;
        font-size: var(--fz-s);
        color: var(--color-text-light);
    }
    ul {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    @media screen and (max-width: 767px) {
        dt {
            font-size: 10px;
        }
        ul {
            font-size: 14px;
        }
    }
}

/* product-result（検索結果ページ）
--------------------------------------------------------- */
.product-result {
    display: flex;
    gap: 42px;
    padding-top: 6px;
    margin-bottom: 100px;
    @media screen and (max-width: 767px) {
        display: block;
    }
}
.product-result.js-scroll-fixed.is-scroll-fixed {
    padding-top: 92px;
    @media screen and (max-width: 767px) {
        padding-top: 150px;
    }
}

.product-result-side__btnWrap {
    display: flex;
    gap: 30px;
    @media screen and (max-width: 767px) {
        display: none;
    }
}
.search-showhideBtn {

    button {
        padding: 0;
        background: none;
        border: 0;
        color: var(--color-link-dark);
        transition: font-size 0.3s;
        &:hover {
            color: var(--color-link);
        }
    }
    img {
        margin-right: 7px;
        vertical-align: middle;
        transform: translateY(-2px);
    }
}
.search-showhideBtn.search-hide {
    img {
        transform: rotate(180deg) translateY(1px);
    }
}
.is-scroll-fixed .search-showhideBtn button {
    position: relative;
    font-size: var(--fz-xs);
}

.search-scrollTopBtn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    a {
        font-size: var(--fz-xs);
        color: var(--color-link-dark);
        &:hover {
            color: var(--color-link);
            text-decoration: none;
        }
    }
    img {
        margin-right: 7px;
        vertical-align: middle;
        transform: translateY(-1px) rotate(-90deg);
    }
}
.search-scrollTopBtn.js-scroll-show-btn.is-show {
    opacity: 1;
    pointer-events: visible;
}

.product-result-main {
    @media screen and (min-width: 768px) {
        flex: 1;
        container-type: inline-size;
    }
    @media screen and (max-width: 767px) {
        padding-inline: 15px;
    }
}
.js-scroll-fixed.is-scroll-fixed .product-result-main:has(.product-result-main__searchText) {
    padding-top: 77px;
}

.product-result-main__header {
    width: 100%;
    background: white;
    padding-bottom: 7px;
    line-height: 1.2;
}
.is-scroll-fixed .product-result-main__header {
    position: fixed;
    top: 3px;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 0 38px;
    @media screen and (max-width: 767px) {
        top: 50px;
        padding-inline: 15px;
        padding-bottom: 9px;
        background: var(--color-border-light);
    }
}
.is-scroll-fixed .product-result-main__header {
    max-width: 1525px;
    margin: 0 auto;
    @media print, screen and (min-width: 768px) {
        padding-left: calc(325px + 38px);
    }
}
.is-scroll-fixed.is-side-hide .product-result-main__header {
    padding-left: 38px;
}
@media print, screen and (min-width: 768px) {
    .is-scroll-fixed .product-result-main__header::before {
        content: "";
        position: fixed;
        top: 3px;
        left: 0;
        width: 100%;
        height: 76px;
        background: white;
    }
    .is-scroll-fixed .product-result-main__header::after {
        content: "";
        position: fixed;
        top: 79px;
        left: 0;
        height: 1px;
        width: 100%;
        background: var(--color-border);
    }
}
.product-result-main__headerTop {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 18px;
    padding: 9px 0 9px;
    border-bottom: 1px solid var(--color-border);
    transition: margin 0.3s;
}
.is-scroll-fixed .product-result-main__headerTop {
    flex-wrap: nowrap;
    margin-bottom: 5px;
    @media screen and (max-width: 767px) {
        flex-wrap: wrap;
    }
}
.product-result-main__title {
    order: 2;
    margin: 0 15px 0 0;
    font-size: 26px;
    font-weight: normal;
    transform: translateY(2px);
    transition: font-size 0.3s;
    @media screen and (max-width: 767px) {
        padding-bottom: 20px;
    }

}
.is-scroll-fixed .product-result-main__title {
    font-size: 22px;
    @media screen and (max-width: 767px) {
        font-size: 20px;
    }
}
.product-result-main__hitItems {
    order: 2;
    color: var(--color-text-light);
    transition: font-size 0.3s;
}
.is-scroll-fixed .product-result-main__hitItems {
    font-size: var(--fz-s);
    white-space: nowrap;
}
.product-result-main__searchText {
    order: 1;
    width: 100%;
    font-size: 26px;
    margin: 0 0 47px;
    transition: font-size 0.3s;
    @media screen and (max-width: 767px) {
        margin-bottom: 35px;
        font-size: 22px;
    }
    span {
        &::before {
            content: '"';
        }
        &::after {
            content: '"';
        }
    }
}
.is-scroll-fixed .product-result-main__searchText {
    order: 2;
    width: auto;
    margin: 0 0 0 30px;
    font-size: var(--fz-s);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    @media screen and (max-width: 767px) {
        width: 100%;
        margin: 10px 0 0 0;
        font-size: 16px;
    }
}
.product-result-main__viewChange {
    order: 2;
    display: flex;
    gap: 12px;
    margin-left: auto;
    font-size: var(--fz-s);
    transition: font-size 0.3s;
    @media screen and (max-width: 767px) {
        z-index: 100;
    	position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        gap: 0;
        font-size: var(--fz-xs);
        li {
            flex: 1;
        }
    }
    a {
        display: inline-block;
        padding: 8px 25px;
        background: var(--color-link-dark);
        border: 0;
        border-radius: 50px;
        color: white;
        transition: padding 0.3s, background-color 0.3s;
        @media screen and (max-width: 767px) {
            border-radius: 0;
            display: block;
            padding: 18px 0;
            text-align: center;
        }
        &:hover {
            color: white;
            background-color: var(--color-link);
            text-decoration: none;
        }
    }
}
.is-scroll-fixed .product-result-main__viewChange {
    font-size: var(--fz-xs);
    a {
        padding: 6px 25px;
        white-space: nowrap;
        @media screen and (max-width: 767px) {
            padding: 18px 0;
        }
    }
}
.product-result-main__headerBottom {
    display: flex;
    justify-content: space-between;
}
.product-result-main__headerSort {
    display: flex;
    gap: 10px 30px;
    margin-left: auto;
    @media screen and (max-width: 767px) {
        gap: 10px 15px;
    }
}
button.product-sortBtn {
    position: relative;
    padding: 0 28px 0 0;
    background: none;
    border: 0;
    font-size: var(--fz-s);
    font-weight: normal;
    color: var(--color-text-light);
    @media screen and (max-width: 767px) {
        font-size: 12px;
    }
    &:hover {
        color: var(--color-link);
    }
    &::after {
        content: "";
        position: absolute;
        top: calc(50% - 6.5px);
        right: 0;
        width: 19px;
        height: 13px;
        background: url(/cmn/img/icon_sort_none.svg) no-repeat right center;
        transition: transform 0.3s;
    }
}
button.product-sortBtn.is-ascend::after {
    background: url(/cmn/img/icon_sort_asc.svg) no-repeat right center;
}
button.product-sortBtn.is-descend::after {
    background: url(/cmn/img/icon_sort_desc.svg) no-repeat right center;
}
button.product-sortBtn.is-none::after {
    background: url(/cmn/img/icon_sort_none.svg) no-repeat right center;
}

.search-show {
    display: none;
}

/* チェックしたFilterが表示される部分 */
.product-result-main__chekeditem {
    display: flex;
    gap: 20px 20px;
    flex-wrap: wrap;
    margin-top: 12px;
    margin-bottom: 30px;
    @media screen and (max-width: 767px) {
        gap: 10px 10px;
    }
    button[class="range"]{
        padding: 5px 20px 5px 20px;
        border: 0;
        background: var(--color-border-dark) no-repeat 10px center;
        color: var(--color-link-dark);
        font-size: var(--fz-xs);
        transition: .3s;
        &:hover {
            color: var(--color-text);
            background-color: var(--color-border);
        }
        @media screen and (max-width: 767px) {
            padding-right: 15px;
            padding-left: 15px;
        }
    }
    button {
        padding: 5px 20px 5px 35px;
        border: 0;
        background: var(--color-border-dark) url(../img/icon_close_filter.svg) no-repeat 10px center;
        color: var(--color-link-dark);
        font-size: var(--fz-xs);
        transition: .3s;
        &:hover {
            color: var(--color-text);
            background-color: var(--color-border);
        }
        @media screen and (max-width: 767px) {
            padding-right: 15px;
            padding-left: 30px;
        }
    }
}



.product-result-side {
    width: 283px;
    transition: all 0.5s;
    @media screen and (max-width: 767px) {
        width: auto;
    }
}
.product-result-side__inner {
    width: 283px;
    @media screen and (max-width: 767px) {
        width: auto;
        padding-inline: 15px;
    }
}
.product-result-side.is-show {
    opacity: 1;
    margin-left: 0;
}
.product-result-side.is-hide {
    width: 0;
    opacity: 0;
    margin-left: -45px;
    overflow: hidden;
}
.product-result-side__header {
    width: 100%;
    max-width: 283px;
    margin-bottom: 17px;
    background: white;
    padding-top: 9px;
    line-height: 1.2;
    @media screen and (max-width: 767px) {
        max-width: none;
    }
}
@media print, screen and (min-width: 768px) {
    .is-scroll-fixed .product-result-side__header {
        position: fixed;
        top: 3px;
        z-index: 100;
        padding-top: 12px;
    }
}
.product-result-side__title {
    margin: 0 0 15px;
    padding: 0 0 9px;
    border-bottom: 1px solid var(--color-border);
    font-size: 26px;
    font-weight: normal;
    transition: font-size 0.3s, margin 0.3s;
}
@media screen and (min-width: 768px) {
    .is-scroll-fixed .product-result-side__title {
        padding-bottom: 7px;
        margin-bottom: 4px;
        font-size: 22px;
    }
}
.is-scroll-fixed .product-result-side__details {
    @media screen and (max-width: 767px) {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 200;
        background: var(--color-border-light);
    }
}
.product-result-side__summary {
    display: block;
    margin-bottom: 20px;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    background: var(--color-link-dark);
    border-radius: 4px;
    color: white;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    @media screen and (min-width: 768px) {
        display: none;
    }
}
[open] .product-result-side__summary {
    background: var(--color-border-dark) url(../img/icon_close_filters.svg) no-repeat calc(100% - 20px) center;
    color: var(--color-link-dark);
}
.product-result-side__summary span {
    display: inline-block;
    padding-left: 30px;
    background: url(../img/icon_filters_light.png) no-repeat left center / auto 20px;
}
[open] .product-result-side__summary span {
    background-image: url(../img/icon_filters_dark.png);
}

.is-scroll-fixed .product-result-side__summary {
    margin-bottom: 0;
    border-radius: 0;
}
.is-scroll-fixed .product-result-side__body {
    @media screen and (max-width: 767px) {
        padding: 30px 30px;
        max-height: calc(100svh - 50px);
        overflow-y: auto;
    }
}
.product-result-side__footer {
    margin-top: 20px;
    @media screen and (max-width: 767px) {
        display: none;
    }
}


/* Results No Image
--------------------------------------------------------- */
.product-result-text {
    margin-bottom: 80px;
    border-top: 1px solid var(--color-border);
    overflow: auto;
    &::-webkit-scrollbar {
        height: 3px;
        background-color: var(--color-border-dark); 
    }
    &::-webkit-scrollbar-thumb {
        background: var(--color-kubota);
        height: 3px;
    }
}
.product-result-text__inner {
    max-width: 1452px;
    min-width: 1288px;
}
.product-result-text {
    table {
        line-height: 1.4;
        tr {
            border-bottom: 1px solid var(--color-border);
        }
        thead {
            th {
                white-space: nowrap;
                padding: 15px 10px;
                text-align: left;
                &:first-child {
                    width: 160px;
                    padding-left: 0;
                }
                &:last-child {
                    padding-right: 0;
                }
                &:nth-child(3) {
                    width: 260px;
                }
                &:nth-child(7) {
                    width: 120px;
                }
                button {
                    text-align: left;
                }
            }
        }
        tbody {
            th {
                padding: 15px 10px;
                padding-left: 0;
                text-align: left;
                vertical-align: top;
                a {
                    text-decoration: underline;
                    font-weight: bold;
                    &:hover {
                        text-decoration: none;
                    }
                }
            }
            td {
                padding: 15px 10px;
                vertical-align: top;
            }
        }
    }
}


/* detail （製品詳細ページ）
--------------------------------------------------------- */
.link-back {
    margin: 0 0 30px auto;
    text-align: right;
    a {
        padding-left: 20px;
        background: url(../img/icon_back.svg) no-repeat left .1em;
        text-decoration: underline;
        &:hover {
            text-decoration: none;
        }
    }
    @media screen and (max-width: 767px) {
        margin-right: 15px;
    }
}

.detail-header {
    margin-bottom: 87px;
    @media screen and (max-width: 767px) {
        padding-inline: 15px;
    }
}
.detail-headerTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-border-light);
    @media screen and (max-width: 767px) {
        margin-bottom: 0;
        border-bottom: 0;
    }
}
.detail-headerTop__title {
    font-weight: bold;
    font-size: 22px;
    @media screen and (max-width: 767px) {
        display: none;
    }
}
.detail-headerTop__btns {
    margin-left: auto;
    ul {
        display: flex;
        gap: 12px;
        font-size: var(--fz-s);
        transition: font-size 0.3s;
        line-height: 1;
    }
    a {
        display: inline-block;
        padding: 8px 25px;
        background: var(--color-link-dark);
        border: 0;
        border-radius: 50px;
        color: white;
        transition: padding 0.3s, background-color 0.3s;
        &:hover {
            background-color: var(--color-link);
            text-decoration: none;
            color: white;
        }
    }
    @media screen and (max-width: 767px) {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9;
        ul {
            gap: 0;
            li {
                flex: 1;
            }
        }
        a {
            display: flex;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 13px 5px;
            border-radius: 0;
        }
    }
}
@media screen and (min-width: 768px) {
    .is-scroll-fixed .detail-headerTop__btns {
        position: fixed;
        top: 11px;
        left: 50%;
        width: 50%;
        min-width: 500px;
        z-index: 100;
    }
    .is-scroll-fixed .detail-headerTop__btns ul {
        max-width: calc(1525px / 2);
        margin: 0 0;
        padding: 0 38px;
        justify-content: flex-end;
        a {
            padding: 5px 20px;
        }
    }
}

.detail-headerMain {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0 70px;
    @media screen and (max-width: 767px) {
        flex-direction: column;
        padding: 0;
    }
}
.detail-headerImage {
    @media screen and (max-width: 767px) {
        margin-bottom: 40px;
        img {
            max-width: 100%;
        }
    }
}
.detail-headerText {
    flex: 1;
    margin-right: auto;
}
.js-copy-target .detail-header__fixed {
    position: fixed;
    top: -300px;
    left: 0;
    right: 0;
    z-index: 99;
    background: white;
    padding: 8px 0 11px;
    border-bottom: 1px solid var(--color-border-light);
    line-height: 1.2;
    opacity: 1;
    transition: top 0.5s, opacity 0.5s;
}
.is-scroll-fixed .js-copy-target .detail-header__fixed {
    top: 3px;
    opacity: 1;
}

.detail-header__fixedInner {
    display: flex;
    flex-direction: column;
    max-width: 1525px;
    margin: 0 auto;
    padding: 0;
}
.js-copy-target .detail-header__fixedInner {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 38px;
}

.detail-header__title {
    order: 2;
    margin: 0 0 20px;
    font-weight: bold;
    font-size: 46px;
    line-height: 1.4;
    transition: font-size 0.3s;
    @media screen and (max-width: 767px) {
        order: 1;
        padding-bottom: 8px;
        font-size: 40px;
        line-height: 1.2;
        border-bottom: 1px solid var(--color-border-light);
    }
}
.detail-sp-scroll-fixedNav .detail-header__title,
.js-copy-target .detail-header__title {
    order: 1;
    margin: 0 15px 0 0;
    font-size: 22px;
    line-height: 1.2;
    @media screen and (max-width: 767px) {
        padding-bottom: 0;
        font-size: 20px;
    }
}
.detail-header__emission {
    order: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-bottom: 20px;
    @media screen and (max-width: 767px) {
        margin-top: 30px;
    }
    li {
        padding: 5px 15px;
        background: white;
        border: 1px solid var(--color-border-dark);
        font-size: var(--fz-xs);
        transition: padding 0.3s, font-size 0.3s;
    }
}
.js-copy-target .detail-header__emission {
    margin-bottom: 0;
    li {
        padding: 5px 12px;
        font-size: 12px;
    }
}
.detail-header__nav {
    order: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 40px;
    margin-bottom: 30px;
    padding-right: 10px;
    font-weight: bold;
    transition: font-size 0.3s;
    @media screen and (max-width: 767px) {
        gap: 10px 20px;
        font-size: 14px;
    }
}
.js-copy-target .detail-header__nav {
    width: 100%;
    margin-top: 7px;
    margin-bottom: 0;
    padding-top: 10px;
    padding-right: 0;
    font-size: 12px;
    border-top: 1px solid var(--color-border-light);
}
.detail-header__nav li a {
    padding-left: 25px;
    background: url(../img/icon_localnav.svg) no-repeat left .3em;
}
.js-copy-target .detail-header__nav li a {
    padding-left: 18px;
    background-size: 10px auto;
}

.detail-header__btn {
    margin: 0 0 25px;
    a {
        display: block;
        padding: 15px;
        background: var(--color-link-dark);
        border-radius: 4px;
        color: white;
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        transition: background-color 0.3s;
        &:hover {
            text-decoration: none;
            background: var(--color-link);
        }
    }
}

/* SPのローカルナビ */
.detail-sp-scroll-fixedNav {
    display: none;
    @media screen and (max-width: 767px) {
        display: block;
        position: fixed;
        top: -100px;
        right: 0;
        left: 0;
        z-index: 99;
        opacity: 0;
        background: var(--color-border-light);
        padding-block: 17px;
        padding-inline: 15px;
        border-top: 1px solid var(--color-border-dark);
        border-bottom-color: var(--color-border-dark);
        transition: top 0.5s, opacity 0.5s;
    }
}
.is-scroll-fixed .detail-sp-scroll-fixedNav {
    top: 0;
    opacity: 1;
    @media screen and (min-width: 768px) {
        display: none;
    }
}

.detail-header_SP-btn {
    position: absolute;
    top: 13px;
    right: 15px;
    button {
        width: 24px;
        height: 24px;
        background: url(../img/icon_threedots.svg) no-repeat center;
        border: 0;
        font-size: 0;
        line-height: 0;
        &.is-open {
            background-image: url(../img/icon_close_filters.svg);
        }
    }
}
.detail-header__SP-body {
    display: none;
}


.detail-section {
    max-width: 1000px;
    margin: -85px auto 90px;
    padding-top: 85px;
    @media screen and (max-width: 767px) {
        padding-inline: 15px;
    }
}
/* 詳細下部のカルーセル */
.detail-section .f-carousel {
    --f-carousel-theme-color: var(--color-link-dark);
    --f-button-next-pos: 0;
    --f-button-prev-pos: 0;
    --f-carousel-dot-color: white;
    --f-carousel-dot-opacity: 1;
    --f-button-svg-width: 40px;
    --f-button-svg-height: 40px;
    --f-button-svg-stroke-width: 0.5;
    .f-carousel__dots li button span {
        border: var(--color-link-dark) 1px solid;
    }
    .is-current {
        --f-carousel-dot-color: var(--color-link-dark);
    }
}
.detail-section--sub {
    margin-bottom: 45px;
}
.detail-section__title {
    margin-bottom: 45px;
    font-size: 100%;
    font-size: 20px;
    font-weight: normal;
}
.detail-section__title--2nd {
    margin: 0 0 5px;
    font-size: 100%;
    font-weight: bold;
    line-height: 1.4;
}
.detail-textArea {
    max-width: 860px;
    margin-inline: auto;
    @media screen and (max-width: 767px) {
        padding-inline: 15px;
    }
    p {
        margin-bottom: 1em;
    }
}


/* Rated Power */
.detail-pow {
    b {
        font-size: 30px;
        font-weight: bold;
    }
}

/* Engine Specifications */
.detail-engine_spec {
    table {
        margin: 0 auto 30px;
        font-size: var(--fz-l);
        tr {
            border-bottom: 1px solid var(--color-border-dark);
        }
        th {
            width: 27%;
            padding: 13px 0;
            font-weight: normal;
            text-align: left;
            color: var(--color-text-light);
            sup {
                margin-right: 8px;
            }
            small {
                display: inline-block;
            }
        }
        td {
            padding: 13px 0 13px 10px;
        }
    }
    @media screen and (max-width: 767px) {
        tr,
        th,
        td,
        tbody,
        table {
            display: block;
        }
        table {
            border-top: 1px solid var(--color-border-dark);
            tr {
                padding: 15px 0;
            }
            th {
                width: auto;
                padding: 0;
                color: var(--color-text-light);
                small {
                    display: inline;
                }
            }
            td {
                padding: 0 0 0 15px;
                color: var(--color-text);
            }
        }
    }
}

.js-tooltip-anchor {
    text-decoration: underline;
    color: var(--color-link-dark);
}
.js-tooltip-clone {
    display: none;
    position: absolute;
    z-index: 100;
    max-width: 450px;
    padding: 5px 10px;
    background: var(--color-kubota-text);
    border-radius: 4px;
    color: #fff;
    font-size: var(--fz-s);
}

.detail-engine_spec__asterisk,
.detail-engine_spec__notes {
    margin-bottom: 25px;
    color: var(--color-text-light);
    font-size: var(--fz-s);
}

/* Dimensions, Related Information  */
.detail-grid--col2 {
    display: flex;
    justify-content: center;
    @media screen and (max-width: 550px) {
        display: grid;
        grid-template-columns: 1fr;
    }
}
.detail-grid--col2.-gap32 {
    gap: 32px;
}
.detail-grid--col2.-gap20 {
    gap: 20px;
}
.detail-grid--col2.-padding32 {
    padding-inline: 32px;
}

.detail-grid--item {
    flex: 1;
    text-align: center;
    img {
        max-width: 100%;
        transition: opacity 0.3s;
    }
    a {
        &:hover {
            img {
                opacity: 0.7;
            }
        }
    }
}
figure.detail-grid--item {
    margin: 0;
}
.detail-grid--item.-border {
    padding: 15px;
    border: 1px solid var(--color-border-light);
}

/* 詳細ページ下部のボタンリンク */
.detail-support_sub_nav {
    max-width: 1000px;
    margin: 150px auto 120px;
    @media screen and (max-width: 767px) {
        padding-inline: 15px;
    }
}
.detail-support_sub_nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    @media screen and (max-width: 767px) {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
        text-align: center;
        img {
            width: 100%;
        }
    }
}
@media screen and (min-width: 768px) {
    .detail-support_sub_nav__list a {
        display: block;
        outline: 1px solid transparent;
        border-radius: 50%;
        transition: outline-color 0.3s;
        overflow: hidden;
        img {
            transition: transform 0.3s;
        }
        &:hover {
            outline-color: var(--color-link);
            img {
                transform: scale(1.05);
            }
        }
    }
}
#productGallery {
    max-width: 500px;
    margin: 0 auto;
}

#productGallery .f-carousel__slide {
    display: flex;
    justify-content: center;
    align-items: center;
}















/* ↓ old style
--------------------------------------------------------- */

/* products.products-list list
--------------------------------------------------------- */
/*background color change*/
.products.products-list .bg_color_change{
    background: #f8f8fa;
}

/*- side_search -*/
.products.products-list #wrap__Inner #side_search .side_search_ttl{
    width: 100%;
    border-right: none;
    font-size: 100%;
    padding: 10px;
    background: #11aeaf;
    color: #fff;
    font-weight: normal;
    margin: 0 auto 12px;
    position: relative;
}

.products.products-list #wrap__Inner #side_search .side_search_ttl + .box{
    margin-bottom: 50px;
    padding: 0 5px;
}

.products.products-list #wrap__Inner #side_search .side_search_ttl + .box .side_search_item{
    margin-bottom: 10px;
}

.products.products-list #wrap__Inner #side_search .side_search_ttl + .box .side_search_item label{
    display: block;
    width: 100%;
    font-size: 75%;
}

/*CheckBox */
.products.products-list #side_search .side_search_item label input{
    display: none;
}

.products.products-list #side_search .side_search_item label input + .checkbox-icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #333;
    background: #fff;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    top: -1px;
}
.products.products-list #side_search .side_search_item label input:checked + .checkbox-icon{
    border: 1px solid #11aeaf;
    background: url("../img/icon_check.png") no-repeat center;
    background-size: 18px;
    background-color: #11aeaf;
}



/*products_list_pagination */
.products_list_pagination{
    width: 100%;
    text-align: center;
}
.products_list_pagination .products_list_pagination_in{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    @media screen and (max-width: 767px) {
        gap: 13px;
    }
    
}

.products_list_pagination .products_list_pagination_in li{
    text-align: center;
    margin: 0;
}

.products_list_pagination .products_list_pagination_in li.btn_normal{
    display: none;
}
.products_list_pagination .products_list_pagination_in li.use{
	display: list-item;
}
.products_list_pagination .products_list_pagination_in li.hide{
	display: none;
}

.products_list_pagination .products_list_pagination_in li a{
    display: block;
    padding: 0;
    height: 50px;
    border: 1px solid var(--color-border-dark);
    &:hover {
        opacity: 1;
        border-color: var(--color-link-dark);
    }
}
.products_list_pagination .products_list_pagination_in li a span {
    --size: 50px;
    width: var(--size);
    height: var(--size);
    line-height: var(--size);
    @media screen and (max-width: 767px) {
        --size: 32px;
    }
}
.products_list_pagination .products_list_pagination_in li.current a{
    border-color: var(--color-link-dark);
    background-color: var(--color-link-dark);
}
.products_list_pagination .products_list_pagination_in li.btn_more_prev.hide,
.products_list_pagination .products_list_pagination_in li.btn_more_next.hide{
    display: block;
    pointer-events: none;
    opacity: .6;
}
.products_list_pagination .products_list_pagination_in li.btn_more_prev a,
.products_list_pagination .products_list_pagination_in li.btn_more_next a{
    padding-left: 35px;
    padding-right: 35px;
    color: var(--color-link-dark);
}
.products_list_pagination .products_list_pagination_in li.btn_more_prev.hide a,
.products_list_pagination .products_list_pagination_in li.btn_more_next.hide a{
    color: var(--color-border);
}
.products_list_pagination .products_list_pagination_in li.btn_more_prev a span,
.products_list_pagination .products_list_pagination_in li.btn_more_next a span{
    background: none;
    padding: 0;
}

/* bnr */
.products.products-list .bnr_area ul li:first-child {
    margin-bottom: 12px;
}
.products.products-list .bnr_area ul li a img {
    display: block;
    margin-bottom: .25em;
}
.products.products-list .bnr_area ul li img {
    height: auto;
    width: 100%;
}
.products.products-list .bnr_area ul li small {
    display: block;
    line-height: 1.2;
}

.products.products-list .products_list_box .block_Section--Level2 ul.switchBtn{
  width: 100%;
  margin-bottom: 15px;
}
.products.products-list .products_list_box .block_Section--Level2 ul.switchBtn li{
  width: auto;
}
.products.products-list .products_list_box .block_Section--Level2 ul.switchBtn li a{
  display: block;
  font-size: 100%;
  padding: 10px;
  background: #a2d7db;
  color: #fff;
  font-weight: normal;
  text-align: center;
  width: 100%;
  cursor: pointer;
}
.products.products-list .products_list_box .block_Section--Level2 ul.switchBtn li a:hover{
  background: #11aeaf;
  text-decoration: none;
}
.products.products-list .products_list_box .block_Section--Level2 ul.switchBtn li a.onBtn{
  background: #11aeaf;
}

/*-- pc --*/
@media print, screen and (min-width: 768px) {

    /* products.products-list list
    --------------------------------------------------------- */
    /*- common -*/
    .products.products-list #wrap__Inner{
        max-width: 1600px;
        padding-bottom: 100px;
    }

    /*- side -*/
    .products.products-list #wrap__Inner #side_search{
        width: 190px;
        float: left;
        padding-right: 10px;
    }

    /*- products_list_box -*/
    .products.products-list #wrap__Inner #main__Content{
        width: auto;
        float: none;
        margin-left: 190px;
        margin-bottom: 0;
    }

    .products.products-list #wrap__Inner #main__Content .grid{
        margin-left: 0;
        margin-bottom: 50px;
    }

    .products.products-list .products_list_box .block_Section--Level2{
        margin-top: 0;
    }

    .products.products-list .products_list_box .block_Section--Level2 ul.switchBtn{
      padding-left: 10px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    .products.products-list .products_list_box .block_Section--Level2 ul.switchBtn li{
      width: 49.5%;
    }

    .products.products-list .products_list_box .media{
        padding-left: 10px;
    }
    .products.products-list .products_list_box .grid.grid--is4 > .media:nth-child(-n+4){
        margin-top: 0;
    }
    .products.products-list .products_list_box .grid.grid--is4 > .media{
        margin-top: 15px;
    }

    .products.products-list .products_list_box .media .media_in{
        margin: 0 auto;
    }

}
/*-- //pc --*/



/*-- smartPhone --*/
@media screen and (max-width: 767px) {

    .products.products-list #wrap__Inner{
        padding-bottom: 40px;
    }

    /*- side_search -*/
    .products.products-list #wrap #wrap__Inner{
        padding-top: 0;
    }

    .products.products-list #wrap__Inner #side_search{
        padding: 30px 15px 15px;
        background: #fff;
    }

    .products.products-list #wrap__Inner #side_search .side_search_ttl + .box{
        margin-bottom: 30px;
    }
    .products.products-list #wrap__Inner #side_search .side_search_ttl + .box .side_search_item label{
        font-size: 100%;
    }

    .products.products-list #wrap__Inner #side_search .side_search_ttl .side_search_ttl_in{
        background: url("../../cmn/img/engine/icon_open.png") no-repeat right;
        width: 100%;
        display: block;
    }
    .products.products-list #wrap__Inner #side_search .side_search_ttl .side_search_ttl_in.open{
        background: url("../../cmn/img/engine/icon_close.png") no-repeat right;
    }
    .products.products-list #wrap__Inner #side_search .side_search_open{
        display: none;
    }

    /* products.products-list list
    --------------------------------------------------------- */
    .products.products-list #column--is2 #main__Content{
        padding-top: 5px;
    }

    .products.products-list .products_list_box .media .media_in{
        max-width: 350px;
        margin: 0 auto;
    }

    /*products_list_pagination */
    .products_list_pagination .products_list_pagination_in li{
        margin: 0;
    }

    .products_list_pagination .products_list_pagination_in li.btn_basic.btn_more_next a,
    .products_list_pagination .products_list_pagination_in li.btn_basic.btn_more_prev a{
        padding-inline: 10px;
    }

    .products_list_pagination .products_list_pagination_in li a{
        padding: 0;
        height: auto;
    }

    .products.products-list .products_list_box .block_Section--Level2 ul.switchBtn li{
      margin-bottom: 15px;
    }
}
/*-- //smartPhone --*/




/* products detail
--------------------------------------------------------- */

/*main title */
.products.products-detail .detail_main_name{
    text-align: center;
    font-size: 287.5%;
    font-weight: normal;
}

/*PDF*/
.products.products-detail .detail_pdf_link {
    background: rgba(0,168,170,0.15);
    padding: 15px 0;
    text-align: center;
}
.products.products-detail .detail_pdf_link .icon--Pdf {
    background: url("../../cmn/img/icon/icon_link_pdf.png") no-repeat left center;
    padding: 8px 0 10px 40px;
    margin-right: 10px;
    width: auto;
    text-decoration: underline;
}
.products.products-detail .detail_pdf_link span{
    display: inline-block;
    vertical-align: middle;
}

.products.products-detail .detail_pdf_link a {
    height: 41px;
    display: inline-block;
    vertical-align: middle;
    color: #666666;
    text-decoration: underline;
}

.products.products-detail .detail_pdf_link a:hover{
    color: #008489;
}

/*-- table --*/
.products.products-detail .basic_table_area .products_detail_table {
    width: 100%;
    margin-bottom: 30px;
}

.products.products-detail .basic_table_area .products_detail_table dt,
.products.products-detail .basic_table_area .products_detail_table dd{
    width: 50%;
}

.products.products-detail .basic_table_area .products_detail_table dt.data-ttl sup.type01{
    top: -0.1em;
}

.products.products-detail .basic_table_area .products_detail_table dt.data-ttl{
    text-align: left;
    padding-left: 40px;
    width: auto;
    max-width: 50%;
}
.products.products-detail .basic_table_area .products_detail_table dt.data-ttl span{
    font-size: 12px;
    display: block;
    line-height: 0.7;
    margin-bottom: 5px;
}
.products.products-detail .basic_table_area .products_detail_table dt.unit{
    width: 15%;
    padding-left: 15px;
    border-left: 1px solid #e1e1e1;
}


.products.products-detail .detail_table_area .products_detail_text{
    padding-top: 20px;
}



/*- title -*/
.products.products-detail .detail_name_h3{
    text-align: center;
    font-size: 113%;
    margin: 0 auto 10px;
}


/*-- detail_box --*/
.products.products-detail .detail_box{
    margin-top: 60px;
}

.products.products-detail .detail_box .grid--is2{
    margin-top: 0;
    padding-top: 0;
}

.products.products-detail .detail_box .detail_box_item{
    margin-bottom: 80px;
}

.products.products-detail .detail_box .detail_box_item .grid .products_detail_text{
    line-height: 1.5;
}

/* img */
.products.products-detail .detail_box .detail_box_item .detail_box_item_img {
    border: 1px solid #e2e0e1;
    padding: 20px;
    width: 100%;
    text-align: center;
    overflow: hidden;
    margin-bottom: 10px;
}


/*text*/
.products.products-detail .detail_box .detail_box_item .products_detail_text {
    text-align: center;
    margin-bottom: 20px;
}

/*-- right --*/
.products.products-detail .detail_box .detail_box_item .detail_box_item_text {
    padding-left: 15px;
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.products.products-detail .detail_box .detail_box_item .detail_box_item_text:before{
    content: " ";
    color: #008486;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
}

/*-- Remarks --*/
.products.products-detail .detail_box .detail_box_remarks{
    margin: 15px 0 50px;
}

/*-- btn area --*/
.products.products-detail .btn_area {
    text-align: center;
}
.products.products-detail .btn_area a{
    min-width: 250px;
    display: inline-block;
}

/*-- History --*/
.products.products-detail .detail_history{
    background: #f8f8fa;
    padding: 75px 0 120px;
}

.products.products-detail .detail_history .js_slider .slick-dots{
    bottom: -40px;
}

.products.products-detail .detail_history .js_slider img{
    width: auto;
}



/*-- pc --*/
@media print, screen and (min-width: 768px) {

    /* products detail
    --------------------------------------------------------- */
    .products.products-detail #wrap .detail_table{
        max-width: 1000px;
        margin: 0 auto 30px;
        padding: 0 38px;
    }
    /*main title */
    .products.products-detail .detail_main_name{
        text-align: center;
        font-size: 287.5%;
        font-weight: normal;
    }

    /*PDF*/
    .products.products-detail .detail_pdf_link {
        background: rgba(0,168,170,0.15);
        padding: 15px 0;
        text-align: center;
    }
    .products.products-detail .detail_pdf_link .icon--Pdf {
        background: url("../../cmn/img/icon/icon_link_pdf.png") no-repeat left center;
        padding: 8px 0 10px 40px;
        margin-right: 10px;
        width: auto;
        text-decoration: underline;
    }
    .products.products-detail .detail_pdf_link span{
        display: inline-block;
        vertical-align: middle;
    }

    .products.products-detail .detail_pdf_link a {
        height: 41px;
        display: inline-block;
        vertical-align: middle;
        color: #666666;
        text-decoration: underline;
    }

    .products.products-detail .detail_pdf_link a:hover{
        color: #008489;
    }

    /*-- detail_box --*/
    .products.products-detail .detail_box > .grid--is2 > section{
        padding-left: 30px;
        padding-right: 30px;
    }
    .products.products-detail .detail_box > .grid--is2 > section:first-of-type{
        padding-left: 0
    }
    .products.products-detail .detail_box > .grid--is2 > section:last-of-type{
        padding-right: 0;
    }

    /* img */
    .products.products-detail .detail_box .detail_box_item .detail_box_item_img {
        min-height: 380px;
    }
    .products.products-detail .detail_box .detail_box_item .detail_box_item_img img {
        width: auto;
        max-height: 330px;
        max-width: 100%;
    }

    .products.products-detail .detail_box .detail_box_item.detail_box01 .detail_box_item_img {
        min-height: 190px;
        max-height: 190px;
    }
    .products.products-detail .detail_box .detail_box_item.detail_box01 .detail_box_item_img img {
        width: auto;
        max-height: 140px;
    }

    .products.products-detail .detail_box .detail_box_item.detail_box02 .detail_box_item_img {
        min-height: 270px;
        max-height: 270px;
    }
    .products.products-detail .detail_box .detail_box_item.detail_box02 .detail_box_item_img img {
        width: auto;
        max-height: 230px;
    }

    /*-- History --*/
    .products.products-detail .detail_history .media{
        padding: 0 5px;
    }

    .products.products-detail .basic_table_area ul.table_bottom{
        display: flex;
        justify-content:space-between;
    }


    .products.products-detail .basic_table_area ul.table_bottom li:last-child{
        text-align: right;
    }

}
/*-- //pc --*/



/*-- smartPhone --*/
@media screen and (max-width: 767px) {

    /* products detail
    --------------------------------------------------------- */
    .products.products-detail #wrap .detail_table{
        padding: 0;
    }

    /*main title */
    .products.products-detail .detail_main_name{
        font-size: 150%;
        margin-top: 0;
    }

    /*PDF*/
    .products.products-detail .detail_pdf_link {
        padding: 10px 0;
    }
    .products.products-detail .detail_pdf_link .icon--Pdf {
        margin-right: 0;
    }
    .products.products-detail .detail_pdf_link span{
        display: block;
        margin-bottom: 5px;
    }

    .products.products-detail .detail_pdf_link a {
        height: 41px;
        display: inline-block;
        vertical-align: middle;
        color: #666666;
        text-decoration: underline;
    }

    .products.products-detail .detail_pdf_link a:hover{
        color: #008489;
    }

    /*-- table --*/
    .products.products-detail .basic_table_area .products_detail_table {
        width: 100%;
    }

    .products.products-detail .basic_table_area .products_detail_table dt,
    .products.products-detail .basic_table_area .products_detail_table dd{
        font-size: 90%;
        padding: 5px;
    }

    .products.products-detail .basic_table_area .products_detail_table dt{
        line-height: 1.5;
    }
    .products.products-detail .basic_table_area .products_detail_table dt.data-ttl{
        padding-left: 5px;
        width: auto;
        max-width: 50%;
    }
    .products.products-detail .basic_table_area .products_detail_table dt.data-ttl span{
        font-size: 10px;
        display: block;
    }
    .products.products-detail .basic_table_area .products_detail_table dt.unit{
        width: 15%;
        padding-left: 5px;
    }

    /* img */
    .products.products-detail .detail_box .detail_box_item .detail_box_item_img {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    .products.products-detail .detail_box .detail_box_item .detail_box_item_img img{
        max-width: 100%;
        width: auto;
    }
}
/*-- //smartPhone --*/
