@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 5px 20px 10px;
    }
}  

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

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

.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 (59.375rem <= width) {/* 950px */
    .header_nav {
        margin-left: initial;
        margin-right: 20em;
    } 
}

@media (68.75rem <= width) {/* 1100px */
    .header_nav {
        margin-right: 18em;
    } 
}

@media (78.125rem <= width) {/* 1250px */
    .header_nav {
        margin-right: 12em;
    } 
}

@media (82.5rem <= width) {/* 1320px */
    .header_nav {
        margin-right: 8em;
    } 
}

@media (87.5rem <= width) {/* 1400px */
    .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(2, 17, 84, 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(2, 17, 84, 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;
}

@media (48.0625rem <= width ) {/* 769px */
    #contents {
        min-width: 980px;
        display: flex;
    }
}

@media (61.25rem <= width ) {/* 980px */
    #contents {
        display: flex;
    }
}

.bg_fv {
    display: none;
}

@media (48.0625rem <= width ) {/* 769px */
    .bg_fv {
        display: block;
        width: 100%;
        height: 500px;
        background: url(https://tp-img.imgix.net/s/lp/evaluation/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 */
    .bg_fv {
        height: 566px;
    }
}

.sec_content {
    position: relative;
}

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

@media (48.0625rem <= width ) {/* 769px */
    .sec_right {
        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) {/* 945px */
    .sec_right {
        top: 20px;
    }
}

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

.sec_form 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% 40px;
    margin-top: -80px;
    width: 100%;
    background: url(https://tp-img.imgix.net/s/lp/evaluation/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: 130px 2% 50px;
        position: relative;
        top: -80px;
        margin-bottom: -80px;
        background: url(https://tp-img.imgix.net/s/lp/evaluation/pc/bg/bg_fv@2x.png?auto=format);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
}

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

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

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

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

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

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

ul.list_fv>li:first-child {
    width: 83%;
    margin: 0 auto 2em;
}

@media (48.0625rem <= width ) {
    ul.list_fv>li:first-child {
        width: 73%;
        padding-top: 20px;
    }
}

@media (52.5rem <= width ) {/* 840px */
    ul.list_fv>li:first-child {
        width: 63%;
    }
}

@media (59.0625rem <= width) {/* 945px */
    ul.list_fv>li:first-child {
        width: initial;
    }
}

.lead_fv {
    width: fit-content;
    font-size: var(--13px);
    color: #202B68;
    font-weight: bold;
    background: #DCAA1F;
    padding: 8px 22px;
    margin-bottom: 1.2em;
    border-radius: 50px;
    position: relative;
}

@media (30rem <= width ) {/* 480px */
    .lead_fv {
        font-size: var(--20px);
        margin-bottom: 0.5em;
    }
}

.lead_fv::before {
    bottom: -12px;
    border-style: solid;
    border-color: transparent transparent #DCAA1F transparent;
    border-width: 0 25px 20px 0;
    transform:rotate(90deg); 
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: auto;
}

.lead_fv span {
    color: #035AA3;
    font-weight: bold;
}

.sec_fv .caption_fv {
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: var(--18px);
    color: #ffffff;
    margin-bottom: 1.2em;
}

@media (30rem <= width ) {/* 480px */
    .sec_fv .caption_fv {
        font-size: var(--22px);
        margin-bottom: 0.8em;
    }
}

@media (66.5625rem <= width ) {/* 1065px */
    .sec_fv .caption_fv {
        font-size: var(--27px);
    }
}

.sec_fv span.txt_month {
    font-size: var(--14px);
}

@media (30rem <= width ) {
    .sec_fv span.txt_month {
        font-size: var(--20px);
    }
}

@media (66.5625rem <= width ) {/* 1065px */
    .sec_fv span.txt_month {
        font-size: var(--22px);
    }
}

.sec_fv span.txt_100 {
    font-size: var(--30px);
}

@media (30rem <= width ) {
    .sec_fv span.txt_100 {
        font-size: var(--38px);
    }
}

@media (66.5625rem <= width ) {/* 1065px */
    .sec_fv span.txt_100 {
        font-size: var(--48px);
    }
}

/* 1430 - 480 = 950 */
.sec_fv .title_tp {
    font-size: clamp(var(--18px),(100vw - 480px) * 10 / 950 + var(--18px),var(--28px));
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 1em;
}

@media (48.0625rem <= width ) {
    .sec_fv .title_tp {
        margin-bottom: 0.9em;
    }
}

.sec_fv .title_tp span {
    font-size: var(--23px);
    color: #202B68;
    font-weight: bold;
    background: #ffffff;
    border-radius: 6px;
    padding: 5px;
    margin-right: 0.2em;
}

@media (30rem <= width ) {
    .sec_fv .title_tp span {
        font-size: var(--30px);
    }
}

@media (48.0625rem <= width ) {
    .sec_fv .title_tp span {
        font-size: max(var(--22px),2vw);
    }
}

@media (89.375rem <= width ) {/* 1430px */
    .sec_fv .title_tp span {
        font-size: var(--35px);
        padding: 5px 8px 5px 15px;
    }
}

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 ) {/* 945px */
    ul.list_demo_price_sp {
        display: none;
    }
}

ul.list_demo_price_pc {
    display: none;
  }
  
@media (59.0625rem <= width ) {/* 945px */
    ul.list_demo_price_pc {
        z-index: 100;
        display: flex;
        column-gap: 0.5em;
        margin-top: 1em;
    }
}

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

.sec_fv .note_fv a {
	max-width: fit-content;
	display: block;
	text-align: center;
	font-size: var(--14px);
	color: #ffffff;
	padding: 0 20px 5px 0;
	border-bottom: solid 1px #ffffff;
	position: relative;
}

@media (48.0625rem <= width ) {
    .sec_fv .note_fv a {
        font-size: max(var(--12px),1vw);
    }
}

@media (66.5625rem <= width ) {/* 1065px */
    .sec_fv .note_fv a {
        font-size: var(--15px);
    }
}

.sec_fv .note_fv a:hover {
	border-bottom: solid 1px transparent;
}

.sec_fv .note_fv a::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 ) {
    .sec_fv .note_fv a::after {
        top: 5px;
    }
}

@media (66.5625rem <= width ) {/* 1065px */
    .sec_fv .note_fv a::after {
        top: 10px;
    }
}

.sec_fv .note_fv a:hover::after {
	right: 0;
}

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

@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;
    }
}

.comment_fv {
    max-width: 1100px;
    width: 94%;
    margin: auto;
    font-size: var(--11px);
    color: #ffffff;
    text-align: center;
}


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

@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;
}

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

.txt_upkeep {
    font-family: Avenir;
    color: #202B68;
    font-weight: bold;
    border-radius: 50px;
    padding: 8px 18px;
    background: #E2EDF7;
    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;
}


  /*　CTA 1st
--------------------------------------------------------*/
.sec_cta {
    width: 100%;
    padding: 30px 0;
    background: url(https://tp-img.imgix.net/s/lp/evaluation/sp/bg/bg_cta@2x.png?auto=format);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (59.0625rem <= width) {
    .sec_cta {
        padding: 30px 0 0;
        background: url(https://tp-img.imgix.net/s/lp/evaluation/pc/bg/bg_cta@2x.png?auto=format);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
}

ul.list_cta {
    width: 94%;
    margin: auto;
    display: grid;
    row-gap: 2em;
}

@media (59.0625rem <= width) {
    ul.list_cta {
        max-width: 1000px;
        margin: initial;
        margin-left: 1%;
        row-gap: initial;
        grid-template-columns: 31% 68%;
        column-gap: 1%;
    }
}

@media (88.125rem <= width ) {/* 1410px */
    ul.list_cta {
        max-width: 1100px;
        margin: auto;
        grid-template-columns: 42% 55%;
        column-gap: 3%;
    }
}

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

.sec_cta .caption_fv {
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: var(--17px);
    color: #ffffff;
    margin-bottom: 0.6em;
}

@media (30rem <= width ) {/* 480px */
    .sec_cta .caption_fv {
        font-size: var(--20px);
        margin-bottom: 0.4em;
    }
}

@media (59.0625rem <= width ) {/* 945px */
    .sec_cta .caption_fv {
        font-size: var(--16px);
    }
}

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

.sec_cta span.txt_month {
    font-size: var(--14px);
}

@media (30rem <= width ) {
    .sec_cta span.txt_month {
        font-size: var(--20px);
    }
}

@media (59.0625rem <= width ) {/* 945px */
    .sec_cta span.txt_month {
        font-size: var(--16px);
    }
}

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

.sec_cta span.txt_100 {
    font-size: var(--30px);
}

@media (30rem <= width ) {
    .sec_cta span.txt_100 {
        font-size: var(--38px);
    }
}

@media (68.125rem <= width ) {/* 1090px */
    .sec_cta span.txt_100 {
        font-size: var(--48px);
    }
}

.sec_cta .title_tp {
    font-size: var(--18px);
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0.6em;
}

@media (59.0625rem <= width) {
    .sec_cta .title_tp {
        font-size: var(--20px);
    }
}

@media (73.125rem <= width ) {/* 1170px */
    .sec_cta .title_tp {
        font-size: var(--25px);
    }
}

.sec_cta .title_tp span {
    font-size: var(--19px);
    color: #202B68;
    font-weight: bold;
    background: #ffffff;
    border-radius: 6px;
    padding: 0 2px 3px 4px;
    margin-right: 0.2em;
}

@media (30rem <= width ) {/* 480px */
    .sec_cta .title_tp span {
        font-size: var(--26px);
    }
}

@media (48.0625rem <= width) {
    .sec_cta .title_tp span {
        font-size: var(--23px);
        padding: 0 3px 3px 5px;
        margin-right: 0.2em;
    }
}

@media (59.0625rem <= width) {
    .sec_cta .title_tp span {
        font-size: var(--20px);
    }
}

@media (73.125rem <= width ) {/* 1170px */
    .sec_cta .title_tp span {
        font-size: var(--27px);
        padding: 0 8px 3px 15px;
    }
}

ul.list_cta_child {
    display: grid;
    grid-template-columns: 72% 24%;
    column-gap: 1%;
    padding-left: 3%;
    margin-bottom: 1.3em;
}

@media (59.0625rem <= width) {
    ul.list_cta_child {
        grid-template-columns: 68% 28%;
        margin-bottom: initial;
    }
}

ul.list_cta_sibling {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-row-gap: 0px;
    margin-bottom: 1.5em;
}

@media (59.0625rem <= width) {
    ul.list_cta_sibling {
        grid-template-columns: 20% 37% 37%;
        margin-bottom: initial;
    }
}

.grid_item1 {
    grid-area: 1 / 1 / 2 / 3;
}

@media (59.0625rem <= width) {
    .grid_item1 {
        grid-area: initial;
    }
}

.grid_item2 {
    grid-area: 2 / 1 / 3 / 2;
}

@media (59.0625rem <= width) {
    .grid_item2 {
        grid-area: initial;
    }
}

.grid_item3 {
    grid-area: 2 / 2 / 3 / 3;
}

@media (59.0625rem <= width) {
    .grid_item3 {
        grid-area: initial;
    }
}

ul.list_cta_sibling li:nth-child(n+2) {
    display: flex;
    align-items: flex-end;
}

ul.list_cta_sibling li:nth-child(2) {
    justify-content: flex-end;
    padding-right: 10px;
}

@media (59.0625rem <= width) {
    ul.list_cta_sibling li:nth-child(2) {
        margin-left: 6%;
        justify-content: initial;
        padding-right: initial;
    }
}

ul.list_cta_sibling li:last-child {
    justify-content: flex-start;
    padding-left: 12px;
}

@media (59.0625rem <= width) {
    ul.list_cta_sibling li:last-child {
        margin-left: 0;
        justify-content: initial;
        padding-left: initial;
    }
}

.p_cta_fukidasi {
    width: fit-content;
    margin: auto;
    font-size: var(--13px);
    color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    background: #EA6390;
    border-radius: 50px;
    position: relative;
    top: -8px;
}

@media (59.0625rem <= width) {
    .p_cta_fukidasi {
        font-size: var(--10px);
        padding: 10px 6px;
        border-radius: 15px;
        top: -8px;
    }
}

@media (70.5rem <= width ) {/* 1128px */
    .p_cta_fukidasi {
        font-size: var(--12px);
        padding: 10px 12px;
    }
}

.p_cta_fukidasi::before {
    border-style: solid;
    border-color: #EA6390 transparent transparent transparent;
    border-width: 10px 5px 0 5px;
    transform:rotate(135deg); 
    content: "";
    position: absolute;
    right: 45%;
    transform: translateX(-45%);
    bottom: -10px;
    width: 0;
    height: 0;
}

@media (59.0625rem <= width) {
    .p_cta_fukidasi::before {
        transform:rotate(75deg);
        right: 0;
        bottom: 0;
    }
}

.sec_cta .note_fv a {
	max-width: fit-content;
	display: block;
	text-align: center;
	font-size: var(--14px);
	color: #ffffff;
	padding: 0 20px 5px 0;
	border-bottom: solid 1px #ffffff;
	position: relative;
}

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

@media (70.5rem <= width ) {/* 1128px */
    .sec_cta .note_fv a {
        font-size: var(--15px);
    }
}

.sec_cta .note_fv a:hover {
	border-bottom: solid 1px transparent;
}

.sec_cta .note_fv a::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 (59.0625rem <= width) {
    .sec_cta .note_fv a::after {
        top: 8px;
    }
}

.sec_cta .note_fv a:hover::after {
	right: 0;
}


  /*　人事評価のこんな悩みを解決
--------------------------------------------------------*/
.content_solution {
    padding: 30px 0 50px;
    background: url(https://tp-img.imgix.net/s/lp/evaluation/pc/bg/bg_eclipse.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top 18em center;
}

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

.ttl_en {
    width: fit-content;
    color: #202B68;
    font-family: "Zen Antique Soft";
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: #FFF;
    padding: 3px 7px 3px 10px;
    margin: 0 auto 1em;
    box-shadow: 0px 2px 0px 0px rgba(0, 115, 183, 0.20);
}

.sec_solution {
    margin-bottom: 4em;
}

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

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

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

.marker {
    font-weight: bold;
    color: #3F4040;
    background: rgba(255, 255, 255, 0) linear-gradient(transparent 70%, #ffffff 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 ) {
    ul.list_solution {
        grid-template-columns: 32% 32% 32%;
        column-gap: 2%;
        row-gap: initial;
        margin: auto;
    }
}

@media (84.6875rem <= width ) {/* 1355px */
    ul.list_solution {
        grid-template-columns: 30.6% 30.6% 30.6%;
        column-gap: 4%;
        row-gap: initial;
    }
}

ul.list_solution>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 ) {
    ul.list_solution>li {
        height: 100%;
        padding: 40px 6% 20px;
    }
}

@media (78.125rem <= width ) {/* 1250px */
    ul.list_solution>li {
        padding: 40px 10% 20px;
    }
}

ul.list_solution>li::before {
    content: "";
    width: 46px;
    height: 46px;
    background: url(https://tp-img.imgix.net/s/lp/evaluation/sp/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/evaluation/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(--18px);
    color: #202B68;
}

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

@media (78.125rem <= width ) {/* 1250px */
    .caption_solution {
        font-size: var(--20px);
    }
}

.txt_pnk {
    color: #EA6390;
}

@media (59.0625rem <= width ) {
    ul.list_solution>li:first-child img,
    ul.list_solution>li:last-child img {
        position: initial;
        top: initial;
        right: initial;
    }
}

@media (59.0625rem <= width ) {
    ul.list_solution>li:nth-child(2) img {
        position: initial;
        top: initial;
        right: initial;
    }
}

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

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

ul.list_solution_child 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.60);
    position: relative;
    padding-bottom: 20px;
}

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

.sec_solution_2nd::after {
    width: 140px;
    height: 40px;
    content: "";
    background: url(https://tp-img.imgix.net/s/lp/evaluation/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 ) {
    .sec_solution_2nd::after {
        bottom: -50px;
    }
}

ul.list_solution_2nd {
    border-radius: 20px 20px 0 0;
    background: #202B68;
    position: relative;
    padding: 20px 0 10px;
}


@media (48.0625rem <= width ) {
    ul.list_solution_2nd {
        margin-bottom: -8px;
    }
}

@media (50rem <= width ) {/* 800px */
    ul.list_solution_2nd {
        margin-bottom: -7px;
    }
}

@media (51.875rem <= width ) {/* 830px */
    ul.list_solution_2nd {
        margin-bottom: -6px;
    }
}

@media (53.75rem <= width ) {/* 860px */
    ul.list_solution_2nd {
        margin-bottom: -5px;
    }
}

@media (56.25rem <= width ) {/* 900px */
    ul.list_solution_2nd {
        margin-bottom: -4px;
    }
}

@media (58.75rem <= width ) {/* 940px */
    ul.list_solution_2nd {
        margin-bottom: -2px;
    }
}

@media (61.25rem <= width ) {/* 980px */
    ul.list_solution_2nd {
        margin-bottom: -1px;
    }
}

@media (62.5rem <= width ) {
    ul.list_solution_2nd {
        margin-bottom: initial;
    }
}


@media (59.0625rem <= width ) {
    ul.list_solution_2nd {
        display: grid;
        grid-template-columns: 48% 48%;
        column-gap: 4%;
        justify-content: center;
    }
}

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

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

ul.list_solution_2nd li:first-child {
    padding-bottom: 10px;
}

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

ul.list_solution_2nd>li img {
    width: 60%;
    max-width: 300px;
}

@media (59.0625rem <= width ) {
    ul.list_solution_2nd>li img {
        width: 100%;
        max-width: 200px;
    }
}


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

@media (59.0625rem <= width ) {
    ul.list_solution_2nd_child {
        grid-template-columns: 44% 55%;
        column-gap: 1%;
        row-gap: initial;
        justify-content: center;
        padding: 0 2%;
    }
}

@media (79.6875rem <= width ) {/* 1275px */
    ul.list_solution_2nd_child {
        grid-template-columns: 48% 48%;
        column-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 ) {
    ul.list_solution_2nd_child li img {
        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 ) {
    ul.list_solution_2nd_child li:last-child {
        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 ) {
    .p_solution_underline {
        font-size: var(--18px);
    }
}

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

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

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

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

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

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

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

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

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

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

@media (59.0625rem <= width ) {
    ul.list_subject {
        grid-template-columns: 32% 32% 32%;
        column-gap: 2%;
        row-gap: initial;
    }
}

@media (84.6875rem <= width ) {/* 1355px */
    ul.list_subject {
        grid-template-columns: 30.6% 30.6% 30.6%;
        column-gap: 4%;
        row-gap: initial;
    }
}

ul.list_subject 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 ) {
    ul.list_subject li {
        height: 100%;
        border-radius: 10px;
        padding-bottom: 20px;
    }
}

ul.list_subject li h3 {
    width: 100%;
    height: 66px;
    font-size: var(--18px);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 0;
    padding-left: 20px;
    margin-bottom: 0.5em;
    background: #2EA7E0;
    position: relative;
}

@media (59.0625rem <= width ) {
    ul.list_subject li h3 {
        height: 56px;
        font-size: var(--13px);
    }
}

@media (68.75rem <= width ) {/* 1100px */
    ul.list_subject li h3 {
        height: 56px;
        font-size: var(--15px);
    }
}

@media (88.125rem <= width ) {/* 1410px */
    ul.list_subject li h3 {
        height: 66px;
        font-size: var(--18px);
    }
}

ul.list_subject li h3::before {
    width: 46px;
    height: 46px;
    font-size: var(--24px);
    color: #2EA7E0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #ffffff;
    position: absolute;
    top: 10px;
    left: 10px;
}

@media (59.0625rem <= width ) {
    ul.list_subject li h3::before {
        width: 22px;
        height: 22px;
        font-size: var(--16px);
        top: 16px;
        left: 3px;
    }
}

@media (68.75rem <= width ) {/* 1100px */
    ul.list_subject li h3::before {
        width: 30px;
        height: 30px;
        font-size: var(--20px);
        top: 13px;
    }
}

@media (88.125rem <= width ) {/* 1410px */
    ul.list_subject li h3::before {
        width: 46px;
        height: 46px;
        font-size: var(--24px);
        top: 10px;
        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%;
}

.box_subject img {
    margin-bottom: 0.8em;
}

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

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

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

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

/* タレントパレットの強み */
.sec_strength {
    text-align: center;
    margin: 3em 0 2em;
}

@media (59.0625rem <= width ) {
    .sec_strength {
        margin: 3em 0 4em;
    }
}

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

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

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

.caption_strength {
    font-size: var(--20px);
    color: #3F4040;
    font-weight: bold;
    margin-bottom: 0.5em;
}

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

.sec_strength img {
    max-width: 768px;
    width: 90%;
    margin-bottom: 1em;
}

.sec_strength h3 {
    width: fit-content;
    font-size: var(--20px);
    color: #3F4040;
    font-weight: normal;
    margin: 0 auto;
    padding-bottom: 5px;
    line-height: 1.6em;
}

@media (59.0625rem <= width ) {
    .sec_strength h3 {
        font-size: var(--22px);
        line-height: initial;
    }
}

@media (62.5rem <= width ) {
    .sec_strength h3 {
        font-size: var(--26px);
    }
}

.txt_strength {
    font-weight: bold;
}

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

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


/* 企業の戦略人事を叶えるタレントパレットの機能 */
.sec_function {
    max-width: 980px;
    width: 90%;
    text-align: center;
    margin: 0 auto 3em;
}

@media (59.0625rem <= width ) {
    .sec_function {
        margin: 0 auto 4em;
    }
}

.sec_function h2 {
    width: 100%;
    height: 80px;
    font-size: var(--20px);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 0;
    padding-left: 20px;
    background: #2EA7E0;
}

@media (48.0625rem <= width ) {
    .sec_function h2 {
        padding-left: initial;
    }
}

@media (59.0625rem <= width ) {
    .sec_function h2 {
        height: 60px;
    }
}

ul.list_about_item {
    width: 100%;
    display: grid;
    grid-template-columns: 50% 1fr;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 0 0 10px 10px;
    border: solid 1px #DDDDDD;
    border-top: none;
    padding: 15px 4%;
}

@media (59.0625rem <= width ) {
    ul.list_about_item {
        grid-template-columns: 20% 20% 20% 20% 20%;
        border-radius: 0 0 20px 20px;
        padding: 10px;
    }
}

@media (70rem <= width ) {/* 1120px */
    ul.list_about_item {
        padding: 30px;
    }
}

ul.list_about_item li {
    text-align: center;
    padding: 10px;
    border: dashed 1px #CCCCCC;
}

@media (59.0625rem <= width ) {
    ul.list_about_item li {
        padding: 10px 0;
    }
}

@media (59.0625rem <= width ) {
    ul.list_about_item li:first-child,
    ul.list_about_item li:nth-child(2),
    ul.list_about_item li:nth-child(3),
    ul.list_about_item li:nth-child(4),
    ul.list_about_item li:nth-child(5) {
        padding-bottom: 20px;
    }

    ul.list_about_item li:nth-child(6),
    ul.list_about_item li:nth-child(7),
    ul.list_about_item li:nth-child(8),
    ul.list_about_item li:nth-child(9),
    ul.list_about_item li:last-child {
        padding-top: 20px;
    }
}

ul.list_about_item li:first-child,
ul.list_about_item li:nth-child(2),
ul.list_about_item li:nth-child(3),
ul.list_about_item li:nth-child(4),
ul.list_about_item li:nth-child(5),
ul.list_about_item li:nth-child(6),
ul.list_about_item li:nth-child(7),
ul.list_about_item li:nth-child(8),
ul.list_about_item li:nth-child(9),
ul.list_about_item li:last-child {
    border-top: none;
}

ul.list_about_item li:nth-child(9),
ul.list_about_item li:last-child {
    border-bottom: none;
}

ul.list_about_item li:first-child,
ul.list_about_item li:nth-child(3),
ul.list_about_item li:nth-child(5),
ul.list_about_item li:nth-child(7),
ul.list_about_item li:nth-child(9) {
    border-left: none;
    border-right: none;
}

ul.list_about_item li:nth-child(2),
ul.list_about_item li:nth-child(4),
ul.list_about_item li:nth-child(6),
ul.list_about_item li:nth-child(8),
ul.list_about_item li:last-child {
    border-right: none;
}

@media (59.0625rem <= width ) {
    ul.list_about_item li:nth-child(6) {
        border-left: none;
    }

    ul.list_about_item li:nth-child(6),
    ul.list_about_item li:nth-child(7),
    ul.list_about_item li:nth-child(8) {
        border-bottom: none;
    }

    ul.list_about_item li:nth-child(3),
    ul.list_about_item li:nth-child(5),
    ul.list_about_item li:nth-child(7),
    ul.list_about_item li:nth-child(9) {
        border-left: dashed 1px #CCCCCC;
    }
}

ul.list_about_item li img {
    height: 25px;
    margin-bottom: 5px;
}

@media (59.0625rem <= width ) {
    ul.list_about_item li img {
        height: 35px;
    }
}

ul.list_about_item li p {
    color: #3F4040;
}

@media (59.0625rem <= width ) {
    ul.list_about_item li p {
        font-size: var(--12px);
    }
}

@media (70.625rem <= width ) {/* 1130px */
    ul.list_about_item li p {
        font-size: var(--16px);
    }
}

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

.sec_record h2 {
    width: fit-content;
    font-size: var(--26px);
    color: #3F4040;
    margin: 0 auto 1.2em;
    line-height: 2em;
}

@media (48.0625rem <= width ) {
    .sec_record h2 {
        font-size: var(--20px);
        line-height: initial;
        margin: 0 auto 1.5em;
    }
}

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

.sec_record h2 span {
    padding-bottom: 10px;
}

@media (48.0625rem <= width ) {
    .sec_record h2 span {
        padding-bottom: 15px;
    }
}

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

.marker_nvy {
    background: rgba(255, 255, 255, 0) linear-gradient(transparent 90%, #202B68 0%) repeat scroll 0 0;
}

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

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

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

.box_record {
    max-width: 810px;
    width: 90%;
    margin: auto;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 7%;
}



/*　「人事評価機能」をご活用いただいている企業例
--------------------------------------------------------*/
.content_case {
    padding: 30px 0 40px;
    background: rgba(255, 255, 255, 0.40);
}

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

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

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

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

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

@media (59.0625rem <= width ) {
    ul.list_case {
        grid-template-columns: 32% 32% 32%;
        column-gap: 2%;
        row-gap: initial;
    }
}

@media (84.6875rem <= width ) {/* 1355px */
    ul.list_case {
        grid-template-columns: 30.6% 30.6% 30.6%;
        column-gap: 4%;
        row-gap: initial;
    }
}

ul.list_case > 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 ) {
    ul.list_case > li{
        padding-bottom: 10px;
    }
}

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

.box_case_item {
    padding: 10px 15px;
}

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

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

.p_tag {
    width: fit-content;
    font-size: var(--12px);
    color: #EA6390;
    padding: 7px 4px;
    margin-bottom: 1em;
    border-radius: 2px;
    background: rgba(234, 99, 144, 0.07);   
}

ul.list_case h3 {
    font-size: var(--18px);
    color: #2A78AE;
    margin-bottom: 0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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


/*　より具体的な事例を知りたい方こちら
--------------------------------------------------------*/
.sec_work {
    max-width: 1100px;
    margin: 0 auto 2.5em;
    padding: 0 0 30px;
    background: rgb(222, 235, 247, 0.5);
}

@media (48.0625rem <= width ) {
    .sec_work {
        margin: 0 auto 4em;
        padding: 0 0 40px;
    }
}

.sec_work h2 {
    width: 100%;
    height: 130px;
    font-size: var(--20px);
    color: #ffffff;
    background: url(https://tp-img.imgix.net/s/lp/evaluation/pc/bg/bg_work@2x.png?auto=format);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    padding-top: 25px;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

@media (48.0625rem <= width ) {
    .sec_work h2 {
        height: 130px;
        background: url(https://tp-img.imgix.net/s/lp/evaluation/pc/bg/bg_work@2x.png?auto=format);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding-top: 35px;
        border-radius: 45px 45px 0 0;
    }
}

@media (53.75rem <= width ) {/* 860px */
    .sec_work h2 {
        height: 144px;
    }
}

/* CTA DL */
.box_work_cta {
    max-width: 640px;
    width: 90%;
    margin: -5.5em auto 2em;
    position: relative;
}

@media (48.0625rem <= width ) {
    .box_work_cta {
        margin: -4.3em auto 2em;
    }
}

@media (53.75rem <= width ) {/* 860px */
    .box_work_cta {
        margin: -6.1em auto 2em;
    }
}

.p_work_fukidasi {
    width: 56px;
    height: 56px;
    font-size: var(--14px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DCAA1F;
    border-radius: 50px;
    position: relative;
    top: 2.5em;
    left: 0.5em;
    z-index: 2;
}

@media (48.0625rem <= width ) {
    .p_work_fukidasi {
        width: 40px;
        height: 40px;
        top: 2em;
        left: 4em;
    }
}

@media (53.75rem <= width ) {/* 860px */
    .p_work_fukidasi {
        width: 56px;
        height: 56px;
        top: 3em;
        left: 5.5em;
    }
}

@media (64.375rem <= width ) {/* 1030px */
    .p_work_fukidasi {
        left: 10.5em;
    }
}

.p_work_fukidasi::before {
    bottom: 0;
    border-style: solid;
    border-color: #DCAA1F transparent transparent transparent;
    border-width: 10px 5px 0 5px;
    transform:rotate(75deg); 
    content: "";
    position: absolute;
    right: 0.6em;
    width: 0;
    height: 0;
}

.box_work_cta img {
    display: none;
}

@media (48.0625rem <= width ) {
    .box_work_cta img {
        display: block;
        width: 90px;
        position: absolute;
        z-index: 1;
        top: 2em;
        left: 0;
    }
}

@media (53.75rem <= width ) {/* 860px */
    .box_work_cta img {
        width: 120px;
        top: 3em;
    }
}

@media (64.375rem <= width ) {/* 1030px */
    .box_work_cta img {
        width: 150px;
        top: 2.2em;
        left: 1em;
    }
}

.box_work_cta .btn-inner {
    width: 100%;
    max-width: 640px;
    font-size: var(--18px);
    color: #ffffff;
    font-weight: bold;
    display: block;
    margin: auto;
    padding: 17px 0;
    border-radius: 50px;
    text-align: center;
    background: #D4215F;
    letter-spacing: 0.1em;
    position: relative;
}

@media (48.0625rem <= width ) {
    .box_work_cta .btn-inner {
        font-size: var(--16px);
        padding: 15px 0;
    }
}

@media (53.75rem <= width ) {/* 860px */
    .box_work_cta .btn-inner {
        font-size: var(--20px);
        padding: 25px 0;
    }
}

.box_work_cta .btn-inner::before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background: #ffffff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    transition: all 0.3s ease-in-out 0s;
}

.box_work_cta .btn-inner::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #CE1E54;
    border-right: 2px solid #CE1E54;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 32px;
    top: 26px;
    transition: all 0.3s ease-in-out 0s;
}

@media (48.0625rem <= width ) {
    .box_work_cta .btn-inner::after {
        top: 23px;
    }
}

@media (53.75rem <= width ) {/* 860px */
    .box_work_cta .btn-inner::after {
        top: 36px;
    }
}

.box_work_cta .btn-inner:hover::before {
    right: 15px;
}

.box_work_cta .btn-inner:hover::after {
    right: 27px;
}

ul.list_work {
    max-width: 980px;
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 13px 4%;
}

@media (62.5rem <= width ) {
    ul.list_work {
        grid-template-columns: 32% 32% 32%;
        gap: 13px 2%;
    }
}

@media (75rem <= width ) {/* 1200px */
    ul.list_work {
        grid-template-columns: 22% 22% 22% 22%;
        gap: 34px 4%;
    }
}

ul.list_work li {
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
}

.ttl_work {
    height: 70px;
    font-size: var(--13px);
    color: #3F4040;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

@media (77.1875rem <= width ) {/* 1235px */
    .ttl_work {
        height: 80px;
        font-size: var(--18px);
    }
}

/* お役立ち資料 */
.sec_document {
    margin-bottom: 3em;
}

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

.sec_document h2 {
    font-family:Georgia, 'Times New Roman', Times, serif;
    width: fit-content;
    font-size: var(--34px);
    color: #3F4040;
    text-align: center;
    margin: 0 auto 1em;
    background: rgb(171,250,250);
    background: linear-gradient(360deg, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 20%);
}

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

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

ul.list_document {
    max-width: 980px;
    width: 90%;
    margin: 0 auto 0.8em;
    display: grid;
    row-gap: 30px;
}

@media (59.0625rem <= width ) {
    ul.list_document {
        grid-template-columns: 32% 32% 32%;
        column-gap: 2%;
        row-gap: initial;
        margin: 0 auto 0.5em;
    }
}

@media (84.6875rem <= width ) {/* 1355px */
    ul.list_document {
        grid-template-columns: 30.6% 30.6% 30.6%;
        column-gap: 4%;
        row-gap: initial;
    }
}

ul.list_document li {
    padding-bottom: 25px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 0px 0px rgba(0, 115, 183, 0.20);
    overflow: hidden;
}

@media (48.0625rem <= width ) {
    ul.list_document li {
        height: 100%;
        padding-bottom: 20px;
    }
}

.box_doc_img {
    background: #F0F4FC;
    margin-bottom: 1em;
}

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

@media (48.0625rem <= width ) {
    ul.list_document li h3 {
        font-size: var(--13px);
    }
}

@media (65.625rem <= width ) {/* 1050px */
    ul.list_document li h3 {
        font-size: var(--15px);
    }
}

@media (72.5rem <= width ) {/* 1160px */
    ul.list_document li h3 {
        font-size: var(--18px);
    }
}

.box_document {
    padding: 0 5%;
    margin-bottom: 1.3em;
}

.caption_document {
    font-size: var(--15px);
    color: #3F4040;
    border-radius: 6px;
    border: solid 1px #CCE3F1;
    padding: 15px;
}

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

@media (71.5625rem <= width ) {/* 1145px */
    .caption_document {
        font-size: var(--15px);
    }
}

.sec_document .btn-inner {
    width: 93%;
    max-width: 400px;
    font-size: var(--15px);
    color: #ffffff;
    display: block;
    margin: auto;
    padding: 10px 0;
    border-radius: 50px;
    text-align: center;
    background: #202B68;
    letter-spacing: 0.1em;
    position: relative;
}

@media (48.0625rem <= width ) {
    .sec_document .btn-inner {
        font-size: var(--12px);
        font-weight: bold;
    }
}

@media (72.5rem <= width ) {/* 1160px */
    .sec_document .btn-inner {
        font-size: var(--15px);
    }
}

@media (90rem <= width ) {/* 1440px */
    .sec_document .btn-inner {
        max-width: 276px;
    }
}

.sec_document .btn-inner::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 18px;
    top: 20px;
    transition: all 0.3s ease-in-out 0s;
}

@media (48.0625rem <= width ) {
    .sec_document .btn-inner::after {
        width: 8px;
        height: 8px;
        right: 15px;
        top: 15px;
    }
}

@media (72.5rem <= width ) {/* 1160px */
    .sec_document .btn-inner::after {
        right: 22px;
        top: 17px;
    }
}

.sec_document .btn-inner:hover::after {
	right: 17px;
}

.note_document {
    max-width: 980px;
    width: 84%;
    font-size: var(--11px);
    color: #3F4040;
    margin: auto;

}

@media (48.0625rem <= width ) {
    .note_document {
        font-size: var(--10px);
        text-align: right;
    }
}

@media (87.5rem <= width ) {/* 1400px */
    .note_document {
        font-size: var(--11px);
        padding-right: 10px;
    }
}


/* 人事やタレントマネジメントに関するテーマのセミナーを開催中！ */
.sec_seminar {
    padding: 30px 0 40px;
    margin-bottom: 3em;
    background: #202B68;
}

@media (48.0625rem <= width ) {
    .sec_seminar {
        padding: 50px 0 40px;
        margin-bottom: 4em;
    }
}

.sec_seminar h2 {
    font-size: var(--22px);
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5em;
}

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

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

ul.list_seminar {
    max-width: 980px;
    width: 90%;
    margin: auto;
    display: grid;
    row-gap: 30px;
}

@media (59.0625rem <= width ) {
    ul.list_seminar {
        grid-template-columns: 32% 32% 32%;
        column-gap: 2%;
        row-gap: initial;
    }
}

@media (84.6875rem <= width ) {/* 1355px */
    ul.list_seminar {
        grid-template-columns: 30.6% 30.6% 30.6%;
        column-gap: 4%;
        row-gap: initial;
    }
}

ul.list_seminar li {
    border-radius: 10px;
    padding-bottom: 25px;
    background: #FFF;
    overflow: hidden;
}

@media (48.0625rem <= width ) {
    ul.list_seminar li {
        height: 100%;
        padding-bottom: 20px;
    }
}

ul.list_seminar li img {
    margin-bottom: 1em;
}

.box_cms {
    padding: 0 10px;
}

.box_cat {
    margin-bottom: 0.8em;
}

span.cate {
    font-size: var(--13px);
    color: #202B68;
    border-radius: 50px;
    background: #F0F3F6;
    border: solid 1px #202B68;
    padding: 3px 10px;
    margin-right: 0.5em;
}

@media (48.0625rem <= width ) {
    span.cate {
        display: block;
        width: fit-content;
        font-size: var(--11px);
        padding: 3px 2%;
        margin-right: 0.2em;
    }
}

@media (68.125rem <= width ) {/* 1090px */
    span.cate {
        display: inline-block;
    }
}

@media (84.375rem <= width ) {/* 1350px */
    span.cate {
        font-size: var(--13px);
        padding: 3px 10px;
        margin-right: 0.5em;
    }
}

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

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

@media (84.375rem <= width ) {/* 1350px */
    .txt_date {
        font-size: var(--12px);
    }
}

ul.list_seminar li h3 {
    font-size: var(--18px);
    color: #3F4040;
    margin-bottom: 1.3em;
}

@media (48.0625rem <= width ) {
    ul.list_seminar li h3 {
        font-size: var(--13px);
        margin-bottom: 1em;
    }
}

@media (65.625rem <= width ) {/* 1050px */
    ul.list_seminar li h3 {
        font-size: var(--15px);
    }
}

@media (72.5rem <= width ) {/* 1160px */
    ul.list_seminar li h3 {
        font-size: var(--18px);
    }
}

.sec_seminar .btn-inner {
    width: 93%;
    max-width: 400px;
    font-size: var(--15px);
    color: #ffffff;
    display: block;
    margin: auto;
    padding: 10px 0;
    border-radius: 50px;
    text-align: center;
    background: #202B68;
    letter-spacing: 0.1em;
    position: relative;
}

@media (48.0625rem <= width ) {
    .sec_seminar .btn-inner {
        font-size: var(--12px);
        font-weight: bold;
    }
}

@media (72.5rem <= width ) {/* 1160px */
    .sec_seminar .btn-inner {
        font-size: var(--15px);
    }
}

@media (90rem <= width ) {/* 1440px */
    .sec_seminar .btn-inner {
        max-width: 276px;
    }
}

.sec_seminar .btn-inner::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 18px;
    top: 20px;
    transition: all 0.3s ease-in-out 0s;
}

@media (48.0625rem <= width ) {
    .sec_seminar .btn-inner::after {
        width: 8px;
        height: 8px;
        right: 15px;
        top: 15px;
    }
}

@media (72.5rem <= width ) {/* 1160px */
    .sec_seminar .btn-inner::after {
        right: 22px;
        top: 17px;
    }
}

.sec_seminar .btn-inner:hover::after {
	right: 17px;
}


/* 導入までたった4ステップ */
.sec_4step h2 {
    width: fit-content;
    font-size: var(--22px);
    color: #202B68;
    text-align: center;
    border-radius: 50px;
    padding: 10px 30px;
    margin: 0 auto 1.5em;
    background: #ffffff;
}

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

ul.list_4step {
    max-width: 770px;
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 48% 48%;
    column-gap: 4%;
    row-gap: 2em;   
}

/* 600px */
@media (37.5rem <= width ) {
    ul.list_4step {
        grid-template-columns: 23.5% 23.5% 23.5% 23.5%;
        column-gap: 2%;
        row-gap: initial;  
    }
}

@media (48.0625rem <= width ) {
    ul.list_4step {
        grid-template-columns: 48% 48%;
        column-gap: 4%;
        row-gap: 2em;
    }
}

@media (56.25rem <= width ) {/* 900px */
    ul.list_4step {
        grid-template-columns: 23.5% 23.5% 23.5% 23.5%;
        column-gap: 2%;
        row-gap: initial;  
    }
}

ul.list_4step li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.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;
}

/* 600px */
@media (37.5rem <= width ) {
    .box_step {
        width: 120px;
        height: 180px;
    }
}

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

@media (56.25rem <= width ) {/* 900px */
    .box_step {
        width: 120px;
        height: 180px;
    }
}

@media (68.75rem <= width ) {/* 1100px */
    .box_step {
        width: 160px;
        height: 220px;
    }
}

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

/* 600px */
@media (37.5rem <= width ) {
    .box_step::before {
        width: 45%;
        right: -3.5em;
    }
}

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

@media (56.25rem <= width ) {/* 900px */
    .box_step::before {
        width: 80%;
        right: -6em;
    }
}

@media (68.75rem <= width ) {/* 1100px */
    .box_step::before {
        width: 40%;
        right: -4em;
    }
}

.box_step::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;
}

/* 600px */
@media (37.5rem <= width ) {
    .box_step_3rd {
        width: 120px;
        height: 180px;
    }
}

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

@media (56.25rem <= width ) {/* 900px */
    .box_step_3rd {
        width: 120px;
        height: 180px;
    }
}

@media (68.75rem <= width ) {/* 1100px */
    .box_step_3rd {
        width: 160px;
        height: 220px;
    }
}

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

/* 600px */
@media (37.5rem <= width ) {
    .box_step_3rd::before {
        width: 0;
    }
}

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

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

.box_step_3rd::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 ) {/* 600px */
    .box_step_last {
        width: 120px;
        height: 180px;
    }
}

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

@media (56.25rem <= width ) {/* 900px */
    .box_step_last {
        width: 120px;
        height: 180px;
    }
}

@media (68.75rem <= width ) {/* 1100px */
    .box_step_last {
        width: 160px;
        height: 220px;
    }
}

.box_step_last::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 ) {/* 600px */
    .box_step_last::before {
        width: 45%;
        left: -3.5em;
    }
}

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

@media (56.25rem <= width ) {/* 900px */
    .box_step_last::before {
        width: 80%;
        left: -5.5em;
    }
}

.box_step_last::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 ) {/* 600px */
    .box_step img,
    .box_step_3rd img,
    .box_step_last img {
        height: 60px;
    }
}

@media (48.0625rem <= width ) {
    .box_step img,
    .box_step_3rd img,
    .box_step_last img {
        height: 80px;
    }
}

@media (56.25rem <= width ) {/* 900px */
    .box_step img,
    .box_step_3rd img,
    .box_step_last img {
        height: 60px;
    }
}

@media (68.75rem <= width ) {/* 1100px */
    .box_step img,
    .box_step_3rd img,
    .box_step_last img {
        height: 80px;
    }
}

ul.list_4step li h3 {
    color: #202B68;
    font-weight: bold;
}

@media (37.5rem <= width ) {/* 600px */
    ul.list_4step li h3 {
        font-size: 2vw;
    }
}

@media (48.0625rem <= width ) {
    ul.list_4step li h3 {
        font-size: var(--16px);
    }
}

@media (56.25rem <= width ) {/* 900px */
    ul.list_4step li h3 {
        font-size: var(--12px);
    }
}

@media (61.875rem <= width ) {/* 990px */
    ul.list_4step li h3 {
        font-size: var(--13px);
    }
}

@media (68.75rem <= width ) {/* 1100px */
    ul.list_4step li h3 {
        font-size: var(--15px);
    }
}

@media (74.375rem <= width ) {/* 1190px */
    ul.list_4step li h3 {
        font-size: var(--18px);
    }
}


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

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

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

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

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


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

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

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

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

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

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

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

@media (48.0625rem <= width ) {
    .h3_support_01::before {
        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;
}

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

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

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

@media (48.0625rem <= width ) {
    ul.list_support {
        margin: 0 auto 3em;
        display: grid;
        flex-direction: initial;
        grid-template-columns: 48.75% 48.75%;
        column-gap: 2.5%;
        row-gap: 15px;
    }
}

@media (65.625rem <= width ) {/* 1050px */
    ul.list_support {
        grid-template-columns: 31.66% 31.66% 31.66%;
    }
}

ul.list_support li {
    font-size: var(--18px);
    color: #ffffff;
    font-weight: bold;
    background: #202B68;
    padding: 20px 0 20px 85px;
    display: flex;
    align-items: center;
    position: relative;
}

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

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

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

ul.list_support li::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 ) {
    ul.list_support li::before {
        left: 10px;
    }
}

@media (73.75rem <= width ) {/* 1180px */
    @media (48.0625rem <= width ) {
        ul.list_support li::before {
            left: 15px;
        }
    }
}

.bg_support_02 {
    padding: 20px 2% 50px;
    background: rgba(235, 243, 250, 0.50);
}

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

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

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

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

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

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

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

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

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

@media (71.875rem <= width ) {/* 1150px */
    ul.list_staff p {
        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: #202B68;
}

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

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

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

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

@media (65rem <= width ) {/* 1040px */
    .slide_img_box p {
        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 ) {
    .line_btm_sky {
        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/evaluation/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 ) {
    .content_about {
        padding: 40px 0;
    }
}

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

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

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

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

@media (59.0625rem <= width ) {
    ul.list_about {
        display: grid;
        grid-template-columns: 49% 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 ) {
    .box_logo_tp {
        max-width: 384px;
        width: 100%;
        height: initial;
        padding: 20px 0;
        margin: initial;
    }
}

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

.box_logo_tp img {
    max-width: 206px;
}

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

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

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

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

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

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

.vPC_large {
    display: none;
}

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

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


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

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

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

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

ul.footer_link a {
    font-size: var(--15px);
    color: #202B68;
    text-decoration: underline;
}

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

@media (67.8125rem <= width) {/* 1085px */
    ul.footer_link a {
        font-size: var(--15px);
    }
}

ul.footer_link a:hover {
    text-decoration: none;
}

@media (48.0625rem <= width) {
    ul.footer_link li:first-child a {
        padding-right: 10px;
    }
}

@media (48.0625rem <= width) {
    ul.footer_link li:last-child {
        padding-left: 10px;
    }
}

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

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

@media (83.75rem <= width) {/* 1340px */
    .footer_company {
        font-size: var(--14px);
    }
}

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

@media (83.75rem <= width) {/* 1340px */
    .footer-copyright {
        font-size: var(--12px);
    }
}


/*　お問い合わせはこちら btn for SP
--------------------------------------------------------*/
#click-btn {
    width: 93%;
    max-width: 400px;
    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;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    cursor: pointer;
  }
  
  @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;
  }
