/* ==========================================
   PC Manta LP Styles
   ========================================== */

:root {
  --primary: #0f4c81;
  --primary-dark: #0a3558;
  --accent: #00a896;
  --accent-light: #02c8b0;
  --bg-light: #f8fafb;
  --bg-white: #ffffff;
  --text-dark: #1a202c;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
}

.manta-lp * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.manta-lp {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.9;
  font-size: 16px;
}

/* Header */
.manta-lp .header {
  background: var(--primary);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.manta-lp .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.manta-lp .logo {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
}

.manta-lp .logo-wrap {
  display: flex;
  flex-direction: column;
}

.manta-lp .logo-location {
  color: rgba(255,255,255,0.6);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

.manta-lp .logo-location::before {
  content: '― ';
}

.manta-lp .logo-location::after {
  content: ' ―';
}

.manta-lp .header-cta {
  background: var(--accent);
  color: white;
  padding: 0.6rem 1.25rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Hero Section */
.manta-lp .hero {
  background: var(--primary);
}

.manta-lp .hero-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: url('img/kv.jpg') center center / cover no-repeat;
}

.manta-lp .hero-content {
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
}

.manta-lp .hero-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
}

.manta-lp .hero-title {
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.manta-lp .hero-title .accent {
  color: var(--accent-light);
}

.manta-lp .hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.manta-lp .hero-cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.manta-lp .hero-note {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* Section Common */
.manta-lp .section {
  padding: 3.5rem 1.5rem;
}

.manta-lp .section--gray {
  background: var(--bg-light);
}

.manta-lp .section--dark {
  background: var(--primary);
  color: white;
}

.manta-lp .section-inner {
  max-width: 720px;
  margin: 0 auto;
}

.manta-lp .section-header {
  margin-bottom: 2rem;
}

.manta-lp .section-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.manta-lp .section--dark .section-label {
  color: var(--accent-light);
}

.manta-lp .section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.manta-lp .section--dark .section-title {
  color: white;
}

/* Problems Section */
.manta-lp .problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-white);
  padding: 1.25rem;
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

.manta-lp .problem-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.manta-lp .problem-text {
  font-size: 1rem;
  color: var(--text-mid);
  padding-top: 0.5rem;
}

.manta-lp .solution-box {
  background: var(--primary);
  color: white;
  padding: 1.75rem;
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Features Section */
.manta-lp .feature-item {
  margin-bottom: 2rem;
}

.manta-lp .feature-item:last-child {
  margin-bottom: 0;
}

.manta-lp .feature-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.manta-lp .feature-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.manta-lp .feature-image-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--border);
}

.manta-lp .feature-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.manta-lp .feature-text {
  font-size: 1rem;
  color: var(--text-mid);
}

/* Courses Section */
.manta-lp .course-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.manta-lp .course-card:last-child {
  margin-bottom: 0;
}

.manta-lp .course-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.manta-lp .course-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.manta-lp .course-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.manta-lp .course-text {
  font-size: 1rem;
  color: var(--text-mid);
}

/* Flow Section */
.manta-lp .flow-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.manta-lp .flow-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.manta-lp .flow-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

.manta-lp .flow-content {
  flex: 1;
  padding-top: 0.25rem;
}

.manta-lp .flow-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.manta-lp .flow-text {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Testimonials */
.manta-lp .testimonial-item {
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg-white);
  margin-bottom: 1rem;
}

.manta-lp .testimonial-item:last-child {
  margin-bottom: 0;
}

.manta-lp .testimonial-text {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  position: relative;
}

.manta-lp .testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}

.manta-lp .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.manta-lp .author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

.manta-lp .author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.manta-lp .author-detail {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Instructor Section */
.manta-lp .instructor-photo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.manta-lp .instructor-image {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.manta-lp .instructor-info {
  text-align: center;
}

.manta-lp .instructor-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.manta-lp .instructor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.manta-lp .tag {
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.manta-lp .instructor-bio {
  text-align: left;
  font-size: 1rem;
  color: var(--text-mid);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.manta-lp .instructor-bio p {
  margin-bottom: 1.25rem;
}

.manta-lp .instructor-bio p:last-child {
  margin-bottom: 0;
}

.manta-lp .highlight {
  background: linear-gradient(transparent 50%, rgba(0, 168, 150, 0.2) 50%);
}

/* Price Section */
.manta-lp .price-card {
  background: var(--bg-white);
  border: 2px solid var(--primary);
  padding: 2rem 1.5rem;
  text-align: center;
}

.manta-lp .price-card + .price-card {
  margin-top: 1rem;
}

.manta-lp .price-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.manta-lp .price-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.manta-lp .price-amount {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.manta-lp .price-amount span {
  font-size: 1.1rem;
  font-weight: 500;
}

.manta-lp .price-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.manta-lp .price-includes {
  text-align: left;
  font-size: 1rem;
  list-style: none;
}

.manta-lp .price-includes li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.manta-lp .price-includes li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  font-size: 1.1rem;
}

.manta-lp .price-includes li:last-child {
  border-bottom: none;
}

/* Access Section */
.manta-lp .access-map {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  overflow: hidden;
}

.manta-lp .access-map iframe {
  display: block;
}

.manta-lp .access-row {
  display: flex;
  gap: 1rem;
  font-size: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.manta-lp .access-row:last-child {
  border-bottom: none;
}

.manta-lp .access-label {
  flex-shrink: 0;
  width: 80px;
  font-weight: 600;
  color: var(--text-dark);
}

.manta-lp .access-value {
  color: var(--text-mid);
}

.manta-lp .access-value a {
  color: var(--primary);
  text-decoration: none;
}

/* CTA Section */
.manta-lp .cta {
  background: var(--primary);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.manta-lp .cta-title {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.manta-lp .cta-text {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.manta-lp .cta-button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 1.1rem 3rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.manta-lp .cta-phone {
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}

.manta-lp .cta-phone a {
  color: white;
  font-weight: 600;
}

/* Footer */
.manta-lp .footer {
  background: var(--primary-dark);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.manta-lp .footer-logo {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.manta-lp .footer-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 2;
}

/* Back to Top Button */
.manta-lp .back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.manta-lp .back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.manta-lp .back-to-top:hover {
  background: var(--accent);
}

/* Tablet & Desktop */
@media (min-width: 600px) {
  .manta-lp .hero-title {
    font-size: 2rem;
  }

  .manta-lp .section {
    padding: 4.5rem 2rem;
  }

  .manta-lp .section-title {
    font-size: 1.6rem;
  }

  .manta-lp .instructor-card {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
  }

  .manta-lp .instructor-photo {
    margin-bottom: 0;
  }

  .manta-lp .instructor-info {
    text-align: left;
    flex: 1;
  }

  .manta-lp .instructor-tags {
    justify-content: flex-start;
  }
}

.wp-site-blocks > * {
  margin-block: 0 !important;
}
footer.wp-block-template-part {
  display: none !important;
}

/* Contact Form 7 Styles */
.manta-lp .cta-form {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.manta-lp .cta-form label {
  display: block;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
}

.manta-lp .cta-form label:first-child {
  margin-top: 0;
}

.manta-lp .cta-form .required {
  color: var(--accent-light);
  margin-left: 0.25rem;
}

.manta-lp .cta-form input[type="text"],
.manta-lp .cta-form input[type="tel"],
.manta-lp .cta-form input[type="email"],
.manta-lp .cta-form select,
.manta-lp .cta-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-family: inherit;
}

.manta-lp .cta-form textarea {
  min-height: 100px;
  resize: vertical;
}

.manta-lp .cta-form select {
  appearance: none;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5568' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 1rem center;
  cursor: pointer;
}

.manta-lp .cta-form input[type="submit"] {
  width: 100%;
  background: var(--accent);
  color: white;
  padding: 1.1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.manta-lp .cta-form input[type="submit"]:hover {
  background: var(--accent-light);
}

.manta-lp .cta-form .wpcf7-response-output {
  color: white;
  border-color: rgba(255,255,255,0.3);
  margin: 1rem 0 0;
}

.manta-lp .cta-form .wpcf7-not-valid-tip {
  color: #ffc107;
  font-size: 0.85rem;
}

.manta-lp .cta-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.25rem;
}

/* Today's Tip */
.manta-lp .today-tip-section {
  padding: 2rem 1.5rem;
  background: 
    repeating-linear-gradient(
      transparent,
      transparent 31px,
      rgba(255,255,255,0.1) 31px,
      rgba(255,255,255,0.1) 32px
    ),
    linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

.manta-lp .today-tip {
  text-align: center;
  color: white;
}

.manta-lp .today-tip-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.manta-lp .today-tip-text {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
}

/* Community Events */
.manta-lp .community-events {
  background: #f8f9fa;
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}

.manta-lp .community-event {
  margin: 0.75rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.manta-lp .community-event:first-child {
  margin-top: 0;
}

.manta-lp .community-event:last-child {
  margin-bottom: 0;
}

.manta-lp .community-event strong {
  color: var(--accent);
}

.manta-lp .community-event a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.manta-lp .community-event a:hover {
  text-decoration: underline;
}

.manta-lp .footer-logo-img {
  width: 48px;
  height: auto;
  margin-bottom: 1rem;
  opacity: 0.85;
}