/*
Theme Name: Premium Car Wash LP
Theme URI: https://example.com/
Author: Your Company Name
Author URI: https://example.com/
Description: 手洗い洗車サービス用ランディングページテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: carwash-theme
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --accent: #e53e3e;
  --accent-light: #fc8181;
  --gold: #d69e2e;
  --gold-light: #ecc94b;
  --text-dark: #1a202c;
  --text-medium: #4a5568;
  --text-light: #718096;
  --bg-cream: #fffdf7;
  --bg-light: #f7fafc;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  line-height: 1.8;
  background: var(--bg-cream);
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-inner .logo {
	display: none;
}

.header-inner .custom-logo-link img {
	height: 85px;
	width: 100%;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  height: 45px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.header-nav {
  display: flex;
  gap: 15px;
}

.header-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.header-btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.header-btn-outline:hover {
  background: var(--primary);
  color: white;
}

.header-btn-primary {
  background: var(--accent);
  color: white;
}

.header-btn-primary:hover {
  background: #c53030;
  transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
  color: white;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--text-dark);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-price-box {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  margin: 0 auto 30px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-price-label {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

.hero-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.hero-price small {
  font-size: 1.5rem;
  font-weight: 600;
}

.hero-price-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 10px;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 18px 50px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.hero-cta:hover {
  background: #c53030;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ==========================================================================
   Section Common
   ========================================================================== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-medium);
  font-size: 1.1rem;
}

/* ==========================================================================
   Trial Section
   ========================================================================== */
.trial-section {
  padding: 80px 0;
  background: var(--white);
}

.trial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.trial-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.trial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.trial-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.trial-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
}

.trial-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.trial-time-table {
  background: linear-gradient(135deg, var(--bg-light) 0%, #edf2f7 100%);
  border-radius: 20px;
  padding: 40px;
}

.trial-time-title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 30px;
}

.trial-time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trial-time-item {
  background: var(--white);
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.trial-time-item .time {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.trial-time-item .task {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
  padding: 80px 0;
  background: var(--bg-cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  padding: 80px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-light);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.service-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-content p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* ==========================================================================
   Cases Section
   ========================================================================== */
.cases-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
  color: white;
}

.cases-section .section-title h2 {
  color: white;
}

.cases-section .section-title p {
  color: rgba(255,255,255,0.8);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.case-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.case-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}

.case-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.case-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.case-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
  padding: 80px 0;
  background: var(--bg-cream);
}

.pricing-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #c53030 100%);
  color: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.pricing-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.pricing-banner .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
}

.pricing-banner .price small {
  font-size: 1.2rem;
}

.pricing-banner p {
  margin-top: 10px;
  opacity: 0.9;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--gold);
  transform: scale(1.05);
}

.pricing-card.popular::before {
  content: '人気No.1';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--text-dark);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.pricing-card .desc {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pricing-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.pricing-card .price small {
  font-size: 1rem;
  font-weight: 500;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
}

.pricing-card ul li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-medium);
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.pricing-card .btn {
  display: block;
  background: var(--primary);
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-card .btn:hover {
  background: var(--primary-light);
}

.pricing-card.popular .btn {
  background: var(--accent);
}

.pricing-card.popular .btn:hover {
  background: #c53030;
}

.pricing-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--bg-light);
  border-radius: 16px;
  padding: 30px;
}

.pricing-note {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.pricing-note-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Flow Section
   ========================================================================== */
.flow-section {
  padding: 80px 0;
  background: var(--white);
}

.flow-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.flow-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.flow-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -30px;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.flow-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.flow-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.flow-item p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.faq-question {
  padding: 25px 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px 25px;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.8;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   Area Section
   ========================================================================== */
.area-section {
  padding: 80px 0;
  background: var(--white);
}

.area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.area-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.area-item {
  background: var(--bg-light);
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-item::before {
  content: '📍';
}

.area-note {
  margin-top: 20px;
  padding: 15px;
  background: #fef3c7;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #92400e;
}

.area-map-placeholder {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
  border-radius: 20px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  text-align: center;
}

.area-map-placeholder .icon {
  font-size: 4rem;
  margin-bottom: 10px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-btn-primary {
  background: var(--accent);
  color: white;
}

.cta-btn-primary:hover {
  background: #c53030;
  transform: translateY(-3px);
}

.cta-btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-btn-secondary:hover {
  background: white;
  color: var(--primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 50px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 0.9rem;
  opacity: 0.7;
  max-width: 300px;
  line-height: 1.7;
}

.footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 15px;
}

.footer-tel {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 5px;
}

.footer-hours {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ==========================================================================
   Fixed CTA
   ========================================================================== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.fixed-cta .btn {
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.fixed-cta .btn-tel {
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fixed-cta .btn-reserve {
  background: var(--accent);
  color: white;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center {
  text-align: center;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .trial-grid,
  .features-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trial-time-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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

  .trial-grid,
  .features-grid,
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

  .trial-time-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-grid {
    flex-direction: column;
    gap: 40px;
  }

  .flow-item:not(:last-child)::after {
    display: none;
  }

  .area-content {
    grid-template-columns: 1fr;
  }

  .pricing-notes {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

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