@charset "UTF-8";


/* btn --------------------*/
.btn {
    background: var(--color-gray);
    border: 2px solid var(--color-gold);
    border-radius: 10px;
}
.btn_request {
    background: var(--color-gold);
}
.btn_request::before {
    background: var(--color-white);
}
.btn_request:hover a {
    color: var(--color-gold);
}
.btn_contact {
    background: var(--color-white);
}
.btn_contact::before {
    background: var(--color-gold);
}
.btn_contact a {
    color: var(--color-gold);
}
.btn_contact:hover a {
    color: var(--color-white);
}

@media (max-width: 1023px) {
    .header_nav {
        background: var(--color-navy);
    }
    .header_nav .btn_contact a {
        color: var(--color-gold);
    }
}


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

    CONTENTS

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

.section_title-label {
    color: var(--color-navy);
}

/*
    Main visual
------------------------------*/
.mv {
    background: #E8F3F8 url("../images/bg_mv.png") no-repeat center top /cover;
    position: relative;
    padding: 100px 5% 0;
}
.mv_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(2.5rem, -5.286rem + 12.17vw, 9.313rem);
	gap: 30px;
    text-align: center;
	padding: 40px 0 120px;
}
.mv_image img {
	display: block;
	max-width: 80%;
	margin: 0 auto;
}

.mv_content {
    color: var(--color-navy);
    width: 70%;
    max-width: 640px;
}
.mv_catch-balloon {
    padding-bottom: 13px;
    margin-bottom: 0.2rem;
    line-height: 1.25;
    position: relative;
    text-align: center;
}
.mv_catch-balloon::before,
.mv_catch-balloon::after {
    background-color: var(--color-blue-05);
    height: 2px;
    width: calc(50% - 12px);
    content: "";
    position: absolute;
    top: 100%;
}
.mv_catch-balloon::before {
    left: 0;
}
.mv_catch-balloon::after {
    right: 0;
}


.mv_catch {
    color: var(--color-blue-05);
    font-size: var(--font-size-text-xl);
    font-weight: bold;
}
.mv_catch::before {
    content: '';
    width: 19px;
    height: 19px;
    border-top: solid 2px var(--color-blue-05);
    border-right: solid 2px var(--color-blue-05);
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
}

.mv_desc {
    line-height: 1.4;
    margin-top: 25px;
}
.mv_desc_line {
    background-color: var(--color-white);
    display: block;
    font-size: clamp(1.25rem, 0.536rem + 1.12vw, 1.875rem);
    font-weight: bold;
    padding: 9px 10px 10px;
}
.mv_desc_line:nth-of-type(2) {
    font-size: clamp(1.375rem, 0.518rem + 1.34vw, 2.125rem);
}
.mv_logo {
    margin-top: 43px;
}
.mv_logo img {
	display: block;
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
}

.mv_point-catch {
    color: var(--color-gold);
    font-size: var(--font-size-text-m);
    font-weight: bold;
    margin-block: 16px 11px;
}
.mv_point {
    display: flex;
    justify-content: center;
    gap: 20px;
	margin: 20px 0 0;
}
.mv_point li {
    background-color: var(--color-lightblue-02);
    border-radius: 10px;
	padding: 12px 8px 13px;
    width: 33%;
	border: 2px solid #b59d37;
}
.mv_point_text {
    font-size: var(--font-size-text-s);
    font-weight: bold;
    line-height: 1.5;
}
.mv_point_text .text_em {
    color: var(--color-navy);
    font-size: var(--font-size-text-m);
}
.mv_point_text .text_large {
    font-size: 20px;
}
.mv_releaseNotes {
	margin: 20px 0 0;
	text-align: center;
}

.mv_releaseNotes span {
	display: inline-block;
	background: linear-gradient(to right, var(--color-gradient-orange));
    color: var(--color-white);
    font-size: 1.25rem;
    line-height: 1;
    padding: 3px 15px 5px 18px;
    border-radius: 30px;
	font-weight: 600;
}
@media (max-width: 1279px) {
	.mv_catch {
    	font-size: 1rem;
	}
	.mv_desc_line {
    	font-size: 1.125rem;
	}
	.mv_desc_line:nth-of-type(2) {
    	font-size: 1.25rem;
	}
}
@media (max-width: 1023px) {
    .mv_inner {
        flex-direction: column;
        padding: 0 0 100px;
    }
    .mv_image {
        max-width: 70%;
        margin-inline: auto;
    }
	.mv_content {
    	width: 80%;
	}

}

@media (max-width: 767px) {
    .mv_content {
        width: auto;
    }
	.mv_logo {
    	margin: 30px auto 0;
    	max-width: 80%;
	}
    .mv_point {
        flex-wrap: wrap;
        gap: 10px;
    }
    .mv_point li {
        width: calc((100% - 10px) / 2);
        padding-inline: 8px;
    }
	.mv_catch {
    	font-size: .875em;
	}
	.mv_desc_line,
	.mv_desc_line:nth-of-type(2) {
    	font-size: .875rem;
    	line-height: 1.3;
	    padding: 7px 10px;
	}
	.mv_desc br {
		display: none;
	}
	
	.mv_desc span:nth-of-type(1) {
		margin: 0 0 6px;
	}
	.mv_image {
		display: none;
	}
	.mv_point_text {
    	line-height: 1.3;
	}
	.mv_inner {
    	gap: 30px;
	}
	.mv_point {
    	margin: 0;
	}
	.btn-wrap.hp_top {
    	display: block;
	}
	.btn.btn_request{
		margin: 0 0 10px;
	}
	.mv_releaseNotes span {
    	font-size: 1.125rem;
	}
}

/*
    PROBLEM:あなたの営業組織、こんな状態になっていませんか？
------------------------------*/
.sec-problem {
    padding-top: 167px;
}

.problem-list {
    display: grid;
    grid-template-columns:  1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 50px 35px;
    padding-bottom: 55px;
}
.problem-item {
    text-align: center;
}
.problem-item_icon {
    background-color: var(--color-gray-05);
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    aspect-ratio: 1 / 1;
    margin-inline: auto;
}
.problem-item_text {
    font-size: var(--font-size-text-s);
    line-height: 1.777;
    margin-top: 20px;
}

.problem-solution {
    background-color: var(--color-gray-05);
    border-radius: 20px;
    margin-top: 89px;
    padding: clamp(1.25rem, -1.607rem + 4.46vw, 3.75rem) 5%;
    text-align: center;
    position: relative;
}
.problem-solution::before {
    --_arrow-width: 80px;
    --_arrow-height: 32px;

    background-color: var(--color-blue-05);
    content: "";
    display: inline-block;
    width: var(--_arrow-width);
    height: var(--_arrow-height);
    clip-path: var(--triangle-bottom);
    position: absolute;
    top: calc((var(--_arrow-height) + 55px) * -1);
    left: 50%;
    transform: translateX(-50%);
}
.problem-solution_catch {
    font-size: clamp(1.5rem, 1.071rem + 0.67vw, 1.875rem);
    font-weight: bold;
    margin-block: 12px 35px;
}
.problem-solution_catch .text_em {
    color: var(--color-navy);
}
.problem-solution_catch .text_logo {
    display: inline-block;
    width: clamp(12.5rem, 8.929rem + 5.58vw, 15.625rem);
    aspect-ratio: 558 / 144;
    margin-inline: 8px;
}
.problem-solution_catch .text_logo img {
    vertical-align: text-bottom;
}
.problem-solution_text {
    font-size: var(--font-size-text-m);
    line-height: 1.777;
}

@media (max-width: 1023px) {
    .sec-problem {
        padding-top: 130px;
    }
    .problem-list {
        gap: 40px 20px;
    }
}

@media (max-width: 767px) {
    .problem-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .problem-item {
        width: 45%;
    }
    .problem-item_text {
        text-align: left;
    }
    .problem-solution_catch .text_logo {
        margin: 10px 15px;
    }
    .problem-solution_text {
        text-align: left;
    }
}


/*
    SOLUTION:営業組織のお悩み解決策
------------------------------*/
.sec-solution {
    background-color: #F8F8F8;
}

.solution-item {
    background-color: var(--color-white);
    box-shadow: var(--box-shadow);
    margin-top: 70px;
}
.solution-item:first-of-type {
    margin-top: 0;
}
.solution-item_head {
    display: flex;
    align-items: center;
}
.solution-item_head-label {
    background-color: var(--color-gold);
    color: var(--color-white);
    font-size: var(--font-size-text-m);
    font-weight: bold;
    padding: 32px 20px;
}
.solution-item_head-title {
    color: var(--color-navy);
    font-size: clamp(1.25rem, 0.821rem + 0.67vw, 1.625rem);
    font-weight: bold;
    padding-inline: 54px;
}
.solution-item_main {
    padding: 22px 40px 43px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.solution-item_main-content {
    display: flex;
    flex-direction: column;
    max-width: 740px;
}
.solution-item_main-desc {
    flex-grow: 1;
    font-size: var(--font-size-text-m);
    line-height: 1.777;
    margin-bottom: 30px;
}
.solution-item_main-image {
    max-width: 400px;
}

.solution-item_list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.solution-item_list-item {
    font-size: var(--font-size-text-m);
    font-weight: bold;
    width: 50%;
    max-width: 350px;
    min-height: 100px;
    position: relative;
}
.solution-item_list-title {
    background-color: var(--color-navy);
    color: var(--color-white);
    line-height: 1.777;
    margin-bottom: 10px;
    text-align: center;
}
.solution-item_list-content p {
    line-height: 1.777;
}
.solution-item_list .list_disc {
    font-weight: bold;
}
.solution-item_list-item .licence {
    font-size: var(--font-size-text-s);
    font-weight: normal;
    position: absolute;
    bottom: -1em;
    left: 0;
}

[class^="solution-item_col"] {
    width: 50%;
    max-width: 560px;
}
.solution-item_case {
    background-color: #EFEFEF;
    padding: 42px 40px 56px;
}
.solution-item_flex {
    --_box-gap: clamp(2.5rem, 1.071rem + 2.23vw, 3.75rem);

    display: flex;
    justify-content: center;
    gap: var(--_box-gap);
}
.solution-item_flex + .solution-item_flex {
    margin-top: 20px;
}
.solution-item_section-title {
    color: var(--color-navy);
    font-size: var(--font-size-text-l);
    font-weight: bold;
    margin-bottom: 23px;
}
.solution-item_case-box {
    background-color: var(--color-white);
    font-weight: 500;
    padding: 25px 30px;
}
.solution-item_case-label {
    color: var(--color-white);
    font-size: var(--font-size-text-m);
    font-weight: bold;
    line-height: 1.777;
    margin-block: 20px 15px;
    padding: 2px;
    text-align: center;
    width: 200px;
}
.solution-item_case-label:first-of-type {
    margin-top: 0;
}
.solution-item_case-label.label_blue {
    background-color: var(--color-blue-05);
}
.solution-item_case-label.label_gold {
    background-color: var(--color-gold);
}

.solution-item_case [class^="text_em"] {
    color: var(--color-blue-05);
    font-weight: bold;
}
.solution-item_case .text_em-02 {
    color: var(--color-navy);
}

.solution-item_result {
    background-color: #CECDC9;
    padding: 34px 40px 38px;
}
.solution-item_result-box {
    background-color: var(--color-white);
    padding: 41px 30px 23px;
    position: relative;
    width: 50%;
}
.solution-item_result-box.box_before::after {
    --_arrow-width: 14px;
    --_arrow-height: 36px;

    background-color: var(--color-blue-05);
    content: "";
    display: inline-block;
    width: var(--_arrow-width);
    height: var(--_arrow-height);
    clip-path: var(--triangle-right);
    position: absolute;
    top: 45%;
    left: calc(100% + (var(--_box-gap) / 2) - 4px);
    transform: translateY(-50%);
}
.solution-item_result-label {
    font-size: var(--font-size-text-m);
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 120px;
}
.solution-item_result-title {
    font-size: var(--font-size-text-l);
    font-weight: bold;
    line-height: 1.363;
    margin-bottom: 18px;
    text-align: center;
}
.box_before .solution-item_result-label {
    background-color: #BFBBB1;
}
.box_after .solution-item_result-label {
    background-color: var(--color-gold);
    color: var(--color-white);
}
.box_after .solution-item_result-title {
    color: var(--color-navy);
}

.solution-item:nth-of-type(2) .solution-item_case-label {
    width: 140px;
}

@media screen and (max-width: 1280px) {
    .solution-item_list-item .licence {
        margin-top: 5px;
        position: static;
    }
}

@media screen and (max-width: 1023px) {
    .solution-item_main {
        flex-direction: column;
        align-items: center;
    }
    .solution-item_main-content {
        order: 2;
    }
    .solution-item_main-image {
        order: 1;
        max-width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .solution-item_head {
        flex-direction: column;
        align-items: flex-start;
    }
    .solution-item_head-label {
        padding-block: 20px;
    }
    .solution-item_head-title {
        line-height: 1.6;
        padding: 20px;
        width: 100%;
    }

    .solution-item_main {
        padding: 0 20px 30px;
        gap: 30px;
    }
    .solution-item_main-image {
        max-width: 100%;
    }

    .solution-item_list {
        flex-direction: column;
    }
    .solution-item_list-item {
        width: auto;
    }

    .solution-item_flex {
        flex-direction: column;
    }
    [class^="solution-item_col"] {
        width: auto;
    }
    .solution-item_case,
    .solution-item_result {
        padding: 30px 20px;
    }
    .solution-item_case-box {
        padding: 20px;
    }
    .solution-item_result-box {
        padding: 50px 20px 30px;
        width: auto;
    }
    .solution-item_result-box.box_before::after {
        top: calc(100% + (var(--_box-gap) / 2) - var(--_arrow-width));
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }
}



/*
    SCENE:シーン別活用例
------------------------------*/
.sec-scene {
    background: #F5F5F4 url("../images/lp/bg_scene.png") no-repeat center top / auto;
}

.scene-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px 40px;
}
.scene-item {
    background-color: var(--color-white);
    box-shadow: var(--box-shadow);
    width: calc((100% - 40px) / 2);
    position: relative;
}
.scene-item_main {
    height: 230px;
    padding: 20px 27px 0;
}
.scene-item_title-wrap {
    display: flex;
    align-items: flex-end;
    gap: 24px;
}
.scene-item_title-label {
    color: var(--color-gold);
    font-size: clamp(1rem, 0.714rem + 0.45vw, 1.25rem);
    line-height: 1;
    text-align: center;
}
.scene-item_title-label .num {
    display: block;
    font-size: 46px;
    font-weight: 500;
}
.scene-item_title {
    color: var(--color-navy);
    font-size: var(--font-size-text-l);
    font-weight: bold;
    line-height: 1.363;
}
.scene-item_title > .text_small {
    font-size: var(--font-size-text-s);
}
.scene-item_text {
    font-size: var(--font-size-text-s);
    line-height: 1.75;
    padding-top: 31px;
}

.scene-item_btn-wrap {
    text-align: center;
    padding: 20px 0;
    position: absolute;
    left: 50%;
    top: 160px;
    transform: translateX(-50%);
}
.scene-item_btn {
    color: var(--color-blue-06);
    display: inline-block;
    font-size: 15px;
}
.scene-item_btn::after {
    --_arrow-width: 16px;
    --_arrow-height: 8px;
    background-color: var(--color-blue-06);
    content: "";
    display: inline-block;
    width: var(--_arrow-width);
    height: var(--_arrow-height);
    clip-path: var(--triangle-bottom);
    margin-left: 1em;
}
.scene-item.is-open .scene-item_btn::after {
    transform: rotate(180deg);
}

.scene-item_case {
    background-color: var(--color-gray-05);
    font-size: var(--font-size-text-s);
    padding: 30px 32px;
    line-height: 1.75;
}
.scene-item_case-label {
    background-color: var(--color-blue-05);
    color: var(--color-white);
    font-weight: bold;
    margin-block: 26px 15px;
    text-align: center;
    width: 180px;
}
.scene-item_case-label:first-of-type {
    margin-top: 0;
}

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

@media screen and (max-width: 767px) {
    .scene-list {
        flex-direction: column;
    }
    .scene-item {
        width: auto;
    }
    .scene-item_main {
        height: auto;
        padding-inline: 20px;
    }
    .scene-item_title-wrap {
        gap: 16px;
    }
    .scene-item_title-label .num {
        font-size: 38px;
    }
    .scene-item_btn-wrap {
        position: static;
        transform: none;
    }
    .scene-item_case {
        padding-inline: 20px;
    }
}


/*
    EFFECT:数値で見る導入効果
------------------------------*/
.sec-effect {
    background-color: var(--color-black);
}
.sec-effect .section_title-label,
.sec-effect .section_title {
    color: var(--color-white);
}

.effect-table {
    border-spacing: 5px 4px;
}
.effect-table th,
.effect-table td {
    background-color: var(--color-gray-03);
}
.effect-table td {
    font-weight: bold;
    position: relative;
}
.effect-table thead th {
    width: 25%;
}
.effect-table thead th:nth-of-type(2) {
    background-color: #B4B4B4;
}
.effect-table thead th:nth-of-type(3) {
    background-color: var(--color-blue-05);
}
.effect-table thead th:last-of-type {
    background-color: var(--color-gold);
}

.effect-table td:first-of-type::after {
    --_arrow-width: clamp(2.5rem, 1rem + 2.34vw, 3.813rem);

    background: url("../images/lp/icon_effect_arrow.svg") no-repeat center center / contain;
    content: "";
    display: block;
    width: var(--_arrow-width);
    aspect-ratio: 61 / 21;
    position: absolute;
    top: 50%;
    right: calc(((var(--_arrow-width) / 2) + 4px) * -1);
    transform: translateY(-50%);
    z-index: 1;
}
.effect-table td:last-of-type {
    color: var(--color-gold);
}

.effect-box {
    background-color: var(--color-white);
    border-radius: var(--border-radius-corners);
    display: flex;
    align-items: center;
    gap: clamp(1.875rem, -0.411rem + 3.57vw, 3.875rem);
    margin: 81px auto 0;
    padding: 29px 54px;
    max-width: 1072px;
}
.effect-box_text {
    font-size: var(--font-size-text-m);
    line-height: 1.777;
}

@media screen and (max-width: 767px) {
    .effect-box {
        flex-direction: column;
        padding: 30px 20px;
    }
    .effect-box_icon {
        width: 100px;
    }
}


/*
    DIFFERENCE:他ツールとの決定的な違い
------------------------------*/
.sec-difference {
    background-color: var(--color-gray-02);
}
.difference-table {
    border-spacing: 6px 4px;
}
.difference-table th,
.difference-table td {
    background-color: var(--color-gray-03);
    font-weight: bold;
}
.difference-table thead th {
    width: 33%;
}
.difference-table thead th:nth-of-type(2) {
    background-color: var(--color-gray-04);
}
.difference-table thead th:last-of-type {
    background-color: var(--color-gold);
}
.difference-table td {
    font-size: clamp(1.5rem, 1.071rem + 0.67vw, 1.875rem);
    line-height: 1;
    position: relative;
}
.difference-table td .text_append {
    font-size: var(--font-size-text-m);
    position: absolute;
    top: 50%;
    right: 3em;
    transform: translateY(-50%);
}
.difference-table td:nth-of-type(1) .text_append {
    font-weight: 400;
}
.difference-table td:last-of-type {
    color: var(--color-gold);
}

@media screen and (max-width: 767px) {
    .content-table th,
    .content-table td {
        padding: 10px 15px;
    }
    .difference-table td .text_append {
        right: 1.5em;
    }
}



/*
    CV AREA
------------------------------*/

.cv-catch {
    font-size: var(--font-size-heading-lv3);
    line-height: 1.363;
    text-align: center;
}

.cv-area-01 {
    position: relative;
}
.cv-area-01 .btn-wrap {
    background-color: var(--color-black);
    padding: 30px 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
}
.cv-area-01 .btn a {
    font-weight: 600;
}

.cv-area-02 {
    background-color: #F5F5F4;
    padding: 47px 5% 69px;
    position: relative;
}
.cv-area-02::before {
    background: url("../images/lp/bg_cv.png") no-repeat center top / cover;
    content: "";
    width: 100%;
    height: 100%;
    opacity: .75;
    position: absolute;
    top: 0;
    left: 0;
}
.cv-area-02 .cv-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 58px;
    max-width: 1260px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}
.cv-area-02 .cv-img {
    width: 35%;
}
.cv-area-02 .cv-content {
    margin-top: 24px;
}
.cv-area-02 .cv-logo-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.cv-area-02 .cv-logo {
    margin-left: 20px;
}
.cv-area-02 .cv-catch {
    color: var(--color-white);
}
.cv-area-02 .btn-wrap {
    margin-top: 50px;
}

.cv-area-03 {
    padding: 74px 5% 85px;
}
.cv-area-03 .cv-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    max-width: 1260px;
    margin-inline: auto;
}
.cv-area-03 .cv-content {
    text-align: center;
}
.cv-area-03 .cv-catch {
    color: var(--color-navy);
    font-weight: bold;
    margin-block: 41px 49px;
}

.cv-area-03 .link-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(3.75rem, -1.25rem + 7.81vw, 8.125rem);
    max-width: 1120px;
    margin: 87px auto 0;
}

@media screen and (max-width: 1023px) {
    .cv-area-02 .cv-inner {
        justify-content: space-between;
    }
    .cv-area-02 .cv-content {
        width: 65%;
    }
    .cv-area-02 .cv-logo-wrap {
        flex-direction: column;
    }
    .cv-area-02 .btn-wrap {
        margin-top: 20px;
    }
    .cv-area-03 .cv-content {
        width: 60%;
    }
}

@media screen and (max-width: 767px) {
    .cv-img {
        width: 80%;
    }
    .cv-area-01 .btn-wrap {
        padding: 20px 30px;
    }

    .cv-area-02 .cv-inner,
    .cv-area-03 .cv-inner,
    .cv-area-03 .link-list {
        flex-direction: column;
    }

    .cv-area-02 .cv-logo {
        width: 70%;
        margin: 0 0 20px;
    }
    .cv-area-02 .cv-img {
        width: 80%;
    }
    .cv-area-02 .cv-content {
        width: auto;
    }

    .cv-area-03 .cv-content {
        order: 2;
        width: 100%;
    }
    .cv-area-03 .cv-img {
        order: 1;
    }
    .cv-area-03 .cv-catch {
        margin-block: 30px;
    }
    .cv-area-03 .link-list {
        gap: 20px;
        margin: 10px auto;
        width: 80%;
    }
	.cv-area-02 .cv-inner {
		gap: 10px;
	}
	.cv-area-03 {
    	padding: 50px 5%;
	}
}

@media screen and (max-width: 320px) {
    .cv-area-01 .btn-wrap {
        padding-inline: 20px;
        width: 100%;
    }
}

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

    Footer

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

.footer {
    background-color: var(--color-black);
}

.pagetop:hover {
    background-color: var(--color-blue-05);
}
