/* ================================
   Subsidy Guide Page Styles
   ================================ */

/* --- Base --- */
.subsidy-guide {
  font-family: 'Inter', 'Noto Sans JP', 'M PLUS 1', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  padding-top: 72px;
}

.subsidy-guide svg {
  display: inline-block;
  flex-shrink: 0;
  overflow: visible;
}

.sg-text-emphasis {
  color: #6C63B5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.sg-animate-ready .subsidy-guide .sg-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease,
    background 0.2s;
  will-change: opacity, transform;
}

body.sg-animate-ready .subsidy-guide .sg-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sg-hero__badge,
.sg-hero__heading,
.sg-hero__subtitle,
.sg-hero__subtitle2,
.sg-hero__nav,
.sg-hero__note,
.sg-hero__image {
  animation: sg-fade-up 0.7s ease both;
}

.sg-hero__heading {
  animation-delay: 0.08s;
}

.sg-hero__subtitle {
  animation-delay: 0.16s;
}

.sg-hero__subtitle2 {
  animation-delay: 0.22s;
}

.sg-hero__nav {
  animation-delay: 0.3s;
}

.sg-hero__note {
  animation-delay: 0.38s;
}

.sg-hero__image {
  animation-delay: 0.18s;
}

.sg-hero__bg-circle--top {
  animation: sg-float-soft 9s ease-in-out infinite;
}

.sg-hero__bg-circle--bottom {
  animation: sg-float-soft 11s ease-in-out infinite reverse;
}

@keyframes sg-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sg-float-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(12px, -14px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .subsidy-guide *,
  .subsidy-guide *::before,
  .subsidy-guide *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================
   Hero Section
   ================================ */
.sg-hero {
  position: relative;
  overflow: hidden;
  background: #f9f9f9;
  height: 549px;
}

.sg-hero__bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sg-hero__bg-circle--top {
  width: 500px;
  height: 500px;
  right: -50px;
  top: -145px;
  background: rgba(91, 90, 218, 0.2);
  filter: blur(112px);
  opacity: 0.6;
}

.sg-hero__bg-circle--bottom {
  width: 256px;
  height: 256px;
  left: -82px;
  bottom: -100px;
  background: linear-gradient(225deg, #615fff 0%, #ad46ff 100%);
  filter: blur(112px);
  opacity: 0.1;
}

.sg-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1024px;
  margin: 0 auto;
  padding: 108px 0 0;
}

.sg-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.sg-hero__badge {
  display: inline-block;
  align-self: flex-start;
  background: #5b5ada;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1.667;
  padding: 4px 20px;
  border-radius: 24px;
}

.sg-hero__titles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sg-hero__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
}

.sg-hero__heading-black {
  color: #1a1a1a;
}

.sg-hero__heading-gradient {
  background: linear-gradient(180deg, #5b5ada 0%, #273992 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sg-hero__subtitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.625;
  color: #1a1a1a;
}

.sg-hero__subtitle2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.625;
  color: #111;
}

.sg-hero__nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sg-hero__nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(91, 90, 218, 0.1);
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  transition: background 0.2s;
}

.sg-hero__nav-btn svg {
  width: 16px;
  height: 16px;
}

.sg-hero__nav-btn:hover {
  background: rgba(91, 90, 218, 0.2);
}

.sg-hero__note {
  font-size: 12px;
  color: #333;
  line-height: 1.667;
}

.sg-hero__image {
  flex-shrink: 0;
  width: 500px;
  height: 333px;
  border-radius: 26px;
  overflow: hidden;
}

.sg-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================
   Section Common
   ================================ */
.sg-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 0;
}

.sg-section--light {
  background: #f9f9f9;
}

.sg-section--gray {
  background: #f1f5f9;
}

.sg-section--white {
  background: #fff;
}

.sg-section--gradient {
  background: linear-gradient(180deg, #5b5ada 0%, #273992 100%);
}

.sg-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}

.sg-section__header--white .sg-section__title {
  color: #fff;
}

.sg-section__badge {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #5b5ada;
  letter-spacing: 1.4px;
  line-height: 1.429;
}

.sg-section__badge--light {
  color: #eee;
}

.sg-section__title {
  font-family: 'M PLUS 1', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.sg-section__desc {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
  text-align: center;
}

/* ================================
   Flow Section
   ================================ */
.sg-flow__image {
  width: 956px;
  margin: 0 auto 48px;
}

.sg-flow__image img {
  width: 100%;
  height: auto;
}

.sg-flow__categories {
  width: 1268px;
  max-width: 100%;
  margin: 0 auto;
  padding: 24px 40px 40px;
  background: #f1f5f9;
  border-radius: 0 0 6px 6px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sg-flow__categories-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1.556;
  letter-spacing: 0.08em;
}

.sg-flow__cards {
  display: flex;
  gap: 20px;
}

.sg-flow__card {
  flex: 1;
  min-height: 156px;
  padding: 28px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.sg-flow__card--active {
  background: #f7f7fd;
  border-color: rgba(91, 90, 218, 0.4);
}

.sg-flow__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sg-flow__card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 25px;
  background: #f1f5f9;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.sg-flow__card--active .sg-flow__card-num {
  background: #5b5ada;
  color: #fff;
}

.sg-flow__card-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  padding: 2px 10px;
  border-radius: 4px;
  background: #fff;
  color: #5b5ada;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.sg-flow__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.08em;
}

.sg-flow__card-desc {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

.sg-flow__categories-note {
  padding: 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.sg-flow__info-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  background: #f7f7fd;
  border: 1px solid rgba(91, 90, 218, 0.2);
  border-radius: 10px;
}

.sg-flow__info-icon {
  flex-shrink: 0;
  margin-top: 29px;
}

.sg-flow__info-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sg-flow__info-text p,
.sg-flow__info-text li {
  font-size: 16px;
  color: #333;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.sg-flow__info-text p {
  font-weight: 700;
}

.sg-flow__info-text ol {
  margin: 0;
  padding-left: 1.2em;
}

.sg-flow__supplement-note {
  margin-top: 32px;
  padding: 0 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
}

/* ================================
   Checklist Section
   ================================ */
.sg-checklist {
  width: 1024px;
  max-width: 100%;
  margin: 0 auto 40px;
}

.sg-checklist__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.sg-checklist__letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #5b5ada;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.sg-checklist__letter--b {
  background: rgba(91, 90, 218, 0.4);
}

.sg-checklist__letter--c {
  background: #333;
}

.sg-checklist__heading h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1.556;
}

.sg-checklist__table {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 12px;
}

.sg-checklist__row {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sg-checklist__row:last-child {
  border-bottom: none;
}

.sg-checklist__row--header {
  background: rgba(239, 239, 239, 0.93);
  padding: 16px 16px 16px 60px;
}

.sg-checklist__row--header .sg-checklist__cell {
  font-weight: 700;
  color: #333;
}

.sg-checklist__row--highlight {
  background: #f7f7fd;
}

.sg-checklist__num {
  flex-shrink: 0;
  width: 28px;
  font-size: 16px;
  font-weight: 700;
  color: #5b5ada;
  text-align: center;
}

.sg-checklist__cell {
  flex: 1;
  font-size: 14px;
  line-height: 1.429;
}

.sg-checklist__cell--check {
  color: #333;
}

.sg-checklist__cell--note {
  color: #444;
}

.sg-checklist__tip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: #f7f7fd;
  border: 1px solid rgba(91, 90, 218, 0.2);
  border-radius: 10px;
}

.sg-checklist__tip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sg-checklist__tip p {
  font-size: 14px;
  color: #333;
  line-height: 1.429;
}

.sg-checklist__footnote {
  font-size: 12px;
  color: #444;
  text-align: center;
  line-height: 1.333;
  width: 1024px;
  max-width: 100%;
  margin: 0 auto;
}

/* ================================
   Documents Section
   ================================ */
.sg-docs__wrapper {
  width: 1024px;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 24px 96px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.sg-docs__block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sg-docs__block-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sg-docs__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #6c63b5;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  flex-shrink: 0;
}

.sg-docs__block-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sg-docs__block-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  line-height: 1.7;
}

.sg-docs__deadline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.7;
}

.sg-docs__legend {
  display: flex;
  gap: 20px;
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 8px;
}

.sg-docs__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
}

.sg-docs__legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

.sg-docs__legend-dot--purple {
  background: #6c63b5;
}

.sg-docs__legend-dot--green {
  background: #2e9e8e;
}

.sg-docs__legend-dot--gold {
  background: #c8922a;
}

.sg-docs__columns {
  display: flex;
  gap: 24px;
}

.sg-docs__column {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}

.sg-docs__column--full {
  border-radius: 12px;
  overflow: hidden;
}

.sg-docs__category-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.26px;
}

.sg-docs__category-tag svg {
  flex-shrink: 0;
  padding: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  box-sizing: content-box;
}

.sg-docs__category-tag--purple {
  background: #6c63b5;
}

.sg-docs__category-tag--green {
  background: #2e9e8e;
}

.sg-docs__category-tag--blue {
  background: #5882bd;
}

.sg-docs__category-body {
  padding: 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sg-docs__category-body--green {
  background: #fdfaf3;
  border-color: #c2e8e2;
}

.sg-docs__doc-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 1.75px rgba(0, 0, 0, 0.04);
}

.sg-docs__doc-card--gold {
  border: 1px solid #eedcaa;
}

.sg-docs__doc-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.sg-docs__doc-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  line-height: 1.7;
}

.sg-docs__doc-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.7;
}

.sg-docs__doc-badge {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  padding: 5px 8px;
  border-radius: 4px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.sg-docs__doc-badge img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.sg-docs__doc-badge--download {
  color: #5b5ada;
  background: #f3f0ff;
}

.sg-docs__doc-badge--gold {
  color: #a07420;
  background: #f5f0e4;
}

.sg-docs__doc-badge--provide {
  color: #008a5a;
  background: #e8f8f1;
}

.sg-docs__doc-badge--keep {
  color: #6b7280;
  background: #f3f4f6;
}

.sg-docs__hr-section {
  padding: 28px 16px 16px;
  background: #fdfaf3;
  border: 2px solid #eedcaa;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sg-docs__hr-label {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #e5e7eb;
  border-radius: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #a07420;
}

.sg-docs__hr-label img {
  width: 12px;
  height: 12px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  box-sizing: content-box;
  object-fit: contain;
}

.sg-docs__hr-note {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
}

.sg-docs__hr-note p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.8;
}

.sg-docs__no-submit-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 21px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.sg-docs__no-submit-banner svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.sg-docs__no-submit-banner p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #1f2937;
  line-height: 1.7;
}

.sg-docs__no-submit-banner strong {
  font-weight: 700;
}

.sg-docs__divider {
  border: none;
  height: 1px;
  background: #e5e7eb;
}

.sg-docs__attachment-section {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sg-docs__attachment-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  padding-left: 12px;
  border-left: 4px solid #9ca3af;
}

.sg-docs__attachment-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sg-docs__attachment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
}

.sg-docs__attachment-item::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 2px solid #d1d5db;
  border-radius: 5px;
}

.sg-docs__change-section {
  padding: 27px 28px;
  background: #f9fafb;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sg-docs__change-section h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  line-height: 1.7;
}

.sg-docs__change-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #cd5c5c;
  line-height: 1.7;
}

.sg-docs__change-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 11px 0 15px;
}

.sg-docs__change-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #374151;
}

.sg-docs__change-chip svg {
  flex-shrink: 0;
  padding: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  box-sizing: content-box;
}

.sg-docs__change-doc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 4px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.sg-docs__change-note-sub {
  padding: 12px 16px;
  background: #f3f4f6;
  border-radius: 8px;
}

.sg-docs__change-note-sub p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.8;
}

.sg-docs__footnote {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  line-height: 1.7;
  padding-top: 19px;
}

/* ================================
   Support Section
   ================================ */
.sg-support__intro {
  text-align: center;
  margin-bottom: 40px;
}

.sg-support__intro p {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}

.sg-support__cards {
  display: flex;
  gap: 24px;
  width: 1024px;
  max-width: 100%;
  margin: 0 auto 40px;
}

.sg-support__card {
  padding: 24px;
  border-radius: 10px;
  flex: 1;
}

.sg-support__card--primary {
  background: #5b5ada;
  border: 1px solid rgba(91, 90, 218, 0.3);
}

.sg-support__card--dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sg-support__card--wide {
  width: 1024px;
  max-width: 100%;
  margin: 0 auto 40px;
  flex: none;
}

.sg-support__card--disclaimer p {
  color: #fff;
}

.sg-support__card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.556;
  margin-bottom: 12px;
}

.sg-support__card-desc {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
}

.sg-support__list-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sg-support__list-section h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.429;
  margin-bottom: 6px;
}

.sg-support__list-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sg-support__list-section ul li {
  font-size: 14px;
  color: #ececec;
  line-height: 1.429;
  padding-left: 24px;
  position: relative;
}

.sg-support__list-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.9987 14.6668C11.6806 14.6668 14.6654 11.6821 14.6654 8.00016C14.6654 4.31826 11.6806 1.3335 7.9987 1.3335C4.3168 1.3335 1.33203 4.31826 1.33203 8.00016C1.33203 11.6821 4.3168 14.6668 7.9987 14.6668Z' stroke='%238B8AFF' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 7.99984L7.33333 9.33317L10 6.6665' stroke='%238B8AFF' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.sg-support__x-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.sg-support__x-list li {
  font-size: 14px;
  color: #ececec;
  line-height: 1.429;
  padding-left: 24px;
  position: relative;
}

.sg-support__x-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.9987 14.6668C11.6806 14.6668 14.6654 11.6821 14.6654 8.00016C14.6654 4.31826 11.6806 1.3335 7.9987 1.3335C4.3168 1.3335 1.33203 4.31826 1.33203 8.00016C1.33203 11.6821 4.3168 14.6668 7.9987 14.6668Z' stroke='%23EEEEEE' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 6L6 10' stroke='%23EEEEEE' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 6L10 10' stroke='%23EEEEEE' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.sg-support__card-footnote {
  font-size: 12px;
  color: #fff;
  line-height: 1.333;
}

.sg-support__sr-cards {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.sg-support__sr-card {
  flex: 1;
  padding: 16px;
  background: rgba(91, 90, 218, 0.15);
  border-radius: 10px;
}

.sg-support__sr-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.429;
  margin-bottom: 8px;
}

.sg-support__sr-card p {
  font-size: 14px;
  color: #eee;
  line-height: 1.6;
}

.sg-support__sr-note {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sg-support__sr-note p {
  font-size: 16px;
  color: #fff;
  line-height: 1.75;
}

.sg-support__sr-footnote {
  font-size: 14px !important;
  color: #fff;
  line-height: 2;
}

.sg-support__coop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sg-support__coop-item {
  padding: 12px 16px 12px 40px;
  background: rgba(91, 90, 218, 0.15);
  border-radius: 10px;
  font-size: 14px;
  color: #fff;
  line-height: 1.429;
  width: calc(25% - 9px);
  box-sizing: border-box;
  position: relative;
}

.sg-support__coop-item::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.9987 14.6663C11.6806 14.6663 14.6654 11.6816 14.6654 7.99967C14.6654 4.31778 11.6806 1.3335 7.9987 1.3335C4.3168 1.3335 1.33203 4.31778 1.33203 7.99967C1.33203 11.6816 4.3168 14.6663 7.9987 14.6663Z' stroke='%238B8AFF' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 8.00033L7.33333 9.33366L10 6.66699' stroke='%238B8AFF' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.sg-support__coop-item--full {
  width: 100%;
}

.sg-support__disclaimer {
  font-size: 14px;
  color: #fff;
  line-height: 1.429;
  max-width: 1024px;
  margin: 24px auto 0;
  text-align: left;
}

/* ================================
   FAQ Section
   ================================ */
.sg-faq {
  width: 896px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sg-faq__item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.sg-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  cursor: pointer;
  list-style: none;
}

.sg-faq__question::-webkit-details-marker {
  display: none;
}

.sg-faq__question span {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.5;
}

.sg-faq__icon {
  flex-shrink: 0;
  transition: transform 0.48s cubic-bezier(0.25, 0.8, 0.25, 1);
}

details[open] .sg-faq__icon {
  transform: rotate(180deg);
}

.sg-faq__answer {
  padding: 16px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  will-change: height;
}

.sg-faq__answer p {
  font-size: 16px;
  color: #333;
  line-height: 1.625;
}

.sg-faq__answer p + p,
.sg-faq__answer p + ul,
.sg-faq__answer ul + p {
  margin-top: 12px;
}

.sg-faq__answer ul {
  margin: 0;
  padding-left: 1.2em;
}

.sg-faq__answer li {
  font-size: 16px;
  color: #333;
  line-height: 1.625;
}

.sg-faq__answer li + li {
  margin-top: 4px;
}

/* ================================
   Responsive (SP)
   ================================ */
@media screen and (max-width: 768px) {
  .subsidy-guide {
    padding-top: 60px;
  }

  .sg-hero {
    height: auto;
    padding: 40px 16px 32px;
  }

  .sg-hero__inner {
    flex-direction: column;
    padding: 0;
  }

  .sg-hero__heading {
    font-size: 24px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .sg-hero__subtitle,
  .sg-hero__subtitle2 {
    font-size: 14px;
  }

  .sg-hero__image {
    width: 100%;
    height: 200px;
  }

  .sg-hero__nav {
    flex-wrap: wrap;
  }

  .sg-hero__nav-btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .sg-section {
    padding: 60px 16px;
  }

  .sg-section__title {
    font-size: 22px;
  }

  .sg-flow__image {
    width: 100%;
  }

  .sg-flow__categories {
    width: 100%;
    padding: 20px;
  }

  .sg-flow__cards {
    flex-direction: column;
  }

  .sg-flow__info-box {
    flex-direction: column;
  }

  .sg-flow__info-icon {
    align-self: center;
    margin-top: 0;
  }

  .sg-checklist {
    width: 100%;
  }

  .sg-checklist__row {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .sg-checklist__row--header {
    padding: 12px 16px;
  }

  .sg-checklist__cell--note {
    font-size: 13px;
  }

  .sg-docs__wrapper {
    width: 100%;
    padding: 24px 16px 48px;
    gap: 32px;
  }

  .sg-docs__legend {
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .sg-docs__legend-item:nth-child(3) {
    width: 100%;
  }

  .sg-docs__columns {
    flex-direction: column;
  }

  .sg-support__cards {
    flex-direction: column;
    width: 100%;
    padding: 0 16px;
  }

  .sg-support__card--wide {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .sg-support__sr-cards {
    flex-direction: column;
  }

  .sg-support__coop-item {
    width: 100%;
    padding: 12px 16px;
  }

  .sg-faq {
    width: 100%;
  }

  .sg-faq__question span {
    font-size: 14px;
  }
}
