@charset "UTF-8";
@keyframes transformLeftRight {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
.job_nav {
  color: #ffffff;
  margin: 0 0 1em 0;
}
.job_nav span {
  display: inline-block;
  border-bottom: 1px solid #ffffff;
}

/* -----------------------------------------
   Job Introduction
----------------------------------------- */
.job_intro {
  margin: 0 0 10rem 0;
}
.job_intro p {
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .job_intro {
    margin: 0 0 2rem 0;
    padding: 5vw;
  }
}

/* -----------------------------------------
   Features Section
----------------------------------------- */
.features_section {
  background: #F4F3F2;
  padding: 10vw 0;
}
@media screen and (max-width: 767px) {
  .features_section {
    padding: 8vw 0;
  }
}
.features_section .section_title {
  text-align: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .features_section .section_title {
    margin-bottom: 5rem;
  }
}
.features_section .points_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .features_section .points_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.features_section .point_card {
  background: #ffffff;
  padding: 5rem 6%;
}
.features_section .point_card h4 {
  text-align: center;
  font-size: clamp(1.4rem, 1.4vw, 1.9rem);
}
@media screen and (max-width: 767px) {
  .features_section .point_card {
    padding: 4rem 2.5rem;
  }
}
.features_section .point_header {
  text-align: center;
  margin-bottom: 3rem;
}
.features_section .point_number {
  color: #E60000;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  position: relative;
  border-bottom: 1px solid #E60000;
}
.features_section .point_title {
  margin-bottom: 2.5rem;
  text-align: center;
}
/* -----------------------------------------
   Business Systems Section
----------------------------------------- */
section.business {
  padding: 0 5vw;
  background: #F4F3F2;
}
section.business section {
  background: #ffffff;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  section.business {
    padding: 0 5vw;
  }
}

.business_systems_section {
  padding: 8vw 0;
}
.business_systems_section .section_title {
  text-align: center;
  margin-bottom: 3rem;
}
.business_systems_section .section_text {
  max-width: 900px;
  margin: 0 auto 10rem auto;
}
@media screen and (max-width: 767px) {
  .business_systems_section .section_text {
    margin-bottom: 5rem;
  }
}
.business_systems_section .systems_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .business_systems_section .systems_grid {
    grid-template-columns: 1fr;
  }
}
.business_systems_section .system_card {
  background: #F4F3F2;
  padding: 4rem 2.7rem;
}
@media screen and (max-width: 767px) {
  .business_systems_section .system_card {
    padding: 3rem 2rem;
  }
}
.business_systems_section .system_label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2rem;
}
.business_systems_section .system_category {
  color: #E60000;
  font-size: clamp(1rem, 1.2vw, 1.4rem);
  font-feature-settings: "palt";
}
.business_systems_section .system_line {
  width: 1px;
  height: 14px;
  background: #E60000;
}
.business_systems_section h4.system_name {
  font-size: clamp(1rem, 1.6vw, 2rem);
}
.business_systems_section .system_desc {
  color: #707070;
}

/* -----------------------------------------
   Development Environment Section
----------------------------------------- */
.dev_environment_section {
  background: #F4F3F2;
  padding: 0 0 8vw 0;
}
@media screen and (max-width: 767px) {
  .dev_environment_section {
    padding: 8vw 0;
  }
}
.dev_environment_section .section_title {
  margin-bottom: 2rem;
}
.dev_environment_section .env_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1300px;
}
@media screen and (max-width: 767px) {
  .dev_environment_section .env_cards {
    grid-template-columns: 1fr;
  }
}
.dev_environment_section .env_card {
  background: #ffffff;
  padding: 4.3rem 3.7rem;
  position: relative;
  text-align: center;
  background: #F4F3F2;
}
@media screen and (max-width: 767px) {
  .dev_environment_section .env_card {
    padding: 3.5rem 2.5rem;
  }
}
.dev_environment_section .env_card p {
  text-align: left;
}
.dev_environment_section .env_line {
  width: 136px;
  height: 1px;
  background: #E60000;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .dev_environment_section .env_line {
    width: 100px;
  }
}
.dev_environment_section .env_category {
  color: #E60000;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #E60000;
  display: inline-block;
}
.dev_environment_section .t_flex {
  display: flex;
  margin: 0 0 5rem 0;
}
@media screen and (max-width: 767px) {
  .dev_environment_section .t_flex {
    display: block;
    margin: 0 0 3rem 0;
  }
}
.dev_environment_section .t_flex h2 {
  margin: 0 2em 0 0;
  width: 8em;
}
@media screen and (max-width: 767px) {
  .dev_environment_section .t_flex h2 {
    margin: 0 0 1rem 0;
  }
}
@media screen and (max-width: 767px) {
  .dev_environment_section .t_flex p br {
    display: none;
  }
}

/* -----------------------------------------
   Projects Section
----------------------------------------- */
.projects_section {
  position: relative;
  padding: 8vw 0;
}
@media screen and (max-width: 767px) {
  .projects_section {
    padding: 8vw 0;
  }
}
.projects_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1196px;
  max-width: 90%;
  height: 1px;
  background: #E60000;
  opacity: 0.3;
}
.projects_section .section_title {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .projects_section .section_title {
    margin-bottom: 5rem;
  }
}
.projects_section .projects_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1300px;
}
@media screen and (max-width: 767px) {
  .projects_section .projects_grid {
    grid-template-columns: 1fr;
  }
}
.projects_section .project_item {
  display: flex;
  flex-direction: column;
}
.projects_section .project_image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.projects_section .project_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects_section .project_content {
  flex: 1;
}
.projects_section .project_title {
  color: #E60000;
  margin-bottom: 2rem;
}
/* -----------------------------------------
   Employee Link Section
----------------------------------------- */
.employee_link_section {
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .employee_link_section {
    padding: 4rem 0;
  }
}
.employee_link_section h3 {
  text-align: center;
  margin-bottom: 4rem;
  color: #E60000;
}
.employee_link_section .people_flex {
  display: flex;
  gap: 2rem;
  justify-content: center;
  max-width: 800px;
  margin: auto;
  padding: 0 8vw;
}
.employee_link_section .people_flex .box {
  display: block;
  transition: all 0.3s ease;
}
.employee_link_section .people_flex .box .image {
  margin: 0 0 1rem 0;
  overflow: hidden;
}
.employee_link_section .people_flex .box .image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.employee_link_section .people_flex .box .txt p.job {
  color: #E60000;
  margin: 0 0 0.5rem 0;
  font-size: var(--fluid-s);
  color: #E60000;
}
@media screen and (max-width: 767px) {
  .employee_link_section .people_flex .box .txt p.job {
    font-size: 12px;
    font-feature-settings: "palt";
  }
}
.employee_link_section .people_flex .box .txt p {
  line-height: 1.6;
  font-size: var(--fluid-s);
}
@media screen and (max-width: 767px) {
  .employee_link_section .people_flex .box .txt p {
    font-size: 12px;
    font-feature-settings: "palt";
  }
}
.employee_link_section .people_flex .box:hover .image img {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .employee_link_section .people_flex {
    /* スマホでは2列2行 */
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
  }
}