@charset "UTF-8";

/*-- feature --*/
#feature .feature-txt-blk {
  margin-top: 38px;
  display: flex;
  justify-content: flex-end;
}

#feature .feature-txt-blk .txt {
  width: 48%;
  line-height: 2;
}

/*-- value --*/
#value {
  margin-top: 80px;
}

#value .value-txt-blk {
  margin-top: 38px;
  display: flex;
  justify-content: flex-end;
}

#value .value-txt-blk .txt {
  width: 48%;
  line-height: 2;
}

/*-- idea --*/
#idea {
  margin-top: 80px;
}

#idea .inner {
  margin: 0 auto;
  width: 95%;
  border-radius: 16px;
  background-color: #f3faff;
}

#idea .inner .idea-blk {
  padding: 88px 80px;
  text-align: center;
}

#idea .inner .idea-blk .idea-ttl {
  color: var(--main-color);
  font-size: 18px;
  font-weight: bold;
}

#idea .inner .idea-blk .lead {
  margin-top: 32px;
  font-size: 40px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

#idea .inner .idea-blk .idea-txt-blk {
  margin-top: 48px;
}

#idea .inner .idea-blk .idea-txt-blk .txt {
  font-size: 16px;
  line-height: 2;
}

/*-- person --*/
#person {
  margin-top: 80px;
}

#person .person-list .person-item {
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  border-top: 1px solid #f9f9f9;
}

#person .person-list .person-item .person-icon {
  width: 80px;
}

#person .person-list .person-item h4 {
  margin-bottom: 18px;
  color: var(--main-color);
  font-size: 18px;
}

#person .person-list .person-item .person-txt-blk .txt {
  line-height: 2;
}

@media screen and (max-width: 768px) {
  /*-- feature --*/
  #feature .feature-txt-blk .txt{
    width: 100%;
  }

  /*-- value --*/
  #value .value-txt-blk .txt{
    width: 100%;
  }

  /*-- idea --*/
  #idea .inner .idea-blk{
    padding: 40px 0px;
  }

  #idea .inner .idea-blk .lead{
    font-size: 22px;
  }

}