.home-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pd) 40px;
  position: relative;
  z-index: 2;
}

.home-swith-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.home-panel {
  padding: 20px 20px 40px;
  border: 1px solid var(--panel-border, #ddd);
  border-radius: 18px;
  background: var(--panel-bg, #fff);
}

@media (max-width: 767px) {
  .home-panel {
    padding: 10px 10px 20px;
  }
}

.hero {
  padding: 28px 0 12px;
}
.hero h1 img {
  display: block;
  width: 100%;
}
.hero h1 img.logo-dark {
  display: none;
}
html[data-theme="dark"] .hero h1 img.logo-light {
  display: none;
}
html[data-theme="dark"] .hero h1 img.logo-dark {
  display: block;
}

.hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 40px;
  width: fit-content;
  margin: 0 auto;

  display: block;
  text-align: center;
}
.hero-inner .left {
  width: min(80%, 420px);
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text, #666);
}

.hero h1 {
  margin: 0 auto 24px;
  font-size: 40px;
  line-height: 1.2;
}

.hero-text {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text, #222);
}
.hero-text + .hero-text {
  margin-top: 1em;
}
@media screen and (max-width: 800px) {
  .hero-inner {
    text-align: left;
  }
  .hero h1 {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-text {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .hero-eyebrow {
    font-size: 14px;
  }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.primary-btn {
  background: var(--form-accent, #2563eb);
  color: #fff;
}

.secondary-btn {
  border: 1px solid var(--panel-border, #ddd);
  background: var(--panel-bg, #fff);
  color: var(--text, #222);
}

.section {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .section {
    margin-top: 20px;
  }
}
.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  margin: 0 auto 8px;
  font-size: 24px;
  line-height: 1.4;
  width: fit-content;
}
.section-header h2::before {
	content: 'build';
  vertical-align: middle;
  font-family: 'Material Symbols Outlined';
  font-size: 40px;
  line-height: 1;
  font-weight: 200;
  /* color: var(--accent); */
	width: 40px;
	height: 40px;
  display: inline-block;
  margin-top: -4px;
}


.section-header p {
  margin: 0;
  color: var(--text, #666);
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
}

.feature-card,
.info-card {
  display: block;
  padding: 18px;
  background: var(--panel-bg, #fff);
  color: inherit;
  text-decoration: none;
}

.feature-card h3,
.info-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.feature-card {
  background: linear-gradient(to bottom,#fff 0%, #f4f4f4 100%);
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--panel-border, #ddd);
  padding: 16px 40px 16px 20px;
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06); */
}
html[data-theme="dark"] .feature-card {
   background: linear-gradient(to bottom,var(--panel-border) 0%, var(--panel-bg) 100%);
}
.feature-card::after {
	content: 'arrow_right';
  vertical-align: middle;
  font-family: 'Material Symbols Outlined';
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  color: var(--accent);
	width: 34px;
	height: 34px;
	position: absolute;
	right: 6px;
	top: 0;
  bottom: 0;
  margin: auto 0;
	z-index: 0;
}
@media screen and (max-width: 767px) {
  .feature-card {
    padding: 10px 30px 10px 10px;
  }
  .feature-card::after {
    right: 3px;
  }
}
.feature-card h3 {
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
}
.feature-card h3::before {
	content: 'build';
  vertical-align: middle;
  font-family: 'Material Symbols Outlined';
  font-size: 32px;
  line-height: 1;
  font-weight: 200;
  color: var(--accent);
	width: 32px;
	height: 32px;
	position: absolute;
	top: -4px;
  left: -3px;
	z-index: 0;
}
.feature-card h3 span.tool-title-ja {
  display: block;
  font-size: 12px;
  margin-top: 3px;
  font-weight: bold;
}
.feature-card:hover {
  border-color: var(--accent);
  color: var(--accent);
}
html[data-theme="dark"] .feature-card:hover {
  border-color: var(--accent-hover);
  color: var(--accent-hover);
}
.feature-card p,
.info-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text, #222);
  padding-left: 35px;
}

@media screen and (max-width: 767px) {
  .feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    padding-left: 30px;
  }
  .feature-card h3 span.tool-title-ja {
    font-size: 11px;
  }
  .feature-card p,
  .info-card p {
    font-size: 12px;
    padding-left: 30px;
  }
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.simple-links ul {
  margin: 0;
  padding-left: 20px;
}

.simple-links li {
  margin: 0 0 8px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 34px;
  }

  .card-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .home-page {
    padding-top: 18px;
  }

  .hero-inner {
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 30px;
  }
}