@charset "UTF-8";

/* =======================================================
* philosophy
* ======================================================= */
#philosophy .philosophy_txt {
  max-width: 650px;
}

#philosophy .philosophy_img {
  position: absolute;
  bottom: -200px;
  right: 0;
  width: 37%;
}

@media screen and (max-width:950px) {
  #philosophy .philosophy_img {
    position: static;
    margin-top: 50px;
    width: 100%;
  }
}



/* =======================================================
* company
* ======================================================= */
#company dl {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#company dl dt {
  width: 15%;
  text-align: center;
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 10px;
  margin-bottom: 25px;
}

#company dl dd {
  width: 85%;
  border-bottom: 1px dotted var(--color-gray);
  padding: 0 0 10px 20px;
  margin-bottom: 25px;
}

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

  #company dl dt {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }

  #company dl dd {
    width: 100%;
    border-bottom: none;
    margin-bottom: 15px;
  }
}



/* =======================================================
* message
* ======================================================= */
#message::before {
  position: absolute;
  content: "";
  width: 70%;
  height: 100%;
  background: rgb(255 255 255 / 10%);
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 0 100px 0 0;
}

#message .message_txt {
  font-weight: bold;
  line-height: 2;
}

#message .message_txt p {
  margin-bottom: 15px;
}

@media screen and (max-width:950px) {
  #message {
    padding-bottom: 10rem;
  }

  #message::before {
    width: 100%;
  }

  #message .message_txt {
    font-size: 1.4rem;
  }

  #message .w30 {
    width: 60%;
    margin: 10px auto 30px;
  }
}