/*
Theme Name: M's Lounge Beauty Salon
Description: 50代からの美肌脱毛サロン M's Lounge の公式WordPressテーマ。完全レスポンシブ対応で、エレガントで信頼感のあるデザインを提供します。
Author: M's Lounge
Version: 1.0.0
License: GPL v2 or later
Text Domain: ms-lounge
*/

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #374151;
  background-color: #ffffff;
}

/* CSS Variables */
:root {
  --brand: #702527;
  --brand-light: #8a3032;
  --brand-dark: #5c1e1f;
  --line: #06c755;
  --line-light: #07df5f;
  --line-dark: #05a648;
  --amber-400: #fbbf24;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --red-50: #fef2f2;
  --red-400: #f87171;
  --green-50: #f0fdf4;
  --green-400: #4ade80;
  --yellow-50: #fffbeb;
  --amber-400: #fbbf24;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-content {
  max-width: 1024px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background-color: var(--brand);
  color: white;
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 1.5rem;
  font-family: serif;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-700);
  max-width: 32rem;
  margin: 0 auto;
}

.image-rounded {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-brand {
  background-color: var(--brand);
  color: white;
}

.btn-brand:hover {
  background-color: var(--brand-dark);
}

.btn-line {
  background-color: var(--line);
  color: white;
}

.btn-line:hover {
  background-color: var(--line-dark);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
}

/* Page Container */
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}

.header-content {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  flex-direction: column;
}

.logo-link {
  font-family: serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: -0.25rem;
}

/* Main Content */
.main-content {
  flex: 1;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85), transparent);
}

.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text {
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-block;
  background-color: var(--brand);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  width: fit-content;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.2;
  font-family: serif;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-700);
  font-weight: 500;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: rgba(112, 37, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon {
  height: 0.875rem;
  width: 0.875rem;
  color: var(--brand);
}

.feature-text {
  font-size: 1.125rem;
  color: var(--gray-700);
}

/* Concerns Section */
.concerns-section {
  padding: 4rem 0;
  background-color: var(--gray-50);
}

.concerns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.concerns-image {
  position: relative;
  height: 350px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.concerns-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.concern-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.concern-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.concern-icon .check-icon {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.concern-text {
  color: var(--gray-700);
}

.concern-message {
  background-color: rgba(112, 37, 39, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}

.message-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--brand);
  text-align: center;
}

/* Results Section */
.results-section {
  padding: 4rem 0;
  background-color: white;
}

.results-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.results-image {
  position: relative;
  width: 100%;
  max-width: 28rem;
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: none;
}

.benefit-content {
  padding: 1.5rem;
}

.benefit-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(112, 37, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Results Section - Benefit Icons */
.benefit-icon svg {
  height: 1.25rem;
  width: 1.25rem;
  color: var(--brand);
  stroke: var(--brand);
}

.shield-icon,
.heart-icon,
.clock-icon {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--brand);
}

.benefit-text {
  flex: 1;
}

.benefit-title {
  font-weight: 500;
  color: var(--brand);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: var(--gray-700);
}

/* Trust Section */
.trust-section {
  padding: 4rem 0;
  background-color: rgba(112, 37, 39, 0.05);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.trust-image {
  position: relative;
  height: 300px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.trust-stats {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.trust-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.star-rating {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.star {
  color: var(--amber-400);
  font-size: 1.25rem;
}

.stat-label {
  color: var(--gray-600);
}

.review-breakdown {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.breakdown-title {
  font-weight: 500;
  color: var(--brand);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.breakdown-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.breakdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.breakdown-stars {
  font-size: 0.875rem;
  width: 4rem;
}

.breakdown-bar {
  flex: 1;
  background-color: var(--gray-200);
  border-radius: 9999px;
  height: 0.75rem;
}

.breakdown-fill {
  background-color: var(--amber-400);
  height: 0.75rem;
  border-radius: 9999px;
}

.breakdown-fill-gray {
  background-color: var(--gray-300);
  height: 0.75rem;
  border-radius: 9999px;
}

.breakdown-count {
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-message {
  margin-top: 2rem;
  text-align: center;
}

.trust-message {
  background-color: rgba(112, 37, 39, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  display: inline-block;
  max-width: 48rem;
}

.trust-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--brand);
}

/* Anxiety Section */
.anxiety-section {
  padding: 4rem 0;
  background-color: white;
}

.anxiety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.anxiety-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.anxiety-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: none;
}

.anxiety-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.anxiety-problem {
  background-color: var(--red-50);
  padding: 1rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--red-400);
}

.problem-text {
  color: var(--gray-700);
  font-weight: 500;
}

.anxiety-solution {
  background-color: var(--green-50);
  padding: 1rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--green-400);
}

.solution-title {
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.solution-text {
  color: var(--gray-700);
}

.anxiety-image {
  position: relative;
  height: 350px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.support-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: none;
}

.support-content {
  padding: 2rem;
}

.support-content {
  background-color: rgba(112, 37, 39, 0.05);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.support-title {
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 1rem;
}

.support-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.support-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.support-icon {
  height: 1.25rem;
  width: 1.25rem;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.support-text {
  color: var(--gray-700);
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background-color: rgba(112, 37, 39, 0.05);
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card {
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 0.5rem;
}

.testimonial-content {
  padding: 1.5rem;
}

.testimonial-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.testimonial-avatar {
  flex-shrink: 0;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(112, 37, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.users-icon {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--brand);
}

.testimonial-text {
  flex: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.testimonial-name {
  font-weight: 500;
  color: var(--gray-900);
}

.testimonial-age {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.testimonial-rating .star {
  height: 1rem;
  width: 1rem;
  color: var(--amber-400);
}

.testimonial-comment {
  color: var(--gray-700);
  line-height: 1.6;
}

/* Owner Section */
.owner-section {
  padding: 4rem 0;
  background-color: white;
}

.owner-card {
  background-color: rgba(112, 37, 39, 0.05);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.owner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.owner-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.owner-image {
  position: relative;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 4px solid white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.owner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.owner-title {
  color: var(--gray-600);
  text-align: center;
}

.owner-message {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message-paragraph {
  color: var(--gray-700);
}

.message-highlight {
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--brand);
}

.highlight-text {
  color: var(--gray-700);
}

.highlight-strong {
  color: var(--brand);
}

.message-cta {
  background-color: rgba(112, 37, 39, 0.1);
  padding: 1rem;
  border-radius: 0.5rem;
}

.cta-text {
  color: var(--brand);
  font-weight: 500;
  text-align: center;
}

.salon-exterior {
  margin-top: 1.5rem;
}

.exterior-image {
  position: relative;
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.exterior-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.exterior-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  padding: 1rem;
}

.exterior-caption {
  color: white;
  text-align: center;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background-color: rgba(112, 37, 39, 0.1);
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 1rem;
  font-family: serif;
}

.cta-description {
  font-size: 1.125rem;
  color: var(--gray-700);
  max-width: 32rem;
  margin: 0 auto;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-benefits {
  background-color: var(--yellow-50);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--amber-400);
}

.benefits-title {
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefit-item .check-icon {
  height: 1rem;
  width: 1rem;
  color: var(--brand);
}

.cta-guarantee {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.guarantee-text {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.guarantee-subtext {
  color: var(--gray-700);
}

.final-message {
  margin-top: 3rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.final-content {
  text-align: center;
}

.final-text {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.final-promise {
  color: var(--brand);
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: var(--gray-900);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.footer-title {
  font-size: 1.25rem;
  font-family: serif;
  margin-bottom: 1rem;
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--gray-300);
}

.footer-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.detail-icon {
  height: 1.25rem;
  width: 1.25rem;
  color: var(--brand-light);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.detail-note {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-btn {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.copyright {
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .hero-section {
    height: 550px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .concerns-grid,
  .trust-grid,
  .anxiety-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .support-features {
    grid-template-columns: 1fr;
  }

  .owner-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-actions {
    align-items: stretch;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

@media (min-width: 1025px) {
  .hero-section {
    height: 550px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .owner-content {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .owner-profile {
    width: 33.333333%;
  }

  .owner-message {
    width: 66.666667%;
  }

  .footer-actions {
    align-items: flex-end;
  }
}
