@charset "UTF-8";
/* ===============================
  プロフィールページ
=============================== */

/* Breadcrumbs override for profile page */
.profile .breadcrumbs {
  background: #fff;
  padding: 1rem 0;
  margin-top: 0;
}

/* Hero Section */
.profile__hero {
  background: linear-gradient(135deg, #FF9B00 0%, #FFF000 100%);
  padding: 4rem 0;
  color: #000;
}

.profile__hero-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 767px) {
  .profile__hero {
    padding: 2rem 0;
  }
  
  .profile__hero-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.profile__hero-photo {
  flex-shrink: 0;
}

.profile__hero-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .profile__hero-photo img {
    width: 150px;
    height: 150px;
  }
}

.profile__hero-content {
  flex: 1;
}

.profile__hero-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .profile__hero-name {
    font-size: 1.75rem;
  }
}

.profile__hero-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.profile__hero-lead {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Container */
.profile__container {
  padding: 4rem 0;
}

@media (max-width: 767px) {
  .profile__container {
    padding: 2rem 0;
  }
}

/* Section */
.profile__section {
  margin-bottom: 4rem;
}

.profile__section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #FF9B00;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .profile__section-title {
    font-size: 1.5rem;
  }
}

/* Timeline */
.profile__timeline {
  position: relative;
  padding-left: 2rem;
}

.profile__timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #E5E5E5;
}

.profile__timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.profile__timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FF9B00;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #FF9B00;
}

.profile__timeline-year {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FF9B00;
  margin-bottom: 0.5rem;
}

.profile__timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2B2B2B;
}

.profile__timeline-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
}

/* Stats */
.profile__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 767px) {
  .profile__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.profile__stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: #F9F9F9;
  border-radius: 8px;
  border-top: 4px solid #FF9B00;
}

.profile__stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #FF9B00;
  margin-bottom: 0.5rem;
  font-family: "Outfit", sans-serif;
}

.profile__stat-number span {
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .profile__stat-number {
    font-size: 2rem;
  }
  
  .profile__stat-number span {
    font-size: 1rem;
  }
}

.profile__stat-label {
  font-size: 0.875rem;
  color: #666;
  font-weight: 500;
}

/* Expertise */
.profile__expertise {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 767px) {
  .profile__expertise {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.profile__expertise-item {
  padding: 1.5rem;
  background: #F9F9F9;
  border-radius: 8px;
  border-left: 4px solid #FF9B00;
}

.profile__expertise-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 0.75rem;
}

.profile__expertise-item p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #666;
}

/* Media */
.profile__media p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #666;
}

.profile__media-list {
  list-style: none;
  padding: 0;
}

.profile__media-list li {
  font-size: 1rem;
  line-height: 2;
  color: #666;
  padding-left: 1.5rem;
  position: relative;
}

.profile__media-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF9B00;
  font-weight: 700;
}

/* Message */
.profile__message {
  background: #F9F9F9;
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid #FF9B00;
}

@media (max-width: 767px) {
  .profile__message {
    padding: 1.5rem;
  }
}

.profile__message p {
  font-size: 1rem;
  line-height: 2;
  color: #333;
  margin-bottom: 1.5rem;
}

.profile__message p:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF9B00;
  margin-bottom: 0.5rem;
}

.profile__message p:nth-child(2) {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 2rem;
}

.profile__message-signature {
  margin-top: 2rem;
  text-align: right;
  font-weight: 700;
  color: #2B2B2B;
  line-height: 1.6;
}

/* CTA */
.profile__cta {
  background: linear-gradient(135deg, #FF9B00 0%, #FFF000 100%);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  color: #000;
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .profile__cta {
    padding: 2rem 1.5rem;
  }
}

.profile__cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .profile__cta-title {
    font-size: 1.5rem;
  }
}

.profile__cta-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.profile__cta .c-btn {
  background: #000;
  color: #FFF000;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 3rem;
  display: inline-block;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile__cta .c-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .profile__cta .c-btn {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
}
