/* =============================================
🖼️ 背景・全体設定（html, body, .background-wrapper）
============================================= */
:root {
    --primary-start: #4169e1;
    --primary-end:   #ff69b4;
    --primary-dark-start: #2d499d;
    --primary-dark-end: #b2497d;
    --text-blue:    #4169e1;
  }

html {
  background-color: #000; /* 黒に固定 */
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.background-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url('assets/images/backgrounds/headerbackground.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

body.news-detail-page .background-wrapper {
  background-image: url('assets/images/backgrounds/newbackground.png');
}

.background-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/images/backgrounds/newbackground.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.news-detail-page .background-wrapper::after {
  background-image: url('assets/images/backgrounds/newbackground.png');
  opacity: 1;
}

body.bg-scrolled .background-wrapper::after {
  opacity: 1;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 8px;
    background: transparent;
}


.section-subtitle {
    margin: 0;
    font-size: 0.9em;
    color: #ccc;
    opacity: 0.8;
}

p {
    color: #ccc;
}

/* =============================================
🧭 ヘッダー・ナビゲーション・ドロップダウン（header, .nav-list, .menu-icon など）
============================================= */
header {
    background: #000;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0; left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 60px;
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-item { position: relative; }

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: flex;
    align-items: center;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 10001;
}

.menu-icon .bar {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.menu-icon .bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(65, 105, 225, 0.8), transparent);
    animation: slide 3s infinite;
}

@keyframes slide {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

.menu-icon .bar:nth-child(1)::before {
    animation-delay: 0s;
}

.menu-icon .bar:nth-child(2)::before {
    animation-delay: 0.2s;
}

.menu-icon .bar:nth-child(3)::before {
    animation-delay: 0.4s;
}

.menu-icon.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 6px);
}

.menu-icon.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-icon.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
}

.menu-icon .bar {
    transition: all 0.3s ease;
}

@media (hover: hover) {
  .menu-icon:hover {
    transform: scale(1.2);
    background: linear-gradient(45deg, rgba(65, 105, 225, 0.8), rgba(255, 105, 180, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

  .dropdown-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    color: #fff;
    box-shadow: none;
    border-radius: 0;
    padding: 80px 20px 20px;
    box-sizing: border-box;
    overflow-y: auto;
    z-index: -1;
    flex-direction: column;
    align-items: flex-end;
  }

  .dropdown-menu li {
    list-style: none;
    margin-bottom: 10px;
    width: 200px;
  }

  .dropdown-menu li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    border-radius: 5px;
  }

  .dropdown-menu li a:hover {
    background: linear-gradient(45deg, #4169e1, #ff69b4);
    color: #fff;
  }

  .dropdown-menu.visible {
    display: flex;
  }

  .dropdown-menu li a:visited,
  .dropdown-menu li a:active {
    color: #fff;
  }

.container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =============================================
🖼️ トップスライド・ロゴ表示（#top-image, .carousel-row, .centered-logo）
============================================= */
#top-image {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

.centered-logo {
  width: 40vw;
  max-width: 400px;
  height: auto;
  opacity: 0;
  animation: fadeZoomIn 1.2s ease-out 0.5s forwards;
}

.text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  pointer-events: none;
}

.centered-text {
  font-family: serif;
  font-size: 120px;
  font-weight: bold;
  color: #000;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.text-container h1 {
  font-family: serif;
  font-size: 120px;
  font-weight: normal;
  color: #000;
  text-align: left;
  margin: 0;
  line-height: 1.2;
  white-space: pre;
}

#animated-text.preload-text {
  visibility: hidden;
}

/* スライド行全体 */
.carousel-row {
  position: absolute;
  width: 100%;
  overflow: hidden;
  display: flex;
  z-index: 0;
  height: 220px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-row.visible {
  opacity: 1;
  pointer-events: none;
}

.carousel-row.top {
  top: 60px;
}
.carousel-row.bottom {
  bottom: 60px;
}
.carousel-row.back {
  z-index: -1;
  transform: scale(0.9) translateY(20px);
  opacity: 0.4;
  filter: blur(1px);
}

/* スライド画像トラック */
.carousel-track {
  display: flex;
  gap: 60px;
  will-change: transform;
}

/* 無限スライド用アニメーション */
.carousel-track.animate-left {
  animation: scroll-left 80s linear infinite;
}
.carousel-track.animate-right {
  animation: scroll-right 80s linear infinite;
}

/* スライド画像スタイル */
.carousel-track img {
  width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: staggerFadeIn 1s ease-out forwards;
}

/* アニメーション */
@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.85;
    transform: scale(1.5);
  }
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes staggerFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ロゴ周辺 */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.logo h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: bold;
  letter-spacing: 0.125rem;
  color: #ffffff;
  line-height: 1;
}

.subtitle {
  margin-left: 10px;
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  color: #ffffff;
  opacity: 0.8;
  line-height: 1;
}

/* =============================================
📱 ナビゲーション
============================================= */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #000080;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-subtitle {
    font-size: 0.8em;
    color: #000080;
    opacity: 0.8;
}

/* 非表示状態 */
.hidden {
  opacity: 0;
  pointer-events: none;
}

/* 表示状態（共通） */
.visible {
  opacity: 1;
  pointer-events: auto;
}

.animate { animation: fadeInZoom 2s ease-in-out;}

@keyframes fadeInZoom { from { opacity:0; transform:scale(0.8);} to{opacity:1;transform:scale(1);}}

.hidden { opacity:0; }
.visible { opacity:1; transition: opacity 1s ease-in-out; }

.slide-in {
    animation: slideIn 1s ease-in-out;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes backgroundAnimation {
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
  }

/* =============================================
🎯 PURPOSE・MISSION セクション
============================================= */
.image-with-text {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* テキストのオーバーレイ：位置を上にずらす */
.overlay-text {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;               /* 幅を最大限広げる */
  max-width: 90%;            /* モバイルでも見切れ防止 */
  text-align: center;
  color: #fff;
  padding: 10px 20px;
  pointer-events: none;
}

/* h3: キャッチフレーズ部分 */
.overlay-text h3 {
  font-size: 4rem !important; /* ← 元の4remから拡大 */
  margin: 0;
  font-family: 'Hina Mincho', serif;
  background: linear-gradient(45deg, #fff, #ddd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* h4: サブキャッチフレーズ部分 */
.overlay-text h4 {
  font-size: 3rem; /* ← 元の16remは大きすぎるため調整 */
  margin: 10px 0 0 0;
  opacity: 0.9;
}

.mission-text {
    top: 48%; /* お好みで調整（例：47〜52%程度） */
  }

  @media (min-width: 1024px) {
  #purpose .overlay-text {
    top: 40%; /* パーパスの見出しを少し上に配置 */
  }
  .mission-text {
    top: 40%; /* PC表示時は少し上に寄せる */
  }
}

.mission-text h3 {
  font-size: 3rem !important;
}

/* 共通セクション背景 */
#purpose, #mission {
    background-color: transparent; /* 背景色を透明に設定 */
    text-align: center;
    padding: 60px 20px;
    border-radius: 8px;
    box-shadow: none;
    position: relative;
    z-index: 1;
    isolation: isolate; /* セクション内の発光を閉じ込めて文字を見やすく */
}

/* セクション背景エフェクト（ふわっとした放射） */
#purpose::before, #mission::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(24, 42, 104, 0.45), transparent 65%);
    z-index: -1;
    filter: blur(42px);
    animation: subtlePulse 10s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* 大見出し（h2） */
#purpose h2, #mission h2 {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: bold;
    letter-spacing: 0.1em;
    background: linear-gradient(45deg, #4169e1, #c07ddf, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: backgroundAnimation 5s ease infinite;
    margin-bottom: 20px;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.45); /* 見出しのコントラストを補強 */
}

#purpose h3, #purpose h4,
#mission h3 {
  font-size: 2em;
  font-family: 'Hina Mincho', serif;
  background: linear-gradient(
    270deg,
    #4169e1,
    #00ff7f,
    #ff69b4,
    #ffff00,
    #ff0000
  );
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: backgroundAnimation 14s ease infinite;

  /* ☀️ 白光シャドウ（発光風） */
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.6),
    0 0 8px rgba(255, 255, 255, 0.4),
    0 0 12px rgba(255, 255, 255, 0.3);
}

/* 本文（p） */
#purpose p, #mission p {
    font-size: 1.2em;
    line-height: 2;
    color: #f5f8ff;
    max-width: 960px;
    margin: 0 auto;
    padding: 36px 44px;
    position: relative;
    z-index: 0;
    border-radius: 18px;
    background: rgba(8, 12, 32, 0.82);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 44px rgba(4, 8, 24, 0.55);
    overflow: hidden;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

#purpose p::before, #mission p::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.45), rgba(255, 105, 180, 0.35));
    opacity: 0.85;
    z-index: -1;
    transition: opacity 0.3s ease;
}

#purpose p:hover::before, #mission p:hover::before {
    opacity: 1;
}

.highlight {
    font-weight: bold;
    background-image: linear-gradient(90deg, #b2d5de 0 25%, #ddcfb3 25% 50%, #b3ddb4 50% 75%, #ddbab3 75%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: bottom;
}

@keyframes backgroundAnimation {
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

/* =============================================
🧍‍♂️ 社員紹介セクション（#employee-interviews）
============================================= */

/* グリッドレイアウト */
#employee-interviews.fade-in {
  opacity: 1;
  transform: none;
}

.employee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px; /* 🍀 間隔を広くする */
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* カード全体 */
.employee-card {
  position: relative;
  max-width: 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  cursor: pointer;
  border: 2px solid #000;
  background-color: #0d0d0d;
  backdrop-filter: blur(6px);
}


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

.image-wrapper {
  position: relative;
  height: 300px; /* 必要に応じて調整 */
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* overlay-text uses its own centering transform, so combine it with fade-in offset */
.overlay-text.fade-in {
  transform: translate(-50%, -50%) translateY(20px);
}

.overlay-text.fade-in.visible {
  transform: translate(-50%, -50%) translateY(0);
}

/* コメント部分 */
.role-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 2;
  white-space: nowrap;
}

.info-card {
  position: absolute;
  bottom: 0; /* 👈 画像の下に固定 */
  left: 0;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent); /* 下からのグラデ背景 */
  text-align: left;
}

.employee-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

/* テキストを画像上に重ねる */
.employee-info {
  position: absolute;
  bottom: 48px;
  left: 16px;
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  width: max-content;
}

.join-date {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  font-size: 0.75rem;
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.employee-name-overlay {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px 4px 0 0;
}

.employee-info .mbti-label {
  align-self: stretch;
  display: block;
  text-align: center;
  padding: 8px 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 0 0 4px 4px;
}

/* 詳細リンクボタン */
.detail-link {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 0.85rem;
  background: linear-gradient(45deg, #4169e1, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-flex;
  align-items: center;
}
.employee-card:hover .detail-link {
  text-decoration: underline;
}

.detail-link i {
  margin-left: 4px;
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: rotate(180deg);
  transition: transform 0.4s ease;
}

.employee-card:hover .detail-link i {
  transform: rotate(360deg) translate(-3px, 3px);
}

/* 詳細ページの文章 */
.employee-detail p {
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: 'Hina Mincho', serif;
  color: #fff;
  margin-bottom: 1em;
}

/* 個別画像背景（使用時） */
.image-bg {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#load-more-btn {
  display: block;
  margin: 30px auto;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#load-more-btn:hover {
  opacity: 0.85;
}

/* フッター行 (MBTIと詳細リンク) */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

/* MBTI ラベルの共通スタイル */
.mbti-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  color: #fff;
}

/* カラー分類 */
.mbti-analyst { background: #8e44ad; }   /* 分析家（紫） */
.mbti-diplomat { background: #27ae60; }  /* 外交官（緑） */
.mbti-sentinel { background: #41b6e6; }  /* 実務家（青） */
.mbti-explorer { background: #e67e22; }  /* 探検家（橙） */

.image-bg.employee1 {
  background-image: url('assets/images/interview/employee1.jpg');
}
.image-bg.employee2 {
  background-image: url('assets/images/interview/employee2.jpg');
}
.image-bg.employee3 {
  background-image: url('assets/images/interview/employee3.jpg');
}
.image-bg.employee4 {
  background-image: url('assets/images/interview/employee4.jpg');
}

/* =============================================
✨ セクション共通ヒーローブロック
============================================= */
.section-hero-intro {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(32px, 6vw, 56px);
  padding: 0 20px;
}

.section-hero-card {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(16px, 5vw, 52px);
  width: min(100%, 880px);
  padding: clamp(18px, 4vw, 30px) clamp(36px, 10vw, 76px);
  border-radius: 26px;
  background: rgba(9, 6, 24, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(8, 4, 24, 0.24);
}

.section-hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255, 238, 226, 0.6), rgba(213, 198, 255, 0.58));
  opacity: 0.85;
  z-index: -1;
  filter: blur(16px);
}

.section-hero-card::after {
  content: "";
  flex: 0 0 auto;
  height: 2px;
  width: clamp(160px, 30vw, 280px);
  margin-left: 0;
  margin-top: clamp(10px, 2vw, 18px);
  background: linear-gradient(90deg, rgba(255, 214, 189, 0.92), rgba(160, 122, 232, 0.95));
  border-radius: 999px;
  align-self: flex-start;
}

.section-hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.32rem;
  text-transform: uppercase;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  flex: 0 1 auto;
  text-align: left;
}

.section-hero-title {
  font-family: 'Hina Mincho', serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  margin: 0;
  color: #ffffff;
  flex: 0 1 auto;
  text-align: left;
  font-weight: 400;
}

@media (max-width: 768px) {
  .section-hero-intro {
    padding: 0 12px;
  }

  .section-hero-card {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(12px, 4vw, 20px);
    padding: clamp(18px, 6vw, 28px) clamp(24px, 8vw, 48px);
  }

  .section-hero-card::after {
    width: clamp(120px, 40vw, 220px);
  }

  .section-hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.24rem;
  }

  .section-hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
}

@media (min-width: 769px) {
  .section-hero-card {
    flex-wrap: wrap;
  }

  .section-hero-card::after {
    flex: 0 0 100%;
    margin: clamp(10px, 2vw, 18px) 0 0;
  }
}

/* =============================================
🏢 事業紹介セクション（#business）
============================================= */
#business {
    background-color: transparent;
    padding: clamp(40px, 8vw, 96px) 0 clamp(32px, 6vw, 80px);
    border-radius: 0;
    box-shadow: none;
}


.business-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 4vw, 36px);
    width: min(1160px, calc(100% - clamp(32px, 8vw, 120px)));
    margin: 0 auto;
}

.business-item {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 35px 70px rgba(11, 6, 30, 0.25);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    isolation: isolate;
}

.business-item::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.55), rgba(255, 105, 180, 0.55));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.business-item:hover::before {
    opacity: 1;
}

.business-image {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    display: block;
    border-radius: 22px 22px 0 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}


.business-description {
    padding: clamp(20px, 4vw, 32px);
    color: #0f1c3f;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 18px);
    flex: 1;
}

.business-description h3 {
    color: #0c1b42;
    margin: 0;
    font-family: 'Hina Mincho', serif;
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    letter-spacing: 0.02em;
}

.business-description p {
    color: rgba(9, 16, 38, 0.78);
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.m-buttons-img-txt-08-arrow-wrap {
    margin-top: auto;
    padding: 12px 24px;
    background: linear-gradient(120deg, rgba(65, 105, 225, 0.95), rgba(255, 105, 180, 0.9));
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    border: none;
    box-shadow: 0 10px 20px rgba(65, 105, 225, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    align-self: flex-start;
}

.m-buttons-img-txt-08-arrow-wrap .icon {
    font-size: 0.95em;
    color: #fff;
}

.m-buttons-img-txt-08-arrow-wrap:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(65, 105, 225, 0.35);
    filter: brightness(1.05);
}

@media (max-width: 640px) {
    .business-container {
        width: calc(100% - 32px);
    }

    .business-item {
        border-radius: 22px;
    }

    .business-image {
        border-radius: 18px 18px 0 0;
    }
}

/* =============================================
📰 ニュースセクション（#news）
============================================= */
#news {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.filter-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter-container label {
    margin-right: 10px;
    font-weight: bold;
    color: #4169e1;
}

#news-filter {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
    color: #333;
}

#news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#news-list li {
    background: linear-gradient(45deg, #4169e1, #ff69b4);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    transition: transform 0.3s;
    color: #fff;
}

#news-list li:hover {
    transform: translateY(-5px);
}

#news-list li span {
    display: block;
    font-size: 1.2em;
    color: #fff;
}

#news-list li a.news-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
}

#news-list li a.news-link span:first-child {
    font-weight: 600;
    min-width: 120px;
    text-align: left;
}

#news-list li a.news-link span:last-child {
    flex: 1;
    text-align: left;
}

#news-list li a.news-link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

/* =============================================
📰 ニュース詳細ページ
============================================= */

.news-detail-page {
    --news-detail-page-top-pad: clamp(104px, 14vw, 152px);
    --news-detail-page-side-pad: clamp(16px, 6vw, 64px);
    --news-detail-viewport-height: 100vh;
    min-height: calc(var(--news-detail-viewport-height) - var(--news-detail-page-top-pad));
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 6vw, 60px);
    padding: var(--news-detail-page-top-pad) var(--news-detail-page-side-pad) 0;
    box-sizing: border-box;
    background: none;
    background-color: transparent;
    color: #1a2238;
}

@supports (height: 100svh) {
    .news-detail-page {
        --news-detail-viewport-height: 100svh;
    }
}

@supports (height: 100dvh) {
    .news-detail-page {
        --news-detail-viewport-height: 100dvh;
    }
}

.news-detail-breadcrumb {
    width: min(1040px, 100%);
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
}

.news-detail-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(17, 27, 51, 0.12);
    background-color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: #1a2238;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-detail-back-link span[aria-hidden="true"] {
    font-size: 1rem;
    line-height: 1;
}

.news-detail-back-link:hover,
.news-detail-back-link:focus-visible {
    transform: translateX(-2px);
    border-color: rgba(17, 27, 51, 0.24);
    box-shadow: 0 12px 24px rgba(17, 27, 51, 0.12);
}

.news-detail-back-link:focus-visible {
    outline: 3px solid rgba(65, 105, 225, 0.35);
    outline-offset: 2px;
}

.news-detail-hero {
    position: relative;
    width: min(1040px, 100%);
    margin: 0 auto;
    border-radius: clamp(24px, 5vw, 32px);
    padding: clamp(32px, 6vw, 56px);
    box-sizing: border-box;
    overflow: hidden;
    background-color: #101b3a;
    box-shadow: 0 28px 64px rgba(11, 22, 51, 0.22);
    color: #ffffff;
}

.news-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(7, 12, 28, 0.55);
    pointer-events: none;
}

.news-detail-hero.is-job-draft-fes {
    background-image: url("../assets/images/news/job-draft-fes-hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-detail-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 4vw, 28px);
    max-width: 72ch;
}

.news-detail-meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.86);
}

.news-detail-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #fff;
}

.news-detail-meta time {
    font-variant-numeric: tabular-nums;
}

.news-detail-meta-separator {
    opacity: 0.6;
}

.news-detail-title {
    margin: 0;
    font-size: clamp(1.3rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    color: #ffffff;
}

.news-detail-lede {
    margin: 0;
    font-size: clamp(1.05rem, 2.8vw, 1.25rem);
    line-height: 1.8;
    color: rgba(243, 246, 255, 0.9);
}

.news-detail-experience-spotlight {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 4vw, 28px);
    align-items: stretch;
}

.news-detail-hero-inner--with-image {
    flex-direction: row;
    align-items: stretch;
    gap: clamp(24px, 4vw, 56px);
    max-width: none;
}

.news-detail-hero-copy {
    flex: 1 1 0;
    max-width: 640px;
}

.news-detail-hero-figure {
    flex: 0 0 clamp(220px, 32vw, 360px);
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(7, 12, 28, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-detail-hero-figure img {
    width: 100%;
    height: clamp(220px, 28vw, 320px);
    object-fit: cover;
    display: block;
}

.news-detail-hero-figure figcaption {
    padding: 0 18px 18px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 768px) {
    .news-detail-hero-inner--with-image {
        flex-direction: column;
    }

    .news-detail-hero-figure {
        width: 100%;
    }
}

.news-detail-experience-text {
    position: relative;
    padding: clamp(18px, 4vw, 24px);
    border-radius: clamp(14px, 3vw, 20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 248, 255, 0.72));
    border: 1px solid rgba(65, 105, 225, 0.18);
    box-shadow: 0 16px 32px rgba(17, 27, 51, 0.12);
}

.news-detail-experience-text p {
    margin: 0;
}

.news-detail-experience-figure {
    margin: 0;
    border-radius: clamp(16px, 3vw, 24px);
    overflow: hidden;
    box-shadow: 0 24px 46px rgba(11, 22, 51, 0.16);
    border: 1px solid rgba(17, 27, 51, 0.08);
    background: linear-gradient(145deg, rgba(14, 24, 54, 0.12), rgba(36, 10, 38, 0.08));
}

.news-detail-experience-figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 960px) {
    .news-detail-experience-spotlight {
        flex-direction: row;
        gap: clamp(24px, 3vw, 48px);
        align-items: stretch;
    }

    .news-detail-experience-text {
        flex: 1 1 auto;
    }

    .news-detail-experience-figure {
        flex: 0 0 clamp(260px, 30vw, 360px);
    }
}

.news-detail-main {
    flex: 1;
    width: min(960px, 100%);
    margin: 0 auto;
}

.news-detail-page .site-footer {
    margin-left: calc(-1 * clamp(16px, 6vw, 64px));
    margin-right: calc(-1 * clamp(16px, 6vw, 64px));
}

.news-detail-page > .site-footer {
    margin-top: auto;
}

.news-detail-article {
    padding: clamp(32px, 6vw, 52px);
    border-radius: clamp(24px, 5vw, 32px);
    box-sizing: border-box;
    background-color: #ffffff;
    box-shadow: 0 22px 52px rgba(17, 27, 51, 0.12);
    color: #111b33;
    line-height: 1.85;
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 32px);
    border: 1px solid rgba(17, 27, 51, 0.06);
}

.news-detail-article section {
    position: relative;
    margin: 0;
    padding: clamp(24px, 4vw, 32px);
    padding-left: clamp(34px, 5vw, 44px);
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 3vw, 18px);
    border-radius: clamp(18px, 4vw, 24px);
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.08) 0%, rgba(255, 105, 180, 0.08) 100%);
    border: 1px solid rgba(65, 105, 225, 0.14);
    box-shadow: 0 18px 34px rgba(17, 27, 51, 0.08);
    overflow: hidden;
}

.news-detail-article section::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -24%;
    width: clamp(140px, 32vw, 220px);
    height: clamp(140px, 32vw, 220px);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.7;
    pointer-events: none;
}

.news-detail-article section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, rgba(65, 105, 225, 0.75), rgba(255, 105, 180, 0.6));
    opacity: 0.8;
}

.news-detail-article section + section {
    margin-top: clamp(24px, 4vw, 32px);
}

.news-detail-article h2 {
    position: relative;
    margin: 0;
    padding-left: clamp(8px, 2vw, 16px);
    font-size: clamp(1.45rem, 3.4vw, 2rem);
    font-weight: 700;
    color: #122147;
    letter-spacing: 0.03em;
    z-index: 1;
}

.news-detail-article h2::after {
    content: "";
    position: absolute;
    left: clamp(8px, 2vw, 16px);
    bottom: -10px;
    width: clamp(60px, 20vw, 120px);
    height: 3px;
    background: linear-gradient(90deg, rgba(65, 105, 225, 0.8), rgba(255, 105, 180, 0.8));
    border-radius: 999px;
}

.news-detail-article p {
    position: relative;
    margin: 0;
    color: #1f2a45;
    z-index: 1;
}

.news-detail-article section p:first-of-type {
    font-weight: 500;
    font-size: clamp(1.02rem, 2.4vw, 1.18rem);
}

.news-detail-article ul,
.news-detail-article ol {
    position: relative;
    padding: clamp(16px, 3vw, 24px) clamp(20px, 4vw, 28px);
    margin: 0;
    display: grid;
    gap: clamp(8px, 2vw, 12px);
    background: rgba(255, 255, 255, 0.4);
    border-radius: clamp(14px, 3vw, 18px);
    border: 1px solid rgba(17, 27, 51, 0.08);
    backdrop-filter: blur(6px);
    z-index: 1;
    list-style-position: inside;
}

.news-detail-article li {
    margin: 0;
    line-height: 1.8;
    font-weight: 500;
    color: #10203f;
}

.news-detail-article li::marker {
    color: #4169e1;
}

.news-detail-photo {
    margin: 2.5rem 0;
}

@media (max-width: 720px) {
    .news-detail-article section {
        padding: clamp(20px, 6vw, 28px);
        padding-left: clamp(28px, 8vw, 34px);
    }

    .news-detail-article h2::after {
        bottom: -6px;
    }

    .news-detail-article ul,
    .news-detail-article ol {
        padding: clamp(12px, 4vw, 18px) clamp(16px, 6vw, 24px);
    }
}

.news-detail-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* =============================================
🔗 LINK HUB セクション
============================================= */

.link-hub {
  position: relative;
  margin: clamp(56px, 7vw, 96px) 0 clamp(72px, 9vw, 110px);
  padding: clamp(48px, 6vw, 80px) clamp(28px, 7vw, 86px);
  width: 100%;
  max-width: min(1320px, 100vw);
  margin-inline: auto;
  box-sizing: border-box;
  border-radius: 36px;
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.42) 0%,
      rgba(240, 245, 255, 0.28) 32%,
      rgba(155, 183, 255, 0.24) 67%,
      rgba(255, 194, 236, 0.26) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 28px 80px rgba(9, 16, 48, 0.28);
  backdrop-filter: blur(28px);
  overflow: hidden;
  isolation: isolate;
}

.link-hub::before,
.link-hub::after {
  content: "";
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.32;
  pointer-events: none;
  mix-blend-mode: screen;
}

.link-hub::before {
  background: radial-gradient(circle at 18% 26%, rgba(255, 189, 241, 0.68), transparent 68%);
  transform: translate(-18%, -12%);
}

.link-hub::after {
  background: radial-gradient(circle at 78% 74%, rgba(152, 195, 255, 0.6), transparent 62%);
  transform: translate(14%, 8%);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0;
  width: 100%;
  box-sizing: border-box;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.link-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-template-rows: auto minmax(0, 1fr);
  column-gap: clamp(16px, 1.8vw, 32px);
  row-gap: clamp(16px, 1.4vw, 26px);
  align-items: start;
  padding: clamp(22px, 2.2vw, 34px) clamp(22px, 2.2vw, 34px) clamp(26px, 2.6vw, 38px);
  border-radius: 0;
  background: linear-gradient(164deg, rgba(255, 255, 255, 0.98), rgba(224, 234, 255, 0.86));
  color: #0d1c3d;
  text-decoration: none;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  min-height: 0;
}

.link-card:hover {
  box-shadow: 0 28px 68px rgba(10, 12, 40, 0.24);
  border-color: rgba(65, 105, 225, 0.4);
}

.link-card span {
  position: relative;
  z-index: 1;
}

.link-card-eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.link-card-title {
  margin: 12px 0 8px;
  font-size: clamp(1.35rem, 0.9vw + 1rem, 1.7rem);
  font-weight: 700;
  line-height: 1.3;
}

.link-card-description {
  margin: 0;
  font-size: clamp(0.85rem, 0.3vw + 0.8rem, 0.98rem);
  color: rgba(13, 28, 61, 0.75);
  line-height: 1.5;
}


.link-card-media {
  position: relative;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  justify-self: end;
  width: min(100%, clamp(160px, 18vw, 280px));
  aspect-ratio: 1 / 1;
  min-height: clamp(130px, 14vw, 220px);
  border-radius: clamp(16px, 1.8vw, 24px);
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(13, 28, 61, 0.24);
}

.link-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link-card-number {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark-start);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 22px rgba(10, 12, 40, 0.16);
}

.link-card-content {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: clamp(6px, 0.6vw, 12px);
  padding-right: clamp(6px, 0.6vw, 12px);
  min-height: 80px;
}

.link-card-footer {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.link-card-action {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark-start);
  transition: color 0.3s ease;
}

.link-card-arrow {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.link-card:hover .link-card-action {
  color: var(--primary-end);
}

.link-card:hover .link-card-arrow {
  transform: translateX(6px);
}

/* =============================================
🦶 フッター（.site-footer）
============================================= */
.site-footer {
  position: relative;
  margin-top: clamp(56px, 8vw, 120px);
  padding: clamp(32px, 6vw, 56px) clamp(20px, 6vw, 48px);
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 55%),
              radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent 60%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 64px);
  flex-wrap: wrap;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 3vw, 24px);
  min-width: min(240px, 100%);
}

.site-footer__brand {
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 2.5vw, 20px);
}

.site-footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2vw, 18px) clamp(14px, 3vw, 24px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(18, 24, 54, 0.35);
}

.site-footer__logo {
  width: clamp(140px, 20vw, 220px);
  height: auto;
  display: block;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 6px rgba(18, 24, 54, 0.45);
}

.site-footer__column-title {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(8px, 2vw, 12px);
}

.site-footer__list a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(18, 24, 54, 0.45);
}

@media (max-width: 1024px) {
  .link-hub {
    margin: clamp(48px, 8vw, 80px) auto clamp(60px, 10vw, 96px);
    padding: clamp(36px, 6vw, 64px) clamp(18px, 5vw, 48px);
  }

  .site-footer__inner {
    justify-content: flex-start;
    gap: clamp(24px, 7vw, 48px);
  }
}

.site-footer__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(65, 105, 225, 0.8), rgba(255, 105, 180, 0.8));
  transition: width 0.3s ease;
}

.site-footer__list a:hover::after,
.site-footer__list a:focus-visible::after {
  width: 100%;
}