.service-guides-page-title {
    margin-bottom: 2rem;
  }
  
  .service-guides-page-title-text {
    width: fit-content;
    font-weight: 600;
    color: var(--ink-strong);
    font-size: 32px;
  }
  
  .service-guides-intro {
    margin-bottom: 72px;
  }
  
  .service-guides-body-text {
    font-weight: 400;
    color: var(--color-text);
    font-size: 16px;
    line-height: 24px;
  }
  
  .service-guides-section-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
  }
  
  .service-guides-section-title {
    padding: 0px 0px 11px;
    position: relative;
  }
  
  .service-guides-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-grad);
  }
  
  .service-guides-section-title-text {
    font-weight: 600;
    color: var(--ink-strong);
    font-size: 24px;
    line-height: 27px;
    margin-bottom: 0;
  }
  
  .service-guides-section-content {
    margin-bottom: 60px;
  }
  
  .service-guides-table-wrapper {
    overflow-x: auto;
  }
  
  .service-guides-table {
    display: inline-flex;
    flex-direction: column;
  }
  
  .service-guides-table-header {
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
  }
  
  .service-guides-table-body {
    display: flex;
    flex-direction: column;
    max-height: calc(var(--pricing-table-row-height) * 8);
    overflow-y: scroll;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.4) transparent;
  }
  
  .service-guides-table-body::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 8px;
  }
  
  .service-guides-table-body::-webkit-scrollbar-track {
    background: transparent;
    margin: 2px 0;
  }
  
  .service-guides-table-body::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: padding-box;
  }
  
  .service-guides-table-body::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  .service-guides-table-row {
    display: flex;
  }
  
  .service-guides-table-header-cell {
    display: flex;
    width: 210px;
    align-items: center;
    justify-content: center;
    padding: 8.5px 13px;
    background-color: var(--bg-light);
    border: 1px solid;
    border-color: var(--color-border);
  }
  
  .service-guides-table-header-text {
    font-weight: 700;
    color: var(--color-text);
    font-size: 16px;
  }
  
  .service-guides-table-data-cell {
    display: flex;
    flex-direction: column;
    width: 210px;
    align-items: center;
    justify-content: center;
    padding: 8.5px 13px;
    border: 1px solid;
    border-color: var(--color-border);
  }
  
  .service-guides-table-cell-text {
    position: relative;
    width: 100%;
    margin-top: -1.00px;
    font-weight: 400;
    color: var(--color-text);
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
  }
  
  .service-guides-table-data-cell-wide {
    min-width: 200px;
    padding: 8.5px 13px;
    border: 1px solid;
    border-color: var(--color-border);
    flex: 1;
  }
  
  .service-guides-subsection-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 0px 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    margin-top: 24px;
  }
  
  .service-guides-subsection-title-text {
    font-weight: 600;
    color: var(--ink-strong);
    font-size: 20px;
    line-height: 22.5px;
    display: flex;
    align-items: center;
  }
  
  .service-guides-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 4px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .service-guides-list-item {
    position: relative;
    align-self: stretch;
    width: 100%;
    min-height: 24px;
  }
  
  .service-guides-list-item-text {
    position: relative;
    font-weight: 400;
    color: var(--color-text);
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    display: flex;
    align-items: center;
    padding-left: 20px;
  }
  
  .service-guides-list-item-text::before {
    content: "•";
    position: absolute;
    left: 0;
  }
  
  .service-guides-button-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    margin-top: 16px;
  }
  
  .service-guides-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 17px;
    position: relative;
    flex: 0 0 auto;
    background: var(--brand-grad);
    border-radius: 4px;
    cursor: pointer;
  }
  
  .service-guides-button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    color: var(--brand-contrast);
    font-weight: 400;
    font-size: 16px;
    text-align: center;
  }
  
  .service-guides-button-text .arrow {
    width: 24px;
    height: 24px;
    margin-left: 4px;
    stroke: currentColor;
    transition: transform 0.2s ease;
    inline-size: 1.4em;
    block-size: 1.4em;
  }
  
  .service-guides-button-primary:hover .arrow {
    transform: translateX(3px);
  }
  
  .service-guides-toc {
    background-color: var(--bg-light);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 48px;
    width: 100%;
    max-width: 600px;
  }
  
  .service-guides-toc-title {
    font-weight: 600;
    color: var(--ink-strong);
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .service-guides-toc-list {
    display: block;
  }
  
  .service-guides-toc-link {
    font-weight: 400;
    color: #3298dc;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    width: fit-content;
    margin-bottom: 8px;
  }
  
  .service-guides-toc-link:hover {
    text-decoration: underline;
  }

  .service-guides-toc-link--sub {
    padding-left: 24px;
    font-size: 15px;
    margin-bottom: 6px;
    position: relative;
  }

  .service-guides-toc-link--sub::before {
    content: "└ ";
    position: absolute;
    left: 8px;
    color: #999;
  }
  
  .service-guides-faq-item {
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .service-guides-faq-question {
    font-weight: 600;
    color: var(--color-text);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  
  .service-guides-faq-answer {
    font-weight: 400;
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 24px;
  }
  
  .service-guides-media-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
    background-color: transparent;
    width: 100%;
  }
  
  .service-guides-media-item:last-child {
    border-bottom: none;
  }
  
  .service-guides-media-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 4px;
  }
  
  .service-guides-media-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
  
  .service-guides-media-title {
    font-weight: 600;
    color: var(--ink-strong);
    font-size: 18px;
    line-height: 24px;
  }
  
  .service-guides-media-links {
    margin-top: 8px;
  }
  
  .service-guides-media-link {
    display: block;
    width: fit-content;
    margin-bottom: 8px;
    color: #3298dc;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
  }
  
  .service-guides-media-link:hover {
    text-decoration: underline;
  }
  
  .service-guides-data-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink-strong);
    padding-left: 16px;
    border-left: 4px solid transparent;
    border-image: var(--brand-grad) 1 0 0 1;
  }
  
  .service-guides-video-list {
    margin-bottom: 24px;
  }
  
  .service-guides-video-list-item {
    margin-bottom: 8px;
  }
  
  .text-note {
    font-size: 14px;
    color: var(--color-text-light);
  }
  
  .service-guides-faq-link {
    color: #3298dc;
    text-decoration: none;
    cursor: pointer;
  }

  .service-guides-faq-link:hover {
    text-decoration: underline;
  }


  .service-guides-template-box {
    background-color: var(--bg-light);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 60%;
  }

  .template-box-header {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .template-box-icon {
    width: 24px;
    height: 24px;
    color: #333;
  }

  .template-box-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink-strong);
    margin: 0;
  }

  .template-box-desc {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
  }

  .service-guides-download-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* PDF形式ボタン */
  .service-guides-btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7.5px 16px 8.3px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #e11d2a;
    text-decoration: none;
  }

  .service-guides-btn-pdf:hover {
    background-color: #fef2f2;
  }

  .service-guides-btn-pdf .btn-icon {
    width: 20px;
    height: 20px;
  }

  .service-guides-btn-pdf .btn-text {
    font-weight: 700;
    color: #e11d2a;
    font-size: 13px;
    line-height: 20px;
    white-space: nowrap;
  }

  /* Illustrator形式ボタン */
  .service-guides-btn-ai {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7.5px 16px 8.3px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ff9a00;
    text-decoration: none;
  }

  .service-guides-btn-ai:hover {
    background-color: #fff7ed;
  }

  .service-guides-btn-ai .btn-icon {
    width: 20px;
    height: 20px;
  }

  .service-guides-btn-ai .btn-text {
    font-weight: 700;
    color: #ff9a00;
    font-size: 13px;
    line-height: 20px;
    white-space: nowrap;
  }

  @media (max-width: 480px) {
    .service-guides-download-buttons {
      flex-direction: column;
      align-items: stretch;
    }

    .service-guides-template-box {
      width: 100%;
    }
  }