/* ============================================
   HOME.CSS - index.html専用BEMスタイル
   Block prefix: hp- (Home Page)
   ============================================ */

/* ============================================
   COMMON PARTS MODIFIERS (index.html専用)
   ============================================ */

/* Light Modifier for dark backgrounds */
.hp-label--light {
  color: var(--color-bg-white);
}

.hp-label--light::before {
  background: var(--color-bg-white);
}

.hp-title--light {
  color: var(--color-bg-white);
}

.hp-desc {
  width: 100%;
  box-sizing: border-box;
}

.hp-desc--light {
  color: var(--color-bg-white);
  padding-bottom: 360px;
}

/* Partial text highlight within hp-desc--light */
.hp-desc--light .highlight {
  background: var(--gradient-main);
  color: var(--color-bg-white);
  padding: 8px 8px;
  line-height: 2.5;
  font-size: clamp(0.83rem, 1.01vw + 0.59rem, 1.5rem);
  letter-spacing: 0.1rem;
  font-weight: 600;
}

.hp-desc--light .highlight--top {
  padding: 4px 8px;
}

.hp-desc--light .highlight--bottom {
  padding: 4px 8px 4px 20px;
}

/* Gradient underline for emphasis */
.hp-desc--light .hp-desc__underline {
  background-image: var(--gradient-main);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom left;
  padding-bottom: 4px;
  font-weight: 600;
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.hp-about {
  overflow: hidden;
  backdrop-filter: blur(20px);
  padding: 120px 0 120px !important;
  position: relative;
}

.hp-about__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hp-about__container {
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
  padding: 0;
}

@media (min-width: 1024px) {
  .hp-about:hover .hp-about__container {
    transform: scale(1.02);
  }
}

.hp-about__title {
  font-size: clamp(1.1rem, 2.5vw, 2.5rem);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.2rem;
  color: var(--color-bg-white);
  margin-bottom: 24px;
}

.hp-about__desc {
  font-size: clamp(0.8rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  word-break: break-word;
  color: var(--color-bg-white);
  margin-bottom: 24px;
}

/* ============================================
   BANNER SECTION
   ============================================ */
.hp-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: -400px;
  position: relative;
  z-index: var(--z-elevated);
}

.hp-banner__item {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  overflow: hidden;
}

.hp-banner__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: var(--z-base);
  transition: background 0.3s ease, border-radius 0.5s ease;
}

.hp-banner__item:hover::before {
  background: rgba(0, 0, 0, 0.4);
}

.hp-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: border-radius 0.5s ease;
}

.hp-banner__content {
  position: relative;
  z-index: var(--z-elevated);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hp-banner__chevron {
  display: none;
}

.hp-banner__title {
  font-size: clamp(1.25rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--color-bg-white);
  line-height: 1.4;
  letter-spacing: 1px;
  transition: font-size 0.5s ease, line-height 0.5s ease, color 0.5s ease;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Banner title hover: 769px and above */
@media (min-width: 769px) {
  .hp-banner__item:first-child:hover .hp-banner__title,
  .hp-banner__item:last-child:hover .hp-banner__title {
    line-height: 1.4;
    color: var(--color-primary);
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hp-banner__item:first-child:hover .hp-banner__title {
    font-size: clamp(1.2rem, 3.4vw, 2.8rem);
  }

  .hp-banner__item:last-child:hover .hp-banner__title {
    font-size: clamp(1.2rem, 3.4vw, 2.8rem);
  }
}

/* Banner background radius: PC only (1024px以上) */
@media (min-width: 1024px) {
  .hp-banner__item:first-child:hover .hp-banner__bg {
    border-top-right-radius: 240px;
  }

  .hp-banner__item:first-child:hover::before {
    border-top-right-radius: 240px;
    transition: border-radius 0.5s ease;
  }

  .hp-banner__item:last-child:hover .hp-banner__bg {
    border-top-left-radius: 240px;
  }

  .hp-banner__item:last-child:hover::before {
    border-top-left-radius: 240px;
    transition: border-radius 0.5s ease;
  }
}

/* ============================================
   SERVICE SECTION
   ============================================ */
.hp-service {
  padding: 120px 0 0 0;
  background: var(--color-bg-white);
}

/* Modifier: radius on top-right */
.hp-service--right {
  border-radius: 0 clamp(80px, calc(80px + (100vw - 320px) / 10), 400px) 0 0;
}

/* Modifier: radius on top-left */
.hp-service--left {
  border-radius: clamp(80px, calc(80px + (100vw - 320px) / 10), 400px) 0 0 0;
}

.hp-service .hp-section-divider {
  display: none;
}

.hp-service__list {
  margin-top: 0;
}

.hp-service__item {
  align-content: center;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid #e5e5e5;
}

.hp-service__item:first-child {
  border-top: none;
}

.hp-service__item:last-child {
  border-bottom: none;
}

.hp-service__item--no-padding-bottom {
  padding-bottom: 0;
}

.hp-service__img {
  width: 180px;
  height: 140px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.hp-service__info {
  flex: 1;
}

.hp-service__name {
  font-size: clamp(1.10rem, calc(0.30vw + 1.03rem), 1.30rem);
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: #222;
  margin-bottom: 4px;
}

.hp-service__name-en {
  font-size: 0.8rem;
  color: #aaa;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hp-service__text .hp-service__desc {
  flex: none;
  width: 100%;
}

.hp-service__text {
  display: flex;
  flex-direction: column;
  flex: 1.5;
}

.hp-service__lead {
  font-size: clamp(1.0rem, calc(0.4vw + 0.9rem), 1.25rem);
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  margin: 0;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hp-service__desc {
  flex: 1.5;
  font-size: clamp(0.80rem, calc(0.15vw + 0.76rem), 0.90rem);
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 2;
  color: #222;
}

/* Highlight within hp-service__desc - solid background with custom color/weight */
.hp-service__desc .marker {
  background: var(--color-primary);
  color: var(--color-bg-white);
  padding: 0px 7px 1px 8px;
  margin-right: 2px;
  font-weight: 500;
}

/* ============================================
   SUPPORT SECTION
   ============================================ */
.hp-support {
  padding: 120px 0px 200px 0px;
  background: var(--color-bg-white);
  border-bottom-left-radius: clamp(80px, calc(80px + (100vw - 320px) / 10), 400px);
}

.hp-support .hp-section-divider {
  display: none;
}

.hp-support .container {
  position: relative;
}

.hp-support__vertical-text {
  position: absolute;
  right: 40px;
  top: 0;
  writing-mode: vertical-rl;
  font-size: 2.1rem;
  font-weight: 500;
  background: linear-gradient(45deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: -40px;
  line-height: 1.50;
  letter-spacing: 0.2em;
}

.hp-support__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  gap: 40px;
  grid-auto-flow: row;
}

.hp-support__card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 1024px) {
  .hp-support__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  }

  .hp-support__grid--no-hover .hp-support__card:hover {
    transform: none;
    box-shadow: none;
  }
}

.hp-support__num {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.hp-support__card-title {
  font-size: clamp(0.95rem, 1.1vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.5;
}

.hp-support__card-desc {
  font-size: clamp(0.80rem, calc(0.15vw + 0.76rem), 1rem);
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1.9;
  color: #222;
}

/* ============================================
   STRENGTHS SECTION
   ============================================ */
.hp-strengths {
  padding: 120px 0 240px 0;
  background: var(--color-bg-white);
  border-radius: 0 400px 0 0;
}

.hp-strengths__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  gap: 40px;
  margin-top: 80px;
  grid-auto-flow: row;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* ============================================
   PC HOVER EFFECTS (1024px以上のみ適用)
   ============================================ */
@media (min-width: 1024px) {
  .hp-strengths__grid:hover {
    max-width: 1240px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }

  .hp-strengths__grid::after {
    content: '>';
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hp-strengths__grid:hover::after {
    opacity: 1;
  }

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

  .hp-strengths__grid:hover .hp-strengths__num {
    font-size: clamp(1.7rem, 2vw, 2.1rem);
    font-weight: 900;
    letter-spacing: 0.5rem;
  }

  .hp-strengths__grid:hover .hp-strengths__card-title {
    font-size: clamp(1.25rem, 1.6vw, 1.5rem);
    letter-spacing: 0.1em;
    color: var(--color-text);
  }

  /* Right card expands on hover */
  .hp-strengths__grid:hover .hp-strengths__card:last-child {
    max-width: 600px;
    width: 100%;
  }

  .hp-strengths__grid:hover .hp-strengths__card:last-child .hp-strengths__num,
  .hp-strengths__grid:hover .hp-strengths__card:last-child .hp-strengths__card-title {
    max-width: 100%;
  }
}

.hp-strengths__card {
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding-left: 16px;
}

.hp-strengths__num {
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 4px;
  margin-bottom: 16px;
  padding: 8px 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.hp-strengths__card-title {
  font-size: clamp(1.1rem, 1.3vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.5;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1023px) {
  .hp-strengths__card-title br {
    display: none;
  }
}

.hp-strengths__card:last-child {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   COMPANY SECTION
   ============================================ */
.hp-company {
  padding: 120px 0 120px 0;
  backdrop-filter: blur(20px);
  background: #f4f6f6aa;
}

.hp-company .hp-section-divider {
  display: none;
}

.hp-company__table {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  border-collapse: collapse;
}

.hp-company__table tbody {
  gap: 0px 120px;
}

.hp-company__row {
  border-bottom: 1px solid #ddd;
  display: flex;  
}

.hp-company__th {
  text-align: left;
  padding: 20px 24px;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  color: #1a1a1a;
  font-weight: 500;
  width: 160px;
  flex-shrink: 0;
}

.hp-company__td {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  flex: 1;
  line-height: 1.8;
}

.hp-company__td a {
  color: var(--color-primary);
  text-decoration: none;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.hp-news {
  padding: 120px 0 240px 0;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.67);
}

.hp-news .hp-section-divider {
  display: none;
}

.hp-news__list {
  margin-top: 0;
}

.hp-news__item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
  transition: background 0.3s ease;
}

@media (min-width: 1024px) {
  .hp-news__item:hover {
    background: #f9fafb;
  }
}

.hp-news__date {
  font-size: 0.85rem;
  color: #999;
  flex-shrink: 0;
  min-width: 110px;
}

.hp-news__title {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 400;
}

/* ============================================
   RESPONSIVE - Tablet & Mobile
   ============================================ */
@media (max-width: 1280px) {
  .hp-support__vertical-text {
    display: none;
  }
}

@media (max-width: 1300px) {
  .hp-support__vertical-text {
    margin-bottom: 80px;
    min-height: 80px;
  }
}

/* ============================================
   RESPONSIVE - 769px to 1000px (Tablet)
   ============================================ */
@media (min-width: 769px) and (max-width: 1000px) {
  /* Service - 2-row layout: img+info on top, desc below */
  .hp-service__item {
    flex-wrap: wrap;
    gap: 32px;
  }

  .hp-service__img,
  .hp-service__info {
    flex: 0 0 calc(50% - 16px);
    width: calc(50% - 16px);
  }

  .hp-service__img {
    height: clamp(140px, 20vw, 180px);
  }

  .hp-service__desc,
  .hp-service__text {
    flex: 0 0 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Section spacing - 64px total (32px top + 32px bottom) */
  .hp-desc--light {
    padding-bottom: 240px;
  }
  


  .hp-about {
    padding: 32px 0;
  }

  .hp-support {
    padding: 120px 0 120px 0;
  }

  .hp-strengths {
    padding: 120px 0;
  }

  .hp-strengths__grid {
    grid-template-columns: 1fr auto;
    max-width: 100%;
    gap: 0px;
    margin-bottom: 0px;
    background: linear-gradient(45deg, #3bb8c4 0%, #57f0d0 50%, #3bb8c4 100%);
    padding: 56px 16px 40px 40px;
    border-radius: 24px;
    align-items: center;
  }

  .hp-strengths__card {
    padding-left: 0;
    padding-right: 0;
    grid-column: 1;
  }

  .hp-strengths__card:first-of-type {
    grid-row: 1;
  }

  .hp-strengths__card:last-of-type {
    grid-row: 2;
  }

  .hp-strengths__num {
    letter-spacing: 0.2rem;
    margin-bottom: 0px;
    background: var(--color-bg-white);
    padding: 0px 16px;
    border-radius: 0px;
    display: block;
    color: var(--color-primary);
    margin-bottom: 8px;
    width: 100%;
  }

  .hp-strengths__card-title {
    color: var(--color-bg-white);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: clamp(0.95rem, 4.5vw, 1.1rem);
  }

  .hp-strengths__card-title .sp-span {
    display: block;
  }

  .hp-company {
    padding: 120px 0 40px 0;
  }

  .hp-news {
    padding: 120px 0;
  }

  .hp-service {
    padding: 120px 0 0 0;
  }

  /* Banner */
  .hp-banner {
    grid-template-columns: 1fr;
    margin-top: clamp(-280px, -52vw, -400px);  /* バナー高さに同期：140px×2～200px×2 */
  }

  .hp-banner__item:first-child::before {
    background: linear-gradient(to right, rgba(15, 45, 50, 0.9) 0%, rgba(15, 45, 50, 0.75) 20%, rgba(47, 167, 224, 0.7) 40%, rgba(54, 193, 214, 0.65) 50%, rgba(127, 212, 216, 0.6) 60%, rgba(139, 184, 255, 0.55) 80%, rgba(199, 166, 255, 0.5) 90%, rgba(247, 138, 203, 0.45) 95%);
  }

  .hp-banner__item:last-child::before {
    background: linear-gradient(to left, rgba(15, 45, 50, 0.9) 0%, rgba(15, 45, 50, 0.75) 20%, rgba(47, 167, 224, 0.7) 40%, rgba(54, 193, 214, 0.65) 50%, rgba(127, 212, 216, 0.6) 60%, rgba(139, 184, 255, 0.55) 80%, rgba(199, 166, 255, 0.5) 90%, rgba(247, 138, 203, 0.45) 95%);
  }

  .hp-banner__content {
    position: relative;
  }

  .hp-banner__chevron {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .hp-banner__chevron--left {
    right: auto;
    left: 0;
  }

  /* ホバーアニメーション抹殺 - 変化するプロパティのみ非ホバー値で固定 */
  .hp-banner__bg,
  .hp-banner__item::before,
  .hp-banner__title {
    transition: none;
  }

  /* 背景の角丸変化を無効化（元の値: 0） */
  .hp-banner__item:first-child:hover .hp-banner__bg,
  .hp-banner__item:first-child:hover::before {
    border-top-right-radius: 0;
    border-radius: 0;
    transition: none;
  }

  .hp-banner__item:last-child:hover .hp-banner__bg,
  .hp-banner__item:last-child:hover::before {
    border-top-left-radius: 0;
    border-radius: 0;
    transition: none;
  }

  .hp-banner__content {
    padding: clamp(6px, 2vw, 10px);
  }

  .hp-banner__item {
    height: clamp(140px, 26vw, 200px);
    padding: clamp(10px, 3vw, 40px) clamp(10px, 4vw, 40px);
  }

  .hp-banner__item:first-child .hp-banner__title {
    text-align: left;
    align-self: flex-start;
  }

  .hp-banner__item:last-child .hp-banner__title {
    text-align: right;
    align-self: flex-end;
  }

  /* Service */
  .hp-service__item {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .hp-service__img {
    width: 100%;
    height: clamp(140px, 26vw, 200px);
  }

  .hp-title {
    font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  }

  .hp-service__name,
  .hp-service__name-en {
    text-align: left;
  }

  .hp-service__name-en {
    margin-bottom: 0;
  }

  .hp-service__text {
    display: flex;
    flex-direction: column;
    flex: 1.5;
    width: 100%;
  }

  .hp-service__lead {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    letter-spacing: 0.1rem;
  }

  /* Company Table */
  .hp-company__row {
    flex-direction: column;
    margin-bottom: 40px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  .hp-company__th {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: rgba(248, 249, 250, 0.8);
    font-weight: 600;
    border-bottom: 1px solid #ddd;
  }

  .hp-company__td {
    display: block;
    width: 100%;
    padding: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .hp-company__td span {
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* ============================================
   Desktop (1025px以上)
   ============================================ */
@media (min-width: 1025px) {
  .hp-strengths__card {
    padding-left: 0;
  }
}

/* ============================================
   Smartphone & Tablet (1023px以下)
   ============================================ */
@media (max-width: 1023px) {
  .hp-strengths__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .hp-strengths__card {
    grid-column: 1;
  }

  .hp-strengths__card:first-of-type {
    grid-row: 1;
  }

  .hp-strengths__card:last-of-type {
    grid-row: 2;
  }

  .hp-strengths__chevron {
    position: static;
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    padding-left: 16px;
  }

  .hp-strengths__num {
    display: block;
    width: 100%;
  }
}

/* ============================================
   Desktop (1025px以上) - シェブロン非表示
   ============================================ */
@media (min-width: 1025px) {
  .hp-strengths__chevron {
    display: none;
  }
}

/* ============================================
   Tablet only (768px〜1023px)
   ============================================ */
@media (min-width: 768px) and (max-width: 1023px) {
  .hp-strengths__grid {
    grid-template-columns: 1fr auto;
    max-width: 100%;
    gap: 0px;
    margin-bottom: 0px;
    border-radius: 40px;
    background: linear-gradient(45deg, #3bb8c4 0%, #57f0d0 50%, #3bb8c4 100%);
    padding: 40px 24px 40px 40px;
  }

  .hp-strengths__grid .hp-strengths__card {
    padding-left: 0;
  }

  .hp-strengths__num {
    letter-spacing: 0.2rem;
    margin-bottom: 0px;
    background: var(--color-bg-white);
    padding: 0px 16px;
    border-radius: 0px;
    margin-bottom: 8px;
    display: block;
    width: 100%;
    color: var(--color-primary);
  }

  .hp-strengths__card-title {
    color: var(--color-bg-white);
  }
}

/* ============================================
   1023px以上 - PC表示スタイル維持
   ============================================ */
@media (min-width: 1023px) {
  .hp-strengths__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    gap: 40px;
    margin-top: 40px;
    background: none;
    padding: 0;
    border-radius: 0;
  }

  .hp-strengths__card {
    padding-left: 0;
  }

  .hp-strengths__num {
    padding: 8px 0;
    background: none;
    border-radius: 0;
    display: block;
    margin-bottom: 16px;
    color: var(--color-primary);
  }

  .hp-strengths__card-title {
    color: var(--color-text);
    letter-spacing: 0.1rem;
  }

  .hp-strengths__chevron {
    display: none;
  }
}

/* ============================================
   Responsive Canvas Positioning
   ============================================ */
@media (max-width: 768px) {
  .hp-about {
    position: relative;
    overflow: hidden;
  }

  .hp-about__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-behind);
  }

  .hp-about__container {
    position: relative;
    z-index: var(--z-base);
  }
}
