/* 医療用ラベル事例詳細ページ専用スタイル */

/* ===== パンくずリスト ===== */
/* 使用箇所: .breadcrumb-container セクション */
.breadcrumb-container {
    background-color: var(--color-light);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .breadcrumb--dark {
    display: flex;
    justify-content: flex-start;
    margin: 0;
    list-style: none;
    padding: 0;
  }
  
  .breadcrumb--dark .breadcrumb__item {
    color: var(--color-secondary);
    padding: 0 1.5rem 0 0;
    position: relative;
    font-size: var(--font-sm);
  }
  
  .breadcrumb--dark .breadcrumb__item:first-child {
    padding-left: 0;
  }
  
  .breadcrumb--dark .breadcrumb__item:not(:last-child)::after {
    content: '›';
    position: absolute;
    right: 0.5rem;
    color: var(--color-secondary);
    font-weight: normal;
  }
  
  .breadcrumb--dark .breadcrumb__item a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .breadcrumb--dark .breadcrumb__item a:hover {
    text-decoration: underline;
    opacity: 0.8;
  }
  
  .breadcrumb--dark .breadcrumb__item[aria-current="page"] {
    color: var(--color-black);
    font-weight: 500;
  }
  
  /* ===== 製品タイトルセクション ===== */
  /* 使用箇所: .product-title-section */
  .product-title-section {
    background-color: var(--color-white);
    padding: var(--space-lg) 0;
    padding-top: calc(var(--space-lg) + 70px);
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .product-info {
    text-align: center;
  }
  
  .product-info__title {
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--space-xs);
  }
  
  .product-info__subtitle {
    font-size: var(--font-xl);
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
  }
  
  /* ===== 製品ギャラリー ===== */
  /* 使用箇所: .case-detail__visual セクション */
  .case-detail__visual {
    padding: var(--space-lg) 0 var(--space-xl);
    background-color: var(--color-white);
  }
  
  .product-gallery {
    display: flex;
    flex-direction: row;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
  }
  
  .product-gallery__main {
    flex: 1 1 65%;
    overflow: hidden;
    padding: var(--space-md);
    background-color: var(--color-white);
  }
  
  .product-gallery__main img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: opacity 0.3s ease;
  }
  
  .product-gallery__thumbs {
    flex: 0 1 30%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, auto);
    gap: var(--space-sm);
    max-height: 500px;
    overflow-y: auto;
  }
  
  .product-gallery__thumb {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1;
  }
  
  .product-gallery__thumb.active {
    border-color: var(--color-primary);
  }
  
  .product-gallery__thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* ===== 事例セクション共通 ===== */
  /* 使用箇所: 複数の .case-detail__section */
  .case-detail__section {
    padding: var(--space-2xl) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .case-detail__section:nth-child(odd) {
    background-color: var(--color-light);
  }
  
  .case-detail__section:nth-child(even) {
    background-color: var(--color-white);
  }
  
  .case-section {
    max-width: 1000px;
    margin: 0 auto;
  }
  /* FAQセクションのみ横幅を広くする */
.case-detail__section .case-section:has(.faq-container) {
    max-width: 1500px;
  }
  
  .case-section__title {
    font-size: var(--font-2xl);
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: var(--space-sm);
  }
  
  .case-section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-accent);
  }
  
  .case-section__content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    align-items: flex-start;
  }
  
  .case-section__text {
    flex: 1 1 500px;
  }
  
  /* ===== 製品概要特徴バッジ ===== */
  /* 使用箇所: 製品概要セクション内の .product-overview__features */
  .product-overview__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
  }
  
  .feature-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: var(--font-sm);
    font-weight: 500;
  }
  
  /* ===== 医療用仕様テーブル ===== */
  /* 使用箇所: 主要仕様セクション */
  .medical-specs-table {
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
  }
  
  .specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
  }
  
  .specs-table th, 
  .specs-table td {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid #eaeaea;
    text-align: left;
    vertical-align: top;
  }
  
  .specs-table th {
    font-weight: 600;
    color: var(--color-primary);
    background-color: #f8f9fa;
    width: 30%;
  }
  
  .specs-table tr:last-child th,
  .specs-table tr:last-child td {
    border-bottom: none;
  }
  
  /* ===== オプション選択グリッド ===== */
  /* 使用箇所: 選べるオプションセクション */
  .options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  
  .option-category {
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .option-category h3 {
    font-size: var(--font-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    font-weight: 600;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: var(--space-xs);
  }
  
  .option-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .option-list li {
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: var(--space-md);
    line-height: 1.6;
  }
  
  .option-list li::before {
    content: '•';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
  }
  
  /* ===== 運用ガイドグリッド ===== */
  /* 使用箇所: 運用ガイドセクション */
  .guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .guide-do,
  .guide-dont {
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }
  
  .guide-do {
    border-left: 4px solid var(--color-success);
  }
  
  .guide-dont {
    border-left: 4px solid var(--color-error);
  }
  
  .guide-do h3,
  .guide-dont h3 {
    font-size: var(--font-lg);
    margin-bottom: var(--space-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
  }
  
  .guide-icon {
    font-weight: bold;
    font-size: var(--font-xl);
  }
  
  .guide-icon--do {
    color: var(--color-success);
  }
  
  .guide-icon--dont {
    color: var(--color-error);
  }
  
  .guide-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .guide-list li {
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: var(--space-md);
    line-height: 1.6;
  }
  
  .guide-do .guide-list li::before {
    content: '✓';
    color: var(--color-success);
    position: absolute;
    left: 0;
    font-weight: bold;
  }
  
  .guide-dont .guide-list li::before {
    content: '✗';
    color: var(--color-error);
    position: absolute;
    left: 0;
    font-weight: bold;
  }
  
  /* ===== FAQ ===== */
  /* 使用箇所: よくある質問セクション */
  .faq-container {
    max-width: 1500px!important;
    margin: 0 auto;
  }
  
  .faq-item {
    background-color: var(--color-white);
    margin-bottom: var(--space-md);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 100%;
  }
  
  .faq-question {
    padding: var(--space-lg) var(--space-3xl);
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    list-style: none;
    position: relative;
    transition: background-color 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
  }
  
  .faq-question:hover {
    background-color: #e9ecef;
  }
  
  .faq-question::after {
    content: '+';
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--font-xl);
    color: var(--color-accent);
    transition: transform 0.3s ease;
  }
  
  .faq-item[open] .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
  }
  
  .faq-answer {
    padding: var(--space-lg);
    background-color: var(--color-white);
    min-height: 80px;
  }
  
  .faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: var(--color-black);
  }
  
  /* ===== 発注情報グリッド ===== */
  /* 使用箇所: 発注情報セクション */
  .order-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
  }
  
  .order-info-item {
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .order-info-item h3 {
    font-size: var(--font-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    font-weight: 600;
  }
  
  .order-info-item p {
    font-size: var(--font-md);
    color: var(--color-black);
    font-weight: 500;
    margin: 0;
  }
  
  /* ===== 製品追加画像セクション ===== */
  /* 使用箇所: .product-additional-images セクション */
  .product-additional-images {
    padding: var(--space-2xl) 0;
    background-color: var(--color-white) !important;
  }
  
  .product-images-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .product-images-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .product-image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
  }
  
  .product-image-wrapper {
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: var(--color-white);
    padding: var(--space-sm);
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .product-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .product-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
  }
  
  .product-image-comment {
    text-align: center;
    font-size: var(--font-md);
    line-height: 1.6;
    color: var(--color-black);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .product-image-comment p {
    margin: 0 0 var(--space-xs) 0;
  }
  
  .product-image-comment p:last-child {
    margin-bottom: 0;
  }
  
  /* ===== 記事執筆者セクション ===== */
  /* 使用箇所: .article-author-section */
  .article-author-section {
    padding: var(--space-2xl) 0;
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .author-profile {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-white);
    border-radius: 12px;
    padding: var(--space-xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    position: relative;
  }
  
  .author-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 12px 12px 0 0;
  }
  
  .author-profile__image {
    flex-shrink: 0;
  }
  
  .author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
    transition: transform 0.3s ease;
  }
  
  .author-avatar:hover {
    transform: scale(1.05);
  }
  
  .author-profile__content {
    flex: 1;
  }
  
  .author-profile__header {
    margin-bottom: var(--space-md);
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: var(--space-sm);
  }
  
  .author-name {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 var(--space-xs) 0;
    line-height: 1.3;
  }
  
  .author-title {
    font-size: var(--font-sm);
    color: var(--color-secondary);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  
  .author-profile__description {
    line-height: 1.7;
    color: var(--color-black);
  }
  
  .author-profile__description p {
    margin-bottom: var(--space-sm);
    font-size: var(--font-md);
  }
  
  .author-profile__description p:last-child {
    margin-bottom: 0;
  }
  
  .author-contact {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid #f0f0f0;
    font-weight: 500;
  }
  
  .author-contact-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .author-contact-link:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
  }
  
  /* ===== 関連事例セクション ===== */
  /* 使用箇所: .related-cases セクション */
  .related-cases {
    padding: var(--space-2xl) 0;
    background-color: var(--color-white);
  }
  
  .related-cases__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }
  
  .related-case {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .related-case:hover {
    transform: translateY(-10px);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .related-case__image {
    height: 200px;
    overflow: hidden;
    position: relative;
  }
  
  .related-case__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .related-case:hover .related-case__image img {
    transform: scale(1.05);
  }
  
  .related-case__content {
    padding: var(--space-md);
  }
  
  .related-case__title {
    font-size: var(--font-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
    font-weight: 600;
    line-height: 1.4;
  }
  
  .related-case__subtitle {
    font-size: var(--font-sm);
    color: var(--color-secondary);
    margin: 0;
    line-height: 1.4;
  }
  
  .related-cases__more {
    text-align: center;
    margin-top: var(--space-xl);
  }
  
  /* ===== CTA ===== */
  /* 使用箇所: .cta-section */
  .cta-section {
    padding: var(--space-2xl) 0;
    background-color: var(--color-light);
    color: var(--color-black);
    position: relative;
  }
  
  .cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-xl);
    border-radius: 8px;
    background-color: var(--color-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .cta-box__title {
    font-size: var(--font-3xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.3;
    color: var(--color-primary);
  }
  
  .cta-box__text {
    font-size: var(--font-lg);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    color: var(--color-black);
  }
  
  .cta-box__buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
  }
  
  .cta-box .btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  
  .cta-box .btn--primary:hover {
    background-color: #0a2b50;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(15, 59, 111, 0.2);
  }
  
  /* ===== レスポンシブ対応 ===== */
  @media (max-width: 1200px) {
    .related-cases__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .product-gallery {
      flex-direction: column;
    }
    
    .product-gallery__thumbs {
      grid-template-columns: repeat(5, 1fr);
      grid-template-rows: auto;
      gap: var(--space-sm);
      max-height: none;
      overflow-x: auto;
      padding-bottom: var(--space-sm);
      margin-top: var(--space-md);
    }
    
    .product-info__title {
      font-size: var(--font-2xl);
    }
    
    .case-section__title {
      font-size: var(--font-xl);
    }
    
    .cta-box__title {
      font-size: var(--font-2xl);
    }
  
    .related-cases__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-md);
    }
    
    .related-case__image {
      height: 180px;
    }
  
    .options-grid {
      grid-template-columns: 1fr;
      gap: var(--space-lg);
    }
  
    .guide-grid {
      grid-template-columns: 1fr;
      gap: var(--space-lg);
    }
  
    .order-info-grid {
      grid-template-columns: 1fr;
      gap: var(--space-lg);
    }
  }
  
  @media (max-width: 768px) {
    .specs-table th {
      width: 35%;
      font-size: var(--font-sm);
    }
    
    .specs-table td {
      font-size: var(--font-sm);
    }
    
    .case-section__content {
      flex-direction: column;
    }
    
    .cta-box {
      padding: var(--space-lg);
    }
    
    .cta-box__buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .cta-box__buttons .btn {
      width: 100%;
      max-width: 300px;
    }
  
    .medical-specs-table {
      padding: var(--space-md);
    }
  
    .product-images-container {
      width: 90%;
      gap: var(--space-xl);
    }
    
    .product-image-wrapper img {
      max-height: 300px;
    }
    
    .product-image-comment {
      font-size: var(--font-sm);
    }
  
    .author-profile {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: var(--space-lg);
      gap: var(--space-md);
    }
    
    .author-avatar {
      width: 100px;
      height: 100px;
    }
    
    .author-name {
      font-size: var(--font-lg);
    }
    
    .author-profile__description p {
      font-size: var(--font-sm);
    }
  
    .faq-question {
      padding: var(--space-md);
      font-size: var(--font-sm);
    }
  
    .faq-answer {
      padding: var(--space-md);
    }
  
    .faq-answer p {
      font-size: var(--font-sm);
    }
  
    /* モバイル対応: 関連製品セクション */
    .related-cases__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-md);
      max-width: 700px;
      margin: var(--space-xl) auto 0;
    }
    
    .related-case {
      max-width: 280px;
      margin: 0 auto;
    }
    
    .related-case__image {
      height: 160px;
    }
    
    .related-case__content {
      padding: var(--space-sm);
    }
    
    .related-case__title {
      font-size: var(--font-md);
    }
    
    .related-case__subtitle {
      font-size: var(--font-xs);
    }
  }
  
  @media (max-width: 576px) {
    .product-info__title {
      font-size: var(--font-xl);
    }
    
    .product-info__subtitle {
      font-size: var(--font-lg);
    }
    
    .product-gallery__thumbs {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .specs-table th, 
    .specs-table td {
      padding: var(--space-xs);
      font-size: var(--font-xs);
    }
    
    .specs-table th {
      width: 40%;
    }
    
    .case-section__title {
      font-size: var(--font-lg);
    }
    
    .cta-box__title {
      font-size: var(--font-xl);
    }
    
    .cta-box__text {
      font-size: var(--font-md);
    }
  
    .medical-specs-table {
      padding: var(--space-sm);
    }
  
    .product-images-container {
      width: 95%;
    }
    
    .product-image-wrapper {
      padding: var(--space-xs);
    }
    
    .product-image-wrapper img {
      max-height: 250px;
    }
  
    .author-profile {
      margin: 0 var(--space-md);
      padding: var(--space-md);
    }
    
    .author-avatar {
      width: 80px;
      height: 80px;
    }
    
    .author-name {
      font-size: var(--font-md);
    }
    
    .author-title {
      font-size: var(--font-xs);
    }
    
    .author-profile__description p {
      font-size: var(--font-xs);
    }
  
    .option-category {
      padding: var(--space-md);
    }
  
    .option-category h3 {
      font-size: var(--font-md);
    }
  
    .option-list li {
      font-size: var(--font-sm);
    }
  
    .guide-do,
    .guide-dont {
      padding: var(--space-md);
    }
  
    .guide-do h3,
    .guide-dont h3 {
      font-size: var(--font-md);
    }
  
    .guide-list li {
      font-size: var(--font-sm);
    }
  
    .order-info-item {
      padding: var(--space-md);
    }
  
    .order-info-item h3 {
      font-size: var(--font-md);
    }
  
    .order-info-item p {
      font-size: var(--font-sm);
    }
  
    /* スマートフォン対応: 関連製品セクション */
    .related-cases__grid {
      grid-template-columns: 1fr;
      gap: var(--space-md);
      max-width: 400px;
      margin: var(--space-xl) auto 0;
    }
    
    .related-case {
      max-width: 320px;
      margin: 0 auto;
    }
    
    .related-case__image {
      height: 180px;
    }
    
    .related-case__content {
      padding: var(--space-md);
    }
    
    .related-case__title {
      font-size: var(--font-md);
      text-align: center;
    }
    
    .related-case__subtitle {
      font-size: var(--font-sm);
      text-align: center;
    }
  }
  
  /* ===== ユーティリティクラス ===== */
  .link {
    text-decoration: underline;
    color: var(--color-primary);
  }
  
  .link:hover {
    opacity: 0.8;
  }

  .last-updated-wrapper {
    padding: var(--space-sm) 0;
    background-color: var(--color-white);
  }
  
  .last-updated {
    text-align: right;
    font-size: var(--font-xs);
    color: var(--color-secondary);
    margin: 0;
  }