@charset "utf-8";

/* ===================================================================
Style Info: Modern Responsive Design
=================================================================== */

/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #00ADA9 0%, #00c4c7 100%);
  min-height: 100vh;
  font-size: 16px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  text-align: center;
  margin-top: 30px;
  margin-bottom: -60px;
  position: relative;
  z-index: 10;
}

.logo {
  margin: 0;
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  padding: 25px;
  width: 190px;
  height: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.logo-img {
  max-width: 140px;
  height: auto;
  width: 100%;
  display: block;
}

/* Main Content */
.main {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 100px 30px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 50px;
  padding: 20px 0;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.4;
}

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

/* Services Section */
.services {
  text-align: center;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  border-bottom: 2px solid #00ADA9;
  display: inline-block;
  padding-bottom: 10px;
}

.services-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.services-list li {
  background: rgba(0, 173, 169, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1rem;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 173, 169, 0.2);
}

.services-list li.service-text {
  background: rgba(0, 173, 169, 0.05);
  transition: none;
}

.services-list li.service-text:hover {
  transform: none;
  box-shadow: none;
}

/* Hero Tagline */
.hero-tagline {
  font-size: 1rem;
  color: #00ADA9;
  margin-top: 30px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Service Category */
.service-category {
  margin-bottom: 30px;
}

.service-category-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00ADA9;
  margin-bottom: 15px;
}

/* Profile Section */
.profile {
  text-align: center;
  margin-top: 50px;
}

.profile-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.profile-photo {
  text-align: center;
  margin-bottom: 20px;
}

.profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-role {
  font-size: 0.85rem;
  color: #00ADA9;
  font-weight: 600;
  margin-bottom: 4px;
  text-align: center;
}

.profile-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.profile-kana {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: #999;
  margin-top: 2px;
}

.profile-bio {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 12px;
}

/* Results Section */
.results {
  text-align: center;
  margin-top: 50px;
}

.results-list {
  list-style: none;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.results-item {
  padding: 20px 24px;
  border-left: 3px solid #00ADA9;
  margin-bottom: 20px;
}

.results-heading {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.results-detail {
  display: block;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
}

/* Works Section */
.works {
  text-align: center;
  margin-top: 40px;
}

.works-item {
  max-width: 500px;
  margin: 0 auto 25px;
}

.works-link {
  display: block;
  padding: 20px 24px;
  background: rgba(0, 173, 169, 0.05);
  border: 1px solid rgba(0, 173, 169, 0.2);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.works-link:hover {
  border-color: #00ADA9;
}

.works-item-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.works-item-desc {
  display: block;
  font-size: 0.9rem;
  color: #666;
}

.works-note {
  font-size: 0.95rem;
  color: #888;
  line-height: 2;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Section */
.contact {
  text-align: center;
  margin-top: 50px;
}

.contact-lead {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.form-required {
  color: #e74c3c;
  font-size: 0.8rem;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #00ADA9;
}

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

.form-submit {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: #00ADA9;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.form-submit:hover {
  background: #009a96;
}

.form-submit:disabled {
  background: #aaa;
  cursor: not-allowed;
}

.form-message {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  min-height: 1.5em;
}

.form-message-success {
  color: #00ADA9;
}

.form-message-error {
  color: #e74c3c;
}

/* Social Navigation */
.social {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
}

.social-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: 0 10px;
  border-radius: 50%;
  background: #00ADA9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 173, 169, 0.3);
}

.social-btn:hover {
  background: #00c4c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 173, 169, 0.4);
}

.social-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Footer */
.footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: auto;
}

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

  .header {
    margin-bottom: -50px;
  }

  .main {
    padding: 80px 20px 30px;
    border-radius: 15px;
  }

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

  .hero-text {
    font-size: 1rem;
  }

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

  .services-list {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 500px;
  }

  .services-list li {
    font-size: 1rem;
    padding: 15px 20px;
    aspect-ratio: auto;
  }

  .logo {
    padding: 20px;
    width: 160px;
    height: 160px;
  }
  
  .logo-img {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 10px;
  }

  .header {
    margin-bottom: -40px;
    text-align: left;
    padding-left: 20px;
  }

  .main {
    padding: 70px 15px 25px;
    border-radius: 10px;
  }

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

  .hero-text {
    font-size: 0.9rem;
  }

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

  .services-list {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 500px;
  }

  .services-list li {
    font-size: 0.9rem;
    padding: 15px 20px;
    aspect-ratio: auto;
  }

  .logo {
    padding: 15px;
    width: 130px;
    height: 130px;
  }
  
  .logo-img {
    max-width: 90px;
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}