body {
  background-color: #f3f1f1;
}

.common_top .section_title{
  padding: 150px 0 0;
}

.home_message_section {
  background-color: #ffffff;
  display: flex;
  justify-content:center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 50px 7vw ;
}

.home_message_part {
  width:250px;
}

.home_message_part div:first-child{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
}

.home_message_part .point {
  border-bottom: solid 2px #ea3700;
  color: #ea3700;
  font-size: 24px;
  height: fit-content;
  font-style: italic;
}

.home_message_part .point_number {
  font-size: 60px;
  line-height: 60px;
  color: #ea3700;
  margin: 0 20px;
}

.home_message_part h2{
  font-size: 21px;
}

.message{
  padding-bottom: 20px;
  background-color: #ffffff;
}

.message_aricle {
  min-height: 250px;
  margin: 20px 10vw 50px 10vw;
}

.message_text {
  float: right;
  width: 120px;
  height: fit-content;
  padding: 20px 20px 10px 20px;
}

.message_text_name {
  font-size: 12px;
}

.message_aricle p {
  margin: 0;
}

@media screen and (max-width: 700px) {
  .common_top .section_title{
    padding: 110px 0 0;
  }

  .home_message_section {
    display: flex;
    flex-flow: column;
    padding: 20px 7vw;
  }

  .home_message_part {
    width:fit-content;
  }

  .home_message_part div:first-child{
    grid-template-columns: auto 1fr;
  }

  .home_message_part .point {
    font-size: 18px;
    width: fit-content;
    padding-right:20px ;
  }

  .home_message_part .point_number{
    font-size: 40px;
    line-height: 40px;
    margin: 0 5px;
  }

  .message_aricle {
    margin-left: 20px;
    margin-right: 20px;
  }

  .message_aricle p {
    font-size: 14px;
    padding-bottom: 30px;
    
  }
}






