@charset 'UTF-8';

/* ------------------------------------ */

/* パンくずリスト */

/* ------------------------------------ */

#panlist {
    font-size: 11px;
    color: #323332;
    letter-spacing: 0.03em;
    max-width: 1000px;
    margin: 0 auto;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: start;
}

@media screen and (max-width: 1023px) {
    #panlist {
        display: none;
    }
}

/* ------------------------------------------------ */

/* お見積りバナー */

/* ------------------------------------------------ */


/* バナー　旧パターン */

/* #banner_esitmate {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%); 
    transition: top 0.2s ease;
    z-index: 1000;
    background-color: #FFE262;
    color: #000000;
    writing-mode: vertical-rl;
    width: 80px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 15px 0;
    transition: all 0.2s ease;
}

#banner_esitmate:hover {
    background-color: #F4A652;
}

#banner_esitmate:before {
    content: '';
    width: 40px;
    height: 56px;
    background: url(../img/banner_estimate_img.png) center center no-repeat;
    background-size: contain;
    margin-bottom: 10px;
}

#banner_esitmate:after {
    content: '';
    width: 25px;
    height: 15px;
    background: url(../img/arrow04.png) center center no-repeat;
    background-size: contain;
    margin-top: 10px;
}


#banner_esitmate span.large {
    font-size: 23px;
    display: block;
    line-height: 1.5;
}

#banner_esitmate span.small {
    display: block;
    font-size: 17px;
    line-height: 1.5;
}

@media screen and (max-width: 1023px) {
    #banner_esitmate {
        display: none!important;
    }
} */


/* バナー　新パターン */

#banner_esitmate {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    z-index: 1000;
    writing-mode: vertical-rl;
    width: 80px;
    height: 565px;
    display: flex;
    align-items: center;
    justify-content: start;
    transition: all 0.2s ease;
    gap: 5px;
}

.banner_online,
.banner_online img {
    width: 80px;
    height: 320px;
}

.banner_tel,
.banner_tel img {
    width: 80px;
    height: 240px;
}

@media screen and (max-width: 1023px) {
    #banner_esitmate {
        display: none !important;
    }
}


/* ------------------------------------------------ */

/* 各製品紹介 */

/* ------------------------------------------------ */

#parts_product_content {
    max-width: 1000px;
    margin: 0 auto;
}

#parts_product_content .item {
    padding: 70px 0 60px;
    border-bottom: 3px solid #231815;
}

#parts_product_content .item:first-of-type {
    border-top: 3px solid #231815;
}

#parts_product_content .item .tabu_img {
    width: 240px;
    margin-bottom: 25px;
}

#parts_product_content .item h3 span {
    font-size: 40px;
    line-height: 1.35;
}

#parts_product_content .item h3 span.eiji {
    font-size: 50px;
}

#parts_product_content .item .p_product {
    color: #414042;
    font-size: 24px;
    line-height: 1.6666;
    margin: 30px 0;
}

#parts_product_content .item .list_product {
    margin-bottom: 20px;
    max-width: 690px;
}

#parts_product_content .item .list_product li {
    font-size: 16px;
    line-height: 1.875;
    color: #231815;
    position: relative;
    padding-left: 1em;
}

#parts_product_content .item .list_product li:before {
    content: '';
    width: 0.6em;
    height: 0.6em;
    display: block;
    border-radius: 50%;
    background-color: #E50012;
    top: 11px;
    left: 0;
    position: absolute;
}

#parts_product_content .item .link_product {
    font-size: 18px;
    transition: all 0.3s ease-out;
}

#parts_product_content .item .link_product:after {
    content: '';
    width: 16px;
    height: 16px;
    background: url(../img/button_S_off.png) center center no-repeat;
    background-size: contain;
    display: inline-block;
    margin-left: 5px;
    transition: all 0.3s ease-out;
}

#parts_product_content .item .link_product:hover {
    color: #F4A652;
}

#parts_product_content .item .link_product:hover:after {
    background-image: url(../img/button_S_roll.png);
}

#parts_product_content .p_note_product {
    font-size: 16px;
    line-height: 1.875;
    color: #231815;
}

/*---------- 右サイド ----------*/

#parts_product_content .right .item_btn {
    color: #231815;
    width: 215px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    background-color: #FFE262;
    border-radius: 1.5px;
    transition: all 0.3s ease-out;
    text-align: center;
    line-height: 1.25;
}

#parts_product_content .right .item_btn:hover {
    background-color: #F4A652;
}

#parts_product_content .right .item_btn:not(:last-of-type) {
    margin-bottom: 25px;
}

@media screen and (max-width: 1023px) {
    #parts_product_content .item {
        padding: 40px 20px 25px;
        border-width: 1px;
    }

    #parts_product_content .item:first-of-type {
        border-width: 1px;
    }

    #parts_product_content .item>.flex {
        flex-direction: column;
    }

    #parts_product_content .item .left {
        margin-bottom: 35px;
    }

    #parts_product_content .item h3 span {
        font-size: 24px;
    }

    #parts_product_content .item h3 span.eiji {
        font-size: 24px;
    }

    #parts_product_content .item .p_product {
        font-size: 18px;
        line-height: 1.5;
        margin: 25px 0 20px;
    }

    #parts_product_content .item .list_product li {
        font-size: 15px;
        line-height: 1.7666;
    }

    #parts_product_content .item .link_product {
        font-size: 16px;
        line-height: 1.5;
    }

    #parts_product_content .item .link_product:after {
        position: relative;
        top: 2px;
    }

    #parts_product_content .right {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #parts_product_content .right .item_btn {
        width: calc(50% - 7.5px);
        font-size: 13px;
        height: 42px;
        margin-bottom: 15px !important;
    }
}

/* 修正分 */

.section-product-title {
    font-size: 26px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #d71718;
    border-radius: 2em;
    font-weight: bold;
    margin-bottom: 50px;
}

.text-body {
    font-size: 17px;
    line-height: 1.88;
}

#parts_product_content .item.shinki .text-body {
    padding-right: 100px;
}

.contact {
    margin-top: 45px;
    display: flex;
    align-items: end;
    gap: 30px;
}

.contact__note {
    font-size: 17px;
    color: #231815;
    font-weight: bold;
    margin-bottom: 0.75em;
}

.contact__store {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0.6em;
}

.contact__tel {
    font-size: 42px;
    font-weight: bold;
}

.contact__tel:before {
    content: '';
    width: 26px;
    height: 26px;
    background: url(../img/img_tel_blc.png) center center no-repeat;
    background-size: contain;
    display: inline-block;
    margin-right: 2px;
}

.contact__hours {
    font-size: 13px;
    line-height: 20px;
}

@media screen and (max-width: 1023px) {
    .section-product-title {
        font-size: 15px;
        text-align: center;
        line-height: 1.375;
    }

    .text-body {
        font-size: 15px;
        line-height: 1.5;
    }

    #parts_product_content .item.shinki .text-body {
        padding-right: 0;
    }

    .contact {
        flex-direction: column;
        align-items: start;
    }

    .contact__hours {
        font-size: 11px;
    }
}

/* ------------------------------------------------ */

/* 製品ラインナップ */

/* ------------------------------------------------ */

#parts_product_line_up .ttl {
    font-size: 20px;
    margin-bottom: 40px;
    text-align: center;
    color: #000000;
}

#parts_product_line_up .content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

#parts_product_line_up .content .item {
    display: block;
    transition: all 0.3s ease-out;
}

#parts_product_line_up .content .item:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 1023px) {
    #parts_product_line_up .ttl {
        font-size: 15px;
        margin-bottom: 30px;
    }

    #parts_product_line_up .content {
        flex-direction: column;
        max-width: 250px;
    }
}

/* ------------------------------------------------ */

/* ベネフィット */

/* ------------------------------------------------ */

#parts_benefit {
    background-color: #414042;
    border-radius: 10px;
    max-width: 1360px;
    width: calc(100% - 100px);
    margin: 0 auto;
    padding: 40px 30px 80px;
    color: #fff;
    overflow: hidden;
}

#parts_benefit h2 {
    display: flex;
    justify-content: start;
    gap: 50px;
    align-items: center;
    margin-bottom: 55px;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
}

#parts_benefit h2 img {
    width: 300px;
}

#parts_benefit h2 span {
    font-size: 32px;
    font-weight: normal;
}

/*---------------- コンテンツ ----------------*/

#parts_benefit .content {
    max-width: 1000px;
    margin: 0 auto;
}

#parts_benefit .content .item {
    color: #E50012;
    font-size: 21px;
    height: 80px;
    padding: 0 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: #fff;
    position: relative;
    transition: all 0.3s ease-out;
}

#parts_benefit .content .item:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 145px;
    display: block;
    background: url(../img/wff_benefit_image1.png) center center no-repeat;
    background-size: 145px;
    border-radius: 0 10px 10px 0;
}

#parts_benefit .content .item:hover {
    background-color: #5EA2D7;
    color: #fff;
}

#parts_benefit .content .item:nth-of-type(2):after {
    background: url(../img/wff_benefit_image2.png) center bottom -16px no-repeat;
    background-size: 145px;
}

#parts_benefit .content .item:nth-of-type(3):after {
    background: url(../img/wff_benefit_image3.png) center top -18px no-repeat;
    background-size: 145px;
}

#parts_benefit .content .item:nth-of-type(4):after {
    background: url(../img/wff_benefit_image4.png) center top -14px no-repeat;
    background-size: 155px;
}

#parts_benefit .content .item:nth-of-type(5):after {
    background-image: url(../img/wff_benefit_image5.png);
}

#parts_benefit .content .item:nth-of-type(6):after {
    background-image: url(../img/wff_benefit_image6.png);
}

#parts_benefit .content .item:not(:last-of-type) {
    margin-bottom: 30px;
}


@media screen and (max-width: 1023px) {
    #parts_benefit {
        width: 100%;
        border-radius: 0;
        padding: 40px 20px;
    }

    #parts_benefit h2 {
        flex-direction: column;
        align-items: start;
        gap: 12px;
        margin-bottom: 20px;
    }

    #parts_benefit h2 img {
        width: 144px;
    }

    #parts_benefit h2 span {
        font-size: 16px;
    }

    #parts_benefit .content .item {
        min-height: 62px;
        height: auto;
        font-size: 15px;
        padding: 8px 18px;
        line-height: 1.5;
    }

    #parts_benefit .content .item span {
        width: calc(100% - 60px);
    }

    #parts_benefit .content .item:after {
        width: 75px;
    }

    #parts_benefit .content .item:not(:last-of-type) {
        margin-bottom: 20px;
    }
}

/*---------- benefit 2nd ----------*/

#parts_benefit.second {
    padding-top: 60px;
    padding-bottom: 60px;
}

#parts_benefit.second .benefit_inner {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: space-between;
}

#parts_benefit.second h2 {
    flex-direction: column;
    align-items: start;
    gap: 40px;
    max-width: initial;
    margin-right: initial;
    margin-left: initial;
}

#parts_benefit.second h2 img {
    width: 200px;
}

#parts_benefit.second h2 span {
    font-size: 24px;
    line-height: 1.6666;
    max-width: 6em;
}

#parts_benefit.second .content {
    max-width: 755px;
    width: 100%;
    margin: 0;
}

#parts_benefit.second .content .item {
    padding-right: 170px;
    font-size: 18px;
    line-height: 1.3333;
}

#parts_benefit.second .content .item:not(:last-of-type) {
    margin-bottom: 30px;
}

@media screen and (max-width: 1023px) {
    #parts_benefit.second {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #parts_benefit.second .benefit_inner {
        flex-direction: column;
    }

    #parts_benefit.second .content .item {
        padding-right: 30px;
        font-size: 15px;
    }

    #parts_benefit.second h2 {
        gap: 15px;
    }

    #parts_benefit.second h2 img {
        width: 155px;
    }

    #parts_benefit.second h2 span {
        font-size: 16px;
        max-width: initial;
    }
}


/* ------------------------------------------------ */

/* Column&Tips */

/* ------------------------------------------------ */

#parts_column_tips {
    padding: 120px 0 110px;
}

#parts_column_tips h2 {
    max-width: 650px;
    margin: 0 auto 30px;
}

#parts_column_tips h3 {
    color: #E50012;
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: normal;
}

#parts_column_tips .content {
    max-width: 1000px;
    margin: 0 auto;
    height: 550px;
    height: auto;
    position: relative;
    transition: all 0.3s ease-out;
}

#parts_column_tips .content>.inner {
    width: 100%;
    height: 100%;
    padding: 0;
    background: none;
}

/*#parts_column_tips .column_link:first-of-type .content > .inner {
    background: linear-gradient(
        90deg,
        rgba(223, 219, 216, 1) 0%,
        transparent 4%,
        transparent 96%,
        rgba(223, 219, 216, 1) 100%
    );
}*/

#parts_column_tips .content .item:not(:last-of-type) {
    margin-bottom: 40px;
}

#parts_column_tips .content h4 {
    font-size: 14px;
    color: #231815;
    display: inline-block;
    background-color: #F2A6AE;
    padding: 5px 5px;
    font-weight: normal;
    margin-bottom: 12px;
}

#parts_column_tips .content .item:nth-of-type(2) h4 {
    background-color: #87D0F4;
}

#parts_column_tips .content p {
    font-size: 20px;
    color: #231815;
    line-height: 1.7;
}

#parts_column_tips .content .item:nth-of-type(1) p {
    font-size: 30px;
    line-height: 1.5;
}

#parts_column_tips .content .column_img {
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

#parts_column_tips .p_section03 {
    font-size: 17px;
    max-width: 1000px;
    margin: 25px auto 10px;
    transition: all 0.3s ease-out;
    display: block;
}

#parts_column_tips .p_section03:after {
    content: '';
    width: 1.88em;
    height: 1.88em;
    display: inline-block;
    background: url(../img/button_M_red.png) center center no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-left: 12px;
    position: relative;
    top: -3px;
    transition: all 0.3s ease-out;
}

#parts_column_tips .column_link {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

#parts_column_tips .p_section03:hover {
    color: #F4A652;
}

#parts_column_tips .p_section03:hover:after {
    background-image: url(../img/button_M_roll.png);
}

@media screen and (max-width: 1023px) {
    #parts_column_tips {
        padding: 50px 20px;
    }

    #parts_column_tips h2 {
        margin-bottom: 15px;
    }

    #parts_column_tips h3 {
        font-size: 16px;
        text-align: center;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    #parts_column_tips .content {
        height: auto;
    }

    #parts_column_tips .content>.inner {
        padding: 0;
    }
}

/*---------- Column&Tips 2nd ----------*/

#parts_column_tips.second {
    display: flex;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
}

#parts_column_tips.second .ttl_wrapper {
    max-width: 350px;
}

#parts_column_tips.second h2 {
    width: 315px;
    margin: 0;
    margin-bottom: 40px;
}

#parts_column_tips.second h3 {
    font-size: 22px;
    line-height: 1.86;
    text-align: left;
    margin: 0;
}

#parts_column_tips.second .content_wrapper {
    width: 100%;
    max-width: 650px;
}

#parts_column_tips.second .content {
    height: auto;
}

#parts_column_tips.second .content>.inner {
    padding: 0;
}

@media screen and (max-width: 1023px) {
    #parts_column_tips.second {
        flex-direction: column;
    }

    #parts_column_tips.second h2 img {
        display: none;
    }

    #parts_column_tips.second h2 {
        width: 100%;
        height: 65px;
        background: url(../img/wff_column.png) center center no-repeat;
        background-size: contain;
        margin-bottom: 15px;
    }

    #parts_column_tips.second h3 {
        font-size: 16px;
        line-height: 1.25;
        text-align: center;
        margin-bottom: 20px;
    }
}



/* ------------------------------------------------ */
/* スライドショー */
/* ------------------------------------------------ */

/* インジケータのスタイル */
#indicators {
    text-align: center;
    margin-top: 40px;
}

.indicator {
    display: inline-block;
    width: 80px;
    height: 15px;
    margin: 0 10px;
    cursor: pointer;
    background-color: #ccc;
}

.indicator.active {
    background-color: #E50012;
}

/* スライドショーのための追記 */
#slideshow_wrapper {
    width: 1000px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

/* 画角固定の左右グラデーション（乗算） */
#slideshow_wrapper::before,
#slideshow_wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(10%, 120px);
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: .15;
    /* 濃さ（必要に応じて調整） */
    z-index: 2;
    /* 画像より前／ホバー色より下 */
    background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

#slideshow_wrapper::after {
    left: auto;
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

#slideshow {
    display: flex;
    width: 2000px;
    /* 画像枚数 × 100% にする */
    transition: transform 0.75s ease;
}

#slideshow .column_link {
    width: 1000px;
    height: 550px;
}

#parts_column_tips .content {
    width: 100%;
    height: 100%;
}

/* タイトルのスライド */
#title_slide {
    height: 128px;
    position: relative;
}

#title_slide img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    flex-shrink: 0;
    object-fit: contain;
}

#title_slide img.active {
    opacity: 1;
}

#links {
    max-width: 1000px;
    margin: -20px auto 0;
    height: 35px;
    padding-top: 3px;
    overflow: hidden;
    position: relative;
    pointer-events: none;
}

#links>.link {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    text-align: right;
}

#links>.link.active {
    opacity: 1;
}

#links>.link .p_section03 {
    margin: 0;
    display: inline-block;
    width: auto;
    pointer-events: none;
}

#links>.link.active .p_section03 {
    pointer-events: visible;
}

/* ------------------------------------------------ */
/* スライドショーのホバーエフェクト（個別対応） */
/* ------------------------------------------------ */

/* スライド2枚画像：各aに個別hover */
.slide-link {
    position: relative;
    display: block;
}

.slide-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 226, 98, 0);
    /* 初期透明 */
    transition: background 0.3s ease;
    z-index: 3;
}

.slide-link:hover::after {
    background: rgba(255, 226, 98, 0.3);
    /* ホバー時半透明黄色 */
}

/* 画像は下に置く */
.slide-link img {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: auto;
}

/* ---- Column&Tips スライド：左右端を乗算で暗くする ---- */
#slideshow .content .inner {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    /* ブレンドをこの箱内に閉じ込める */
}

/* ------------------------------------------------ */
/* セカンド */
/* ------------------------------------------------ */

#parts_column_tips.second h2 {
    width: 315px;
    max-width: initial;
    height: 175px;
}

#parts_column_tips.second #slideshow_wrapper {
    width: 650px;
}

#parts_column_tips.second #slideshow .column_link {
    width: 650px;
    height: 358px;
    max-width: initial;
    margin: 0;
}

#parts_column_tips.second #indicators {
    text-align: left;
}

@media screen and (max-width: 1023px) {

    #slideshow_wrapper,
    #parts_column_tips.second #slideshow_wrapper {
        width: 100%;
    }

    #slideshow {
        width: 200%;
    }

    #slideshow .column_link,
    #parts_column_tips.second #slideshow .column_link {
        width: 100%;
        height: 55%;
        max-width: initial;
    }

    #title_slide,
    #parts_column_tips.second #title_slide {
        height: 70px;
    }

    #links {
        margin-top: 20px;
    }
}


/* ------------------------------------ */

/* User's Voice */

/* ------------------------------------ */

#parts_voice {
    padding: 60px 0 50px;
    background-color: #BCBEC0;
    position: relative;
}

#parts_voice .img_back_voice {
    background: url(../img/voice_men.png) center right no-repeat;
    background-size: contain;
    width: 100%;
    height: 438px;
    position: absolute;
    max-width: 1145px;
    bottom: 0;
    z-index: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

#parts_voice h2 {
    margin: 0 auto 35px;
}

#parts_voice .h2_img_box {
    /* max-width: 1300px; */
    max-width: 1000px;
    width: calc(100% - 160px);
    margin: 0 auto 30px;
}

#parts_voice h2 img {
    width: 528px;
    position: relative;
    /* left: -62px; */
}

#parts_voice h2 span {
    display: block;
    color: #231815;
    font-size: 36px;
    font-weight: normal;
    max-width: 1000px;
    margin: 0 auto;
}

#parts_voice .content {
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

#parts_voice .content .item {
    display: block;
    font-size: 18px;
    padding: 18px 24px;
    background-color: #fff;
    border: 2px solid #E50012;
    color: #E50012;
    border-radius: 3px;
    transition: all 0.3s ease-out;
    max-width: 748px;
}

#parts_voice .content .item:not(:last-of-type) {
    margin-bottom: 18px;
}

#parts_voice .content .item:hover {
    background-color: #D71920;
    color: #fff;
}

#parts_voice .link_voice {
    font-size: 17px;
    max-width: 1000px;
    margin: 25px auto 10px;
    transition: all 0.3s ease-out;
    color: #fff;
    display: block;
}

#parts_voice .link_voice:before {
    content: '';
    width: 1.88em;
    height: 1.88em;
    display: inline-block;
    background: url(../img/button_M_white.png) center center no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-right: 12px;
    position: relative;
    top: -3px;
    transition: all 0.3s ease-out;
}

#parts_voice .link_voice:hover {
    color: #D71920;
}

#parts_voice .link_voice:hover:before {
    background-image: url(../img/button_M_red.png);
}

#parts_voice.second .content .item:nth-of-type(4),
#parts_voice.second .content .item:nth-of-type(5) {
    display: none;
}

@media screen and (max-width: 1023px) {
    #parts_voice {
        padding: 60px 20px 50px;
    }

    #parts_voice .h2_img_box {
        margin: 0 0 14px;
        width: 100%;
    }

    #parts_voice h2 {
        margin-bottom: 30px;
    }

    #parts_voice h2 img {
        width: 200px;
    }

    #parts_voice h2 span {
        font-size: 16px;
        line-height: 1.5625;
    }

    #parts_voice .content .item {
        font-size: 15px;
        padding: 12px 15px;
        line-height: 1.5;
        border-radius: 10px;
    }

    #parts_voice .img_back_voice {
        width: 110px;
        height: 140px;
        bottom: initial;
        left: initial;
        transform: initial;
        top: 42px;
        right: 20px;
    }
}

@media screen and (min-width: 1024px) {
    /*---------- parts_voice 2nd ----------*/

    #parts_voice.second .h2_img_box {
        max-width: 1000px;
    }

    #parts_voice.second h2 img {
        width: 340px;
    }

    #parts_voice.second h2 span {
        font-size: 24px;
    }

    #parts_voice.second .img_back_voice {
        height: 350px;
        max-width: 1000px;
    }

    #parts_voice.second .content .item {
        max-width: 758px;
    }
}

/* ------------------------------------------------ */

/* 商品ラインナップ　セクション */

/* ------------------------------------------------ */


/* section02 */

#product_line_up_back_gray_section {
    background-color: #414042;
    width: calc(100% - 100px);
    margin: 0 auto;
    border-radius: 10px;
    max-width: 1360px;
    padding: 65px 0;
}

#product_line_up_back_gray_section h3 {
    color: #fff;
    font-size: 30px;
    line-height: 1.38888;
    text-align: center;
    margin-bottom: 45px;
    font-weight: normal;
}

#product_line_up_back_gray_section .img_icon_box {
    max-width: 708px;
    margin: 0 auto 40px;
}

#product_line_up_back_gray_section #parts_product_line_up .ttl {
    color: #fff;
}

@media screen and (max-width: 1023px) {

    #product_line_up_back_gray_section {
        padding: 50px 20px;
        border-radius: 0;
        width: 100%;
    }

    #product_line_up_back_gray_section h3 {
        font-size: 16px;
        line-height: 1.5625;
        text-align: left;
        margin-bottom: 22px;
    }

    #product_line_up_back_gray_section .img_icon_box {
        margin-bottom: 40px;
    }

}



/* ポップアップ */

.popup-trigger-group {
    margin-top: 25px;
    cursor: pointer;
}

.popup-trigger-group:hover>.item_btn {
    background-color: #F4A652 !important;
}

.popup-trigger-group .item_btn:not(:last-of-type) {
    margin-bottom: 15px !important;
}

.popup-wrapper {
    position: relative;
}

.popup {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 220px;
    z-index: 1000;
}

.popup,
.popup img {
    width: 450px;
    height: 240px;
}

.popup.active {
    display: block;
}

.popup.active img.sp {
    display: none;
}

.popup__close {
    position: absolute;
    width: 27px;
    height: 27px;
    top: 17px;
    right: 47px;
    cursor: pointer;
    border: none;
    background-color: transparent;
}

#banner_esitmate .popup-trigger-group {
    margin-top: 0;
}

#banner_esitmate .popup {
    right: 100px;
}

@media screen and (max-width: 1023px) {

    #parts_product_content .right {
        position: relative;
    }

    .popup-wrapper {
        /* width: 100%; */
        width: calc(50% - 7.5px);
        position: initial;
    }

    .popup {
        right: initial;
        left: 50%;
        transform: translateX(-50%);
        top: initial;
        bottom: 60px;
    }

    .popup.active img.pc {
        display: none;
    }

    .popup.active img.sp {
        display: block;
    }

    .popup__close {
        top: 12px;
        right: 12px;
    }

    .popup,
    .popup img {
        width: 360px;
        height: 230px;
    }

    .popup-trigger-group {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 0;
    }

    .popup-trigger-group .item_btn {
        width: 100%!important;
    }

    /* #parts_product_content .item:last-of-type .right {
        display: flex;
        width: 100%;
    }

    #parts_product_content .item:last-of-type .right .popup-wrapper {
        width: calc(50% - 7.5px);
    }

    #parts_product_content .item:last-of-type .right .popup-wrapper .item_btn {
        width: 100%;
    } */
}