.shinko_store {
    color: #2b2b2b;

    h1 {
        line-height: unset !important;
    }
/* ============================================================
    MV
============================================================ */
    
    .store__mv{
        display: flex;
        flex-direction: column;
    }
    .store__mv_img {
        width: 100% !important;
        img{
            width: 100%;
        }
    }
    
    .store__point {
        margin-top: -50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }
    
    .store__point.pc {
        display: none;
    }
    
    .store__mv_point {
        width: 110px !important;
    }
    
    .service__title {
        font-size: 16px;
        text-align: center;
        font-weight: 700;
        position: relative;
        margin: 20px auto 0;
        width: 300px;
    
        &::before {
            content: "";
            width: 16px;
            height: 2px;
            background-color: #1a1a1a;
            position: absolute;
            top: 12px;
            left: -10px;
            transform: rotate(55deg);
        }
    
        &::after {
            content: "";
            width: 16px;
            height: 2px;
            background-color: #1a1a1a;
            position: absolute;
            top: 12px;
            right: -10px;
            transform: rotate(-55deg);
        }
    }
    
    .store__logo {
        margin: -10px auto 0;
        width: 85%;
    }
    
    .store__mvtxt {
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.3px;
        width: 330px;
        margin: 20px auto;
        text-align: center;
    }
 
    .btn_base_donyu {
        a {
            padding: 16px 16px;
            font-size: 16px !important;
            display: table;
            margin-inline: auto;
            width: 300px;
            text-align: center;
            border-radius: 8px;
            color: #44ae35;
            border: 2px solid #44ae35;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-top: 16px;
            position: relative;
    
            &::after {
                content: "";
                display: block;
                position: absolute;
                background: url(/cms/wp-content/themes/shinko/images/icon_next_green.svg) 50% 50% no-repeat;
                background-size: contain;
                width: 18px;
                height: 18px;
                top: 35%;
                right: 24px;
                transform: rotate(90deg);
            }
    
            &:hover {
                color: #39922c;
                background-color: #e8f5e6;
                border: 2px solid #39922c;
            }
        }
    }
 
    @media screen and (min-width: 768px) {
        .store__mv_img {
            margin-top: -150px;
        }
    
        .service__title {
            font-size: 20px;
            width: 360px;
    
            &::before {
                width: 20px;
                top: 16px;
                left: -20px;
            }
    
            &::after {
                width: 20px;
                top: 16px;
                right: -20px;
            }
        }
    
        .store__logo {
            margin: 0 auto;
            width: 70%;
        }
    
        .store__mvtxt {
            width: 380px;
        }
    
        .btn_base_donyu a {
            padding: 18px 64px;
            font-size: 24px;
            width: 380px;
        }
    }
 
    @media screen and (min-width: 920px) {
        .mv__img {
            display: block;
            width: 47%;
        }
    
        
    
        .store__mv {
            align-items: center;
            justify-content: center;
            flex-direction: row-reverse;
            gap: 5%;
            margin: 20px 0;
        }
    
        .mv__txtList {
            padding-left: 40px;
        }
    
        .store__logo {
            margin: -10px auto 0;
            width: 500px;
        }
    
        .store__point.sp {
            display: none;
        }
    
        .store__point.pc {
            display: flex;
            margin-top: 0;
            gap: 0;
        }
    
        .store__mv_point {
            width: 100px !important;
        }
    
        .store__mvtxt {
            text-align: left;
            width: 465px;
            letter-spacing: 0.5px;
            margin: 20px auto 40px;
        }
    
        .spBr {
            display: none;
        }
    
        .store_mvbtn {
            width: 380px;
            text-align: center;
            margin: 0 auto;
        }
    
        .btn_base_donyu a {
            padding: 20px 64px;
            font-size: 20px !important;
    
            &:hover {
                color: #39922c;
                background-color: #e8f5e6;
                border: 2px solid #39922c;
            }
        }
    
        #store__mv .link_download .tx_c .tx_bold .mv {
            width: 380px;
            text-align: center;
            margin: 0 auto;
        }
    }


/* ============================================================
    .solution_section
============================================================ */
    .solution_section{
        margin-top: 40px;
        .heading_lv1{
            margin-bottom: 48px;
        }
        .solution__content{
            display: flex;
            flex-direction: column;
            gap: 12px;
            &:not(:last-child){
                margin-bottom: 40px;
            }
            .solution__content__item{
                display: flex;
                flex-direction: column;
                gap: 12px;
                .solution__content__item__text{
                    font-size: 16px;
                    line-height: 1.4;
                    position: relative;
                    padding-left: 26px;
                    &:before{
                        position: absolute;
                        content: "";
                        left: 0;
                        top: 0;
                        width: 20px;
                        height: 20px;
                        background-size: contain;
                        background-repeat: no-repeat;
                        background-position: left top;
                        background-image: url(/images/common/icon_checkbox_green.svg);
                        margin-top: 1px;
                        
                    }
                }
            }
            
        }
    }
    /* PC */
    @media screen and (min-width: 768px){
        .solution_section{
            margin-top: 64px;
            .heading_lv1{
                margin-bottom: 64px;
            }
            .solution__content{
                flex-direction: row;
                .solution__content__item{
                    width: calc(50% - 20px);
                    .solution__content__item__text{
                        padding-left: 30px;
                        &:before{
                        }
                    }
                }
            }
            
        }
    }

/* ============================================================
    .realization_section
============================================================ */
    .realization_section{
        margin-top: 100px;
        .heading_lv1{
            margin-bottom: 48px;
        }
        .btn_wrapper{
            margin: 56px auto 0;
        }
    }
    /* PC */
    @media screen and (min-width: 768px){
        .realization_section{
            margin-top: 160px;
            .heading_lv1{
                margin-bottom: 64px;
            }
            .btn_wrapper{
                margin: 80px auto 0;
            }
        }
    }

/* ============================================================
    movie_section
============================================================ */
    .movie_section{
        margin-top: 100px;
        .heading_lv1{
            margin-bottom: 48px;
        }
        .movie_section_inner{
            h2{
                font-weight: bold;
                text-align: center;
                line-height: 1.414;
                font-size: 20px;
                margin-bottom: 16px;
            }
            .movie_wrapper{
                position: relative;
                width: 100%;
                margin: 0 auto;
                aspect-ratio: 16 / 9;
                max-width: 720px;
                iframe{
                    width: 100%;
                    height: 100%;
                }
            }
            .movie_notes{
                margin-top: 8px;
                font-size: 13px;
                text-align: center;
            }
        }
    }
     /* PC */
    @media screen and (min-width: 768px){
        .movie_section{
             margin-top: 160px;
            .heading_lv1{
                margin-bottom: 64px;
            }
            .movie_section_inner{
                max-width: 750px;
                h2{
                font-size: 32px;
                margin-bottom: 32px;
                }
            }
        }
        
    }

/* ============================================================
    reason_section
============================================================ */
    .reason_section{
        margin-top: 120px;
        .heading_lv1{
            margin-bottom: 48px;
        }
        .reason_heading_lv3{
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            line-height: 1.3;
            margin-bottom: 48px;
        }
        .reason_content{
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            .reason_content__item{

                .reason_content__item__img{
                    width: 100%;
                    margin-bottom: 20px;
                }
                .reason_content__item__heading{
                    font-size: 18px;
                    font-weight: bold;
                    line-height: 1.5;
                    margin-bottom: 10px;
                    small{
                        font-size: 14px;
                    }
                }
                p{
                    line-height: 1.6;
                    font-size: 14px;
                }
            }
        }
    }
    /* PC */
    @media screen and (min-width: 768px){
        .reason_section{
            margin-top: 160px;
            .heading_lv1{
                margin-bottom: 64px;
            }
            .reason_heading_lv3{
                font-size: 24px;
                margin-bottom: 64px;
            }
            .reason_content{
                grid-template-columns: repeat(3, 1fr);
                gap: 48px 30px;
                .reason_content__item{
                    .reason_content__item__img{
                        margin-bottom: 20px;
                    }
                    .reason_content__item__heading{
                        font-size: 20px;
                        margin-bottom: 20px;
                    }
                    p{
                        font-size: 16px;
                    }
                }
            }
        }
    }

/* ============================================================
    needs_section
============================================================ */

    .needs_section {
        background: linear-gradient(to bottom, #ECFFE9, #fff 400px);
        margin-top: 60px;
        padding-top: 64px;

        .heading_lv1 {
            margin-bottom: 48px;
        }

        .needs_heading_under_text {
            font-size: 14px;
            font-weight: bold;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 64px;
        }

        .compare {
            position: relative;
            padding-left: 16px;

            .card {
                margin-top: 160px;
                padding-top: 24px;
                position: relative;
                border: 1px solid #c2c2c2;

                h3 {
                    margin-bottom: 8px;
                    font-size: 20px;
                }
                .compare_card__desc {
                    padding: 24px;
                    word-break: break-all;
                    text-align: justify;
                    .compare_card__desc__flex {
                        display: flex;
                        align-items: center;
                        flex-direction: column;
                        gap: 8px;

                        img {
                            width: 100%;
                        }

                        p {
                            font-size: 14px;
                        }
                    }
                }
            }

            .compare_store {
                border-color: #45b035;

                &::before {
                    content: "";
                    display: block;
                    position: absolute;
                    top: -160px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 140px;
                    height: 104px;
                    background: url(/cms/wp-content/themes/shinko/images/shinko-store/renewal_2026/company_scale_xl.svg) 50% 50% no-repeat;
                    background-size: contain;
                }

                .tx_green {
                    color: #45b035;
                }

                .num_of_worker {
                    background: #45b035;
                }

                
            }

            .compare_offmeshi {
                border-color: #ed6d00;

                &::before {
                    content: "";
                    display: block;
                    position: absolute;
                    top: -140px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 140px;
                    height: 104px;
                    background: url(/cms/wp-content/themes/shinko/images/shinko-store/renewal_2026/company_scale_sm_one.svg) 50% 50% no-repeat;
                    background-size: contain;
                }

                &::after {
                    content: "～";
                    font-weight: bold;
                    font-size: 20px;
                    display: block;
                    position: absolute;
                    top: -90px;
                    left: 50%;
                    transform: translateX(20px);
                }

                .tx_orange {
                    color: #ed6d00;
                }

                .compare_offmeshi__desc__link {
                    width: 100%;
                    margin-top: 8px;
                    text-align: right;

                    a {
                        color: #ed6d00;

                        .icon-arrow {
                            &:before {
                                color: #ed6d00;
                                padding-left: 8px;
                                font-size: 10px;
                            }
                        }
                    }
                }

                .num_of_worker {
                    background: #ed6d00;
                }

            }

            .num_of_worker {
                position: absolute;
                top: -32px;
                left: -16px;
                padding: 8px 20px;
                font-weight: bold;
                color: #fff;
                z-index: 1;
            }

            .size_arrow {
                position: absolute;
                width: 4px;
                height: 100%;
                left: 0;
                top: 0;
                background: linear-gradient(to bottom, #45B035 50%, #E2D900 55%, #ED6D00 60%);

                &::before {
                    content: "";
                    position: absolute;
                    width: 0;
                    height: 0;
                    border: 16px solid rgba(0, 0, 0, 0);
                    border-bottom: 24px solid #45b035;
                    top: -24px;
                    left: -14px;
                }

                &::after {
                    content: "";
                    position: absolute;
                    width: 0;
                    height: 0;
                    border: 10px solid rgba(0, 0, 0, 0);
                    border-top: 16px solid #ed6d00;
                    bottom: -24px;
                    left: -8px;
                }
            }
        }
    }

    /* PC */
    @media screen and (min-width: 768px) {

        .needs_section {
            margin-top: 120px;
            padding-top: 40px;

            .heading_lv1 {
                margin-bottom: 64px;
            }

            .needs_heading_under_text {
                font-size: 16px;
                margin-bottom: 0;
            }

            .compare {
                padding-left: 0;

                > .flex_wrap {
                    gap: 32px;
                }

                .card {
                    margin-top: 240px;
                    padding-top: 0;

                    h3 {
                        margin-bottom: 16px;
                        font-size: 20px;
                    }

                    .textbox img {
                        height: 160px;
                        -o-object-fit: cover;
                        object-fit: cover;
                    }
                    .compare_card__desc {
                        padding: 20px;
                        word-break: break-all;
                        text-align: justify;
                        .compare_card__desc__flex {
                            gap: 12px;

                            img {
                                width: 180px;
                                height: 180px;
                                object-fit: cover;
                            }

                            p {
                                font-size: 15px;
                            }

                            .compare_card__desc__link {
                                margin-top: 16px;

                                a {
                                    .icon-arrow {
                                        &:before {
                                            font-size: 14px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }

                .compare_store {
                    width: calc(54% - 16px);

                    &::before {
                        top: -200px;
                        left: 40%;
                        transform: translateX(-50%);
                        width: 140px;
                        height: 104px;
                        background: url(/cms/wp-content/themes/shinko/images/shinko-store/renewal_2026/company_scale_xl.svg) 50% 50% no-repeat;
                        background-size: contain;
                    }

                    &::after {
                        content: "";
                        display: block;
                        position: absolute;
                        top: -180px;
                        left: 90%;
                        transform: translateX(-50%);
                        width: 100px;
                        height: 84px;
                        background: url(/cms/wp-content/themes/shinko/images/shinko-store/renewal_2026/company_scale_md.svg) 50% 50% no-repeat;
                        background-size: contain;
                    }

                    .num_of_worker::after {
                        content: "";
                        position: absolute;
                        width: 24px;
                        height: 24px;
                        background: url(/cms/wp-content/themes/shinko/images/shinko-store/renewal_2026/triangle_green.svg) 50% 50% no-repeat;
                        background-size: contain;
                        top: 56px;
                        left: 50%;
                        transform: translateX(-50%);
                    }
                }

                .compare_offmeshi {
                    width: calc(46% - 16px);

                    &::before {
                        top: -180px;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 140px;
                        height: 104px;
                        background: url(/cms/wp-content/themes/shinko/images/shinko-store/renewal_2026/company_scale_sm_one.svg) 50% 50% no-repeat;
                        background-size: contain;
                    }

                    &::after {
                        content: none;
                    }

                    .num_of_worker::after {
                        content: "";
                        position: absolute;
                        width: 24px;
                        height: 24px;
                        background: url(/cms/wp-content/themes/shinko/images/shinko-store/renewal_2026/triangle_orange.svg) 50% 50% no-repeat;
                        background-size: contain;
                        top: 56px;
                        left: 50%;
                        transform: translateX(-50%);
                    }
                }

                .num_of_worker {
                    border-radius: 32px;
                    top: -72px;
                    left: 50%;
                    width: max-content;
                    transform: translateX(-50%);
                }

                .size_arrow {
                    width: 100%;
                    height: 4px;
                    top: 190px;
                    background: linear-gradient(to right, #45B035 50%, #E2D900 55%, #ED6D00 60%);

                    &::before {
                        top: -18px;
                        left: -34px;
                        transform: rotate(-90deg);
                    }

                    &::after {
                        border: 12px solid rgba(0, 0, 0, 0);
                        border-top: 18px solid #ed6d00;
                        bottom: -13px;
                        right: -20px;
                        left: auto;
                        transform: rotate(-90deg);
                    }
                }
            }
        }
    }

    /* 768px ～ 1080px */
    @media screen and (min-width: 768px) and (max-width: 1080px) {

        .needs_section{
            .compare {
                .card{
                    .compare_card__desc{
                        .compare_card__desc__flex {
                            flex-direction: column;
                            img {
                                width: 100%;
                                height: 180px;
                            }
                        }
                    }
                }
            }
        }
        
    }

    /* 1081px以上 */
    @media screen and (min-width: 1081px) {

        .needs_section{
            .compare{
                .card{
                    .compare_card__desc{
                        .compare_card__desc__flex {
                            flex-direction: row;
                        }
                    }
                }
                
            } 
        } 
    }

/* ============================================================
    fee_section
============================================================ */
    .fee_section {
        margin-top: 120px;
        .fee_box {
            width: fit-content;
            max-width: 980px;
            margin: 0 auto;
            padding: 48px 24px 24px;
            position: relative;
            border-radius: 8px;
            border: 3px solid #41a732;

            h2 {
                position: absolute;
                top: 0;
                left: 50%;
                transform: translate(-50%, -100%);
                background: #41a732;
                color: #fff;
                width: calc(100% - 48px);
                max-width: 400px;
                border-radius: 8px 8px 0 0;
                padding: 8px 0;
                font-size: 20px;
            }

            p {
                font-size: 16px;
                margin-bottom: 24px;
            }

            .equipments {
                gap: 24px;

                .equipment {
                    background: #fafafa;
                    border: 1px solid #41a732;
                    border-radius: 6px;
                    padding: 24px 0 0;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    flex: auto;

                    img {
                        padding: 0 24px 16px;
                        width: 90%;
                        margin: 0 auto;
                        flex: auto;
                    }

                    span {
                        background: #41a732;
                        color: #fff;
                        font-size: 14px;
                        font-weight: bold;
                        text-align: center;
                        padding: 8px;
                    }

                    &:first-child {
                        width: calc(44% - 12px);
                    }

                    &:nth-child(2) {
                        width: calc(56% - 12px);
                    }
                }
            }
        }

        
    }
    @media screen and (min-width: 768px) {
        .fee_section{
            margin-top: 140px;
            .fee_box {
                width: auto;
                padding-bottom: 48px;
                h2{
                    font-size: 32px;
                }
                p {
                    font-size: 20px;
                }

                .equipments {
                    max-width: 818px;
                    margin: 0 auto;
                    gap: 48px;

                    .equipment {
                        width: auto !important;

                        img {
                            padding: 0 24px 16px;
                            width: auto;
                            margin: 0 auto;
                            flex: auto;
                        }

                        span {
                            font-size: 16px;
                        }

                        &:first-child img {
                            width: 135px;
                        }
                    }
                }
            }
        }
            
    }

/* ============================================================
    flow_section
============================================================ */
    .flow_section{
        margin-top: 120px;
        .heading_lv1{
            margin-bottom: 80px;
            .flow_heading__sub{
                color: #44AE35;
                font-size: 21px;
                margin-bottom: 10px;
                display: block;
            }
        }
        
        .introduction_flow{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 80px;
            margin-bottom:40px;
        }
        
        .introduction_flow__item__wrapper{
            position: relative;
            max-width: 100%;
            width: 100%;
            
            &:not(:last-child):after{
                background-image: url(/cms/wp-content/themes/shinko/images/icon_next_green.svg);
                position: absolute;
                top: auto;
                left: 50%;
                bottom: -35px;
                transform: rotate(90deg) translateY(50%) translateX(0);
                content: '';
                background-size: contain;
                background-repeat: no-repeat;
                background-position: left top;
                display: inline-block;
                width: 25px;
                height: 25px;
                vertical-align: middle;
            }
            
        }
        
        .introduction_flow__item{
            background-color: #fff;
            border-radius: 8px;
            border: 3px solid #89CF81;
            padding: 64px 24px 30px;
            height: 100%;

            .flow_item__circle{
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                top: -32px;
                width: 65px;
                height: 65px;
                background-color: #44AE35;
                border-radius: 50%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                font-weight: bold;
                line-height: 1;
                color: #fff;

                .cirlle_text{
                    font-size: 12px;
                }
                .cirlle_number{
                    font-size: 20px;
                }
            }
            .introduction_flow__item__heading{
                font-size: 18px;
                margin-bottom: 22px;
                text-align: center;
            }

            .introduction_img{
                height: 81px;
                margin: 0 auto 24px;
                p{
                    font-size: 14px;
                    padding-top: 10px;
                }
                
            }
        }
    }
    /* PC */
    @media screen and (min-width: 768px){
        .flow_section{
            margin-top: 160px;
            .heading_lv1{
                margin-bottom: 90px;
                .flow_heading__sub{
                    font-size: 24px;
                    margin-bottom: 12px;
                }
            }
            .introduction_flow{
                margin-top: 40px;
                margin-bottom: 80px;
                flex-direction: row;
                align-items: normal;
                gap: 30px;
                .introduction_flow__item__wrapper{
                    display: flex;
                    width: 25%;
                    &:not(:last-child):after{
                        right: -28px;
                        left: auto;
                        top: 50%;
                        width: 20px;
                        height: 20px;
                        transform: translateY(-50%);
                    }
                }
            }
        }
    }

/* ============================================================
    proposal_section
============================================================ */
    .proposal_section{
        margin-top: 120px;
        .heading_lv1{
            margin-bottom: 24px;
        }
        .proposal_heading_under_text{
            font-size: 16px;
            text-align: center;
            line-height: 1.4;
            font-weight: bold;
            margin-bottom: 40px;
        }
        
    }
    /* PC */
    @media screen and (min-width: 768px){
        .proposal_section{
            margin-top: 140px;
            .heading_lv1{
                margin-bottom: 24px;
            }
            .proposal_heading_under_text{
                font-size: 18px;
                margin-bottom: 64px;
            }
            .proposal_card__wrapper{
                flex-direction: row;
                .proposal_card{
                    width: calc(33% - 30px);
                    .proposal_card__top{
                        img{

                        }
                        h3{
                            font-size: 24px;
                            &.mitsui{

                            }
                            .mitsui_small{
                                
                            }
                            small{
                                
                            }
                        }
                    }
                    .proposal_card__bottom{
                        .proposal_card__bottom__desc{
                            .proposal_card__bottom__desc__heading{
                                font-size: 18px;
                                margin-bottom: 16px;
                            }
                            p{
                                
                            }
                        }
                    }
                }
            }
        }
    }

    
/* ============================================================
    case_section
============================================================ */
    .case_section{
        margin-top: 120px;
        overflow: hidden;
        .heading_lv1{
                margin-bottom: 32px;
            }
        .wrap-slide{
            margin-bottom: 48px;
        }
        .case__card__wrapper{
            display: flex;
            flex-direction: column;
            gap: 32px;
            .case__card{
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                border: 1px solid #c2c2c2;
                flex: auto;
                background-color: #FFFFFF;
                position: relative;
                .case__card__top{
                    img{
                        width: 100%;
                    }
                    h3{
                        padding: 24px 24px 0;
                        margin-bottom: 0;
                        position: relative;
                        font-size: 16px;
                        font-weight: bold;
                        line-height: 1.414;
                        font-feature-settings: "palt";
                        &.mitsui{
                            padding-top: 32px;
                        }
                        .mitsui_small{
                            font-size: 14px;
                            position: absolute;
                            top: 14px;
                        }
                        small{
                            position: absolute;
                            bottom: 2px;
                            right: auto;
                            transform: translateX(41.4%);
                            font-size: 0.667em;
                            line-height: 1.414;
                            display: inline-flex;
                        }
                    }
                }
                .case__card__bottom{
                    padding: 24px;
                    .case__card__bottom__desc{
                        .case__card__bottom__desc__heading{
                            margin-bottom: 8px;
                            font-weight: bold;
                            font-size: 15px;
                        }
                        p{
                            font-size: 12px;
                        }
                    }
                    .case__card__bottom__btn{
                        padding: 16px 16px;
                        display: inline-block;
                        background-color: #41a732;
                        border-radius: 8px;
                        font-size: 14px;
                        position: relative;
                        color: #fff;
                        width: 100%;
                        margin: 20px auto 0;
                        font-weight: bold;
                        transition: 0.3s linear;
                        &:after{
                            content: "";
                            background: url(/cms/wp-content/themes/shinko/images/icon_next_white.svg) 50% 50% no-repeat;
                            width: 1em;
                            height: 1em;
                            position: absolute;
                            display: inline-block;
                            vertical-align: text-top;
                            margin-left: 0.2em;
                            right: 14px;
                            top: 20px;
                        }

                        &:hover{
                            filter: brightness(0.7);
                        }
                    }
                }
            }
        }
    }

    /* PC */
    @media screen and (min-width: 768px){
        .case_section{
            margin-top: 160px;
            .heading_lv1{
                margin-bottom: 64px;
            }
            .case__card__wrapper{
                flex-direction: row;
                .case__card{
                    width: calc(33% - 30px);
                    .case__card__top{
                        img{

                        }
                        h3{
                            font-size: 24px;
                            &.mitsui{

                            }
                            .mitsui_small{
                                
                            }
                            small{
                                
                            }
                        }
                    }
                    .case__card__bottom{
                        .case__card__bottom__desc{
                            .case__card__bottom__desc__heading{
                                font-size: 18px;
                                margin-bottom: 16px;
                            }
                            p{
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
    }

/* ============================================================
    .map_section
============================================================ */

    .map_section{
        margin-top: 120px;
        .heading_lv1{
            margin-bottom: 48px;
        }
        .map_section__heading{
            display: inline-block;
            text-align: left;
            font-weight: bold;
            line-height: 1.414;
            font-feature-settings: "palt";
            font-size: 20px;
            display: flex;
            flex-direction: column;
            width: fit-content;
            margin: 0 auto ;
            
            span{
                font-size: 32px;
                line-height: 1.414;
                display: inline-flex;
                sup{
                    font-style: normal;
                }
            }
        }
        .zenkoku_map{
            width: 100%;
            max-width: 800px;
            img{
                width: 100%;
                height: auto;
            }
        }
        .zenkoku_map__notes{
            text-align: right;
            display: block;
        }
        .btn_wrapper{
            margin: 60px 0;
        }
    }
    /* PC */
    @media screen and (min-width: 768px){
        .map_section{
            margin-top: 110px;
            .heading_lv1{
                margin-bottom: 64px;
            }
            .map_section__heading{
                font-size: 32px;
                margin: 0 0 32px 0;

                span{
                    font-size: 51px;
                    sup{
                    }
                }
            }
            .zenkoku_map{
                display: flex;
                justify-content: center;
                margin: auto;
                img{
                    max-width: 640px;
                    margin: -100px auto 0;
                }
            }
            .btn_wrapper{
                margin: 100px 0;
            }
        }
    }


/* ============================================================
    plus_section
============================================================ */
    .plus_section{
        background-color: #e8f5e6;
        padding: 60px 0;
        .heading_lv1{
            margin-bottom: 48px;
        }
        .plus_heading_under_text{
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            line-height: 1.6;
        }
        
        .plus_content{
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-top: 48px;

            .plus_content__top{
                .plus_content__top__item{
                    background-color: #fff;
                    width: 100%;
                    display: flex;
                    flex-direction: column-reverse;
                    padding: 16px 16px 32px;

                    .plus_content__top__item__desc{
                        .plus_content__top__item__desc__img{
                            width: 70%;
                            max-width: 300px;
                            margin: 0 auto 20px;
                        }
                        h3{
                            margin-bottom: 20px;
                            font-size: 14px;
                            text-align: center;
                            font-weight: bold;
                        }
                        p{
                            font-size: 14px;
                            font-weight: bold;
                            line-height: 1.6;
                        }
                        .plus_check_text{
                            margin-top: 14px;
                            li{
                                font-size: 12px;
                                line-height: 1.4;
                                position: relative;
                                padding-left: 20px;
                                &:not(:last-child){
                                    margin-bottom: 4px;
                                }
                                &:before{
                                    position: absolute;
                                    content: "";
                                    left: 0;
                                    top: 0;
                                    width: 16px;
                                    height: 16px;
                                    background-size: contain;
                                    background-repeat: no-repeat;
                                    background-position: left top;
                                    background-image: url(/images/common/icon_checkbox_dark-red.svg);
                                    margin-top: 1px;
                                    
                                }
                            }
                        }
                        .plus_text_link{
                            font-size: 14px;
                            font-weight: bold;
                            color: #45B035;
                            width: fit-content;
                            display: block;
                            margin-left: auto;
                            margin-top: 16px;
                            i{
                                font-size: 10px;
                                padding-left: 5px;
                            }
                        }
                    }

                    .plus_content__top__item__img{
                        margin-bottom: 20px;
                    }
                }
            }
            .plus_content__bottom{
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                .plus_content__bottom__item{
                    background-color: #fff;
                    
                    .plus_content__bottom__item__img{
                        
                    }
                    .plus_content__bottom__item__desc{
                        padding: 10px 10px 20px;
                        .plus_content__bottom__item__desc__img{
                            margin: 0 auto 10px;
                            width: 85%;
                            max-width: 200px;
                        }
                        h3{
                            margin-bottom: 10px;
                            font-size: 14px;
                            line-height: 1.6;
                            font-weight: bold;
                            text-align: center;
                        }
                        p{
                            font-size: 14px;
                            line-height: 1.6;
                        }
                    }
                }
            }
        }
    }
    /* PC */
    @media screen and (min-width: 768px){
        .plus_section{
            padding: 80px 0;
            .heading_lv1{
                margin-bottom: 64px;
            }
            .plus_heading_under_text{
                font-size: 18px;
            }
            .plus_content{
                margin-top: 64px;
                gap: 40px;

                .plus_content__top{
                    
                    .plus_content__top__item{
                        flex-direction: row;
                        justify-content: center;
                        align-items: center;
                        gap: 56px;
                        padding: 56px;

                        .plus_content__top__item__desc{
                            width: 44%;
                            max-width: 420px;
                            .plus_content__top__item__desc__img{
                                width: 367px;
                                max-width: 500px;
                                margin: 0 auto 24px;
                            }
                            h3{
                                margin-bottom: 24px;
                                font-size: 20px;
                            }
                            p{
                                font-size: 16px;
                            }
                            .plus_check_text{
                                margin-top: 20px;
                                li{
                                    font-size: 14px;
                                    padding-left: 26px;
                                    &:not(:last-child){
                                        margin-bottom: 6px;
                                    }
                                    &:before{
                                        
                                        width: 20px;
                                        height: 20px;
                                        margin-top: -1px;
                                        
                                    }
                                }
                            }
                            .plus_text_link{
                                font-size: 16px;
                                margin-top: 24px;
                                i{
                                    font-size: 12px;
                                    padding-left: 6px;
                                }
                            }
                        }

                        .plus_content__top__item__img{
                            margin-bottom: 0;
                            flex-shrink: 0;
                            width: 56%;
                            max-width: 470px;
                        }
                    }
                }
                .plus_content__bottom{
                    grid-template-columns: repeat(4, 1fr);
                    gap: 20px;
                    .plus_content__bottom__item{
                        
                        .plus_content__bottom__item__img{
                            
                        }
                        .plus_content__bottom__item__desc{
                            padding: 24px 20px 32px;
                            .plus_content__bottom__item__desc__img{
                                margin: 0 auto 20px;
                                width: 85%;
                                max-width: 240px;
                            }
                            h3{
                                margin-bottom: 20px;
                                font-size: 16px;
                            }
                            p{
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
    }
/* ============================================================
    appeal_section
============================================================ */
    .appeal_section{
        margin-top: 60px;
        .heading_lv1{
            margin-bottom: 48px;
        }
        .appeal_content{
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-bottom: 80px;
            .appeal_content__img{
                width: 100%;
                img{

                }
                p{
                    margin-top: 10px;
                    font-size: 12px;
                    font-weight: bold;
                    line-height: 1.4;
                    display: block;
                    span{
                        font-size: 16px;
                        display: block;
                    }
                }
            }
            .appeal_content__desc{
                p{
                    font-size: 16px;
                    line-height: 1.6;
                    &:not(:last-child){
                        margin-bottom: 20px;
                    }
                    small{
                        font-size: 12px;
                    }
                }
                .appeal_content__desc__note{
                    font-size: 12px;
                    display: block;
                    margin-top: 4px;
                }
            }
        }
        .appeal_btn_heading{
            text-align: center;
            font-weight: bold;
            line-height: 1.414;
            font-feature-settings: "palt";
            font-size: 16px;
            margin-bottom: 4px;
        }
    }
    /* PC */
    @media screen and (min-width: 768px){
        .appeal_section{
            margin-top: 80px;
            .heading_lv1{
                margin-bottom: 64px;
            }
            .appeal_content{
                flex-direction: row;
                gap: 80px;
                margin-bottom: 100px;
                .appeal_content__img{
                    width: 368px;
                    flex-shrink: 0;
                    img{

                    }
                }
                .appeal_content__desc{
                        display: flex;
                        flex-direction: column;
                        justify-content: flex-end;
                }
            }
            .appeal_btn_heading{
                font-size: 24px;
                margin-bottom: 12px;
            }
        }
    }

    
/* ============================================================
    qa_section
============================================================ */
.qa_section{
    margin-top: 80px;
}

/* ============================================================
    service_section
============================================================ */
    .service_section{
        margin-top: 80px;

        h2{
            line-height: 1.8;
            font-weight: bold;
            font-feature-settings: "palt";
            margin-bottom: 36px;
            font-size: 20px !important;
            /* PC */
            @media screen and (min-width: 768px){
                font-size: 24px !important;
            }
        }
    }
}
