@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

@font-face {
    font-family: 'FuturaBQ-Light';
    src: url('fonts/FuturaBQ-Light.woff2') format('woff2'),
         url('fonts/FuturaBQ-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
  
@font-face {
    font-family: 'FuturaBQ-Medium';
    src: url('fonts/FuturaBQ-Medium.woff2') format('woff2'),
         url('fonts/FuturaBQ-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
  
@font-face {
    font-family: 'FuturaBQ-DemiBold';
    src: url('fonts/FuturaBQ-DemiBold.woff2') format('woff2'),
         url('fonts/FuturaBQ-DemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

html[lang="ja"] body{
    font-family: "Zen Kaku Gothic New", sans-serif!important;
    font-weight: 400;
}

html[lang="en"] body{
    font-family: 'FuturaBQ-Light', sans-serif!important;
    font-weight: 300;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none !important;
  box-shadow: none !important;
}

input:not([type="checkbox"]),
input:not([type="radio"]),
select,
textarea {
  border-radius: 0;
  padding: 0.75rem 1rem !important;
}

input[type="checkbox"],
input[type="radio"] {
  width: 1.5em;
  height: 1.5em;
  padding: 0 !important;
  border-radius: 0.25em;
  vertical-align: middle;
}
input[type="radio"] {
    border-radius: 50%!important;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #adb5bd;
  opacity: 1;
}

a {
    color: #cb050b;
    text-decoration: underline;
}

header.front {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    transition: 0.3s ease;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.5) 75%,
        rgba(255, 255, 255, 0) 100%
    );
}

header.header-scrolled {
    background-color: #ffffff !important;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

header.header-scrolled .text-white{
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.dropdown-menu{ background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 90%, rgba(255, 255, 255, 0) 100%) }
.header-scrolled .dropdown-menu{ background:rgba(255,255,255,1) }
.dropdown:hover .dropdown-menu { display: block; margin-top: 0.25em }
.dropdown-item:hover{ color:red!important }

.footer-menu .footer-menu__title:hover { text-decoration: none }
.footer-menu ul li a { text-decoration: none }
.footer-menu ul li a:hover { text-decoration: underline }
.footer-copy a:hover { text-decoration: none }

.site-logo {
    display: block;
    width: 195px;
    height: 32px;
    background-image: url("../images/logo-pasona.png");
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  .header-scrolled .site-logo {
    background-image: url("../images/logo-pasona.png");
  }

.hero {
  position: relative;
}

.hero-video,
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  z-index: -1;
}
.hero-video.b2b-img{
    object-position: 50% center;
}
.hero-video.b2c-img{
    object-position: 70% center;
}
.hero-position-0 { object-position: 0% center; }
.hero-position-20 { object-position: 20% center; }
.hero-position-30 { object-position: 30% center; }
.hero-position-70 { object-position: 70% center; }
.hero-position-80 { object-position: 80% center; }
.hero-position-100 { object-position: 100% center; }

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.hero-light::before {
  background-color: rgba(255, 255, 255, 0.5);
}

.hero-dark::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
  transition: background-color 1s ease;
  pointer-events: none;
}

.hero-dark:hover::before {
  background-color: rgba(0, 0, 0, 0.1);
}

.hero-dark.hero-light::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: background-color 1s ease;
  pointer-events: none;
}

.hero-dark.hero-light:hover::before{
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
}

/* Expand column width on hover */
.hero-split{flex-wrap:nowrap} /* Prevent wrapping */
.hero-split>.col-6{
  transition:width .45s ease;
  width:50%;
}
.hero-split .display-6 { font-size: calc(1rem + 1.5vw) }

.fw-semibold,
.lead{
    font-weight: 500!important;
}

.text-red {
    color: #cb050b;
}
.bg-red {
    background-color: #cb050b;
    color: white;
    position: relative;
}
.border-red { border-color: #cb050b!important}

.bg-primary {
    background-color: #000080!important;
}
.bg-lightgray {
    background-color: #fcfcfc!important;
}
.btn-outline-primary{
    border: 1px solid #000080;
    background:transparent;
    color: #000080;
}
.btn-outline-primary:hover{
    background:#000080;
    color: #FFF;
}

.bg-red-rounded-top::before,
.bg-white-rounded-top::before,
.bg-lightgray-rounded-top::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' viewBox='0 0 100 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'><path d='M0,100 C50,0 50,0 100,100 Z' fill='%23cb050b'/></svg>") no-repeat top center;
  background-size: 100% 100%;
  z-index: 1;
}

.bg-white-rounded-top::before {
    background: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' viewBox='0 0 100 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'><path d='M0,100 C50,0 50,0 100,100 Z' fill='%23FFFFFF'/></svg>") no-repeat top center;
}
.bg-lightgray-rounded-top::before {
    background: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' viewBox='0 0 100 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'><path d='M0,100 C50,0 50,0 100,100 Z' fill='%23fcfcfc'/></svg>") no-repeat top center;
}

.btn-min-width{
    width: 300px;
    max-width:100%;
}

.btn-animate {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease, background-color 0.3s ease;
}
.btn-red-animate {
    color: #fff;
    background-color: #cb050b;
    border: #cb050b 1px solid;
}
.btn-white-animate {
    color: #cb050b;
    background-color: #fff;
    border: #cb050b 1px solid;
}
.btn-animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 115%;
    height: 100%;
    transform: skewX(-30deg);
    transition: left 0.5s ease;
    z-index: -1;
}
.btn-red-animate::before {
    background-color: #fff;
}
.btn-white-animate::before {
    background-color: #cb050b;
}
  
.btn-animate:hover::before {
    left: -3%;
}
  
.btn-red-animate:hover {
    color: #cb050b!important;
    background-color: #cb050b;
}
.btn-white-animate:hover {
    color: #FFF!important;
    background-color: #FFF;
    border: #cb050b 1px solid;
}
  
.btn-animate span {
    position: relative;
    z-index: -1;
}

.mix-blend-multiply {
  mix-blend-mode: multiply;
}

.w-1em { width: 1em !important }
.w-1-5em { width: 1.5em !important }
.w-2em { width: 2em !important }
.w-3em { width: 3em !important }
.w-10 { width: 10% !important }
.w-20 { width: 20% !important }
.w-30 { width: 30% !important }
.w-40 { width: 40% !important }

.mw-50 { max-width: 50%; max-height:50px }
.mw-75 { max-width: 75%; }
.mw-10em{ min-width: 10em; }
.mh-2em{ min-height: 2em; }
.mh-3em{ min-height: 3em; }
.mh-4em{ min-height: 4em; }
.mh-5em{ min-height: 5em; }

.top-25 {top: 25%}

@media (min-width: 1200px) {
    .mw-xl-50 { max-width: 50%; }
}

.nav-switch {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-lang-switch {
    background-color: #f8f9fa;
    color: rgba(0,0,0,0.7);
}
.nav-lang-switch:hover {
    background-color: #cb050b;
    color: white;
}
.nav-menu-switch {
    background-color: #cb050b;
    color: #FFF;
}
.nav-menu-switch:hover {
    background-color: #FFF;
    color: #cb050b!important;
}

.fs-7{
    font-size: 0.9em;
}
.fs-8{
    font-size: 0.8em;
}
.bg-gray {
    background-color: rgba(0,0,0,0.7)
}

.container-xxl{
    max-width:1600px;
}

.text-shadow{
    text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

.h-1em { height: 1em; }
.h-2em { height: 2em; }
.h-70 { height: 70vh; }
.h-80 { height: 80vh; }
.h-90 { height: 90vh; }
.mh-70 { min-height: 70vh; }
.mh-80 { min-height: 80vh; }
.mh-90 { min-height: 90vh; }

.ratio-2x1 { --bs-aspect-ratio: calc(1 / 2 * 100%) }
.ratio-3x4 { --bs-aspect-ratio: calc(4 / 3 * 100%) }

.fill-white { fill: #FFFFFF; color: #FFFFFF;}
.fill-red { fill: #cb050b; }

.transparent-table th,
.transparent-table td{
    background-color: transparent;
    color: #FFF;
}
.table-lg td,
.table-lg th {
  padding: 1rem 1.5rem;
}

.blend-multiply{ mix-blend-mode:multiply; }

.rotate-5deg { display: inline-block; transform: rotate(5deg) }

.asterisk-list { list-style: none; padding-left: 1.2rem }
.asterisk-list li::before { content:'＊'; color: #cb050b; font-weight: bold; margin-right: 0.5rem }

header nav a{
    transition: 0.5s ease;
}
header nav a:hover,
header.header-scrolled nav a:hover{
    background-color: #cb050b;
    color: #FFF!important;
    text-shadow: none;
}

.icon-hover-white {
    filter: none;
}

.service-items:hover{
    background-color: #FFF!important;
    color: #000!important;
    transition: background-color 0.5s ease, color 0.2s ease;
}

.service-items .icon-hover-white {
    filter: brightness(0) invert(1);
}
.service-items:hover .icon-hover-white {
    filter: brightness(1) invert(0);
}

.service-items svg.icon-hover-white {
    fill: #FFF;
}
.service-items:hover .icon-hover-white {
    fill: #cb050b;
}

.service-items-white:hover{
    background-color: #cb050b!important;
    color: #FFF!important;
    transition: background-color 0.5s ease, color 0.2s ease;
}

.service-items-white .icon-hover-white {
    filter: brightness(1) invert(0);
}
.service-items-white:hover .icon-hover-white {
    filter: brightness(0) invert(1);
}

.service-items-white svg.icon-hover-white {
    fill: #cb050b;
}
.service-items-white:hover .icon-hover-white {
    fill: #FFF;
}

.feature-jobs .icon-hover-white {
    fill: #cb050b;
}

.feature-jobs:hover {
    background-color: #f0f0f0!important;
}

.arrow-circle{
    width: 35px; 
    height: 35px;
}
.featured-icon { width: 50px; height: 50px }
.featured-icon-s { width: 30px; height: 30px }
.section-title::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #cb050b;
    margin: 8px auto 0;
    position: absolute;
    top: -2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}
.section-title.text-white::before{
    background-color: #FFF;
}
.section-title.text-left::before{
    left: 0;
    -webkit-transform: translateX(0%);
    transform: translateX(0%)
}

.core-solution-items {
    border-bottom: 1px solid #FFF;
    padding-bottom: 1rem;
}
.core-solution-items:last-child {
    border-bottom: 0;
}

@media (min-width: 992px) {
    .core-solution-items {
        border-bottom: 0;
        padding-bottom: 0;
        border-right: 1px solid #FFF;
    }

    .core-solution-items:last-child {
        border-right: 0;
    }
}

.case-items .img-grayscale,
.case-items .case-item-details{
    transition: 0.5s ease;
}

.img-grayscale {
    filter: grayscale(100%);
}

.case-items:hover .img-grayscale{
    filter: grayscale(0%);
}
.case-items:hover .case-item-details{
    background-color: #cb050b!important;
    color:#FFF;
}

.news-items:hover{
    color: #cb050b!important;
}

.text-oneline-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-multiline-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.support-before::after {
  content: '';
  position: absolute;
  top: 0;
  right: -3rem;
  width: 3rem;
  height: 100%;
  background-color: rgb(233,236,239);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.next-below::after{
    content: '';
    position: absolute;
    top: auto;
    bottom: -1.5rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-top: 1.5rem solid rgb(233,236,239);
    border-left: 3rem solid transparent;
    border-right: 3rem solid transparent;
    border-bottom: none;
}
.next-below-white::after{
    content: '';
    position: absolute;
    top: auto;
    bottom: -1.5rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-top: 1.5rem solid #cb050b;
    border-left: 3rem solid transparent;
    border-right: 3rem solid transparent;
    border-bottom: none;
}
.steps, .steps-red { background-color:#6a6a6a }
.steps::after, .steps-red::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1.5rem;
  width: 1.5rem;
  height: 100%;
  background-color: #6a6a6a;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.steps-red, .steps-red::after{ background-color:#cb050b }

.says {
  display: inline-block;
  position: relative; 
  margin: 0;
  padding: 20px;
  border-radius: 20px;
  color: #FFF;
  background: #cb050b;
}

.says:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 30px; 
  left: -19px;
  border: 8px solid transparent;
  border-right: 18px solid #cb050b;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}

@media (max-width: 991.98px) {
  .support-before::after {
    top: auto;
    bottom: -3rem;
    left: 0;
    right: 0;
    width: 100%;
    height: 3rem;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
}

.slick-track
{
    display: flex !important;
}
.slick-slide
{
    height: inherit !important;
}
.slick-prev,
.slick-next {
    z-index: 5;
    width: 30px;
    height: 30px;
}
.slick-prev::before,
.slick-next::before {
    font-size: 30px;
    color: #cb050b;
    text-shadow: 0 0 10px white;
}

.slick-prev {
    left: 20px;
}
.slick-next {
    right: 20px;
}

.modal-dialog-slide-out {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    margin: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    width: 100vw;
    max-width: 800px;
    height: 100vh;
    max-height: 100vh;
}
.modal-dialog-slide-out.side-menu{
    max-width: 300px;
}
.drawer .modal-content{
    height:100%;
    border-radius: 0;
    border: 0;
}
.drawer.modal.fade .modal-dialog-slide-out {
    transform: translateX(100%);
}
.drawer.modal.fade.show .modal-dialog-slide-out {
    transform: translateX(0);
}
.drawer .modal-body{
    height: 80vh;
    overflow-y: auto;
}

.line-grow {
  height: 1px;
  background-color: transparent; /* Background line is handled by ::before */
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  min-width: 60px;
}

.line-grow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: white;
}

/* Contact Form 7 */
.wpcf7-not-valid-tip {
    margin-top: 0.25em;
}
.wpcf7-spinner-gap {
    width: 24px;
    margin: 0 24px;
}
.checkbox-list-row .wpcf7-list-item{ display:block; margin:0.5em 1em; }
.wpcf7-form-control-wrap input[type="checkbox"] {
  border-color: #dee2e6;
}

/* Staggered animation with delay for each line */
.line-grow:nth-of-type(1)::before {
  animation: lineGrowAnim 1s ease-out forwards;
  animation-delay: 0s;
}
.line-grow.delay-1::before {
  animation: lineGrowAnim 1s ease-out forwards;
  animation-delay: 1s;
}
.line-grow.delay-2::before {
  animation: lineGrowAnim 1s ease-out forwards;
  animation-delay: 2s;
}

/* --- FADE-IN animation --- */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.fade-in.animated {
  opacity: 1;
}

.accordion-button:not(.collapsed) {
    color: #FFF;
    background-color: #cb050b;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
}

.border-b-red {
    background: linear-gradient(transparent 95%, #cb050b 0%);
    padding-bottom: 5px;
}

#map {
    height: 600px;
    width: 100%;
}

@keyframes lineGrowAnim {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* Mobile layout (max-width: 768px) */
@media (max-width: 767.98px) {
    .hero {
        position: relative;     /* keep as is */
        height: auto;           /* flexible height based on content */
    }
    .hero-video,
    .hero-image {
        position: absolute;     /* keep video as background */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;           /* follow .hero height */
        object-fit: cover;
        z-index: -1;
    }
    .hero::before {
        height: 100%;
    }
    .hero-content {
        min-height: auto;
        padding: 2rem 1rem;
    }
    .section-title.text-left{
        text-align: center!important;
    }
    .section-title.text-left::before {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
    .bg-red-rounded-top::before,
    .bg-white-rounded-top::before,
    .bg-lightgray-rounded-top::before {
        top: -28px;
        height: 30px;
    }
}


/* Red background, left arrow → point upward on SP */
.bg-red-to-left {
  position: relative;
  background-color: #cb050b;
  color: #fff;
  padding: 1rem;
  text-align: center;
}
.bg-red-to-left::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 15px solid #cb050b;
}

/* Gray background, right arrow → point downward on SP */
.bg-secondary-to-right {
  position: relative;
  background-color: rgb(233,236,239);
  color: #000;
  padding: 1rem;
  text-align: center;
}
.bg-secondary-to-right::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid rgb(233,236,239);
}

/* Red background, right arrow → point downward on SP */
.bg-red-to-right {
  position: relative;
  background-color: #cb050b;
  color: #fff;
  padding: 1rem;
  text-align: center;
}
.bg-red-to-right::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #cb050b;
}

/* Gray background, left arrow → point upward on SP */
.bg-secondary-to-left {
  position: relative;
  background-color: rgb(233,236,239);
  color: #000;
  padding: 1rem;
  text-align: center;
}
.bg-secondary-to-left::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 15px solid rgb(233,236,239);
}

/* --- Switch triangle direction on small screens (under md) --- */
@media (max-width: 767.98px) {
  .bg-red-to-right, .bg-red-to-left, .bg-secondary-to-right, .bg-secondary-to-left {width:50%}
  .bg-red-to-left::after,
  .bg-secondary-to-left::after {
    top: auto;
    bottom: 100%;
    right: 50%;
    transform: translateX(50%);
    border: none;
    border-bottom: 15px solid;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
  }

  .bg-red-to-left::after {
    border-bottom-color: #cb050b;
  }

  .bg-secondary-to-left::after {
    border-bottom-color: rgb(233,236,239);
  }

  .bg-red-to-right::after,
  .bg-secondary-to-right::after {
    top: 100%;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    border-top: 15px solid;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
  }

  .bg-red-to-right::after {
    border-top-color: #cb050b;
  }

  .bg-secondary-to-right::after {
    border-top-color: rgb(233,236,239);
  }

}

/** Medium devices (tablets, 768px and up) **/
@media (min-width: 768px) {
    .hero-split:hover>.col-6{width:45%}
    .hero-split>.col-6:hover{width:55%}
    .fs-md-5 {
        font-size: 1.25rem !important;
    }
}

.pasona-nav-links .nav-links { display: flex; gap:0.5em; justify-content: center; width: 100% }
.pasona-nav-links .page-numbers { text-indent:-1000px; border:1px solid #dee2e6; width:1.5em; height:1.5em; border-radius:1.5em; background:rgba(0,0,0,0.1) }
.pasona-nav-links a.page-numbers:hover,
.pasona-nav-links .page-numbers.current { background:rgba(0,0,0,0.7) }
.pasona-nav-links .page-numbers.dots,
.pasona-nav-links .page-numbers.next,
.pasona-nav-links .page-numbers.prev { display:none }
.pasona-blog-nav .nav-pills { --bs-nav-pills-link-active-bg: #cb050b; }
.pasona-blog-nav .nav-link { color: #cb050b; border-radius:0; border:1px solid #dee2e6; }
.pasona-blog-nav .nav-link:hover { background:#cb050b; color:#FFF }

.yourtube{position:relative;aspect-ratio:16/9;max-width:100%}.yourtube iframe{position:absolute;inset:0;width:100%;height:100%;border:0}

.hot-topics-recruit h4 {font-size:1.25rem !important; margin-top:1.5rem; }
.hot-topics-recruit h4 a { color:#cb050b; }
.hot-topics-recruit p { padding-left:1rem; padding-right:1rem; }


.find-job-pagination .page-item:first-child .page-link,
.find-job-pagination .page-item:last-child .page-link { border-radius: 0; }
.find-job-pagination .page-link.prev, .find-job-pagination .page-link.next { position: relative; font-size: 0; }
.find-job-pagination .page-link.prev::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f104";
  font-size: 1rem;
}
.find-job-pagination .page-link.next::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  font-size: 1rem;
}
.find-job-pagination .page-link { color: #cb050b; padding: 0.375rem 1rem; }
.find-job-pagination .active>.page-link,
.find-job-pagination .page-link.active {
    background-color: #cb050b;
    border-color: #cb050b;
    color: #FFF;
}

.job_description h3,
.job_description h4 {
    color: #cb050b;
}
.job_description h1 { margin: 1em 0; }
.job_description h2 { margin: 0.75em 0; }
.job_description h3 { margin: 0.5em 0; }
.job_description h4 { margin: 0.25em 0; }