/* Top Page Specific Styles */
body {
  font-weight: bold;
}

/* Entry Dropdown */
.entry-dropdown {
  position: relative;
}

.entry-dropdown .entry-button {
  cursor: pointer;
  background: none;
  font-family: "helvetica-now-display", "Helvetica Now", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #222;
  text-decoration: none;
  padding: 5px 28px;
  border: 1.5px solid #222;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: bold;
}

.entry-dropdown .entry-button:hover {
  background-color: #222;
  color: #fff;
}

.entry-dropdown-menu {
  position: fixed;
  top: 55px;
  right: 0;
  background-color: #ffffff;
  border: 0.5px solid #d0d0d0;
  border-radius: 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 2000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.entry-dropdown-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  padding: 20px;
}

.entry-dropdown-item {
  display: block;

  font-size: 14px;
  font-weight: bold;
  color: #222;
  text-decoration: none;
  transition: background-color 0.15s ease;
  letter-spacing: 0.02em;
}

.entry-dropdown-item:last-child {
  border-bottom: none;
}

.entry-dropdown-item:hover {
  background-color: #fafafa;
}
/* Main Content */
.main-content {
  padding-top: 55px;
}

/* Top Hero Section */
.top-hero-section {
  width: 100%;
  height: 900px;
  overflow: hidden;
  position: relative;
}

.top-hero-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.top-hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.top-hero-image-placeholder {
  width: 100%;
  object-fit: cover;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  /* 実際の画像が入る場所 */
}

.top-hero-image-placeholder.active {
  opacity: 1;
  z-index: 1;
}

.top-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  top: -10%;
}

.top-hero-text-left {
  flex: 1;
}

.top-hero-title {
  font-family: "helvetica-now-display", "Helvetica Now", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: normal;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.top-hero-text-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.top-hero-subtitle {
  font-family: "helvetica-now-display", "Helvetica Now", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
}

/* Company Message Section */
.company-message-section {
  padding: 80px 40px 150px 40px;
  background-color: #fff;
}

.company-message-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.company-message-left {
  flex-shrink: 0;
  min-width: 340px;
}

.company-message-title {
  font-size: 26px;
  color: #222;
}

.company-message-right {
  width: 50%;
}

.company-message-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.company-message-text {
  font-size: 17px;
  color: #222;
}

/* Top Recruit Section */
.top-recruit-section {
  border-top: 1px solid #999;
  padding: 50px 0;
  background-color: #fff;
}

.top-recruit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 80px;
}

.top-recruit-header .top-section-title {
  font-family: "helvetica-now-display", "Helvetica Now", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  color: #222;
  letter-spacing: 0.05em;
  margin: 0;
  
  font-size: 32px;
  font-weight: normal;
}

.top-recruit-header .top-section-subtitle-right {
  font-size: 22px;

  color: #222;
  letter-spacing: 0.05em;
  margin: 0;
  padding-bottom: 10px;
}

.top-career-header .top-section-title {
  font-family: "helvetica-now-display", "Helvetica Now", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  color: #222;
  letter-spacing: 0.05em;
  margin: 0;
  
  font-size: 32px;
  font-weight: normal;
}

.top-career-header .top-section-subtitle {
  font-size: 22px;

  color: #222;
  letter-spacing: 0.05em;
  margin: 0;
  white-space: nowrap;
  padding-bottom: 10px;
}

.top-recruit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.top-recruit-card {
  background-color: #fff;
  overflow: hidden;
}

.top-recruit-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.top-recruit-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e8e0 0%, #d8d8d0 100%);
  /* 実際の画像が入る場所 */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#part-time-image {
  width: 100%;
  height: 100%;
  object-fit: none;
  object-position: left;
}

#new-grad-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

#career-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-recruit-image-label {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "helvetica-now-display", "Helvetica Now", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  font-size: 14px;

  color: #fff;
  padding: 8px 16px;
  letter-spacing: 0.1em;
}

.top-recruit-card-content {
  padding: 28px 40px 32px;
  background-color: #f5f1ec;
}

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

.top-recruit-card-title {
  font-size: 22px;

  color: #222;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.top-recruit-card-button {
  font-family: "helvetica-now-display", "Helvetica Now", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  font-size: 13px;

  color: #222;
  text-decoration: none;
  padding: 8px 20px;
  border: 1.5px solid #222;
  border-radius: 25px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.top-recruit-card-button:hover {
  background-color: #222;
  color: #fff;
}

.top-recruit-card-text {
  font-size: 15px;

  line-height: 1.9;
  color: #222;
  letter-spacing: 0.02em;
}

/* Top Opening Banner */
.top-opening-banner {
  background-color: #fff;
  padding-bottom: 150px;
}

#ogawa-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-opening-banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.top-opening-banner-left {
  position: relative;
}

.top-opening-banner-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top-opening-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 560px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  /* 実際の画像が入る場所 */
}

.top-opening-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
}

.top-opening-overlay-text {
  text-align: center;
}

.top-opening-overlay-title {
  font-family: "helvetica-now-display", "Helvetica Now", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  font-size: 40px;

  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.top-opening-overlay-location {
  font-family: "Libre Baskerville", serif;
  font-size: 16px;

  color: #fff;
  letter-spacing: 0.15em;
}

.top-opening-banner-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 80px;
  background-color: #f5f1ec;
}

.top-opening-label {
  font-family: "helvetica-now-display", "Helvetica Now", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  font-size: 18px;
//  font-weight: lighter;
  color: #222;
  margin-bottom: 20px;
}

.top-opening-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #222;
  margin-bottom: 20px;
}

.top-opening-subtitle {
  margin-bottom: 20px;
  font-weight: lighter;
}

.top-opening-subtitle-line {
  font-family: "helvetica-now-display", "Helvetica Now", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #222;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.top-opening-subtitle-mark {
  font-size: 14px;
}

.top-opening-description {
  margin-bottom: 28px;
}

.top-opening-description-text {
  font-size: 14px;

  line-height: 2;
  color: #222;
  letter-spacing: 0.02em;
}

.top-opening-button {
  font-family: "helvetica-now-display", "Helvetica Now", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  font-size: 13px;

  color: #222;
  text-decoration: none;
  padding: 5px 10px 5px 20px;
  border: 1.5px solid #222;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 0.05em;
}

.top-opening-button:hover {
  background-color: #222;
  color: #fff;
}

.top-opening-button-arrow {
  margin-left: 8px;
}

/* Top Interview Section */
.top-interview-section {
  padding: 50px 0 150px 0;
  background-color: #fff;
  border-top: 1px solid #999;
}

.top-interview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 80px;
}

.top-interview-header .top-section-title {
  font-family: "helvetica-now-display", "Helvetica Now", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  
  color: #222;
  letter-spacing: 0.05em;
  margin: 0;
  font-size: 32px;
  font-weight: normal;
}

.top-interview-header .top-section-subtitle-right {
  font-size: 22px;
  color: #222;
  letter-spacing: 0.05em;
  margin: 0;
  padding-bottom: 10px;
}

.top-interview-intro {
  max-width: 1440px;
  margin: 0 auto 60px;
  padding: 0 80px;
}

.top-interview-intro-text {
  font-size: 15px;
  color: #222;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.top-interview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.top-interview-card {
  position: relative;
  aspect-ratio: 1.8 / 1;
  overflow: hidden;
  cursor: pointer;
}

.top-interview-card-large {
  position: relative;
  aspect-ratio: 1.8 / 1;
  overflow: hidden;
  cursor: pointer;
}

.top-interview-image-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

.top-interview-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  vertical-align: middle;
}

.top-interview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
/*  background: linear-gradient(
    to bottom,
    rgba(112, 76, 38, 0.32) 0%,
    rgba(181, 142, 74, 0.15) 50%,
    rgba(86, 45, 15, 0.38) 100%
  );*/
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.top-interview-card:hover .top-interview-overlay,
.top-interview-card-large:hover .top-interview-overlay {
  opacity: 1;
}
.top-interview-card img,
.top-interview-card-large img {
  filter: sepia(0) contrast(100%) brightness(100%) hue-rotate(0deg);
  transition: filter 0.2s ease-in-out;
}
.top-interview-card:hover img,
.top-interview-card-large:hover img {
  filter: sepia(1) contrast(90%) brightness(50%) hue-rotate(-10deg);
}

.top-interview-quote {
  font-size: 24px;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.top-interview-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 40px;
}

.top-interview-name {
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 0;
}

.top-interview-position {
  font-size: 13px;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin: 0;
}

/* Top Career Section */
.top-career-section {
  padding: 50px 80px 100px 80px;
  background-color: #fff;
  border-top: 1px solid #999;
}

.top-career-wrapper {
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid #d8d8d0;
}

.top-career-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
}

.top-career-header-left {
  flex: 1;
  max-width: 40%;
}

.top-career-header-right {
  flex-shrink: 0;
  padding-top: 8px;
}

.top-section-title {
  padding-bottom: 10px;
}

.top-career-intro {
  margin: 0;
}

.top-career-intro-text {
  font-size: 14px;

  line-height: 2.1;
  color: #222;
  letter-spacing: 0.02em;
  text-align: justify;
}

.top-career-content {
  width: 100%;
  border-bottom: 1px solid #d8d8d0;
}

/* Career Training */
.top-career-training {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 60px;
  width: 100%;
}

.top-career-training-left {
  flex-shrink: 0;
  padding-top: 60px;
}

.top-career-training-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-career-training-title {
  font-family: "helvetica-now-display", "Helvetica Now", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  color: #222;
  letter-spacing: 0.02em;
  line-height: 1.5;
  
  font-size: 22px;
  font-weight: normal;
}

.top-career-training-subtitle {
  font-size: 14px;

  color: #222;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.top-career-training-right {
  flex: 1;
}

/* Career Levels */
.top-career-levels {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top-career-level-group {
  display: flex;
  gap: 40px;
  padding: 48px 0;
  align-items: center;
}

/* .top-career-level-group:first-child {
  border-top: 1px solid #d8d8d0;
} */

.top-career-level-label {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}

.top-career-level-text {
  font-size: 18px;

  color: #222;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: center;
}

.top-career-level-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-career-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.top-career-item-number {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #d8d8c8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-career-number {
  font-family: "Libre Baskerville", serif;
  font-size: 28px;

  color: #222;
}

.top-career-item-content {
  flex: 1;
  padding-top: 4px;
}

.top-career-item-title {
  font-size: 16px;

  color: #222;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.top-career-item-description {
  font-size: 13px;

  line-height: 2;
  color: #222;
  letter-spacing: 0.02em;
}

.top-career-divider {
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #c8c8b8 0,
    #c8c8b8 2px,
    transparent 2px,
    transparent 4px
  );
}

.top-career-footer {
  text-align: left;
  padding-top: 40px;
}

.top-career-note {
  font-size: 13px;

  line-height: 1.9;
  color: #222;
  letter-spacing: 0.02em;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .top-hero-overlay {
    padding: 0 60px;
  }

  .company-message-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .company-message-left {
    min-width: auto;
  }

  .top-recruit-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-opening-banner-content {
    grid-template-columns: 1fr;
  }

  .top-opening-banner-image {
    min-height: 400px;
  }

  .top-interview-header {
    margin-bottom: 28px;
  }

  .top-interview-intro {
    margin-bottom: 48px;
  }

  .top-interview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .top-career-step {
    gap: 40px;
  }
}

.pc_only { display: block;}
.pcil_only { display: inline;}
.sp_only { display: none;}

@media (max-width: 768px) {

.pc_only { display: none;}
.pcil_only { display: none;}
.sp_only { display: block;}

.top-interview-header, .top-interview-intro, .top-interview-intro-text, .top-recruit-header {padding: 0;}

  .main-content {
    padding-top: 52px;
  }

  /* Top Hero Section */
  .top-hero-section {
    height: 400px;
  }

  .top-hero-overlay {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 0 24px;
    gap: 20px;
    align-items: center;
    font-size: 12px;
  }

  .top-hero-text-right {
    justify-content: flex-end;
  }

  .top-hero-title {
    font-size: 14px;
  }

  .top-hero-subtitle {
    font-size: 32px;
  }

  /* Company Message Section */
  .company-message-section {
    padding: 48px 20px;
  }

  .company-message-wrapper {
    gap: 32px;
  }

  .company-message-right {
    width: 100%;
  }

  .company-message-title {
    font-size: 18px;
    line-height: 1.8;
  }

  .company-message-text {
    font-size: 14px;
    line-height: 1.9;
  }

  /* Top Recruit Section */
  .top-recruit-section {
    padding: 60px 20px;
  }

  .top-recruit-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 40px;
  }

  .top-section-title {
    font-size: 28px;
  }

  .top-section-subtitle-right {
    font-size: 15px;
  }

  .top-recruit-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .top-recruit-card-content {
    padding: 24px 20px 28px;
  }

  .top-recruit-card-title {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .top-recruit-card-button {
    font-size: 12px;
    padding: 7px 18px;
    margin-bottom: 12px;
  }

  .top-recruit-card-text {
    font-size: 14px;
  }

  /* Top Opening Banner */

  .top-opening-banner-content {
    grid-template-columns: 1fr;
  }

  .top-opening-banner-image {
    min-height: 300px;
  }

  .top-opening-image-placeholder {
    min-height: 300px;
  }

  .top-opening-overlay-title {
    font-size: 28px;
  }

  .top-opening-overlay-location {
    font-size: 13px;
  }

  .top-opening-banner-right {
    padding: 40px 24px;
  }

  .top-opening-label {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .top-opening-title {
    font-size: 19px;
    margin-bottom: 16px;
  }

  .top-opening-subtitle {
    margin-bottom: 20px;
  }

  .top-opening-subtitle-line {
    font-size: 14px;
  }

  .top-opening-subtitle-mark {
    font-size: 12px;
  }

  .top-opening-description {
    margin-bottom: 24px;
  }

  .top-opening-description-text {
    font-size: 13px;
    line-height: 1.9;
  }

  .top-opening-button {
    font-size: 12px;
    padding: 9px 24px;
  }

  /* Top Interview Section */
  .top-interview-section {
    padding: 60px 20px 0;
  }

  .top-interview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
  }

  .top-interview-header .top-section-title {
    font-size: 28px;
  }

  .top-interview-header .top-section-subtitle-right {
    font-size: 15px;
  }

  .top-interview-intro {
    margin-bottom: 40px;
  }

  .top-interview-intro-text {
    font-size: 14px;
  }

  .top-interview-grid {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
  }

  .top-interview-card {
    aspect-ratio: 1.5 / 1;
  }

  .top-interview-card-large {
    aspect-ratio: 1.5 / 1;
  }

  .top-interview-overlay {
    padding: 24px;
  }

  .top-interview-quote {
    font-size: 18px;
    width: 85%;
  }

  .top-interview-info {
    bottom: 24px;
    padding: 0 24px;
  }

  .top-interview-name {
    font-size: 16px;
  }

  .top-interview-position {
    font-size: 11px;
  }

  /* Top Career Section */
  .top-career-section {
    padding: 60px 20px;
  }

  .top-career-wrapper {
    margin-bottom: 48px;
    padding-bottom: 40px;
  }

  .top-career-header {
    flex-direction: column;
    gap: 24px;
  }

  .top-career-header-left {
    width: 100%;
  }

  .top-career-header-right {
    width: 100%;
    padding-top: 0;
  }

  .top-career-header .top-section-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .top-career-header .top-section-subtitle {
    font-size: 15px;
  }

  .top-career-header-left {
    max-width: 100%;
  }

  .top-career-intro-text {
    font-size: 13px;
    line-height: 2;
    text-align: left;
  }

  .top-career-training {
    flex-direction: column;
    gap: 40px;
  }

  .top-career-training-left {
    width: 100%;
    padding-top: 0;
  }

  .top-career-training-title {
    font-size: 18px;
  }

  .top-career-training-subtitle {
    font-size: 13px;
  }

  .top-career-level-group {
    flex-direction: row;
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid #555;
  }

  .top-career-level-group:nth-of-type(2),   .top-career-level-group:nth-of-type(3) {
    border-top: 0px solid #555;
  }


  .top-career-level-label {
    width: 10%;
    justify-content: flex-start;
    padding-top: 0;
  }

  .top-career-level-text {
    font-size: 16px;
  }

  .top-career-level-items {
    gap: 32px;
    width: 90%;
  }

  .top-career-item {
    gap: 20px;
  }

  .top-career-item-number {
    width: 60px;
    height: 60px;
  }

  .top-career-number {
    font-size: 24px;
  }

  .top-career-item-title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .top-career-item-description {
    font-size: 12px;
    line-height: 1.9;
  }

  .top-career-footer {
    padding-top: 32px;
  }

  .top-career-note {
    font-size: 12px;
    line-height: 1.8;
  }
}


/* */
a {
text-decoration: none;
color: #222;
}

