/*------------------------------------------
リセット関連
------------------------------------------*/

h1,h2,h3,h4,h5 {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    color: #0c0c0c;
}

/*------------------------------------------
設定
------------------------------------------*/

:root {
    /* サイト幅 */
    --site-width: 1275px;
}

/*------------------------------------------
基本設定
------------------------------------------*/

section .wrapper {
    max-width: var(--site-width);
    margin: 0 auto;
}

.image-box {
    margin: 0 auto;
}

.image-box img {
    width: 100%;
}

.sp-only {
    display: none;
}

.mt-large {
    margin-top: 80px!important;
}

.mt-middle {
    margin-top: 50px!important;
}

.mt-small {
    margin-top: 30px!important;
}

@media screen and (max-width: 1315px) {
    section .wrapper {
        padding: 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: unset;
    }

    .mt-large {
        margin-top: 3rem!important;
    }

    .mt-middle {
        margin-top: 2rem!important;
    }

    .mt-small {
        margin-top: 1rem!important;
    }
}

/*------------------------------------------
汎用パーツ
------------------------------------------*/

a.button-white,
a.button-red {
    width: 270px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #cc0022;
    border-radius: 200px;
    position: relative;
    transition: all 0.3s;

    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; 
}
a.button-white::after,
a.button-red::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    translate: 0 -50%;
    width: 9px;
    height: 9px;
    transform: rotate(225deg);
    transition: all 0.3s ease;
}
a.button-white:hover,
a.button-red:hover {
    text-decoration: none;
}

a.button-white {
    color: #cc0022;
    background: #fff;
}
a.button-white::after {
    border-bottom: 2px solid #cc0022;
    border-left: 2px solid #cc0022;
}
a.button-white:hover {
    color: #fff;
    background: #cc0022;
}
a.button-white:hover::after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

a.button-red {
    color: #fff;
    background: #cc0022;
}
a.button-red::after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}
a.button-red:hover {
    color: #cc0022;
    background: #fff;
}
a.button-red:hover::after {
    border-bottom: 2px solid #cc0022;
    border-left: 2px solid #cc0022;
}

/*------------------------------------------
main-visual
------------------------------------------*/

.main-visual {
    padding: 75px 0;
    background: url(/-/media/ind/ics/image/main_visual_bg.png) no-repeat center / cover;
}

.main-visual .content-block {
    display: flex;
    justify-content: space-between;
}

.main-visual .content .intro {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
}

.main-visual .content h1 {
    margin-top: 25px;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}

.main-visual .content .button-box {
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-visual .content .button-box p {
    margin-bottom: 6px;
    color: #cc0022;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.main-visual .image-box {
    max-width: 595px;
}

@media (max-width: 1024px) {
    .main-visual .content-block {
        justify-content: center;
    }

    .main-visual .content-block > .image-box {
        display: none;
    }

    .main-visual .content .image-box.sp-only {
        display: block;
        max-width: 480px;
        margin-top: 1rem;
    }

    .main-visual .content .button-box {
        justify-content: center;
        gap: 40px;
    }
}

@media screen and (max-width: 767px) {
    .main-visual {
        padding: 2rem 0;
        background-position: left top;
    }

    .main-visual .content .intro {
        font-size: 1rem;
        line-height: 1.4;
    }

    .main-visual .content h1 {
        margin-top: 1rem;
        font-size: 2rem;
        line-height: 1.2;
    }

    .main-visual .content .image-box.sp-only {
        display: block;
        max-width: 300px;
        margin-top: 1rem;
    }

    .main-visual .content .button-box {
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
    }

    .main-visual .content-block > .image-box {
        display: none;
    }
}

/*------------------------------------------
link-block
------------------------------------------*/

.link-block .wrapper {
    max-width: 816px;
    margin: 0 auto;
    padding: 40px 0;
}

.link-block .content-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.link-block a {
    border-right: 1px solid #c1bfbf;
    position: relative;
}
.link-block a:hover {
    text-decoration: none;
    opacity: .8;
}
.link-block a p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10px;

    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.7px;
    text-align: center;
}
.link-block a:last-child {
    border: none;
}
.link-block a::after {
    content: "";
    position: relative;
    display: block;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    margin-top: 12px;
    border-right: 2px solid #cc0022;
    border-bottom: 2px solid #cc0022;
    transition: all 0.3s;
}
.link-block a:hover::after {
    bottom: -2px;
}

@media screen and (max-width: 767px) {
    .link-block .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .link-block a {
        padding: 0 2px;
    }

    .link-block a::after {
        width: 9px;
        height: 9px;
        margin-top: 1rem;
    }

    .link-block a p {
        font-size: .7rem;
    }
}

/*------------------------------------------
problem
------------------------------------------*/

.problem {
    padding-bottom: 120px;
    background: url(/-/media/ind/ics/image/problem_bg.png) no-repeat top / cover;
    position: relative;
}

.problem::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 185px;
    height: 50px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #d9d9d9;
}

.problem .intro {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

.problem h2 {
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}

.problem h2 strong {
    color: #fa000f;
}

.problem .image-box.security {
    max-width: 1000px;
}

.problem .risk {
    margin-top: 50px;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; 
}

.problem .risk strong {
    color: #fa000f;
}

.problem .problem-box {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: bottom;
}

.problem .problem-box .image-box-middle {
    max-width: 267px;
    margin: 0 auto;
}

.problem .problem-box .image-box-middle img {
    width: 100%;
}

.problem .feature {
    margin-bottom: 47px;
    padding: 0 37px 30px 37px;
    border-radius: 20px;
    background: #f4f4f4;
    position: relative;
}

.problem .feature::after {
    content: "";
    position: absolute;
    bottom: -47px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 185px;
    height: 47px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #f4f4f4;
}

.problem .feature h3 {
    max-width: 358px;
    margin: 0 auto 35px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 20px 20px;
    background: #4d4d4d;
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; 
}

.problem .feature .first-row {
    padding-bottom: 20px;
    display: flex;
}

.problem .feature .second-row {
    padding-top: 20px;
    display: flex;
}

.problem .feature .first-row {
    border-bottom: 1px solid #b3b3b3;
}

.problem .feature .first-row div,
.problem .feature .second-row div {
    width: 100%;
    padding-bottom: 10px;
    position: relative;
}

.problem .feature .first-row div::after,
.problem .feature .second-row div::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #b3b3b3;
}

.problem .feature .first-row div:last-child::after,
.problem .feature .second-row div:last-child::after {
    display: none;
}

.problem .feature .first-row div p {
    max-width: 278px;
    margin: 0 auto;
}

.problem .feature .second-row div p {
    max-width: 510px;
    margin: 0 auto;
}

.problem .feature h4 {
    margin-bottom: 10px!important;
    text-align: center;
    font-size: 24px!important;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

.problem .feature p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.problem .security-measures h2 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; 
}

.problem .security-measures .step {
    max-width: 783px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 78px;
}

.problem .security-measures .step div {
    position: relative;
}

.problem .security-measures .step div::after {
    content: "";
    position: absolute;
    top: calc(50% + 8px);
    right: -48px;
    transform: translateY(-50%);
    width: 14px;
    height: 37px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: #c4c4c4;
}

.problem .security-measures .step div:last-child:after {
    display: none;
}

.problem .security-measures h3 {
    color: #fa000f;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

@media (max-width: 1024px) {
    .problem .feature .first-row div p,
    .problem .feature .second-row div p {
        padding: 0 10px;
    }
}

@media screen and (max-width: 767px) {
    .problem {
        padding-bottom: 3rem;
    }

    .problem::after {
        width: 140px;
        height: 38px;
    }

    .problem .intro {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .problem h2 {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .problem .risk {
        margin-top: 2rem;
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .problem .problem-box {
        align-items: end;
        gap: 20px;
    }

    .problem .image-box-person {
        display: block;
        max-width: 180px;
        margin: 0 auto;
    }

    .problem .feature h3 {
        padding: 4px 20px;
        font-size: 1.2rem;
    }

    .problem .feature .first-row,
    .problem .feature .second-row {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
        flex-direction: column;
        gap: 1rem;
        border: none;
    }

    .problem .feature .first-row div::after,
    .problem .feature .second-row div::after {
        display: none;
    }

    .problem .feature h4 {
        margin: 0!important;
        font-size: 1.2rem!important;
        line-height: 1.4;
    }

    .problem .feature p {
        margin-top: .5rem;
        font-size: 1rem;
    }

    .problem .security-measures h2 {
        padding-top: 2rem;
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .problem .security-measures .step {
        flex-direction: column;
        gap: 4rem;
    }

    .problem .security-measures .step div::after {
        top: unset;
        right: unset;
        bottom: -3.5rem;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }

    .problem .security-measures h3 {
        font-size: 1.4rem;
        line-height: 1.4;
    }
}


/*------------------------------------------
solution
------------------------------------------*/

.solution {
    padding-top: 40px;
    padding-bottom: 80px;
    background: url(/-/media/ind/ics/image/solution_bg.png) no-repeat top / cover;
}

.solution .title-box {
    display: grid;
    grid-template-columns: 185px 1fr 205px;
    gap: 20px;
}

.solution .title-box .image-box {
    max-width: 185px;
    display: flex;
    align-items: end;
}

.solution .title-box .image-box.right {
    max-width: 205px;
}

.solution .title-box .text-box {
    margin-top: 40px;
    text-align: center;
}

.solution .title-box .text-box h2 {
    color: #fa000f;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}

.solution .title-box .text-box p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; 
}

.solution .solution-box {
    padding: 60px;
    filter: drop-shadow(0 0 30px #737373);
    background: #fff;
    border-radius: 20px;
}

.solution .solution-box h3 {
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

.solution .solution-box .grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
}

.solution .solution-box .grid > .item {
    position: relative;
}

.solution .solution-box .grid > .item::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 8'><path d='M0.5 0L0.5 8' stroke='%23737373' stroke-linecap='round' stroke-dasharray='4 4'/></svg>");
    background-repeat: repeat-y;
}

.solution .solution-box .grid .item:last-child::after {
    display: none;
}

.solution .solution-box .grid .step {
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px; 
}

.solution .solution-box .grid .title {
    margin-right: 18px;
    height: 132px;
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    background: #0c0c0c;
    color: #fff;
    position: relative;
}

.solution .solution-box .grid .title::after {
    content: "";
    position: absolute;
    top: 0;
    right: -18px;
    width: 18px;
    height: 132px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: #0c0c0c;
}

.solution .solution-box .grid .title h4 {
    color: #fff!important;
    text-align: center;
    font-size: 30px!important;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; 
}

.solution .solution-box .grid .title p {
    margin-top: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; 
}

.solution .solution-box .grid .title .note {
    margin: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.solution .solution-box .grid .two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.solution .solution-box .grid .card {
    margin-top: 20px;
    border: 1px solid #d9d9d9;
}

.solution .solution-box .grid .card h5 {
    height: 71px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d9d9d9;

    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.solution .solution-box .grid .card .list {
    padding: 20px 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.solution .solution-box .grid .card .list .item a {
    display: block;
    padding-right: 27px;
    position: relative;

    color: #0c0c0c;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -1.12px;
}

.solution .solution-box .grid .card .list .item a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;

    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 1' fill='none'><path d='M0 0.5H8' stroke='%23D9D9D9' stroke-dasharray='4 4'/></svg>");
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.solution .solution-box .grid .card .list .item a:hover {
    color: #cc0000;
}

.solution .solution-box .grid .card .list .item:last-child a::before {
    display: none;
}

.solution .solution-box .grid .card .list .item a.open-modal::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 0;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 13' fill='none'><path d='M10.5768 0.373047H3.11255V9.3301H10.5768V0.373047Z' stroke='currentColor' stroke-width='0.746421' stroke-miterlimit='10'/><path d='M7.8375 9.33032V12.4429H0.373291V3.48584H3.11266' stroke='currentColor' stroke-width='0.746421' stroke-miterlimit='10'/></svg>") no-repeat center / contain;
}

.solution .solution-box .grid .card .list .item a.open-modal:hover::after {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 13' fill='none'><path d='M10.5768 0.373047H3.11255V9.3301H10.5768V0.373047Z' stroke='%23cc0000' stroke-width='0.746421' stroke-miterlimit='10'/><path d='M7.8375 9.33032V12.4429H0.373291V3.48584H3.11266' stroke='%23cc0000' stroke-width='0.746421' stroke-miterlimit='10'/></svg>") no-repeat center / contain;
}

.solution .solution-box .grid .card .list .item a.external-link::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 0;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;urf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 20' fill='none'><g clip-path='url(%23clip0_46_4054)'><path d='M16.3723 0.577637H4.81812V14.4427H16.3723V0.577637Z' stroke='%23737373' stroke-width='1.15542' stroke-miterlimit='10'/><path d='M12.1321 14.4424V19.2605H0.577881V5.39551H4.81827' stroke='%23737373' stroke-width='1.15542' stroke-miterlimit='10'/><path d='M6.63776 10.8653C6.43771 11.0654 6.43771 11.3897 6.63776 11.5898C6.83782 11.7898 7.16218 11.7898 7.36224 11.5898L7 11.2275L6.63776 10.8653ZM14.8204 3.91943C14.8204 3.63651 14.591 3.40715 14.3081 3.40715H9.6976C9.41467 3.40715 9.18532 3.63651 9.18532 3.91943C9.18532 4.20236 9.41467 4.43171 9.6976 4.43171H13.7958V8.52994C13.7958 8.81287 14.0252 9.04222 14.3081 9.04222C14.591 9.04222 14.8204 8.81287 14.8204 8.52994V3.91943ZM7 11.2275L7.36224 11.5898L14.6703 4.28167L14.3081 3.91943L13.9459 3.5572L6.63776 10.8653L7 11.2275Z' fill='%23737373'/></g><defs><clipPath id='clip0_46_4054'><rect width='16.95' height='19.8385' fill='white'/></clipPath></defs></svg>") no-repeat center / contain;
}

.solution .solution-box .grid .card .list .item a.external-link:hover::after {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 20' fill='none'><g clip-path='url(%23clip0_46_4054)'><path d='M16.3723 0.577637H4.81812V14.4427H16.3723V0.577637Z' stroke='%23cc0000' stroke-width='1.15542' stroke-miterlimit='10'/><path d='M12.1321 14.4424V19.2605H0.577881V5.39551H4.81827' stroke='%23cc0000' stroke-width='1.15542' stroke-miterlimit='10'/><path d='M6.63776 10.8653C6.43771 11.0654 6.43771 11.3897 6.63776 11.5898C6.83782 11.7898 7.16218 11.7898 7.36224 11.5898L7 11.2275L6.63776 10.8653ZM14.8204 3.91943C14.8204 3.63651 14.591 3.40715 14.3081 3.40715H9.6976C9.41467 3.40715 9.18532 3.63651 9.18532 3.91943C9.18532 4.20236 9.41467 4.43171 9.6976 4.43171H13.7958V8.52994C13.7958 8.81287 14.0252 9.04222 14.3081 9.04222C14.591 9.04222 14.8204 8.81287 14.8204 8.52994V3.91943ZM7 11.2275L7.36224 11.5898L14.6703 4.28167L14.3081 3.91943L13.9459 3.5572L6.63776 10.8653L7 11.2275Z' fill='%23cc0000'/></g><defs><clipPath id='clip0_46_4054'><rect width='16.95' height='19.8385' fill='white'/></clipPath></defs></svg>") no-repeat center / contain;
}

.solution .solution-box .grid .card .list .item a.anchor-link::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'><path d='M0.5 0.5L7 7.5L13.5 0.5' stroke='%23737373' stroke-linecap='round'/></svg>") no-repeat center / contain;
}

.solution .solution-box .grid .card .list .item a.anchor-link:hover::after {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'><path d='M0.5 0.5L7 7.5L13.5 0.5' stroke='%23cc0000' stroke-linecap='round'/></svg>") no-repeat center / contain;
}

@media (max-width: 1024px) {
    .solution {
        background-size: contain;
    }

    .solution .title-box {
        grid-template-columns: 125px 1fr 145px;
    }

    .solution .title-box .text-box {
        padding-bottom: 20px;
    }

        .solution .solution-box .grid {
        grid-template-columns: 1fr;
    }

    .solution .solution-box .grid .two-column {
        grid-template-columns: 1fr;
    }

    .solution .solution-box .grid > .item::after {
        display: none;
    }

    .solution .solution-box .grid .title {
        margin-right: 0;
        margin-bottom: 32px;
        height: 100px;
    }

    .solution .solution-box .grid .title::after {
        content: "";
        position: absolute;
        top: unset;
        right: unset;
        bottom: -17px;
        left: 0;
        width: 100%;
        height: 18px;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        background: #0c0c0c;
    }

    .solution .solution-box .grid .title h4 {
        font-size: 1.4rem!important;
    }

    .solution .solution-box .grid .title p {
        margin: 0;
        font-size: 1rem;
    }

    .solution .solution-box .grid .card h5 {
        height: 60px;
        font-size: 1rem;
    }

    .solution .solution-box .grid > .item {
        width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px) {
    .solution {
        background: none;
    }

    .solution .title-box {
        grid-template-columns: 1fr;
    }

    .solution .title-box .image-box {
        display: none;
    }

    .solution .title-box .text-box h2 {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .solution .title-box .text-box p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .solution .solution-box {
        margin-top: 2rem;
        padding: 1rem;
    }

    .solution .solution-box h3 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .solution .solution-box .grid > .item {
        width: 100%;
    }
}

/*------------------------------------------
cta
------------------------------------------*/

.cta {
    padding: 30px 0;
    background: url(/-/media/ind/ics/image/cta_bg.png) no-repeat center / cover;
}

.cta h2 {
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 5.2px;
}

.cta .button-box {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.cta .button-box p {
    margin-bottom: 6px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

@media screen and (max-width: 767px) {
    .cta h2 {
        font-size: 1.6rem;
        line-height: 1.4;
        letter-spacing: unset;
    }

    .cta .button-box {
        flex-direction: column;
    }
}

/*------------------------------------------
about
------------------------------------------*/

.about {
    padding: 80px 0;
    background: url(/-/media/ind/ics/image/about_bg.png) no-repeat top / cover;
}

.about .text-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 90px;
}

.about .text-image .text-box .label {
    padding: 8px 5px;
    display: inline;
    background: #222;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.about .text-image .text-box h2 {
    margin-top: 20px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.about .text-image .text-box h2 strong {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 1.2px;
}

.about .text-image .text-box .description {
    margin-top: 30px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.about .text-image .image-box {
    max-width: 585px;
}

.about .feature-list li {
    padding: 20px 0;
    border-bottom: 1px solid #b3b3b3;
}

.about .feature-list li:last-child {
    border: none;
}

.about .feature-list li h3 {
    padding-left: 25px;
    position: relative;

    color: #fa000f;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.about .feature-list li h3::before {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(/-/media/ind/ics/image/icon_check.png) no-repeat center / contain;
}

.about .feature-list li p {
    margin-top: 10px;

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; 
}

.about .sample-box {
    padding: 60px 95px;
    border-radius: 20px;
    background: #f4f4f4;
    box-shadow: 0 0 30px 0 #737373;
}

.about .sample-box h3 {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
}

.about .sample-box .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 84px;
    row-gap: 50px;
}

.about .sample-box .grid .image-box {
    max-width: 500px;
}

.about .sample-box .grid .image-box h4 {
    text-align: center;
    font-size: 18px!important;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
}

@media (max-width: 1024px) {
    .about .text-image {
        grid-template-columns: 1fr;
        padding: 0 66px;
    }

    .about .text-image .image-box {
        display: none;
    }

    .about .sample-box {
        padding: 20px;
    }

    .about .sample-box .grid {
        gap: 30px;
    }

    .about .sample-box .grid .image-box h4 {
        line-height: 1.4;
    }

    .about .sample-box .grid .image-box h4 > .sp-only {
        display: block;
    }
}

@media (max-width: 1024px) {
    .about .text-image .text-box .image-box.sp-only {
        display: block;
        max-width: 400px;
    }
}

@media screen and (max-width: 767px) {
    .about {
        padding: 3rem 0;
    }

    .about .text-image {
        padding: 0;
    }

    .about .text-image .text-box h2 strong {
        font-size: 1.6rem;
    }

    .about .text-image .text-box .description {
        margin-top: 1rem;
        font-size: 1rem;
        line-height: 1.4;
    }

    .about .text-image .text-box .image-box {
        max-width: 260px;
        margin-top: 2rem;
        display: block;
    }

    .about .feature-list li p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .about .sample-box {
        padding: 1rem;
    }

    .about .sample-box .grid {
        grid-template-columns: 1fr;
    }
}

/*------------------------------------------
product
------------------------------------------*/

.product{
    background: url(/-/media/ind/ics/image/product_bg.png) no-repeat top / cover;
}

.product .wrapper {
    max-width: 1123px;
}

.product .lead {
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1.2px;
}

.product h2 {
    margin-top: 10px;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; 
}

.product .grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.product .grid-box .image-box.large {
    max-width: 531px;
}

.product .grid-box .image-box.small {
    max-width: 419px;
}

.product .grid-box h3 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 1.2px;
}

.product .grid-box .name {
    margin-top: 5px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
}

.product .grid-box h4 {
    margin-top: 30px!important;
    font-size: 18px!important;
    font-style: normal;
    font-weight: 700;
    line-height: 25px; 
}

.product .grid-box .description {
    margin-top: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.product .image-box > .note {
    margin-top: 20px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; 
}

@media (max-width: 1024px) {
    .product .grid-box {
        grid-template-columns: 1fr;
    }

    .product .grid-box .text-box {
        padding: 0 40px;
    }

    .product .grid-box .image-box {
        max-width: 419px;
    }
}

@media screen and (max-width: 767px) {
    .product h2 {
        font-size: 2rem;
        line-height: 1.4;
    }

    .product .grid-box h3 {
        font-size: 1.4rem;
        line-height: 1;
    }

    .product .grid-box .name {
        margin-top: 0;
        font-size: 1rem;
    }

    .product .grid-box .text-box {
        padding: 0;
    }

    .product .grid-box .text-box > .image-box {
        display: block;
        max-width: 280px;
        margin-top: 1rem;
    }

    .product .grid-box h4 {
        font-size: 1.2rem!important;
    }

    .product .grid-box .description {
        font-size: 1rem;
    }

    .product .image-box > .note {
        font-size: .8rem;
    }

    .product .grid-box .image-box {
        display: none;
    }

    
}

/*------------------------------------------
system
------------------------------------------*/

.system {
    padding: 100px 0;
    background: url(/-/media/ind/ics/image/system_bg.png) no-repeat top / cover;
}

.system .wrapper {
    max-width: 998px;
}

.system h2 {
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; 
}

.system .description {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.system .note {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.system .note > li {
    padding-left: 14px;
    position: relative;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; 
}

.system .note > li::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 767px) {
    .system {
        padding: 3rem 0;
    }

    .system h2 {
        font-size: 2rem;
    }

    .system .description {
        font-size: 1rem;
        line-height: 1.4;
    }

    .system .note {
        font-size: .8rem;
    }
}

/*------------------------------------------
case-study
------------------------------------------*/

.case-study {
    padding: 80px 0 120px;
    background: url(/-/media/ind/ics/image/case_study_bg.png) no-repeat top / cover;
}

.case-study .wrapper {
    max-width: 1000px;
}

.case-study h2 {
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; 
}

.case-study .image-text {
    display: grid;
    grid-template-columns: 410px 1fr;
    gap: 33px;
}

.case-study .text-box .industry {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.case-study .text-box .company {
    margin-top: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
}

.case-study .text-box .title {
    padding-left: 10px;
    margin-top: 30px;
    position: relative;

    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
}

.case-study .text-box .title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 15px;
    background: #0c0c0c;
}

.case-study .text-box .text {
    margin-top: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
}

.case-study .measure-box {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border: 1px solid #b3b3b3;
    border-radius: 20px;
    position: relative;
}

.case-study .measure-box::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 98px;
    height: 33px;
}

.case-study .measure-box.first::before {
    background: url(/-/media/ind/ics/image/case_study_measure1.jpg) no-repeat center / contain;
}

.case-study .measure-box.second::before {
    background: url(/-/media/ind/ics/image/case_study_measure2.jpg) no-repeat center / contain;
}

@media (max-width: 1024px) {
    .case-study .measure-box {
        padding: 2rem 1rem;
        grid-template-columns: 1fr;
    }

    .case-study .measure-box .image-box:first-child {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px) {
    .case-study {
        padding: 3rem 0;
    }

    .case-study h2 {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .case-study .image-text {
        grid-template-columns: 1fr;
    }
}

/*------------------------------------------
whitepaper-cta
------------------------------------------*/

.whitepaper-cta {
    padding: 40px 0 30px;
    background: #0c0c0c;
}

.whitepaper-cta .wrapper {
    max-width: 754px;
}

.whitepaper-cta .content-block {
    padding-left: 232px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
}

.whitepaper-cta .content-block::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 205px;
    height: 277px;
    background: url(/-/media/ind/ics/image/whitepaper_cta.png) no-repeat center / contain;
}

.whitepaper-cta p {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px; 
}

.whitepaper-cta h2 {
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.whitepaper-cta .button-red {
    width: 400px;
}

@media screen and (max-width: 767px) {
    
    .whitepaper-cta .content-block {
        padding-left: 0;
    }

    .whitepaper-cta .content-block::before {
        content: "";
        position: absolute;
        left: unset;
        top: -62px;
        right: 0;
        width: 74px;
        height: 100px;
    }

    .whitepaper-cta .button-red {
        width: 100%;
    }

    .whitepaper-cta .button-red::after {
        display: none;
    }

}

/*------------------------------------------
price
------------------------------------------*/

.price {
    padding: 80px 0;
    background: url(/-/media/ind/ics/image/price_bg.png) no-repeat top / cover;
}

.price .wrapper {
    max-width: 1000px;
}

.price h2 {
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; 
}

.price .price-box {
    padding: 66px 105px;
    background: url(/-/media/ind/ics/image/price_price_box_bg.png) no-repeat center / contain;
}

.price .price-box p {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.price .price-box a {
    margin-top: 30px;
    display: inline-block;
    position: relative;

    color: #0c0c0c;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; 
}

.price .price-box a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%) rotate(-45deg);
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #0c0c0c;
    border-right: 2px solid #0c0c0c;
}

@media screen and (max-width: 767px) {
    .price {
        padding: 3rem 0;
    }

    .price h2 {
        font-size: 2rem;
    }

    .price .price-box {
        padding: 0;
        background: url(/-/media/ind/ics/image/price_price_box_bg.png) no-repeat center / cover;
    }

    .price .price-box .box-wrapper {
        padding: 2rem 1rem;
        background: rgba(255, 255, 255, 0.4);
    }

    .price .price-box p {
        font-size: 1.2rem;
        line-height: 1.4;
    }
}

/*------------------------------------------
footnote
------------------------------------------*/

.footnote .wrapper {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 40px 0;
}

.footnote ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.footnote ul li {
    padding-left: 14px;
    position: relative;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.7px;
}

.footnote ul li::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 1315px) {
    .footnote .wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/*------------------------------------------
sticky-footer
------------------------------------------*/

#sticky-footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    background: url(/-/media/ind/ics/image/sticky_footer_bg.png) no-repeat center / cover;
    z-index: 10;
}

#sticky-footer .wrapper {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 20px 0;
}

#sticky-footer .content-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 23px;
}

#sticky-footer .content-block > p {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px; 
}

#sticky-footer .content-block .button-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#sticky-footer .content-block .button-box p {
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; 
}

@media screen and (max-width: 1315px) {
    #sticky-footer .wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1024px) {
    #sticky-footer .content-block > p {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    #sticky-footer {
        display: none;
    }
    #sticky-footer .content-block {
        flex-direction: column;
    }

    #sticky-footer .content-block .button-box {
        flex-direction: column;
    }

    #sticky-footer .content-block .button-box p {
        display: none;
    }
}

/*------------------------------------------
modal
------------------------------------------*/

.open-modal {
    cursor: pointer;
}

.modal {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal .wrapper {
    /* width: var(--site-width); */
    max-height: 80vh;   /* 画面高さの80%まで */
    overflow-y: auto;   /* 縦スクロールを有効化 */
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal .modal-content {
    position: relative;
    scrollbar-gutter: stable;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal .modal-content header {
    height: 87px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #4d4d4d;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.modal .modal-content header h2 {
    padding: 0;
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; 
}

.modal .modal-content header h2 .small {
    margin: 0;
    padding: 0;
    background: none;
    display: inline;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
}

.modal .modal-content header .close {
    position: absolute;
    top: calc(50% + 1px);
    right: 25px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s;
}

.modal .modal-content header .close:hover {
    opacity: .8;
}

.modal .modal-content main {
    padding: 50px 137px;
}

.modal .modal-content main .button-modal-close {
    margin: 40px auto 0;
    width: 270px;
    height: 50px;
    background: #4d4d4d;
    color: #fff;
    border: 1px solid #4d4d4d;
    border-radius: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;

    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; 
}

.modal .modal-content main .button-modal-close:hover {
    text-decoration: none;
    opacity: .8;
}

.modal .modal-content main h2 {
    margin-top: 80px;
    display: flex;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; 
}

.modal .modal-content main h2 .number {
    padding: 0;
    margin-right: 16px;
    display: inline;
    background: none;
    color: #222;
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.modal .modal-content main .card {
    margin-top: 40px;
}

.modal .modal-content main .card > .title {
    padding: 25px 50px;
    background: #4d4d4d;
    border-radius: 10px 10px 0 0;

    color: #fff;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

.modal .modal-content main .card .content {
    padding: 40px 50px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    border-radius: 0 0 10px 10px;
    background: #f4f4f4;

}

.modal .modal-content main .card .content .text {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.modal .modal-content main .card .content .note {
    margin-top: 10px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; 
}

.modal .modal-content main .label-title {
    display: flex;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid #4d4d4d;
}

.modal .modal-content main .label-title .label {
    padding: 12px 15px;
    background: #4d4d4d;
    flex-shrink: 0;

    color: #fff;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; 
}

.modal .modal-content main .label-title .title {
    background: none;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; 
}

.modal .modal-content main .content-divider {
    display: block;
    position: relative;
}

.modal .modal-content main .content-divider::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;

    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 1' fill='none'><path d='M0 0.5H8' stroke='%23B3B3B3' stroke-dasharray='4 4'/></svg>");
    background-repeat: repeat-x;
    background-size: auto 100%;
}

@media screen and (max-width: 767px) {
    .modal .wrapper {
        width: 100%;
        padding: 0;
    }

    .modal .modal-content main {
        padding: 1rem;
    }

    .modal .modal-content header h2 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .modal .modal-content header h2 .small {
        display: block;
        font-size: 1rem;
        line-height: 1.4;
    }

    .modal .modal-content header .close {
        width: 30px;
        height: 30px;
        right: 10px;
    }

    .modal .modal-content main h2 {
        margin-top: 2rem;
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .modal .modal-content main .card {
        margin-top: 1rem;
    }

    .modal .modal-content main .card > .title {
        padding: 1rem;
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .modal .modal-content main .card .content {
        padding: 1rem;
        gap: 1rem;
    }

    .modal .modal-content main .card .content .text {
        font-size: 1rem;
        line-height: 1.4;
    }

    .modal .modal-content main .card .content .note {
        font-size: .8rem;
    }

    .modal .modal-content main .label-title {
        padding-bottom: .5rem;
        flex-direction: column;
        align-items: baseline;
        gap: .5rem;
    }

    .modal .modal-content main .label-title .label {
        font-size: .9rem;
    }

    .modal .modal-content main .label-title .title {
        font-size: 1.2rem;
        line-height: 1.4;
    }
}

/* modal1 */
#modal1 .system-configuration {
    display: grid;
    grid-template-columns: 1fr 469px;
    gap: 34px;
}

#modal1 .system-configuration h3 {
    padding-bottom: 20px;
    position: relative;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

#modal1 .system-configuration h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 1px;
    background: #222;
}

#modal1 .system-configuration .title {
    margin-top: 20px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

#modal1 .system-configuration .text {
    margin-top: 20px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

#modal1 .service-value {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

#modal1 .service-value h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

#modal1 .service-value .card-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

#modal1 .service-value .card-list .card {
    margin: 0;
    background: #fff;
}

#modal1 .service-value .card-list .card .title {
    padding: 6px;
    border-radius: 5px 5px 0 0;
    background: #d9d9d9;

    color: #0c0c0c;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; 
}

#modal1 .service-value .card-list .card ul {
    padding: 22px 19px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

#modal1 .service-value .card-list .card ul li {
    padding-left: 25px;
    position: relative;

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

#modal1 .service-value .card-list .card ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: url(/-/media/ind/ics/image/icon_circle_check.svg) no-repeat center / contain;
}

#modal1 .service-value .result p {
    color: #fa000f;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; 
}

#modal1 .service-value .result .small {
    margin-top: 10px;

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; 
}

#modal1 .output {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

#modal1 .output .text-image {
    display: flex;
    align-items: center;
    gap: 23px;
}

#modal1 .output .text-image p {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.9px;
}

@media screen and (max-width: 767px) {
    #modal1 .system-configuration {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #modal1 .system-configuration h3 {
        padding-bottom: .3rem;
        font-size: 1.2rem;
        line-height: 1.4;
    }

    #modal1 .system-configuration .title {
        margin-top: 1rem;
        font-size: 1rem;
        line-height: 1.4;
    }

    #modal1 .system-configuration .text {
        margin-top: 1rem;
        font-size: 1rem;
        line-height: 1.4;
    }

    #modal1 .service-value h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    #modal1 .service-value .card-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #modal1 .service-value .card-list .card .title {
        font-size: 1rem;
        line-height: 1.4;
    }

    #modal1 .service-value .card-list .card ul li {
        font-size: 1rem;
        line-height: 1.4;
    }

    #modal1 .service-value .result p {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    #modal1 .service-value .result .small {
        font-size: 1rem;
        line-height: 1.4;
    }

    #modal1 .output .text-image {
        flex-direction: column;
        gap: 1rem;
    }

    #modal1 .output .text-image p {
        font-size: 1rem;
        line-height: 1.4;
    }
}


/* modal2 */
#modal2 .overview h3 {
    margin-bottom: 30px;

    color: #0c0c0c;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; 
}

#modal2 .text-image {
    display: flex;
    align-items: center;
    gap: 38px;
}

#modal2 .text-image p {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

@media screen and (max-width: 767px) {
    #modal2 .overview h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    #modal2 .text-image {
        flex-direction: column;
        gap: 1rem;
    }

    #modal2 .text-image p {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* modal4 */
#modal4 .note {
    margin-top: 40px;
}

@media screen and (max-width: 767px) {
    #modal4 .note {
        margin-top: 1rem;
    }
}

/* modal5 */
#modal5 .label-title {
    width: 1000px;
}

#modal5 .image-box {
    max-width: 616px;
    margin: 50px auto 0;
}

@media screen and (max-width: 767px) {
    #modal5 .label-title {
        width: 100%;
    }

    #modal5 .image-box {
        margin: 1rem auto 0;
    }
}

/* modal6 */
#modal6 .text-image {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 416px;
    gap: 42px;
}

#modal6 .text-image .text-box {
    display: grid;
    grid-template-columns: 1fr;
    align-content: baseline;
    gap: 20px;
}

#modal6 .text-image .text-box h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; 
}

#modal6 .text-image .text-box p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

@media screen and (max-width: 767px) {
    #modal6 .text-image {
        margin-top: 1rem;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #modal6 .text-image .text-box h3 {
        font-size: 1.2rem;
        line-height: 1.4; 
    }

    #modal6 .text-image .text-box p {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* modal7 */
#modal7 .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

#modal7 .content .text-image {
    display: grid;
    grid-template-columns: 1fr 406px;
    gap: 55px;
}

#modal7 .content .text-image .text-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

#modal7 .content .text-image .text-box h3 {
    color: #0c0c0c;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; 
}

#modal7 .content .text-image .text-box ul {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

#modal7 .content .text-image .text-box ul li {
    padding-left: 1rem;
    position: relative;

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; 
}

#modal7 .content .text-image .text-box ul li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}

#modal7 .content .text-image .text-box .text-list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

#modal7 .content .text-image .text-box .text-list p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

#modal7 .content .text-image .text-box .text-list p strong {
    color: #fa000f;
    font-weight: 400;
}

#modal7 .content .text-image .image-box {
    max-width: 406px;
}

#modal7 .content .text-image .image-box .note {
    margin-top: 14px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

#modal7 .content .pr {
    padding-bottom: 37px;
    position: relative;

    color: #fa000f;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

#modal7 .content .pr::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 12px;
    background: url(/-/media/ind/ics/image/modal7/arrow.svg) no-repeat center / contain;
}

@media screen and (max-width: 767px) {
    #modal7 .content {
        gap: 2rem;
    }

    #modal7 .content .text-image {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #modal7 .content .text-image .text-box {
        gap: 2rem;
    }

    #modal7 .content .text-image .text-box h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    #modal7 .content .text-image .text-box ul li {
        font-size: 1rem;
        line-height: 1.4;
    }

    #modal7 .content .text-image .image-box {
        max-width: 260px;
    }

    #modal7 .content .text-image .image-box .note {
        font-size: .8rem;
    }

    #modal7 .content .pr {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    #modal7 .content .text-image .text-box .text-list {
        gap: 1rem;
    }

    #modal7 .content .text-image .text-box .text-list p {
        font-size: 1rem;
        line-height: 1.4;
    }

    
}

/* modal8 */
#modal8 .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

#modal8 .list-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

#modal8 .list-box h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

#modal8 .list-box .image-text {
    display: grid;
    grid-template-columns: 141px 1fr;
    gap: 28px;
}

#modal8 .list-box .image-text .image-box {
    max-width: 141px;
}

#modal8 .list-box .image-text .text-box h4 {
    font-size: 18px!important;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; 
}

#modal8 .list-box .image-text .text-box ul {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

#modal8 .list-box .image-text .text-box ul li {
    padding-left: 18px;
    position: relative;
    
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; 
}

#modal8 .list-box .image-text .text-box ul li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 767px) {
    #modal8 .content {
        gap: 2rem;
    }

    #modal8 .list-box {
        gap: 2rem;
    }

    #modal8 .list-box h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    #modal8 .list-box .image-text {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #modal8 .list-box .image-text .text-box h4 {
        font-size: 1rem;
        line-height: 1.4;
    }

    #modal8 .list-box .image-text .text-box ul li {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* modal9 */
#modal9 .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

#modal9 .content .text-image {
    display: grid;
    grid-template-columns: 1fr 372px;
    gap: 79px;
}

#modal9 .content .text-image .text-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

#modal9 .content .text-image .text-box h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

#modal9 .content .text-image .text-box ul {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

#modal9 .content .text-image .text-box ul li {
    padding-left: 18px;
    position: relative;

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; 
}

#modal9 .content .text-image .text-box ul li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}

#modal9 .content .usage h3,
#modal9 .content .spec h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

#modal9 .content .usage .image-box,
#modal9 .content .spec .image-box {
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    #modal9 .content {
        gap: 1rem;
    }

    #modal9 .content .text-image {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #modal9 .content .text-image .text-box {
        gap: 2rem;
    }

    #modal9 .content .text-image .text-box h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    #modal9 .content .text-image .text-box ul {
        margin-top: 1rem;
    }

    #modal9 .content .text-image .text-box ul li {
        font-size: 1rem;
        line-height: 1.4;
    }

    #modal9 .content .usage h3,
    #modal9 .content .spec h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }
}

/* modal10 */
#modal10 .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

#modal10 .content .text-image {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 30px;
}

#modal10 .content .text-image .text-box h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; 
}

#modal10 .content .text-image .text-box ul {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

#modal10 .content .text-image .text-box ul li {
    padding-left: 18px;
    position: relative;

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; 
}

#modal10 .content .text-image .text-box ul li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 767px) {
    #modal10 .content .text-image {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #modal10 .content .text-image .text-box h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    #modal10 .content .text-image .text-box ul li {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/*------------------------------------------
scroll-hint
------------------------------------------*/

@media screen and (max-width: 767px) {
	.image-box.js-scroll-hint {
		padding-bottom: 1rem;
		width: calc(100vw - (20px * 2));
	}
	.image-box.js-scroll-hint img {
        max-width: 800px!important;
        width: 800px!important;
    }
}

@keyframes scroll-hint-appear {
    0% {
        transform: translateX(40px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50%,
    100% {
        transform: translateX(-40px);
        opacity: 0;
    }
}

.scroll-hint-icon {
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 60px);
    box-sizing: border-box;
    width: 120px;
    height: auto;
    border-radius: 5px;
    transition: opacity .3s;
    opacity: 0;
    background: rgba(0, 0, 0, .7);
    text-align: center;
    padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    pointer-events: none;
}

.scroll-hint-text {
    font-size: 10px;
    color: #FFF;
    margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
    opacity: .8;
}

.scroll-hint-icon:before {
    display: inline-block;
    width: 40px;
    height: 40px;
    color: #FFF;
    vertical-align: middle;
    text-align: center;
    content: "";
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
    content: "";
    width: 34px;
    height: 14px;
    display: block;
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -20px;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
    opacity: 0;
    transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
    opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
    animation: scroll-hint-appear 1.2s linear;
    animation-iteration-count: 2;
}

.scroll-hint-icon-white {
    background-color: #FFF;
    box-shadow: 0 4px 5px rgba(0, 0, 0, .4);
}

.scroll-hint-icon-white:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
    color: #000;
}

.scroll-hint-shadow-wrap {
    position: relative;
}

.scroll-hint-shadow-wrap::after {
    content: "";
    width: 20px;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.scroll-hint-shadow-wrap::before {
    content: "";
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
.scroll-hint-shadow-wrap.is-right-scrollable::after
 {
    opacity: 1;
    visibility: visible;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before,
.scroll-hint-shadow-wrap.is-left-scrollable::before
 {
    opacity: 1;
    visibility: visible;
}