/* --------------------  root setting  -------------------- */

:root {
    /* blue color */
    --blue: #3AB8F2;
    --darkBlue: #00344C;
    --lightBlue: #D6F2FF;
    /* blue color */
    --orange: #F29426;
    --darkOrange: #562E00;
    --lightOrange: #FFF2E3;
}

/* -------------------  font setting  -------------------- */

h1 {
    font-size: 72rem;
}

h2 {
    font-size: 56rem;
}

h3 {
    font-size: 40rem;
}

h4 {
    font-size: 32rem;
}

h5 {
    font-size: 24rem;
}

h6 {
    font-size: 20rem;
    font-weight: 500;
}

p {
    font-size: 16rem;
}

a {
    text-decoration: none;
}

/* -------------------  common style  ---------------------- */

/* text color setting */
.blue_txt {
    color: var(--blue);
}

.darkBlue_txt {
    color: var(--darkBlue);
}

.orange_txt {
    color: var(--orange);
}

.darkOrange_txt {
    color: var(--darkOrange);
}

.white_txt {
    color: white;
}

.red_txt {
    color: red;
}

.en_ttl {
    font-size: 120rem;
}

/* background color setting */
.blue_pan {
    background-color: var(--blue);
}

.lightBlue_pan {
    background-color: var(--lightBlue);
}

.orange_pan {
    background-color: var(--orange);
}

.lightOrange_pan {
    background-color: var(--lightOrange);
}

.white_pan_60 {
    background-color: white;
    opacity: 60%;
}

.white_pan {
    background-color: white;
}

/* small & big orange button */
.orange_btn_sm {
    background-color: var(--orange);
    padding: 12rem 18rem 12rem 18rem;
    display: flex;
    align-items: center;
    gap: 12rem;
    justify-content: space-between;
    border: none;
    border-radius: 32rem;
}

.blue_btn_sm {
    background-color: var(--blue);
}

.blue_btn_sm:hover {
    cursor: pointer;
    background-color: #0695d7 !important;
}

.orange_btn_sm>img {
    width: 23rem;
    height: 21rem;
}

.orange_btn_bg {
    background-color: var(--orange);
    padding: 18rem 32rem 18rem 32rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: space-between;
    border: none;
    border-radius: 60rem;
}

.orange_btn_bg img {
    width: 40rem;
    height: 40rem;
}

.orange_btn_sm h6,
.orange_btn_bg h3 {
    color: white;
}

.orange_btn_sm:hover,
.orange_btn_bg:hover {
    cursor: pointer;
    background-color: #D08022;
}

/* text with white border */
.border_txt {
    /* Set text color */
    text-shadow:
        1px 0 0 white,
        /* Right */
        0 1px 0 white,
        /* Bottom */
        -1px 0 0 white,
        /* Left */
        0 -1px 0 white;
    /* Top */
}

.orange_border {
    /* Set text color */
    text-shadow:
        2px 0 0 var(--orange),
        /* Right */
        0 2px 0 var(--orange),
        /* Bottom */
        -2px 0 0 var(--orange),
        /* Left */
        0 -2px 0 var(--orange);
    /* Top */
}

/* ttl_part */

.ttl_part {
    display: flex;
    justify-content: start;
    align-items: end;

}

.ttl_part h1 {
    padding-left: 13%;
}

/* -------------------  basic style  ----------------------- */

html,
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: calc(100vw/1920);
    font-family: "Noto Sans JP", sans-serif;
}

.container {
    padding: 0 182rem 0 182rem;
}

.container01 {
    padding: 0 124rem 0 124rem;
}


/*------------------------------------ START-------------------------- */
.navbar {
    padding-top: 24rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24rem;
}

.logo {
    width: 550rem;
    height: auto;
}

.sp_btn {
    display: none;
}

/*fv  */
.fv {
    background-image: url(./img/fv_bg.png);
    height: 756rem;
    width: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 40rem;
}

.fv>img {
    margin-left: 217rem;
    width: 580rem;
    height: 64rem;
}

.sp_txt {
    display: none;
}

.fv_white_pan {
    margin-top: 32rem;
    background-color: rgb(255, 255, 255, 0.6);
    padding: 24rem 56rem 24rem 0;
    width: 1100rem;
    border-top-right-radius: 120rem;
    border-bottom-right-radius: 120rem;
}

.fv h2>span {
    font-size: 72rem;
}

.fv_badges {
    margin-top: 115rem;
    display: flex;
    align-items: center;
}

.fv_badges img {
    width: 303rem;
    height: 262rem;
}

/* ----------------------  main part */
/* video section */

.video_t {
    display: flex;
    justify-content: start;
    align-items: start;
    padding-top: 40rem;
}

.video_t_main {
    width: 258rem;
    height: auto;
}

.video_t_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32rem;
}

.video_t_left h6 {
    margin-top: 32rem;
    text-align: center;
}

.video_t_left h6 span {
    font-size: 32rem;
    font-weight: bolder;
}

/* video_m style */
.video_m {
    display: flex;
    justify-content: center;
    gap: 100rem;
    align-items: center;
    padding-top: 172rem;
    padding-bottom: 92rem;
}

.video_m_cell {
    box-shadow: 0 4px 8px var(--orange), 0 4px 8px var(--orange);
    padding: 36rem 32rem 32rem 32rem;
    width: 400rem;
    height: 216rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20rem;
}

.video_m_cell h6 {
    text-align: center;
}

.video_m_cell_left {
    border-bottom-left-radius: 96rem;
}

.video_m_cell_right {
    border-bottom-right-radius: 96rem;
}

.video_m_cell_top {
    margin-left: -40rem;
    display: flex;
    justify-content: start;
    gap: 12rem;
    align-items: center;
}

.video_m_cell_top img {
    width: 63rem;
    height: 63rem;
}

.video_m_cell_bttm {
    margin-top: 12rem;
}

/* video_b part */
.video_b {
    background-color: #EFEFEF;
    padding-top: 48rem;
}

.video_b h3 {
    text-align: center;
}

.video_b span {
    font-size: 56rem;
    font-weight: bold;
}

.video_b iframe {
    margin-top: 72rem;
    width: 1200rem;
    height: 645rem;
}



.iframe_pan {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iframe_pan a {
    margin-top: 48rem;
    margin-bottom: 56rem;
}

/* problem and solution section */
.prosol_pro {
    padding-top: 96rem;
    position: relative;
    z-index: -10;
}

.video .orange_btn_bg {
    margin-top: 40rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.prosol_pro .ttl_part {
    margin-top: 120rem;
}

.prosol_pro .ttl_part img {
    width: 336rem;
    height: auto;
}

.prosol_pro>h3 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 28rem;
}

.prosol_pro_main_part {
    margin-top: 144rem;
    display: flex;
    justify-content: start;
    gap: 112rem;
    align-items: start;
}

.prosol_pro_main_left_cell {
    display: flex;
    justify-content: start;
    gap: 27rem;
    margin-bottom: 40rem;
    width: 696rem;
    align-items: center;
    border-bottom: 1px solid #DADADA;
}

.prosol_pro_main_left_cell img {
    width: 64rem;
    height: 70rem;
}

.prosol_pro_main_right {
    width: 752rem;
    height: 1458rem;
}

.prosol_pro_main_right img {
    width: 100%;
    height: 100%;
}

.prosol_sol {
    margin-top: -890rem;
}

.prosol_sol>h4 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 24rem;
}

.prosol_sol>h4 span {
    font-size: 56rem;
    font-weight: bold;
}

.prosol_sol_main_img {
    display: flex;
    justify-content: center;
    gap: 63rem;
    align-items: center;
    margin-top: 144rem;
}

.prosol_sol_main_illa {
    width: 335rem;
    height: 100%;
}

.cloudTechAcademy_main {
    width: 801rem;
    height: 100%;
}

.prosol_sol>.blue_pan {
    margin-top: 56rem;
    padding: 32rem 24rem 32rem 56rem;
    width: 44%;
    border-top-right-radius: 240rem;
    border-bottom-right-radius: 240rem;
}

.prosol_sol_last {
    display: flex;
    align-items: center;
    justify-content: center;
}

.prosol_sol_last>img:last-child {
    margin-left: -96rem;
    z-index: -10;
    width: 1039rem;
    height: 100%;
    cursor: pointer;
}

.prosol_sol_last>a>img {
    width: 1039rem;
    height: auto;
}

.prosol_sol_last>img:first-child {
    width: 603rem;
    height: 100%;
}

.prosol_grah_grp {
    display: flex;
    justify-content: center;
    gap: 48rem;
}

.prosol_grah_grp:first-child {
    margin-bottom: 72rem;
}

.prosol_grah_cell {
    width: 40%;
    height: 260rem;
    border: 2px solid var(--orange);
    border-radius: 24rem;
    position: relative;
    padding: 56rem 24rem 24rem 24rem;
}

.prosol_grah_cell>img {
    position: absolute;
    top: -56rem;
    left: 24rem;
    width: 96rem;
    height: auto;
}

.prosol_grah_cell p {
    margin-top: 8rem;
}

/* schdul section */
/* .schdul_study {
    position: relative;
} */
.schdul_study .ttl_part {
    margin-top: 32rem;
}

.schdul_study>h6 {
    margin-top: 32rem;
    text-align: center;
}

.study_step1_ttl {
    margin-top: 21rem;
    display: flex;
    justify-content: space-between;
}

.study_step1_ttl img {
    width: 1461rem;
    height: auto;
}

.schdul_study_step {
    background-image: url(./img/schdul_study_bg.png);
    margin-top: 48rem;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.schdul_study_step_cell_main {
    display: flex;
}

.schdul_study_step_cell_main>.blue_pan {
    display: flex;
    align-items: center;
    width: 150rem;
    height: 162rem;
    justify-content: center;
}

.schdul_study_step_cell_main>.blue_pan p {
    writing-mode: vertical-rl;
    /* vertical right-to-left */
    text-orientation: mixed;
}

.schdul_study_step_cell_main>.lightBlue_pan {
    width: 792rem;
    height: 162rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20rem;
    padding-right: 32rem;
}

.study_grp {
    display: flex;
    justify-content: flex-end;
}

.support_grp {
    display: flex;
    justify-content: flex-start;
}

.addition {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.addition>img {
    margin-top: 12rem;
    margin-bottom: 12rem;
    z-index: 3;
}

/* schdul support part */
.schdul_support {
    margin-top: 56rem;
}

.schdul_support_step {
    background-image: url(./img/schdul_support_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    margin-top: 56rem;
}

.schdul_support>h6 {
    margin-top: 32rem;
    color: red;
}

.schdul_support>img {
    width: 1604rem;
    height: auto;
}

/* schdul_last */
.schdul_last {
    display: flex;
    justify-content: flex-end;
    align-items: start;
    gap: 24rem;
    margin-top: 56rem;
}

.schdul_last span {
    color: red;
    font-size: 20rem;
}

/* reson1 section */

/* reson1_f part */
.reson1_f {
    position: relative;
}

.reson1_f>h4 {
    margin-top: 40rem;
    text-align: center;
}

.reson1_f_header {
    display: flex;
    gap: 24rem;
    align-items: center;
    justify-content: start;
}

.reson1_f_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 120rem 0 120rem;
}

.reson1_f_main img {
    width: 824rem;
    height: auto;
}

.reson1_f_last {
    margin-top: 72rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20rem;
}

.reson1_f_last img {
    width: 108rem;
    height: auto;
}


.reson1_f_bg {
    position: absolute;
    height: auto;
    width: 100%;
    margin-top: -900rem;
    z-index: -1;
}

.reson1_m_t {
    margin-top: 56rem;
    display: flex;
    justify-content: flex-start;
    gap: 144rem;
}

.reason1_m_t_left {
    margin-top: 56rem;
}

.reason1_m_t_left_top_cell {
    display: flex;
    gap: 12rem;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #DADADA;
    width: 80%;
    padding-bottom: 8rem;
    margin-bottom: 24rem;
}

.reason1_m_t_left_top_cell img {
    width: 41rem;
    height: auto;
}

.reson1_m_t>img {
    width: 561rem;
    height: auto;
}

.reason1_m_t_left_bttm {
    display: flex;
    gap: 12rem;
    justify-content: flex-start;
    align-items: start;
    margin-top: 56rem;
}

.reason1_m_t_left_bttm h5 {
    padding-bottom: 6rem;
    border-bottom: 2px solid var(--orange);
    width: 70%;
    margin-bottom: 48rem;
}

.reason1_m_t_left_bttm>div {
    margin-top: 16rem;
}

.reson1_m_b {
    display: flex;
    justify-content: space-between;
    margin-top: 20rem;
}

.reson1_m_b_left {
    width: 736rem;
}

.reson1_m_b_left_ttl {
    display: flex;
    gap: 12rem;
    align-items: center;
}

.reson1_m_b_left_ttl h5 {
    padding-bottom: 6rem;
    border-bottom: 2px solid var(--orange);
}

.reson1_m_b_left h6 {
    margin-top: 24rem;
    margin-left: 88rem;
}

.reson1_m_b>img {
    margin-top: -56rem;
    width: 520rem;
    height: auto;
}

.reson1_b_grp1 {
    width: 1101rem;
}

.reson1_b_grp1 .lightOrange_pan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-right-radius: 240rem;
    border-bottom-right-radius: 240rem;
    padding: 40rem 80rem 40rem 94rem;
}

.reson1_b_grp1 h6 {
    padding: 56rem 0rem 56rem 180rem;
}

.reson1_b_grp2 {
    display: flex;
    justify-content: space-between;
}

.reson1_b_grp2 .lightOrange_pan {
    width: 1101rem;
}

.reson1_b_grp2_main {
    width: 1101rem;
}

.reson1_b_grp2 .lightOrange_pan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 240rem;
    border-bottom-left-radius: 240rem;
    padding: 40rem 94rem 40rem 80rem;
}

.reson1_b_grp2 h6 {
    padding: 56rem 180rem 56rem 0rem;

}

.reson2 {
    position: relative;
}

.reson2_f {
    background-image: url(../assets/img/reson2_f_bg.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.reson2_f_ttl {
    padding-top: 215rem;
    margin-left: 15%;
    display: flex;
    gap: 120rem;
    align-items: center;
}

.reson2_f_ttl h3 {
    text-align: center;
}

.reson2_f_ttl img {
    width: 104rem;
    height: auto;
}

.reson2_f_con_ttl>div {
    display: flex;
    gap: 28rem;
    align-items: center;
    margin-top: 38rem;
}

.reson2_f_con_ttl>div img {
    width: 64rem;
    height: 64rem;
}

.reson2_f_con_ttl1 {
    width: 1489rem;
    text-align: end;
    padding: 34rem 21rem 34rem 0;
    background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0.6) 40%);
    border-radius: 0 240rem 240rem 0;
}

.reson2_f_con_ttl2 {
    width: 1757rem;
}

.reson2_f_con_main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.reson2_f_con_main>img {
    margin-top: -40rem;
    padding-left: 180rem;
}

.reson_f_con_txt {
    margin-top: 56rem;
    margin-left: -596rem;
}

.reson2_con {
    display: flex;
    align-items: center;
    gap: 24rem;
    margin-bottom: 24rem;
    justify-content: flex-end;
}

.reson2_con>img {
    width: 64rem;
    height: 64rem;
}

.reson2_con>.blue_pan {
    padding: 24rem 0 24rem 72rem;
}

.reson2_con1>.blue_pan {
    width: 668rem;
}

.reson2_con2>.blue_pan {
    width: 840rem;
}

.reson2_con3>.blue_pan {
    width: 981rem;
}

.reson2_con4>.blue_pan {
    width: 1127rem;
}

.reson2_con5>.blue_pan {
    width: 1258rem;
}

.reson2_con6>.blue_pan {
    width: 1409rem;
}

.reson2_con>.blue_pan {
    height: 96rem;
    border-top-left-radius: 120rem;
    border-bottom-left-radius: 120rem;

}

/* reson2_m part */
.reson2_m>h3,
.reson2_m>h1 {
    text-align: center;
}

.reson2_m>h3 {


    margin-top: -115rem;
    z-index: 10;
}

.reson2_m>h1 {
    margin-top: 100rem;
}

/* reson2_b part */
.reson2_b {
    background-color: var(--lightBlue);
}

.reson2_b_ttl {
    padding-top: 56rem;
    display: flex;
    justify-content: space-between;
}

.reson2_b_ttl .blue_pan,
.reson2_b_ttl .white_pan_60 {
    width: 800rem;
    height: 145rem;
    display: flex;
    align-items: center;
}

.reson2_b_ttl .blue_pan {
    border-top-right-radius: 120rem;
    border-bottom-right-radius: 120rem;
    padding-left: 180rem;
}

.reson2_b_ttl .white_pan_60 {
    border-top-left-radius: 120rem;
    border-bottom-left-radius: 120rem;
    padding-right: 180rem;
    margin-top: 68rem;
    padding-left: 72rem;
}

.reson2_b_ttl_left img {
    width: 582rem;
    height: auto;
}

.reson2_b_main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.reson2_b_bttm_img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.reson2_b_main>img {
    width: 608rem;
    height: auto;
}

.reson2_b_main>img:first-child {
    margin-top: -409rem;
    margin-bottom: 40rem;
}

.reson2_grp {
    display: flex;
    justify-content: center;
    gap: 89rem;
}

.reson2_cell {
    width: 639rem;
    height: 275rem;
    border-radius: 40rem;
    padding: 32rem 24rem 32rem 24rem;
    display: flex;
    align-items: center;
    z-index: 10;
}

.reson2_cell>h6 {
    line-height: 2;
}

.reson2_grp:last-child {
    margin-top: 36rem;
}

.reson2_b_last {
    margin-top: 12rem;
    margin-bottom: 20rem;
}

.reson2_b_main>img {
    z-index: 10;
}

.reson2>img {
    width: 706rem;
    height: auto;
}

/* reson3 section */
.reson3 .reson_ttl {
    padding-left: 180rem;
    display: flex;
    gap: 41rem;
    align-items: center;
    margin-top: -20rem;
}

.reson3 {
    background-image: unset;
    padding-bottom: 120rem;
}

.reson3 .reson_ttl>img {
    width: 104rem;
    height: auto;
    z-index: 20;
}

.reson3_main_img {
    display: flex;
    justify-content: center;
    margin-bottom: 46rem;
}

/* reson3 */
.reason3_main_img2 {
    width: 836rem;
    height: 557rem;
    margin-left: -264rem;
}

.reson3_main_img1 {
    margin-top: 27rem;
    width: 932rem;
    height: auto;
}

.reason3_grp {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.reson3 .lightOrange_pan {
    border-top-right-radius: 120rem;
    border-bottom-right-radius: 120rem;
    padding: 24rem 56rem 24rem 56rem;
    margin-top: 32rem;
    margin-bottom: 56rem;
    width: 956rem;
}

.reson3 .lightOrange_pan h5,
.reson3 .lightBlue_pan h5 {
    padding-bottom: 24rem;
}

.reson3 .lightBlue_pan {
    margin-top: 388rem;
    border-top-left-radius: 120rem;
    border-bottom-left-radius: 120rem;
    padding: 24rem 56rem 24rem 74rem;
    width: 956rem;
}

.reson3_grp1 {
    margin-top: -188rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* price section */
.price_ttl h1 {
    color: var(--lightBlue);
}

/* interview section */
.interview_ttl h1 {
    color: var(--lightBlue);
}

/* interview_f part */
.interview_f {
    display: flex;
    justify-content: flex-start;
    gap: 162rem;
    margin-top: 32rem;
}

.interview_f>img {
    width: 923rem;
    height: auto;
}

.interview_f_right {
    padding-right: 180rem;
}

.inter_main h4 {
    margin-top: 32rem;
}

.inter_main h6 {
    margin-top: 24rem;
}

.inter_main img {
    margin-top: 40rem;
}

.interview_f_right_border {
    padding-bottom: 16rem;
    border-bottom: 4px dotted var(--lightBlue);
}

.interview_before_img {
    width: 175rem;
    height: auto;
}

.interview_after_img {
    width: 175rem;
    height: auto;
}

/* interview_b part */
.interview_b_top {
    display: flex;
    justify-content: flex-end;
    gap: 162rem;
    margin-left: 180rem;
    margin-top: 56rem;
}

.interview_b_top>img {
    width: 956rem;
    margin-left: -40rem;
    height: auto;
}

.inter_b_bttm_f {
    margin-top: 40rem;
    display: flex;
    justify-content: flex-start;
    gap: 32rem;
    align-items: center;
}

.inter_b_bttm_f img {
    width: 292rem;
    height: auto;
}

.inter_b_bttm_b {
    display: flex;
    justify-content: center;
    gap: 96rem;
}

.inter_b_bttm_b_cell {
    width: 611rem;
    height: 183rem;
    padding: 24rem;
    border: 3px solid var(--lightBlue);
    border-radius: 20rem;
    display: flex;
    align-items: center;
}

.inter_b_bttm_b_cell h6 {
    text-align: center;
}

.inter_b_bttm_b_cell span {
    font-size: 28rem;
    font-weight: bold;
}

/* step section */
.step {
    margin-top: 94rem;
    position: relative;
}

.step_step>h3 {
    text-align: center;
    padding-top: 48rem;
}

.step_step_main {
    display: flex;
    justify-content: center;
    gap: 80rem;
    margin-top: 40rem;
}

.step_step_main_cell {
    width: 360rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step_step_main_cell h5 {
    margin-bottom: 24rem;
}

.step_step_main_cell p {
    margin-top: 40rem;
}

.step_step_main_cell1 {
    width: 520rem;
    padding-right: 80rem;
    padding-left: 80rem;
    border-right: 5px solid white;
    border-left: 5px solid white;

}

.step_step_main_cell1 h5 {
    color: #717071;
}

.step_step_main_cell a {
    margin-top: 40rem;
}

.step_step_main_cell2 h5 {
    color: #5CC7ED;
}

.step_step_main {
    padding-bottom: 72rem;
}

/* step_meet part */
.step_meet {
    position: relative;
}

.step_meet>a {
    position: absolute;
    margin-top: -144rem;
    left: 50%;
    transform: translateX(-50%);
}

.step_meet_main {
    display: flex;
    justify-content: center;
    gap: 120rem;
    align-items: center;
    margin-top: 240rem;
    /* background-image: url(./img/step_meet_main_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; */
    /* padding-bottom: 101rem;
    padding-top: 290rem; */
}

.step_meet_main h6 {
    margin-top: 40rem;
}

.step_meet_main .orange_btn_sm {
    margin-top: 40rem;
}

.step_meet_main .orange_btn_sm h6 {
    margin-top: 0;
}

.step_meet_main>img {
    width: 675rem;
    height: auto;
}

/* faq_part */
.faq_ttl>h1 {
    color: var(--orange);
}

.Q h5,
.A h5 {
    font-weight: 500;
}

.faq_main {
    padding-top: 40rem;
    padding-bottom: 40rem;
    margin-top: 56rem;
}

.A {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.accordion-panel {
    padding: 16rem;
}

.accordion-panel h5 {
    margin-left: 127rem;
    margin-top: -70rem;
    margin-bottom: 24rem;
}

/* TEST */
.accordion {
    list-style: none;
}

/* Thumb */
.accordion-thumb {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 56rem;
    background-color: white;
    border-radius: 24rem;
    padding: 16rem;
    margin-bottom: 24rem;
}

/* Panel */
.accordion-panel {
    margin-top: 20rem;
    display: none;
}

.accordion-item img {
    width: 72rem;
    height: auto;
}

.main_last {
    margin-top: 114rem;
    margin-bottom: 72rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subscribe {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 4;
}

.subscribe>img {
    width: 1024rem;
    height: auto;
}

.subscribe>h5 {
    color: white;
    margin-top: -240rem;
    margin-bottom: 32rem;
}

.subscribe_btn {
    background-color: white;
    color: #EE3147;
    font-size: 20rem;
    border: none;
    padding: 21rem 98rem 21rem 98rem;
    border-radius: 10rem;
}

.subscribe_btn:hover {
    cursor: pointer;
    color: white;
    background-color: rgb(135, 135, 135);
}



/* TEST */


/* footer part */
.footer_main {
    background-color: #1E2833;
    z-index: 2;
}

.footer_main>img {
    margin-top: 56rem;
}

.footer_main_grp>h6,
.footer_right a {
    color: white;
    font-size: 20rem;
    font-weight: 500;
}

.footer_right>h6 {
    color: #EE3147;
}

.footer_main_grp {
    padding-top: 40rem;
    display: flex;
    justify-content: space-between;
    gap: 577rem;
    padding-bottom: 32rem;
    border-bottom: 2px solid white;
}

.footer_right {
    margin-top: -20rem;
    width: 100%;
}

.footer_last {
    padding-top: 28rem;
    padding-bottom: 28rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12rem;
}

.footer_last h6 {
    color: white;
}

.footer_right a {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.footer_right a:hover {
    cursor: pointer;
    border-bottom: 1px solid #a8a8a8;
    color: #a8a8a8;
    transition: 100ms linear;
}

/* ttl_part size setting */
.prosol_sol .ttl_part img {
    width: 335rem;
    height: auto;
}

.schdul_study .ttl_part img {
    width: 450rem;
    height: auto;
}

.reson1_f .ttl_part img {
    width: 324rem;
    height: auto;
}

.reson1_f_header img {
    width: 104rem;
    height: auto;
}

.reson1_f_last img {
    width: 116rem;
    height: auto;
}

.reason1_m_t_left_bttm img {
    width: 80rem;
    height: auto;
}

.reson1_m_b_left_ttl img {
    width: 80rem;
    height: auto;
}

.reason1_b img {
    width: 96rem;
    height: auto;
}

.reson1_b_grp2_main img {
    width: 60rem;
    height: 60rem;
}

.reson2_f_con_main>img {
    width: 800rem;
    height: auto;
}

.price_ttl img {
    width: 336rem;
    height: auto;
}

.interview_ttl img {
    width: 434rem;
    height: auto;
}

.step_card {
    width: 215rem;
    height: auto;
}

.step_illu_f {
    width: 238rem;
    height: auto;
}

.step_illu_s {
    width: 149rem;
    height: auto;
}

.faq_ttl img {
    width: 455rem;
    height: auto;
}

.footer_main img {
    width: 348rem;
    height: auto;
}

.schdul_study_step_arrow {
    width: 53rem;
    height: auto;
}

.schdul_last>img {
    width: 240rem;
    height: auto;
}

.step_step_main>a {
    display: none;
}

.sp_study_step1_ttl {
    display: none;
}

.sp_reson3_main_img1 {
    display: none;
}

.sp-imterview_main_img {
    display: none;
}

.sp_subscribe {
    display: none;
}

/* -------------------------------------- Table -------------------------------------------------- */

.for-table {
    overflow-x: auto;
    margin-top: 90rem;
    margin-bottom: 90rem;
}

.for-table table {
    border-collapse: collapse;
    width: 100%;
    min-width: 768px;
}

.for-table table td img {
    width: 30rem;
}

.for-table .for-table .for-table .logo-img {
    width: 223rem;
    height: auto;
}

.for-table table th,
.for-table td,
.for-table span {
    text-align: left;
    padding: 8rem;
    font-size: 16rem;
    text-align: center;
    color: #562E00;
}

.for-table th,
.for-table td {
    padding: 15rem 60rem 15rem 60rem
}

.for-table tbody tr:nth-child(even) {
    background-color: #FFF2E3;
}

.for-table tr td:nth-child(1) {
    width: 24%;
}

.for-table thead tr:nth-child(1) th:nth-child(2) {
    border-left: #FF9933 10rem solid;
    border-right: #FF9933 10rem solid;
    border-top: #FF9933 10rem solid;
}

.for-table thead tr:nth-child(1) th:nth-child(3),
.for-table th:nth-child(4) {
    background-color: #A1A1A1;
    color: #FFFFFF;
    border: 1px #fff solid;
}

.for-table thead tr:nth-child(2) th:nth-child(1) {
    border-left: #FF9933 10rem solid;
    border-right: #FF9933 10rem solid;
}

.for-table tr td:nth-child(2) {
    width: 32%;
    border-left: #FF9933 10rem solid;
    border-right: #FF9933 10rem solid;
}

.for-table tbody tr:last-child td:nth-child(2) {
    border-bottom: #FF9933 10rem solid;
}

.for-table tr td:nth-child(3) {
    width: 22%;
}

.for-table tr td:nth-child(4) {
    width: 22%;
}

/* START sp-table style */
.sp-table {
    overflow-y: hidden;
}

.sp-table table {
    overflow-x: scroll;
    border-collapse: collapse;
    width: auto;
    min-width: 2500px;
}

.sp-table th,
.sp-table td {
    padding: 6rem 15rem 6rem 15rem;
}

.highlight-tr td {
    border-top: #FF9933 10rem solid;
    border-bottom: #FF9933 10rem solid;
}

.a-tr td {
    border-top: 2rem solid var(--lightOrange);
    border-bottom: 2rem solid var(--lightOrange);
}

.b-tr td {
    border-top: 2rem solid var(--lightOrange);
    border-bottom: 2rem solid var(--lightOrange);
}

.sp-table th {
    padding-bottom: 33rem;
}

.highlight-tr td:first-child {
    border-left: #FF9933 10rem solid;
    border-top: #FF9933 10rem solid;
    border-bottom: #FF9933 10rem solid;
}

.highlight-tr td:last-child {
    border-right: #FF9933 10rem solid;
    border-top: #FF9933 10rem solid;
    border-bottom: #FF9933 10rem solid;
}

.highlight-tr td {
    height: 100rem;
}

.sp-table img {
    margin-left: 91rem;
}

.sp-table p {
    text-align: center;
}

.sp-table span {
    font-size: 16rem;
    margin-left: 65rem;
}

.sp-table th {
    font-size: 24rem;
}

.sp-table h5 {
    text-align: center;
}

.sp-table .logo-img {
    margin-left: 0 !important;
}

.highlight-tr td {
    height: 110rem;
}

.a-tr td,
.b-tr td {
    height: 110rem;
}

.sp-table tr td:nth-child(3) img {
    margin-left: 111rem;
}

.sp-table tr td:nth-child(3) span {
    margin-left: 94rem;
}

.sp-table tr td:nth-child(4) img {
    margin-left: 123rem;
}

.sp-table tr td:nth-child(4) span {
    margin-left: 98rem;
}

.sp-table tr td:nth-child(6) span {
    margin-left: 98rem;
}

.sp-table tr td:nth-child(7) img {
    margin-left: 71rem;
}

.sp-table tr td:nth-child(8) img {
    margin-left: 142rem;
}

.sp-table tr td:nth-child(8) span {
    margin-left: 121rem;
}

.sp-table tr td:nth-child(1) {
    width: 9%;
}

.sp-table tr td:nth-child(2) {
    width: 12%;
}

.sp-table tr td:nth-child(9) img {
    margin-left: 82rem;
}

.sp-table td {
    position: relative;
}

.sp-table td img {
    position: absolute;
    top: 12rem;
}

.highlight-tr td:nth-child(3) p {
    margin-top: 57rem;
}

.highlight-tr td:nth-child(4) p {
    margin-top: 40rem;
}

.highlight-tr td:nth-child(5) p {
    margin-top: 63rem;
}

.highlight-tr td:nth-child(6) p {
    margin-top: 44rem;
}

.highlight-tr td:nth-child(7) p {
    margin-top: 65rem;
}

.highlight-tr td:nth-child(8) p {
    margin-top: 63rem;
}

.highlight-tr td:nth-child(9) p {
    margin-top: 57rem;
}

.a-tr td p {
    margin-top: 31rem;
}

.a-tr td:nth-child(8) p {
    margin-top: 48rem;
}

.a-tr td:nth-child(9) p {
    margin-top: 48rem;
}

.b-tr td p {
    margin-top: 31rem;
}

.b-tr td:nth-child(7) p {
    margin-top: 48rem;
}

table p {
    font-size: 20rem;
    font-weight: normal;
}

.for-table th img {
    scale: 80%;
}

.PS {
    color: red !important;
    font-size: 24rem;
    text-align: center;
    margin-bottom: 40rem;
    display: none;
}

/* ----------------------------- */
.sp-tooltip {
    position: relative;
}

.sp-tooltip span {
    font-size: 20rem;
}

.sp-tooltip .sp-tooltiptext {
    visibility: hidden;
    width: 563rem;
    background-color: #121212;
    color: #fff;
    text-align: center;
    border-radius: 6rem;
    padding: 5rem 0;
    position: absolute;
    z-index: 1;
    top: 78%;
    left: -41%;
    margin-left: -77rem;
    padding: 16rem;
    opacity: 84%;
}

.sp-tooltip .sp-tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 69%;
    margin-left: -5rem;
    border-width: 12rem;
    border-style: solid;
    border-color: transparent transparent #121212 transparent;
}


.sp-tooltip:hover .sp-tooltiptext {
    visibility: visible;
}

/* -------------------------------- */
/* START scrollbar customize */

::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--lightOrange);
    border-radius: 12px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 12px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #D08022;
}

/* END scrollbar customize */



.sp-table tr td:nth-child(3) {
    width: 12%;
    background-color: var(--lightOrange);
}

.sp-table tr td:nth-child(4) {
    width: 13%;
}

.sp-table h5,
.sp-table span,
.sp-table p,
.sp-table th {
    color: var(--darkOrange);
}

.sp-table tr td:nth-child(5) {
    width: 10%;
    background-color: var(--lightOrange);
}

.sp-table tr td:nth-child(6) {
    width: 10%;
}

.sp-table tr td:nth-child(7) {
    width: 9%;
    background-color: var(--lightOrange);
}

.sp-table tr td:nth-child(8) {
    width: 15%;
}

.sp-table tr td:nth-child(9) {
    width: 11%;
    background-color: var(--lightOrange);
}

.a-tr td:first-child {
    background-color: #A1A1A1;
}

.b-tr td:first-child {
    background-color: #A1A1A1;
}

.a-tr h5 {
    color: white;
}

.b-tr h5 {
    color: white;
}

@media (max-width:425px) {
    .sp-table .logo-img {
        scale: 80%;
    }
}

/* END sp-table style */


/*  START overflow-x hidden part for AOS animation */
.reson2_f_con_ttl1,
.reson2_b_ttl_left .blue_pan,
.white_pan_60 {
    overflow-x: hidden;
}

/*  END  overflow-x hidden part for AOS animation */

.sp-table {
    margin-top: 32rem;
    margin-bottom: 40rem;
    display: none;
}

.sp-table h6 {
    font-size: 20rem;
    font-weight: bold;
    color: var(--darkOrange);
    text-align: center;

}

.inter_b_bttm_b_cell h6 {
    font-weight: bold;
}

/* responsive part */
@media (max-width:768px) {

    html,
    * {
        font-size: calc(100vw/768);
    }

    .container {
        padding-left: 56rem;
        padding-right: 56rem;
    }

    .container01 {
        padding-left: 56rem;
        padding-right: 56rem;
    }

    .logo {
        width: 272rem;
    }

    /* -------------------  font setting  -------------------- */

    h1 {
        font-size: 56rem;
    }

    h2 {
        font-size: 40rem;
    }

    h3 {
        font-size: 32rem;
    }

    h4 {
        font-size: 28rem;
    }

    h5 {
        font-size: 20rem;
    }

    h6 {
        font-size: 18rem;
        font-weight: 500;
    }

    p {
        font-size: 16rem;
    }

    a {
        text-decoration: none;
    }

    .fv {
        background-image: url(./img/tablet_fv_bg\ \(6\).png);
        height: 588rem;
        width: auto;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        padding-top: 0rem;
    }

    .fv>img {
        margin-left: -11rem;
        width: 517rem;
        height: auto;
    }

    .fv_white_pan {
        margin-top: 32rem;
        background-color: unset;
        padding: 24rem 56rem 24rem 0;
        width: 518rem;
        border-top-right-radius: 120rem;
        border-bottom-right-radius: 120rem;
    }

    .fv_badges img {
        width: 222rem;
        height: auto;
    }

    .fv_badges {
        margin-top: -29rem;
        display: flex;
        align-items: center;
    }

    .navbar {
        padding-top: 24rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: -17rem;
    }

    .fv h2>span {
        font-size: 56rem;
    }

    .video_t {
        display: flex;
        justify-content: start;
        align-items: start;
        padding-top: 0rem;
        padding-bottom: 30rem;
    }

    .video_t_main {
        display: none;
    }

    .video_m {
        display: flex;
        justify-content: center;
        gap: 49rem;
        align-items: center;
        padding-top: 57rem;
        padding-bottom: 92rem;
        flex-direction: column;
    }

    .video_m_cell_left {
        border-bottom-left-radius: 20rem;
    }

    .video_m_cell_right {
        border-bottom-right-radius: 20rem;
    }

    .video_b iframe {
        margin-top: 72rem;
        width: 600rem;
        height: 322rem;
    }

    .en_ttl {
        font-size: 84rem;
    }

    .ttl_part {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ttl_part img {
        scale: 80%;
    }

    .ttl_part .en_ttl {
        margin-top: -72rem;
        opacity: 40%;
    }

    .prosol_pro_main_part {
        margin-top: 144rem;
        display: flex;
        justify-content: start;
        gap: 56rem;
        align-items: start;
        flex-direction: column;
    }

    .prosol_pro .ttl_part {
        margin-top: 77rem;
    }

    .prosol_pro>h3 {
        position: absolute;
        left: 45%;
        transform: translateX(-40%);
        margin-top: 28rem;
    }

    .prosol_pro_main_left_cell {
        display: flex;
        justify-content: start;
        gap: 27rem;
        margin-bottom: 40rem;
        width: 652rem;
        align-items: center;
        border-bottom: 1px solid #DADADA;
    }

    .prosol_pro_main_right {
        width: 646rem;
        height: 1283rem;
    }

    .prosol_sol {
        margin-top: -710rem;
    }

    .prosol_sol .ttl_part h1 {
        color: var(--lightBlue);
        z-index: -10;
        background-color: white;
        opacity: 100%;
        padding-right: 50rem;
        border-radius: 32rem;
        opacity: 93%;
    }

    .prosol_sol>h4 {
        position: static;
        left: 0%;
        transform: translateX(-0%);
        margin-top: 24rem;
        padding-left: 56rem;
        padding-right: 113rem;
        text-align: center;
    }

    .prosol_sol>h4 span {
        font-size: 40rem;
        font-weight: bold;
    }

    .prosol_sol_main_illa {
        width: 335rem;
        height: 100%;
        scale: 80%;
    }

    .cloudTechAcademy_main {
        width: 656rem;
        height: 100%;
    }

    .prosol_sol_main_img {
        display: flex;
        justify-content: center;
        gap: 63rem;
        align-items: center;
        margin-top: -1rem;
        flex-direction: column;
    }

    .prosol_sol>.blue_pan {
        margin-top: 56rem;
        padding: 32rem 24rem 32rem 56rem;
        width: 88%;
        border-top-right-radius: 240rem;
        border-bottom-right-radius: 240rem;
    }

    .prosol_sol_last>img:first-child {
        width: 603rem;
        height: 100%;
        scale: 80%;
    }

    .prosol_sol_last>a>img {
        width: 1039rem;
        height: auto;
        scale: 60%;
        margin-top: -133rem;
    }

    .prosol_sol_last {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .prosol_grah_cell {
        width: 100%;
        height: 260rem;
        border: 2px solid var(--orange);
        border-radius: 24rem;
        position: relative;
        padding: 56rem 24rem 24rem 24rem;
        margin-top: 20rem;
    }

    .prosol_grah_grp {
        display: flex;
        justify-content: center;
        gap: 48rem;
        flex-direction: column;
    }

    .prosol_grah_grp:first-child {
        margin-bottom: 72rem;
        margin-top: -80rem;
    }

    .study_step1_ttl img {
        width: 768rem;
        height: auto;
        /* scale: 40%; */
    }

    .schdul_study_step_cell_main>.lightBlue_pan {
        width: 497rem;
        height: 162rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 20rem;
        padding-right: 32rem;
    }

    .schdul_study_step_cell_main {
        display: flex;
        scale: 90%;
    }

    .schdul_support>img {
        width: 768rem;
        height: auto;
    }

    .schdul_support_step {
        background-image: unset;
    }

    .reson1_f_bg {
        display: none;
    }

    .schdul_last {
        display: flex;
        justify-content: flex-end;
        align-items: start;
        gap: 24rem;
        margin-top: 56rem;
        flex-direction: column;
        margin-bottom: 56rem;
    }

    .reson1_f_main img {
        width: 824rem;
        height: auto;
        scale: 80%;
    }

    .reson1_f_last img {
        width: 116rem;
        height: auto;
        scale: 80%;
    }

    .reson1_f_main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 120rem 0 120rem;
        flex-direction: column-reverse;
    }

    .reson1_m_t {
        margin-top: 56rem;
        display: flex;
        justify-content: flex-start;
        gap: 6rem;
        flex-direction: column;
        align-items: center;
    }

    .reson1_m_b {
        display: flex;
        justify-content: space-between;
        margin-top: 97rem;
        flex-direction: column-reverse;
        align-items: center;
    }

    .reason1_m_t_left_bttm h5 {
        padding-bottom: 6rem;
        border-bottom: 2px solid var(--orange);
        width: 76%;
        margin-bottom: 48rem;
    }

    .reason1_m_t_left_bttm img {
        scale: 80%;
    }

    .reson1_m_b_left h6 {
        margin-top: 24rem;
        /* margin-left: 88rem; */
        padding-left: 56rem;
        padding-right: 56rem;
    }

    .reson1_m_b_left_ttl {
        display: flex;
        gap: 12rem;
        align-items: center;
        padding-left: 56rem;
        margin-top: 24rem;
    }

    .reson1_m_b_left_ttl img {
        width: 80rem;
        height: auto;
        scale: 80%;
    }

    .reson1_b_grp1 {
        width: 100%;
    }

    .reason1_b {
        margin-top: 40rem;
    }

    .reson1_b_grp1 .lightOrange_pan {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top-right-radius: 240rem;
        border-bottom-right-radius: 240rem;
        padding: 40rem 80rem 40rem 94rem;
        margin-right: 56rem;
    }

    .reson1_b_grp1 h6 {
        padding: 56rem 56rem 56rem 56rem;
    }

    .reson1_b_grp2_main {
        width: 100%;
    }

    .reson1_b_grp2 .lightOrange_pan {
        width: 100%;
        margin-left: 56rem;
        gap: 24rem;
    }

    .reson1_b_grp2 h6 {
        padding: 56rem 56rem 56rem 56rem;
    }

    .reson2_f_ttl {
        padding-top: 215rem;
        margin-left: 1%;
        display: flex;
        gap: 36rem;
        align-items: center;
        padding-left: 56rem;
        padding-right: 56rem;
    }

    .reson2_f_con_ttl1 {
        width: 607rem;
    }

    .reson2_f_con_ttl2 {
        width: 607rem;
    }

    .reson2_f_con_main {
        flex-direction: column;
        margin-top: 72rem;
    }

    .reson2_f_con_ttl1 h4 {
        text-align: center;
    }

    .reson2_f_con_ttl2 h4 {
        text-align: center;
        padding-left: 24rem;
    }

    .reson2_f_con_main>img {
        scale: 80%;
    }

    .reson_f_con_txt img {
        display: none;
    }

    .reson_f_con_txt {
        margin-top: 56rem;
        margin-left: 0rem;
    }

    .reson2_con>.blue_pan {
        width: 100%;
        margin-left: 40rem;
    }

    .reson2_con>.blue_pan {
        background: var(--blue);
    }

    .reson2_b_ttl .blue_pan {
        width: 720rem;
        height: 145rem;
        display: flex;
        align-items: center;
        margin-top: 40rem;
    }

    .reson2_b_ttl_left img {
        width: 582rem;
        height: auto;
        display: none;
    }

    .reson2_b_ttl {
        padding-top: 56rem;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .reson2_b_main>img:first-child {
        margin-top: 62rem;
        margin-bottom: 40rem;
    }

    .reson2_b_ttl .white_pan_60 {
        border-top-left-radius: 120rem;
        border-bottom-left-radius: 120rem;
        padding-right: 180rem;
        margin-top: 68rem;
        padding-left: 72rem;
        margin-left: 56rem;
    }

    .reson2_grp {
        display: flex;
        justify-content: center;
        gap: 38rem;
        flex-direction: column;
        align-items: center;
    }

    .reson2_cell>h6 {
        line-height: 2;
        text-align: center;
    }

    .reson2_cell {
        width: 639rem;
        height: 181rem;
        padding: 32rem 40rem 32rem 40rem;
        display: flex;
        align-items: center;
        z-index: 10;
    }

    .reson2_b_last {
        margin-top: 59rem;
        margin-bottom: 20rem;
    }

    .reson3 .reson_ttl {
        padding-left: 61rem;
        display: flex;
        gap: 41rem;
        align-items: center;
        margin-top: -20rem;
    }

    .reson_ttl h3 {
        padding-right: 56rem;
    }

    .reson3_main_img {
        display: flex;
        justify-content: center;
        margin-bottom: 46rem;
        flex-direction: column-reverse;
        align-items: center;
    }

    .reason3_main_img2 {
        width: 836rem;
        height: 557rem;
        margin-left: 0;
        scale: 80%;
    }

    .reson3_main_img1 {
        margin-top: -331rem;
        width: 932rem;
        height: auto;
        scale: 80%;
    }

    .reson3_grp1 {
        margin-top: -59rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .reson3 .lightOrange_pan {
        border-radius: 40rem;
        padding: 24rem 56rem 24rem 56rem;
        margin-top: 32rem;
        margin-bottom: 56rem;
        width: 80%;
    }

    .reson3 .lightBlue_pan {
        margin-top: -27rem;
        border-radius: 40rem;
        padding: 24rem 56rem 24rem 74rem;
        width: 80%;
    }

    .reson3_grp .lightOrange_pan {
        margin-left: 78rem;
    }

    .ttl_part .en_ttl {
        z-index: -10;
    }

    .interview_f>img {
        width: 923rem;
        height: auto;
        scale: 80%;
    }

    .interview_f {
        display: flex;
        justify-content: flex-start;
        gap: 0;
        margin-top: 32rem;
        flex-direction: column;
        align-items: flex-end;
    }

    .interview_f_right {
        padding-right: 56rem;
        padding-left: 56rem;
    }

    .interview_b_top>img {
        width: 934rem;
        right: 0;
        height: auto;
        scale: 73%;
        margin-right: 0;
    }

    .interview_f_left {
        padding-left: 56rem;
        padding-right: 56rem;
    }

    .interview_b_top {
        display: flex;
        gap: 0;
        margin-left: 0;
        margin-top: 56rem;
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .inter_b_bttm_f img {
        width: 292rem;
        height: auto;
        scale: 80%;
    }

    .inter_b_bttm_b {
        display: flex;
        justify-content: center;
        gap: 40rem;
        flex-direction: column;
        align-items: center;
    }

    .inter_b_bttm_b_cell {
        width: 571rem;
        height: 183rem;
        padding: 24rem;
        border: 3px solid var(--lightBlue);
        border-radius: 20rem;
        display: flex;
        align-items: center;
    }

    .step_step_main {
        display: flex;
        justify-content: center;
        gap: 40rem;
        margin-top: 40rem;
        flex-direction: column;
        align-items: center;
    }

    .step_step_main_cell1 {
        border-right: none;
        border-left: none;
        border-top: 5px solid white;
        border-bottom: 5px solid white;
        padding-top: 40rem;
        padding-bottom: 40rem;
    }

    .step_step_main_cell .orange_btn_sm {
        display: none;
    }

    .step_step_main>a {
        display: block;
    }

    .step_meet .orange_btn_bg {
        width: 115%;
    }

    .step_meet_main {
        display: flex;
        justify-content: center;
        gap: 15rem;
        margin-top: 193rem;
        flex-direction: column;
    }

    .step_meet_main>img {
        scale: 80%;
        margin-top: -40rem;
    }

    .orange_btn_bg {
        background-color: var(--orange);
        padding: 18rem 32rem 18rem 32rem;
        display: flex;
        align-items: center;
        gap: 4rem;
        justify-content: space-between;
        border: none;
        border-radius: 60rem;
        margin-top: -30rem;
    }

    .subscribe {
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 4;
        margin-top: -40rem;
    }

    .step_meet_main>img {
        scale: 80%;
    }

    .faq {
        padding-top: 56rem;
    }

    .accordion-item img {
        width: 48rem;
        height: auto;
    }

    .subscribe>h5 {
        color: white;
        margin-top: -225rem;
        margin-bottom: 32rem;
        width: 292rem;
        text-align: center;
    }

    .subscribe>img {
        width: 760rem;
        height: 327rem;
    }

    .footer_main_grp {
        padding-top: 40rem;
        display: flex;
        justify-content: space-between;
        gap: 89rem;
        padding-bottom: 32rem;
        border-bottom: 2px solid white;
        flex-direction: column;
    }

    .step_meet_main>div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .reson2_f_con_main>img {
        margin-top: -40rem;
        padding-right: 56rem;
        padding-left: 0;
    }

    .prosol_sol_last a {
        width: 756rem;
        height: auto;
    }

    .prosol_sol_last .link_img {
        width: 756rem !important;
        height: auto;
    }

    .reson1_b_grp2 .lightOrange_pan {
        width: 92.7%;
    }

    .reson2_b_ttl .white_pan_60 {
        width: 711rem;
    }

    .reson3 {
        background-image: unset;
    }

    .for-table {
        display: none;
    }

    .sp-table {
        display: block;
    }

}
@media (max-width:768px) {
    .reson2_m>.white_txt {
     margin-top: 90rem;
    }
    .reson2_m>.blue_txt {
      margin-top: -110rem;
    }
    .PS {
        display: block;
    }
}

/* 425px responsive */
@media (max-width:425px) {
    html,
    * {
        font-size: calc(100vw/425);
    }

    .container {
        padding-left: 22rem;
        padding-right: 22rem;
    }

    .container01 {
        padding-left: 22rem;
        padding-right: 22rem;
    }

    .pc_btn {
        display: none;
    }

    .sp_btn {
        display: block;
    }


    .tooltip {
        position: relative;
        display: inline-block;
    }

    .tooltip span {
        font-size: 20rem;
    }

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 180rem;
        background-color: var(--orange);
        color: #fff;
        text-align: center;
        border-radius: 6rem;
        padding: 5rem 0;
        position: absolute;
        z-index: 1;
        top: 123%;
        left: -41%;
        margin-left: -90rem;
    }

    .tooltip .tooltiptext::after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 80%;
        margin-left: -5rem;
        border-width: 5rem;
        border-style: solid;
        border-color: transparent transparent var(--orange) transparent;
    }


    .tooltip:hover .tooltiptext {
        visibility: visible;
    }

    .fv>img {
        margin-left: -24rem;
        width: 421rem;
        height: auto;
        scale: 90%;
    }

    .fv {
        background-image: url(./img/Frame\ 888.png);
        height: 442rem;
        width: auto;
        padding-top: 12rem;
    }

    .fv_white_pan {
        margin-top: -4rem;
        background-color: unset;
        padding: 24rem 0 24rem 0;
        width: 345rem;
        /* border-top-right-radius: 120rem; */
        /* border-bottom-right-radius: 120rem; */
    }

    .pc_txt {
        display: none;
    }

    .sp_txt {
        display: block;
        font-size: 28rem;
    }

    .sp_txt s.orange_txt {
        font-size: 32rem;
    }

    .fv_white_pan h2 {
        padding-left: 33rem;
    }

    .fv_badges img {
        width: 126rem;
        height: auto;
    }

    .fv_badges {
        margin-top: 10rem;
        display: flex;
        align-items: center;
    }

    .fv_white_pan h2 {
        /* Set text color */
        text-shadow:
            1px 0 0 white,
            /* Right */
            0 1px 0 white,
            /* Bottom */
            -1px 0 0 white,
            /* Left */
            0 -1px 0 white;
        /* Top */
    }

    .video_t_left h3 {
        font-size: 27rem;
        text-align: center;
    }

    .video_m_cell {
        width: 353rem;
    }

    .video_m_cell_top img {
        width: 53rem;
        height: 53rem;
    }

    .video_b h3 {
        font-size: 28rem;
    }

    .video_b span {
        font-size: 42rem;
        font-weight: bold;
    }

    .video_b iframe {
        margin-top: 32rem;
        width: 354rem;
        height: 202rem;
    }

    .orange_btn_sm {
        scale: 80%;
    }

    .video .orange_btn_bg {
        left: 42%;
        scale: 80%;
        width: 365rem;
    }

    .orange_btn_bg img {
        width: 40rem;
        height: 40rem;
        scale: 80%;
    }

    .ttl_part {
        scale: 80% !important;
    }

    .prosol_pro>h3 {
        position: absolute;
        left: 36%;
        transform: translateX(-40%);
        margin-top: 28rem;
        scale: 80%;
        width: 100%;
    }

    .prosol_pro_main_left_cell {
        display: flex;
        justify-content: start;
        gap: 27rem;
        margin-bottom: 40rem;
        width: 373rem;
        align-items: flex-end;
        border-bottom: 1px solid #DADADA;
    }

    .prosol_pro_main_part {
        margin-top: 144rem;
        display: flex;
        justify-content: start;
        gap: 56rem;
        align-items: center;
        flex-direction: column;
    }

    .prosol_pro_main_right {
        width: 373rem;
        height: 893rem;
    }

    .prosol_pro_main_part {
        gap: 0rem;
    }

    .prosol_sol {
        margin-top: -530rem;
    }

    .prosol_sol>h4 {
        position: static;
        left: 0%;
        transform: translateX(-0%);
        margin-top: 24rem;
        padding-left: 22rem;
        padding-right: 22rem;
        text-align: center;
    }

    .cloudTechAcademy_main {
        width: 371rem;
        height: 100%;
    }

    .prosol_sol_main_illa {
        width: 335rem;
        height: 100%;
        scale: 68%;
    }

    .prosol_sol_main_img {
        gap: 13rem;
    }

    .prosol_sol>.blue_pan {
        margin-top: 56rem;
        padding: 32rem 22rem 32rem 22rem;
        width: 100%;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .prosol_sol_last>img:first-child {
        width: 603rem;
        height: 100%;
        scale: 64%;
    }

    .prosol_sol_last>a>img {
        scale: 92%;
        margin-top: -163rem;
    }

    .prosol_grah_cell>img {
        position: absolute;
        top: -44rem;
        left: 24rem;
        width: 81rem;
        height: auto;
    }

    .prosol_grah_cell {
        width: 100%;
        height: auto;
        border: 2px solid var(--orange);
        border-radius: 24rem;
        position: relative;
        padding: 56rem 24rem 24rem 24rem;
        margin-top: 20rem;
    }

    .schdul_study>h6 {
        padding-left: 22rem;
        padding-right: 22rem;
    }

    .sp_study_step1_ttl {
        display: block;
    }

    .pc_study_step1_ttl {
        display: none;
    }

    .study_step1_ttl img {
        width: 391rem;
        height: auto;
    }

    .schdul_study_step_arrow {
        width: 25rem;
        height: auto;
    }

    .schdul_study_step_cell_main>.blue_pan {
        padding-left: 20rem;
        display: flex;
        align-items: center;
        width: 396rem;
        height: 71rem;
        justify-content: flex-start;
        gap: 23rem;
    }

    .schdul_study_step_cell_main>.lightBlue_pan {
        margin-left: -396rem;
        width: 396rem;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 20rem;
        padding-right: 32rem;
        padding-top: 20rem;
        padding-bottom: 20rem;
        margin-top: 71rem;
    }

    .schdul_study_step_cell_main>.blue_pan p {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
    }

    .study_grp {
        display: flex;
        justify-content: center;
    }

    .support_grp {
        display: flex;
        justify-content: center;
    }

    .schdul_support>img {
        width: 391rem;
        height: auto;
    }

    .reson1_f>h4 {
        margin-top: 5rem;
        text-align: center;
    }

    .reson1_f_header {
        display: flex;
        gap: 0rem;
        align-items: center;
        justify-content: start;
    }

    .reson1_f_main img {
        width: 472rem;
        height: auto;
        scale: 80%;
    }

    .reson1_f_main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 22rem 0 22rem;
        flex-direction: column-reverse;
    }

    .reson1_f_main h4 {
        font-size: 24rem;
    }

    .reson1_f_last h5 {
        margin-top: 118rem;
        margin-left: -100rem;
    }

    .reson1_f_last img {
        width: 116rem;
        height: auto;
        scale: 70%;
    }

    .reson1_f_last {
        margin-top: 7rem;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 9rem;
    }

    .reson1_m_t>img {
        width: 381rem;
        height: auto;
    }

    .reason1_m_t_left_top_cell {
        display: flex;
        gap: 12rem;
        align-items: center;
        justify-content: flex-start;
        border-bottom: 1px solid #DADADA;
        width: 100%;
        padding-bottom: 8rem;
        margin-bottom: 24rem;
    }

    .reason1_m_t_left_bttm h5 {
        padding-bottom: 6rem;
        border-bottom: unset;
        width: 96%;
        margin-bottom: 48rem;
    }

    .reason1_m_t_left_bttm h6 {
        margin-left: -90rem;
    }

    .reson1_m_b>img {
        margin-top: -56rem;
        width: 381rem;
        height: auto;
    }

    .reson1_m_b_left_ttl {
        display: flex;
        gap: 12rem;
        align-items: center;
        padding-left: 177rem;
        margin-top: 24rem;
    }

    .reson1_m_b_left_ttl h5 {
        padding-bottom: 6rem;
        border-bottom: unset;
        width: 291rem;
    }

    .reson1_m_b_left h6 {
        margin-top: 24rem;
        /* margin-left: 88rem; */
        padding-left: 106rem;
        padding-right: 177rem;
    }

    .reson1_b_grp1 .lightOrange_pan {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top-right-radius: 0rem;
        border-bottom-right-radius: 0rem;
        padding: 22rem 22rem 22rem 22rem;
        margin-right: 0rem;
        flex-direction: column-reverse;
        gap: 12rem;
    }

    .reson1_b_grp1 h6 {
        padding: 56rem 24rem 56rem 24rem;
    }

    .reson1_b_grp2 .lightOrange_pan {
        width: 100%;
        margin-left: 0rem;
        gap: 24rem;
    }

    .reson1_b_grp2 .lightOrange_pan {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top-left-radius: 0rem;
        border-bottom-left-radius: 0rem;
        padding: 22rem 22rem 22rem 22rem;
        flex-direction: column;
    }

    .reson1_b_grp2 h6 {
        padding: 40rem 22rem 0rem 22rem;
    }

    .reson2_f_ttl {
        padding-top: 87rem;
        margin-left: 1%;
        display: flex;
        gap: 0rem;
        align-items: center;
        padding-left: 22rem;
        padding-right: 22rem;
    }

    .reson2_f_ttl h3 {
        text-align: center;
        font-size: 30rem;
    }

    .reson2_f_con_ttl>div img {
        display: none;
    }

    .reson2_f_con_ttl1 {
        width: 395rem;
        padding-left: 12rem;
    }

    .reson2_f_con_ttl2 h4 {
        text-align: center;
        padding-left: 0;
    }

    .reson2_f_con_main>img {
        margin-top: -40rem;
        padding-right: 0rem;
        padding-left: 0;
    }

    .reson2_f_con_main {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .reson2_con>.blue_pan {
        padding: 24rem 0 24rem 28rem;
    }

    .reson2_con>.blue_pan {
        width: 97%;
        margin-left: -34rem;
    }

    .reson_f_con_txt {
        margin-top: -13rem;
        margin-left: 0rem;
    }

    .reson2_b_ttl .blue_pan {
        border-top-right-radius: 120rem;
        border-bottom-right-radius: 120rem;
        padding-left: 22rem;
        padding-right: 8rem;
    }

    .reson2_b_ttl .blue_pan {
        width: 395rem;
        height: 145rem;
        display: flex;
        align-items: center;
        margin-top: 40rem;
    }

    .reson2_m>h1 {
        margin-top: 100rem;
        scale: 80%;
    }

    .reson2_b_ttl .white_pan_60 {
        width: 402rem;
    }

    .reson2_b_ttl .white_pan_60 {
        border-top-left-radius: 120rem;
        border-bottom-left-radius: 120rem;
        padding-right: 22rem;
        margin-top: 68rem;
        padding-left: 58rem;
        margin-left: 22rem;
    }

    .reson2_b_main>img {
        width: 411rem;
        height: auto;
    }

    .reson2_cell {
        width: 367rem;
        height: auto;
        padding: 32rem 40rem 32rem 40rem;
        display: flex;
        align-items: center;
        z-index: 10;
    }

    .reson_ttl h3 {
        padding-right: 11rem;
    }

    .reson3 .reson_ttl {
        padding-left: 22rem;
        display: flex;
        gap: 0rem;
        align-items: center;
        margin-top: -20rem;
    }

    .reason3_main_img2 {
        width: 447rem;
        height: 334rem;
        margin-left: 0;
        scale: 80%;
    }

    .reson3_main_img1 {
        margin-top: -187rem;
        width: 506rem;
        height: auto;
        scale: 80%;
    }

    .sp_reson3_main_img1 {
        display: block;
    }

    .pc_reson3_main_img1 {
        display: none;
    }

    .reson3 .lightOrange_pan {
        border-radius: 40rem;
        padding: 24rem 16rem 24rem 16rem;
        margin-top: 32rem;
        margin-bottom: 56rem;
        width: 80%;
    }

    .reson3 .lightBlue_pan {
        margin-top: -27rem;
        border-radius: 40rem;
        padding: 24rem 22rem 24rem 22rem;
        width: 80%;
    }

    .reson3_grp .lightOrange_pan {
        margin-left: 42rem;
    }

    .reson3 {
        padding-bottom: 5rem;
    }

    .pc-imterview_main_img {
        display: none;
    }

    .sp-imterview_main_img {
        display: block;
    }

    .sp-imterview_main_img {
        width: 459rem !important;
        height: auto;
        scale: 80%;
    }

    .interview_f {
        display: flex;
        justify-content: flex-start;
        gap: 0;
        margin-top: 32rem;
        flex-direction: column;
        align-items: center;
    }

    .interview_f_right {
        padding-right: 22rem;
        padding-left: 22rem;
    }

    .interview_f_left {
        padding-left: 22rem;
        padding-right: 22rem;
    }

    .interview_b_top {
        display: flex;
        gap: 0;
        margin-left: 0;
        margin-top: 56rem;
        flex-direction: column-reverse;
        align-items: center;
    }

    .interview_b_top>img {
        width: 934rem;
        right: 0;
        height: auto;
        scale: 73%;
        margin-right: 0;
        margin-left: -4rem;
    }

    .inter_b_bttm_f {
        margin-top: 40rem;
        display: flex;
        justify-content: flex-start;
        gap: 0rem;
        align-items: center;
        flex-direction: column;
    }

    .inter_b_bttm_f h4 {
        text-align: center;
    }

    .inter_b_bttm_b_cell {
        width: 373rem;
    }

    .step_step_main_cell1 {
        border-right: none;
        border-left: none;
        border-top: 5px solid white;
        border-bottom: 5px solid white;
        padding-top: 22rem;
        padding-bottom: 22rem;
    }

    .step_step_main {
        display: flex;
        justify-content: center;
        gap: 22rem;
        margin-top: 40rem;
        flex-direction: column;
        align-items: center;
    }

    .step_meet .orange_btn_bg {
        width: 353rem;
    }

    .step_meet .orange_btn_bg h3 {
        font-size: 24rem;
    }

    .step_meet_main {
        display: flex;
        justify-content: center;
        gap: 15rem;
        margin-top: 194rem;
        flex-direction: column;
    }

    .step_meet_main>img {
        scale: 53%;
        margin-top: -120rem;
    }

    .step_meet_main>div {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -80rem;
    }

    .orange_btn_sm {
        scale: 100% !important;
    }

    .accordion-thumb {
        gap: 20rem;
    }

    .accordion-panel h5 {
        margin-left: 68rem;
    }

    .main_last .orange_btn_bg h3 {
        font-size: 28rem;
    }

    .main_last {
        margin-top: 53rem;
        margin-bottom: 20rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .reson2_f_con_main>img {
        scale: 46%;
    }

    .pc_subscribe {
        display: none;
    }

    .sp_subscribe {
        display: block;
    }

    .subscribe>img {
        width: 122%;
        height: auto;
    }

    .footer_last {
        padding-top: 12rem;
        padding-bottom: 12rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12rem;
        flex-direction: column;
    }

    .reson1_m_b_left_ttl {
        display: flex;
        gap: 12rem;
        align-items: center;
        padding-left: 3rem;
        margin-top: 24rem;
    }

    .reson1_m_b_left h6 {
        margin-top: 24rem;
        /* margin-left: 88rem; */
        padding-left: 5rem;
        padding-right: 12rem;
    }

    .reson1_m_b_left {
        width: 100%;
    }

    .reson1_m_b_left h6 {
        margin-top: 24rem;
        margin-left: 14rem;
    }

    .prosol_sol_last a {
        width: 425rem;
        height: auto;
        margin-top: 76rem;
        margin-bottom: 56rem;
    }

    .prosol_sol_last .link_img {
        width: 425rem !important;
        height: auto;
    }

    .step_step_main_cell1 {
        width: 423rem;
        padding-right: 32rem;
        padding-left: 32rem;
    }

    .subscribe>img {
        width: 96%;
        height: auto;
    }

    .subscribe_btn {
        background-color: white;
        color: #EE3147;
        font-size: 20rem;
        border: none;
        padding: 21rem 22rem 21rem 22rem;
        border-radius: 10rem;
    }

    .reson2_f_con_main {
        flex-direction: column;
        margin-top: -50rem;
    }

    .reson_f_con_txt {
        margin-top: -91rem;
        margin-left: 0rem;
    }
}


/* ------------------------------------/  slide-start /-------------------------------------------------- */

.gallery {
    margin-top: 72rem;
}

.gallery-cell {
    display: flex;
    justify-content: center;
    width: 33%;
    height: 800rem;
    margin-right: 10rem;
    counter-increment: gallery-cell;
}

.gallery-in {
    width: 80%;
    height: 80%;
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-radius: 30rem;
    align-items: center;
    background-color: #FFFFFF;
}

.gallery-in .gallery-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 40%;
}

.gallery-text h5:nth-child(2) {
    /* height: 10rem; */
    border-bottom: 3rem #EE2E2E solid;
}

.gallery-in h5 {
    margin: auto;
    width: 81%;
    padding-bottom: 10rem;
}

.is-selected .gallery-in {
    opacity: 1;
    padding-top: 20rem;
    width: 90%;
    height: 90%;
}

.flickity-button {
    position: absolute;
    background: hsla(0, 0%, 100%, .75);
    border: none;
    color: var(--orange);
}

.flickity-button {
    margin-top: -55rem;
}

.gallery h5 {
    color: var(--darkBlue);
    font-weight: normal;
}

@media (max-width:768px) {
    .flickity-button {
        margin-top: 0;
    }

    .gallery-cell {
        width: 100%;
    }

    /* slide part */
    .is-selected .gallery-in {
        margin-top: 127rem;
        opacity: 1;
        padding-top: 29rem;
        width: 59%;
        height: 70%;
    }

    .gallery-in {
        margin-top: 127rem;
        width: 59%;
        height: 70%;
        opacity: 0.6;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        border-radius: 30rem;
        align-items: center;
        background-color: #FFFFFF;
    }

    .mentor-main {
        margin-top: -40rem;
    }

    .flickity-page-dots {
        margin-top: -40rem;
    }
}

.mentor {
    width: 50%;
    border-radius: 50%;
    /* height: ; */
}

.mentor img {
    width: 100%;
}

.flickity-viewport {
    height: 800rem !important;
}

.flickity-page-dots .dot {
    background: var(--orange);
}

/* cell number */
/* .gallery-cell:before {
    display: block;
    text-align: center;
    content: counter(gallery-cell);
    line-height: 200px;
    font-size: 80px;
    color: white;
} */
@media (max-width:425px) {
    .is-selected .gallery-in {
        margin-top: 109rem;
        opacity: 1;
        padding-top: 29rem;
        width: 94%;
        height: 70%;
    }

    .gallery {
        margin-top: 0rem;
    }

    .gallery-in {
        margin-top: 127rem;
        width: 94%;
        height: 70%;
        opacity: 0.6;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-radius: 30rem;
        align-items: center;
        background-color: #FFFFFF;
    }
}

/* ------------------------------------/  slide-end  /--------------------------------------------------- */