
@import url('https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Hiragino Sans', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  line-height: 1.7;
  color: #2d3748;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #1a202c;
}

a {
  transition: all 0.3s ease;
  color: #0077b6;
}

a:hover {
  color: #00b4d8;
  text-decoration: none;
}

strong, p {
  color: inherit;
}

.hero-section {
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #48cae4 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, 30px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.2);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
  max-width: 600px;
}

.primary-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  color: white;
}

.secondary-btn {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.secondary-btn:hover {
  background: white;
  color: #0077b6;
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  border-radius: 2px;
}

.section-subtitle {
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: #1a202c;
}

.service-description {
  color: #718096;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0077b6;
  margin-bottom: 1rem;
}

.service-price span {
  font-size: 0.9rem;
  color: #a0aec0;
  font-weight: 400;
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid #e2e8f0;
  transition: border-color 0.3s ease;
}

.team-card:hover .team-avatar {
  border-color: #0077b6;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #1a202c;
}

.team-role {
  color: #0077b6;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: #718096;
  font-size: 0.95rem;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: relative;
}

.review-quote {
  font-size: 4rem;
  color: #e2e8f0;
  position: absolute;
  top: 20px;
  left: 30px;
  line-height: 1;
}

.review-text {
  font-style: italic;
  color: #4a5568;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-weight: 600;
  color: #1a202c;
}

.review-location {
  color: #a0aec0;
  font-size: 0.9rem;
}

.contact-section {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: white;
}

.contact-section .section-title {
  color: white;
}

.contact-section .section-title::after {
  background: white;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-text {
  color: rgba(255,255,255,0.9);
}

.contact-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-form-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-form-card h3 {
  color: #1a202c;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0077b6;
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: #1a202c;
  text-decoration: none;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
}

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

.logo-main {
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.75rem;
  color: #a0aec0;
  font-weight: 400;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #4a5568;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #0077b6;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-cta:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 119, 182, 0.3);
}

.nav-cta::after {
  display: none;
}

.burger-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: #f8fafc;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a202c;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.burger-btn span:nth-child(1) {
  top: 14px;
}

.burger-btn span:nth-child(2) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.burger-btn span:nth-child(3) {
  bottom: 14px;
}

.burger-btn.active span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  bottom: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 85px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  padding: 2rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  overflow-y: auto;
  height: 100vh;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu .nav-link {
  font-size: 1.2rem;
  padding: 1rem;
  border-radius: 12px;
  background: #f8fafc;
}

.mobile-menu .nav-cta {
  text-align: center;
}

.site-footer {
  background: #1a202c;
  color: white;
  padding: 4rem 0 2rem;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-desc {
  color: #a0aec0;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #a0aec0;
}

.footer-contact-item span {
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid #2d3748;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: #718096;
  font-size: 0.9rem;
}

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

.footer-legal a {
  color: #718096;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: #a0aec0;
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 450px;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  z-index: 9999;
  display: block;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1a202c;
}

.cookie-text {
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: white;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 119, 182, 0.3);
}

.cookie-decline {
  background: #f8fafc;
  color: #718096;
  border: 2px solid #e2e8f0;
}

.cookie-decline:hover {
  background: #e2e8f0;
}

.cookie-settings {
  color: #0077b6;
  font-size: 0.85rem;
  margin-top: 1rem;
  cursor: pointer;
  text-decoration: underline;
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -60px;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #0077b6, transparent);
}

.process-step:last-child .step-number::after {
  display: none;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #1a202c;
}

.step-desc {
  color: #718096;
  max-width: 250px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

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

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

.stats-section {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: white;
  padding: 4rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-section {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.cta-section .section-title {
  color: white;
}

.cta-section .section-title::after {
  background: white;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-btn {
  background: white;
  color: #ff6b35;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: white;
  text-align: center;
}

.page-hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: white;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a202c;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #0077b6;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #0077b6;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: #718096;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.privacy-content {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.privacy-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #1a202c;
}

.privacy-content p {
  color: #4a5568;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.privacy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.privacy-content li {
  color: #4a5568;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: white;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}

.thank-you-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.thank-you-text {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.thank-you-btn {
  background: white;
  color: #0077b6;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.thank-you-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media screen and (max-width: 1024px) {
  .main-nav {
    gap: 1.5rem;
  }
}

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

  .burger-btn {
    display: block;
  }

  .hero-section {
    min-height: auto;
    padding: 8rem 0 4rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .secondary-btn {
    margin-left: 0;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .process-step::after {
    display: none;
  }

  .page-hero {
    padding: 8rem 0 3rem;
  }
}

@media screen and (max-width: 480px) {
  .contact-form-card {
    padding: 2rem 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .service-content {
    padding: 1.5rem;
  }
}