@font-face {
    font-family: 'Noto Sans JP';
    src:
        url(../fonts/NotoSansJP-Bold.woff2) format('woff2'),
        url(../fonts/NotoSansJP-Bold.woff) format('woff');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans JP';
    src:
        url(../fonts/NotoSansJP-Medium.woff2) format('woff2'),
        url(../fonts/NotoSansJP-Medium.woff) format('woff');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans JP';
    src:
        url(../fonts/NotoSansJP-Regular.woff2) format('woff2'),
        url(../fonts/NotoSansJP-Regular.woff) format('woff');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Titillium Web';
    src:
        url(../fonts/titillium-web-v15-latin-regular.woff2) format('woff2'),
        url(../fonts/titillium-web-v15-latin-regular.woff) format('woff');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: jost;
    src:
        url(../fonts/Jost-Medium.woff2) format('woff2'),
        url(../fonts/Jost-Medium.woff) format('woff');
    font-weight: 500;
    font-display: swap;
}

/* -------------------- newTOP -------------------- */
/* ---------variable ---------- */
:root {
    --color-black: #333;
    --color-blue: #26326e;
    --color-orange: #cb5329;
    --color-red: #a02033;
    --color-gray-01: #f8f8f8;
    --color-gray-02: #f0f0f0;
    --color-gray-03: #eaeaea;
}

/* comon */
.page-top {
    color: var(--color-black);
    letter-spacing: 0;
    line-height: 1.8;
}
.page-top a {
    transition: all 0.2s;
}
.page-top a:hover {
    opacity: 0.8;
}
.page-top ul,
.page-top ol {
    list-style-type: none;
}
.page-top .pd-l {
    padding: 80px 0;
}
@media screen and (max-width: 767px) {
    .page-top .pd-l {
        padding: 40px 0;
    }
}
.page-top .inner {
    padding: 0 20px;
    max-width: 1140px;
    margin: 0 auto;
}
.page-top .top-lead {
    color: var(--color-blue);
    font-size: 18px;
    text-align: center;
    margin-bottom: 1.8em;
}
@media screen and (max-width: 992px) {
    .page-top .top-lead {
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .page-top .top-lead {
        font-size: 14px;
        text-align: left;
    }
}

.page-top .top-lead.is-wh {
    color: #fff;
}
.page-top .btn-download {
    background: #fff;
    border: 1px solid #fff;
    color: var(--color-blue);
}
.page-top .btn-download:hover {
    background: var(--color-blue);
    color: #fff;
    opacity: 1;
}
.page-top .btn-contact {
    background: var(--color-red);
    border: 1px solid var(--color-red);
    color: #fff;
}
.page-top .btn-contact:hover {
    background: #fff;
    color: var(--color-red);
    opacity: 1;
}
.page-top .btn-download .arrow,
.page-top .btn-contact .arrow {
    position: absolute;
    top: 50%;
    right: 1.2em;
    transform: translateY(-50%);
    width: 7px;
    height: 12px;
}
.page-top .btn-download .arrow::before,
.page-top .btn-download .arrow::after,
.page-top .btn-contact .arrow::before,
.page-top .btn-contact .arrow::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 9px;
    height: 2px;
    border-radius: 9999px;
    transform-origin: calc(100% - 1px) 50%;
}
.page-top .btn-download .arrow::before,
.page-top .btn-download .arrow::after {
    background-color: var(--color-blue);
}
.page-top .btn-contact .arrow::before,
.page-top .btn-contact .arrow::after {
    background-color: #fff;
}
.page-top .btn-download .arrow::before,
.page-top .btn-contact .arrow::before {
    transform: rotate(45deg);
}
.page-top .btn-download .arrow::after,
.page-top .btn-contact .arrow::after {
    transform: rotate(-45deg);
}
.page-top .btn-download:hover .arrow::before,
.page-top .btn-download:hover .arrow::after {
    background-color: #fff;
}
.page-top .btn-contact:hover .arrow::before,
.page-top .btn-contact:hover .arrow::after {
    background-color: var(--color-red);
}

/* display切り替え */
.page-top .is-sp {
    display: none;
}
@media screen and (max-width: 767px) {
    .page-top .is-pc {
        display: none !important;
    }
    .page-top .is-sp {
        display: block !important;
    }
}

/* section-head */
.section-head {
    text-align: center;
}
.section-head__en {
    color: var(--color-orange);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
}
.section-head__title {
    color: var(--color-blue);
    font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0.2em 0 1em;
}
.section-head__title.is-wh {
    color: #fff;
}
.section-head__title .orange-text {
    color: var(--color-orange);
    font-weight: inherit;
}
@media screen and (max-width: 767px) {
    .section-head__en {
        font-size: 14px;
    }
    .section-head__title {
        font-size: 22px;
    }
}

/* contents-title  */
.contents-title {
    color: var(--color-blue);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.6em;
}
@media screen and (max-width: 767px) {
    .contents-title {
        font-size: 20px;
    }
}

/* contents-btn */
.contents-btn {
    background: #fff;
    border: 1px solid #000;
    border-radius: 100px;
    display: block;
    color: var(--color-black);
    font-size: 18px;
    text-align: center;
    padding: 14px;
    position: relative;
    margin: 2.2em auto 0;
    max-width: 400px;
}
.contents-btn__arrow {
    position: absolute;
    top: 50%;
    right: 1.5em;
    transform: translateY(-50%);
    width: 7px;
    height: 12px;
}
.contents-btn__arrow::before,
.contents-btn__arrow::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 9px;
    height: 2px;
    border-radius: 9999px;
    background-color: #000;
    transform-origin: calc(100% - 1px) 50%;
}
.contents-btn__arrow::before {
    transform: rotate(45deg);
}
.contents-btn__arrow::after {
    transform: rotate(-45deg);
}
.contents-btn:hover {
    background: #000;
    border: 1px solid #fff;
    color: #fff;
}
.contents-btn:hover .contents-btn__arrow::before,
.contents-btn:hover .contents-btn__arrow::after {
    background-color: #fff;
}
@media screen and (max-width: 767px) {
    .contents-btn {
        font-size: 14px;
        max-width: 320px;
    }
}

/* ---------- mv ---------- */
.top-mv {
    background: url(../images/top/top-mv.jpg) no-repeat center top/cover;
    height: 600px;
    position: relative;
}
.top-mv__item {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.top-mv__title {
    color: #fff;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0.1em;
    margin-top: 0.2em;
    margin-bottom: 0.5em;
}
.top-mv__title .gradient-text {
    background: linear-gradient(180deg, #cc562d 0%, #edc4b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 104%;
}
.top-mv__text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 2.2em;
}
.top-mv__btn-wrap {
    display: flex;
    gap: 6%;
}
.top-mv__btn-wrap .cta-btn {
    border-radius: 100px;
    display: block;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 16px 10px;
    width: 270px;
}

@media screen and (max-width: 992px) {
    .top-mv {
        height: 500px;
    }
    .top-mv__item {
        padding: 0 3em;
    }
    .top-mv__title {
        font-size: 50px;
    }
    .top-mv__text {
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .top-mv {
        background: url(../images/top/top-mv-s.jpg) no-repeat center/cover;
        height: 570px;
    }
    .top-mv__item {
        padding: 0 1em;
    }
    .top-mv__title {
        font-size: 40px;
        margin: 0.4em 0 0.8em 0;
    }
    .top-mv__text {
        font-size: 14px;
        margin-bottom: 3em;
    }
    .top-mv__btn-wrap {
        flex-direction: column;
        gap: 0.8em;
    }
    .top-mv__btn-wrap .cta-btn {
        font-size: 16px;
        padding: 14px;
        width: 240px;
        margin: 0 auto;
    }
}

/* ---------- concept ---------- */
.top-concept {
    background: url(../images/top/top-concept-bg.jpg) no-repeat center 70% / cover;
    height: 650px;
    position: relative;
}
.top-concept__list {
    display: flex;
    justify-content: center;
    gap: 0.85em;
}
.top-concept__list li {
    background: #fff;
    border: 3px solid rgb(38 50 110 / 20%);
    box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 10%);
    text-align: center;
    padding: 1.6em 0.6em;
    max-width: 178px;
    width: 100%;
}
.top-concept__list .text {
    color: var(--color-blue);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.8em;
}
.top-concept__list img {
    display: block;
    margin: 0 auto;
    max-width: 133px;
    width: 100%;
}

@media screen and (max-width: 992px) {
    .top-concept {
        background-position-x: 30%;
    }
    .top-concept__list li {
        padding: 1.2em 0.6em;
        max-width: 154px;
    }
    .top-concept__list img {
        max-width: 100px;
    }
}
@media screen and (max-width: 767px) {
    .top-concept {
        background: url(../images/top/top-concept-bg-s.jpg) no-repeat center / cover;
        height: 720px;
    }
    .top-concept__list {
        flex-wrap: wrap;
        max-width: 380px;
        margin: 0 auto;
    }
    .top-concept__list li {
        padding: 0.8em 0.4em;
        max-width: 124px;
        width: 40%;
    }
    .top-concept__list .text {
        font-size: 13px;
    }
    .top-concept__list img {
        max-width: 86px;
    }
}

/* ---------- solution ---------- */
.top-solution {
    background: url(../images/top/top-solution-bg.jpg) no-repeat center/cover;
    position: relative;
}
.top-solution__list {
    display: flex;
    justify-content: center;
    gap: 6px;
}
.top-solution__list li {
    background: #fff;
    border-radius: 4px;
    position: relative;
    max-width: 264px;
    width: 24%;
}
.top-solution__lebel {
    position: absolute;
    top: 0;
    left: 0;
    background: #faede9;
    color: var(--color-orange);
    text-align: center;
    width: 104%;
    height: 50px;
}
.top-solution__lebel::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 15px;
    height: 50px;
    background: #faede9;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    z-index: 10;
}
.top-solution__lebel.is-01,
.top-solution__lebel.is-01::before {
    background: #efcbbe;
}
.top-solution__lebel.is-02,
.top-solution__lebel.is-02::before {
    background: #e0987f;
    color: #fff;
}
.top-solution__lebel.is-03 {
    background: var(--color-orange);
    color: #fff;
    width: 100%;
}
.top-solution__lebel.is-03::before {
    content: none;
}
.top-solution__lebel span {
    display: block;
    padding: 0.2em;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
}
.top-solution__box {
    padding: 5.4em 0.8em 2em;
}
.top-solution__box .title {
    color: var(--color-orange);
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0.4em;
}
.top-solution__box .text {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}
.top-solution__box .pic {
    margin: 0 auto;
    max-width: 166px;
    min-height: 130px;
}
@media screen and (max-width: 992px) {
    .top-solution__list {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .top-solution__list li {
        max-width: 420px;
        width: 100%;
    }
    .top-solution__lebel,
    .top-solution__lebel.is-03 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 110px;
        height: 100%;
    }
    .top-solution__lebel::before {
        top: auto;
        right: auto;
        bottom: -19px;
        left: 0;
        transform: none;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        width: 100%;
        height: 20px;
    }
    .top-solution__lebel span {
        padding: 0.4em;
        font-size: 16px;
    }
    .top-solution__box {
        padding: 30px 20px 20px 120px;
    }
    .top-solution__box .title {
        font-size: 22px;
    }
    .top-solution__box .pic {
        max-width: 130px;
        min-height: 120px;
    }
}
@media screen and (max-width: 767px) {
    .top-solution {
        background: url(../images/top/top-solution-bg-s.jpg) no-repeat center/cover;
    }
    .top-solution__list li {
        max-width: 380px;
    }
    .top-solution__lebel,
    .top-solution__lebel.is-03 {
        width: 84px;
    }
    .top-solution__lebel span {
        font-size: 16px;
    }
    .top-solution__box {
        padding: 24px 12px 12px 94px;
    }
    .top-solution__box .title {
        font-size: 20px;
    }
    .top-solution__box .pic {
        max-width: 110px;
        min-height: 90px;
    }
    .top-solution__box .text {
        font-size: 13px;
    }
}

/* ---------- service ---------- */
.top-service {
    background: var(--color-gray-01);
}
.top-service__list {
    display: flex;
    flex-direction: column;
    gap: 1.8em;
}
.top-service__list > li {
    border: 2px solid var(--color-blue);
    border-radius: 5px;
}
.top-service__head {
    background: var(--color-blue);
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 4%;
    padding: 0.84em 1.6em 0.84em 2.6em;
}
.top-service__head .service-title {
    display: flex;
    align-items: center;
    gap: 0.6em;
    margin: 0;
}
.top-service__head .service-title__en {
    font-size: 36px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
}
.top-service__head .service-title__ja {
    font-size: 28px;
    font-weight: 500;
}
.top-service__head .service-comment {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 85px;
}
.top-service__head .service-comment__bubble {
    background: #fff;
    border-radius: 100px;
    color: var(--color-black);
    font-size: 14px;
    padding: 0.4em 1.6em;
    position: relative;
}
.top-service__head .service-comment__bubble::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    width: 10px;
    height: 14px;
    background: #fff;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.top-service__head .service-comment__people {
    position: absolute;
    right: 0;
    bottom: -28px;
    width: 78px;
    z-index: 1;
}
.top-service__item {
    display: flex;
    justify-content: space-between;
}
.top-service__item .service-support {
    background: #faede9;
    border-radius: 0 0 0 5px;
    padding: 1.6em 1.2em 1.6em 2.8em;
    width: 58%;
    position: relative;
}
.top-service__item .service-support::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -29px;
    transform: translateY(-50%);
    width: 30px;
    height: 100%;
    background: #faede9;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    z-index: 10;
}
.top-service__item .service-support .title {
    background: #fff;
    border-radius: 100px;
    border: 1px solid var(--color-blue);
    color: var(--color-blue);
    font-size: 16px;
    text-align: center;
    padding: 0.3em;
    margin-bottom: 1.2em;
}
.top-service__item .service-support dl {
    display: flex;
    gap: 0.8em;
    margin-bottom: 0.4em;
}
.top-service__item .service-support dl > dt {
    color: var(--color-blue);
    font-weight: 700;
    margin: 0;
    width: 6em;
}
.top-service__item .service-support dl > dd {
    font-weight: 500;
    margin: 0;
}
.top-service__item .service-effect {
    background: #fff;
    border-radius: 0 0 5px 0;
    padding: 1.6em 2.2em 1.6em 3.2em;
    width: 42%;
}
.top-service__item .service-effect .title {
    background: var(--color-orange);
    border-radius: 100px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding: 0.3em;
    margin-bottom: 1.2em;
}
.top-service__item .service-effect ul {
    line-height: 1.6;
}
@media screen and (max-width: 992px) {
    .top-service__list {
        max-width: 640px;
        margin: 0 auto;
    }
    .top-service__head {
        flex-direction: column;
        align-items: center;
        gap: 1em;
        padding: 1.2em 0.8em 1.6em;
    }
    .top-service__head .service-comment__people {
        bottom: -38px;
        width: 70px;
    }
    .top-service__item {
        flex-direction: column;
    }
    .top-service__item .service-support {
        padding: 1.8em 2em 1em;
        width: 100%;
    }
    .top-service__item .service-support::before {
        content: '';
        position: absolute;
        top: auto;
        right: auto;
        left: 0;
        bottom: -29px;
        transform: none;
        width: 100%;
        height: 30px;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
    }
    .top-service__item .service-effect {
        padding: 3.4em 2em 2em;
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .top-service__list {
        gap: 1em;
        max-width: 380px;
    }
    .top-service__head {
        gap: 1.2em;
        padding: 1em 1.2em;
    }
    .top-service__head .service-title__en {
        font-size: 24px;
    }
    .top-service__head .service-title__ja {
        font-size: 18px;
    }
    .top-service__head .service-comment {
        padding-right: 50px;
    }
    .top-service__head .service-comment__bubble {
        font-size: 12px;
        line-height: 1.3;
        padding: 0.6em 1.4em;
    }
    .top-service__head .service-comment__people {
        bottom: -28px;
        right: -18px;
        width: 60px;
    }
    .top-service__item .service-support {
        padding: 1.2em 1em 0.4em;
    }
    .top-service__item .service-support::before {
        bottom: -17px;
        height: 18px;
    }
    .top-service__item .service-support .title {
        font-size: 14px;
        margin-bottom: 0.8em;
    }
    .top-service__item .service-support dl {
        font-size: 13px;
        line-height: 1.5;
        gap: 2%;
    }
    .top-service__item .service-support dl > dt {
        width: 26%;
    }
    .top-service__item .service-support dl > dd {
        width: 72%;
    }
    .top-service__item .service-effect {
        padding: 2em 1em 1em;
        width: 100%;
    }
    .top-service__item .service-effect .title {
        font-size: 14px;
        margin-bottom: 0.8em;
    }
    .top-service__item .service-effect ul {
        font-size: 13px;
    }
}

/* ---------- plan ---------- */
.top-plan {
    background: var(--color-gray-03);
}
.top-plan__contents {
    padding: 40px 0;
}
.top-plan__table {
    display: grid;
    grid-template-columns: 110px 1fr 1fr 1fr;
    column-gap: 2px;
    margin-top: -1em;
    width: 100%;
}
.top-plan__table .tbl-row {
    display: contents;
}
.top-plan__table .tbl-cell {
    padding: 10px;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    border-bottom: 1px solid #6c6c6c;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 5.4em;
}
.top-plan__table .tbl-cell--label {
    text-align: left;
    padding: 0;
    background: transparent;
    border-bottom: none;
    display: flex;
    align-items: stretch;
}
.top-plan__table .tbl-cell--balloon {
    background: transparent;
    padding: 0;
    border-bottom: none;
    display: flex;
    align-items: flex-end;
    min-height: auto;
}
.top-plan__table .tbl-cell--balloon-empty {
    background: transparent;
    border-bottom: none;
}
.top-plan__table .balloon {
    position: relative;
    bottom: -20px;
    background: #fff;
    border-radius: 100px;
    box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 10%);
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    min-height: 4.5em;
    max-width: 264px;
    width: 100%;
}
.top-plan__table .balloon::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 9px 8px 0;
    border-style: solid;
    border-color: #fff transparent transparent;
}
.top-plan__table .tbl-cell--plan {
    border-radius: 10px 10px 0 0;
    padding: 38px 10px 26px;
    border: 0;
}
.top-plan__table .tbl-cell--plan-empty {
    background: transparent;
    border-bottom: none;
}
.top-plan__table .tbl-cell--plan-lite {
    background: #b7e4f9;
}
.top-plan__table .tbl-cell--plan-std {
    background: #5886c4;
}
.top-plan__table .tbl-cell--plan-adv {
    background: #26326e;
}
.top-plan__table .plan-name {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin: 0;
}
.top-plan__table .tbl-cell--plan-lite .plan-name {
    color: var(--color-blue);
}
.top-plan__table .plan-name span {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
}
.top-plan__table .tbl-cell--catch {
    color: var(--color-orange);
    padding: 14px 12px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    border: 0;
}
.top-plan__table .catch-box {
    display: block;
    border: 2px solid currentColor;
    border-radius: 6px;
    padding: 10px 8px;
    text-align: center;
    width: 100%;
}
.top-plan__table .tbl-cell--catch-lite .catch-box {
    border: 1px solid #4cbcf0;
}
.top-plan__table .tbl-cell--catch-std .catch-box {
    border: 1px solid #5886c4;
}
.top-plan__table .tbl-cell--catch-adv .catch-box {
    border: 1px solid #26326e;
}
.top-plan__table .tbl-row.is-label-3 .tbl-cell {
    border: 0;
}
.top-plan__table .level-label {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    line-height: 1.2;
    padding: 12px;
    margin-right: 10px;
    width: 100%;
}
.top-plan__table .level-label::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    width: 12px;
    height: 100%;
    background: #faede9;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    z-index: 10;
}
.top-plan__table .level-label .level-num {
    display: block;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin-bottom: 2px;
}
.top-plan__table .level-label .level-name {
    display: block;
    font-weight: 500;
}
.top-plan__table .level-0 {
    background: #faede9;
    color: #000;
}
.top-plan__table .level-1 {
    background: #efcbbe;
    color: #000;
}
.top-plan__table .level-1::before {
    background: #efcbbe;
}
.top-plan__table .level-2 {
    background: #e0987f;
}
.top-plan__table .level-2::before {
    background: #e0987f;
}
.top-plan__table .level-3 {
    background: #cb5329;
}
.top-plan__table .level-3::before {
    background: #cb5329;
}
.top-plan__table .tbl-cell--footer-label {
    background: #a0a0a0;
    font-weight: 500;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px;
    border-bottom: 1px solid #707070;
    border-radius: 0;
}
.top-plan__table .tbl-cell--spacer {
    height: 6px;
    background: transparent;
    border-bottom: none;
}
.top-plan__table .tbl-row--last .tbl-cell {
    border-bottom: none;
}
.top-plan__table .tbl-cell--top-lite,
.top-plan__table .tbl-cell--top-std,
.top-plan__table .tbl-cell--top-adv {
    border-radius: 10px 10px 0 0;
}
.top-plan__table .tbl-cell--bottom-lite,
.top-plan__table .tbl-cell--bottom-std,
.top-plan__table .tbl-cell--bottom-adv {
    border-radius: 0 0 10px 10px;
}
/* 主な取り扱いプロダクト */
.top-plan__product {
    display: flex;
    justify-content: center;
    gap: 2%;
    margin-top: 2.2em;
}
.top-plan__product li {
    max-width: 210px;
    width: 48%;
}
@media screen and (max-width: 1100px) {
    .top-plan__table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .top-plan__table {
        min-width: 980px;
    }
    .top-plan__table .balloon {
        font-size: 12px;
        max-width: 240px;
    }
    .top-plan__table .plan-name {
        font-size: 26px;
    }
    .top-plan__table .catch-box {
        font-size: 14px;
    }
    .top-plan__table .tbl-cell {
        font-size: 13px;
    }
}
@media screen and (max-width: 992px) {
    .top-plan__table-wrap {
        padding-bottom: 10px;
        overflow-x: scroll;
        display: block;
    }
    .top-plan__table-wrap::-webkit-scrollbar {
        width: 10px;
        height: 8px;
    }
    .top-plan__table-wrap::-webkit-scrollbar {
        width: 10px;
        height: 8px;
    }
    .top-plan__table-wrap::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 5px;
        margin: 0;
    }
    .top-plan__table-wrap::-webkit-scrollbar-thumb {
        background: #9a9a9a;
        border-radius: 5px;
    }
    .top-plan__table {
        margin: 0 auto;
        width: 980px;
    }
}
@media screen and (max-width: 767px) {
    .top-plan {
        overflow: hidden;
    }
    .top-plan__contents {
        padding: 20px 0 40px;
    }
    .top-plan__table-wrap {
        width: 94vw;
        margin-right: calc(50% - 50vw);
    }
    .top-plan__table {
        grid-template-columns: 90px 1fr 1fr 1fr;
        min-width: 750px;
        width: 750px;
    }
    .top-plan__table .balloon {
        font-size: 10px;
        max-width: 210px;
    }
    .top-plan__table .tbl-cell--plan {
        padding: 34px 10px 18px;
    }
    .top-plan__table .plan-name {
        font-size: 18px;
    }
    .top-plan__table .catch-box {
        font-size: 12px;
    }
    .top-plan__table .tbl-cell {
        font-size: 11px;
        min-height: 5em;
    }
    .top-plan__product li {
        max-width: 140px;
    }
}

/* ---------- reason ---------- */
.top-reason {
    background: #fff;
    position: relative;
}
.top-reason::before {
    content: '';
    background: url(../images/top/top-reason-bg.png) no-repeat center bottom/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 78%;
}
.top-reason .inner {
    position: relative;
    z-index: 1;
}
.top-reason__list {
    display: flex;
    justify-content: center;
    gap: 2.8%;
    margin-top: 5.4em;
}
.top-reason__list li {
    border-radius: 10px;
    border: 1px solid #8b8b8b;
    position: relative;
    width: 23%;
    max-width: 250px;
}
.top-reason__list .num {
    background: #fff;
    border-radius: 100%;
    color: var(--color-blue);
    font-size: 30px;
    font-weight: 500;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 65px;
    text-align: center;
    position: absolute;
    top: -1em;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 65px;
    z-index: 2;
}
.top-reason__list-head {
    background: var(--color-orange);
    border-radius: 9px 9px 0 0;
    padding: 3em 0.8em 1.3em;
    position: relative;
}
.top-reason__list-head::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -29px;
    width: 100%;
    height: 30px;
    background: var(--color-orange);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.top-reason__list-head .title {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}
.top-reason__list-body {
    background: #fff;
    border-radius: 0 0 9px 9px;
    padding: 3em 1.4em 2em;
}
.top-reason__list-body p {
    font-size: 14px;
    margin: 0;
}
@media screen and (max-width: 992px) {
    .top-reason__list {
        flex-wrap: wrap;
        gap: 3.4em 1.8em;
    }
    .top-reason__list li {
        width: 46%;
        max-width: 320px;
    }
}
@media screen and (max-width: 767px) {
    .top-reason::before {
        background: url(../images/top/top-reason-bg-s.png) no-repeat center bottom / cover;
        height: 90%;
    }
    .top-reason__list {
        flex-direction: column;
        align-items: center;
        gap: 2.2em;
        margin-top: 3.6em;
    }
    .top-reason__list li {
        max-width: 290px;
        width: 100%;
    }
    .top-reason__list .num {
        font-size: 22px;
        line-height: 50px;
        width: 50px;
        height: 50px;
    }
    .top-reason__list-head {
        padding: 2.6em 0.8em 0.6em;
    }
    .top-reason__list-head::before {
        bottom: -23px;
        height: 24px;
    }
    .top-reason__list-head .title {
        font-size: 18px;
    }
    .top-reason__list-body {
        padding: 2.4em 1.2em 1.8em;
    }
    .top-reason__list-body p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* ---------- case-studies ---------- */
.top-case-studies {
    background: #fff;
    padding: 40px 0 80px;
}
.top-case-studies__list {
    display: flex;
    justify-content: center;
    gap: 3.8%;
    margin: 3em 0 3.4em;
}
.top-case-studies__list li {
    max-width: 400px;
    width: 48%;
}
.top-case-studies__list a {
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    display: block;
    padding: 0.88em 0.88em 3em;
    position: relative;
    overflow: hidden;
}
.top-case-studies__list a:hover {
    box-shadow: 0px 6px 10px 0px rgb(0 0 0 / 20%);
    opacity: 1;
}
.top-case-studies__img img {
    border-radius: 5px;
    overflow: hidden;
}
.top-case-studies__item {
    padding: 1.2em 0.8em;
}
.top-case-studies__title {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0.6em;
}
.top-case-studies__text {
    color: var(--color-black);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
.top-case-studies__btn {
    background: var(--color-blue);
    color: #fff;
    padding: 8px 24px 8px 20px;
    clip-path: polygon(18px 0%, 100% 0%, 100% 100%, 0% 100%);
    position: absolute;
    bottom: -1px;
    right: -1px;
    text-align: center;
    max-width: 180px;
    width: 100%;
}
.top-case-studies__btn .arrow {
    position: absolute;
    top: 50%;
    right: 1.4em;
    transform: translateY(-50%);
    width: 7px;
    height: 12px;
}
.top-case-studies__btn .arrow::before,
.top-case-studies__btn .arrow::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 8px;
    height: 2px;
    border-radius: 9999px;
    background-color: #fff;
    transform-origin: calc(100% - 1px) 50%;
}
.top-case-studies__btn .arrow::before {
    transform: rotate(45deg);
}
.top-case-studies__btn .arrow::after {
    transform: rotate(-45deg);
}
@media screen and (max-width: 992px) {
    .top-case-studies {
        padding-top: 0;
    }
}
@media screen and (max-width: 767px) {
    .top-case-studies__list {
        flex-direction: column;
        align-items: center;
        gap: 1em;
        margin: 2em auto;
    }
    .top-case-studies__list li {
        max-width: 370px;
        width: 100%;
    }
    .top-case-studies__list a {
        padding-bottom: 2.4em;
    }
    .top-case-studies__title {
        font-size: 18px;
    }
    .top-case-studies__text {
        font-size: 13px;
    }
    .top-case-studies__btn {
        font-size: 14px;
        max-width: 164px;
    }
}

/* ---------- use-cases ---------- */
.top-use-cases {
    background: var(--color-gray-03);
}
.top-use-cases__list {
    display: flex;
    flex-direction: column;
    gap: 1.4em;
    margin-top: 3em;
}
.top-use-cases__list .box {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0.8em;
    position: relative;
}
.top-use-cases__list .box::after {
    content: '';
    background: linear-gradient(90deg, rgba(38, 50, 110, 0.75) 0%, rgba(38, 50, 110, 0.65) 10%, rgba(38, 50, 110, 0.65) 24%, rgba(38, 50, 110, 0.7) 34%, rgba(38, 50, 110, 1) 48%, rgba(38, 50, 110, 1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.top-use-cases__list .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 51%;
    height: 100%;
}
.top-use-cases__list .box.is-01::before {
    background: url(../images/top/top-use-cases-01.jpg) no-repeat center/cover;
}
.top-use-cases__list .box.is-02::before {
    background: url(../images/top/top-use-cases-02.jpg) no-repeat center/cover;
}
.top-use-cases__list .box.is-03::before {
    background: url(../images/top/top-use-cases-03.jpg) no-repeat center/cover;
}
.top-use-cases__list .box.is-04::before {
    background: url(../images/top/top-use-cases-04.jpg) no-repeat center/cover;
}

.top-use-cases__head {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.6em;
    position: relative;
    width: 39%;
    z-index: 1;
}
.top-use-cases__head .title {
    color: #fff;
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
}
.top-use-cases__head .title .num {
    display: block;
    font-size: 74%;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 1.2em;
}
.top-use-cases__head .title .num > span {
    font-weight: 500;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.top-use-cases__body {
    position: relative;
    width: 61%;
    z-index: 1;
}
.top-use-cases__item {
    background: #fff;
    border-radius: 5px;
    display: flex;
    padding: 0.6em 0.2em;
    margin: 20px;
}
.top-use-cases__item:nth-of-type(1) {
    border: 1px solid #707070;
}
.top-use-cases__item:nth-of-type(1) dt {
    color: #000;
}
.top-use-cases__item:nth-of-type(2) {
    border: 1px solid var(--color-blue);
}
.top-use-cases__item:nth-of-type(2) dt {
    color: var(--color-blue);
}
.top-use-cases__item:nth-of-type(3) {
    border: 1px solid var(--color-orange);
}
.top-use-cases__item:nth-of-type(3) dt {
    color: var(--color-orange);
}
.top-use-cases__item dt {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    padding: 0.4em;
    width: 20%;
}
.top-use-cases__item dd {
    border-left: 1px solid var(--color-black);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    padding: 0.6em 0.4em 0.6em 1.2em;
    width: 80%;
}
@media screen and (max-width: 992px) {
    .top-use-cases__list {
        margin: 3em auto 0;
        max-width: 640px;
    }
    .top-use-cases__list .box {
        flex-direction: column;
    }
    .top-use-cases__list .box::before {
        width: 100%;
        height: 65%;
    }
    .top-use-cases__list .box::after {
        content: '';
        background: linear-gradient(180deg, rgba(38, 50, 110, 0.8) 0%, rgba(38, 50, 110, 0.65) 14%, rgba(38, 50, 110, 0.65) 30%, rgba(38, 50, 110, 1) 58%, rgba(38, 50, 110, 1) 100%);
    }
    .top-use-cases__head {
        padding: 2em 1em 0.8em;
        width: 100%;
    }
    .top-use-cases__body {
        width: 100%;
    }
    .top-use-cases__item dt {
        font-size: 14px;
    }
    .top-use-cases__item dd {
        font-size: 12px;
    }
}
@media screen and (max-width: 767px) {
    .top-use-cases__list {
        margin: 2em auto 0;
        gap: 1em;
    }
    .top-use-cases__head .title .num {
        margin-bottom: 0.8em;
    }
    .top-use-cases__head .title {
        font-size: 18px;
    }
    .top-use-cases__item {
        margin: 10px 0;
    }
    .top-use-cases__item dt {
        font-size: 12px;
        width: 24%;
    }
    .top-use-cases__item dd {
        padding: 0.2em 0.2em 0.2em 1em;
        width: 74%;
    }
}

/* ---------- top-process ---------- */
.top-process {
    background: var(--color-gray-03);
    padding: 40px 0 80px;
}
.top-process__list {
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin: 3em auto 0;
    max-width: 900px;
}
.top-process__list > li {
    background: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 2%;
    padding: 2.4em;
    position: relative;
}
.top-process__list > li:not(:last-child)::before {
    content: '';
    position: absolute;
    bottom: -1.5em;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: var(--color-blue);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.top-process__head {
    display: flex;
    align-items: center;
    gap: 5.8%;
    width: 49%;
}
.top-process__head .num {
    background: var(--color-blue);
    border-radius: 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 500;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.1;
    text-align: center;
    margin: 0;
    width: 90px;
    height: 90px;
}
.top-process__head .num > span {
    display: block;
    font-size: 44%;
}
.top-process__head-item .title {
    color: var(--color-blue);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0.8em;
}
.top-process__head-item .text {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}
.top-process__body {
    background: #e5e7ee;
    border-radius: 5px;
    padding: 1.6em;
    width: 49%;
}
.top-process__body .title {
    border-bottom: 2px solid var(--color-blue);
    color: var(--color-blue);
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 0.4em;
    margin-bottom: 0.8em;
}
.top-process__body .text {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}
.top-process__body .text strong {
    color: var(--color-blue);
    font-weight: 500;
}
@media screen and (max-width: 992px) {
    .top-process__list {
        max-width: 640px;
    }
    .top-process__list > li {
        flex-direction: column;
        gap: 1.4em;
    }
    .top-process__head {
        width: 100%;
    }
    .top-process__head .num {
        width: 100px;
        height: 100px;
    }
    .top-process__head-item {
        width: 74%;
    }
    .top-process__head-item .text {
        font-size: 14px;
        line-height: 1.4;
    }
    .top-process__body {
        width: 100%;
    }
    .top-process__body .title {
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .top-process {
        padding: 40px 0 60px;
    }
    .top-process__list {
        margin: 2em auto 0;
    }
    .top-process__list > li {
        padding: 1.6em 1.2em;
    }
    .top-process__head .num {
        font-size: 24px;
        width: 70px;
        height: 70px;
    }
    .top-process__head-item .title {
        font-size: 16px;
        margin-bottom: 0.6em;
    }
    .top-process__head-item .text {
        font-size: 13px;
    }
    .top-process__body .text {
        font-size: 13px;
    }
    .top-process__body {
        padding: 1.4em 1.2em;
    }
}

/* ---------- top-news ---------- */
.top-news {
    background: var(--color-gray-01);
}
.top-news__list {
    margin: 3em 0;
}
.top-news__list li {
    border-top: 1px solid #707070;
}
.top-news__list li:last-child {
    border-bottom: 1px solid #707070;
}
.top-news__list a {
    display: flex;
    align-items: center;
    gap: 2%;
    font-size: 14px;
    padding: 1.8em 0.4em;
}
.top-news__list .date {
    color: var(--color-blue);
    font-weight: 400;
    width: 5.8em;
}
.top-news__list .cat {
    border-radius: 4px;
    font-size: 90%;
    color: #fff;
    padding: 1px 10px;
    text-align: center;
    white-space: nowrap;
    width: 6.2em;
}
.top-news__list .cat--news {
    background: #303440;
}
.top-news__list .cat--seminar {
    background: #197c79;
    border-radius: 4px;
}
.top-news__list .title {
    color: var(--color-black);
    font-weight: 400;
    width: 80%;
}
@media screen and (max-width: 992px) {
    .top-news__list .title {
        width: 72%;
    }
}
@media screen and (max-width: 767px) {
    .top-news__list a {
        flex-wrap: wrap;
    }
    .top-news__list .cat {
        font-size: 80%;
        padding: 0 8px;
    }
    .top-news__list .title {
        line-height: 1.5;
        padding-top: 0.4em;
        width: 100%;
    }
}

/* ---------- top-faq ---------- */
.top-faq {
    background: #fff;
}
.top-faq__title {
    color: var(--color-blue);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 1em;
}
.top-faq__list {
    margin: 3em 0;
}
.top-faq__list:last-child {
    margin-bottom: 0;
}
.top-faq__item {
    background: #faede9;
    border-radius: 5px;
    display: grid;
    grid-template-rows: auto 0fr;
    transition: grid-template-rows 0.4s ease;
    margin-bottom: 1em;
}
.top-faq__item[open] {
    grid-template-rows: auto 1fr;
}
.top-faq__item summary {
    list-style: none;
}
.top-faq__item summary::-webkit-details-marker {
    display: none;
}
.top-faq__item[open] .top-faq__question::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}
.top-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
    user-select: none;
    padding: 1em 2em;
}
.top-faq__question::after {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-top: -4px;
}
.top-faq__question .question-title {
    display: block;
    color: #000;
    font-size: 18px;
    font-weight: 500;
}
.top-faq__question .question-title .num {
    display: inline-block;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    margin-right: 0.2em;
}
.top-faq__answer {
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.5;
    background: #fff;
    margin: 0 1em 1em;
    padding: 1.2em 1.6em;
}
.top-faq__answer p {
    margin: 0;
}
.top-faq__answer p + p {
    margin-top: 1em;
}
.top-faq__answer strong {
    font-weight: 700;
}
@media screen and (max-width: 992px) {
    .top-faq__question .question-title {
        font-size: 16px;
        width: 94%;
    }
}
@media screen and (max-width: 767px) {
    .top-faq__title {
        font-size: 18px;
    }
    .top-faq__list {
        margin: 2em 0;
    }
    .top-faq__item {
        margin-bottom: 0.6em;
    }
    .top-faq__question {
        padding: 0.8em 1.2em;
    }
    .top-faq__question .question-title {
        font-size: 14px;
        line-height: 1.6;
    }
    .top-faq__question .question-title .num {
        display: block;
    }
    .top-faq__answer {
        font-size: 13px;
        padding: 1em 1.2em;
    }
}

/* ---------- CTA ---------- */
.top-cta {
    background: url(../images/top/top-cta-bg.jpg) no-repeat center/cover;
    position: relative;
    padding: 60px 0 50px;
}
.top-cta__text {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1em;
}
.top-cta__btn-wrap {
    display: flex;
    justify-content: center;
    gap: 2%;
}
.top-cta__btn-wrap li {
    max-width: 300px;
    width: 49%;
}
.top-cta__btn-wrap .cta-btn {
    border-radius: 100px;
    font-size: 20px;
    display: block;
    padding: 16px;
    position: relative;
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 992px) {
    .top-cta__text {
        font-size: 20px;
    }
}
@media screen and (max-width: 767px) {
    .top-cta {
        background: url(../images/top/top-cta-bg-s.jpg) no-repeat center/cover;
        padding: 40px 0;
    }
    .top-cta__text {
        font-size: 16px;
        margin-bottom: 1.6em;
    }
    .top-cta__btn-wrap {
        flex-direction: column;
        align-items: center;
        gap: 1em;
    }
    .top-cta__btn-wrap li {
        max-width: 260px;
        width: 100%;
    }
    .top-cta__btn-wrap .cta-btn {
        font-size: 16px;
        padding: 14px;
    }
}

/* ---------- フッター前のCTA ---------- */
.page-top .cta-contact {
    padding: 20px 20px 100px;
}
