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

body {
  font-family: 'Hiragino Sans', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #f7a8b8, #e6b3c7);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1rem;
  color: #888;
  margin: 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, 
    #fdfbff 0%, 
    #f8f6ff 15%, 
    #f3f0ff 30%, 
    #eee8ff 45%, 
    #f0ebff 60%, 
    #f5f2ff 75%, 
    #faf8ff 90%, 
    #ffffff 100%
  );
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* 装飾的な背景要素 */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, 
    rgba(230, 179, 199, 0.15) 0%, 
    rgba(247, 168, 184, 0.12) 30%, 
    rgba(255, 192, 203, 0.08) 60%, 
    transparent 80%
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, 
    rgba(216, 191, 216, 0.12) 0%, 
    rgba(221, 160, 221, 0.08) 40%, 
    transparent 70%
  );
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

/* フローティングアニメーション */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(2deg); }
  50% { transform: translateY(-40px) rotate(0deg); }
  75% { transform: translateY(-20px) rotate(-2deg); }
}

/* 追加の装飾要素 */
.hero .container::before {
  content: '✨';
  position: absolute;
  top: 15%;
  left: 20%;
  font-size: 2rem;
  opacity: 0.6;
  animation: sparkle 3s ease-in-out infinite;
}

.hero .container::after {
  content: '🌟';
  position: absolute;
  top: 25%;
  right: 15%;
  font-size: 1.5rem;
  opacity: 0.7;
  animation: sparkle 4s ease-in-out infinite 0.5s;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

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

.hero-title {
  margin-bottom: 2.5rem;
  position: relative;
}

.logo-text {
  display: block;
  font-size: 4.5rem;
  font-weight: 200;
  background: linear-gradient(135deg, 
    #4a148c 0%, 
    #7b1fa2 25%, 
    #ad1457 50%, 
    #c2185b 75%, 
    #e91e63 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: titleGlow 4s ease-in-out infinite;
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #e91e63 20%, 
    #ad1457 50%, 
    #7b1fa2 80%, 
    transparent 100%
  );
  border-radius: 2px;
}

.logo-sub {
  display: block;
  font-size: 1.8rem;
  background: linear-gradient(135deg, 
    #666 0%, 
    #888 50%, 
    #666 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 300;
  letter-spacing: 6px;
  opacity: 0.9;
}

@keyframes titleGlow {
  0%, 100% { 
    filter: brightness(1) saturate(1); 
    transform: scale(1);
  }
  50% { 
    filter: brightness(1.1) saturate(1.2); 
    transform: scale(1.02);
  }
}

.hero-tagline {
  font-size: 1.4rem;
  color: #5a4a6a;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  padding: 0 2rem;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #e91e63;
  font-size: 1rem;
  opacity: 0.6;
}

.hero-tagline::before {
  left: 0;
}

.hero-tagline::after {
  right: 0;
}

.hero-location {
  font-size: 1.1rem;
  color: #7a6b8a;
  margin-bottom: 3rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem 2rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.badge {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 245, 255, 0.9) 100%
  );
  padding: 1rem 2rem;
  border-radius: 35px;
  font-size: 0.95rem;
  color: #5a4a6a;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(233, 30, 99, 0.1) 50%, 
    transparent 100%
  );
  transition: left 0.8s ease;
}

.badge:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.06);
}

.badge:hover::before {
  left: 100%;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, 
    #e91e63 0%, 
    #ad1457 50%, 
    #7b1fa2 100%
  );
  color: white;
  box-shadow: 
    0 6px 20px rgba(233, 30, 99, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    transparent 100%
  );
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 10px 30px rgba(233, 30, 99, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(248, 245, 255, 0.8) 100%
  );
  color: #7b1fa2;
  border: 2px solid rgba(233, 30, 99, 0.3);
  backdrop-filter: blur(10px);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, 
    rgba(233, 30, 99, 0.1) 0%, 
    rgba(123, 31, 162, 0.1) 100%
  );
  border-color: rgba(233, 30, 99, 0.5);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(233, 30, 99, 0.2),
    0 4px 10px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
  background: #fefefe;
}

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

.about-text h3 {
  font-size: 1.8rem;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

.about-stats {
  text-align: center;
}

.stat-item {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f7a8b8;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #666;
  font-size: 1rem;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, #f8f9ff 0%, #f5f7fa 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #2d3748;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  line-height: 1.7;
}

/* Contact Section */
.contact {
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

.contact-icon {
  font-size: 2rem;
  min-width: 3rem;
}

.contact-details h4 {
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #666;
  margin-bottom: 0.5rem;
}

.contact-link {
  display: inline-block;
  color: #f7a8b8;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #f7a8b8;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #e6b3c7;
  border-bottom-color: #e6b3c7;
}

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

.info-item {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  text-align: center;
}

.info-item strong {
  display: block;
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-item p {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Address & Access Styles */
.address-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #f5f7fa 100%);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.address-header {
  text-align: center;
  margin-bottom: 2rem;
}

.address-header h4 {
  color: #2d3748;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.address-text {
  font-size: 1.1rem;
  color: #4a5568;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.map-link {
  margin-top: 1rem;
}

.btn-map {
  background: linear-gradient(135deg, #4299e1, #3182ce);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
}

.btn-map:hover {
  background: linear-gradient(135deg, #3182ce, #2c5aa0);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
}

.access-info {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 1.5rem;
}

.access-info h4 {
  color: #2d3748;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.access-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.access-icon {
  font-size: 2rem;
  min-width: 3rem;
  text-align: center;
}

.access-details {
  flex: 1;
}

.access-details strong {
  color: #2d3748;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.access-details p {
  color: #f7a8b8;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.25rem 0;
}

.access-note {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}

/* Footer */
.footer {
  background: #2d3748;
  color: white;
  padding: 3rem 0 1.5rem;
}

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

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo h4 {
  color: white;
  margin-bottom: 0.25rem;
}

.footer-logo p {
  color: #a0aec0;
  margin: 0;
  font-size: 0.9rem;
}

.footer-address {
  color: #a0aec0;
  font-size: 0.9rem;
}

.footer-address p {
  margin: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f7a8b8;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #4a5568;
}

.footer-bottom p {
  color: #a0aec0;
  margin: 0;
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
  background: white;
}

.gallery-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-text h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: white;
}

.gallery-text p {
  font-size: 0.95rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.gallery-note {
  background: linear-gradient(135deg, #f8f9ff 0%, #f5f7fa 100%);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.gallery-note p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #4a5568;
}

.gallery-note p:last-child {
  margin-bottom: 0;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: zoomIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

#lightbox-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}

.lightbox-caption {
  padding: 1.5rem;
  text-align: center;
  background: white;
}

.lightbox-caption h4 {
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.lightbox-caption p {
  color: #666;
  margin: 0;
  font-size: 1rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { 
    opacity: 0;
    transform: scale(0.8);
  }
  to { 
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 100px 0;
    min-height: auto;
  }
  
  .logo-text {
    font-size: 3rem;
    letter-spacing: 2px;
  }
  
  .logo-sub {
    font-size: 1.4rem;
    letter-spacing: 4px;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .hero-tagline::before,
  .hero-tagline::after {
    display: none;
  }
  
  .hero-location {
    font-size: 0.95rem;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .hero .container::before,
  .hero .container::after {
    display: none;
  }
  
  .hero::before {
    width: 400px;
    height: 400px;
    top: -20%;
    right: -20%;
  }
  
  .hero::after {
    width: 300px;
    height: 300px;
    left: -15%;
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
  }
  
  .footer-info {
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-item {
    cursor: pointer;
  }
  
  .gallery-image {
    height: 250px;
  }
  
  .gallery-overlay {
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  }
  
  .lightbox-content {
    max-width: 95%;
    margin: 0 10px;
  }
  
  #lightbox-img {
    max-width: 100%;
  }
  
  .address-section {
    padding: 1.5rem;
  }
  
  .access-method {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .access-icon {
    font-size: 2.5rem;
  }
  
  .btn-map {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-badges {
    gap: 0.5rem;
  }
  
  .badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
}