.main {
  /*overflow: hidden;*/

}
@media screen and (max-width: 768px) {
  .main {
    overflow: hidden;
  }
}


/*-------------------------------
  sticky
-------------------------------*/
.hidden {
  animation: fade .2s ease-in-out forwards;
  pointer-events:none;
}

@keyframes fade {
  from {
      opacity: 1;
  }

  to {
      opacity: 0;
  }
}

.visible {
  animation: fadeOut .2s ease-in-out forwards;
  pointer-events:all;
}

@keyframes fadeOut {
  from {
      opacity: 0;
  }

  to {
      opacity: 1;
  }
}

.sticky-btn {
  position: fixed;
  top: 85px;
  right: 0;
  width: 5.5%;
  max-width: 106px;
  box-sizing: border-box;
  z-index: 999;
}

.sticky-btn div:first-child a{
  box-sizing: border-box;
  background: linear-gradient(to right, #D1FBFF, #D4E6FF);
  width: 100%;
  display: block;
  text-align: center;
  padding: 40px 0;
  color: #000;
  font-size: 14px;
  font-family: var(--font-rfa);
}

.sticky-btn div:last-child a{
  box-sizing: border-box;
  background: linear-gradient(to right, #295D7E, #5D435E);
  width: 100%;
  display: block;
  text-align: center;
  padding: 40px 0;
  color: #fff;
  font-size: 12px;
  font-family: var(--font-rfa);
}

@media screen and (max-width: 768px) {
  .sticky-btn-wrap {
    position: fixed;
    bottom: 0;
    height: 100dvh;
    z-index: 999;
  }

  .sticky-btn {
    display: flex;
    width: 100%;
    max-width: none;
    top: initial;
    bottom: -2px;
  }

  .sticky-btn div {
    width: 50%;
  }

  .sticky-btn div:first-child a{
    box-sizing: border-box;
    background: linear-gradient(to right, #D1FBFF, #D4E6FF);
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #000;
    font-size: 14px;
    font-family: var(--font-rfa);
  }

  .sticky-btn div:last-child a{
    box-sizing: border-box;
    background: linear-gradient(to right, #295D7E, #5D435E);
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    font-size: 12px;
    font-family: var(--font-rfa);
  }
}

/*-------------------------------
  Header
-------------------------------*/

.header {
  padding: 85px 0 0 0;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 300;
}

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

.logo span {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 0 12px;
  color: #000;
}

.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 26px 0;
  z-index: 1000;
  background: #fff;
}

.nav__inner {
  width: 93%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: auto;
}

.nav.active .logo{
  display: none;
}

.nav.active .header__list {
  display: none;
}

.nav.active .nav__inner {
  scrollbar-gutter: stable;
  overflow: hidden;
}

.nav.active {
  background: initial;
  top: 16px;
}

.header__list-wrap {
  display: flex;
  align-items: center;
  gap: 34px;
}

.header__list {
  display: flex;
  gap: 20px;
}

.header__item a{
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: #272222;
}

@media screen and (max-width: 920px) {
  .header__list {
    display: none;
  }
}

@media screen and (max-width: 768px) {

  .header {
    padding: 64px 0 0 0;
  }

  .logo img{
    max-width: 148px;
  }

  .logo span {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 0 9px;
  }

  .nav {
    padding: 20px 0;
  }

  .nav.active .logo {
    display: block;
  }

  .nav.active .logo img {
    filter: brightness(0) invert(1);
  }

  .nav.active .logo span {
    display: none;
  }

  .nav.active {
    background: initial;
    top: 0;
  }

}

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

.hamburger {
  position: relative;
  display: block;
  cursor: pointer;
  z-index: 1000;
}

.hamburger span:first-child,
.hamburger span:last-child {
  display: block;
  width: 30px;
  height: 1px;
  background: #1C2C43;
}

.hamburger span:nth-child(2) {
  display: block;
  width: 20px;
  height: 1px;
  background: #1C2C43;
  margin: 7px 0 8px auto;
}

.hamburger__menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--rfa-color-strong02);
  overflow: scroll;
  z-index: 999;
}

.hamburger__menu-inner {
  height: 100dvh;
  width: 84%;
  max-width: 604px;
  padding: 90px 0 0 0;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.hamburger__menu-list-wrap {
  display: flex;
  justify-content: space-between;
}

.hamburger__menu-list {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.hamburger__menu-item span {
  color: #fff;
  font-size: 16px;
  letter-spacing: .1em;
  font-family: var(--font-rfa)
}

.hamburger__menu-item a {
  width: 100%;
  display: inline-block;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  margin: 14px 0 0 0;
}

.hamburger__menu-item-links a{
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #D5D5D5;
}

.hamburger__menu-item-links a::before {
  content: "";
  display: inline-block;
  background: url("/recruit/assets/img/common/arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  object-fit: cover;
  width: 14px;
  height: 19px;
  margin: 0 12px 0 0 ;
}

.hamburger__menu-item-links.active {
  display: block;
}

.hamburger__menu-ctf {
  width: 100%;
  height: 178px;
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: 1fr;
  margin: 100px 0 0 0;
  border-radius: 8px;
}

.hamburger__menu-ctf-catch {
  background: url("/recruit/assets/img/common/ctf_catch_bg.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  display: grid;
  place-content: center;
  border-radius: 8px 0 0 8px;
}

.hamburger__menu-ctf-catch p {
  margin: 0 0 0 0.25em;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.4;
  background: linear-gradient(to right, #295D7E, #43506E 50%, #5D435E);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hamburger__menu-ctf-catch div {
  background: #fff;
  width: 100%;
  margin: 5px 0 0 0;
}

.hamburger__menu-ctf-catch div span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4px;
  line-height: 1.5;
  padding: 2px 0;
  text-align: center;
  background: var(--rfa-color-bule01);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hamburger__menu-ctf-btn {
  background: url("/recruit/assets/img/common/ctf_entry_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 8px 8px 0;
}

.hamburger__menu-ctf-btn a{
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 63%;
  height: 44px;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.8;
  border-radius: 50px;
  padding: 12px 6px 12px 25px;
}

.hamburger__menu-ctf-btn a img {
  display: inline-block;
  background: #fff;
  width: 9px;
  height: 7px;
  object-fit: contain;
  padding: 12px 12px;
  border-radius: 50%;
}
.hamburger.active {
  margin-top: -10px;
  padding: 10px 0;
}
.hamburger.active span {
  background: #fff;
  width: 55px;
}

.hamburger.active span:nth-child(2) {
  margin: 0 0 0 auto;
  display: none;
}

.hamburger__menu.active {
  display: block;
}

@media screen and (max-width: 768px) {

  .hamburger__menu-inner{
    padding: 78px 0 0 0;
  }

  .hamburger__menu-list-wrap{
    flex-direction: column;
  }

  .hamburger__menu-list {
    gap: 18px;
  }

  .hamburger__menu-item-links {
    display: none;
  }

  .hamburger__menu-list:last-child {
    margin: 18px 0 0 0;
  }

  .hamburger__menu-item::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #fff;
  }

  .hamburger__menu-list:last-child .hamburger__menu-item:last-child::after {
    display: none;
  }

  .hamburger__menu-item span {
    font-size: 10px;
  }

  .hamburger__menu-item a {
    font-size: 20px
  }

  .hamburger__menu-item-links a{
    font-size: 12px;
  }

  .hamburger__menu-item-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .hamburger__open-btn {
    display: flex;
    align-items: center;
    width: 13px;
    height: 37px;
  }

  .hamburger__open-btn span{
    background: #fff;
    width: 100%;
    height: 1px;
  }

  .hamburger__menu-ctf {
    margin: 31px 0 0 0;
    grid-template-columns: 1fr;
  }

  .hamburger__menu-ctf-catch {
    border-radius: 8px 8px 0 0;
    background-position: top center;
    background-size: auto;
    padding: 12px 0;
  }

  .hamburger__menu-ctf-catch p {
    font-size: 25px;
  }

  .hamburger__menu-ctf-catch div span {
    font-size: 11px;
  }

  .hamburger__menu-ctf-btn {
    padding: 18px 0;
    border-radius: 0 0 8px 8px;
  }

  .hamburger__menu-ctf-btn a {
    height: 52px;
  }
}


/*-------------------------------
  fv
-------------------------------*/


.fv {
  width: 89%;
  /*max-width: 1160px;*/
  margin: 0 auto;
  position: relative;
}

.fv::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("/recruit/assets/img/top/bg_01.png");
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 234px;
  width: 20%;
  height: auto;;
  aspect-ratio: 234/202;
  z-index: -1;
}

.hero-catch {
  position: absolute;
  width: fit-content;
  bottom: 0;
  left: 17%;
}

.hero-catch span{
  font-size: 22px;
  letter-spacing: .2em;
  color: #fff;
}

.hero-catch h2 {
  font-size: clamp(4.75rem, -0.313rem + 10.55vw, 8.125rem);
  font-family: var(--font-rfa);
  color: #fff;
  margin: clamp(0.813rem, -0.219rem + 2.15vw, 1.5rem) 0 0 0;
}
.main-visual-swiper .swiper-slide {
  border-radius: 10px 0 10px 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv::before {
    display: none;
  }

  .hero-catch {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }

  .hero-catch span{
    font-size: 18px;
  }

  .hero-catch h2 {
    font-size: 46px;
  }
  .main-visual-swiper .swiper-slide {
    border-radius: 10px;
    height: 77vh;
  }
}

/*-------------------------------
  news
-------------------------------*/

.news {
  width: 89%;
  /*max-width: 1160px;*/
  margin: 20px auto 0 auto;
  display: flex;
  align-items: center;
}

.news__info {
  display: flex;
  align-items: center;
}

.new-mark {
  padding: 7px 8px 7px 10px;
  border: 0.8px solid #000;
  border-radius: 8px;
  background: var(--rfa-color-strong02);
  color: #fff;
  font-size: 13px;
  font-family: var(--font-rfa);
  letter-spacing: 0.71px;
  margin: 0 13px 0 0;
}

.news__date {
  margin: 0 14px 0 0;
  font-size: 12px;
  line-height: 2;
  font-weight: 400;
  color: #1B1B1B;
}

.news__ttl {
  font-size: 13px;
  line-height: 2;
  font-weight: 400;
  color: #1B1B1B;
}

@media screen and (max-width: 768px) {
  .news {
    flex-direction: column;
    align-items: flex-start;
    margin: 10px auto 0 auto;
  }

  .new-mark {
    border: none;
    font-size: 12px;
  }

  .news__date {
    font-size: 14px;
  }

  .news__ttl {
    font-size: 14px;
  }

}

/*-------------------------------
  thought
-------------------------------*/

.thought {
  position: relative;
  width: 90%;
  max-width: 1080px;
  margin: 200px auto 0 auto;
}

.thought::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -30%;
  left: -15%;
  background: url("/recruit/assets/img/top/bg_02.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: auto;;
  aspect-ratio: 600/300;
  z-index: -1;
}

.thought::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -70px;
  right: -20%;
  background: url("/recruit/assets/img/top/bg_03.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 50%;
  height: auto;;
  aspect-ratio: 517/275;
  z-index: -1;
}

.thought__catch p {
  background: var(--rfa-color-strong02);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  font-size: 16px;
  line-height: 2.7;
}

.thought__ctf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 45px 0 0 0;
}

.thought__ctf p {
  background: var(--rfa-color-strong02);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.thought__btn a {
  height: 70px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 222px;
  font-size: 14px;
  padding: 20px 10px 20px 40px;
  color: #000;
  border: 1px solid #000;
  border-radius: 80px;
}

.thought__btn a img {
  width: 14px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  padding: 20px 17px;
}

@media screen and (max-width: 768px) {
  .thought {
    margin: 90px auto 0 auto;
  }

  .thought::after,
  .thought::before {
    display: none;
  }

  .thought__ctf {
    flex-direction: column;
    align-items: flex-start;
    margin: 30px 0 0 0;
  }

  .thought__ctf p{
    font-size: 28px;
  }

  .thought__btn a {
    max-width: 190px;
    height: 44px;
    background: var(--rfa-color-strong02);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    border: 1px solid #3C3C3C;
    margin: 42px 0 0 0;
    padding: 6px 7px 6px 27px;
  }

  .thought__btn a img {
    padding: 12px 11px;
    background: var(--rfa-color-strong02);
  }
}

/*-------------------------------
  photo list
-------------------------------*/

.photo__list {
  position: relative;
  width: 100%;
  display: flex;
  gap: 60px;
  margin: 140px 0 0 0;
}

.photo__list::after {
  content: "";
  display: block;
  position: absolute;
  top: -5%;
  left: 45%;
  background: url("/recruit/assets/img/top/bg_04.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 50%;
  height: auto;;
  aspect-ratio: 487/260;
  z-index: -1;
}

.photo__item:first-of-type {
  margin: 66px 0 0 0;
}

.photo__item:nth-of-type(2) {
  margin: 144px 0 0 0;
}

@media screen and (max-width: 768px) {
  .photo__list {
    gap: 10px;
    margin: 48px 0 0 0;
  }

  .photo__list::after {
    display: none;
  }

  .photo__item:first-of-type {
    margin: 25px 0 0 0;
  }

  .photo__item:nth-of-type(2) {
    margin: 57px 0 0 0;
  }
}

/*-------------------------------
  text slider
-------------------------------*/

.text__slider {
  width: calc(min(84%, 1080px) + calc(100vw - min(84%, 1080px))/2);;
  margin: 54px 0 0 auto;
  display: flex;
  gap: 90px;
  overflow: hidden;
}

.text__slider-item p{
  font-size: 81px;
  line-height: 1.5;
  font-family: var(--font-rfa);
  background: var(--text-color);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.text__slider-item div {
  display: flex;
  align-items: center;
  font-size: 37px;
  color: #D1D1D1;
}

.text__slider-item div span {
  font-family: var(--font-rfa);
}

.text__slider-item div img {
  width: 16px;
  height: 17px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .text__slider {
    gap: 50px;
  }

  .text__slider-item p {
    font-size: 40px;
  }

  .text__slider-item div img {
    width: 8px;
    height: 8px;
  }

  .text__slider-item div span {
    font-size: 18px;
  }
}


/*-------------------------------
  future-with-us
-------------------------------*/

.future-with-us {
  margin: 55px 0 0 0;
  background: url("/recruit/assets/img/top/feature_with_us_bg.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: calc(50vw + 140px);
}

.future-with-us__inner {
  width: 84%;
  max-width: 1080px;
  margin: 0 auto 0 auto;
}

.future-with-us__heading {
  padding: 94px 0 0 0;
}

.future-with-us__ttl-en {
  font-size: 16px;
  font-family: var(--font-rfa);
}

.future-with-us__ttl {
  font-size: 40px;
  font-weight: 600;
  background: var(--rfa-color-strong02);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 20px 20px 20px 0;
  margin: 11px 0 0 0;
  z-index: 10;
}

.future-with-us__ttl-wrap{
  display: block;
  width: fit-content;
  background: #fff;
}

.future-with-us__desc {
  margin: 70px 0 0 0;
  width: 31%;
  line-height: 2;
}

.ceo-message__ttl {
  display: inline-block;
  font-family: var(--font-rfa);
  font-size: 14px;
  margin: 70px 0 0 0;
  line-height: 2.2;
  letter-spacing: 1.12px;
}

.ceo-message-box {
  padding: 6rem 0 19rem;
  background: url("/recruit/assets/img/top/ceo.jpg") no-repeat center;
  background-size: cover;
  position: relative;
  border-radius: 10px;
}

.ceo-message__text-wrap {
  box-sizing: border-box;
}

.ceo-message__text {
  position: relative;
  margin: 0 auto;
}
.ceo-message__text-position {
  width: fit-content;
justify-content: center;
  align-items: center;
  background: #fff;
  padding: 1.125rem;
}
.ceo-message__text-position span{
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  background: var(--rfa-color-strong02);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ceo-message__text-ttl {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  padding: 1.125rem;
  color: #fff;
  background: var(--rfa-color-strong02);
    width: fit-content;
    justify-content: center;
    align-items: center;
}

.ceo-message__text-btn {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
}

.ceo-message__text-btn a{
  height: 70px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 222px;
  font-size: 14px;
  padding: 20px 10px 20px 40px;
  color: #000;
  border: 1px solid #000;
  border-radius: 80px;
  margin: 28px auto 0 auto;
  background: #fff;
}
.ceo-message__text-btn a span {
  background: var(--rfa-color-strong02);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ceo-message__text-btn a img {
  width: 14px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  padding: 20px 17px;
}

.faq-ctf {
  padding: 0 0 38px 0;
}

.faq-ctf__ttl {
  display: inline-block;
  font-family: var(--font-rfa);
  letter-spacing: .2em;
  font-size: 14px;
  letter-spacing: 1.12px;
  line-height: 2.2;
}

.faq-ctf__box {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 29px 48px 29px 23px ;
  border-radius: 10px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
}

.faq-ctf__box p {
  font-size: 20px;
  line-height: 1.6;
  background: var(--rfa-color-strong02);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-ctf__box img {
  width: 14px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  padding: 20px 17px;
}

@media screen and (max-width: 768px) {
  .future-with-us__inner {
    width: 90%;
  }

  .future-with-us {
    background-size: 100%;
    background-size: cover;
  }

  .future-with-us__heading {
    padding: 54px 0 0 0;
  }

  .future-with-us__ttl-en {
    font-size: 16px;
    color: #fff;
    letter-spacing: 1.12px;
  }

  .future-with-us__ttl {
    font-size: 30px;
    padding: 14px 7px;
  }

  .future-with-us__desc {
    width: 100%;
    font-size: 14px;
    margin: 25px 0 0 0;
    color: #fff;
  }

  .ceo-message__ttl {
    margin: 50px 0 0 0;
    color: #fff;
  }

  .ceo-message-box {
    padding: 1rem 0 28rem;
    background: url("/recruit/assets/img/top/ceo_sp.jpg") no-repeat center;
    background-size: cover;
  }
  .ceo-message__text-position {
    padding: 0.72rem;
  }
  .ceo-message__text-position span{
    font-size: 1.44rem;
  }

  .ceo-message__text-ttl {
    font-size: 1.44rem;
    padding: 0.72rem;
  }
  .ceo-message__text-btn {
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .ceo-message__text-btn a{
    width: 77vw;
    max-width: 200px;
    height: 44px;
    font-weight: 500;
    border: 1px solid #3C3C3C;
    margin: 0 auto;
    padding: 6px 7px 6px 27px;
  }

  .ceo-message__text-btn a img {
    padding: 12px 11px;
    background: var(--rfa-color-strong02);
  }

  .faq-ctf__ttl {
    color: #fff;
    margin: 15px 0 0 0;
  }

  .faq-ctf__box {
    padding: 20px 9px 20px 33px;
  }

  .faq-ctf__box p{
    font-size: 14px;
    line-height: 1.5;
  }

  .faq-ctf__box img {
    background: var(--rfa-color-strong02);
  }
}

@media screen and (max-width: 420px) {
  .future-with-us__ttl {
    font-size: clamp(1.3125rem, -0.3239rem + 8.1818vw, 1.875rem);
  }
}

/*-------------------------------
  job category
-------------------------------*/
.job-category {
  margin: 90px 0 0 0;
}

.job-category__ttl-en {
  display: block;
  width: 84%;
  max-width: 1080px;
  margin: 0 auto 0 auto;
  font-family: var(--font-rfa);
  letter-spacing: .2em;
  line-height: 2;
}

.job-list__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px auto 0 0;
  width: 89vw;
  max-width: 1080px;
}

.job-category__ttl {
  display: flex;
  align-items: center;
  gap: 30px;
}

.job-category__ttl h2{
  font-size: 40px;
  line-height: 1.5;
  font-weight: 600;
  background: var(--rfa-color-strong02);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.job-category__ttl a img {
  width: 17px;
  height: 14px;
  padding: 19px 18px;
  background: var(--rfa-color-strong02);
  border-radius: 50%;
}

.job-list__wrap {
  position: relative;
  width: calc(min(84%, 1080px) + calc(100vw - min(84%, 1080px))/2);
  margin: 0 auto;
}

.swiper-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.job-list__wrap .swiper-button-next,
.job-list__wrap .swiper-button-prev {
  position: static;
  width: 14px;
  height: 11px;
  border: 1px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(white, white) padding-box,
    var(--rfa-color-strong02) border-box;
  padding: 19px 18px;
  margin: 0;
}

.job-list__wrap .swiper-button-next svg,
.job-list__wrap .swiper-button-prev svg {
  display: none;
}

.job-list {
  width: calc(min(84%, 1080px) + calc(100vw - min(84%, 1080px))/2);
  margin: 37px auto 0 0;
}

.job-item a{
  display: block;

}
.job-item a img {
  border-radius: 10px;
}
.job-item {
  width: calc(min(90vw, 1080px) / 3 - 10px);
}

.job-name {
  font-size: 20px;
  margin: 20px 0 0 0;
  color: #272222;
}

.job-desc {
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  color: #272222;
  margin: 16px 0 0 0;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media screen and (max-width: 768px) {
  .job-list__wrap .swiper-button-next,
  .job-list__wrap .swiper-button-prev {
    position: absolute;
    margin: calc(0px - var(--swiper-navigation-size) / 2) 0 0 0;
  }

  .job-category__ttl-en  {
    width: 89%;
  }

  .job-list__heading {
    margin: 11px auto 0;
    width: 90%;
  }

  .job-category__ttl h2 {
    font-size: 36px;
  }
}


@media screen and (max-width: 440px) {
  .job-list__wrap {
    width: 100%;
  }
  .job-name {
    font-size: 16px;
  }
  .job-desc {
    font-size: 14px;
  }
  .job-category__ttl h2{
    font-size: clamp(1.4375rem, -0.3958rem + 9.1667vw, 2.125rem);
  }
}


/*-------------------------------
  aboutus
-------------------------------*/
.aboutus {
  margin: 150px 0 0 0;
}

.aboutus__ttl-en {
  display: block;
  width: 84%;
  font-family: var(--font-rfa);
  letter-spacing: .2em;
  max-width: 1080px;
  margin: 70px auto 0 auto;
}

.aboutus__inner {
  position: relative;
  width: calc(min(84%, 1080px) + calc(100vw - min(84%, 1080px))/2);
  margin: 11px 0 0 auto;
  background: linear-gradient(to right, #5087C3, #1D4885);
  padding: 0 0 43px 0;
}

.aboutus__ttl {
  display: inline-block;
  background: #fff;
}

.aboutus__ttl h2{
  padding: 20px 20px 20px 0;
  font-size: 40px;
  font-weight: 600;
  background: var(--rfa-color-strong02);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aboutus__env-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.aboutus__env {
  position: relative;
  transform: translateY(100px);
  width: 54%;
}

.aboutus__env::after {
  content: "";
  position: absolute;
  bottom: -30px;
  width: 100%;
  aspect-ratio: 640/600;
  background: linear-gradient(to left, #76AAF3, #376AA0);
  z-index: -1;
}

.aboutus__env-heading {
  position: relative;
  transform: translateX(-80px);
  z-index: 15;
}

.aboutus__desc {
  width: 32%;
  color: #fff;
  line-height: 2;
  font-weight: 400;
  margin: 92px 0 0 40px;
}

.aboutus__env img{
  position: absolute;
  bottom: 0;
  right: 60px;
  z-index: 15;
  object-fit: cover;
  aspect-ratio: 640/600;
}

.aboutus__env-ttl,
.aboutus__banner-ttl {
  width: fit-content;
  color: #fff;
  padding: 10px 20px;
  background: var(--rfa-color-strong02);
  font-size: 24px;
  line-height: 1.3;
}

.aboutus__env-desc,
.aboutus__banner-desc {
  width: fit-content;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
}

.aboutus__env-desc p,
.aboutus__banner-desc p{
  font-size: 26px;
  font-weight: bold;
  background: var(--rfa-color-strong02);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aboutus__env-desc span,
.aboutus__banner-desc span {
  font-size: 22px;
  line-height: 1.4;
  font-family: var(--font-rfa);
  color: #fff;
  padding: 5px 18px;
  background: var(--rfa-color-strong02);
  border-radius: 30px;
}

.aboutus__banner {
  position: relative;
  width: 91%;
  height: auto;
  max-width: 1080px;
  background: linear-gradient(to left, #76AAF3, #76AAF3);
  aspect-ratio: 1080/424;
  margin: 250px auto 0 0;
}

.aboutus__banner img {
  position: absolute;
  top: -23px;
  left: -40px;
  aspect-ratio: 1080/410;
  object-fit: cover;
}

.aboutus__banner-heading {
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin: 0 auto 0 0;
}

.aboutus__banner-desc {
  margin: 0 0 0 auto;
}

.aboutus__banner-ttl {
  margin: 0 0 0 auto;
}

@media screen and (max-width: 768px) {
  .aboutus__env-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .aboutus__desc {
    width: 72%;
    margin: 27px auto 48px 9%;
  }

  .aboutus__ttl h2{
    font-size: 36px;
  }

  .aboutus__env {
    position: relative;
    transform: none;
    width: 100%;
  }

  .aboutus__env::after {
    content: "";
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    aspect-ratio: initial;
    background: linear-gradient(to left, #76AAF3, #376AA0);
    z-index: 1;
  }

  .aboutus__env img {
    position: relative;
    display: block;
    width: 91%;
    margin: 0 0 0 auto;
    z-index: 10;
    right: 0;
  }

  .aboutus__env-heading {
    position: absolute;
    transform: none;
    bottom: 0;
    left: 0;
    margin: 0  auto 0 9%;
  }

  .aboutus__env-ttl {
    font-size: 16px;
    padding: 5px 4px;
  }

  .aboutus__env-desc {
    padding: 10px 13px;
    gap: 15px;
  }

  .aboutus__env-desc p{
    font-size: 20px;
    font-weight: 400;
  }

  .aboutus__env-desc span {
    font-size: 20px;
  }

  .aboutus__banner-heading {
    right: 0;
    bottom: 0;
  }

  .aboutus__banner-ttl {
    font-size: 17px;
    padding: 7px 14px;
  }

  .aboutus__banner-desc{
    box-sizing: border-box;
    padding: 13px 11px;
    justify-content: flex-end;
    gap: 15px;
  }

  .aboutus__banner-desc p{
    font-size: 20px;
    font-weight: 400;
  }

  .aboutus__banner-desc span {
    font-size: 20px
  }

  .aboutus__banner img {
    aspect-ratio: 358/302;
    top: initial;
    width: 109%;
    left: -9%;
    bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .aboutus__env-desc p,
  .aboutus__env-desc span,
  .aboutus__banner-desc p,
  .aboutus__banner-desc span {
    font-size: clamp(0.8125rem, -0.4563rem + 7vw, 1.25rem);
  }

  .aboutus__env-ttl,
  .aboutus__banner-ttl {
    font-size: clamp(0.8125rem, -0.4563rem + 7vw, 1.25rem);
  }
}

@media screen and (max-width: 440px) {
  .aboutus__ttl h2{
    font-size: clamp(1.4375rem, -0.3958rem + 9.1667vw, 2.125rem);
  }
}




/*-------------------------------
  interview slider
-------------------------------*/

.interview {
  margin: 145px 0 0 0;
}

.interview__ttl-en {
  display: block;
  width: 84%;
  max-width: 1080px;
  margin: 0 auto 0 auto;
  line-height: 2;
}

.interview__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0 0 0;
}

.interview__ttl {
  width: 84%;
  max-width: 1080px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.interview__ttl h2 {
  font-size: 40px;
  line-height: 1.5;
  font-weight: 600;
  background: var(--rfa-color-strong02);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.interview__ttl a img {
  width: 17px;
  height: 14px;
  padding: 19px 18px;
  background: var(--rfa-color-strong02);
  border-radius: 50%;
}

.interview__wrap {
  width: 84%;
  max-width: 1080px;
  position: relative;
  margin: 0 auto 0 auto;
  overflow: visible;
}

.interview__wrap .swiper-button-next,
.interview__wrap .swiper-button-prev {
  position: static;
  width: 14px;
  height: 11px;
  border: 1px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(white, white) padding-box,
    var(--rfa-color-strong02) border-box;
  padding: 19px 18px;
  margin: 0;
}

.interview__wrap .swiper-button-next svg,
.interview__wrap .swiper-button-prev svg {
  display: none;
}

.interview-list {
  margin: 37px 0 0 0;
  justify-content: center ;

}

.interview-item {
  position: relative;
}

.interview-item a{
  position: relative;
  display: block;
}

.interview-item img{
  aspect-ratio: 400/540;
}

.interview-copy {
      margin-top: -3rem;
}

.interview-copy-ttl {
  display: inline-block;
  background-color: #fff;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 2.6px;
}

.interview-copy-ttl p {
  background: var(--rfa-color-bule01);
  background-clip: text;
  -webkit-text-fill-color: transparent;

}

.interview-copy-desc {
  display: inline-block;
  background: var(--rfa-color-strong02);
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
  padding: 8px 20px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 2.6px;
}

.interview-job-info {
  padding: 16px 0 12px 0;

  color: #272222;
}
.interview-job-info p {
    display: flex;
      flex-direction: column;
      gap: 4px;
}

.interview-job-info span{
  display: block;
font-size: 0.75rem;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1.6px;
  padding-left: 3px;
}

.interview-job-info-date {
  border: 1px solid #5F5F5F;
  border-radius: 30px;
  padding: 0 12px;
  font-size: 10px;
  line-height: 3.2;
  white-space: nowrap;
}

.interview__wrap.no-swiper .swiper-arrow {
  display: none;
}
.interview__wrap.no-swiper .interview-list {
  justify-content: flex-start;
  gap: 24px;
  width: 32%;
}
@media screen and (max-width: 768px){
  .interview__ttl-en {
    width: 90%;
  }

  .interview__ttl {
    width: 90%;
    gap: 14px;
  }
  .interview__wrap .swiper-button-next,
  .interview__wrap .swiper-button-prev {
    position: absolute;
    margin: calc(0px - var(--swiper-navigation-size) / 2) 0 0 0;
  }

  .interview__wrap {
    width: 100%;
  }

  .interview-list {
    justify-content: initial
  }

  .interview-item {
    width: 84%;
  }

  .interview-item img {
    aspect-ratio: 300/400;
  }

  .interview__ttl a img {
    width: 8.5px;
    height: 6px;
    padding: 12px 11px;
  }

  .interview__heading {
    width: 90%;
    margin: 20px auto 0 auto;
  }

  .interview__ttl h2{
    font-size: 34px;
  }

  .interview-copy {
    margin-top: -2rem;
  }

  .interview-copy-ttl {
    padding: 5px 12px;
    font-size: 18px;
    line-height: 28px;
  }

  .interview-copy-desc {
    font-size: 18px;
    line-height: 28px;
    padding: 5px 12px;
  }

  .interview-job-info {
    font-size: 12px;
    line-height: 18px;
    padding: 12px 0 8px 0;
  }

  .interview-job-info span{
    display: block;
  }

}

@media screen and (max-width: 450px) {
  .interview__ttl h2{
    font-size: clamp(1.375rem, -0.4712rem + 9.2308vw, 2.125rem);
  }
}
@media screen and (max-width: 375px) {
  .interview-copy-ttl {
    font-size: 12px;
    line-height: 24px;
  }
  .interview-copy-desc {
    font-size: 12px;
    line-height: 24px;
    padding: 5px 12px;
  }
}
/*-------------------------------
  blog
-------------------------------*/

.blog {
  margin: 200px 0 0 0 ;
  position: relative;
}

.blog::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 150%;
  max-width: 900px;
  aspect-ratio: 924/500;
  background: url("/recruit/assets/img/top/bg.png");
  background-size: contain;
  background-repeat: no-repeat;
}


.blog__heading {
  width: 50%;
  position: relative;
}

.blog__illustration {
  /*
  position: absolute;
  */
  position: relative;
  bottom: -15%;
  left: -5%;
  /*
  width: 50%;
  aspect-ratio: 564 / 209;
  */
  width: 65%;
  aspect-ratio: 573 / 219;
}

.blog__illustration img{
  object-fit: cover;
}

.blog__inner {
  position: relative;
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.blog__ttl-en {
  font-size: 16px;
}

.blog__ttl {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 40px 0 0 0;
}

.blog__ttl h2{
  font-size: 40px;
  line-height: 1.5;
  font-weight: 600;
  background: var(--rfa-color-strong02);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog__ttl a img {
  width: 17px;
  height: 14px;
  padding: 19px 18px;
  background: var(--rfa-color-strong02);
  border-radius: 50%;
}

.blog__list-wrap {
  width: 50%;
}

.blog__item {
  border-radius: 25px;
}

.blog__list-wrap .swiper-button-next,
.blog__list-wrap .swiper-button-prev {
  position: absolute;
  width: 14px;
  height: 11px;
  border: 1px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(white, white) padding-box,
    var(--rfa-color-strong02) border-box;
  padding: 19px 18px;
  margin: 0;
}

.blog__list-wrap .swiper-button-next svg,
.blog__list-wrap .swiper-button-prev svg {
  display: none;
}

@media screen and (max-width: 768px) {
  .blog {
    margin: 56px 0 0 0;
  }

  .blog::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 80%;
    transform: translate(-50%, -50%);
    display: block;
    width: 250%;
    /* max-width: 900px; */
    aspect-ratio: 924 / 500;
    background: url("/recruit/assets/img/common/bg.png");
    background-size: contain;
    background-repeat: no-repeat;
  }

  .blog__inner {
    flex-direction: column;
    width: 100%;
  }

  .blog__list-wrap {
    width: 100%;
  }

  .blog__heading {
    width: 90%;
    margin: 0 auto;
  }

  .blog__list-wrap {
    width: 85%;
    margin: 30px auto 0 auto;
  }

  .blog__illustration {
    position: static;
    width: 90%;
    aspect-ratio: 564 / 209;
    margin: 20px auto 0 auto;
  }

  .blog__list-wrap .swiper-button-next,
  .blog__list-wrap .swiper-button-prev {
    position: static;
  }

  .blog__arrow-wrap {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 20px 0 0 0;
  }

  .blog__ttl {
    margin: 20px 0 0 0;
  }

  .blog__ttl h2{
    font-size: 34px;
  }
}

@media screen and (max-width: 440px) {
  .blog__ttl h2{
    font-size: clamp(1.4375rem, -0.3958rem + 9.1667vw, 2.125rem);
  }
}

/*-------------------------------
  footer
-------------------------------*/

.footer {
  position: relative;
  padding: 160px 0 0 0;
  margin: 270px 0 0 0;
  background: var(--rfa-color-strong02);
}

.top-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  top: -10px;
  right: 10px;
  transform: translateY(-100%);
  background: var(--rfa-color-strong02);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.top-btn img{
  transform: rotate(-90deg);
  width: 9px;
  height: 12px;
}

.footer__ctf {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84%;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 8px;
}

.footer__ctf-inner {
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: 1fr;
}

.footer__ctf-catch {
  background: url("/recruit/assets/img/common/ctf_catch_bg.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  display: grid;
  place-content: center;
  border-radius: 8px 0 0 8px;
  padding: 80px 0;
}

.footer__ctf-catch p {
  margin: 0 0 0 0.25em;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.4;
  background: linear-gradient(to right, #295D7E, #43506E 50%, #5D435E);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__ctf-catch div {
  background: #fff;
  width: 100%;
  margin: 5px 0 0 0;
}

.footer__ctf-catch div span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  line-height: 1.5;
  padding: 2px 0;
  text-align: center;
  background: var(--rfa-color-bule01);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__ctf-btn {
  background: url("/recruit/assets/img/common/ctf_entry_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 8px 8px 0;
}

.footer__ctf-btn a{
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 54%;
  max-width: 320px;
  height: 70px;
  background: linear-gradient(to right, #0E3954, #322332);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  border-radius: 50px;
  padding: 12px 10px 12px 40px;
}

.footer__ctf-btn a img {
  display: inline-block;
  background: #fff;
  width: 9px;
  height: 7px;
  object-fit: contain;
  padding: 19px 18px;
  border-radius: 50%;
}

.footer__list {
  width: 84%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}

.footer__catch-ttl {
  font-size: 31px;
  font-weight: 500;
  color: #fff;
}

.footer__catch-subttl {
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  margin: 7px 0 0 0;
}

.footer__left-border {
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0.4;
  margin: 20px 0;
}

.footer__left-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__left-logo img{
  max-width: 115px;
  object-fit: cover;
}

.footer__left-logo p {
  font-size: 13px;
  font-weight: 300;
  color: #fff;
}

.footer__left-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  font-size: 10px;
  color: #000;
  width: fit-content;
  padding: 7px 7px 7px 16px;
  border-radius: 16px;
  margin: 12px 0 0 0;
}

.footer__left-link img{
  width: 8px;
  height: 8px;
}

.footer__right {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 36px;
  grid-row-gap: 30px;
}

.footer__right div:nth-child(3) {
  grid-area: 1 / 3 / 2 / 5;
}

.footer__item a {
  display: block;
}


.footer__black {
  background: #000;
  display: flex;
}

.footer__black-inner {
  display: flex;
  justify-content: space-between;
  width: 84%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 15px 0;
}

.footer__black-link {
  font-weight: 400;
  display: flex;
  gap: 20px;
  font-size: 10px;
  line-height: 1.2;
}

.footer__item span {
  font-family: var(--font-rfa);
  color: #fff;
  font-size: 10px;
  letter-spacing: .1em;
}

.footer__item a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: 8px 0 0 0;
}

.footer__sub-item {
  margin: 15px 0 0 0;
}

.footer__sub-item.active {
    display: block;
}

.footer__sub-item a{
  font-size: 10px;
  color: #d5d5d5;
}

.footer__sub-item img {
  width: 13px;
  height: 9px;
  margin: 0 6px 0 0;
}

.footer__black-link a {
  color: #fff;
}

.footer__black-copy {
  font-weight: 400;
  font-size: 10px;
  line-height: 1;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer__ctf-inner {
    grid-template-columns: 1fr;
  }

  .footer__ctf-catch {
    padding: 32px 0 37px 0;
    border-radius: 8px 8px 0 0;
    background-size: auto;
  }

  .footer__ctf-catch p{
    font-size: 24px;
  }

  .footer__ctf-catch div span{
    font-size: 10px;
  }

  .footer__ctf-btn {
    padding: 15px 0;
    border-radius: 0 0 8px 8px;
  }

  .footer__ctf-btn a{
    position: relative;
    width: 100%;
    max-width: 231px;
    font-size: 14px;
    background: #000;
    z-index: 100;
    box-shadow: 3px 5px 0px 0px rgba(255, 255, 255, 1);
  }

  .footer__list {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__left {
    order: 2;
    text-align: center;
    margin: 24px auto 0 auto;
  }

  .footer__left-logo {
    justify-content: center;
  }

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

  .footer__open-btn {
    display: flex;
    align-items: center;
    width: 13px;
    height: 24px;
    cursor: pointer;
  }

  .footer__open-btn span{
    display: block;
    background: #fff;
    width: 100%;
    height: 1px;
  }

  .footer__left-link {
    margin: 15px auto 0 auto;
  }

  .footer__right {
    width: 100%;
    order: 1;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 16px;
  }

  .footer__right div:nth-child(3){
    grid-area: initial;
  }

  .footer__item span{
    font-family: var(--font-rfa);
    color: #fff;
    font-size: 10px
  }

  .footer__item::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #fff;
  }

  .footer__item a {
    width: fit-content;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    margin: 13px 0 0 0;
  }

  .footer__item:first-child a {
    font-weight: 600
  }

  .footer__sub-item  {
    display: none;
  };

  .footer__sub-item.active {
    display: block;
  }

  .footer__sub-item a {
    color: #d5d5d5;
    font-size: 10px;
  }

  .footer__black-inner {
    width: 95%;
  }

  .footer__item-ctf {
    width: 100%;
    display: flex;
    margin: 4px 0 0 0;
  }

  .footer__item-ctf a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 57px;
    font-size: 13px;
    font-weight: bold;
  }

  .footer__item-ctf a:first-child {
    color: #000;
    font-weight: bold;
    background: linear-gradient(to right, #D1FBFF, #D4E6FF);
  }

  .footer__item-ctf a:last-child {
    color: #524965;
    font-weight: bold;
    background: #fff;
  }

  .top-btn {
    top: initial;
    bottom: 50px;
    transform: initial;
    background: #fff;
  }
}
