@charset "UTF-8";
/*--------------------------------------------------------

 company

--------------------------------------------------------*/
.section-title {
  color: var(--main);
}

/* Message
--------------------------------------------------------*/
#message.section {
  margin-bottom: var(--40px);
  position: relative;
  z-index: 1;
}
#message .contents-text {
  color: var(--black);
}
.message-sign {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}
.ceo-photo img {
  width: 20rem;
  border-radius: var(--20px);
}
@media screen and (max-width: 767px) {
  .ceo-photo {
    text-align: center;
    margin-bottom: var(--20px);
  }
  .ceo-photo img {
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  #message .contents-text p {
    line-height: 2;
  }
}


/* Policy
--------------------------------------------------------*/
#policy {
  padding-top: 8rem;
  background: var(--main);
  position: relative;
}
#policy::before,
#policy::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 0;
}
#policy::before {
  top: 0;
  background: var(--white);
  transform: skewY(3deg);
  transform-origin: top right;
}
#policy::after {
  top: 5rem;
  background: var(--light-blue);
  transform: skewY(-3deg);
  transform-origin: top left;
}
.policy-inner {
  display: flex;
  flex-direction: column;
  gap: var(--60px);
  width: 100%;
}
.philosophy .section-title {
  color: var(--white);
}
.philosophy {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
  padding-top: 0.3rem;
}
.management {
  margin-left: auto;
  border-radius: var(--20px) 0 0 0;
  background: var(--white);
}
.management .section-title {
  color: var(--black);
}
.management ol {
  list-style-type: none;
}
.management ol li {
  text-indent: -2em;
  padding: 0.25rem 0;
  margin-left: 2em;
}
@media screen and (max-width: 767px) {
  .philosophy {
    font-size: 1.063rem;
  }
  .philosophy .section-title {
    margin-bottom: 0;
  }
  .management {
    width: 95%;
    padding: var(--40px) 4% var(--20px) var(--40px);
  }
}
@media screen and (min-width: 768px) {
  .management {
    width: 84.63%;
    padding: var(--40px) var(--60px);
  }
}


/* Profile
--------------------------------------------------------*/
.definition-list > dt {
  align-items: center;
}
.officers {
  display: flex;
  flex-wrap: wrap;
}
.officers dt {
  width: 5em;
  text-align: right;
  margin-right: 2em;
}
.officers dd {
  width: calc(100% - 7em);
}