

@charset "utf-8";
/* CSS Document */
.head {
   width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-top: 70px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
position: relative;

}
.head_logo {
  width: 60%;
  margin-bottom: 20px;
}
.head_phone {
    width: 100%;
    margin-bottom: 30px;
    float: left;
    font-size: 1.2em;
    text-align: right;
    text-decoration: underline;
    line-height: 1.8em;
}
@media all and (max-width : 750px) {
  .head {
    width: 80%;
    margin-bottom: 0px;
  }
  .head_logo {
    width: 70%;
    margin-top: 20px;
  }
  .head_phone {
    width: 80%;
    margin-bottom: 30px;
    font-size: 1.2em;
    text-align: center;
    margin-top: 20px;
  }
}
@media all and (max-width : 650px) {
  .head {
    width: 80%;
    margin-bottom: 0px;
    margin-top: 20px;
  }
  .head_logo {
    width: 60%;
    margin-top: 20px;
  }
  .head_phone {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1em;
  }
}
.line {
  width: fit-content;
  border-bottom: 2px solid #000;
    font-weight: bold;

}