/* 企業理念ページのスタイル */

/* 共通レイアウト */
.philosophy {
  margin: 0;
}

/* スローガンセクション */
.philosophy__slogan {
  text-align: center;
  margin-bottom: 60px;
  padding: 60px 0;
}

.philosophy__slogan-heading {
  font-size: 46px;
  color: #FA0046;
  font-weight: normal;
  margin-bottom: 30px;
  font-family: var(--font-en);
}

.philosophy__slogan-catch {
  font-size: 48px;
  color: #FA0046;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
}

.philosophy__slogan-subcatch {
  font-size: 20px;
  color: #999999;
  font-family: var(--font-en);
  font-weight: normal;
  display: none;
}

.philosophy__slogan-body {
  font-size: 24px;
  margin-top: 32px;
  line-height: 2;
  color: #000;
}

/* MVVセクション */
.philosophy__mvv {
  max-width: 800px;
  margin: 0 auto 80px;
}

.philosophy__mvv-item {
  position: relative;
  background-color: #fff;
  border: 1px solid #C6C6C6;
  padding: 50px 40px 40px;
  margin-bottom: 80px;
}

.philosophy__mvv-title {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 0 20px;
  text-align: center;
}

.philosophy__mvv-title-en {
  font-size: 46px;
  color: #FA0046;
  margin-bottom: 5px;
  line-height: 1;
  font-family: var(--font-en);
  font-weight: normal;
}

.philosophy__mvv-title-ja {
  font-size: 15px;
  color: #999999;
}

.philosophy__mvv-content {
  font-size: 18px;
  line-height: 2;
}

.philosophy__mvv-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.philosophy__mvv-content li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 15px;
}

.philosophy__mvv-content li:last-child {
  margin-bottom: 0;
}

.philosophy__mvv-content li:before {
  content: "■";
  color: #FA0046;
  position: absolute;
  left: 0;
  top: 0;
}

.philosophy__emphasis {
  color: #FA0046;
  font-weight: bold;
}

/* コンプライアンス推進基本方針 */
.philosophy__compliance {
  background-color: #FDF5F6;
  padding: 80px 20px;
  margin-bottom: 80px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.philosophy__compliance-inner {
  max-width: 880px;
  margin: 0 auto;
}

.philosophy__compliance-heading {
  font-size: 32px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 40px;
}

.philosophy__compliance-card {
  background-color: #fff;
  padding: 20px 30px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.philosophy__compliance-card-title {
  width: 245px;
  display: flex;
  align-items: center;
}

.philosophy__compliance-card-number {
  font-size: 26px;
  color: #FA0046;
  font-weight: bold;
  margin-right: 10px;
}

.philosophy__compliance-card-title-text {
  font-size: 22px;
  font-weight: bold;
}

.philosophy__compliance-card-body {
  width: 530px;
  font-size: 18px;
  line-height: 2;
}

/* 行動指針セクション */
.philosophy__guideline {
  max-width: 660px;
  margin: 0 auto 80px;
}

.philosophy__guideline-heading {
  font-size: 42px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 40px;
}

.philosophy__guideline-item {
  padding: 30px 0;
  border-bottom: 1px solid #C6C6C6;
  text-align: center;
}

.philosophy__guideline-item:last-child {
  border-bottom: none;
}

.philosophy__guideline-title {
  font-size: 24px;
  font-weight: bold;
  color: #FA0046;
  margin-bottom: 12px;
}

.philosophy__guideline-text {
  font-size: 18px;
  line-height: 1.8;
}

/* リンクセクション */
.philosophy__links {
  background-color: #FDF5F6;
  padding: 60px 20px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.philosophy__links-inner {
  max-width: 880px;
  margin: 0 auto;
}

.philosophy__links-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.philosophy__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 390px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #FA0046;
  color: #FA0046;
  font-size: 15px;
  padding: 20px 30px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.philosophy__link:hover {
  background-color: #FA0046;
  color: #fff;
}

.philosophy__link i {
  margin-left: 10px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .philosophy{
    margin: 0 20px;
  }

  .philosophy__slogan-catch {
    font-size: 40px;
  }

  .philosophy__slogan-body {
    font-size: 20px;
  }

  .philosophy__compliance-card {
    flex-direction: column;
  }

  .philosophy__compliance-card-title,
  .philosophy__compliance-card-body {
    width: 100%;
  }

  .philosophy__compliance-card-title {
    margin-bottom: 20px;
  }

  .philosophy__links-container {
    flex-direction: column;
  }

  .philosophy__link {
    width: 100%;
  }
}
