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

SCREEN SIZE

--------------------------------------------------------------------*/
/*------------------------------------------------------------------

FONT

--------------------------------------------------------------------*/
.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
}

.robot {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

:root {
  --sans-serif: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Arial, sans-serif;
  --serif: serif;
}

/*------------------------------------------------------------------

WIDTH

--------------------------------------------------------------------*/
:root {
  --width-1250: min(calc(100% - 8%), 1250px);
}

/*------------------------------------------------------------------

COLOR

--------------------------------------------------------------------*/
:root {
  /* colors */
  --color-black: #222222;
  --color-gray: #707070;
  --color-primary: #3A34FF;
  --color-yellow: #FFFF00;
  --color-main-gradation: linear-gradient(90deg, #5800FF 0%, #5CE1E6 100%);
  --color-secondary-gradation: linear-gradient(90deg, #3A34FF 0%, #2D28C5 71.5%, #231F99 100%);
  --color-tertiary-gradation: linear-gradient(90deg, #5800FF 0%, #4D14FF 18.23%, #0096FF 100%);
}

/*------------------------------------------------------------------

SIZE

--------------------------------------------------------------------*/
:root {
  /*フォントサイズ*/
  --fontsize-m: 1rem; /*16*/
  --fontsize-headline-1: 5.875rem; /*94*/
  --fontsize-headline-2: 4.0625rem; /*65*/
  --fontsize-headline-3: 3.375rem; /*54*/
  --fontsize-headline-4: 2.5rem; /*40*/
  --fontsize-ll: 2.25rem; /*36*/
  --fontsize-l: 1.5rem; /*24*/
  --fontsize: 1.125rem; /*18*/
  --fontsize-s: 0.875rem; /*14*/
  --line-height: 2;
  --line-height-l: 2.3;
  --letter-spacing: 0.08em;
  /*角丸*/
  --radius: 8px;
  --radius-m: 6px;
}

/*------------------------------------------------------------------

ANIMATION

--------------------------------------------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*------------------------------------------------------------------

BASE

--------------------------------------------------------------------*/
body {
  color: var(--color-black);
  background-color: var(--color-primary);
  font-size: var(--fontsize);
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

.c {
  text-align: center;
  margin-inline: auto;
}

.hidden {
  visibility: hidden;
}

.only-pc {
  display: inherit;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .only-pc {
    display: none !important;
    visibility: hidden;
  }
}

.only-sp {
  display: none;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .only-sp {
    display: inherit;
    visibility: visible;
  }
}

.only-ssp {
  display: none;
  visibility: hidden;
}
@media screen and (max-width: 500px) {
  .only-ssp {
    display: inherit;
    visibility: visible;
  }
}

.nopc {
  display: none;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .nopc {
    display: inherit;
    visibility: visible;
  }
}

@media screen and (max-width: 767px) {
  .nosp {
    display: none;
    visibility: hidden;
  }
}
@media screen and (max-width: 500px) {
  .nossp {
    display: none;
    visibility: hidden;
  }
}
/*------------------------------------------------------------------

COMMON

--------------------------------------------------------------------*/
section {
  padding: 80px 0;
}

.contents_wrap {
  width: var(--width-1250);
  margin: auto;
  padding: 0;
  position: relative;
}

.pb_60 {
  padding-bottom: 60px;
}

.pb_100 {
  padding-bottom: 100px;
}

.bg_gradation_main {
  background: var(--color-main-gradation);
}

.bg_gradation_secondary {
  background: var(--color-secondary-gradation);
}

.bg_gradation_tertiary {
  background: var(--color-tertiary-gradation);
}

.bg_w {
  background-color: #FFF;
}

.bg_gray {
  background-color: #F7F7F7;
}

.bg_main {
  background: var(--color-main-gradation);
}

.bg_main::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(/wp-content/uploads/2024/12/3309.jpg) center/cover no-repeat;
  opacity: 0.4;
  position: absolute;
  mix-blend-mode: luminosity;
}

.btn_large {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 440px;
  max-height: 80px;
  padding: 1.65rem 1rem;
}
.btn_large span {
  font-size: 18px;
  line-height: var(--line-height-s);
}

.section__title_wrap {
  padding-bottom: 80px;
  margin-top: 0;
  position: relative;
}

.section__title_wrap.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.section__title_wrap.row .section__lead {
  margin-top: 0;
}

.section__title {
  font-size: var(--fontsize-ll);
  padding-bottom: 34px;
  position: relative;
}

.section__title span {
  font-family: "Roboto", sans-serif;
  font-size: var(--fontsize-headline-1);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--color-primary);
  display: block;
}

.section__title::before,
.section__title::after {
  content: "";
  width: 50px;
  height: 5px;
  display: block;
  background: linear-gradient(90deg, #5800FF 0%, #4D14FF 18.23%, #0096FF 100%);
  border-radius: 60px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.section__title::before {
  width: 42px;
  left: 0;
}

.section__title::after {
  width: 5px;
  left: 46px;
}

.section__lead {
  font-size: var(--fontsize);
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  margin-top: 40px;
}

.section__title_wrap.white .section__title,
.section__title_wrap.white .section__title span,
.section__title_wrap.white .section__lead {
  color: #FFF;
}
.section__title_wrap.white .section__title::before,
.section__title_wrap.white .section__title::after {
  background: #FFF;
}

@media screen and (max-width: 979px) {
  .section__title span {
    font-size: clamp(3.5rem, 0.157rem + 14.07vw, 5.875rem);
  }
  .section__title_wrap.row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: unset;
  }
  .section__title_wrap {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: var(--fontsize-l);
  }
}
.shape {
  background-color: #FFF;
  border-radius: 50%;
  transition: all 2s ease;
  transform: rotate(45deg);
  position: absolute;
  transform-origin: left bottom;
}

#shape-1 {
  width: 101px;
  height: 101px;
  bottom: 0;
  right: 30%;
  opacity: 0.2;
}
#shape-1.scrolled {
  height: 299px;
}

#shape-2 {
  width: 145px;
  height: 145px;
  bottom: 60%;
  left: 25vw;
  opacity: 0.1;
}
#shape-2.scrolled {
  bottom: 62%;
}

#shape-3 {
  width: 141px;
  height: 141px;
  bottom: 50%;
  right: 14%;
  opacity: 0.25;
}
#shape-3.scrolled {
  height: 571px;
}

#shape-4 {
  width: 166px;
  height: 166px;
  top: 70%;
  left: 330px;
  transform-origin: right top;
  opacity: 0.1;
}
#shape-4.scrolled {
  height: 674px;
}

#shape-5 {
  width: 166px;
  height: 166px;
  top: 55%;
  right: 70%;
	transform-origin: right top;
  opacity: 0.07;
}
#shape-5.scrolled {
  height: 674px;
}

#shape-6 {
  width: 145px;
  height: 145px;
  bottom: 110px;
  right: 34%;
  opacity: 0.08;
}
#shape-6.scrolled {
  bottom: 130px;
}

#shape-7 {
  width: 141px;
  height: 141px;
  bottom: 45%;
  right: 190px;
  opacity: 0.15;
}
#shape-7.scrolled {
  height: 571px;
}

@media screen and (max-width: 500px) {
  #shape-3 {
    display: none;
  }
  #shape-4 {
    top: 10%;
    left: 10%;
  }
  #shape-5{
		right: 40%;
	}
  #shape-7 {
    bottom: 75%;
    right: 50px;
  }
}

/* Header */
/* -------------------------------------------------- */
header:has(.fade-out) .header__inner--bottom h1 a img{
	width: unset;
  height: unset;
	display: block;
}
header:has(.fade-out) .header__inner--bottom h1 a{
	width: unset;
	height: unset;
	background: none;
}

header:not(:has(.fade-out)) .header__inner--bottom h1 a{
	width: 240px;
	height: 60px;
	background: url(https://digirise.ai/wp-content/themes/digirise/asset/image/recruit/about/logo.svg) center / contain no-repeat;
}
header:not(:has(.fade-out)) .header__inner--bottom h1 a img{
	width: 240px;
	height: 60px;
	display: none;
}
header:not(:has(.fade-out)) ul.header__inner--bottomRightLink li > a,
header:not(:has(.fade-out)) ul.header__inner--bottomRightLink li > span,
header:not(:has(.fade-out)) ul.header__inner--topOuter li a{
	color: #FFF;
  transition: 0.2s ease-in-out;
}

@media screen and (max-width: 1200px){
  #header:not(:has(.fade-out)) .header__inner--bottom h1 a,
	#header:not(:has(.fade-out)) .header__inner--bottom h1 a img{
		width: 200px;
		height: 50px;
	}
}
/*
@media screen and (max-width: 1100px){
  #header:not(:has(.resize)) .header__inner--bottom h1 a,
	#header:not(:has(.resize)) .header__inner--bottom h1 a img{
		width: 150px;
		height: 38px;
	}
}
*/

/* KV */
/* -------------------------------------------------- */
.kv {
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 850px;
}

.kv.bg_main::before {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.kv__inner {
  padding-block: 250px;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 0;
}

.kv__title_wrap {
  padding: 0;
  margin-bottom: 0;
  animation: parallaxfadeOut linear;
  animation-timeline: scroll();
}

@keyframes parallaxfadeOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
.kv__title {
  font-size: 1.25rem;
  letter-spacing: 0.09em;
  color: #FFF;
  padding-bottom: 22px;
}

.kv__title span {
  font-size: 7rem;
  color: #FFF;
}

.kv__title::before, .kv__title::after {
  display: none;
  visibility: hidden;
}

.kv__lead {
  color: var(--color-yellow);
  font-size: var(--fontsize-headline-2);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.11em;
  margin: 0;
}

.frontmost {
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 767px) {
  .kv {
    min-height: 80vh;
  }
  .kv.bg_main::before {
    background-attachment: unset;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
  }
  .kv__inner{
    padding-block: 25vh 0;
  }
  .kv__title span {
    font-size: clamp(3.5rem, 0.157rem + 14.07vw, 5.875rem);
  }
  .kv__lead {
    font-size: clamp(1.85rem, -0.054rem + 8.23vw, 4.063rem);
  }
}
/* about */
/* -------------------------------------------------- */
.about {
  padding-block: 150px;
  overflow: hidden;
  position: relative;
}

.about__title_wrap {
  width: 64%;
  padding-bottom: 0;
}

.about__title_wrap .section__title span {
  white-space: nowrap;
  text-indent: 6px;
}

.about__title_wrap a {
  margin-top: 40px;
}

.about__inner {
  position: unset;
  overflow: hidden;
}

.ly_about__img {
  width: 38vw;
  max-width: 566px;
  position: absolute;
  right: -30px;
  top: 0;
  bottom: 0;
  z-index: 0;
  margin: auto;
  display: flex;
  align-items: center;
  transition: 0.5s ease;
}

.about__img_wrap {
  --wrapper-width: 566;
  width: 100%;
  max-width: 566px;
  max-height: 720px;
  aspect-ratio: 566/720;
  position: relative;
}

.about__img {
  border-radius: var(--radius);
  overflow: hidden;
  position: absolute;
}

.about__img:nth-child(1) {
  width: calc(316 / var(--wrapper-width) * 100%);
  max-width: 316px;
  aspect-ratio: 316/353;
  top: 0;
  left: 76px;
  z-index: 1;
}

.about__img:nth-child(2) {
  width: calc(348 / var(--wrapper-width) * 100%);
  max-width: 348px;
  aspect-ratio: 348/212;
  right: 0;
  bottom: 24.6%;
  z-index: 0;
}

.about__img:nth-child(3) {
  width: calc(246 / var(--wrapper-width) * 100%);
  max-width: 246px;
  aspect-ratio: 246/294;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.about__img img {
  vertical-align: bottom;
}

@media screen and (min-width: 1600px) {
  .about__inner {
    position: relative;
    overflow: visible;
  }
  .ly_about__img {
    right: -150px;
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding-block: 40px 80px;
  }
  .about__inner {
    display: flex;
    flex-direction: column;
  }
  .about__title_wrap .section__title span {
    white-space: wrap;
  }
  .ly_about__img {
    order: 1;
    position: relative;
    width: 100%;
    right: unset;
  }
  .about__img_wrap {
    max-width: none;
  }
  .about__title_wrap {
    order: 2;
    margin-top: 40px;
    width: 100%;
  }
  .about__title_wrap a {
    margin-inline: auto;
  }
}
/* interview */
/* -------------------------------------------------- */
.profile__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 80px 0;
}

ul.profile__list:after {
    content: "";
    width: calc(50% - 20px);
}
.profile__card {
  width: calc(25% - 20px);
  max-width: 280px;
  cursor: pointer;
}

.profile__card:hover .profile__img {
  transform: translateZ(0) translateY(-3px);
  opacity: 0.8;
}

.profile__card:nth-child(2n) {
  margin-top: 50px;
}

.profile__img {
  width: 100%;
  border-radius: var(--radius-m);
  overflow: hidden;
  margin-bottom: -2.5em;
  transform: translateZ(0);
  filter: drop-shadow(0px 2px 14px rgba(0, 0, 0, 0.12));
  transition: 0.3s ease;
}

.profile__img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.profile__text_wrap {
  padding-inline: 10px;
}

.profile__lead {
  position: relative;
  display: inline;
  padding: 1px 5px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: var(--color-primary);
  font-size: var(--fontsize-l);
  font-size: clamp(1rem, -0.667rem + 2.67vw, 1.5rem);
  letter-spacing: 0.02em;
  line-height: 1.8;
  font-weight: 700;
  color: #FFF;
  white-space: nowrap;
}

.profile__name {
  font-size: var(--fontsize-s);
  font-size: clamp(0.7rem, 0.117rem + 0.93vw, 0.875rem);
  letter-spacing: 0.02em;
  color: var(--color-gray);
}

.profile__wrap a {
  border: 1px solid var(--color-primary);
  margin: 60px auto 0;
}

@media screen and (max-width: 979px) {
  .profile__card {
    width: calc(50% - 20px);
    max-width: 420px;
  }
  .profile__lead {
    font-size: var(--fontsize-l);
  }
  .profile__name {
    font-size: var(--fontsize-s);
  }
}
@media screen and (max-width: 767px) {
  .profile__wrap {
    padding-inline: 4%;
  }
  .profile__list {
    gap: 60px 0;
  }
  .profile__card {
    width: 100%;
    max-width: none;
  }
  .profile__card:nth-child(2n) {
    margin-top: 0;
  }
	.profile__img img {
		height: 300px;
		object-fit: cover;
		object-position: top;
	}
	ul.profile__list:after {
    content: none;
	}
}
/* Modal Styles */
.js-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.js-modal_content {
  background: #FFF;
  padding: 30px 32px;
  border-radius: 5px;
  width: 90%;
  max-width: 840px;
  position: relative;
  animation: fadeIn 0.6s ease;
}

.js-modal_content .modal_profile__card {
  display: flex;
  align-items: center;
  gap: 35px;
}
.js-modal_content .profile__img {
  width: 35%;
  max-width: 260px;
  margin-bottom: 0;
}
.js-modal_content .profile__img img {
  border-radius: var(--radius-m);
}
.js-modal_content .profile__name {
  font-size: var(--fontsize-s);
  margin-top: 6px;
}
.js-modal_content .text__wrap {
  width: 65%;
}
.js-modal_content .profile__lead {
  color: var(--color-primary);
  font-size: 2.25rem;
  line-height: 1.42;
  letter-spacing: 0.06em;
  background: none;
  padding: 0;
  white-space: normal;
}
.js-modal_content .profile__text {
  margin-top: 10px;
}
.js-modal_content .profile__text p {
  font-size: var(--fontsize-m);
  line-height: 1.75;
  letter-spacing: 0.09em;
  padding: 0 0 0.8em 0;
}
.js-modal_content .close {
  position: absolute;
  top: 12px;
  right: 18px;
  cursor: pointer;
  z-index: 10;
}
.js-modal_content .close i {
  font-size: 1.75rem;
  color: #CCC;
}

@media screen and (max-width: 767px) {
  .js-modal {
    align-items: self-start;
  }
  .js-modal_content {
    width: 90%;
    height: 87svh;
    padding: 22px 20px;
    margin-top: 70px;
    overflow: scroll;
  }
  .js-modal_content::-webkit-scrollbar {
    display: none;
  }
  .js-modal_content .modal_profile__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .js-modal_content .profile__img {
    width: 100%;
    max-width: none;
  }
  .js-modal_content .profile__lead {
    font-size: var(--fontsize-l);
  }
  .js-modal_content .text__wrap {
    width: 100%;
  }
  .js-modal_content .close {
    position: fixed;
    top: 54px;
    right: 6px;
  }
  .js-modal_content .close i {
    font-size: 2.25rem;
  }
}
.js-modal.fade-out,
.js-modal_content.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* requirements */
/* -------------------------------------------------- */
.requirements {
  padding-block: 120px 100px;
}

.requirements .is-layout-flex {
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.requirements .block--info {
  width: 45%;
  max-width: 560px;
}

.requirements .block--img {
  width: 55%;
  max-width: 640px;
  position: sticky;
  top: 85px;
}

.requirements .block--img img {
  height: auto;
  border-radius: var(--radius);
}

.faq__inner--list dl {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq__inner--acc {
  background: #FFF;
}

.faq__inner--acc {
  margin-top: 10px;
}

.faq__inner--acc:first-child {
  margin-top: 0;
}

.accordion {
  display: block;
  font-size: var(--fontsize-l);
  font-weight: 700;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: 0.5s ease-in;
  padding: 10px 16px 14px 48px;
  margin: 0;
  border-bottom: 1px solid #DDD;
}

.accordion::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-size: 26px;
  font-weight: 900;
  top: 50%;
  color: var(--color-primary);
  transform: translateY(-50%);
  display: inline-block;
  position: absolute;
  left: 8px;
  vertical-align: middle;
  text-align: center;
}

.accordion::after {
  content: "\f055";
  font-family: "Font Awesome 5 Free";
  font-size: 23px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: #DDD;
}

.accordion.active:after {
  content: "\f056";
  color: var(--color-primary);
}

.accordion, .panel p, .panel li {
  color: #000;
  font-size: var(--fontsize-l);
  letter-spacing: 0.07em;
  position: relative;
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
}

.panel p, .panel ul {
  padding: 15px 20px;
  margin: 0;
}

.panel ul {
  list-style: disc;
  padding-left: 2.4em;
}

.panel p, .panel li {
  font-size: var(--fontsize);
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}

.panel li {
  position: relative;
}

@media screen and (max-width: 767px) {
  .requirements .is-layout-flex {
    display: block;
  }
  .requirements .block--info {
    width: 100%;
    max-width: none;
  }
  .requirements .block--img {
    display: none;
    visibility: hidden;
  }
  .accordion {
    font-size: 1.25rem;
    padding-inline: 60px 54px;
  }
  .accordion::after {
    right: 10px;
  }
  .panel p, .panel li {
    font-size: var(--fontsize-m);
  }
  .accordion::before,
  .panel p:before {
    left: 15px;
  }
  .requirements .block--img.nopc {
    position: relative;
    top: 0;
    display: block;
    visibility: visible;
    width: 100%;
    max-width: none;
  }
  .requirements .block--img.nopc img {
    width: 100%;
  }
  .requirements .section__title_wrap {
    margin-top: 40px;
  }
}
/* cta */
/* -------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0px;
  gap: 25px;
  max-width: none;
}

.cta__content {
  width: 100%;
  background: #FFF;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.cta__content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 65px;
  position: relative;
  z-index: 1;
}

.cta__title {
  color: var(--color-primary);
  background: var(--color-main-gradation);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--fontsize-headline-3);
  font-weight: 700;
  line-height: 142%;
  letter-spacing: var(--letter-spacing);
}

.cta__lead {
  font-size: var(--fontsize);
  line-height: var(--line-height-l);
  letter-spacing: var(--letter-spacing);
  margin-top: 22px;
}

.entry {
  position: relative;
}

.entry p {
  font-family: "Roboto", sans-serif;
  font-size: var(--fontsize-headline-1);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--color-primary);
  position: relative;
  padding-right: 120px;
  transition: all 0.3s ease;
}

.entry p::before {
  content: "";
  width: 150px;
  height: 150px;
  bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  left: auto;
  right: 0;
  margin: auto;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
}

.entry p::after {
  content: "\f2d2";
  font-family: "Font Awesome 5 Free";
  font-size: var(--fontsize);
  font-weight: 400;
  font-style: normal;
  display: inline;
  width: 18px;
  height: 21px;
  color: var(--color-primary);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 66px;
  margin: auto;
  transition: all 0.3s ease;
}

.cta__content:hover .cta__title {
  color: var(--color-yellow);
  background: var(--color-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta__content:hover .cta__lead, .cta__content:hover .entry p {
  color: #FFF;
}
.cta__content:hover .entry p {
  padding-right: 116px;
}
.cta__content:hover .entry p::before {
  border-color: #FFF;
}
.cta__content:hover .entry p::after {
  color: #FFF;
}

.cta__content::after {
  content: "";
  background: var(--color-tertiary-gradation);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.cta__content:hover::after {
  opacity: 0.85;
}

@media screen and (max-width: 979px) {
  .cta__inner {
    padding: 6% 0;
  }
  .cta__content a {
    flex-direction: column;
    padding: 52px 30px 60px;
    gap: 30px;
  }
  .entry p {
    font-size: var(--fontsize-headline-2);
    padding: 0 0 130px;
  }
  .entry p::before {
    width: 120px;
    height: 120px;
    top: unset;
    bottom: 0;
    left: 0;
  }
  .entry p::after {
    top: unset;
    left: 0;
    right: 0;
    bottom: 50px;
  }
  .cta__content:hover .entry p {
    padding: 0 0 130px;
  }
}
@media screen and (max-width: 767px) {
  .cta__content a {
    padding: 32px 20px 60px;
  }
  .cta__title {
    font-size: var(--fontsize-headline-4);
  }
  .cta__lead {
    line-height: var(--line-height);
  }
}/*# sourceMappingURL=recruit-style.css.map */