/* philosophy.css - 企業理念ページ */

.philosophy-hero {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
}

.philosophy-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/profile/proj2.jpg") center center / cover no-repeat;
  opacity: 0.15;
}

.philosophy-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
}

.philosophy-hero-content h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.philosophy-hero-content .philosophy-lead {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* メインメッセージ */
.philosophy-message {
  padding: 5rem 0;
  text-align: center;
  background: #fff;
}

.philosophy-message h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.philosophy-message h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c8a45c;
  margin: 1.5rem auto 0;
}

.philosophy-message .message-text {
  font-size: 2rem;
  color: #555;
  line-height: 4;
  letter-spacing: 0.08em;
  max-width: 82vw;
  margin: 0 auto;
  padding: 0 2rem;
}

/* 理念セクション */
.philosophy-section {
  padding: 5rem 0;
  background: #f8f8f8;
}

.philosophy-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.philosophy-section .section-title h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.1em;
  display: inline-block;
  position: relative;
}

.philosophy-section .section-title h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c8a45c;
  margin: 1.5rem auto 0;
}

.philosophy-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 85vw;
  margin: 0 auto;
  padding: 0 2rem;
}

.philosophy-card {
  background: #fff;
  border-radius: 4px;
  padding: 4rem 3rem;
  width: calc(33.333% - 2rem);
  min-width: 300px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-card .card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8a45c, #d4b86a);
  color: #fff;
  font-size: 3.5rem;
}

.philosophy-card h4 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}

.philosophy-card p {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
}

/* バナーセクション */
.philosophy-banner {
  position: relative;
  padding: 10rem 0;
  background: url("../images/profile/advantage8.jpg") center center / cover
    no-repeat;
  text-align: center;
}

.philosophy-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.philosophy-banner-content {
  position: relative;
  z-index: 2;
  max-width: 82vw;
  margin: 0 auto;
  padding: 0 2rem;
}

.font17 {
  font-size: 1.7rem !important;
}

.philosophy-banner-content p {
  font-size: 2.8rem;
  color: #fff;
  line-height: 1.3em;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 2rem;
}

/* 価値観セクション */
.philosophy-values {
  padding: 8rem 0;
  background: #fff;
}

.philosophy-values .section-title {
  text-align: center;
  margin-bottom: 6rem;
}

.philosophy-values .section-title h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.1em;
  display: inline-block;
  position: relative;
}

.philosophy-values .section-title h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c8a45c;
  margin: 1.5rem auto 0;
}

.values-list {
  max-width: 78vw;
  margin: 0 auto;
  padding: 0 2rem;
}

.values-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #eee;
}

.values-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.values-item .values-number {
  font-size: 4rem;
  font-weight: 700;
  color: #c8a45c;
  min-width: 100px;
  line-height: 1;
  opacity: 0.7;
}

.values-item .values-content h4 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.values-item .values-content p {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.philosophy-html section.page-title {
  background-image: url("../images/contact/contact_bg.jpg");
  background-position-y: 27%;
}
@media (min-width: 2400px) {
  .message-text p {
    line-height: 40px;
  }
}

@media (min-width: 3500px) {
  .message-text p {
    line-height: 60px;
  }
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .philosophy-cards {
    gap: 2rem;
  }
  .philosophy-card {
    width: calc(50% - 1rem);
    min-width: auto;
    padding: 3rem 2rem;
  }
}

@media (max-width: 767px) {
  .philosophy-hero-content h2 {
    font-size: 2.8rem;
  }
  .philosophy-hero-content .philosophy-lead {
    font-size: 1.6rem;
  }
  .philosophy-message {
    padding: 4rem 0;
  }
  .philosophy-message h3 {
    font-size: var(--phone-fs-md);
  }
  .philosophy-message .message-text {
    font-size: 1.6rem;
    text-align: left;
  }
  .philosophy-section {
    padding: 5rem 0;
  }
  .philosophy-cards {
    flex-direction: column;
    align-items: center;
  }
  .philosophy-card {
    width: 100%;
    max-width: 400px;
  }
  .philosophy-banner {
    padding: 6rem 0;
  }
  .philosophy-banner-content p {
    font-size: var(--phone-fs-md);
    text-align: left;
  }
  .values-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .values-item .values-number {
    margin-bottom: 1rem;
  }
  .font17 {
    font-size: var(--phone-fs-sm) !important;
  }
  .philosophy-card p {
    font-size: var(--phone-fs-sm) !important;
  }
  .philosophy-card h4 {
    font-size: var(--phone-fs-md) !important;
  }
  .values-item .values-content h4 {
    font-size: var(--phone-fs-md) !important;
  }
  .values-item .values-content p {
    font-size: var(--phone-fs-sm) !important;
    text-align: left;
  }
  .philosophy-html section.page-title {
    background-image: url("../images/contact/contact_bg.jpg");
    background-position-y: 27%;
    background-size: cover;
  }
  .philosophy-section .section-title h3 {
    font-size: var(--phone-fs-md);
  }
  .philosophy-values .section-title h3 {
    font-size: var(--phone-fs-md);
  }
}
