:root {
  --bg-dark: #05060a;
  --bg-dark-soft: #14151b;
  --bg-light: #f5f5f7;
  --bg-card: #ffffff;
  --text-main: #0f1115;
  --text-muted: #;
  --accent-pink: #FF00FF;
  --accent-blue: #00F5FF;
  --border-subtle: #e2e3ea;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 60px rgba(15, 17, 21, 0.22);
  --shadow-card: 0 10px 35px rgba(20, 21, 27, 0.18);
  --max-width: 1200px;
}

#ai-web-design * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#ai-web-design body {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: var(--text-main);
  line-height: 1.7;
}
#ai-web-design img {
  max-width: 100%;
  display: block;
  border-radius: initial;
}
#ai-web-design a {
  text-decoration: none;
  color: inherit;
}
#ai-web-design .page {
  background: #ffffff;
}
#ai-web-design .container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
#ai-web-design .section {
  padding: 96px 0;
}
#ai-web-design .section-title-eyebrow {
  margin-bottom: 8px;
  font-family: "Noto Sans JP";
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-pink);
  font-weight: 600;
}
#ai-web-design .section-title-eyebrow--blue {
  color: var(--accent-blue);
}
#ai-web-design .section-heading {
  font-family: "Noto Sans JP";
  font-size: 28px;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.1;
}
#ai-web-design .section-subtitle {
  font-family: "Noto Sans JP";
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
}
#ai-web-design .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  padding: 6px 14px 6px 8px;
  background: rgba(5, 6, 10, 0.72);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
}
#ai-web-design .badge-pill-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--accent-blue), var(--accent-pink));
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
  font-size: 11px;
  font-weight: 600;
}
#ai-web-design .btn-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
#ai-web-design .btn-row-center {
  justify-content: center;
}
#ai-web-design .btn-primary,
#ai-web-design .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  height: 46px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
#ai-web-design .btn-primary {
  background: linear-gradient(130deg, var(--accent-pink), var(--accent-blue));
  color: #FFF;
  box-shadow: 0 18px 45px rgba(64, 224, 255, 0.3);
}
#ai-web-design .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 65px rgba(64, 224, 255, 0.45);
}
#ai-web-design .btn-primary-compact {
  height: 40px;
  font-size: 12px;
}
#ai-web-design .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: rgba(8, 10, 20, 0.3);
}
#ai-web-design .btn-fill {
  background-color: #05060a;
}
#ai-web-design .btn-outline-light {
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  background: #ffffff;
}
#ai-web-design .btn-outline:hover {
  opacity: 0.5;
}
#ai-web-design .btn-outline-light:hover {
  background: var(--bg-light);
}
#ai-web-design .btn-full {
  width: 100%;
}
#ai-web-design .btn-outline-white {
  border-color: rgba(255, 255, 255, 0.35);
}
@media (max-width: 640px) {
  #ai-web-design .btn-row {
    flex-flow: column;
  }
  #ai-web-design .btn-primary,
#ai-web-design .btn-outline {
    width: 100%;
  }
}
#ai-web-design .pc-none {
  display: none;
}
@media (max-width: 640px) {
  #ai-web-design .pc-none {
    display: block;
  }
  #ai-web-design .sp-none {
    display: none;
  }
}
#ai-web-design .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: 80px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(3, 5, 12, 0.9), rgba(3, 5, 12, 0.4), transparent);
  color: #fff;
}
#ai-web-design .site-header-inner {
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
}
#ai-web-design .logo-img {
  width: 96px;
  padding-top: 4px;
  margin-bottom: 2px;
}
#ai-web-design .logo-title {
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  line-height: 1;
}
#ai-web-design .nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
}
#ai-web-design .nav-link {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
#ai-web-design .nav-link:hover {
  color: #ffffff;
}
#ai-web-design .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(5, 6, 10, 0.2);
}
#ai-web-design .nav-cta span {
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  #ai-web-design .nav {
    display: none;
  }
  #ai-web-design .site-header-inner {
    padding-inline: 18px;
  }
}
#ai-web-design .header-sp-cta {
  display: none;
  background: linear-gradient(130deg, var(--accent-pink), var(--accent-blue));
  border-radius: 24px;
  text-align: center;
}
@media (max-width: 640px) {
  #ai-web-design .header-sp-cta {
    display: block;
  }
}
#ai-web-design .header-sp-cta-icon {
  display: flex;
  align-items: center;
  -moz-column-gap: 2px;
       column-gap: 2px;
  padding: 6px 12px;
}
#ai-web-design .header-sp-cta i {
  font-size: 12px;
  color: #FFF;
}
#ai-web-design .header-sp-cta-icon p {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 12px;
}
#ai-web-design .hero {
  position: relative;
  min-height: 640px;
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(64, 224, 255, 0.16), transparent 55%), radial-gradient(circle at bottom right, rgba(255, 59, 191, 0.2), transparent 55%), #05060a;
  overflow: hidden;
}
#ai-web-design .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 6, 10, 0.1) 0%, rgba(5, 6, 10, 0.95) 68%, #ffffff 100%), url("../img/ai-web-design/hero.jpg") center/cover no-repeat;
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}
#ai-web-design .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(64, 224, 255, 0.3), transparent 55%), radial-gradient(circle at 90% 100%, rgba(255, 59, 191, 0.3), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}
#ai-web-design .hero-inner {
  position: relative;
  margin: 0 auto;
  padding: 160px 80px;
  display: flex;
  gap: 48px;
  align-items: center;
}
#ai-web-design .hero-copy {
  flex: 1.2;
  min-width: 0;
}
#ai-web-design .hero-visual {
  flex: 1;
  min-width: 0;
}
#ai-web-design .hero-heading {
  font-family: "Outfit", "Noto Sans JP", system-ui, sans-serif;
  font-size: 48px;
  line-height: 1.25;
  margin: 16px 0 12px;
}
#ai-web-design .hero-accent {
  background: linear-gradient(120deg, var(--accent-blue), var(--accent-pink));
  -webkit-background-clip: text;
  color: transparent;
}
#ai-web-design .hero-sub {
  font-family: "Noto Sans JP";
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 460px;
  margin-bottom: 22px;
}
#ai-web-design .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}
#ai-web-design .hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
#ai-web-design .hero-meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
  box-shadow: 0 0 12px rgba(64, 224, 255, 0.7);
}
#ai-web-design .hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ai-web-design .hero-visual-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 0 0, rgba(64, 224, 255, 0.3), transparent 55%), radial-gradient(circle at 100% 100%, rgba(255, 59, 191, 0.35), transparent 60%), #05060a;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.7);
}
#ai-web-design .hero-visual-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: screen;
}
#ai-web-design .hero-visual-glow {
  position: absolute;
  inset: 18px 24px auto auto;
  width: 100px;
  height: 100px;
  border-radius: 40%;
  background: radial-gradient(circle at 30% 10%, rgba(64, 224, 255, 0.8), transparent 60%), radial-gradient(circle at 80% 90%, rgba(255, 59, 191, 0.9), transparent 70%);
  filter: blur(10px);
  opacity: 0.85;
  mix-blend-mode: screen;
}
#ai-web-design .hero-floating-tag {
  position: absolute;
  inset: auto auto -22px 12%;
  padding: 10px 16px;
  border-radius: 16px;
  background: rgba(6, 7, 12, 0.94);
  color: #ffffff;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 45px rgba(2, 4, 12, 0.9);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
}
#ai-web-design .hero-floating-tag-label {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 10px;
  opacity: 0.8;
}
#ai-web-design .hero-floating-tag span {
  font-size: 11px;
}
@media (max-width: 960px) {
  #ai-web-design .hero-inner {
    flex-direction: column;
    padding-top: 120px;
  }
  #ai-web-design .hero-visual {
    order: -1;
  }
  #ai-web-design .hero {
    min-height: auto;
  }
}
@media (max-width: 640px) {
  #ai-web-design .hero-inner {
    padding-inline: 16px;
    padding-bottom: 96px;
  }
  #ai-web-design .hero-heading {
    font-size: 30px;
  }
}
#ai-web-design .course {
  background: #ffffff;
}
#ai-web-design .course-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 24px;
  display: flex;
  gap: 56px;
  align-items: flex-start;
}
#ai-web-design .course-inner > :first-child {
  flex: 1.1;
  min-width: 0;
}
#ai-web-design .course-inner > :last-child {
  flex: 1;
  min-width: 0;
}
#ai-web-design .course-title {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1;
}
#ai-web-design .course-title-sub {
  margin-bottom: 40px;
  font-size: 40px;
  line-height: 1.4;
}
#ai-web-design .course-body p {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.75;
}
@media (max-width: 640px) {
  #ai-web-design .course-title {
    font-size: 20px;
  }
  #ai-web-design .course-title-sub {
    font-size: 28px;
  }
  #ai-web-design .course-body p {
    font-size: 14px;
  }
}
#ai-web-design .course-meta-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
}
#ai-web-design .course-meta-list li {
  flex: 1 1 calc(50% - 12px);
  min-width: 200px;
}
#ai-web-design .course-meta-list span {
  display: block;
  font-size: 11px;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 1px;
}
#ai-web-design .course-highlight {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: linear-gradient(130deg, rgba(255, 59, 191, 0.1), rgba(64, 224, 255, 0.08));
  border: 1px solid rgba(255, 59, 191, 0.32);
  font-size: 13px;
  color: #2a2b37;
}
#ai-web-design .course-highlight strong {
  font-weight: 700;
}
#ai-web-design .course-highlight small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: rgba(42, 43, 55, 0.8);
}
@media (max-width: 960px) {
  #ai-web-design .course-inner {
    flex-direction: column;
    padding-inline: 18px;
  }
}
#ai-web-design .features-dark {
  background: #05060a;
  color: #ffffff;
  padding: 96px 0 88px;
}
#ai-web-design .features-dark-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 24px;
}
#ai-web-design .features-dark-heading {
  margin-bottom: 40px;
  font-family: "Noto Sans JP";
}
#ai-web-design .features-dark-heading h2 {
  font-family: "Noto Sans JP";
  font-size: 56px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  background: linear-gradient(45deg, var(--accent-pink) 0%, var(--accent-blue) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#ai-web-design .features-dark-heading p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
#ai-web-design .feature-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 48px;
}
#ai-web-design .feature-row {
  width: calc(50% - 16px);
}
#ai-web-design .feature-row:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
#ai-web-design .feature-eyebrow {
  font-size: 12px;
  color: var(--accent-pink);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
#ai-web-design .feature-title {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
}
#ai-web-design .feature-text {
  font-family: "Noto Sans JP";
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
@media (max-width: 640px) {
  #ai-web-design .features-dark-heading h2 {
    font-size: 28px;
  }
  #ai-web-design .feature-container {
    flex-flow: column;
    row-gap: 32px;
  }
  #ai-web-design .feature-row {
    width: 100%;
  }
  #ai-web-design .feature-title {
    font-size: 20px;
  }
  #ai-web-design .feature-text {
    line-height: 1.5;
  }
}
#ai-web-design .feature-meta {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
#ai-web-design .feature-image-card {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #101119;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85);
  border-radius: 12px;
}
#ai-web-design .feature-image-card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
  filter: grayscale(100%);
}
@media (max-width: 900px) {
  #ai-web-design .feature-row {
    flex-direction: column;
  }
  #ai-web-design .feature-row-reverse {
    flex-direction: column-reverse;
  }
}
@media (max-width: 640px) {
  #ai-web-design .features-dark-inner {
    padding-inline: 18px;
  }
}
#ai-web-design .ai-curriculum {
  background: #ffffff;
}
#ai-web-design .ai-curriculum-header {
  text-align: center;
  margin-bottom: 40px;
}
#ai-web-design .ai-curriculum-header .section-subtitle {
  margin: 0 auto;
}
#ai-web-design .ai-curriculum-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
#ai-web-design .ai-curriculum-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 40px rgba(18, 24, 38, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(33.333% - 12px);
  aspect-ratio: 1/1;
}
#ai-web-design .ai-curriculum-card-img {
  overflow: hidden;
}
#ai-web-design .ai-curriculum-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
#ai-web-design .ai-curriculum-card-body {
  padding: 14px 16px 16px;
  font-size: 12px;
}
#ai-web-design .ai-curriculum-card-label {
  font-size: 11px;
  color: var(--accent-blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
#ai-web-design .ai-curriculum-card-title {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
#ai-web-design .ai-curriculum-card-text {
  color: var(--text-muted);
  font-family: "Noto Sans JP";
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 960px) {
  #ai-web-design .ai-curriculum-card {
    flex: 1 1 calc(50% - 9px);
  }
}
@media (max-width: 640px) {
  #ai-web-design .ai-curriculum-card {
    flex: 1 1 100%;
  }
  #ai-web-design .ai-curriculum-header {
    padding-inline: 18px;
  }
}
#ai-web-design .pricing {
  background: #05060a;
  color: #ffffff;
}
#ai-web-design .pricing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 24px;
  text-align: center;
}
#ai-web-design .heading-light {
  color: #ffffff;
}
#ai-web-design .subtitle-dark {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
}
#ai-web-design .pricing-cards {
  margin-top: 40px;
  display: flex;
  gap: 24px;
}
#ai-web-design .pricing-card {
  background: var(--bg-dark-soft);
  border-radius: 22px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
  text-align: left;
  flex: 1;
  min-width: 0;
}
#ai-web-design .pricing-badge {
  font-family: "Noto Sans JP";
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}
#ai-web-design .pricing-title {
  font-family: "Noto Sans JP";
  font-size: 16px;
  margin-bottom: 4px;
}
#ai-web-design .pricing-price {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0 4px;
}
#ai-web-design .pricing-price span {
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-weight: 400;
  opacity: 0.7;
  margin-left: 4px;
}
#ai-web-design .pricing-note {
  font-family: "Noto Sans JP";
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
#ai-web-design .pricing-list {
  font-family: "Noto Sans JP";
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}
#ai-web-design .pricing-list li {
  font-family: "Noto Sans JP";
  padding: 4px 0;
  position: relative;
  padding-left: 14px;
}
#ai-web-design .pricing-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
  position: absolute;
  left: 0;
  top: 11px;
}
#ai-web-design .pricing-footnote {
  margin-top: 14px;
  font-family: "Noto Sans JP";
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 768px) {
  #ai-web-design .pricing-inner {
    padding-inline: 18px;
  }
  #ai-web-design .pricing-cards {
    flex-direction: column;
  }
}
#ai-web-design .style {
  background: #ffffff;
}
#ai-web-design .style-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 24px;
}
#ai-web-design .style-grid {
  margin-top: 36px;
  display: flex;
  gap: 24px;
}
#ai-web-design .style-card {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
#ai-web-design .style-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
#ai-web-design .style-card-body {
  padding: 16px 18px 18px;
  font-size: 13px;
}
#ai-web-design .style-card-label {
  font-family: "Noto Sans JP";
  font-size: 11px;
  color: var(--accent-pink);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
#ai-web-design .style-card-title {
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
#ai-web-design .style-card-text {
  font-family: "Noto Sans JP";
  font-size: 13px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  #ai-web-design .style-inner {
    padding-inline: 18px;
  }
  #ai-web-design .style-grid {
    flex-direction: column;
  }
}
#ai-web-design .cta-middle {
  padding: 80px 0;
  position: relative;
  background: radial-gradient(circle at top left, rgba(64, 224, 255, 0.16), transparent 55%), radial-gradient(circle at bottom right, rgba(255, 59, 191, 0.2), transparent 55%), #05060a;
  overflow: hidden;
}
#ai-web-design .cta-middle-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 6, 10, 0.1) 0%, rgba(5, 6, 10, 0.95) 68%, #ffffff 100%), url("../img/ai-web-design/hero.jpg") center/cover no-repeat;
  opacity: 0.7;
  mix-blend-mode: screen;
  pointer-events: none;
}
#ai-web-design .cta-middle-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(64, 224, 255, 0.3), transparent 55%), radial-gradient(circle at 90% 100%, rgba(255, 59, 191, 0.3), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}
#ai-web-design .cta-middle-inner {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding-inline: 18px;
  z-index: 2;
}
#ai-web-design .cta-middle-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px 22px 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  text-align: center;
  font-size: 13px;
}
#ai-web-design .cta-middle-title {
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
#ai-web-design .cta-middle-sub {
  font-family: "Noto Sans JP";
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
#ai-web-design .cta-middle-points {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-family: "Noto Sans JP";
  font-size: 14px;
  color: var(--text-muted);
}
#ai-web-design .cta-middle-points li {
  font-family: "Noto Sans JP";
  padding: 4px 0;
}
#ai-web-design .cta-middle-note {
  margin-top: 8px;
  font-family: "Noto Sans JP";
  font-size: 10px;
  color: var(--text-muted);
}
#ai-web-design .faq {
  background: #ffffff;
  padding: 80px 0 96px;
}
#ai-web-design .faq-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 24px;
}
#ai-web-design .faq-header {
  margin-bottom: 32px;
}
#ai-web-design .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}
#ai-web-design .faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  padding: 14px 16px 13px;
  box-shadow: 0 10px 35px rgba(15, 17, 21, 0.06);
  font-size: 13px;
}
#ai-web-design .faq-q {
  font-family: "Noto Sans JP";
  font-size: 11px;
  color: var(--accent-blue);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
#ai-web-design .faq-item-title {
  font-family: "Noto Sans JP";
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
}
#ai-web-design .faq-a {
  font-family: "Noto Sans JP";
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#ai-web-design .faq-a a {
  font-family: "Noto Sans JP";
  font-size: 12px;
  color: var(--accent-pink);
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-decoration: underline;
}
@media (max-width: 768px) {
  #ai-web-design .faq-inner {
    padding-inline: 18px;
  }
  #ai-web-design .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
#ai-web-design .site-footer {
  background: #05060a;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Noto Sans JP";
  font-size: 11px;
  padding: 18px 0 22px;
}
#ai-web-design .site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#ai-web-design .company {
  color: #EEE;
  font-family: "Noto Sans JP";
  font-size: 14px;
}
#ai-web-design .site-footer-links {
  font-family: "Noto Sans JP";
  display: flex;
  gap: 14px;
}
#ai-web-design .site-footer-links a {
  color: #EEE;
  font-family: "Noto Sans JP";
  font-size: 14px;
}
@media (max-width: 640px) {
  #ai-web-design .site-footer-inner {
    padding-inline: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  #ai-web-design .site-footer-links a {
    font-size: 12px;
  }
}
/*# sourceMappingURL=ai-web-design.css.map */