/* ========================================
   リクルートページ共通CSS
======================================== */

:root {
  --recruit-primary: #0064FF;
  --recruit-bg: #EEF9FF;
  --recruit-font-family: "Noto Sans JP", sans-serif;
}

/* リクルートページ全体のフォント */
body.recruit-page {
  font-family: var(--recruit-font-family);
}

/* ========================================
   PAGE BACKGROUND
======================================== */
body.recruit-page:has(.recruit-business),
body.recruit-page:has(.recruit-engineer),
body.recruit-page:has(.recruit-data),
body.recruit-page:has(.recruit-workstyle),
body.recruit-page:has(.recruit-benefits),
body.recruit-page:has(.recruit-job-detail),
body.recruit-page:has(.page-entry) {
  background-color: #FFFFFF;
}

/* ========================================
   アンカーリンク用スクロールマージン
======================================== */
[id] {
  scroll-margin-top: 120px;
}

@media (max-width: 767px) {
  [id] {
    scroll-margin-top: 100px;
  }
}

/* ========================================
   セクションヘッダー（グラデーション）
======================================== */
.recruit-section-header {
  /* パディングは親要素でコントロール */
}

.recruit-section-header__label {
  font-family: var(--recruit-font-family);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0 0 10px;
  background: linear-gradient(270deg, var(--color-primary) 0%, #29A3E9 78.76%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.recruit-section-header__title-wrap {
  background: linear-gradient(to left, #0064ff 0%, #29a3e9 78.76%);
  padding: 0 20px 5px;
  min-height: 77px;
  width: fit-content;
  display: flex;
  align-items: center;
}

.recruit-section-header__title {
  font-family: var(--recruit-font-family);
  font-size: 50px;
  font-weight: 400;
  color: var(--color-white);
  margin: 0;
  line-height: 1;
}

/* Tablet */
@media (max-width: 1023px) {
  .recruit-section-header__title {
    font-size: 40px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .recruit-section-header__label {
    font-size: 14px;
  }

  .recruit-section-header__title-wrap {
    min-height: 46px;
    padding: 0 6px;
  }

  .recruit-section-header__title {
    font-size: 28px;
  }
}

/* ========================================
   リクルート用ヘッダー
======================================== */
.recruit-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 100px;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 1024px) {
  .recruit-header {
    height: 120px;
  }
}

.recruit-header.is-scrolled {
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.recruit-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0 20px;
  height: 100%;
}

@media (min-width: 1024px) {
  .recruit-header__inner {
    padding: 0 40px;
  }
}

.recruit-header__logo {
  display: block;
  width: 142px;
  height: 60px;
}

.recruit-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.recruit-header__logo-white {
  display: block;
}

.recruit-header__logo-dark {
  display: none;
}

.recruit-header.is-scrolled .recruit-header__logo-white {
  display: none;
}

.recruit-header.is-scrolled .recruit-header__logo-dark {
  display: block;
}

.recruit-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.recruit-header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.recruit-header__nav-link {
  font-family: var(--font-family-heading);
  font-size: 18px;
  font-weight: var(--font-weight-english-nav);
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.recruit-header.is-scrolled .recruit-header__nav-link {
  color: var(--color-black);
}

.recruit-header__nav-link:hover {
  color: var(--recruit-primary);
}

.recruit-header.is-scrolled .recruit-header__nav-link:hover {
  color: var(--recruit-primary);
}

/* Dropdown Menu */
.recruit-header__nav-item {
  position: relative;
}

.recruit-header__nav-item--has-dropdown > .recruit-header__nav-link {
  pointer-events: none;
  cursor: default;
}

.recruit-header__nav-item--has-dropdown:hover .recruit-header__nav-link {
  color: var(--recruit-primary);
}

.recruit-header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.recruit-header__nav-item--has-dropdown:hover .recruit-header__dropdown {
  opacity: 1;
  visibility: visible;
}

.recruit-header__dropdown-list {
  background: var(--color-white);
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  padding: 25px 25px 25px 40px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
}

.recruit-header__dropdown-item {
  white-space: nowrap;
}

.recruit-header__dropdown-link {
  font-family: var(--font-family-accent);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dropdown-text);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.recruit-header__dropdown-link::after {
  content: '→';
  font-size: 12px;
  opacity: 0;
  margin-left: 4px;
  display: inline-block;
  transform: translateX(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.recruit-header__dropdown-link:hover {
  color: var(--recruit-primary);
}

.recruit-header__dropdown-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.recruit-header__nav-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.recruit-header__nav-button {
  font-family: var(--font-family-heading);
  font-size: 18px;
  font-weight: var(--font-weight-english-nav);
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 32px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.recruit-header__nav-button--outline {
  color: var(--color-black);
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
}

.recruit-header__nav-button--outline:hover {
  background-color: var(--recruit-primary);
  color: var(--color-white);
  border-color: var(--recruit-primary);
}

.recruit-header.is-scrolled .recruit-header__nav-button--outline {
  color: var(--color-white);
  background-color: var(--color-black);
  border-color: var(--color-black);
}

.recruit-header.is-scrolled .recruit-header__nav-button--outline:hover {
  background-color: var(--recruit-primary);
  border-color: var(--recruit-primary);
}

/* ハンバーガーメニュー */
.recruit-header__menu-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.recruit-header__menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: background-color 0.3s ease;
}

.recruit-header.is-scrolled .recruit-header__menu-button span {
  background-color: var(--color-black);
}

@media (max-width: 1023px) {
  .recruit-header__inner {
    max-width: none;
    padding: 0 20px;
  }

  .recruit-header__logo {
    width: 100px;
    height: 42px;
  }

  .recruit-header__nav {
    display: none;
  }

  .recruit-header__menu-button {
    display: flex;
  }
}

/* ========================================
   リクルートトップ - ヒーローセクション
======================================== */
.recruit-hero {
  position: relative;
  height: 100vh;
  min-height: 750px;
  max-height: 900px;
  overflow: hidden;
  background-color: var(--recruit-bg);
}

.recruit-hero__images {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
}

.recruit-hero__grid-row {
  display: flex;
  flex: 1;
  min-height: 0;
}

.recruit-hero__grid-img {
  flex: 1;
  min-width: 0;
  object-fit: cover;
  object-position: center;
}

.recruit-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-gray-medium);
  mix-blend-mode: multiply;
}

.recruit-hero__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding-left: 93px;
}

.recruit-hero__title {
  font-family: var(--recruit-font-family);
  font-size: 140px;
  font-weight: 400;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

.recruit-hero__title span {
  display: block;
}

@media (max-width: 1023px) {
  .recruit-hero {
    min-height: 500px;
    max-height: 700px;
  }

  .recruit-hero__content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .recruit-hero__title {
    font-size: 60px;
  }

  .recruit-hero__grid-row img {
    min-width: 200px;
  }
}

@media (max-width: 767px) {
  .recruit-hero {
    min-height: 400px;
    max-height: 600px;
  }

  .recruit-hero__content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .recruit-hero__title {
    font-size: 60px;
  }

  .recruit-hero__grid-row img {
    min-width: 150px;
  }
}

.recruit-hero__images--sp {
  display: none;
}
.recruit-hero__sp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .recruit-hero__images--pc {
    display: none;
  }
  .recruit-hero__images--sp {
    display: flex;
  }
}

/* ========================================
   リクルートトップ - 職種選択セクション
======================================== */
.recruit-jobs {
  background-color: var(--color-white);
  padding: 80px 40px 120px;
}

.recruit-jobs__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.recruit-jobs__card {
  display: block;
  text-decoration: none;
  background-color: var(--color-white);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.recruit-jobs__card-image {
  position: relative;
  aspect-ratio: 580 / 525;
  overflow: hidden;
}

.recruit-jobs__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.recruit-jobs__card:hover .recruit-jobs__card-image img {
  transform: scale(1.05);
}

/* ラベル部分（画像内に配置、左端寄せ） */
.recruit-jobs__card-label {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 430px;
  max-width: 80%;
  padding: 17px 25px;
  background-color: var(--color-white);
  overflow: hidden;
}

/* 円状に広がる背景 */
.recruit-jobs__card-label::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 37px;
  width: 25px;
  height: 25px;
  background-color: var(--recruit-primary);
  border-radius: 50%;
  transform: translate(50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 0;
}

.recruit-jobs__card:hover .recruit-jobs__card-label::before {
  width: 800px;
  height: 800px;
}

.recruit-jobs__card-title {
  position: relative;
  font-family: var(--recruit-font-family);
  font-size: 24px;
  font-weight: 500;
  color: var(--recruit-primary);
  margin: 0;
  transition: color 0.3s ease;
  white-space: nowrap;
  z-index: 1;
}

.recruit-jobs__card:hover .recruit-jobs__card-title {
  color: var(--color-white);
}

.recruit-jobs__card-arrow {
  flex-shrink: 0;
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.recruit-jobs__card-arrow-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--recruit-primary);
  border-radius: 50%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.recruit-jobs__card:hover .recruit-jobs__card-arrow-circle {
  opacity: 0;
  transform: scale(0.8);
}

.recruit-jobs__card-arrow-icon {
  position: relative;
  width: 16px;
  height: 16px;
  color: var(--color-white);
  transition: transform 0.3s ease;
}

.recruit-jobs__card:hover .recruit-jobs__card-arrow-icon {
  transform: scale(1.8);
}

@media (max-width: 1023px) {
  .recruit-jobs {
    padding: 60px 20px 80px;
  }

  .recruit-jobs__container {
    gap: 30px;
  }

  .recruit-jobs__card-label {
    width: 350px;
    padding: 15px 20px;
  }

  .recruit-jobs__card-label::before {
    width: 22px;
    height: 22px;
    right: 31px;
  }

  .recruit-jobs__card-title {
    font-size: 20px;
  }

  .recruit-jobs__card-arrow {
    width: 28px;
    height: 28px;
  }

  .recruit-jobs__card-arrow-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 767px) {
  .recruit-jobs__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .recruit-jobs__card-title {
    font-size: 18px;
  }
}

/* ========================================
   共通：ヒーローセクション
======================================== */
.recruit-hero-section {
  background-color: transparent;
}

/* Header (Title Area) */
.recruit-hero-section__header {
  position: relative;
  height: 427px;
  overflow: hidden;
}

.recruit-hero-section__header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.recruit-hero-section__header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.recruit-hero-section__header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-gray-medium);
  mix-blend-mode: multiply;
}

.recruit-hero-section__header-image-sp {
  display: none;
}
@media (max-width: 767px) {
  .recruit-hero-section__header-image-pc {
    display: none;
  }
  .recruit-hero-section__header-image-sp {
    display: block;
  }
}

.recruit-hero-section__header-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  max-width: calc(1080px + 80px);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.recruit-hero-section__subtitle {
  font-family: var(--recruit-font-family);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.recruit-hero-section__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.recruit-hero-section__title-line {
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--color-white);
}

.recruit-hero-section__title {
  font-family: var(--recruit-font-family);
  font-size: 50px;
  font-weight: 400;
  color: var(--color-white);
  margin: 0;
}

/* Quick Links */
.recruit-hero-section__links {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: calc(1080px + 80px);
  margin: 0 auto;
  padding: 20px 40px;
  background-color: transparent;
  position: relative;
  box-sizing: border-box;
}

.recruit-hero-section__links::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: var(--recruit-bg);
  z-index: -1;
}

.recruit-hero-section__link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-black);
  transition: color 0.3s ease;
}

.recruit-hero-section__link:hover {
  color: var(--recruit-primary);
}

.recruit-hero-section__link-icon {
  width: 22px;
  height: 22px;
  color: var(--color-black);
}

.recruit-hero-section__link-icon svg {
  width: 100%;
  height: 100%;
}

.recruit-hero-section__link-text {
  font-family: var(--recruit-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

/* Hero Message */
.recruit-hero-section__message {
  padding: 80px 40px;
  max-width: calc(1080px + 80px);
  margin: 0 auto;
  box-sizing: border-box;
}

.recruit-hero-section__message-title {
  font-family: var(--recruit-font-family);
  font-size: 60px;
  font-weight: 400;
  color: var(--recruit-primary);
  line-height: 1.2;
  margin: 0 0 40px;
}

.recruit-hero-section__message-title span {
  display: block;
}

.recruit-hero-section__message-text {
  font-family: var(--recruit-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--color-black);
  max-width: 800px;
  margin: 0;
}

/* Hero Section - Tablet */
@media (max-width: 1023px) {
  .recruit-hero-section__header {
    height: 350px;
  }

  .recruit-hero-section__header-content {
    padding: 0 40px;
  }

  .recruit-hero-section__title {
    font-size: 36px;
  }

  .recruit-hero-section__links {
    padding: 15px 40px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .recruit-hero-section__link-text {
    font-size: 14px;
  }

  .recruit-hero-section__message {
    padding: 60px 40px;
  }

  .recruit-hero-section__message-title {
    font-size: 42px;
  }
}

/* Hero Section - Mobile */
@media (max-width: 767px) {
  .recruit-hero-section__header {
    height: 300px;
  }

  .recruit-hero-section__header-content {
    padding: 0 20px;
  }

  .recruit-hero-section__subtitle {
    font-size: 14px;
  }

  .recruit-hero-section__title {
    font-size: 28px;
  }

  .recruit-hero-section__links {
    padding: 15px 20px;
    gap: 12px 20px;
    flex-wrap: wrap;
  }

  .recruit-hero-section__message {
    padding: 40px 20px;
  }

  .recruit-hero-section__message-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .recruit-hero-section__message-text {
    font-size: 14px;
  }
}

/* ========================================
   共通：採用情報セクション
======================================== */
.recruit-info-entry {
  /* 親コンテナ */
}

.recruit-info {
  background: linear-gradient(to left, #0064ff, #29a3e9 78.762%);
  padding: 70px 40px 80px;
}

.recruit-info__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.recruit-info__title {
  font-family: var(--recruit-font-family);
  font-size: 80px;
  font-weight: 500;
  color: var(--color-white);
  margin: 0 0 56px;
}

.recruit-info__cards {
  display: flex;
  gap: 30px;
}

.recruit-info__card {
  display: block;
  background-color: var(--color-white);
  width: 340px;
  height: 150px;
  padding: 20px 30px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.recruit-info__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.recruit-info__card-title {
  font-family: var(--recruit-font-family);
  font-size: 24px;
  font-weight: 700;
  color: var(--recruit-primary);
  margin: 0 0 8px;
}

.recruit-info__card-desc {
  font-family: var(--recruit-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--recruit-primary);
  margin: 0;
}

.recruit-info__card-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 24px;
  height: 24px;
  color: var(--recruit-primary);
}

.recruit-info__card-arrow svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1023px) {
  .recruit-info {
    padding: 50px 40px 60px;
  }

  .recruit-info__title {
    font-size: 50px;
    margin-bottom: 40px;
  }

  .recruit-info__cards {
    flex-wrap: wrap;
    gap: 20px;
  }

  .recruit-info__card {
    width: calc(50% - 10px);
    height: auto;
    min-height: 130px;
  }
}

@media (max-width: 767px) {
  .recruit-info {
    padding: 40px 20px 50px;
  }

  .recruit-info__title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .recruit-info__cards {
    flex-direction: column;
  }

  .recruit-info__card {
    width: 100%;
    min-height: 120px;
  }

  .recruit-info__card-title {
    font-size: 20px;
  }

  .recruit-info__card-desc {
    font-size: 14px;
  }
}

/* ========================================
   共通：ENTRYセクション
======================================== */
.recruit-entry {
  display: block;
  position: relative;
  height: 600px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.recruit-entry__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.recruit-entry__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-entry__bg-sp {
  display: none;
}
@media (max-width: 767px) {
  .recruit-entry__bg-pc {
    display: none;
  }
  .recruit-entry__bg-sp {
    display: block;
  }
}

.recruit-entry__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-gray-medium);
  mix-blend-mode: multiply;
}

.recruit-entry__content {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 40px 0;
}

.recruit-entry__title {
  font-family: var(--recruit-font-family);
  font-size: 150px;
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0;
}

.recruit-entry__subtitle {
  font-family: var(--recruit-font-family);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.7;
  margin: -20px 0 0;
  padding-left: 12px;
}

.recruit-entry__button {
  display: inline-block;
  width: fit-content;
  font-family: var(--recruit-font-family);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  padding: 16px 60px;
  border: 1px solid var(--color-white);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.recruit-entry__button:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

@media (max-width: 1023px) {
  .recruit-entry {
    height: 450px;
  }

  .recruit-entry__content {
    padding: 0 40px;
  }

  .recruit-entry__title {
    font-size: 80px;
  }

  .recruit-entry__subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .recruit-entry {
    height: 235px;
  }

  .recruit-entry__content {
    padding: 20px 0 0 30px;
  }

  .recruit-entry__title {
    font-family: var(--recruit-font-family);
    font-size: 58px;
    font-weight: 600;
    line-height: 1;
  }

  .recruit-entry__subtitle {
    font-size: 14px;
    line-height: 1.85;
    margin: 0;
    padding-left: 0;
  }

  .recruit-entry__button {
    padding: 14px 40px;
    font-size: 14px;
  }
}

/* ========================================
   フッターエリア（リクルート）
======================================== */
.footer-area--recruit .breadcrumb-bar {
  padding-top: 40px;
}
