@charset "UTF-8";


/*================================================
* philosophy
================================================*/
#philosophy {
  padding-bottom: 26.1vw;
  padding-top: 3rem;
  overflow: clip;
}

#philosophy::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../../images/company/philosophy_bg.png);
  width: 162.27vw;
  height: 54.46vw;
  left: 0;
  bottom: 0;
}

.philosophy_wrap {
  padding: 10.3rem 0 8rem;
  position: relative;
  z-index: 1;
  border: 1px solid #ACB7CC;
}

.philosophy_wrap::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px) brightness(100%);
  transition: .2s;
  z-index: -1;
}

.philosophy_wrap h2 {
  text-align: center;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  padding: 0 4rem;
}

.philosophy_wrap p {
  font-size: 3.2rem;
  text-align: center;
  font-family: var(--shippori);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media screen and (max-width:767px) {
  #philosophy {
    padding-bottom: 20rem;
  }

  #philosophy::before {
    width: 100vw;
    height: 46.1rem;
    background-image: url(../../images/company/philosophy_bg_sp.png);

  }

  .philosophy_wrap {
    padding: 5rem 0 4.5rem;
  }

  .philosophy_wrap h2 {
    top: -3rem;
    padding: 0 2.3rem;
  }


  .philosophy_wrap p {
    font-size: 2.2rem;
  }
}

/*================================================
* 
================================================*/
#message {
  padding-top: 1rem;
}

.message_wrap {
  display: flex;
  justify-content: start;
  gap: 12rem;
  max-width: 1400px;
  margin: 0 auto;
}

.message_txt {
  padding-top: 3rem;
  width: 66rem;
}

.message_txt p {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 3rem;
}

.message_txt p.ar {
  font-size: 1.4rem;
  margin-top: 4rem;
  display: flex;
  align-items: end;
  justify-content: end;
}

.message_txt p.ar span {
  color: var(--color-primary);
  font-size: 2.4rem;
  margin-left: 2.5rem;
  width: 22rem;
}

@media screen and (max-width:767px) {
  #message {
    padding-top: 0;
  }

  .message_wrap {
    flex-wrap: wrap;
    gap: 0;
  }

  .message_txt {
    width: 100%;
    padding-top: 1rem;
  }

  .message_txt p {
    font-size: 1.4rem;
  }

  .message_txt p.ar {
    font-size: 1.2rem;
    margin-top: 3rem;
  }

  .message_txt p.ar span {
    font-size: 2rem;
    width: 18rem;
  }
}

/*================================================
* sectionImg
================================================*/
.c_sectionImg {
  background: url(../../images/company/c_section_img.jpg) no-repeat center top/cover;
  aspect-ratio: 1366/600;
  width: 100%;
  margin: 12rem 0;
}

@media screen and (max-width:767px) {
  .c_sectionImg {
    background: url(../../images/company/c_section_img_sp.jpg) no-repeat center top/cover;
    aspect-ratio: 390/270;
    margin: 7rem 0;
  }


}

/*================================================
* outline
================================================*/
.outline_wrap {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 17.4rem;
}


.outline_list {
  display: flex;
  align-items: stretch;
  justify-content: start;
  flex-wrap: wrap;
  border-top: 1px solid #DBE0EA;
  width: calc(100% - (17.4rem + 17rem));
  margin-top: 7rem;
  font-size: 1.6rem;
}

.outline_list dt {
  width: 22.7rem;
  padding: 3rem 0 3rem 5rem;
  border-bottom: 1px solid #DBE0EA;
  font-weight: 500;
}


.outline_list dd {
  width: calc(100% - 22.7rem);
  padding: 3rem 0;
  border-bottom: 1px solid #DBE0EA;
  line-height: 1.6;
}

@media screen and (max-width:767px) {
  .outline_wrap {
    flex-wrap: wrap;
    gap: 0rem;
  }

  .outline_list {
    margin-top: 4rem;
    font-size: 1.4rem;
    width: 100%;
  }

  .outline_list dt {
    width: 100%;
    padding: 2rem 0 0;
    border-bottom: none;
  }


  .outline_list dd {
    width: 100%;
    padding: 1rem 0 2rem;
    border-bottom: 1px solid #DBE0EA;
  }
}