@charset "UTF-8";
/* ---------------------
Basic Property

  - @media (769px <= width ) {} / @media (48.0625rem <= width) {}
  - @media (945px <= width ) {} / @media (59.0625rem <= width) {}
  - width: min(1200px, 94%);
  - font-size: var(--px);
  - font-size: clamp(var(--28px),(100vw - 768px) * 10 / 406 + var(--28px),var(--38px));
      ( 1175 - 769px = 406 ) / ( 1430 - 768 = 662px )
  - Necessary: span { color: unset; }
--------------------- */


/* Header
--------------------------------------------------------*/
.box_header {
    height: 50px;
}

@media (48.0625rem <= width) {
    .box_header {
        height: 80px;
    }
}

.header_wrap {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
}

@media (48.0625rem <= width) {
    .header_wrap {
        padding: 20px 0 20px 10px;
    }
}

@media (59.0625rem <= width) {
    .header_wrap {
        left: 0;
        right: 340px;
        width: auto;
        max-width: calc(100vw - 340px); /* ズームアウト時の突き抜け防止 */
        padding: 20px 5px 20px 20px;
    }
}

/* @media (48.0625rem <= width) {
    .header_inner {
        display: flex;
    }
} */

@media (48.0625rem <= width) {
    .header_inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
}

@media (59.375rem <= width) {/* 950px */
    .header_inner {
        justify-content: space-between;
        padding: 0 20px;
    }
}

.header_logo_pc {
    display: none;
}

@media (48.0625rem <= width) {
    .header_logo_pc {
        display: block;
        position: initial;
        height: initial;
        z-index: 102;
    }
}

@media (48.0625rem <= width) {
    .header_logo_pc img {
        min-width: 185px;
    }
}

.header_nav {
    display: none;
}

/* @media (48.0625rem <= width) {
    .header_nav {
        display: block;
        margin-left: auto;
    } 
} */

@media (48.0625rem <= width) {
    .header_nav {
        display: block;
        margin-left: auto;
        margin-right: 0 !important;
    }
}

/* @media (950px <= width) {
    .header_nav {
        margin-left: initial;
        margin-right: 20em;
    } 
}
@media (1100px <= width) {
    .header_nav {
        margin-right: 18em;
    } 
}
@media (1250px <= width) {
    .header_nav {
        margin-right: 12em;
    } 
}
@media (1320px <= width) {
    .header_nav {
        margin-right: 8em;
    } 
}
@media (1400px <= width) {
    .header_nav {
        margin-right: 4em;
    } 
} */

.nav_inner {
    height: 59px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 10px;
    background: rgba(63, 64, 64, 0.35);
}

@media (65.625rem <= width) {/* 1050px */
    .nav_inner {
        padding: 0 30px;
    }
}

@media (48.0625rem <= width) {
    .nav_inner>ul {
        display: flex;
        column-gap: 0.8em;
        font-family: "Noto Sans JP", sans-serif;
    }
}

@media (62.5rem <= width) {/* 1000px */
    .nav_inner>ul {
        column-gap: 1.5em;
    }
}

.nav_inner>ul>li {
    letter-spacing: 0.1em;
}

.nav_inner>ul>li>a {
    white-space: nowrap;
    color: #ffffff;
}

@media (48.0625rem <= width) {
    .nav_inner>ul>li>a {
        font-size: var(--12px);
    }
}

@media (75rem <= width) {/* 1200px */
    .nav_inner>ul>li>a {
        font-size: var(--16px);
    }
}

.nav_inner>ul>li>a:hover {
    text-decoration: underline;
}

@media (48.0625rem <= width) {
    .nav_inner>ul>li:not(:first-child):before {
        height: 0;
        width: 0;
    }
}

.header_logo_sp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0 5px 10px;
    background: transparent;
    box-shadow: none;
}

@media (48.0625rem <= width) {
    .header_logo_sp {
        display: none;
    }
}

.header_logo_sp img {
    width: 80%;
}

/*　Hamburger Menu
--------------------------------------------------------*/

.hbgr {
    position: fixed;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 102;
  }

  @media (48.0625rem <= width) {
    .hbgr {
        display: none;
      }
  }

  .hbgr_line {
    position: absolute;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.5s;
    left: 12px;
  }
  
  .hbgr_top {
    top: 13px;
  }
  
  .hbgr_mid {
    top: 23px;
  }
  
  .hbgr_btm {
    top: 33px;
  }
  
  
  /*____________________ after click */
  .open .hbgr_line {
    background-color: #202B68;
  }

  .open .hbgr_top {
    transform: rotate(-45deg);
    top: 24px;
  }
  
  .open .hbgr_mid {
    opacity: 0;
  }
  
  .open .hbgr_btm {
    transform: rotate(45deg);
    top: 24px;
  }  
  
   /*____________________ sp_nav */
  .sp_nav {
    position: fixed;
    top: -100%;
    width: 100%;
    transition: all 0.5s;
    z-index: 101;
    overflow-y: auto;
    padding: 50px 0 20px 30px;
    background: #EBF3FA;
    font-family: "Noto Sans JP", sans-serif;
  }

  @media (48.0625rem <= width) {
    .sp_nav {
        display: none;
      }
  }

  .sp_nav>ul>li>a {
    color: #202B68;
    display: block;
    padding: 12px 0;
    letter-spacing: 0.1em;
}

  .open .sp_nav {
    top: 0;
  }
  
  
   /*____________________ bg bk */
  .bg_bk {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
  }
  
  
   /*____________________ as open  */
  .open .bg_bk {
    opacity: 0.3;
    visibility: visible;
  }

/* （FVよりも下までスクロールした時に変えたい色） */

/* SP */
.scroll-nav {
  background: rgba(22, 122, 189, 0.8);
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  animation-name: fadeIn;
  animation-duration: 2s;
	backdrop-filter: blur(12px);
	/* -webkit-backdrop-filter: blur(24px); */
}

@media (48.0625rem <= width) {
	.scroll-nav {
		background: initial;
		box-shadow: initial;
		backdrop-filter: initial;
		/* -webkit-backdrop-filter: initial; */
	}
}

/* PC */
@media (48.0625rem <= width) {
    .header_default {
        background: rgba(22, 122, 189, 0.8);
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
        animation-name: fadeIn;
        animation-duration: 2s;
        backdrop-filter: blur(12px);
        /* -webkit-backdrop-filter: blur(24px); */
      }
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }


/*　Main
--------------------------------------------------------*/
#contents {
    /* background: url(https://tp-img.imgix.net/s/lp/evaluation/pc/bg/bg_grid@2x.png?auto=format),#EBF3FA;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
    background: #EEFBFF;

    @media (48.0625rem <= width ) {
        min-width: 980px;
        display: flex;
    }
}

.bg_fv {
    display: none;

    @media (48.0625rem <= width ) {
        display: block;
        width: 100%;
        height: 500px;
        background: url(https://tp-img.imgix.net/s/lp/engagement/pc/bg/bg_fv@2x.png?auto=format);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    @media (83.125rem <= width ) {/* 1330px */
      height: 566px;
    }
}

.sec_content {
    position: relative;

    @media (48.0625rem <= width ) {
        width: calc(100vw - 340px);
        margin-top: 5em;
        z-index: 2;
    }
}
 
.sec_right {
    display: none;

    @media (48.0625rem <= width ) {
        display: block;
        width: 20%;
        min-width: 340px;
        /* min-height: 100vh; */
        position: fixed;
        top: 85px;
        right: 0;
        z-index: 2;
        background: #ffffff;
        border-radius: 20px 0 0 20px;
        box-shadow: 0px 0px 10px 0px rgba(0, 115, 183, 0.10);
        z-index: 100;
    }

    @media (59.0625rem <= width) {
      top: 20px;
    }
}

.sec_form {
    height: 100%;
    width: 100%;
    overflow-x: hidden;

    iframe {
        min-height: 94vh;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 20px 0 0 20px;
        overflow-x: hidden;
    }
}


/*　FV
--------------------------------------------------------*/
.sec_fv {
    padding: 100px 2% 20px;
    margin-top: -80px;
    width: 100%;
    background: url(https://tp-img.imgix.net/s/lp/engagement/sp/bg/bg_fv@2x.png?auto=format);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (48.0625rem <= width ) {
    .sec_fv {
        padding: 80px 2% 30px;
        position: relative;
        top: -80px;
        margin-bottom: -80px;
        background: url(https://tp-img.imgix.net/s/lp/engagement/pc/bg/bg_fv@2x.png?auto=format);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
}

@media (945px <= width ) {
    .sec_fv {
        padding: 130px 2% 30px;
    }
}

ul.list_fv {
    width: 94%;
    margin: auto;

    @media (59.0625rem <= width) {
        max-width: 610px;
        display: grid;
        grid-template-columns: 55% 44%;
        column-gap: 1%;
        margin: 0 0 1em;
    }

    @media (61.25rem <= width ) {/* 980px */
      max-width: 700px;
    }

    @media (66.5625rem <= width ) {/* 1065px */
      max-width: 800px;
    }

    @media (75rem <= width ) {/* 1200px */
      max-width: 1100px;
    }

    @media (83.125rem <= width ) {/* 1330px */
      margin: 0 auto 1em;
    }

    >li:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1em;
        /* margin: 0 auto 2em; */

        @media (59.0625rem <= width) {
            display: initial;
            flex-direction: initial;
            align-items: initial;
            margin-bottom: initial;
        }

        @media (48.0625rem <= width ) {
            /* width: 73%; */
            padding-top: 50px;
        }

        @media (52.5rem <= width ) {/* 840px */
          /* width: 63%; */
        }

        @media (59.0625rem <= width) {
          width: initial;
        }
    }
}

.sec_fv .caption_fv {
    font-size: 18px;
    width: fit-content;
    color: #ffffff;
    font-weight: bold;
    padding-bottom: 5px;
    margin-bottom: 1.2em;
    position: relative;
    display: inline-block; /* 幅を文字に合わせる */

    @media (769px <= width ) {
      font-size: clamp(14px, calc(-2.045px + 2.086vw), 28px);
    }

    @media (945px <= width ) {
      margin-bottom: 0.8em;
    }

    &::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        /* 線に「穴」を開ける：中央の14px（三角の幅）分だけ透明にする */
        background: linear-gradient(to right, 
            #fff 0%, 
            #fff calc(50% - 7px), 
            transparent calc(50% - 7px), 
            transparent calc(50% + 7px), 
            #fff calc(50% + 8px), 
            #fff 100%
        );
    }

    /* --- 三角形の作成（枠線のみにする） --- */
    &::after {
        content: "";
        width: 14px;
        height: 14px;
        border-bottom: 3px solid #ffffff;
        border-left: 3px solid #ffffff;
        position: absolute;
        
        /* 位置調整：回転して「V字」になるように */
        bottom: -6px; /* 線の位置と合うように微調整 */
        left: 50%;
        transform: translateX(-50%) rotate(-45deg);
        
        /* 背景は透明にする（重要） */
        background: transparent !important;
    }
}

/* 1440 - 769 */
.sec_fv .title_tp {
    position: relative;
    isolation: isolate;
    width: fit-content;
    font-size: 20px;
    color: #3F4040;
    font-weight: bold;
    padding: 8px;
    background: transparent;

    @media (769px <= width ) {
      font-size: clamp(16px, calc(-0.045px + 2.086vw), 30px);
    }
}

.sec_fv .title_tp::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: skewX(-8deg);
    z-index: -1;
}

.sec_fv .title_tp span {
  font-size: 22px;
    color: #0192C1;
    font-weight: bold;

    @media (769px <= width ) {
      font-size: clamp(16px, calc(-3.483px + 2.534vw), 33px);
    }
}

.mb_fv_ttl {
  margin-bottom: 0.3em;

  @media (59.0625rem <= width) {
    margin-bottom: 0.3em;
  }
}

ul.list_demo_price_sp {
    z-index: 100;
    display: flex;
    justify-content: center;
    column-gap: 1.5em;
    margin-bottom: 1.5em;

    @media (59.0625rem <= width ) {
      display: none;
    }
}

ul.list_demo_price_pc {
    display: none;

    @media (59.0625rem <= width ) {
        z-index: 100;
        display: flex;
        column-gap: 0.5em;
        margin-top: 1em;
    }

    @media (66.5625rem <= width ) {/* 1065px */
        column-gap: 1.5em;
        margin-top: 2.2em;
    }
}

.sec_fv .note_fv a {
    max-width: fit-content;
    display: block;
    text-align: center;
  font-size: clamp(var(--14px), 2vw, var(--18px));
  color: #ffffff;
  padding: 0 20px 5px 0;
  border-bottom: none;
  position: relative;

  @media (945px <= width ) {
    font-size: 1.4vw;
  }

  @media (1270px <= width ) {
    font-size: var(--18px);
  }

  &:hover {
    &::after {
      right: 0;
    }

    &::before {
      width: 0;
    }
  }

  &::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 7px;
    right: 3px;
    transition: all 0.3s ease-in-out 0s;

    @media (48.0625rem <= width ) {
      top: 5px;
    }

    @media (66.5625rem <= width ) {/* 1065px */
      top: 10px;
    }
  }

  &::before {
    content: "";
    position: absolute;
    right: 0;
    left: auto;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #ffffff;
    transition: width 0.35s ease-in-out;
  }
}

.badge_fv {
    max-width: 80%;
    margin: 0 auto;
}

@media (48.0625rem <= width ) {
    .badge_fv {
        max-width: 350px;
    }
}

h1 {
    max-width: 100%;
    margin: 0 auto 0.6em;
}

@media (48.0625rem <= width ) {
    h1 {
        max-width: 490px;
        margin: 0 auto;
    }
}

.sec_fv_cobtact_sp a {
    max-width: 300px;
    font-size: var(--15px);
    color: #333333;
    text-align: center;
    font-weight: bold;
    border-radius: 50px;
    display: block;
    margin: 0 auto 1em;
    padding: 15px 0;
    background: #FFDE69;
    position: relative;

    @media (945px <= width ) {
        display: none;
    }

    &::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translateY(-50%) rotate(45deg);
      width: 8px;
      height: 8px;
      border-top: solid 2px #333333;
      border-right: solid 2px #333333;
    }
}

.comment_fv {
    max-width: 1100px;
    width: 94%;
    margin: 0 auto 2em;
    font-size: var(--11px);
    color: #ffffff;

    @media (945px <= width ) {
        text-align: right;
        margin: 0 auto;
    }
}


/*　Client logos
--------------------------------------------------------*/
.sec_logo {
    padding: 25px 0;
    background: #ffffff;
}

@media (48.0625rem <= width ) {
    .sec_logo {
        padding: 30px 0;
        position: relative;
    }
}

.sec_logo h2 {
    font-size: var(--20px);
    color: #3F4040;
    text-align: center;
    margin-bottom: 0.5em;
}

.sec_logo_dec {
    font-size: var(--20px);
    color: #3F4040;
    text-align: center;
    font-weight: bold;
}

.txt_sky {
    color: #167ABD;
    font-weight: bold;
}

.note_clients {
    font-size: var(--11px);
    color: #3F4040;
    text-align: center;
    margin-top: 1em;
    padding: 0 2%;
}

.txt_upkeep {
    font-family: Avenir;
    color: #3F4040;
    font-weight: bold;
    border-radius: 50px;
    padding: 8px 18px;
    background: #FFF4AA;
    display: block;
    width: fit-content;
    margin: 0.5em auto 0;
}

@media (48.0625rem <= width ) {
    .txt_upkeep {
        display: inline-block;
        margin: 0 0 0 1em;
    }
}

.num_16 {
    font-size: var(--16px);
    font-weight: bold;
}

.num_s {
    font-size: var(--22px);
    font-weight: bold;
}

.num_xs {
    font-size: var(--18px);
    font-weight: bold;
}


  /*　社員エンゲージメントのこんな悩みを解決
--------------------------------------------------------*/
.content_solution {
    padding: 30px 0 50px;
    background: url(https://tp-img.imgix.net/s/lp/engagement/pc/bg/bg_eclipse.svg);
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: top 18em center;

    @media (48.0625rem <= width ) {
        width: initial;
        padding: 40px 0 0;
    }
}

.ttl_en {
    width: fit-content;
    color: #3F4040;
    font-family: "Zen Antique Soft";
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: #F6F5F7;
    padding: 3px 7px 3px 10px;
    margin: 0 auto 1em;
}

.ttl_en_wht {
    width: fit-content;
    color: #3F4040;
    font-family: "Zen Antique Soft";
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: #ffffff;
    padding: 3px 7px 3px 10px;
    margin: 0 auto 1em;
}

.sec_solution {
    margin-bottom: 4em;
    padding: 0 4%;
}

.sec_solution h2 {
    font-family:Georgia, 'Times New Roman', Times, serif;
    width: fit-content;
    font-size: var(--24px);
    text-align: center;
    margin: 0 auto 1em;

    @media (48.0625rem <= width ) {
      font-size: var(--28px);
    }

    @media (62.5rem <= width ) {
      font-size: var(--38px);
    }
}

.marker {
    font-weight: bold;
    color: #3F4040;
    background: rgba(255, 255, 255, 0) linear-gradient(transparent 70%, #FFF4AA 0%) repeat scroll 0 0;
}

ul.list_solution {
    max-width: 980px;
    width: 90%;
    margin: auto auto auto 6%;
    display: grid;
    row-gap: 15px;

    @media (59.0625rem <= width ) {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 2%;
        row-gap: initial;
        margin: auto;
    }

    @media (84.6875rem <= width ) {/* 1355px */
        grid-template-columns: repeat(3, 1fr);
        column-gap: 4%;
        row-gap: initial;
    }

    >li {
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: 10px;
      padding: 20px 10%;
      background: #FFF;
      box-shadow: 0px 4px 0px 0px rgba(0, 115, 183, 0.20);
      position: relative;

      @media (59.0625rem <= width ) {
          height: 100%;
          padding: 40px 6% 20px;
      }

      @media (78.125rem <= width ) {/* 1250px */
          padding: 40px 2% 20px;
      }

      img {
          max-height: 150px;
      }
  }
}

ul.list_solution>li::before {
    content: "";
    width: 46px;
    height: 46px;
    background: url(https://tp-img.imgix.net/s/lp/engagement/pc/icon/icon_check_solution.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -23px;
}

@media (59.0625rem <= width ) {
    ul.list_solution>li::before {
        background: url(https://tp-img.imgix.net/s/lp/engagement/pc/icon/icon_check_solution.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        top: -23px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.caption_solution {
    font-size: var(--14px);
    color: #3F4040;
    font-weight: bold;

    @media (480px <= width ) {
      font-size: var(--16px);
    }

    @media (945px <= width ) {
      font-size: 1.1vw;
      margin-bottom: 15px;
    }

    @media (1210px <= width ) {
      font-size: 1.2vw;
    }

    @media (1380px <= width ) {
      font-size: var(--18px);
    }
}

.txt_pnk {
    color: #EA6390;
}

.txt_yellow {
    color: #CA0;
    font-weight: bold;
}

ul.list_solution_child {
    display: grid;
    grid-template-columns: 68% 30%;
    column-gap: 2%;

    @media (59.0625rem <= width ) {
        display: block;
    }

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


/*　解決するのはタレントパレット
--------------------------------------------------------*/
.sec_solution_2nd {
    max-width: 980px;
    width: 94%;
    margin: 0 auto 6.5em;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 0 0 #BDDEF4;
    position: relative;
    padding-bottom: 20px;

    @media (59.0625rem <= width ) {
        margin: 0 auto 7em;
        padding-bottom: initial;
    }

    &::after {
        width: 140px;
        height: 40px;
        content: "";
        background: url(https://tp-img.imgix.net/s/lp/engagement/pc/icon/icon_arrow_down_lrg.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -60px;

        @media (59.0625rem <= width ) {
            width: 130px;
            height: 33px;
            bottom: -50px;
        }
    }
}

ul.list_solution_2nd {
    border-radius: 20px 20px 0 0;
    background: #167ABD;
    position: relative;
    padding: 20px 0 10px;
    margin-bottom: 1em;

    &::after {
        content: "";
        width: 100%;
        height: 20px;
        background: url(https://tp-img.imgix.net/s/lp/engagement/pc/parts/triangle_opposite.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        bottom: -20px;
        left: 0;

        @media (59.0625rem <= width ) {
            height: 30px;
            bottom: -30px;
        }

        @media (1200px <= width ) {
            height: 40px;
            bottom: -40px;
        }
    }

    @media (59.0625rem <= width ) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 4%;
        justify-content: center;   
        margin-bottom: 4em;
    }

    li {
        font-size: var(--26px);
        color: #ffffff;
        font-weight: normal;
        text-align: center;

        @media (59.0625rem <= width ) {
            text-align: initial;
        }

        &:first-child {
            padding-bottom: 10px;

            @media (59.0625rem <= width ) {
                display: flex;
                justify-content: flex-end;
                align-items: center;
                padding-bottom: initial;
            }
        }
    }

    >li img {
        width: 60%;
        max-width: 300px;

        @media (59.0625rem <= width ) {
            width: 100%;
            max-width: 200px;
        }
    }
}

ul.list_solution_2nd_child {
    display: grid;
    gap: 1em;
    padding: 20px 8% 0;

    @media (59.0625rem <= width ) {
        grid-template-columns: 4fr 5fr;
        gap: 30px;
        justify-content: center;
        padding: 0 2%;
    }

    @media (1275px <= width ) {
        grid-template-columns: repeat(2, 1fr);
        gap: 4%;
        padding: 0 30px;
    }
}

ul.list_solution_2nd_child li:first-child {
    text-align: center;
}

ul.list_solution_2nd_child li img {
    max-width: 100%;

    @media (59.0625rem <= width ) {
        max-width: 384px;
        width: 100%;
        margin-bottom: -60px;
    }
}

ul.list_solution_2nd_child li:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    @media (59.0625rem <= width ) {
        text-align: initial;
    }
}

.p_solution_underline {
    font-size: var(--20px);
    color: #3F4040;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: solid 1px #CCE3F1;
    
    @media (59.0625rem <= width ) {
      font-size: var(--18px);
    }

    @media (68.125rem <= width ) {/* 1090px */
      font-size: var(--20px);
    }
}

.p_solution_none {
    font-size: var(--20px);
    color: #3F4040;
    font-weight: bold;
    padding-bottom: 10px;

    @media (59.0625rem <= width ) {
      font-size: var(--18px);
    }

    @media (68.125rem <= width ) {/* 1090px */
      font-size: var(--20px);
    }
}

.txt_pnk_b {
    color: #167ABD;
    font-weight: bold;
}


/*　タレントパレットで解決できる課題
--------------------------------------------------------*/
.sec_subject {
    margin-bottom: 3em;

    h2 {
        font-family:Georgia, 'Times New Roman', Times, serif;
        width: fit-content;
        font-size: var(--24px);
        color: #3F4040;
        text-align: center;
        margin: 0 auto 1em;

        @media (48.0625rem <= width ) {
            font-size: var(--28px);
        }

        @media (62.5rem <= width ) {
            font-size: var(--38px);
        }
    }

    .list_subject {
      max-width: 980px;
      width: 90%;
      margin: auto;
      display: grid;
      row-gap: 20px;

      @media (59.0625rem <= width ) {
          grid-template-columns: repeat(3, 1fr);
          column-gap: 2%;
          row-gap: initial;
      }

      @media (84.6875rem <= width ) {/* 1355px */
          grid-template-columns: repeat(3, 1fr);
          column-gap: 4%;
          row-gap: initial;
      }

      li {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 10px;
        padding-bottom: 25px;
        background: #FFF;
        box-shadow: 0px 4px 0px 0px rgba(0, 115, 183, 0.20);

        @media (59.0625rem <= width ) {
          height: 100%;
          border-radius: 10px;
          padding-bottom: 20px;
        }
      }

      h3 {
          width: 100%;
          font-size: var(--18px);
          color: #ffffff;
          display: flex;
          flex-direction: column;
          justify-content: center;
          border-radius: 10px 10px 0 0;
          padding: 10px 10px 15px 65px;
          margin-bottom: 0.5em;
          background: #167ABD;
          position: relative;

          @media (59.0625rem <= width ) {
              font-size: 1.3vw;
              padding: 10px 2% 15px 30px;
          }

          @media (998px <= width ) {
              height: 80px;
          }

          @media (68.75rem <= width ) {/* 1100px */
              font-size: var(--15px);
              padding: 10px 2% 15px 40px;
          }

          @media (88.125rem <= width ) {/* 1410px */
              height:95px;
              font-size: var(--18px);
              padding: 10px 2% 15px 65px;
          }

          &::before {
              width: 46px;
              height: 46px;
              font-size: var(--24px);
              color: #ffffff;
              display: flex;
              flex-direction: column;
              align-items: center;
              justify-content: center;
              border-radius: 50px;
              background: #202B68;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              left: 10px;

              @media (59.0625rem <= width ) {
                  width: 22px;
                  height: 22px;
                  font-size: var(--16px);
                  left: 3px;
              }

              @media (68.75rem <= width ) {/* 1100px */
                  width: 30px;
                  height: 30px;
                  font-size: var(--20px);
              }

              @media (88.125rem <= width ) {/* 1410px */
                  width: 46px;
                  height: 46px;
                  font-size: var(--24px);
                  left: 10px;
              }
          }
        }

    }
}

ul.list_subject li:first-child h3::before {
    content: "1";
}

ul.list_subject li:nth-child(2) h3::before {
    content: "2";
}

ul.list_subject li:last-child h3::before {
    content: "3";
}

.box_subject {
    padding: 0 5%;

    img {
        margin-bottom: 0.8em;
    }
}

.caption_subject {
    font-size: var(--15px);
    color: #3F4040;

    @media (59.0625rem <= width ) {
        font-size: var(--11px);
    }

    @media (64.375rem <= width ) {/* 1030px */
        font-size: var(--12px);
    }

    @media (80.3125rem <= width ) {/* 1285px */
        font-size: var(--15px);
    }
}


/*　タレントパレットで解決できる課題
--------------------------------------------------------*/
.sec_similar_words {
    max-width: 980px;
    width: 92%;
    margin: 0 auto 2.5em;

    .sec_similar_words_footnote {
        font-size: var(--14px);
        text-align: center;
        color: #3F4040;
        margin-top: 1em;

        @media (48.0625rem <= width ) {
            font-size: var(--16px);
        }
    }

}

/*　人事戦略、人材活用に必要な機能が揃った
--------------------------------------------------------*/
.sec_strength {
    text-align: center;
    padding: 50px 4% 0;
    background: #ffffff;

    h2 {
        font-family:Georgia, 'Times New Roman', Times, serif;
        width: fit-content;
        font-size: var(--24px);
        color: #3F4040;
        text-align: center;
        margin: 0 auto 1em;

        @media (48.0625rem <= width ) {
            font-size: var(--28px);
        }

        @media (59.0625rem <= width ) {
            font-size: var(--38px);
        }
    }

    .caption_strength {
        font-family:Georgia, 'Times New Roman', Times, serif;
        font-size: var(--20px);
        color: #3F4040;
        font-weight: bold;
        margin-bottom: 0.2em;

        @media (59.0625rem <= width ) {
            font-size: var(--24px);
        }
    }

    .caption_strength_02 {
        font-family:Georgia, 'Times New Roman', Times, serif;
        width: fit-content;
        font-size: var(--20px);
        color: #3F4040;
        font-weight: bold;
        margin: 0 auto 0.2em;

        @media (59.0625rem <= width ) {
            font-size: var(--34px);
        }
    }

    .sec_strength_list {
        max-width: 980px;
        width: 90%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4%;
        padding: 20px 20px 50px;
        margin: 0 auto 5px;
        background: #EEFBFF;

        @media (48.0625rem <= width ) {
          grid-template-columns: repeat(4, 1fr);
          gap: 0 2%;
          padding: 20px;
        }
    }

    .sec_strength_img {
        max-width: 140px;
    }
}

.marker_pnk {
    background: rgba(255, 255, 255, 0) linear-gradient(transparent 85%, #EA6390 0%) repeat scroll 0 0;

    @media (59.0625rem <= width ) {
        background: rgba(255, 255, 255, 0) linear-gradient(transparent 90%, #EA6390 0%) repeat scroll 0 0;
    }
}


/*　”オールインワン”のタレントマネジメントシステムです。
--------------------------------------------------------*/
.sec_all_in_one {
    background: #ffffff;
    padding-bottom: 3em;
    padding: 0 4% 50px;

    h2 {
      font-family:Georgia, 'Times New Roman', Times, serif;
      width: fit-content;
      font-size: var(--24px);
      color: #3F4040;
      font-weight: bold;
      margin: 0 auto 1.2em;

      @media (59.0625rem <= width ) {
          font-size: var(--34px);
      }
    }

    .sec_all_in_one_list {
      max-width: 980px;
      width: 90%;
      margin: auto;
      display: grid;
      row-gap: 20px;

      @media (59.0625rem <= width ) {
          grid-template-columns: repeat(3, 1fr);
          column-gap: 2%;
          row-gap: initial;
      }

      @media (84.6875rem <= width ) {/* 1355px */
          grid-template-columns: repeat(3, 1fr);
          column-gap: 4%;
          row-gap: initial;
      }

      li {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 10px;
        padding-bottom: 25px;
        background: #EEFBFF;
        box-shadow: 0px 4px 0px 0px rgba(0, 115, 183, 0.20);

        @media (59.0625rem <= width ) {
          height: 100%;
          border-radius: 10px;
          padding-bottom: 20px;
        }
      }
    }

    h3 {
      font-size: var(--18px);
      color: #3F4040;
      text-align: center;
      margin: 0.5em 0;

      @media (59.0625rem <= width ) {
        font-size: var(--15px);
      }

      @media (1050px <= width ) {
        font-size: var(--18px);
      }
    }

    p {
      width: 90%;
      font-size: var(--15px);
      color: #3F4040;
      border-top: solid 1px #167ABD;
      padding-top: 15px;
      line-height: 1.6em;
    }
}

.bg_lightsky {
    background: #EEFBFF;
}


/*　導入法人社数3,000社以上の実績！
--------------------------------------------------------*/
.sec_record {
    max-width: 810px;
    text-align: center;
    margin: 0 auto;
    padding: 40px 2% 20px;

    h2 {
      width: fit-content;
      font-size: var(--20px);
      color: #3F4040;
      margin: 0 auto 1.2em;
      letter-spacing: 0.1em;

      @media (48.0625rem <= width ) {
        line-height: 2.2em;
        margin: 0 auto 1.5em;
      }

      @media (59.0625rem <= width ) {
        font-size: var(--26px);
      }

      span {
        padding-bottom: 8px;
      }
    }

    .caption_record {
        color: #3F4040;
        font-weight: bold;
        margin-bottom: 0.8em;

        @media (48.0625rem <= width ) {
          padding: 0 10px;
        }
    }

    .note_record {
        font-size: var(--11px);
        color: #3F4040;
        margin-bottom: 2.5em;
    }

    .box_record {
        max-width: 810px;
        width: 90%;
        margin: auto;
        border-radius: 10px;
        background: #FFF;
        box-shadow: 0 0 0.769px 0 rgba(0, 0, 0, 0.25), 0 0 23.077px 0 rgba(0, 0, 0, 0.08);
        padding: 10px 7%;
    }
}

.txt_nvy {
    font-size: var(--24px);
    color: #202B68;
    font-weight: bold;

    @media (59.0625rem <= width ) {
        font-size: var(--38px);
    }
}

.marker_nvy {
    background: rgba(255, 255, 255, 0) linear-gradient(transparent 95%, #167ABD 0%) repeat scroll 0 -6px;

    @media (59.0625rem <= width ) {
        background: rgba(255, 255, 255, 0) linear-gradient(transparent 95%, #167ABD 0%) repeat scroll 0 0;
    }
}


/*　エンゲージメント向上に関するタレントパレットの導入事例
--------------------------------------------------------*/
.content_case {
    padding: 30px 4% 40px;
    /* background: rgba(255, 255, 255, 0.40);
    border-top: solid 1px #dddddd; */

    @media (48.0625rem <= width ) {
      padding: 40px 0;
    }

    h2 {
        font-size: var(--18px);
        color: #3F4040;
        text-align: center;
        margin-bottom: 1.2em;
        padding: 0 2%;

        @media (48.0625rem <= width ) {
          font-size: var(--20px);
          margin-bottom: 1em;
        }

        @media (59.0625rem <= width ) {
          font-size: var(--26px);
        }
    }

    .list_case {
        max-width: 980px;
        width: 90%;
        margin: 0 auto;
        display: grid;
        row-gap: 2em;

        @media (59.0625rem <= width ) {
            grid-template-columns: repeat(3, 1fr);
            column-gap: 2%;
            row-gap: initial;
        }

        @media (84.6875rem <= width ) {/* 1355px */
            grid-template-columns: repeat(3, 1fr);
            column-gap: 4%;
            row-gap: initial;
        }

        > li{
          border-radius: 10px;
          background: #ffffff;
          box-shadow: 0px 4px 0px 0px rgba(0, 115, 183, 0.20);
          overflow: hidden;
          padding-bottom: 40px;

          @media (48.0625rem <= width ) {
            padding-bottom: 10px;
          }

          @media (71.25rem <= width ) {/* 1140px */
            padding-bottom: 20px;
          }
        }

        .box_case_item {
            padding: 10px 15px;

            @media (48.0625rem <= width ) {
              padding: 10px 5px;
            }

            @media (77.5rem <= width ) {/* 1240px */
              padding: 10px 15px;
            }

            .p_tag {
              width: fit-content;
              font-size: var(--12px);
              background: #EEFBFF;
              padding: 7px 4px;
              margin-bottom: 1em;
              border-radius: 2px;
              color: #167ABD;
          }

          h3 {
              font-size: var(--18px);
              color: #202B68;
              margin-bottom: 0.5em;

              @media (48.0625rem <= width ) {
                font-size: var(--15px);
              }

              @media (59.0625rem <= width ) {
                font-size: var(--13px);
              }

              @media (77.5rem <= width ) {/* 1240px */
                font-size: var(--18px);
              }
          }

          .caption_case {
              font-size: var(--14px);
              color: #3F4040;

              @media (48.0625rem <= width ) {
                font-size: var(--12px);
              }

              @media (77.5rem <= width ) {/* 1240px */
                font-size: var(--14px);
              }
          }
        }

        .dl_cat {
            display: grid;
            grid-template-columns: 18% 80%;
            gap: 5px 2%;
            padding: 14px 15px;
            border-top: solid 1px #dddddd;

            @media (48.0625rem <= width ) {
                grid-template-columns: 20% 78%;
                padding: 14px 5px;
            }

            @media (59.0625rem <= width ) {
              grid-template-columns: 23% 75%;
            }

            @media (77.5rem <= width ) {/* 1240px */
              grid-template-columns: 18% 80%;
            }

            dt {
                font-size: var(--12px);
                color: #3F4040;
                font-weight: bold;
            }

            dd {
                font-size: var(--12px);
                color: #3F4040;
            }
        }
    }
}



/*　タレントパレットの主な機能・活用方法
--------------------------------------------------------*/
.sec_function {
    width: min(1300px, 100%);
    padding: 50px 0;

    @media (48.0625rem <= width ) {
    }

    h2 {
        font-family:Georgia, 'Times New Roman', Times, serif;
        width: fit-content;
        font-size: var(--24px);
        color: #3F4040;
        text-align: center;
        margin: 0 auto 0.8em;
        padding: 0 4%;

        @media (48.0625rem <= width ) {
            font-size: var(--28px);
        }

        @media (59.0625rem <= width ) {
            font-size: var(--38px);
        }
    }

    .sec_function_lead {
        font-size: var(--15px);
        color: #3F4040;
        text-align: center;
        padding: 0 4%;

        @media (59.0625rem <= width ) {
            
        }
    }
}

/* 移植 */
.function_list {
	display: flex;
	gap: 20px;
	padding: 30px 4%;
	align-items: end;
	position: relative;
	flex-wrap: wrap;
}
.function_list:nth-child(2) {
	align-items: center;
}
.function_list + .function_list {
	margin-top: 3rem;
}
.function_text {
	text-align: left;
	z-index: 1;
}
.function_img {
	z-index: 1;
}
.function_title {
	color: #3F4040;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: 1.3px;
	border-bottom: solid 1px #167ABD;
	padding-bottom: 6px;
	margin-top: 8px;

  @media (380px <= width ) {
    font-size: var(--18px);
  }

  @media (1190px <= width ) {
    font-size: var(--26px);
  }
}
.function_subtitle {
	color: #167ABD;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	letter-spacing: 1.3px;
	position: relative;
	padding-left: 40px;

  @media (380px <= width ) {
    font-size: var(--16px);
  }

  @media (400px <= width ) {
    font-size: var(--18px);
  }

  @media (1190px <= width ) {
    font-size: var(--26px);
  }
}
.function_subtitle:before {
	content: "";
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: #167ABD;
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-4px);
}
.function_subtitle:after {
	content: "!";
	width: 35px;
	height: 35px;
	color: #FFF;
	position: absolute;
	top: 1%;
	left: 13px;
	font-size: 28px;
    @media (1190px <= width ) {
      top: -7%;
    }
}
.function_caption {
	color: #3F4040;
	font-size: var(--13px);
	font-style: normal;
	font-weight: 400;
	line-height: 180%;
	margin-top: 10px;

  @media (480px <= width ) {
    font-size: var(--14px);
  }

  @media (945px <= width ) {
    font-size: var(--15px);
  }
}
.function_uncher {
	display: grid;
	grid-template-columns: repeat(2, 2fr);
	width: 94%;
    max-width: 980px;
	align-items: center;
	gap: 16px;
	margin: 40px auto;
}
.function_uncher > li {
	height: 100%;
}
.function_uncher a {
	padding: 17px 30px 17px 10px;
	color: #3F4040;
	font-size: var(--14px);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	position: relative;
	box-shadow: 0 4px 0 0 rgba(68, 148, 78, 0.20);
	background-color: #fff;
	border-radius: 4px;
	width: 100%;
	display: flex;
	align-items: center;
	height: 100%;
	justify-content: center;
	text-align: center;

  @media (945px <= width ) {
    font-size: 0.9vw;
  }

  @media (1275px <= width ) {
    font-size: var(--14px);
  }

  &:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}
.function_uncher a::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	width: 19px;
	height: 19px;
	background-color: #202B68;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}
.function_uncher a::after {
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	transform: rotate(135deg);
	top: 50%;
	right: 16px;
	margin-top: -4px;
	border-top: solid 2px #FFF;
	border-right: solid 2px #FFF;
}
.function_list:before {
	content: "";
	background-color: #FFF;
	height: 100%;
	width: 98%;
	position: absolute;
	top: 0;
}
.function_list:nth-child(odd):before {
	left: 0;
}
.function_list:nth-child(even)::before {
	right: 0;
}
.function_list:nth-child(2)::before {
	background-color: inherit;
}
@media (59.0625rem <=width) {
	.function_uncher {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
		margin-bottom: 70px;
	}
	.function_list {
		flex-wrap: nowrap;
		align-items: start;
	}
	.function_list:nth-child(odd) .function_text {
		order: 1;
	}
	.function_list:nth-child(odd) .function_img {
		order: 2;
	}
	.function_list:nth-child(even) .function_text {
		order: 2;
	}
	.function_list:nth-child(even) .function_img {
		order: 1;
	}
	.function_list:before {
		width: 80%;
	}
}
.function_no {
	color: #202B68;
	text-align: left;
	font-size: var(--48px);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	display: block;
	position: absolute;
	top: -36px;
}
.function_tag {
	color: #167ABD;
	font-size: var(--14px);
	font-style: normal;
	font-weight: 700;
	line-height: 29px;
	border-radius: 2px;
	border: 1px solid #167ABD;
	display: inline-block;
	padding: 0 10px;
	margin-top: 23px;
}
@media (59.0625rem <=width) {
	.sec_function {
		margin: 0 auto 4em;
	}
}


/*　タレントパレットのその他の特徴
--------------------------------------------------------*/
/* 移植 */
.sec_other {
	padding: 5vw 0;

  h2 {
      font-family:Georgia, 'Times New Roman', Times, serif;
      width: fit-content;
      font-size: var(--24px);
      color: #3F4040;
      text-align: center;
      margin: 0 auto 0.8em;

      @media (48.0625rem <= width ) {
          font-size: var(--28px);
      }

      @media (59.0625rem <= width ) {
          font-size: var(--38px);
      }
  }

  .list_other {
    max-width: 980px;
    width: 90%;
    margin: auto;
    display: flex;
    gap: 6vw;
    justify-content: center;
    flex-wrap: wrap;

      @media (59.0625rem <=width) {
      max-width: 980px;
      gap: 5%;
      flex-wrap: nowrap;
      }

      li {
          width: 90%;

          h3 {
              font-size: var(--20px);
              font-style: normal;
              font-weight: 500;
              line-height: normal;
              color: #ffffff;
              display: flex;
              padding: 15px;
              background: #167ABD;
              position: relative;
              align-items: center;
              border-radius: 3px;
              justify-content: center;

              @media (59.0625rem <=width) {
                  font-size: var(--12px);
              }

              @media (68.75rem <=width) {
                  font-size: var(--14px);
              }

              @media (88.125rem <=width) {
                  font-size: var(--18px);
              }

              &::after {
                  content: '';
                  position: absolute;
                  left: 50%;
                  bottom: -6px;
                  width: 13px;
                  height: 13px;
                  transform: translateX(-50%) rotate(45deg);
                  background-color: #167ABD;
              }
          }

          .box_other {
            padding: 0 5%;
            margin-top: 5vw;

            @media (59.0625rem <=width) {
              margin-top: 25px;
            }

            img {
              margin-bottom: 0.8em;
            }

            .caption_other {
              font-size: var(--15px);
              color: #3F4040;
            }
          }
      }
  }
}


/*　導入までたった4ステップ
--------------------------------------------------------*/
.sec_4step {
  padding: 50px 0;
  background: #ffffff;
  overflow: hidden;

  h2 {
      width: fit-content;
      font-size: var(--24px);
      color: #202B68;
      text-align: center;
      padding: 10px 30px;
      margin: 0 auto 1.5em;

      @media (48.0625rem <= width ) {
        font-size: var(--26px);
      }
  }

  .list_4step {
      max-width: 770px;
      width: 90%;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      column-gap: 4%;
      row-gap: 2em;   

      @media (37.5rem <= width ) {
          grid-template-columns: repeat(4, 1fr);
          column-gap: 2%;
          row-gap: initial;
      }

      @media (48.0625rem <= width ) {
          grid-template-columns: repeat(2, 1fr);
          column-gap: 4%;
          row-gap: 2em;
      }

      @media (56.25rem <= width ) {
          grid-template-columns: repeat(4, 1fr);
          column-gap: 2%;
          row-gap: initial;
      }

      li {
          display: flex;
          flex-direction: column;
          align-items: center;

          h3 {
              color: #202B68;
              font-weight: bold;

              @media (37.5rem <= width ) {
                font-size: 2vw;
              }

              @media (48.0625rem <= width ) {
                font-size: var(--16px);
              }

              @media (56.25rem <= width ) {
                font-size: var(--12px);
              }

              @media (61.875rem <= width ) {
                font-size: var(--13px);
              }

              @media (68.75rem <= width ) {
                font-size: var(--15px);
              }

              @media (74.375rem <= width ) {
                font-size: var(--18px);
              }
          }
      }
  }

  .box_step {
      text-align: center;
      width: 160px;
      height: 220px;
      border-radius: 100px;
      background: #ffffff;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-bottom: 0.8em;
      z-index: 1;

      @media (37.5rem <= width ) {
          width: 120px;
          height: 180px;
      }

      @media (48.0625rem <= width ) {
          width: 160px;
          height: 220px;
      }

      @media (56.25rem <= width ) {
          width: 120px;
          height: 180px;
      }

      @media (68.75rem <= width ) {
          width: 160px;
          height: 220px;
      }

      &::before {
        width: 80%;
        height: 4px;
        content: "";
        position: absolute;
        background:#202B68;
        content: "";
        top: 50%;
        transform: translateY(-50%);
        bottom: 6px;
        right: -8em;
        z-index: -1;

        @media (37.5rem <= width ) {
            width: 45%;
            right: -3.5em;
        }

        @media (48.0625rem <= width ) {
            width: 70%;
            right: -7em;
        }

        @media (56.25rem <= width ) {
            width: 80%;
            right: -6em;
        }

        @media (68.75rem <= width ) {
            width: 40%;
            right: -4em;
        }
      }

      &::after {
          position: absolute;
          border: solid 1px #202B68;
          content: "";
          top: 6px;
          bottom: 6px;
          left: 6px;
          right: 6px;
          border-radius: 100px;
      }
  }

  .box_step_3rd {
      text-align: center;
      width: 160px;
      height: 220px;
      border-radius: 100px;
      background: #ffffff;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-bottom: 0.8em;
      z-index: 2;

      @media (37.5rem <= width ) {
          width: 120px;
          height: 180px;
      }

      @media (48.0625rem <= width ) {
          width: 160px;
          height: 220px;
      }

      @media (56.25rem <= width ) {
          width: 120px;
          height: 180px;
      }

      @media (68.75rem <= width ) {
          width: 160px;
          height: 220px;
      }

      &::before {
          width: 80%;
          height: 4px;
          content: "";
          position: absolute;
          background:#202B68;
          content: "";
          top: 50%;
          transform: translateY(-50%);
          bottom: 6px;
          left: -8em;
          z-index: -1;

          @media (37.5rem <= width ) {
            width: 0;
          }

          @media (48.0625rem <= width ) {
            width: 80%;
          }

          @media (56.25rem <= width ) {
            width: 0;
          }
      }

      &::after {
          position: absolute;
          border: solid 1px #202B68;
          content: "";
          top: 6px;
          bottom: 6px;
          left: 6px;
          right: 6px;
          border-radius: 100px;
      }
  }

  .box_step_last {
      text-align: center;
      width: 160px;
      height: 220px;
      border-radius: 100px;
      background: #202B68;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-bottom: 0.8em;
      z-index: 1;

      @media (37.5rem <= width ) {
          width: 120px;
          height: 180px;
      }

      @media (48.0625rem <= width ) {
          width: 160px;
          height: 220px;
      }

      @media (56.25rem <= width ) {
          width: 120px;
          height: 180px;
      }

      @media (68.75rem <= width ) {
          width: 160px;
          height: 220px;
      }

      &::before {
          width: 80%;
          height: 4px;
          content: "";
          position: absolute;
          background:#202B68;
          content: "";
          top: 50%;
          transform: translateY(-50%);
          bottom: 6px;
          left: -8em;
          z-index: -1;

          @media (37.5rem <= width ) {
              width: 45%;
              left: -3.5em;
          }

          @media (48.0625rem <= width ) {
              width: 70%;
              left: -7em;
          }

          @media (56.25rem <= width ) {
              width: 80%;
              left: -5.5em;
          }
      }

      &::after {
          position: absolute;
          border: solid 1px #ffffff;
          content: "";
          top: 6px;
          bottom: 6px;
          left: 6px;
          right: 6px;
          border-radius: 100px;
      }
  }

  .p_4step {
      font-size: var(--24px);
      color: #202B68;
      font-weight: bold;
      margin-bottom: 0.3em;
  }

  .p_4step_last {
      font-size: var(--24px);
      color: #ffffff;
      font-weight: bold;
      margin-bottom: 0.3em;
  }

  .p_4step span,
  .p_4step_last span {
      font-size: var(--34px);
      font-weight: bold;
  }

  .box_step img,
  .box_step_3rd img,
  .box_step_last img {
      height: 80px;

      @media (37.5rem <= width ) {
        height: 60px;
      }

      @media (48.0625rem <= width ) {
        height: 80px;
      }

      @media (56.25rem <= width ) {
        height: 60px;
      }

      @media (68.75rem <= width ) {
        height: 80px;
      }
  }

}


/*　お客様の目的やスタイルに合わせた最適なサポート体制
--------------------------------------------------------*/
.content_support {
    padding: 30px 0 0;
    background: transparent;

    @media (48.0625rem <= width ) {
        padding: 50px 0 0;
    }

    h2 {
        font-size: var(--24px);
        color: #3F4040;
        text-align: center;
        margin-bottom: 1.3em;

        @media (48.0625rem <= width ) {
            font-size: var(--20px);
            margin-bottom: 0.8em;
        }

        @media (59.0625rem <= width ) {
          font-size: var(--26px);
        }
    }

    .caption_support {
        color: #3F4040;
        line-height: 1.6em;
        padding: 0 5%;
        margin-bottom: 1.6em;

        @media (48.0625rem <= width ) {
            font-size: var(--14px);
            margin-bottom: 1.4em;
            text-align: center;
        }

        @media (59.0625rem <= width ) {
          font-size: var(--16px);
        }
    }

    .h3_support_01 {
        max-width: 300px;
        width: 90%;
        font-size: var(--20px);
        color: #3F4040;
        text-align: center;
        border-radius: 50px;
        padding: 15px 0;
        margin: 0 auto 1.5em;
        background: #ffffff;
        position: relative;

        @media (48.0625rem <= width ) {
          max-width: 640px;
        }

        @media (59.0625rem <= width ) {
          font-size: var(--24px);
        }

        &::before {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -23px;
            border: 8px solid transparent;
            border-top: 16px solid #EBF3FA;

            @media (48.0625rem <= width ) {
                bottom: -31px;
                border: 12px solid transparent;
                border-top: 20px solid #EBF3FA;
            }
        }
    }

    .h3_support_02 {
        font-size: var(--20px);
        color: #3F4040;
        text-align: center;
        margin: 0 auto 1.5em;
        padding: 0 4%;

        @media (48.0625rem <= width ) {
          font-size: var(--18px);
        }

        @media (59.0625rem <= width ) {
          font-size: var(--24px);
        }
    }

    .list_support {
        max-width: 980px;
        width: 90%;
        margin: 0 auto 2em;
        display: flex;
        flex-direction: column;
        row-gap: 10px;

        @media (48.0625rem <= width ) {
            margin: 0 auto 3em;
            display: grid;
            flex-direction: initial;
            grid-template-columns: repeat(2, 1fr);
            column-gap: 2.5%;
            row-gap: 15px;
        }

        @media (65.625rem <= width ) {/* 1050px */
          grid-template-columns: repeat(3, 1fr);
        }

        li {
            font-size: var(--18px);
            color: #ffffff;
            font-weight: bold;
            background: #167ABD;
            padding: 20px 0 20px 85px;
            display: flex;
            align-items: center;
            position: relative;

            @media (48.0625rem <= width ) {
                font-size: var(--16px);
                padding: 30px 0 30px 18%;
            }

            @media (65.625rem <= width ) {/* 1050px */
                font-size: var(--14px);
                padding: 30px 0 30px 22%;
            }

            @media (78.125rem <= width ) {/* 1250px */
                font-size: var(--18px);
                padding: 30px 0 30px 60px;
            }

            &::before {
                content: "";
                background: url(https://tp-img.imgix.net/s/lp/saiyo/pc/icon/icon_check.svg);
                background-size: contain;
                background-repeat: no-repeat;
                position: absolute;
                width: 28px;
                height: 28px;
                top: 50%;
                transform: translateY(-50%);
                left: 30px;

                @media (48.0625rem <= width ) {
                  left: 10px;
                }

                @media (73.75rem <= width ) {/* 1180px */
                  left: 15px;
                }
            }
        }
    }

    .bg_support_02 {
        padding: 20px 2% 50px;
        background: #ffffff;

        @media (48.0625rem <= width ) {
          padding: 20px 0;
        }

        .list_staff {
            max-width: 980px;
            width: 94%;
            margin: auto;
            display: grid;
            row-gap: 5%;

            @media (59.0625rem <= width ) {
                grid-template-columns: repeat(2, 1fr);
                column-gap: 2%;
                row-gap: initial;
                justify-content: space-around;
            }

            h4 {
                font-size: var(--26px);
                color: #202B68;
                margin-bottom: 0.6em;

                @media (48.0625rem <= width ) {
                  font-size: var(--24px);
                }

                @media (67.5rem <= width ) {/* 1080px */
                  font-size: var(--30px);
                }
            }

            h5 {
                font-size: var(--18px);
                color: #3F4040;
                margin-bottom: 0.5em;
                font-weight: 500;
            }

            p {
                font-size: var(--15px);
                color: #3F4040;

                @media (48.0625rem <= width ) {
                  font-size: max(var(--12px),1.3vw);
                }

                @media (71.875rem <= width ) {/* 1150px */
                  font-size: var(--15px);
                }
            }
        }
    }
}


/*____________________ Swiper Custum */
.slide_swiper {
    position: relative;
    padding-bottom: 60px;
}

.slide_img_box {
    width: 88%;
    text-align: center;
    position: absolute;
    bottom: 17px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    box-shadow: 0px 4px 0px 0px rgba(0, 115, 183, 0.20);
    padding: 10px 0;
}

.slide_img_box h3 {
    font-size: var(--18px);
    color: #167ABD;

    @media (59.0625rem <= width ) {
      font-size: var(--16px);
    }

    @media (62.5rem <= width ) {
      font-size: var(--18px);
    }
}

.slide_img_box p {
    font-size: var(--14px);
    color: #3F4040;

    @media (59.0625rem <= width ) {
      font-size: var(--12px);
    }

    @media (65rem <= width ) {/* 1040px */
      font-size: var(--14px);
    }
}

.swiper_container {
    position: relative;
}

.card01 {
    max-width: 980px;
    margin: 0 auto 1.5em;
}

.line_btm_sky {
    border-bottom: solid 1px #CCE3F1;
    margin-bottom: 2em;

    @media (48.0625rem <= width ) {
      margin-bottom: 3em;
    }
}

/* Swiper */
.swiper-button-prev::after,
.swiper-button-next::after {
    content: "" !important;
    background-repeat: no-repeat;
    background-size: contain;
    width: 32px;
    height: 32px;
    margin: auto;

    position: absolute;
}

.swiper-button-prev::after {
  background-image: url(https://tp-img.imgix.net/s/lp/saiyo/pc/parts/slide_arrow_left_.svg);
  left: -20px;
}

.swiper-button-next::after {
  background-image: url(https://tp-img.imgix.net/s/lp/saiyo/pc/parts/slide_arrow_right.svg);
  right: -20px;
}

/* 画像サイズ調整 */
/* .swiper-slide img {
  height: auto;
  width: 100%;
} */


/*　タレントパレットとは
--------------------------------------------------------*/
.bg_about {
    background: url(https://tp-img.imgix.net/s/lp/engagement/pc/bg/bg_footer@2x.png?auto=format);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.content_about {
    padding: 40px 0;
    border-bottom: solid 1px #ffffff;

    @media (48.0625rem <= width ) {
      padding: 40px 0;
    }
}

.content_about h2 {
    font-size: var(--22px);
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;

    @media (48.0625rem <= width ) {
        font-size: var(--24px);
        margin-bottom: 30px;
    }

    @media (59.0625rem <= width ) {
      font-size: var(--26px);
    }
}

ul.list_about {
    max-width: 880px;
    width: 82%;
    margin: 0 auto;

    @media (59.0625rem <= width ) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2%;
    }
}

ul.list_about li {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box_logo_tp {
    width: 307px;
    height: 116px;
    margin: 0 auto 1.3em;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (59.0625rem <= width ) {
        max-width: 384px;
        width: 100%;
        height: initial;
        padding: 20px 0;
        margin: initial;
    }

    @media (66.25rem <= width ) {/* 1060px */
      padding: 30px 0;
    }
}

.box_logo_tp img {
    max-width: 206px;

    @media (59.0625rem <= width ) {
      max-width: 230px;
    }
}

.caption_aboutSP {
    color: #ffffff;
    line-height: 1.6em;
    display: flex;
    justify-content: center;

    @media (59.0625rem <= width ) {
      display: none;
    }
}

.caption_aboutPC {
    color: #ffffff;
    line-height: 1.6em;
    display: none;

    @media (59.0625rem <= width ) {
        max-width: 370px;
        display: block;
    }

    @media (74.375rem <= width ) {/* 1190px */
      font-size: var(--20px);
    }
}

.vPC_large {
    display: none;

    @media (65.9375rem <= width ) {/* 1055px */
      display: block;
    }
}

/* CTA 4th */
.no_bg {
    background: none;
}


/*　Footer
--------------------------------------------------------*/
.box-footer-01 {
    padding: 30px 0;
    letter-spacing: 0;
    background: #3F4040;

    @media (48.0625rem <= width) {
      letter-spacing: 0.1em;
    }

    .footer_link {
        width: 94%;
        margin: 0 auto 1.5em;
        display: grid;
        row-gap: 1em;

        @media (48.0625rem <= width) {
            max-width: 400px;
            display: flex;
            justify-content: center;
            row-gap: initial;
        }

        a {
            font-size: var(--15px);
            color: #ffffff;
            text-decoration: underline;

            @media (48.0625rem <= width) {
              font-size: var(--12px);
            }

            @media (67.8125rem <= width) {
              font-size: var(--15px);
            }

            &:hover {
              text-decoration: none;
            }
        }

        li {

          &:first-child a {

            @media (48.0625rem <= width) {
              padding-right: 10px;
            }
          }

          &:last-child {

            @media (48.0625rem <= width) {
              padding-left: 10px;
            }
          }
        }
    }

    .footer_company {
        font-size: var(--10px);
        color: #ffffff;
        margin-bottom: 2em;
        padding-left: 3%;
        padding-bottom: 30px;
        border-bottom: solid 1px #ffffff;

        @media (48.0625rem <= width) {
            font-size: var(--12px);
            text-align: center;
            margin-bottom: 1em;
            padding-left: initial;
            padding-bottom: 40px;
        }

        @media (83.75rem <= width) {
          font-size: var(--14px);
        }
    }

    .footer-copyright {
        font-size: var(--10px);
        color: #ffffff;
        text-align: center;

        @media (83.75rem <= width) {
          font-size: var(--12px);
        }
    }
}





/*　お問い合わせはこちら btn for SP
--------------------------------------------------------*/
#click-btn {
	width: 93%;
	max-width: 400px;
	font-family: inherit;
	font-size: var(--15px);
	color: #CE1E54;
	font-weight: bold;
	display: block;
	padding: 10px 0;
	border-radius: 50px;
	text-align: center;
	border: solid 1px #CE1E54;
	background: #ffffff;
	letter-spacing: 0.1em;
	z-index: 100;
	cursor: pointer;
	margin: 0 auto 12px;
}

@media (48.0625rem <=width) {
	#click-btn {
		display: none;
	}
}

#popup-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 101;
}

#popup-inside {
	text-align: center;
	width: 100%;
	height: 100%;
	background: #ffffff;
	margin: 0 auto;
	padding-top: 30px;
	position: relative;
}

#popup-inside iframe {
	text-align: center;
	width: 100%;
	min-height: 100vh;
	background: #ffffff;
	position: relative;
}

#close {
	position: absolute;
	top: 0;
	right: 5px;
	cursor: pointer;
}


/* Q&A accordion
--------------------------------------------------------*/
.sec_q_and_a {
    padding: 2em 5% 0;

    @media (769px <=width) {
        padding: 2em 5%;
    }
}

.sec_q_and_a_ttl_en {
  font-size: var(--26px);
  color: #3F4040;
  text-align: center;
  margin-bottom: 1em;
}

.sec_q_and_a_desc {
    font-size: var(--14px);
    color: #3F4040;
    text-align: center;
    margin-bottom: 2em;

    @media (769px <=width) {
        font-size: var(--16px);
    }
}

.accordion-container {
    max-width: 980px;
    margin: 0 auto;
    border-bottom: none;

    @media (769px <=width) {
        margin: 0 auto 50px;
    }
}

.accordion-container .accordion-ttl-support {
    font-size: var(--12px);
    position: relative;
    margin: 0;
    padding: 0.625em 4% 0.625em 2%;
    background-color: #fff;
    color: #3F4040;
    font-weight: normal;
    cursor: pointer;

    @media (769px <=width) {
        font-size: var(--16px);
        padding: 1.4em 0.625em 1.4em 2em;
    }
}

.accordion-container .accordion-content + .accordion-ttl-support {
    margin-top: 10px;

    @media (769px <=width) {
        margin-top: 15px;
    }
}

.accordion-ttl-support_q {
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    margin-right: 2%;
    background-color: #167ABD;
    color: #ffffff;

    @media (48.0625rem <=width) {
        width: 30px;
        height: 30px;
        padding-top: 2px;
        margin-right: 8px;
    }
}

.accordion-container .accordion-ttl-support::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 14px;
    height: 1px;
    /*縦線に*/
    transform: rotate(90deg);
    background: #167ABD;
    transition: all .3s ease-in-out;

    @media (769px <=width) {
        width: 24px;
    }
}

.accordion-container .accordion-ttl-support::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    /*横線*/
    width: 14px;
    height: 1px;
    background: #167ABD;
    transition: all .2s ease-in-out;

    @media (769px <=width) {
        width: 24px;
    }
}

.accordion-container .accordion-ttl-support.open::before {
    transform: rotate(180deg);
}

.accordion-container .accordion-ttl-support.open::after {
    opacity: 0;
}

.accordion-container>.accordion-content {
    background: #ffffff;
    padding: 0 2% 10px 2%;
    width: auto;
    margin: 0 0 15px;
    border-radius: 0;
    font-size: 15px;

    @media (769px <=width) {
        padding: 0 20px 20px 2em;
    }
}

.accordion-content_desc {
    font-size: var(--12px);
    color: #3F4040;
    line-height: 1.8em;
    margin: 0;
    padding: 10px 10px 10px 3em;
    background: #F9F9F9;
    position: relative;

    @media (769px <=width) {
        font-size: var(--16px);
        padding: 20px 20px 20px 4em;
    }

    &::before {
        color: #167ABD;
        content: "A";
        position: absolute;
        top: 13px;
        left: 10px;
        width: 20px;
        height: 20px;
        background-color: #ffffff;
        border: solid 1px #167ABD;
        display: flex;
        align-items: center;
        justify-content: center;

        @media (769px <=width) {
            width: 30px;
            height: 30px;
            top: 20px;
            left: 20px;
        }
    }

}

.accordion-container>.accordion-content a {
    color: #39abf7;
    font-weight: bold;
}

.accordion-container>.accordion-content a:hover {
    text-decoration: underline;
}

@media screen and (max-width:768px) {
    .accordion-container .accordion-ttl-support::before {
        right: 5px;
    }
    .accordion-container .accordion-ttl-support::after {
        right: 5px;
    }
}

