@charset "utf-8";
/*************************************************************
CSS information
style info : COASPページ限定のスタイル
**************************************************************/

#a_1, #a_2, #a_3, #a_4 {
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

.display_pc_table {
    display: table-row;
}

.display_sp_table {
    display: none;
}

@media screen and (max-width: 1024px) {
    .display_pc_table {
        display: none;
    }
    .display_sp_table {
        display: table-row;
    }
    .padding_sp {
        padding: 10px;
    }
}

.text_center {
    text-align: center;
}
/*
====================
↓メインビジュアル
====================
*/
.main_visual {
    background: url(https://gsx-co-jp.s3.ap-northeast-1.amazonaws.com/services/securitylearning/eccouncil/coasp/coasp_mv.webp) no-repeat center top;
    background-size: cover;
}
.main_visual::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 400px;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}
.main_visual .main_visual_inner .mv_left .mv_title img {
    max-height: 150px;
    width: auto;
}
/* SP｜1024px以下  */
@media screen and (max-width: 1024px) {
    /*
    ====================
    ↓メインビジュアル
    ====================
    */
    .main_visual {
        width: 100%;
        height: 220px;
        margin-top: 0px;
    }
    .main_visual::after {
        height: 220px;
        background: rgba(0, 0, 0, 0.4);
    }
    .main_visual .main_visual_inner {
        padding-top: 0;
    }
}
/*
====================
↓求められる背景
====================
*/
.sec01_problem {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
    gap: 100px;
}
.sec01_problem .item {
    width: calc(50% - 15px);
}
.sec01_problem .item .item_title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    border-radius: 10px;
    padding: 15px 10px;
    margin-bottom: 20px;
}
.sec01_problem .item:first-child {
    position: relative;
}
.sec01_problem .item:first-child::after {
    content: "";
    position: absolute;
    top: 60%;
    right: -65px;
    content: "";
    display: block;
    width: 40px;
    height: 30px;
    background-color: var(--g-primary);
}
.sec01_problem .item:first-child .item_title {
    text-align: center;
    background-color: #7b7a7a;
    color: #fff;
}
.sec01_problem .item:last-child {
    position: relative;
}
.sec01_problem .item:last-child::before {
    position: absolute;
    top: calc(60% - 12px);
    left: -35px;
    content: "";
    display: block;
    background-color: var(--g-primary);
    height: calc(tan(60deg) * 60px / 2);
    width: 20px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.sec01_problem .item:last-child .item_title {
    background-color: #406c98;
    color: #fff;
}
.sec01_problem .item .item_title p {
    font-size: 18px;
    font-weight: bold;
}
.sec01_problem .item ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}
.sec01_problem .item ul li {
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    padding: 10px;
}

/* SP｜1024px以下  */
@media screen and (max-width: 1024px) {
    .sec01_problem {
        gap: 50px;
    }
    .sec01_problem .item:first-child::after {
        top: 60%;
        right: -25px;
        width: 10px;
        height: 15px;
    }
    .sec01_problem .item:last-child::before {
        top: calc(60% - 6px);
        left: -25px;
        height: calc(tan(60deg) * 30px / 2);
        width: 15px;
    }
    .sec01_problem .item .item_title {
        padding: 10px;
        min-height: 70px;
    }
    .sec01_problem .item .item_title p {
        font-size: 16px;
    }
}
/*
====================
↓COASPとは
====================
*/
.coasp_step {
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
}
.coasp_step .step_item {
    display: flex;
    justify-content: stretch;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}
.coasp_step .step_item .step_title {
    color: var(--g-primary);
    width: calc(10% - 10px);
    font-size: 18px;
    font-weight: bold;
}
.coasp_step .step_item .step_description {
    width: calc(90% - 10px);
    padding: 10px 20px;
    border: 1px solid var(--g-primary);
    border-radius: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
}
.coasp_step .step_item .step_description .sd_title {
    font-weight: bold;
    width: 200px;
}
.coasp_step .step_item .step_description .sd_text {
    margin-left: 20px;
    padding-left: 40px;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
}
.coasp_step .step_item.step_1 .step_description .sd_text {
    background-image: url(https://gsx-co-jp.s3.ap-northeast-1.amazonaws.com/services/securitylearning/eccouncil/coasp/step_1_ico.png);
}
.coasp_step .step_item.step_2 .step_description .sd_text {
    background-image: url(https://gsx-co-jp.s3.ap-northeast-1.amazonaws.com/services/securitylearning/eccouncil/coasp/step_2_ico.png);
}
.coasp_step .step_item.step_3 .step_description .sd_text {
    background-image: url(https://gsx-co-jp.s3.ap-northeast-1.amazonaws.com/services/securitylearning/eccouncil/coasp/step_3_ico.png);
}
/* SP｜1024px以下  */
@media screen and (max-width: 1024px) {
    .coasp_step {
        gap: 20px;
    }
    .coasp_step .step_item {
        flex-direction: column;
        gap: 5px;
    }
    .coasp_step .step_item .step_title {
        width: 100%;
    }
    .coasp_step .step_item .step_description {
        width: 100%;
        flex-direction: column;
    }
    .coasp_step .step_item .step_description .sd_title {
        margin-bottom: 10px;
        width: auto;
    }
    .coasp_step .step_item .step_description .sd_text {
        margin-left: 0;
        padding-left: 50px;
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 30px;
    }
}
/*
====================
↓Before/After
====================
*/
.before_after_text {
    gap: 10px;
}
.before_after_text .item img {
    width: 120px;
    height: 120px;
}
.g_flexbox.before_after_text .item .check li {
    font-size: 18px;
}
.g_flexbox.before_after_text .item .check li:not(:last-child) {
    margin-bottom: 10px;
}
.g_flexbox.before_after_text .item:first-child {
    text-align: right;
}
.g_flexbox.before_after_text .item:last-child {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.before_after {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 100px;
}
.before_after .before,
.before_after .after {
    position: relative;
    padding: 80px 10px 10px 10px;
    width: calc(50% - 50px);
}
.before_after .before .item_title,
.before_after .after .item_title {
    width: 60%;
    padding: 10px 20px 10px 40px;
    position: absolute;
    left: -20px;
    top: 15px;
    color: #fff;
}

.before_after .before .item_title:before,
.before_after .after .item_title:before {
    content: "";
    display: block;
    position: absolute;
    top: 12px;
    left: 10px;
    width: 20px;
    height: 20px;
    background-image: url(https://gsx-co-jp.s3.ap-northeast-1.amazonaws.com/services/securitylearning/eccouncil/coasp/before_ico.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px;
}

.before_after .before {
    background-color: var(--g-bg-gray);
}
.before_after .before:after {
    position: absolute;
    top: 60%;
    right: -65px;
    content: "";
    display: block;
    width: 50px;
    height: 30px;
    background-color: var(--g-primary);
}
.before_after .after:before {
    position: absolute;
    top: calc(60% - 10px);
    left: -35px;
    content: "";
    display: block;
    background-color: var(--g-primary);
    height: calc(tan(60deg) * 60px / 2);
    width: 30px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.before_after .before .item_title {
    background-color: #7b7a7a;
}

.before_after .after {
    background-color: var(--g-lightblue);
}
.before_after .after .item_title {
    background-color: #406c98;
}
.before_after .after .item_title:before {
    background-image: url(https://gsx-co-jp.s3.ap-northeast-1.amazonaws.com/services/securitylearning/eccouncil/coasp/after_ico.png);
}
/* SP｜1024px以下  */
@media screen and (max-width: 1024px) {
    .g_flexbox.before_after_text {
        flex-direction: row;
    }
    .g_flexbox.before_after_text .item {}
    .g_flexbox.before_after_text .item:first-child {
        width: calc(30% - 5px);
    }
    .g_flexbox.before_after_text .item:last-child {
        width: calc(70% - 5px);
    }
    .g_flexbox.before_after_text .item .check li {
        font-size: 16px;
    }
    .before_after {
        margin-top: 40px;
        flex-direction: column;
        gap: 80px;
    }
    .before_after .before,
    .before_after .after {
        width: 100%;
        padding-top: 70px;
    }
    .before_after .before .item_title,
    .before_after .after .item_title {
        width: 100%;
        left: -10px;
    }
    .before_after .before:after {
        top: auto;
        bottom: -45px;
        right: calc(50% - 25px);
        width: 50px;
        height: 30px;
    }
    .before_after .after:before {
        position: absolute;
        top: -40px;
        left: calc(50% - 40px);
        height: calc(tan(60deg) * 30px / 2);
        width: 80px;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
    }
}
/*
====================
↓講座の特徴
====================
*/
.sv_feature_list {
    gap: 20px;
    margin-top: 80px;
}
.sv_feature_list .li_item {
    width: calc(33% - 10px);
}
.sv_feature_list .li_item .caption_area .cap_title {
    height: 90px;
    margin-bottom: 10px;
}
/* SP｜1024px以下  */
@media screen and (max-width: 1024px) {
    .sv_feature_list {
    }
    .sv_feature_list .li_item {
        width: 100%;
    }
    .sv_feature_list .li_item .caption_area .cap_title {
        height: auto;
    }
}
/*
====================
↓こんな企業様でCOASPの価値が発揮されます
====================
*/
.value_list .s_table_bl tr:not(:last-child) th{
    border-bottom: 1px solid #fff;
    padding: 10px 20px;
    width: 30%;
}
.value_list .s_table_bl tr td {
    color: #222;
    padding: 10px 20px;
}

/*
====================
↓受講対象者とモジュール
====================
*/
.target_person .item:first-child {
    text-align: center;
}
.target_person .item:first-child img {
    width: 60%;
    height: auto;
}
ul.check.mb_10 li:not(:last-child) {
    margin-bottom: 15px;
}
/* SP｜1024px以下  */
@media screen and (max-width: 1024px) {
    .target_person .item:first-child {
        margin-bottom: 20px;
    }
}
/*
====================
↓受講概要
====================
*/
table.table_1 {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 2.2;
	border-spacing: 0;
}
table.table_1 th {
	width: 120px;
	padding: 16px 0px;
	text-align: left;
	border-bottom: 1px solid #becad9;
	color: #012E83;
	font-weight: bold;
	vertical-align: top;
}
table.table_1 td {
	padding: 16px 0px;
	border-bottom: 1px solid #becad9;
	vertical-align: middle;
}
table.table_1 tr:last-child th,
table.table_1 tr:last-child td {
	border-bottom: none;
}

/* SP｜1024px以下  */
@media screen and (max-width: 1024px) {

    table.table_1 {
    box-sizing: border-box;
    width: 100%;
    display: block;
    padding: 0 8px;
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 2.2;
    border-spacing: 0;
  }
  table.table_1 th {
    width: 30vw;
    padding: 20px 0;
    font-size: 90%;
    line-height: 130%;
  }
  table.table_1 td {
    width: auto;
    font-size: 90%;
    line-height: 130%;
    padding-right: 4px;
  }
}

.schedule .table_1 .no-border {
    border-bottom: none;
    padding-bottom: 0px;
}

iframe.schedule_list {
    width: 100%;
    border: none;
}
