/* CSS Document */
/*------------------------------
break point
------------------------------*/
/*------------------------------
hr-philosophy
------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap");
:root {
  --color-corp: #008468;
}

#bg {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100lvh;
}

.mv {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 36rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .mv {
    height: auto;
  }
}
.mv_title {
  display: flex;
  align-items: flex-end;
  padding-left: 13.5rem;
  color: var(--color-sub02);
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv_title {
    padding-left: 0;
    padding-block: 10rem 6rem;
    margin-inline: auto;
    flex-direction: column;
    align-items: flex-start;
  }
}
.mv_title p {
  font-size: 7rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
  line-height: 1;
  margin-block: -0.125lh;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .mv_title p {
    font-size: 5.4rem;
  }
}
.mv_title h1 {
  font-weight: 700;
  margin-left: 1rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv_title h1 {
    margin-left: 0.5rem;
    margin-top: 1rem;
  }
}
.mv_title::before {
  content: "";
  position: absolute;
  z-index: 0;
  display: block;
  width: 6.8rem;
  height: 6.8rem;
  background: linear-gradient(to top, #74bce5, #b2ddad);
  overflow: hidden;
  -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
          clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  translate: -50% -25%;
}
@media screen and (max-width: 767px) {
  .mv_title::before {
    width: 8rem;
    height: 8rem;
    translate: -50% -50%;
  }
}

.philosophy {
  position: relative;
  z-index: 1;
}
.philosophy_hd {
  color: var(--color-sub02);
  font-style: italic;
  display: flex;
  align-items: flex-end;
  padding-bottom: 1rem;
  border-bottom: var(--color-main) 1px solid;
}
.philosophy_hd h2 {
  font-size: 3.6rem;
  line-height: 1;
  margin-left: -0.1em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .philosophy_hd h2 {
    font-size: 3.4rem;
  }
}
.philosophy_hd span {
  display: inline-block;
  margin-left: 0.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .philosophy_hd span {
    font-size: 1.4rem;
  }
}

.policy_wrap {
  padding-top: 6rem;
  padding-bottom: 4rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .policy_wrap {
    display: block;
    padding-top: 3.5rem;
  }
}
.policy_text {
  width: calc(50% - 6rem);
}
@media screen and (max-width: 767px) {
  .policy_text {
    width: 100%;
  }
}
.policy_text p {
  line-height: 2;
  margin-block: var(--leading-trim);
  text-align: justify;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .policy_text p {
    line-height: 1.75;
  }
}
.policy_text p strong {
  color: var(--color-corp);
  font-family: "Lato", sans-serif;
}
.policy_figure {
  width: 50%;
  margin-left: 6rem;
}
@media screen and (max-width: 767px) {
  .policy_figure {
    width: 100%;
    margin-left: 0;
    margin-top: 6rem;
  }
}
.policy_figure-top {
  text-align: center;
}
.policy_figure-top .en {
  font-size: 5rem;
  font-weight: 700;
  font-style: italic;
  font-family: "Lato", sans-serif;
  color: var(--color-corp);
  margin-block: var(--leading-trim);
}
.policy_figure-top p {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 0.8rem;
}
.policy_figure-top p strong {
  font-family: "Lato", sans-serif;
  color: var(--color-corp);
}
.policy_figure-top::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1.2rem;
  background-color: var(--color-corp);
  margin-block: 2rem 2.2rem;
  margin-inline: auto;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.policy_figure ul {
  width: 100%;
  height: 40rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .policy_figure ul {
    height: 32rem;
  }
}
.policy_figure ul::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  height: 1px;
  background-color: #c8c8c8;
  width: 27.244rem;
  left: 10rem;
  bottom: 10rem;
  transform-origin: left;
  rotate: -47.23deg;
}
@media screen and (max-width: 767px) {
  .policy_figure ul::after {
    width: 46vw;
    rotate: -52deg;
    left: 8rem;
    bottom: 8rem;
  }
}
.policy_figure-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .policy_figure-item {
    width: 16rem;
    height: 16rem;
  }
}
.policy_figure-item::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.policy_figure-item::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  height: 1px;
  background-color: #c8c8c8;
}
.policy_figure-item.item01 {
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.policy_figure-item.item01::before {
  background-color: var(--color-sub02);
}
.policy_figure-item.item01::after {
  width: 27.244rem;
  left: 50%;
  top: 50%;
  transform-origin: left;
  rotate: 47.23deg;
}
@media screen and (max-width: 767px) {
  .policy_figure-item.item01::after {
    width: 46vw;
    rotate: 52deg;
  }
}
.policy_figure-item.item02 {
  top: 20rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .policy_figure-item.item02 {
    top: 16rem;
  }
}
.policy_figure-item.item02::before {
  background-color: #006ab2;
}
.policy_figure-item.item02::after {
  width: 37rem;
  right: 50%;
  top: 50%;
  transform-origin: right;
}
@media screen and (max-width: 767px) {
  .policy_figure-item.item02::after {
    width: calc(100vw - 4rem - 16rem);
  }
}
.policy_figure-item.item03 {
  top: 20rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .policy_figure-item.item03 {
    top: 16rem;
  }
}
.policy_figure-item.item03::before {
  background-color: #008aba;
}
.policy_figure-item .icon {
  width: 3.5rem;
  margin-top: -2.7rem;
}
@media screen and (max-width: 767px) {
  .policy_figure-item .icon {
    width: 3rem;
  }
}
.policy_figure-item .title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  padding-block: 1rem 1.4rem;
}
@media screen and (max-width: 767px) {
  .policy_figure-item .title {
    padding-block: 1rem 1rem;
  }
}
.policy_figure-item .title::before, .policy_figure-item .title::after {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.1rem;
  background-color: #fff;
}
.policy_figure-item .title::before {
  margin-right: 0.5rem;
}
.policy_figure-item .title::after {
  margin-left: 0.5rem;
}
.policy_figure-item p {
  margin-block: var(--leading-trim);
  line-height: 1.7;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .policy_figure-item p {
    font-size: 1.2rem;
  }
}
.policy_figure-bottom {
  width: 100%;
  text-align: center;
  background-color: #f2f2f2;
  padding-block: 3rem 2.5rem;
  position: relative;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .policy_figure-bottom {
    padding-block: 2rem 1.6rem;
  }
}
.policy_figure-bottom::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 99.5%;
  left: 50%;
  translate: -50% 0;
  width: 2.4rem;
  height: 1.8rem;
  background-color: #f2f2f2;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.policy_figure-bottom .title {
  color: var(--color-corp);
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .policy_figure-bottom .title {
    margin-bottom: 0.6rem;
  }
}
.policy_figure-bottom p {
  line-height: 1.4;
}

.training {
  padding-top: 6rem;
  padding-bottom: 10rem;
  background-color: #fafafa;
}
@media screen and (max-width: 767px) {
  .training {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}
.training_lead {
  padding-block: 4rem 6rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .training_lead {
    line-height: 1.75;
    padding-block: 3.5rem 4rem;
    margin-block: var(--leading-trim);
  }
}
.training_item {
  display: flex;
  align-items: flex-start;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .training_item {
    display: block;
    padding-bottom: 2rem;
  }
}
.training_item + .training_item {
  padding-top: 4.5rem;
  border-top: #4f698a 1px dotted;
}
@media screen and (max-width: 767px) {
  .training_item + .training_item {
    padding-top: 3rem;
  }
}
.training_item .hd {
  display: flex;
  align-items: center;
  color: var(--color-sub02);
  width: 20rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .training_item .hd {
    width: 100%;
    margin-bottom: 1.2rem;
    display: block;
  }
}
.training_item .hd span {
  font-weight: 500;
  display: inline-block;
  margin-right: 1.2rem;
}
@media screen and (max-width: 767px) {
  .training_item .hd span {
    margin-right: 0;
    margin-bottom: 0.4rem;
    font-size: 1.4rem;
  }
}
.training_item .hd p {
  font-size: 2.1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .training_item .hd p {
    font-weight: 700;
  }
}
.training_item .text p {
  line-height: 2;
  text-align: justify;
  margin-top: -0.075lh;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .training_item .text p {
    line-height: 1.75;
  }
}
.training_item .text p + p {
  margin-top: 1rem;
}

.follow,
.advancement,
.culture {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .follow,
.advancement,
.culture {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}
.follow_wrap,
.advancement_wrap,
.culture_wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .follow_wrap,
.advancement_wrap,
.culture_wrap {
    flex-direction: column-reverse;
  }
}
.follow_lead,
.advancement_lead,
.culture_lead {
  padding-block: 4rem 6rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .follow_lead,
.advancement_lead,
.culture_lead {
    line-height: 1.75;
    padding-block: 3.5rem 4rem;
    margin-block: var(--leading-trim);
  }
}
.follow_image,
.advancement_image,
.culture_image {
  width: calc(50% - 6rem);
  margin-right: 6rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .follow_image,
.advancement_image,
.culture_image {
    width: 100%;
    margin-right: 0;
    margin-top: 3rem;
  }
}
.follow_item,
.advancement_item,
.culture_item {
  width: 100%;
}
.follow_item + .follow_item,
.follow_item + .advancement_item,
.follow_item + .culture_item,
.advancement_item + .follow_item,
.advancement_item + .advancement_item,
.advancement_item + .culture_item,
.culture_item + .follow_item,
.culture_item + .advancement_item,
.culture_item + .culture_item {
  margin-top: 5rem;
}
.follow_item-hd,
.advancement_item-hd,
.culture_item-hd {
  line-height: 1;
  color: var(--color-sub02);
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 1.2rem;
  position: relative;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .follow_item-hd,
.advancement_item-hd,
.culture_item-hd {
    font-size: 2.1rem;
    margin-bottom: 2rem;
  }
}
.follow_item-hd::after,
.advancement_item-hd::after,
.culture_item-hd::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, var(--color-sub02) 0%, var(--color-sub02) 8rem, #e6eaed 8rem, #e6eaed);
}
@media screen and (max-width: 767px) {
  .follow_item-hd::after,
.advancement_item-hd::after,
.culture_item-hd::after {
    height: 2px;
  }
}
.follow_item p,
.advancement_item p,
.culture_item p {
  line-height: 2;
  margin-block: var(--leading-trim);
  text-align: justify;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .follow_item p,
.advancement_item p,
.culture_item p {
    line-height: 1.75;
  }
}
.follow_item p strong,
.advancement_item p strong,
.culture_item p strong {
  color: var(--color-sub02);
}

.advancement_wrap {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .advancement_wrap {
    flex-direction: column-reverse;
  }
}
.advancement_image {
  margin-right: 0;
  margin-left: 6rem;
}
@media screen and (max-width: 767px) {
  .advancement_image {
    margin-left: 0;
  }
}

.culture {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .culture {
    padding-bottom: 4rem;
  }
}
.culture_wrap {
  padding-top: 4rem;
}

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid #dfe4eb;
}
/*# sourceMappingURL=hr-philosophy.css.map */