@charset "utf-8";

:root {
  /* ========================================
         カラーシステム
         ======================================== */

  /* プライマリカラー */
  --color-primary-01: #104a13;
  --color-primary-02: #b71840;
  --color-primary-03: #4068a6;
  --color-primary-04: #a64040;

  /* プライマリカラーのバリエーション（明度調整） */
  --color-primary-01-light: #1a6b1f;
  --color-primary-01-dark: #0a2f0c;
  --color-primary-02-light: #d4225a;
  --color-primary-02-dark: #8a1230;

  /* ニュートラルカラー */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  /* セマンティックカラー */
  --color-text-primary: var(--color-gray-900);
  --color-text-secondary: var(--color-gray-600);
  --color-text-muted: var(--color-gray-500);
  --color-text-inverse: var(--color-white);

  --color-bg-primary: var(--color-white);
  --color-bg-secondary: var(--color-gray-50);
  --color-bg-tertiary: var(--color-gray-100);

  --color-border: var(--color-gray-200);
  --color-border-hover: var(--color-gray-300);

  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;

  /* ========================================
         タイポグラフィ
         ======================================== */

  /* フォントファミリー */
  --font-family-base: -apple-system, BlinkMacSystemFont, "Noto Sans JP",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-family-heading: var(--font-family-base);
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo,
    Courier, monospace;

  /* フォントサイズ */
  /* 計算式: 元のrem値 × 1.6 */

  /* 12px - 14px */
  --fs-xs: clamp(1.2rem, 0.7vw + 0.8rem, 1.4rem);
  /* 14px - 16px */
  --fs-sm: clamp(1.4rem, 0.8vw + 0.8rem, 1.6rem);
  /* 16px - 18px (ここがベース) */
  --fs-base: clamp(1.6rem, 1vw + 0.8rem, 1.8rem);
  /* 18px - 20px */
  --fs-lg: clamp(1.8rem, 1.2vw + 0.8rem, 2rem);
  /* 20px - 24px */
  --fs-xl: clamp(2rem, 1.5vw + 0.8rem, 2.4rem);
  /* 24px - 32px */
  --fs-2xl: clamp(2.4rem, 2vw + 1.2rem, 3.2rem);
  /* 30px - 40px */
  --fs-3xl: clamp(3rem, 2.5vw + 1.6rem, 4rem);
  /* 36px - 48px */
  --fs-4xl: clamp(3.6rem, 3vw + 1.6rem, 4.8rem);
  /* 48px - 64px */
  --fs-5xl: clamp(4.8rem, 4vw + 2.4rem, 6.4rem);

  /* 見出し用フォントサイズ */
  --fs-h1: var(--fs-4xl);
  --fs-h2: var(--fs-3xl);
  --fs-h3: var(--fs-2xl);
  --fs-h4: var(--fs-xl);
  --fs-h5: var(--fs-lg);
  --fs-h6: var(--fs-base);

  /* 行高 */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  /* フォントウェイト */
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* ========================================
         スペーシング
         ======================================== */

  /* 固定スペーシング */
  --space-1: 0.25rem;
  /* 4px */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 0.75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px */
  --space-5: 1.25rem;
  /* 20px */
  --space-6: 1.5rem;
  /* 24px */
  --space-8: 2rem;
  /* 32px */
  --space-10: 2.5rem;
  /* 40px */
  --space-12: 3rem;
  /* 48px */
  --space-16: 4rem;
  /* 64px */
  --space-20: 5rem;
  /* 80px */
  --space-24: 6rem;
  /* 96px */
  --space-28: 7rem;
  /* 112px */
  --space-32: 8rem;
  /* 128px */
  --space-36: 9rem;
  /* 144px */
  --space-40: 10rem;
  /* 160px */
  --space-44: 11rem;
  /* 176px */
  --space-48: 12rem;
  /* 192px */
  --space-52: 13rem;
  /* 208px */
  --space-56: 14rem;
  /* 224px */
  --space-60: 15rem;
  /* 240px */

  /* 流動的スペーシング（レスポンシブ） */
  --space-xs: clamp(0.5rem, 1vw, 1rem);
  --space-sm: clamp(1rem, 2vw, 1.5rem);
  --space-md: clamp(1.5rem, 3vw, 2.5rem);
  --space-lg: clamp(2rem, 4vw, 4rem);
  --space-xl: clamp(3rem, 6vw, 6rem);
  --space-2xl: clamp(4rem, 8vw, 8rem);

  /* セクション間スペーシング */
  --section-spacing: var(--space-xl);
  --section-spacing-sm: var(--space-lg);

  /* ========================================
         レイアウト
         ======================================== */

  /* コンテナ幅 */
  --container-xs: 480px;
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;

  --container-max: var(--container-xl);
  --container-padding: clamp(1rem, 3vw, 2rem);

  /* グリッドギャップ */
  --gap-sm: clamp(0.75rem, 1.5vw, 1rem);
  --gap-md: clamp(1rem, 2vw, 1.5rem);
  --gap-lg: clamp(1.5rem, 2.5vw, 2rem);
  --gap-xl: clamp(2rem, 3vw, 3rem);

  /* ========================================
         ボーダー
         ======================================== */

  --border-width: 1px;
  --border-width-2: 2px;
  --border-width-4: 4px;

  --border-radius-none: 0;
  --border-radius-sm: 0.25rem;
  /* 4px */
  --border-radius-md: 0.5rem;
  /* 8px */
  --border-radius-lg: 0.75rem;
  /* 12px */
  --border-radius-xl: 1rem;
  /* 16px */
  --border-radius-2xl: 1.5rem;
  /* 24px */
  --border-radius-full: 9999px;

  /* ========================================
         シャドウ
         ======================================== */

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);

  /* ========================================
         トランジション
         ======================================== */

  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;

  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* ========================================
         Z-index
         ======================================== */

  --z-base: 1;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;

  /* ========================================
         ブレークポイント（メディアクエリ用参考値）
         ======================================== */

  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;
}

/* ========================================
       ダークモード対応（オプション）
       ======================================== */

@media (prefers-color-scheme: dark) {
  :root {
    --color-text-primary: var(--color-gray-100);
    --color-text-secondary: var(--color-gray-400);
    --color-text-muted: var(--color-gray-500);

    --color-bg-primary: var(--color-gray-900);
    --color-bg-secondary: var(--color-gray-800);
    --color-bg-tertiary: var(--color-gray-700);

    --color-border: var(--color-gray-700);
    --color-border-hover: var(--color-gray-600);
  }
}


/* Utility Classes */
.sp-only {
  display: none;
}


/* ========================================
   fcc_keyvisual セクション
   ======================================== */

#fcc_keyvisual {
  position: relative;
  width: 100%;
  min-height: clamp(556px, 43.44vw, 835px);
  overflow: hidden;
  background: #ffffff;
  border-radius: 11px;
}

/* 背景カルーセル */
#fcc_keyvisual .bg_carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(517px, 40.42vw, 776px);
  z-index: 1;
  overflow: hidden;
}

#fcc_keyvisual .bg_carousel_inner {
  display: flex;
  width: fit-content;
  height: 100%;
  will-change: transform;
  padding-left: clamp(60px, 4.69vw, 90px);
  padding-right: clamp(60px, 4.69vw, 90px);
  box-sizing: border-box;
  align-items: flex-start;
}

#fcc_keyvisual .bg_carousel_inner img {
  width: clamp(225px, 18.75vw, 350px);
  aspect-ratio: 5 / 8;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  position: relative;
  border-radius: clamp(10px, 0.75vw, 15px);
  margin-right: clamp(24px, 1.88vw, 36px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* 初期top位置を設定（JavaScriptが実行される前から適用） */
  top: 0;
}

/* 各画像の初期top位置をパターンで設定（5枚ごとに繰り返し）
   横幅1920px時の基準値をvw/クランプでレスポンシブ対応 */

#fcc_keyvisual .bg_carousel_inner img:nth-child(5n + 1) {
  top: clamp(20px, 2.6vw, 50px);
  /* 50px/1920 ≒ 2.6vw */
}

#fcc_keyvisual .bg_carousel_inner img:nth-child(5n + 2) {
  top: clamp(40px, 7.8vw, 150px);
  /* 150px/1920 ≒ 7.8vw */
}

#fcc_keyvisual .bg_carousel_inner img:nth-child(5n + 3) {
  top: clamp(30px, 5.2vw, 100px);
  /* 100px/1920 ≒ 5.2vw */
}

#fcc_keyvisual .bg_carousel_inner img:nth-child(5n + 4) {
  top: clamp(40px, 11.7vw, 225px);
  /* 225px/1920 ≒ 11.7vw */
}

#fcc_keyvisual .bg_carousel_inner img:nth-child(5n + 5) {
  top: clamp(25px, 5.7vw, 110px);
  /* 110px/1920 ≒ 5.7vw */
}

/* コンテナ */
#fcc_keyvisual .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: clamp(21px, 1.67vw, 32px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(90px, 7.03vw, 135px);
}

/* h1セクション */
#fcc_keyvisual .container .h1 {
  width: clamp(289px, 22.6vw, 434px);
  height: clamp(128px, 10vw, 192px);
}

#fcc_keyvisual .container .h1 .sub_copy {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.04vw, 20px);
  line-height: 1.21;
  color: #05388b;
  text-shadow: -2px -2px 0 #ffffff, 2px -2px 0 #ffffff, -2px 2px 0 #ffffff,
    2px 2px 0 #ffffff;
  margin: 0 0 clamp(17px, 1.35vw, 26px) clamp(10px, 0.78vw, 15px);
}

#fcc_keyvisual .container .h1 h2 {
  margin: 0;
  padding: 0;
}

#fcc_keyvisual .container .h1 h2 img {
  width: clamp(200px, 22.6vw, 434px);
  height: auto;
  display: block;
}

/* key_contentセクション */
#fcc_keyvisual .container .key_content {
  display: flex;
  flex-direction: column;
  gap: clamp(21px, 1.67vw, 32px);
  width: fit-content;
}

/* main_copyセクション */
#fcc_keyvisual .container .key_content .main_copy {
  width: clamp(559px, 43.7vw, 839px);
  height: clamp(120px, 9.38vw, 180px);
  position: relative;
  margin: 0;
}

#fcc_keyvisual .container .key_content .main_copy .copy_frame {
  background: #ffffff;
  padding: clamp(11px, 0.83vw, 16px) clamp(27px, 2.08vw, 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(7px, 0.52vw, 10px);
  width: fit-content;
}

#fcc_keyvisual .container .key_content .main_copy .copy_frame01 {
  position: absolute;
  top: 0;
  left: 0;
}

#fcc_keyvisual .container .key_content .main_copy .copy_frame02 {
  position: absolute;
  top: clamp(67px, 5.21vw, 100px);
  left: 0;
  width: clamp(559px, 44.7vw, 839px);
}

#fcc_keyvisual .container .key_content .main_copy .copy_frame p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 2.08vw, 40px);
  line-height: 1.2;
  color: #000000;
  text-align: center;
  margin: 0;
}

/* badgeセクション */
#fcc_keyvisual .container .key_content .badge {
  width: clamp(234px, 18.3vw, 351px);
  height: clamp(115px, 8.98vw, 172px);
  display: flex;
  gap: clamp(5px, 0.36vw, 7px);
}

#fcc_keyvisual .container .key_content .badge .badge_item {
  width: clamp(115px, 8.98vw, 172px);
  height: clamp(115px, 8.98vw, 172px);
  background: #eac016;
  border-radius: clamp(70px, 5.5vw, 105.5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(3px, 0.21vw, 4px);
  padding: clamp(5px, 0.42vw, 8px) clamp(8px, 0.63vw, 12px);
  box-sizing: border-box;
}

#fcc_keyvisual .container .key_content .badge .badge_item .badge_label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 0.94vw, 18px);
  line-height: 1.11;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

#fcc_keyvisual .container .key_content .badge .badge_item .badge_number {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(27px, 2.08vw, 40px);
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

#fcc_keyvisual .container .key_content .badge .badge_item .badge_unit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 0.94vw, 18px);
  line-height: 1.11;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.fcc_balloon_list .balloon:before {
  content: "";
  position: absolute;
  left: -38px;
  width: 13px;
  height: 12px;
  bottom: 0;
  background: #eaeaea;
  border-radius: 50%;
}

.fcc_balloon_list .balloon:after {
  content: "";
  position: absolute;
  left: -24px;
  width: 20px;
  height: 18px;
  bottom: 3px;
  background: #eaeaea;
  border-radius: 50%;
}

#probrem {
  padding-bottom: 50px !important;
}

/* Content Cards */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: var(--section-spacing);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.content-card {
  width: 100%;
  max-width: 570px;
  background: #ffffff;
  border: 3px solid #27582f;
  border-radius: 15px;
  padding: var(--space-8) var(--space-4);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-card:nth-child(1) {
  justify-self: end;
  align-self: end;
}

.content-card:nth-child(2) {
  justify-self: start;
  align-self: end;
}

.content-card:nth-child(3) {
  justify-self: end;
  align-self: start;
}

.content-card:nth-child(4) {
  justify-self: start;
  align-self: start;
}

.content-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.content-badge {
  display: inline-flex;
  align-items: center;
  background: #27582f;
  border-radius: 15px;
  padding: var(--space-4) var(--space-8);
  margin-bottom: var(--space-2);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: var(--fs-base);
  line-height: 1.2em;
  color: #ffffff;
}

.content-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: var(--fw-bold);
  font-size: var(--fs-2xl);
  line-height: 1.2em;
  color: #27582f;
  text-align: center;
}

.content-title span {
  font-weight: 700;
  font-size: var(--fs-lg);
}

.content-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 0;
}

.content-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.content-image iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
}

/* レスポンシブ対応 */
@media (max-width: 1366px) {
  .scene-section .container {
    padding: 0 20px;
  }

  .content-grid {
    max-width: 100%;
    grid-template-columns: repeat(2, 2fr);
    gap: var(--space-24);
  }

  .content-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .scene-section {}

  .content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-top: var(--space-8);
  }

  .content-card {}

  .content-header {}

  .content-title {
    font-size: var(--fs-lg);
    text-align: left;
  }

  .content-title.scene02 {
    font-size: var(--fs-xl);
  }

  .content-image {
    height: auto;
    min-height: auto;
  }
}

/* レスポンシブ対応 */

/* 1920px以上の画面サイズでは1920px × 1080pxのサイズを維持 */
@media screen and (min-width: 1920px) {
  #fcc_keyvisual {
    min-height: 835px;
  }

  #fcc_keyvisual .bg_carousel {
    height: 776px;
  }

  #fcc_keyvisual .container {
    max-width: 1366px;
    padding: 32px 0;
    gap: 135px;
  }

  #fcc_keyvisual .container .h1 {
    width: 434px;
    height: 192px;
  }

  #fcc_keyvisual .container .h1 .sub_copy {
    font-size: 20px;
    margin: 0 0 26px 15px;
  }

  #fcc_keyvisual .container .h1 h2 img {
    width: 434px;
    height: 166px;
  }

  #fcc_keyvisual .container .key_content {
    gap: 32px;
  }

  #fcc_keyvisual .container .key_content .main_copy {
    width: 839px;
    height: 180px;
  }

  #fcc_keyvisual .container .key_content .main_copy .copy_frame {
    padding: 16px 40px;
    gap: 10px;
  }

  #fcc_keyvisual .container .key_content .main_copy .copy_frame02 {
    top: 100px;
    width: 839px;
  }

  #fcc_keyvisual .container .key_content .main_copy .copy_frame p {
    font-size: 40px;
  }

  #fcc_keyvisual .container .key_content .badge {
    width: 351px;
    height: 172px;
    gap: 7px;
  }

  #fcc_keyvisual .container .key_content .badge .badge_item {
    width: 172px;
    height: 172px;
    border-radius: 105.5px;
    gap: 4px;
    padding: 8px 12px;
  }

  #fcc_keyvisual .container .key_content .badge .badge_item .badge_label {
    font-size: 18px;
  }

  #fcc_keyvisual .container .key_content .badge .badge_item .badge_number {
    font-size: 40px;
  }

  #fcc_keyvisual .container .key_content .badge .badge_item .badge_unit {
    font-size: 18px;
  }
}

@media screen and (max-width: 1366px) {
  #fcc_keyvisual .container {
    padding-left: 60px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  #fcc_keyvisual {
    min-height: auto;
  }

  #fcc_keyvisual .bg_carousel {
    height: 100%;
  }

  #fcc_keyvisual .bg_carousel_inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  #fcc_keyvisual .bg_carousel_inner img {
    width: clamp(150px, 25vw, 200px);
    height: auto;
    max-height: 300px;
    margin-right: 15px;
  }

  #fcc_keyvisual .container {
    padding: 20px;
    gap: 40px;
  }

  #fcc_keyvisual .container .h1 {
    width: 100%;
    height: auto;
  }

  #fcc_keyvisual .container .h1 .sub_copy {
    margin-bottom: 15px;
  }

  #fcc_keyvisual .container .key_content {
    width: 100%;
  }

  #fcc_keyvisual .container .key_content .main_copy {
    width: 100%;
    height: auto;
    position: relative;
  }

  #fcc_keyvisual .container .key_content .main_copy .copy_frame {
    position: relative;
    width: 100%;
    padding: 10px;
  }

  #fcc_keyvisual .container .key_content .main_copy .copy_frame01 {
    top: 0;
    margin-bottom: 10px;
  }

  #fcc_keyvisual .container .key_content .main_copy .copy_frame02 {
    top: auto;
    width: 100%;
  }

  #fcc_keyvisual .container .key_content .badge {
    width: 100%;
    height: auto;
    flex-direction: row;
    gap: 15px;
  }

  #fcc_keyvisual .container .key_content .badge .badge_item {
    width: 100%;
    max-width: 100px;
    height: auto;
    min-height: 100px;
  }
}

/* ========================================
   #interview セクション (特集エリア)
   ======================================== */
#interview {
  position: relative;
  overflow: hidden;
  background-color: rgba(16, 74, 19, 0.03);

  /* ベースのグリッド (既存のグラデーションのみ保持) */
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(16, 74, 19, 0.04) 25%, rgba(16, 74, 19, 0.04) 26%, transparent 27%, transparent 74%, rgba(16, 74, 19, 0.04) 75%, rgba(16, 74, 19, 0.04) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(16, 74, 19, 0.04) 25%, rgba(16, 74, 19, 0.04) 26%, transparent 27%, transparent 74%, rgba(16, 74, 19, 0.04) 75%, rgba(16, 74, 19, 0.04) 76%, transparent 77%, transparent);

  background-size:
    50px 50px,
    50px 50px;

  background-position:
    0 0,
    0 0;

  background-repeat: repeat, repeat;

  padding-top: clamp(40px, 4vw, 80px);
  padding-bottom: clamp(40px, 4vw, 80px);
  margin-top: clamp(40px, 4vw, 60px);
  margin-bottom: clamp(40px, 4vw, 60px);
}


#interview .feature_h2 {
  margin-bottom: clamp(30px, 3vw, 50px);
  position: relative;
  z-index: 1;

  /* Visibility Improvement */
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  /* Safari support */
  padding: 0.5em 1.5em;
  /* slightly wider padding */
  border-radius: 50px;
  /* pill shape or rounded rect */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Background Shapes Container */
.interview_bg_shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Ensure content stays above shapes */
#interview>*:not(.interview_bg_shapes) {
  position: relative;
  z-index: 1;
}

/* Individual shape style */
.bg-shape {
  position: absolute;
  opacity: 0.8;
  will-change: transform;
}

/* Floating animation keyframes */
@keyframes floatBg0 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(20px, -30px) rotate(8deg);
  }

  66% {
    transform: translate(-10px, 15px) rotate(-5deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes floatBg1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-25px, 35px) rotate(-10deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes floatBg2 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  50% {
    transform: translate(15px, 20px) scale(1.1) rotate(5deg);
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}