/* メインビジュアル */
.main-visual {
    padding-top: 70px;
    padding-bottom: 70px;
    background: url("/-/media/ind/gred/top/image/main_visual_bg.png") no-repeat center center;
    background-size: cover;
}
.main-visual .wrapper {
    margin: 0 auto;
    max-width: 1275px;
}
.main-visual .wrapper .text-block .lead {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
.main-visual .wrapper .text-block h1 {
    margin-top: 18px;
}
.main-visual .wrapper .text-block h1 img {
    width: 615px;
}
.main-visual .wrapper .text-block .description {
    margin-top: 18px;

    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
    letter-spacing: 1.44px;
}
.main-visual .wrapper .cta-block {
    margin-top: 38px;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 30px;
}
@media screen and (max-width: 767px) {
    .main-visual {
        background: none;
        position: relative;
    }
    .main-visual::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: url("/-/media/ind/gred/top/image/main_visual_bg.png") no-repeat right center;
        background-size: cover;
        opacity: .15;
    }
    .main-visual .wrapper .text-block {
        margin-top: 0;
    }
    .main-visual .wrapper .text-block .lead,
    .main-visual .wrapper .text-block .description {
        font-size: var(--sp-font-size-p);
        line-height: var(--sp-line-height-p);
    }
    .main-visual .wrapper .cta-block {
        flex-direction: column;
    }
}

/* GREDとは */
.about .content-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
}
.about .content-block img {
    width: 428px;
}
.about .content-block p {
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
    letter-spacing: 1.44px;
}
.about .content-block p strong {
    font-weight: 700;
    color: #2F7C31;
}
@media screen and (max-width: 767px) {
    .about .content-block {
        flex-direction: column;
    }
    .about .content-block p {
        font-size: var(--sp-font-size-p);
        line-height: var(--sp-line-height-p);
    }
}

/* お悩み */
.problem {
    background: #F2F2F2;
}
.problem .content-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
}
.problem .content-block img {
    width: 428px;
}
.problem .content-block ol {
    padding: 0;

    list-style: none;
    counter-reset: item;
}
.problem .content-block ol li {
    margin-bottom: 47px;
    padding-left: 70px;
    counter-increment: item;
    position: relative;

    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 125% */
}
.problem .content-block ol li:last-child {
    margin-bottom: 0;
}
.problem .content-block ol li::before {
    content: counter(item);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid #333;
    border-radius: 10px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.problem .summary-block h3 {
    margin-top: 160px;
    padding: 18px 32px;
    display: inline-block;
    position: relative;

    background: #fff;
    border: 1px solid #2F7C31;
    font-family: "Noto Sans JP";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 37px;
}
.problem .summary-block h3::before {
    content: "";
    position: absolute;
    top: calc((44px + 71px) * -1);
    left: 50%;
    translate: calc(100% / 2 * -1);
    width: 62px;
    height: 71px;
    background: url("/-/media/ind/gred/top/image/problem_arrow.svg") no-repeat center center;
    background-size: contain;
}
.problem .summary-block h3 strong {
    color: #2F7C31;
}
@media screen and (max-width: 767px) {
    .problem .content-block {
        flex-direction: column;
    }
    .problem .content-block ol li {
        margin-bottom: 24px;
        padding-left: 52px;

        font-size: var(--sp-font-size-p);
        line-height: var(--sp-line-height-p);
    }
    .problem .content-block ol li::before {
        width: 36px;
        height: 36px;
    }
    .problem .summary-block h3 {
        padding: 18px 10px;

        font-size: var(--sp-font-size-h3);
        font-weight: var(--sp-font-weight-h3);
        line-height: var(--sp-line-height-h3);
    }
}

/* 解決策 */
.solution .content-block ol {
    padding: 0;
    counter-reset: item;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 44px;
}
.solution .content-block ol li {
    padding: 30px;
    counter-increment: item;
    background: #F2F2F2;
    border-radius: 20px;
}
.solution .content-block ol li h3 {
    padding-left: 70px;
    position: relative;

    color: #2F7C31;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
.solution .content-block ol li h3::before {
    content: counter(item);
    position: absolute;
    top: -9px;
    left: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2F7C31;
    color: #fff;
    text-align: center;
    line-height: 1.9;
}
.solution .content-block ol li .content-box {
    margin-top: 31px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.solution .content-block ol li .content-box p {
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
    letter-spacing: 1.44px;
}
.solution .content-block ol li .content-box img {
    width: 213px;
}
@media screen and (max-width: 767px) {
    .solution .content-block ol {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .solution .content-block ol li {
        padding: 1rem;
    }
    .solution .content-block ol li h3 {
        padding-left: unset;
        text-align: center;

        font-size: var(--sp-font-size-h3);
        line-height: var(--sp-line-height-h3);
    }
    .solution .content-block ol li h3::before {
        top: -40px;
        left: -32px;
        width: 40px;
        height: 40px;
    }
    .solution .content-block ol li .content-box {
        margin-top: 1rem;
        flex-direction: column-reverse;
        gap: 1rem;
    }
    .solution .content-block ol li .content-box img {
        width: 100%;
    }
    .solution .content-block ol li .content-box p {
        font-size: var(--sp-font-size-p);
        line-height: var(--sp-line-height-p);
    }
}

/* CTA */
.cta {
    background: url("/-/media/ind/gred/top/image/cta_bg.png") no-repeat center center;
    background-size: cover;
}
.cta .content-block h2 {
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 37px;
    text-align: center;
}  
.cta .cta-block {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 30px;
}
@media screen and (max-width: 767px) {
    .cta .content-block h2 {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .cta .cta-block {
        margin-top: 2rem;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}


/* ここがすごい */
.key-point .content-block .point {
    display: flex;
    justify-content: center;
    gap: 44px;
}
.key-point .content-block .point .text-box h3 {
    padding-left: 37px;
    position: relative;

    color: #2F7C31;
    font-family: "Noto Sans JP";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 37px;
}
.key-point .content-block .point .text-box h3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: #2F7C31;
    border-radius: 10px;
}
.key-point .content-block .point .text-box p {
    margin-top: 30px;

    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 133.333% */
    letter-spacing: 1.92px;
}
.key-point .content-block .point .image-box img {
    width: 427px;
}
.key-point .content-block .speech-bubble-box {
    margin-top: 60px;
    text-align: center;
}
.key-point .content-block .speech-bubble-box p {
    padding: 25px 36px;
    display: inline-block;
    position: relative;

    background: #2F7C31;
    border-radius: 10px;
    color: #fff;
}
.key-point .content-block .speech-bubble-box p::after {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    translate: -50%;
    width: 68px;
    height: 45px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='68' height='45' viewBox='0 0 68 45' fill='none'><path d='M36.0518 43.0901C34.8509 44.5845 32.5758 44.5845 31.3749 43.0901L1.01318 5.30964C-0.564524 3.34642 0.833029 0.430373 3.35164 0.430373L64.0751 0.430377C66.5937 0.430377 67.9912 3.34642 66.4135 5.30964L36.0518 43.0901Z' fill='%232F7C31'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}
.key-point .content-block .function {
    margin-top: 60px;

    display: flex;
    justify-content: center;
    gap: 44px;
}
.key-point .content-block .function .gred,
.key-point .content-block .function .other {
    padding: 44px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;

    border-radius: 20px;
}
.key-point .content-block .function .gred {
    border: 6px solid #2F7C31;
    background: #fff;
}
.key-point .content-block .function .other {
    border: 6px solid #F2F2F2;
    background: #F2F2F2;
}
.key-point .content-block .function h3 {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
.key-point .content-block .function dl dt {
    padding: 10px 32px;
    display: inline-block;
    width: 72px;
    border: 2px solid #333;
    background: #fff;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
.key-point .content-block .function dl dd {
    margin-top: 26px;

    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
    letter-spacing: 1.44px;
}
.key-point .content-block .function dl dd p {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
.key-point .content-block .function dl dd p.important {
    color: #C02;
}
.key-point .summary-block {
    margin: 60px auto 0;
}
.key-point .summary-block .content-box {
    padding: 40px;
    display: inline-block;
    position: relative;
}
.key-point .summary-block .content-box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -48px;
    width: 48px;
    translate: 0 -50%;
    height: 68px;
    background: url("/-/media/ind/gred/top/image/key_point_summary_left.svg") no-repeat center center;
    background-size: contain;
}
.key-point .summary-block .content-box::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -48px;
    width: 48px;
    translate: 0 -50%;
    height: 68px;
    background: url("/-/media/ind/gred/top/image/key_point_summary_right.svg") no-repeat center center;
    background-size: contain;
}
.key-point .summary-block h3 {
    font-family: "Noto Sans JP";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 37px;
}
.key-point .summary-block h3 strong {
    color: #2F7C31;
}
.key-point .summary-block p {
    margin-top: 20px;

    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
@media screen and (max-width: 767px) {
    .key-point .content-block .point {
        flex-direction: column-reverse;
    }
    .key-point .content-block .point .text-box h3 {
        padding-left: 32px;

        font-size: var(--sp-font-size-h3);
        line-height: var(--sp-line-height-h3);
    }
    .key-point .content-block .point .text-box p {
        font-size: var(--sp-font-size-p);
        line-height: var(--sp-line-height-p);
    }
    .key-point .content-block .function {
        margin-top: 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }
    .key-point .content-block .function .gred,
    .key-point .content-block .function .other {
        padding: 1rem;
    }
    .key-point .content-block .function h3 {
        font-size: var(--sp-font-size-h3);
        line-height: var(--sp-line-height-h3);
    }
    .key-point .content-block .function dl dt {
        padding: .5rem 1rem;
    }
    .key-point .content-block .function dl dd {
        margin-top: 1rem;
    }
    .key-point .content-block .function dl dt,
    .key-point .content-block .function dl dd,
    .key-point .content-block .function dl dd p {
        font-size: var(--sp-font-size-p);
        line-height: var(--sp-line-height-p);
    }
    .key-point .summary-block .content-box {
        padding: 0;
    }
    .key-point .summary-block .content-box::before,
    .key-point .summary-block .content-box::after {
        display: none;
    }
    .key-point .summary-block h3 {
        font-size: var(--sp-font-size-h3);
        line-height: var(--sp-line-height-h3);
    }
    .key-point .summary-block p {
        font-size: var(--sp-font-size-p);
        line-height: var(--sp-line-height-p);
    }
}


/* 特徴 */
.feature {
    background: #F2F2F2;
}
.feature .hedding-block .intro {
    margin-bottom: 6px;

    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
.feature .content-block ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.feature .content-block ul li {
    padding: 30px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;

    background: #fff;
    border-radius: 20px;
}
.feature .content-block ul li h3 {
    color: #2F7C31;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
}
.feature .content-block ul li p {
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    letter-spacing: 0.7px;
}
@media screen and (max-width: 767px) {
    .feature .hedding-block .intro {
        font-size: 1.2rem;
    }
    .feature .content-block ul {
        flex-direction: column;
    }
    .feature .content-block ul li img {
        margin: 0 auto;
    }
}


/* 機能 */
.function .hedding-block .intro {
    margin-bottom: 6px;

    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
.function .content-block .speech-bubble-box {
    margin-top: 60px;
    text-align: center;
}
.function .content-block .speech-bubble-box p {
    padding: 25px 36px;
    display: inline-block;
    position: relative;

    background: #2F7C31;
    border-radius: 10px;
    color: #fff;
}
.function .content-block .speech-bubble-box p::after {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    translate: -50%;
    width: 68px;
    height: 45px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='68' height='45' viewBox='0 0 68 45' fill='none'><path d='M36.0518 43.0901C34.8509 44.5845 32.5758 44.5845 31.3749 43.0901L1.01318 5.30964C-0.564524 3.34642 0.833029 0.430373 3.35164 0.430373L64.0751 0.430377C66.5937 0.430377 67.9912 3.34642 66.4135 5.30964L36.0518 43.0901Z' fill='%232F7C31'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}
.function .content-block ul {
    max-width: 829px;
    margin: 60px auto 0;
    padding: 60px 90px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;

    list-style: none;
    border-radius: 20px;
    border: 6px solid #2F7C31;
}
.function .content-block ul li {
    padding-left: 55px;
    position: relative;

    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; 
}
.function .content-block ul li::before {
    content: "";
    display: block;
    position: absolute;
    top: -5px;
    left: 0;
    width: 41.5px;
    height: 41.5px;
    background: url("/-/media/ind/gred/top/image/function_list.svg") no-repeat center center;
    background-size: contain;

}
.function .content-block h3 {
    margin-top: 60px;
    padding-left: 37px;
    position: relative;

    font-family: "Noto Sans JP";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 37px;
}
.function .content-block h3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: #2F7C31;
    border-radius: 10px;
}
.function .content-block .image-box {
    margin-top: 30px;
    text-align: center;
}
.function .content-block .image-box img {
    max-width: 1020px;
}
@media screen and (max-width: 767px) {
    .function .hedding-block .intro {
        font-size: 1.2rem;
    }
    .function .content-block ul {
        padding: 1rem;
    }
    .function .content-block ul li {
        font-size: var(--sp-font-size-p);
        line-height: var(--sp-line-height-p);
    }
    .function .content-block ul li::before {
        top: 0.5rem;
        width: 32px;
        height: 32px;
    }
    .function .content-block h3 {
        padding-left: 1.5rem;

        font-size: var(--sp-font-size-h3);
        line-height: var(--sp-line-height-h3);
    }
    .function .content-block h3::before {
        width: 0.5rem;
    }
}


/* オプション */
.option {
    background: #F2F2F2;
}
.option .hedding-block .subtext {
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
    letter-spacing: 1.44px;
}
.option .content-block ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.option .content-block ul li {
    padding: 44px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;

    border-radius: 20px;
    background: #FFF;
}
.option .content-block ul li img {
    max-width: 317.5px;
}
.option .content-block ul li .title {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
.option .content-block ul li p {
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; 
}
.option .content-block h3 {
    margin-top: 60px;
    padding-left: 37px;
    position: relative;

    font-family: "Noto Sans JP";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 37px;
}
.option .content-block h3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: #2F7C31;
    border-radius: 10px;
}
.option .content-block .image-box {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}
.option .content-block .image-box img {
    max-width: 1275px;
}
@media screen and (max-width: 767px) {
    .option .hedding-block .subtext {
        font-size: var(--sp-font-size-p);
        line-height: var(--sp-line-height-p);
    }
    .option .content-block ul {
        flex-direction: column;
    }
    .option .content-block ul li {
        padding: 1rem;
        gap: 1rem;
    }
    .option .content-block h3 {
        padding-left: 1.5rem;

        font-size: var(--sp-font-size-h3);
        line-height: var(--sp-line-height-h3);
    }
    .option .content-block h3::before {
        width: 0.5rem;
    }
    .option .content-block .image-box {
        padding: .5rem;
        margin-top: 3rem;
        gap: 2rem;
    }
}


/* 価格 */
.price .hedding-block .intro {
    margin-bottom: 6px;

    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
.price .content-block .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* iOSでスムーズスクロール */
    margin: 0 auto;
}
.price .content-block .table-scroll table {
    width: 100%;
    min-width: 924px;
    border-collapse: separate;
    border-spacing: 11px;
}
.price .content-block .table-scroll table thead th {
    width: 317px;
    height: 73px;
    background: #2F7C31;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    color: #fff;
    white-space: nowrap;
}
.price .content-block .table-scroll table tbody th {
    width: 267px;
    height: 106px;
    border: 3px solid #2F7C31;
    background: #fff;
    color: #2F7C31;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; 
    white-space: nowrap;
}
.price .content-block .table-scroll table tbody td {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;

    background: #F2F2F2;
    text-align: center;
    white-space: nowrap;
}

.price .content-block .table-scroll table tbody td .tax-note {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.7px;
}
.price .content-block .table-scroll table tbody td .comment {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
.price .content-block .note {
    padding-left: 12px;

    font-family: "Noto Sans JP";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 183.333% */
    letter-spacing: 0.6px;
}
@media screen and (max-width: 767px) {
    .price .hedding-block .intro {
        font-size: 1.2rem;
    }
    .price .content-block .table-scroll table {
        min-width: 800px;
    }
    .price .content-block .table-scroll table thead th {
        width: unset;
        height: unset;
        font-size: 1rem;
        line-height: 1.4;
    }
    .price .content-block .table-scroll table tbody th {
        width: unset;
        height: unset;
        font-size: 1rem;
        line-height: 1.4;
    }
    .price .content-block .table-scroll table tbody td {
        font-size: 1rem;
        line-height: 1.4;
    }
    .price .content-block .table-scroll table tbody td p.comment {
        font-size: 1rem;
        line-height: 1.4;
    }
}


/* セキュリティ */
.security .hedding-block .intro {
    margin-bottom: 6px;

    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
.security .content-block ul {
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.security .content-block ul li {
    display: grid;
    grid-template-columns: 428px 1fr;
    align-items: center;
    gap: 0;
    border-radius: 20px;
    background: #F2F2F2;
    overflow: hidden;
}
.security .content-block ul li .image-box img {
    width: 100%;
}
.security .content-block ul li .text-box {
    padding: 44.5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.security .content-block ul li .text-box p {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 133.333% */
    letter-spacing: 1.92px;
}
@media screen and (max-width: 767px) {
    .security .hedding-block .intro {
        font-size: 1.2rem;
    }
    .security .content-block ul li {
        grid-template-columns: 1fr;
    }
    .security .content-block ul li .text-box {
        padding: 1rem;
    }
    .security .content-block ul li .text-box p {
        font-size: var(--sp-font-size-p);
        line-height: var(--sp-line-height-p);
    }
}


/* パートナー */
.partner {
    background: #F2F2F2;
}
.partner .hedding-block .intro {
    margin-bottom: 6px;

    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
.partner .content-block {
    display: grid;
    grid-template-columns: 428px 1fr;
    gap: 60px;
}
.partner .content-block img {
    width: 100%;
    border-radius: 20px;
}
.partner .content-block .content-box p {
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
    letter-spacing: 1.44px;
}
.partner .content-block .content-box .cta-box {
    margin-top: 60px;
}
.partner .content-block .content-box .cta-box a.button-white {
    width: 347px;
}
@media screen and (max-width: 767px) {
    .partner .hedding-block .intro {
        font-size: 1.2rem;
    }
    .partner .content-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .partner .content-block .content-box p {
        font-size: var(--sp-font-size-p);
        line-height: var(--sp-line-height-p);
    }
    .partner .content-block .content-box .cta-box {
        margin-top: 2rem;
    }
    .partner .content-block .content-box .cta-box a.button-white {
        width: 100%;
    }
}



/* 資料ダウンロード */
.download .content-block {
    max-width: 1060px;
    margin: 0 auto;
}
.download .content-block ul {
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}
.download .content-block ul li {
    display: grid;
    grid-template-columns: 212px 1fr;
    gap: 60px;
}
.download .content-block ul li .image-box img {
    width: 100%;
}
.download .content-block .text-box h3 {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
.download .content-block .text-box p {
    margin-top: 30px;

    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
    letter-spacing: 1.44px;
}
.download .content-block .text-box .cta-box {
    margin-top: 60px;
}
@media screen and (max-width: 767px) {
    .download .content-block ul {
        gap: 6rem;
    }
    .download .content-block ul li {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .download .content-block .text-box h3 {
        font-size: var(--sp-font-size-h3);
        line-height: var(--sp-line-height-h3);
    }
    .download .content-block .text-box p {
        font-size: var(--sp-font-size-p);
        line-height: var(--sp-line-height-p);
    }
}



/* news */
.news {
    background: #F2F2F2;
}
.news .content-block ul {
    padding: 0;
    list-style: none;

    background: #fff;
    border-top: 2px solid #2F7C31;
    border-bottom: 2px solid #2F7C31;
}
.news .content-block ul li {
    padding: 31px 58px 31px 40px;
    display: flex;
    gap: 104px;

    border-bottom: 1px solid #2F7C31;
}
.news .content-block ul li:last-child {
    border-bottom: none;
}
.news .content-block ul li .left {
    display: grid;
    grid-template-columns: 173px 121px;
    gap: 16px;
}
.news .content-block ul li .left .date {
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
    letter-spacing: 1.44px;
}
.news .content-block ul li .left .category {
    height: 31px;

    background: #333;
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.7px;
    text-align: center;
}
.news .content-block ul li .right p {
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
    letter-spacing: 1.44px;
    text-align: left;
}
.news .content-block .note {
    margin-top: 24px;

    font-family: "Noto Sans JP";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 183.333% */
    letter-spacing: 0.6px;
}
@media screen and (max-width: 767px) {
    .news .content-block ul li {
        padding: 1rem;
        flex-direction: column;
        gap: 1.5rem;
    }
    .news .content-block ul li .left {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .news .content-block ul li .left .date {
        font-size: 1rem;
        line-height: 1.2;
    }
    .news .content-block ul li .right p {
        font-size: var(--sp-font-size-p);
        line-height: var(--sp-line-height-p);
    }
}