/*
Theme Name: hpdeli_theme
Author: Crossroad Co., Ltd.
*/
@charset "utf-8";
:root {
  --color-bg-deep: #020b1c;
  --color-bg-dark: #051329;
  --color-text-main: #ffffff;
  --color-text-dim: #a0aebf;
  --color-cyan: #00f3ff;
  --color-cyan-glow: rgba(0, 243, 255, 0.6);
  --color-nav-bg: rgba(2, 11, 28, 0.9);
  --font-jp: 'Noto Sans JP', sans-serif;
  --transition-speed: 0.3s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: var(--color-bg-deep);
  color: var(--color-text-main);
  font-family: var(--font-jp);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
p {
  margin-bottom: 1.5em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-speed);
}
.wpcf7-turnstile{
	display:flex;
	justify-content:center;
	margin-bottom:20px;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- Utilities --- */
.text-cyan {
  color: var(--color-cyan) !important;
  text-shadow: 0 0 10px var(--color-cyan-glow);
}

.text-stroke {
  -webkit-text-stroke: 1px var(--color-text-main);
  color: transparent;
}

.aisync-section {
  padding: 70px 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.aisync-section-label {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--color-cyan);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 20px;
}

.aisync-section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background-color: var(--color-cyan);
  box-shadow: 0 0 5px var(--color-cyan);
}

.aisync-section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

@media(min-width:768px) {
  .aisync-section-title {
    font-size: 2.5rem;
  }
}

.small,
small {
  font-size: .95em;
}


/* --- Microcopy --- */
.aisync-microcopy {
  font-size: 0.9rem;
  color: var(--color-text-dim);
  font-weight: bold;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* --- Header --- */
.aisync-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  /* Reduced padding for mobile */
  z-index: 1000;
  background: transparent;
  transition: background-color 0.3s, box-shadow 0.3s;
}

@media (min-width: 768px) {
  .aisync-header {
    padding: 20px 0;
  }
}

.aisync-logo {
  font-size: 1.1rem;
  /* Smaller for mobile to fit on one line */
  margin: 0;
  color: var(--color-text-main);
}

@media (min-width: 768px) {
  .aisync-logo {
    font-size: 1.5rem;
  }
}

.nav-link {
  color: #4A4A4A;
  font-family: var(--font-jp);
  font-size: 0.95rem;
  font-weight: bold;
}

.nav-link:hover {
  color: var(--color-cyan);
}

/* --- Buttons --- */
.aisync-btn-small {
  background: transparent;
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan);
  padding: 6px 12px;
  font-family: var(--font-jp);
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 5px;
  /* Softer look */
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  /* Prevent button text wrapping */
}

@media (min-width: 768px) {
  .aisync-btn-small {
    min-width: 184px;
    padding: 8px 20px;
    font-size: 0.95rem;
  }
}

.aisync-btn-small::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--color-cyan);
  z-index: -1;
  transition: var(--transition-speed);
}

.aisync-btn-small:hover {
  color: var(--color-bg-deep);
}

.aisync-btn-small:hover::before {
  width: 100%;
}

.aisync-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cyan);
  color: var(--color-bg-deep);
  padding: 15px 40px;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  position: relative;
  clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
  text-align: center;
  border: none;
}

.aisync-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
  color: var(--color-bg-deep);
}

.aisync-btn-secondary {
  display: inline-block;
  border: 2px solid var(--color-cyan);
  color: var(--color-cyan);
  padding: 12px 30px;
  font-family: var(--font-jp);
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s;
  background: transparent;
  text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
  text-align: center;
}

.aisync-btn-secondary:hover {
  background: var(--color-cyan);
  color: var(--color-bg-deep);
  box-shadow: 0 0 20px var(--color-cyan-glow);
}

/* --- Hero Section --- */
.aisync-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
  padding-top: 120px;
}

.aisync-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(2, 11, 28, 0.8), rgba(2, 11, 28, 0.9)),
    repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0, 243, 255, 0.03) 1px, rgba(0, 243, 255, 0.03) 2px);
  z-index: 1;
}

.speed-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--color-cyan), transparent);
  opacity: 0.1;
  animation: moveDown 3s linear infinite;
}

.line:nth-child(1) {
  left: 20%;
  animation-duration: 2s;
  animation-delay: 0s;
}

.line:nth-child(2) {
  left: 50%;
  animation-duration: 3s;
  animation-delay: 1s;
}

.line:nth-child(3) {
  left: 80%;
  animation-duration: 2.5s;
  animation-delay: 0.5s;
}

@keyframes moveDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

.aisync-hero h2 {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 2rem;
  font-style: italic;
}

.aisync-sub-hero {
  color: var(--color-text-dim);
  font-size: 1rem;
  margin-bottom: 1rem;
}
@media(min-width:576px){
	.aisync-sub-hero{
		font-size: 1.2rem;
	}
}
/* Hero Badge */
.hero-zero-badge {
  display: inline-block;
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid var(--color-cyan);
  padding: 10px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-cyan);
  margin-bottom: 25px;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.aisync-catch-jp {
  font-size: 1.2rem;
  font-weight: bold;
  border-left: 4px solid var(--color-cyan);
  padding-left: 15px;
  letter-spacing: 1px;
}

/* Hero Visual */
/* Hero Visual (Background) */
.hero-visual-wrapper {
  position: absolute;
  opacity: 0.3;
  top: 50%;
  right: 10%;
  width: 120%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.hero-bg-visual {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Faint display */
  mask-image: linear-gradient(to left, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 40%, transparent 100%);
  mix-blend-mode: screen;
  /* Blend with dark background */
}

@media(min-width:440px) {
  .aisync-hero {
    padding-top: 160px;
  }
}
@media(min-width:576px){
	.aisync-catch-jp {
		font-size: 1.5rem;
	}
}
@media (min-width:992px) {
  .hero-visual-wrapper {
    right: 0;
    width: 80%;
    opacity: 0.6;
  }
}

@media (min-width:1200px) {
  .hero-visual-wrapper {
    width: 900px;
  }
}

/* --- Features Section --- */
.aisync-features {
  background-color: var(--color-bg-dark);
}

.aisync-feature-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s;
  height: 100%;
}

.aisync-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 243, 255, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-cyan);
  margin-bottom: 20px;
}

/* --- Pricing Section --- */
.aisync-pricing .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 450px;
  position: relative;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 243, 255, 0.3);
}

.pricing-card.recommended {
  border: 2px solid var(--color-cyan);
  background: rgba(0, 243, 255, 0.02);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
  z-index: 2;
}

.recommended-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-cyan);
  color: var(--color-bg-deep);
  padding: 5px 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  white-space: nowrap;
}

.price-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--color-text-main);
  font-weight: bold;
}

.price-amount-area {
  margin-bottom: 20px;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-dim);
  margin-bottom: 5px;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-text-main);
  line-height: 1;
}

.price-initial {
  font-size: 1.5rem;
  color: var(--color-cyan);
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-initial .zero {
  font-size: 2.2rem;
}

.price-features {
  text-align: left;
  margin-bottom: 10px;
  flex-grow: 1;
}

.price-features li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #ddd;
  font-size: 1rem;
}

.price-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-cyan);
}

/* Pricing Scope (New) */
.aisync-scope-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.scope-title {
  font-size: 1.3rem;
  color: var(--color-text-main);
}

.scope-list li {
	margin-bottom:15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
}

.scope-list.included li i {
  color: var(--color-cyan);
  margin-right: 15px;
  width: 20px;
}

.scope-list.excluded li i {
  color: #666;
  margin-right: 15px;
  width: 20px;
}

.scope-list.excluded li {
  color: #888;
}
@media(min-width:992px){
	.scope-list li{
		padding:10px 0;
	}
}
/* --- Options Section (Grid) --- */
.aisync-options {
  background-color: var(--color-bg-deep);
}

.option-grid-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.option-grid-card:hover {
  border-color: var(--color-cyan);
  background: rgba(0, 243, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 243, 255, 0.1);
}

.option-icon-grid {
  font-size: 1.2rem;
  color: var(--color-cyan);
  background: rgba(0, 243, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.option-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-text-main);
  margin: 0;
}

.option-desc {
  font-size: 0.9rem;
  color: var(--color-text-dim);
  line-height: 1.6;
  margin-bottom: 20px;
}

.option-price-grid {
  border-color: rgba(255, 255, 255, 0.1) !important;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.price-val-grid {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-cyan);
  line-height: 1.2;
}

.price-sub-grid {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  opacity: 0.8;
}

.badge.bg-cyan {
  background-color: var(--color-cyan) !important;
  color: var(--color-bg-deep) !important;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}


/* --- Support Section --- */
.aisync-support {
  background-color: var(--color-bg-dark);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.support-item {
  background: rgba(2, 11, 28, 0.5);
  padding: 30px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.support-icon {
  font-size: 1.8rem;
  color: var(--color-cyan);
  margin-right: 20px;
  background: rgba(0, 243, 255, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 599px) {
  .support-item {
    flex-direction: column;
    align-items: center;
    padding: 25px;
  }

  .support-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.support-content h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.support-content p {
  color: var(--color-text-dim);
  margin: 0;
}

/* Support Accordion */
.support-terms-btn {
  width: 100%;
  margin-top: 20px;
  padding: 10px;
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid #ffcc00;
  color: #ffcc00;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.support-terms-btn:hover {
  background: rgba(255, 204, 0, 0.2);
}

.support-terms-btn i {
  transition: transform 0.3s;
}

.support-terms-btn.active i {
  transform: rotate(180deg);
}

.support-terms-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  margin-top: 10px;
}

.support-terms-body {
  padding: 15px;
  border: 1px solid rgba(255, 204, 0, 0.3);
  border-top: none;
  /*font-size: 0.85rem;*/
  color: #ddd;
  line-height: 1.6;
}

.support-terms-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-terms-body li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}

.support-terms-body li.check::before {
  content: '\f00c';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-cyan);
  font-size: 0.8rem;
}

.support-terms-body li.cross::before {
  content: '\f00d';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #ff4444;
  font-size: 0.8rem;
}


/* --- Flow --- */
.workflow-line {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 70%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-cyan), transparent);
  z-index: 0;
  transform: translateY(-50%);
  opacity: 0.3;
}

.aisync-step-card {
  background: var(--color-bg-deep);
  position: relative;
  z-index: 1;
  padding: 20px;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.3s;
  height: 100%;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--color-text-dim);
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.aisync-step-card.active .step-icon,
.aisync-step-card:hover .step-icon {
  background: rgba(0, 243, 255, 0.1);
  color: var(--color-cyan);
  border-color: var(--color-cyan);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.step-number {
  font-size: 0.9rem;
  color: var(--color-text-dim);
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
@media(max-width:991px){
	.aisync-step-card .step-icon {
	  background: rgba(0, 243, 255, 0.1);
	  color: var(--color-cyan);
	  border-color: var(--color-cyan);
	  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
	}
}
/* --- Contact Form (Closing) --- */
.aisync-contact {
  background: radial-gradient(circle at center, rgba(0, 243, 255, 0.1) 0%, var(--color-bg-deep) 70%);
}

@media(min-width:992px) {
  .aisync-contact {
    padding: 100px 0;
  }
}

.contact-form-wrapper {
  background: rgba(5, 19, 41, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 243, 255, 0.2);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.form-label {
  color: var(--color-text-dim);
  font-weight: bold;
}

.form-control {
  background: rgba(2, 11, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 15px;
  border-radius: 5px;
}

.form-control::placeholder {
  color: #555;
  font-size: 0.9rem;
}

.form-control:focus {
  background: rgba(2, 11, 28, 1);
  border-color: var(--color-cyan);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
  color: #fff;
}

.btn-large {
  font-size: 1.3rem;
  padding: 15px 40px;
  min-width: 100%;
  /* Full width for form */
}

/* --- Footer --- */
.aisync-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-dim);
  font-size: 0.9rem;
  background-color: var(--color-bg-deep);
  /* Ensure solid bg */
  position: relative;
  z-index: 2;
}

.footer-nav {
  margin-bottom: 25px;
}

.footer-nav a {
  color: #e0e0e0;
  font-size: 14px;
  text-decoration: none;
  margin-right: 20px;
  transition: color 0.3s;
}
.footer-nav a:last-child{
	margin-right:0;
}
.footer-nav a:hover {
  color: var(--color-cyan);
}

@media (max-width: 767px) {
  .footer-nav a {
    display: block;
    margin: 8px 0;
    margin-left: 0;
  }
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .aisync-hero h2 {
    font-size: 3.5rem;
  }

  .workflow-line {
    display: none;
  }

  .pricing-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .aisync-hero h2 {
    font-size: 2.8rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .btn-large {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .aisync-header .container-fluid {
    padding: 0 15px;
  }

  .hero-img-col {
    margin-top: 20px !important;
  }

  .contact-form-wrapper {
    padding: 20px;
  }
}

/* --- Voices Section --- */
.aisync-voices {
  background-color: var(--color-bg-dark);
  background-image: radial-gradient(var(--color-bg-deep) 1px, transparent 1px);
  background-size: 20px 20px;
}

.voice-card {
  background: rgba(2, 11, 28, 0.6);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 243, 255, 0.2);
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  transition: transform 0.3s;
}

.voice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 243, 255, 0.1);
}

.voice-stars {
  color: var(--color-cyan);
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.voice-comment {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.voice-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.voice-role {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  font-weight: bold;
}

/* --- Pledge Section --- */
.aisync-pledge {
  background-color: var(--color-bg-deep);
  padding: 80px 0;
}

.pledge-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 40px;
  position: relative;
  background: rgba(255, 255, 255, 0.01);
}

.pledge-box::before,
.pledge-box::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-cyan);
  transition: all 0.5s;
}

.pledge-box::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.pledge-box::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.pledge-icon {
  font-size: 3rem;
  color: var(--color-text-dim);
  opacity: 0.5;
}

.pledge-title {
  font-size: 2rem;
  color: var(--color-text-main);
  letter-spacing: 0.1em;
}

.pledge-sub-jp {
  font-family: var(--font-jp);
  font-size: 1.2rem;
  display: block;
  margin-top: 10px;
  font-weight: normal;
  color: var(--color-text-dim);
}

.pledge-content {
  font-size: 1.1rem;
  line-height: 2;
  color: #ccc;
}

/* --- Concept Section --- */
.aisync-concept {
  background-color: #010612;
  padding: 80px 0;
}

.aisync-concept .aisync-section-label {
  opacity: 0.6;
}

.concept-heading {
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.concept-lead {
  font-size: 1.1rem;
  line-height: 2.4;
  color: var(--color-text-dim);
  max-width: 800px;
  margin: 0 auto;
}

.pledge-content strong {
  color: var(--color-cyan);
  font-weight: bold;
  border-bottom: 1px solid var(--color-cyan);
}
@media(min-width:768px){
	.concept-heading{
		font-size:2.4rem;
		line-height:1.4;
	}
}
/* --- Term Page Styles --- */
.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(0, 243, 255, 0.1) 0%, var(--color-bg-deep) 70%);
}

.term-section {
  padding-bottom: 80px;
}

.term-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 40px;
  color: #ddd;
  line-height: 1.8;
  font-size: 0.95rem;
}

.term-article {
  margin-bottom: 40px;
}

.term-title {
  color: var(--color-cyan);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
  padding-bottom: 10px;
}

.term-text p {
  margin-bottom: 15px;
}

.term-list {
  list-style-type: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

.term-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.term-list li::before {
  content: "•";
  color: var(--color-cyan);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Ordered list override for terms */
ol.term-list {
  list-style-type: decimal;
  padding-left: 40px;
}

ol.term-list li {
  padding-left: 0;
}

ol.term-list li::before {
  content: none;
}

@media (max-width: 768px) {
  .term-content {
    padding: 25px;
  }
}

/* Privacy Policy Specifics */
.privacy-list li {
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}

.privacy-list li::before {
  content: "・";
}

/* Law Page Specifics */
.law-list {
  display: flex;
	flex-wrap:wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.law-list dt {
	width:200px;
  font-weight: bold;
  color: var(--color-cyan);
  padding: 20px 0;
  border-bottom: 1px solid rgba(214, 214, 214, 0.5);
}

.law-list dd {
	width:calc(100% - 200px);
  padding: 20px 0;
  border-bottom: 1px solid rgba(214, 214, 214, 0.5);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .law-list {
    display: block;
    gap: 0;
  }

  .law-list dt {
	  width:100%;
    border-bottom: none;
    padding-bottom: 5px;
    color: var(--color-cyan);
    opacity: 0.8;
    font-size: 0.9rem;
  }

  .law-list dd {
	  width:100%;
    padding-top: 0;
  }
}

.pledge-signature {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--color-text-dim);
  margin-top: 40px;
}

/* Hearing Form Page */
.contact-form-wrapper {
  max-width: 800px;
}

.step-header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.step-label {
  display: block;
  color: var(--color-cyan);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.step-header h2 {
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
}

.form-group {
  margin-bottom: 50px !important;
}

.form-label {
  margin-bottom: 15px;
  display: inline-block;
}

.form-control {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.form-control:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.badge.required {
  background: #ff4444;
  color: #fff;
  font-size: 0.7rem;
  margin-left: 10px;
  padding: 3px 8px;
  border-radius: 3px;
  vertical-align: middle;
}

.badge.optional {
  background: #6c757d;
  color: #fff;
  font-size: 0.7rem;
  margin-left: 10px;
  padding: 3px 8px;
  border-radius: 3px;
  vertical-align: middle;
}

.micro-copy {
  font-size: 0.85rem;
  color: #a0aebf;
  margin-top: 10px;
}

.form-check-input:checked {
  background-color: var(--color-cyan) !important;
  border-color: var(--color-cyan) !important;
}

.form-check-label {
  cursor: pointer;
}

.terms-scroll-box {
  scrollbar-width: thin;
  scrollbar-color: var(--color-cyan) rgba(0, 0, 0, 0.3);
}

.terms-scroll-box::-webkit-scrollbar {
  width: 8px;
}

.terms-scroll-box::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

.terms-scroll-box::-webkit-scrollbar-thumb {
  background-color: var(--color-cyan);
  border-radius: 4px;
}

@media (max-width: 767px) {
  .form-footer.d-flex {
    flex-direction: column;
    gap: 20px;
  }

  .form-footer button {
    width: 100%;
    margin: 0 !important;
  }

  .form-footer button:first-child {
    order: 2;
  }
}

/* Step Progress Bar */
.step-progress-bar {
  max-width: 500px;
  margin: 0 auto 50px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-deep);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 8px;
  transition: all 0.3s;
}

.step-label-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
  white-space: nowrap;
}

.step-item.active .step-circle {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
  background: rgba(0, 243, 255, 0.1);
}

.step-item.active .step-label-text {
  color: var(--color-cyan);
  font-weight: bold;
}

.step-line {
  flex-grow: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 10px;
  margin-top: 20px;
  /* Center with 40px circle */
  position: relative;
  top: -14px;
  /* Adjustment for text below */
}

/* ---------------------------------------------------------
   Use Cases Section
   --------------------------------------------------------- */
.aisync-use-cases {
  background-color: transparent;
}

.use-case-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  border: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.use-case-img-wrap {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.use-case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0 !important;
}

.use-case-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.use-case-badge {
  display: inline-block;
  align-self: flex-start;
  background-color: #FF8E53;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.use-case-title {
  color: #2C3E50;
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.4;
}

.use-case-desc {
  color: #4A4A4A;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

/* -------------------------------------
   New Design Styles for Friendly & Trust
   ------------------------------------- */
:root {
  --color-bg-deep: #FCFBF9;
  --color-bg-dark: #FFFFFF;
  --color-text-main: #4A4A4A;
  --color-text-dim: #7A8B9A;
  --color-cyan: #FF8E53;
  --color-cyan-glow: rgba(255, 142, 83, 0.4);
  --color-nav-bg: rgba(252, 251, 249, 0.95);
  /*--font-jp: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;*/
  --font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --font-en: 'Zen Maru Gothic', sans-serif;
}

body {
  font-family: var(--font-jp) !important;
  color: var(--color-text-main) !important;
  background-color: var(--color-bg-deep) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.aisync-section-title,
.step-number {
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  color: #2C3E50;
  font-family: var(--font-jp) !important;
}

/* Fix concept section text visibility against black background */
.aisync-concept {
  background-color: #010612 !important;
  /* Keep the dark background */
}

.aisync-concept .concept-heading {
  color: #FFFFFF !important;
}

.aisync-concept .concept-lead {
  color: #E2E8F0 !important;
}

/* Improve readability of the sub-hero text */
.aisync-sub-hero {
  color: #334155 !important;
  font-weight: 500 !important;
}

.text-stroke {
  -webkit-text-stroke: 1px #2C3E50 !important;
  color: transparent !important;
  text-shadow: none !important;
}

.aisync-hero h2 {
  font-style: normal !important;
}

.aisync-bg-overlay {
  background: linear-gradient(rgba(252, 251, 249, 0.85), rgba(252, 251, 249, 0.95)), repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 142, 83, 0.05) 1px, rgba(255, 142, 83, 0.05) 2px) !important;
}

.hero-bg-visual {
  mix-blend-mode: normal !important;
  opacity: 0.15 !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  border-radius: 16px !important;
}

.hero-zero-badge {
  color: #FF8E53 !important;
  background: rgba(255, 142, 83, 0.1) !important;
  box-shadow: 0 0 15px rgba(255, 142, 83, 0.2) !important;
}

.aisync-feature-card,
.pricing-card,
.option-grid-card,
.support-item,
.aisync-step-card,
.aisync-scope-box {
  background: #FFFFFF !important;
  border: none !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  color: var(--color-text-main) !important;
}

.aisync-feature-card:hover,
.pricing-card:hover,
.option-grid-card:hover,
.support-item:hover,
.aisync-step-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
  border-color: transparent !important;
}

.aisync-btn-primary,
.aisync-btn-small,
.support-terms-btn,
.btn,
.btn-primary {
  border-radius: 50px !important;
  clip-path: none !important;
  background-color: var(--color-cyan) !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
  border: none !important;
	transition: var(--transition-speed);
}

.aisync-btn-primary:before,
.aisync-btn-small:before {
  display: none !important;
}

.aisync-btn-primary:hover,
.aisync-btn-small:hover,
.btn:hover,
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: none !important;
  background-color: #FF7B33 !important;
  color: #FFFFFF !important;
}

.text-cyan {
  color: #FF8E53 !important;
  text-shadow: none !important;
}

.bg-cyan {
  background-color: #FF8E53 !important;
  color: #FFFFFF !important;
}

.price-features li {
  color: #4A4A4A !important;
}

h1.aisync-logo,
h4.aisync-logo-footer,
.aisync-logo,
.aisync-logo-footer {
  color: #2C3E50 !important;
  -webkit-text-fill-color: #2C3E50 !important;
  /* --- Stylish & Friendly Look Updates --- */
  font-family: 'Quicksand', 'Hiragino Maru Gothic ProN', 'Rounded Mplus 1c', 'YuRothic Medium', 'Noto Sans JP', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-shadow: none !important;
}

.price-action .text-light,
.price-action .aisync-microcopy {
  color: #7A8B9A !important;
  -webkit-text-fill-color: #7A8B9A !important;
}

.aisync-options .text-white {
  color: #2C3E50 !important;
  -webkit-text-fill-color: #2C3E50 !important;
  opacity: 1 !important;
}

.option-grid-card .option-desc,
.option-grid-card .price-sub-grid {
  color: #7A8B9A !important;
  -webkit-text-fill-color: #7A8B9A !important;
}

.footer-nav a {
  color: #4A4A4A !important;
  -webkit-text-fill-color: #4A4A4A !important;
  text-decoration: underline !important;
}

.small[style*="color: #a0aebf"],
.aisync-microcopy[style*="color: #a0aebf"] {
  color: #7A8B9A !important;
}

.term-content {
  background: #FFFFFF !important;
  border: none !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04) !important;
  color: #4A4A4A !important;
}

.term-title {
  color: #2C3E50 !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

.page-header {
  background: transparent !important;
}

.term-list li::before {
  color: #FF8E53 !important;
}

/* -------------------------------------
   フォーム等の下層ページ特有のデザイン調整
   ------------------------------------- */

.aisync-form-container {
  background: #FFFFFF !important;
  border-radius: 16px !important;
  padding: 40px !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04) !important;
}

@media (max-width: 768px) {
  .aisync-form-container {
    padding: 25px !important;
  }
}

.step-header {
  border-bottom: 1px solid #E2E8F0 !important;
}

.step-header h2 {
  color: #2C3E50 !important;
}

.form-label {
  color: #2C3E50 !important;
  font-weight: bold !important;
}

.form-control,
.form-select {
  border: 1px solid #CBD5E1 !important;
  color: #2C3E50 !important;
  background-color: #F8FAFC !important;
}

.form-control:focus,
.form-select:focus {
  background-color: #FFFFFF !important;
  border-color: #FF8E53 !important;
  box-shadow: 0 0 10px rgba(255, 142, 83, 0.2) !important;
}

/* プログレスバーの調整 */
.step-circle {
  background: #F8FAFC !important;
  border: 2px solid #CBD5E1 !important;
  color: #7A8B9A !important;
}

.step-label-text {
  color: #7A8B9A !important;
}

.step-item.active .step-circle {
  border-color: #FF8E53 !important;
  color: #FFFFFF !important;
  background: #FF8E53 !important;
  box-shadow: 0 0 15px rgba(255, 142, 83, 0.3) !important;
}

.step-item.active .step-label-text {
  color: #FF8E53 !important;
  font-weight: bold !important;
}

.step-line {
  background: #CBD5E1 !important;
}

/* バッジの調整 */
.badge.required {
  background: #FF8E53 !important;
  color: #FFFFFF !important;
}

.badge.optional {
  background: #CBD5E1 !important;
  color: #4A4A4A !important;
}

/* 規約スクロールボックス等 */
.terms-scroll-box {
  background: #F8FAFC !important;
  border: 1px solid #CBD5E1 !important;
  color: #4A4A4A !important;
}

/* --- Support Terms Visibility overrides for light theme --- */
.support-terms-content {
  background: #F8FAFC !important;
  border: 1px solid #CBD5E1 !important;
}

.support-terms-body {
  color: #4A4A4A !important;
  border-color: #CBD5E1 !important;
}

@media (max-width: 767px) {
  .page-header {
    padding-bottom: 2rem !important;
  }

  /* --- Mobile Compactness (Reduce Scroll Length) --- */
  .aisync-section {
    padding: 40px 0 !important;
  }

  .aisync-section-title {
    margin-bottom: 1.2rem !important;
    font-size: 1.6rem !important;
  }
	.page-header-support .aisync-section-title{
    	font-size: 1.4rem !important;
	}

  /* Reduce line-height and paragraph spacing subtly */
  p,
  li,
  .lead,
  .aisync-catch-jp,
  .aisync-sub-hero,
  .aisync-microcopy {
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }

  /* Bootstrap utility margin overrides for mobile */
  .mt-5,
  .my-5 {
    margin-top: 1.5rem !important;
  }

  .mb-5,
  .my-5 {
    margin-bottom: 1.5rem !important;
  }

  .mt-4,
  .my-4 {
    margin-top: 1rem !important;
  }

  .mb-4,
  .my-4 {
    margin-bottom: 1rem !important;
  }

  .pt-5,
  .py-5 {
    padding-top: 1.5rem !important;
  }

  .pb-5,
  .py-5 {
    padding-bottom: 1.5rem !important;
  }

  /* Compact spacing within flex/grid layouts */
  .gap-4 {
    gap: 1rem !important;
  }

  .gap-5 {
    gap: 1.5rem !important;
  }

  /* Specific Section Tightening */
  .aisync-hero {
    padding-top: 80px !important;
    padding-bottom: 20px !important;
    min-height: auto !important;
  }

  .hero-text-col {
    margin-bottom: 20px !important;
  }

  .aisync-feature-card,
  .pricing-card,
  .option-grid-card,
  .support-item,
  .aisync-step-card {
    padding: 20px !important;
  }

  .aisync-btn-primary {
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
  }
}
/* 2026/3/7 add */
/* --- ベース設定 --- */
.target-section {
  background-color:#f2f3f5;
  padding: 60px 20px;
}

/* --- タイトル周り --- */
.target-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}
.target-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px!important;
  line-height: 1.6!important;
}

/* --- カード全体 --- */
.target-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.target-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* --- カード見出し --- */
.card-heading {
  background-color:#364152;
  color: #fff;
  margin: 0;
  padding: 20px;
  font-size: 18px;
  line-height: 1.5;
  position: relative;
  padding-left: 50px;
}
.card-number {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: bold;
  color: #fff5f1; /* アクセントカラー */
}
.card-sub-heading {
  font-size: 14px;
  font-weight: normal;
  color: #ddd;
  display: block;
  margin-top: 5px;
}

/* --- カード中身（悩み・解決） --- */
.card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  /* PC表示時は横並びに */
  .card-content {
    flex-direction: row;
  }
  .pain-box, .solution-box {
    flex: 1;
  }
}

/* --- お悩みボックス --- */
.pain-box {
  background-color: #f1f3f5;
  border-left: 4px solid #475368;
  padding: 15px;
  border-radius: 4px;
}
.pain-label {
  color: #475368;
}

/* --- 解決ボックス --- */
.solution-box {
  background-color: #fff5f1;
  border-left: 4px solid #ff8e53;
  padding: 15px;
  border-radius: 4px;
}
.solution-label {
  color: #ff8e53;
}

/* --- ボックス内共通 --- */
.box-label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
  margin-top: 0;
  display: flex;
  align-items: center;
}
.box-label::before {
  content: "■";
  margin-right: 6px;
  font-size: 12px;
}
.pain-box p:last-child, .solution-box p:last-child {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.hero_ul{
	display:flex;
	flex-wrap:wrap;
}
.hero_ul li{
	font-size:1.05rem;
	margin-right:1.5rem;
	margin-bottom: 15px;
	font-weight:600;
}
.hero_ul li span{
  display: inline-flex;
  align-items: center;
	padding-right:2px;
	background:linear-gradient(transparent 60%, #ffe9d9 60%);
}
.hero_ul li i{
  margin-right:7px;
}
@media(min-width:576px){
	.hero_ul{
		flex-wrap:nowrap;
	}
}
@media(min-width:1200px){
	.hero_ul li{
		font-size:1.2rem;
	}
}