@charset "utf-8";

.about_philosophy {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 0 80px;
}
.about_philosophy_title {
  display: flex;
  align-items: center;
  padding: 0 32px;
  font-size: 56px;
  font-weight: 600;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards;
}
.about_philosophy_title::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 32px;
  margin-right: 16px;
  background-color: #182127;
}
.about_philosophy_sub_title {
  margin-top: 8px;
  padding: 0 32px 0 48px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.2s;
}
.about_philosophy_purpose {
  margin-top: 48px;
  padding: 0 32px;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.4s;
}
.about_philosophy_mission {
  margin-top: 80px;
  padding: 0 32px;
}
.about_philosophy_purpose_title,
.about_philosophy_mission_title {
  font-size: 24px;
  font-weight: 600;
}
.about_philosophy_purpose_wrapper,
.about_philosophy_mission_wrapper {
  overflow: hidden;
  display: flex;
  margin-top: 24px;
  padding: 88px 48px;
  position: relative;
  border-radius: 8px;
}
.about_philosophy_purpose_text_wrapper,
.about_philosophy_mission_text_wrapper {
  width: 55%;
}
.about_philosophy_purpose_text_title,
.about_philosophy_mission_text_title {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
}
.about_philosophy_purpose_text_subtitle,
.about_philosophy_mission_text_subtitle {
  margin-top: 24px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
.about_philosophy_purpose_text,
.about_philosophy_mission_text {
  flex: 1;
  padding-left: 48px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
.about_philosophy_purpose_bg,
.about_philosophy_mission_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}
.about_philosophy_purpose_bg_sp,
.about_philosophy_mission_bg_sp {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.about_philosophy_values {
  margin-top: 80px;
  padding: 0 32px;
}
.about_philosophy_values_title {
  font-size: 24px;
  font-weight: 600;
}
.about_philosophy_values_wrapper {
  margin-top: 24px;
}
.about_philosophy_values_list {
  display: flex;
  gap: 0 1px;
}
.about_philosophy_values_list_item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 20%;
  padding: 24px;
  position: relative;
  background-color: #1b2228;
}
.about_philosophy_values_list_item:first-child {
  border-radius: 8px 0 0 8px;
}
.about_philosophy_values_list_item:last-child {
  border-radius: 0 8px 8px 0;
}
.about_philosophy_values_list_item_label {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.4);
  font-size: 32px;
}
.about_philosophy_values_list_item_label::after {
  content: "";
  display: inline-block;
  width: 64px;
  height: 1px;
  margin-left: auto;
  background-color: rgba(255, 255, 255, 0.4);
}
.about_philosophy_values_list_item_title {
  margin-top: 24px;
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}
.about_philosophy_values_list_item_text {
  padding: 24px 0;
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  line-height: 1.8;
}
.about_philosophy_values_list_item_img {
  width: auto;
  height: 64px;
  margin: auto 0 0 auto;
  position: relative;
  z-index: 2;
}
.about_philosophy_values_list_item_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
}

@media screen and (max-width: 1140px) {
  .about_philosophy_values {
    padding: 0 0 0 32px;
  }
  .about_philosophy_values_list {
    overflow: scroll;
    padding-right: 32px;
  }
  .about_philosophy_values_list_item {
    width: 260px;
  }
}

@media screen and (max-width: 1040px) {
  .about_philosophy_purpose_wrapper,
  .about_philosophy_mission_wrapper {
    display: block;
  }
  .about_philosophy_purpose_text_wrapper,
  .about_philosophy_mission_text_wrapper {
    width: 100%;
  }
  .about_philosophy_purpose_text,
  .about_philosophy_mission_text {
    margin-top: 48px;
    padding-left: 0;
  }
}

@media screen and (max-width: 860px) {
  .about_philosophy_purpose_wrapper,
  .about_philosophy_mission_wrapper {
    border-radius: 16px;
  }
  .about_philosophy_purpose_bg,
  .about_philosophy_mission_bg {
    display: none;
  }
  .about_philosophy_purpose_bg_sp,
  .about_philosophy_mission_bg_sp {
    display: block;
  }
  .about_philosophy_values_list_item:first-child {
    border-radius: 16px 0 0 16px;
  }
  .about_philosophy_values_list_item:last-child {
    border-radius: 0 16px 16px 0;
  }
}

@media screen and (max-width: 640px) {
  .about_philosophy {
    padding: 48px 0 40px;
  }
  .about_philosophy_title {
    padding: 0 20px;
  }
  .about_philosophy_sub_title {
    padding: 0 20px 0 36px;
  }
  .about_philosophy_purpose,
  .about_philosophy_mission {
    margin-top: 40px;
    padding: 0 20px;
  }
  .about_philosophy_purpose_wrapper,
  .about_philosophy_mission_wrapper {
    padding: 64px 40px;
  }
  .about_philosophy_purpose_text_title,
  .about_philosophy_mission_text_title {
    font-size: 42px;
  }
  .about_philosophy_values {
    margin-top: 40px;
    padding: 0 0 0 20px;
  }

  .about_philosophy_values_list {
    padding-right: 20px;
  }
}

@media screen and (max-width: 480px) {
  .about_philosophy {
    padding: 32px 0 40px;
  }
  .about_philosophy_title {
    font-size: 32px;
  }
  .about_philosophy_sub_title {
    font-size: 14px;
  }
  .about_philosophy_purpose_title,
  .about_philosophy_mission_title {
    font-size: 20px;
  }
  .about_philosophy_purpose_wrapper,
  .about_philosophy_mission_wrapper {
    padding: 40px 24px;
  }
  .about_philosophy_purpose_text_title,
  .about_philosophy_mission_text_title {
    font-size: 28px;
  }
  .about_philosophy_purpose_text_subtitle,
  .about_philosophy_mission_text_subtitle {
    font-size: 16px;
  }
  .about_philosophy_purpose_text,
  .about_philosophy_mission_text {
    margin-top: 40px;
    font-size: 14px;
  }
  .about_philosophy_values_title {
    font-size: 20px;
  }
  .about_philosophy_values_list_item {
    width: 240px;
  }
  .about_philosophy_values_list_item_label {
    font-size: 28px;
  }
  .about_philosophy_values_list_item_title {
    font-size: 28px;
  }
  .about_philosophy_values_list_item_img {
    height: 56px;
  }
}
