@charset "UTF-8";
@import url(./common.css);
/*==================================================================*/
/* style css　*/
/*==================================================================*/
/* -------------------------------------------- */
/* title */
/* -------------------------------------------- */
#title {
  background: url("/company/image/bg_title.jpg") no-repeat center center;
  background-size: cover;
}

/* -------------------------------------------- */
/* company */
/* -------------------------------------------- */
.profile {
  margin-bottom: 7em;
  box-shadow: 0 0px 15px 0 rgba(0, 0, 0, 0.1);
  padding: 5em;
}
.profile dl {
  display: flex;
  justify-content: space-between;
}
.profile dl:last-child dt {
  border-bottom: 1px solid #000;
}
.profile dl:last-child dd {
  border-bottom: 1px solid #ccc;
}
.profile dl dt {
  width: 20%;
  padding: 1em;
  font-weight: bold;
  border-top: 1px solid #000;
}
.profile dl dd {
  width: 79%;
  padding: 1em;
  border-top: 1px solid #cccccc;
}
.profile dl dd .address {
  display: block;
  margin-bottom: 1em;
}
.profile dl dd .address:last-child {
  margin-bottom: 0;
}
.profile dl dd .address dt, .profile dl dd .address dd {
  border: none;
  padding: 0;
  width: 100%;
}
.profile dl dd ul {
  list-style: decimal;
  margin-left: 1.5em;
}
.profile dl dd .underline {
  text-decoration: underline;
}
.profile dl dd .underline:hover {
  text-decoration: none;
}

/*===========================================================================*/
/*  media quary:1000px  */
/*===========================================================================*/
@media screen and (max-width: 1025px) {
  /* -------------------------------------------- */
  /* company */
  /* -------------------------------------------- */
}
/*===========================================================================*/
/*  media quary:767px  */
/*===========================================================================*/
@media screen and (max-width: 769px) {
  /* -------------------------------------------- */
  /* company */
  /* -------------------------------------------- */
  .profile {
    padding: 3em;
  }
  .profile dl {
    display: block;
  }
  .profile dl dt {
    width: 100%;
    background: #f5f5f5;
  }
  .profile dl dd {
    width: 100%;
    border-top: none;
  }
  .profile dl dd .address dt {
    background: none;
  }
  .profile dl:last-child dt {
    border-bottom: none;
  }
  .profile dl:last-child dd {
    border-bottom: 1px solid #000;
  }
}
/*===========================================================================*/
/*  media quary:479px  */
/*===========================================================================*/
@media screen and (max-width: 479px) {
  .profile {
    padding: 1em;
  }
  .profile dl dt, .profile dl dd {
    padding: 1em .5em;
  }
}
