html * {
  box-sizing: border-box;
}

header,
footer {
  box-sizing: border-box !important;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

.footer__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.form-btn {
    display: flex;
    background: #433b92;
    color: white;
    align-items: anchor-center;
    justify-content: end;
    border-radius: 50px;
    gap: 8.7rem;
    width: 340px;
    height: 22px;
    padding: 22px;
    font-family: Zen Kaku Gothic New;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    line-height: 100%;
    letter-spacing: 0%;
    MARGIN: auto;
    height: 66px;
}
.form-btn:hover{
  justify-content: space-around;
}
.form-btn:hover .arrow-svg {
    transition: all 0.3s ease-in-out;
    position: absolute;
    right: 10px;
}
@media (max-width:990px) {
  .footer .container{
    width: auto !important;
  }
  .footer__inner {
    padding: 0 16px;
}
}


@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Zen+Kaku+Gothic+New&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Sawarabi+Mincho&family=Zen+Kaku+Gothic+New&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

body {
  padding: 0;
  margin: 0;
  background-color: #f5f5f5 !important;
  font-family: 'Zen Kaku Gothic New', sans-serif !important;
}

/* <!--======================= header ==================================--> */
.site-header {
  width: auto;
  padding: 40px 52px 0;
  position: absolute;
  margin: auto;
  inset: 0;
}

.header-container {
  max-width: 1120px;
  margin: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffffb2;
  backdrop-filter: blur(40px);
  position: relative;
  z-index: 1111;
  border-radius: 48px;
  width: 100%;
}

.header-logo {
  display: flex;
}

.header-logo img {
  height: 36px;
}

.header-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  flex-wrap: wrap;
  padding: 0 21px;
  margin: 0;
  row-gap: 0;
}

.header-nav a {
  font-family:
    '' Zen Kaku Gothic New ', sans-serif',
    sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-decoration: none;
  color: #2c285f;
}

.header-nav a:hover {
  color: #0a6ebd;
}

.header-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 4px 10px;
  color: #fff;
  transition: 0.3s ease;
  display: flex;
  justify-content: end;
  align-items: center;
  width: 140px;
  height: 37px;
  border-radius: 50px;
  gap: 1rem;
  text-decoration: none;
}

.btn .top-btn-text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0;
}

.btn .bottom-btn-text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
}

.custom-btn {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
    text-align: left;
}
.btn-green {
  background: rgba(0, 200, 155, 1);
}

.btn-purple {
  background: rgba(47, 43, 96, 1);
}

.btn-dark {
  background: rgba(67, 59, 146, 1);
}

.btn:hover {
  opacity: 0.85;
}

.arrow-svg {
  padding: 6px 5px;
  background-color: white;
  border-radius: 50%;
  width: 25px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.arrow-svg svg{
  width: 15px !important;
  height: 15px !important;
}
/* Hamburger Menu Button */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1112;
}

.hamburger-menu:hover {
  opacity: 0.7;
}

/* Off-Canvas Menu */
.off-canvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 1200;
}

.off-canvas-overlay.active {
  opacity: 1;
  visibility: visible;
}

.off-canvas-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1201;
  overflow-y: auto;
  padding: 10px;
}

.off-canvas-menu.active {
  right: 0;
}

.off-canvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.off-canvas-logo img {
  height: 32px;
}

.close-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.close-menu:hover {
  opacity: 0.7;
}

.off-canvas-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.off-canvas-nav li {
  margin-bottom: 20px;
}

.off-canvas-nav a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #2c285f;
  text-decoration: none;
  display: block;
  padding: 10px 0;
}

.off-canvas-nav a:hover {
  color: #0a6ebd;
}

.off-canvas-buttons {
  display: flex;
  gap: 12px;
  width: fit-content;
  flex-wrap: wrap;
}

.off-canvas-buttons .btn {
  width: 100%;
  justify-content: space-between;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .site-header {
    padding: 20px 60px 0 30px;
  }

  .header-container {
    padding: 15px 20px;
    border-radius: 24px;
  }

  /* Hide navigation and buttons on mobile */
  .header-nav,
  .header-buttons {
    display: none;
  }

  /* Show hamburger menu */
  .hamburger-menu {
    display: block;
  }
}

@media (max-width: 768px) {
  .header-container {
    background: transparent;
    backdrop-filter: blur(0px);
    padding: 0;
  }

  .site-header {
    padding: 20px !important;
  }
}

body.menu-open {
  overflow: hidden;
}

/* <!--======================= header ==================================--> */
/* <!--======================= hero section ============================--> */

.hero {
  position: relative;
  width: 100%;
  background-color: #f5f5f5;
  overflow: hidden;
  margin-top: 0;
  padding-top: 160px;
  padding-bottom: 80px;
}

.hero__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}

/* =====左側テキスト===== */
.hero__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  padding-left: 80px;
  z-index: 2;
}
.hero__eyebrow {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #2c285f;
  margin-top: 72px;
  margin-bottom: 16px;
}
.hero__eyebrow span {
  display: inline-block;
}
.hero__title {
  font-size: 4rem;
  line-height: 1.5;
  font-family: "Sawarabi Mincho";
  font-weight: 400;
  color: #26235f;
  margin-bottom: 24px;
}
.hero__title span {
  display: inline-block;
}
.hero__lead {
  font-size: 1.4rem;
  line-height: 2;
  color: #555555;
  font-weight: 500;
  margin-bottom: 32px;
  max-width: 460px;
  color: #232230;
}

/* =====Btn===== */
.hero-btn {
  background: #433b92;
  color: #fff;
  text-decoration: none;
  height: 64px;
  border-radius: 50px;
  transition: 0.3s ease;
  text-align: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
  padding: 20px 64px 20px 24px;
  width: fit-content;
}
/* .hero__btn:hover img {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.hero__btn-icon {
  width: 12px;
  height: 12px;
  display: block;
} */

/* =====右側ビジュアル===== */
.hero__visual {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  top: 0;
}
.hero__image {
  margin: 0;
  width: 720px;
  max-width: 100%;
}
.hero__img {
  display: block;
  width: 100%;
  height: auto;
}


/* =====Hero（SP）===== */
@media (max-width: 1024px) {
  .hero-btn {
    padding: 12px;
    font-size: 16px;
    justify-content: center;
    gap: 2rem;
    padding: 20px 64px 20px 24px;
  }
}

@media (max-width: 820px) {
  .hero {
    margin-top: 0;
    padding-top: 28px;
    padding-bottom: 40px;
  }
  .hero__inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0;
    align-items: center;
    flex-direction: column-reverse;
  }
  .hero__content {
    max-width: 100%;
    padding: 0;
    /* display: contents; */
    margin-top: -32px;
  }
  .hero__eyebrow {
    display: none;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 8px;
    text-align: center;
  }
  .hero__title {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    font-size: 2.4rem;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: center;
  }
  .hero__visual {
    position: inherit;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  .hero__image {
    width: 100%;
    /* max-width: 360px; */
    margin: 0;
  }
  .hero__img {
    width: 100%;
    height: auto;
    display: block;
  }
  .hero__lead {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
  }
  /* .hero__btn {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    width: 100%;
    max-width: fit-content;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.6rem;
  } */
  .hero-btn {
    margin: 0 auto;
  }
}

/* <!--======================= hero section ==================================--> */

/* <!--======================= third section ==================================--> */
/* ===============================
    SECTION WRAPPER
    ================================ */

.problem-section {
  padding: 120px 5rem;
}

.problem-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.problem-label {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #433b92;
  display: inline-block;
  margin: 0 0 24px;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 2px;
}

.problem-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 64px;
  color: #2c285f;
}
@media (min-width:1240px) {
  .problem-title br{
    display:none;
  }
}
@media (min-width:760px) {
  .problem-title{
    max-width: 54%;
    margin: 0 auto 64px;
  }
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
  max-width: 839px;
  margin: 0 auto;
}

.problem-card {
  background: #fff;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);

  text-align: left;
}

.problem-card h3 {
  margin: 0;
  color: white;
  text-align: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  padding: 16px 0;
  border-radius: 10px 10px 0px 0px;
  background-color: #2f2b60;
}

.problem-tags {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
  padding: 24px 60px;
  justify-content: center;
}

.problem-tags span {
  padding: 5px 12px;
  color: #2f2b60;
  background: #dfdfdf;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  border-radius: 2px;
}

.problem-btn-outline {
  display: inline-block;

  padding: 7px 18px;

  border: 1px solid #4c46b8;
  border-radius: 20px;

  font-size: 12px;
  font-weight: 500;

  color: #4c46b8;
  text-decoration: none;

  transition: 0.2s ease;
}

.problem-btn-outline:hover {
  background: #4c46b8;
  color: #fff;
}

.problem-arrow-custom {
  padding: 48px 0;
}

.problem-subtitle {
  margin: 0 0 64px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #2c285f;
}
@media (min-width:990px) {
  .problem-subtitle br{
    display: none;
  }
}
.problem-subtitle span {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 5%;
}

.problem-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin: 0 auto;
  justify-content: center;
}

.problem-value {
  background: #fff;
  padding: 32px 24px;
  border-radius: 8px;
  position: relative;
}

.problem-value img {
  position: absolute;
  left: 15px;
  top: -15px;
}

.problem-value p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 0;
  text-align: center;
  color: #232230;
  margin: 0;
}

.problem-cta-custom {
  display: flex;
  margin-top: 64px;
  justify-content: center;
}

@media (max-width: 990px) {
  .problem-section {
    padding: 64px 16px;
  }
.problem-cta-custom{
  margin-top: 32px;
}
  .problem-label {
    font-size: 16px;
    margin: 0 0 24px;
  }

  .problem-title {
    font-size: 24px;
    line-height: 170%;
    margin: 0 0 40px;
    margin: 0 auto 40px;
  }

  .problem-cards {
    max-width: 100%;
  }

  .problem-card h3 {
    font-size: 18px;
  }

  .problem-tags {
    padding: 24px;
  }

  .problem-wrapper {
    padding: 0;
  }

  .problem-arrow-custom {
    padding: 32px 0;
  }

  .problem-subtitle {
    margin: 0 0 40px;
    font-size: 24px;
    line-height: 150%;
  }

.problem-subtitle span {
    text-align: center;
    display: inline-flex;
    font-size: 32px;
    line-height: 150%;
}

  .problem-value span {
    top: -50px;
  }

  .problem-value {
    padding: 16px 24px;
  }

  .problem-value p {
    font-size: 16px;
    line-height: 200%;
  }

  .problem-values {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .problem-values {
    display: flex;
    flex-wrap: wrap;
    row-gap: 32px;
  }

  .problem-value {
    width: 100%;
  }

  .problem-cards {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}

/* <!--======================= third section ==================================--> */

/* <!--======================= Fourth section ==================================--> */
.fourth-section {
  background: url('images/b4071c9b3de1aa70b08811aa32161ea0170ef5bd.jpg')
    no-repeat left center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.fourth-section:before {
  content: '';
  position: absolute;
  width: 100%;
  background: #484554e5;
  height: 100%;
  inset: 0;
}

.fourth-section .problem-wrapper {
  z-index: 11;
  position: relative;
}

.fourth-section .heading-header h1 {
  margin: 0 0 32px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: white;
}

.fourth-section .heading-header p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: white;
  margin: 0 0 48px;
}

.fourth-section .first-row {
  display: flex;
  gap: 24px;
  background: white;
  padding: 33px 40px;
  align-items: anchor-center;
  border-radius: 4px;
}

.fourth-section .heading-right p {
  margin: 0;
}

.fourth-section .heading-right {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.fourth-section .second-heading-custom {
  margin: 0;
  color: #232230;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: left;
  line-height: 200%;
}

.fourth-section .first-heading-custom {
  margin: 0;
  color: #2c285f;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: start;
}

.fourth-section .custom-fourth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (min-width:750px) {
  .fourth-section .second-heading-custom br{
    display: none !important;
  }
}
@media (max-width: 990px) {
  .fourth-section {
    padding: 64px 16px;
  }
.fourth-section .heading-header p{
  margin: 0 0 40px;
}
  .fourth-section .problem-wrapper {
    padding: 0;
  }

  .fourth-section .heading-header h1 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .fourth-section .heading-header p span {
    display: block;
    text-align: center;
  }

  .fourth-section .heading-header p {
    text-align: center;
    line-height: 200%;
  }

  .custom-fourth-container .first-row {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    justify-content: center;
    align-items: anchor-center;
    text-align: center;
  }

  .fourth-section .heading-right {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    justify-content: center;
    text-align: center;
    align-items: anchor-center;
  }

  .fourth-section .first-heading-custom {
    font-size: 16px;
    text-align: center;
  }

.fourth-section .second-heading-custom {
    font-size: 14px;
    text-align: center;
    line-height: 200%;
}
}

@media (max-width: 768px) {
  .fourth-section .custom-fourth-container {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}

/* <!--======================= Fourth section ==================================--> */

/* <!--======================= Fifth section ==================================--> */

.recruitment-section {
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

section.recruitment-section:before {
  content: '';
  position: absolute;
  inset: 0;
  height: 468px;
  background: #eeeeee;
  max-width: 80%;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  width: 1120px !important;
}

/* Section Header */
/* .recruitment-section .section-header {
    margin-bottom: 50px;
    } */

.recruitment-section .subtitle {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: left;
  margin: 0;
  color: #433b92;
  border-bottom: 3px solid #433b92;
  display: inline-block;
  padding-bottom: 8px;
}

.recruitment-section .title {
  color: #2c285f;
  margin: 32px 0 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
}

/* Flow Container */
.recruitment-section .flow-container {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
}

.recruitment-section .flow-steps {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 56px 32px 56px 80px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  width: 65%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.recruitment-section .step {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  gap: 48px;
  position: relative;
}


.recruitment-section .step:last-child {
  margin-bottom: 0;
}

.recruitment-section .step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 40px;
  top: 58px;
  width: 1px;
  height: calc(100% + 25px);
  background-color: #bfbfbf;
}

.recruitment-section .step-number {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid #2f2b60;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0;
  position: relative;
  z-index: 1;
  flex-direction: column;
  flex-wrap: nowrap;
}

.day {
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0;
  font-family: Roboto;
}
.days{
  font-family: Zen Kaku Gothic New;
font-weight: 700;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;

}
.number {
  font-family: Roboto;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  color: #2c285f;
}

.recruitment-section .step-content {
  flex: 1;
  padding-top: 0;
  align-content: center;
}

.recruitment-section .step-title {
  margin: 0;
  color: #2c285f;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
}

.recruitment-section .arrow-svg {
  background-color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: anchor-center;
}

.recruitment-section .top-btn-text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
}

.recruitment-section .btn-dark {
  justify-content: start;
  width: 182px;
  gap: 5px;
  position: relative;
  margin-top: 24px;
}

.recruitment-section .step-description {
  margin: 16px 0 0px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  color: #232230;
  line-height: 2;
}

.recruitment-section .step-button {
  background-color: #2d2d5f;
  color: #ffffff;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 500;
}

.recruitment-section .step-button:hover {
  background-color: #1f1f45;
}

/* Benefits Section */
.recruitment-section .benefits-section {
  background-color: transparent;
  padding: 0px;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.recruitment-section .benefits-title {
  color: #2c285f;
  margin: 0 0 24px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: left;
}

.recruitment-section .benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  background: white;
  border: 1px solid #2f2b60;
  border-radius: 8px;
  padding: 40px;
}

.recruitment-section .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recruitment-section .benefits-list li {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0;
  color: #232230;
  padding-left: 30px;
  position: relative;
  margin-bottom: 24px;
}

.recruitment-section .benefits-list li:last-child {
  margin-bottom: 0;
}

.recruitment-section .benefits-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #433B92;
  font-weight: 700;
  font-size: 30px;
}

/* Responsive Design */
@media (max-width: 990px) {
  .recruitment-section {
    padding: 64px 16px;
  }
.recruitment-section .flow-container{
  margin-bottom:48px;
}
  .recruitment-section .benefits-title {
    text-align: center !important;
  }

  .benefits-grid {
    grid-template-columns: 1fr !important;
    padding: 24px 16px !important;
  }

  .benefits-list {
    margin: 0;
  }

  .recruitment-section .benefits-list li {
    font-size: 14px;
    padding-left: 30px;
    margin-bottom: 8px;
  }

  .flow-container {
    flex-direction: column;
    justify-content: center;
    align-items: anchor-center;
    margin-bottom: 48px;
  }

  .flow-steps {
    padding: 32px 16px;
  }

.recruitment-section .subtitle {
    font-size: 16px;
    border-bottom: 2px solid #433b92;
    text-align: center;
    margin: auto;
}

  .recruitment-section .title {
    margin: 16px 0 0;
    font-size: 24px;
    text-align: center;
  }
.recruitment-section .section-header {
    margin: 0px auto 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: anchor-center;
}
  .recruitment-section .flow-steps {
    width: 100%;
    row-gap: 32px;
    padding: 32px 0;
  }

  .recruitment-section .step {
    margin-bottom: 0;
    gap: 16px;
    padding: 0 16px;
  }

  .recruitment-section .step:not(:last-child)::after {
    left: 45px;
    top: 55px;
    height: calc(100% + 40px);
  }

  .number {
    font-size: 16px;
    white-space: nowrap;
  }

 

  .recruitment-section .step-title {
    font-size: 16px;
  }

.recruitment-section .step-description {
    margin: 8px 0 16px;
    font-size: 14px;
}
  section.recruitment-section:before {
    height: 319px;
    width: 90%;
  }
}

/* <!--======================= Fifth section ==================================--> */

/* <!--======================= sixth section ==================================--> */
.section {
  background: url('images/b4071c9b3de1aa70b08811aa32161ea0170ef5bd.jpg');
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.section:before {
  content: '';
  position: absolute;
  width: 100%;
  background: #484554e5;
  height: 100%;
  inset: 0;
}

.page-width {
  max-width: 1120px;
  margin: auto;
  padding: 120px 5rem;
}

.outer-box-div {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 64px;
  align-items: anchor-center;
}

.outer-box-div .first-child h1 {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
}

.btn-white {
  background-color: white;
  color: #433b92;
  white-space: nowrap;
}
.btn-white .button__icon {
  background: #433B92;
  color: #fff;
}

.second-child ul {
  padding: 0;
  list-style: none;
}

.outer-box-div .arrow-svg {
  background-color: #433b92;
}

.second-child ul li {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  gap: 7px;
  align-self: center;
}

@media (max-width: 990px) {
  .page-width {
    padding: 64px 16px;
  }
/* .btn-white{
      padding: 15px !important;
      width: 240px;
} */
  .second-child ul li {
    font-size: 14px;
    gap: 4px;
    display: grid;
    grid-template-columns: auto 1fr;
    line-height: 200%;
  }

  .second-child ul li svg {
    margin-top: 5px;
  }
}

@media (max-width: 768px) {
  .outer-box-div {
    flex-direction: column;
    gap: 40px;
  }
}

/* <!--======================= sixth section ==================================--> */

/* ===============seventh section=============================== */
/* .main-block {
    background-image: url("/0d5731d11616b013c42bb24601e7c738d10ae333.jpg"); 
    background-size: cover;      
    background-position: center; 
    background-repeat: no-repeat;
    } */

.main-block {
  position: relative;
  z-index: 1;
}

.main-block::before {
  content: '';
  position: absolute;
  inset: 0;

  background: url('https://kanryo-bank.com/wp-content/uploads/2026/02/0d5731d11616b013c42bb24601e7c738d10ae333.jpg')
    center / cover no-repeat;

  opacity: 0.3;
  z-index: -1;
}

/* ===== MAIN SECTION ===== */
.pricing-section {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px 2%;
  overflow: hidden;
}

.pricing-section > * {
  position: relative;
  z-index: 1;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-title h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  color: #2c285f;
}

.section-subtitle {
  color: #232230;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 64px;
  margin-top: 32px;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 32px;
  margin: 0 auto;
}

.cards-grid > :nth-child(1) .card-label{
 background-color: #6860B5;
}
.cards-grid > :nth-child(2) .card-label{
  background-color: #564F9D;
}
.cards-grid > :nth-child(3) .card-label{
  background-color: #433B92;
}
.cards-grid > :nth-child(4) .card-label{
  background-color: #3C3778;
}
.card {
  background: transparent;
  border-radius: 8px;
  padding: 0;
  position: relative;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
}

.card-label {
  background: #2f2b60;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  color: white;
  padding: 10px 16px;
  border-radius: 4px 4px 0 0;
  display: inline-block;
}

.card-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #232230;
  line-height: 100%;
  text-align: center;
  background-color: white;
  margin: 0;
  min-height: 40px;
  padding: 50px 10px;
  display: flex;
  justify-content: center;
  border-radius: 0 8px 8px 8px !important;
  align-items: anchor-center;
  line-height: 200%;
}

.card-title span {
  font-size: 14px;
}

.card-fourth {
  padding: 32px 10px !important;
  display: block !important;
}

.card-description {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  text-align: center;
  margin-top: 6px;
}

/* ===== COMPLIANCE SECTION ===== */
.compliance-section {
  text-align: center;
  margin-top: 120px;
}

.compliance-title {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #2c285f;
  border-bottom: 2px solid;
  display: inline-block;
  padding-bottom: 10px;
  /* border-radius: 0 8px 8px 8px; */
}

.compliance-text {
  margin: 32px 0px 40px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0;
  text-align: center;
  color: #232230;
}

/* ===== COMPLIANCE BADGES ===== */
.badges {
  background: white;
  padding: 40px;
  max-width: 700px;
  margin: auto;
  border-radius: 8px;
  gap: 24px;
  display: flex;
  justify-content: center;
}

.badge {
  background: #2f2b60;
  padding: 8px;
  border-radius: 4px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  color: white;
}

/* ===== CTA BUTTON ===== */
.cta-wrapper-new {
  text-align: center;
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2d2750;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 48px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
}

.cta-button:hover {
  background: #1f1a3a;
  transform: translateY(-1px);
}

.cta-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== DIVIDER ===== */
.divider {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 50px;
}

@media (min-width: 990px) {
  .section-subtitle br {
    display: none;
  }
}

@media (max-width: 990px) {
  .pricing-section {
    padding: 64px 16px;
  }
.badge{
  font-size: 14px;

}
.blocks-wrapper {
  margin-bottom: 64px;
}

  .first-block-child p {
    font-size: 18px !important;
  }

  .multiple-inputs {
    padding: 24px 16px;
  }

  .pricing-section .heading-header h1 {
    font-size: 24px !important;
    margin: 0 0 40px !important;
    white-space: nowrap;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-subtitle {
    margin: 16px 0 64px;
    line-height: 200%;
  }

  .card-label {
    font-size: 16px;
  }

  .card-title {
    font-size: 16px;
    padding: 15px 16px;
  }

  .compliance-section {
    margin-top: 48px;
  }

  .compliance-title {
    font-size: 18px;
    line-height: 100%;
  }

  .compliance-text {
    margin: 16px 0 24px;
    font-size: 14px;
    text-align: left;
  }

  .main-image-card.badges {
    padding: 24px 16px;
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 16px;
  }

  .cta-wrapper-new {
    margin-top: 32px;
  }

.pricing-section .hero-btn {
    width: 240px;
    font-size: 16px;
    gap: 2rem;
}
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr !important;
    row-gap: 24px !important;
  }

  .blocks-wrapper {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-bottom: 64px !important;
  }

  .main-image-card {
    grid-template-columns: 1fr !important;
    row-gap: 24px !important;
  }

  .badges {
    flex-wrap: wrap;
    column-gap: 16px !important;
    row-gap: 8px !important;
    padding: 24px 16px;
  }
}

/* ===============seventh section=============================== */

/* ===============8th section=============================== */
.heading-header h1 {
  color: #2c285f;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 200%;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 64px;
}

.first-block-child p {
  background: #2f2b60;
  color: white;
  padding: 16px;
  border-radius: 8px 8px 0 0;
  text-align: center;
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}

.multiple-inputs {
  padding: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  background: white;
  border-radius: 0 0 12px 12px;
}

.checkbox-main-div {
  display: flex;
  gap: 8px;
  align-items: center;
}

.checkbox-main-div label {
  color: #232230;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}

.blocks-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 120px;
}

.main-image-card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  justify-content: center;
}

.img-card-first {
  border: 0.5px solid #bfbfbf;
  background: white;
  border-radius: 8px;
  max-height: 415px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.img-card-first img {
  width: 100%;
  object-fit: cover;
}

.img-card-first p {
  margin: 0;
  padding: 16px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0;
  color: #232230;
}

/* ===============8th section=============================== */

/* ===============form section=============================== */

/* =====Contact===== */
.conditions-form {
  background-color: #f5f5f5;
}

.conditions-form__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  /* max-width: 880px; */
}

.conditions-form__title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #2c285f;
}
@media (max-width: 768px) {
  .conditions-form__title {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
}

/* =====フォーム本体の枠===== */
.conditions-form__form {
  background-color: #fff;
  border-radius: 16px;
  padding: 80px 64px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

/* ===== 基本情報 ===== */
.conditions-form__fieldset {
  border: none;
  padding: 0;
}

.conditions-form__legend {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 29px;
  color: #2c285f;
}
@media (max-width: 768px) {
  .conditions-form__legend {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
}

.conditions-form__rows {
  margin-top: 0;
  margin-bottom: 64px;
}

.conditions-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.conditions-form__label {
  display: block;
  /* width: 190px; */
  width: 30%;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0;
}

.conditions-form__required {
  font-size: 1.2rem;
}
.wpcf7-form-control-wrap {
  width: 70%;
}
.conditions-form__input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  padding: 10px 12px;
  font-size: 1.4rem;
  border-radius: 4px;
  border: 1px solid #d7dde8;
  background-color: #fff;
}

/* =====希望条件===== */
.conditions-form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
}

.conditions-form__group-label {
  width: 170px;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 4px;
}

/* =====チェックボックス・ラジオリスト===== */
.conditions-form__check-list,
.conditions-form__radio-list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px 24px;
}
.conditions-form__check-list input,
.conditions-form__radio-list input,
.conditions-form__privacy input {
  accent-color: dimgray;
}

.conditions-form__check-item,
.conditions-form__radio-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 1.5rem;
  font-weight: 500;
}

.conditions-form__group--start {
  margin-bottom: 64px;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .conditions-form__group--start {
    margin-bottom: 40px;
    padding-bottom: 0;
  }
}

/* ===== ファイルアップロード ===== */
.conditions-form__files {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 80px;
}
.conditions-form__files .wpcf7-form-control-wrap {
  width: auto;
}

.conditions-form__files input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.conditions-form__file-label {
  display: inline-block;
  padding: 8px 20px;
  font-size: 1.3rem;
  border-radius: 4px;
  background-color: #232230;
  color: #fff;
  border: none;
  cursor: pointer;
}

.conditions-form__file-name {
  margin-left: 12px;
  font-size: 1.3rem;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

.conditions-form__privacy {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 1.6rem;
  text-align: center;
}
@media (max-width: 768px) {
  .conditions-form__privacy {
    font-size: 1.4rem;
  }
}

.conditions-form__submit {
  text-align: center;
}

.conditions-form__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 80px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
  background-color: #433b92;
  color: #fff;
  -webkit-transition: background-color 0.25s ease, -webkit-transform 0.25s ease,
    -webkit-box-shadow 0.25s ease;
  transition: background-color 0.25s ease, -webkit-transform 0.25s ease,
    -webkit-box-shadow 0.25s ease;
  transition: background-color 0.25s ease, transform 0.25s ease,
    box-shadow 0.25s ease;
  transition: background-color 0.25s ease, transform 0.25s ease,
    box-shadow 0.25s ease, -webkit-transform 0.25s ease,
    -webkit-box-shadow 0.25s ease;
  position: relative;

  opacity: 0.5;
  pointer-events: none;
}
.conditions-form__btn.is-active {
  opacity: 1;
  pointer-events: auto;
}
.wpcf7-list-item {
  margin: 0;
}
.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wpcf7-list-item-label {
  font-size: 1.4rem;
  font-weight: 500;
}

/* =====SP===== */
@media (max-width: 768px) {
  .conditions-form__inner {
    max-width: 100%;
  }
  .conditions-form__form {
    padding: 24px 16px;
    border-radius: 12px;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  }
  .conditions-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 8px;
  }
  .conditions-form__label {
    width: 100%;
    font-size: 1.4rem;
    font-weight: 500;
  }
  .wpcf7-form-control-wrap {
    width: 100%;
  }
  .conditions-form__input {
    width: 100%;
    font-size: 1.3rem;
    padding: 8px 10px;
  }
  .conditions-form__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 8px;
  }
  .conditions-form__group-label {
    width: 100%;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
    padding-top: 10px;
    padding: 0;
    margin: 0;
  }
  .conditions-form__check-list,
  .conditions-form__radio-list {
    width: 100%;
    gap: 6px 16px;
  }
  .conditions-form__check-item,
  .conditions-form__radio-item {
    font-size: 1.3rem;
  }
  .conditions-form__files {
    width: 100%;
    margin-bottom: 24px;
  }
  .conditions-form__btn {
    /* width: 100%; */
    width: fit-content;
  }
}

/* ===============form section=============================== */

.pricing-section .bluebar {
  height: 50px;
  background-color: #2f2b60;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: -1.1px;
}

.pricing-section .bluebar h3 {
  font-size: 18px;
}

.pricing-section .bluebar span {
  background-color: #fff;
  color: #2f2b60;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 786px) {
  .off-canvas-buttons .btn {
    padding: 10px 25px;
  }

  .off-canvas-buttons .btn .top-btn-text {
    text-align: left;
  }
}

.hidden-file {
  display: none !important;
}

.file-name {
  margin-left: 10px;
  font-size: 13px;
  color: #333;
}

.btn-green path {
  stroke: rgb(0, 200, 155);
}

.btn-purple path {
  stroke: rgb(47, 43, 96);
}

.btn-dark path {
  stroke: rgb(67, 59, 146);
}

@media (max-width: 768px) {
  .problem-section {
    background-size: cover !important;
  }

  .main-ceckbox-group {
    width: 100%;
  }

  .wpcf7-list-item {
    margin: 0;
  }

  .checkbox-item,
  .radio-item {
    flex-wrap: wrap;
  }

  .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .pricing-section .main-image-card .img-card-first {
    max-height: 100%;
  }

  .recruitment-section .step-number {
    width: 60px;
    height: 60px;
  }
}