@charset "UTF-8";

/*
 style-profile
*/

/*============================================================
  profile 会社概要
============================================================*/

#profileWrap {
  padding: 40px 20px;
  max-width: 960px;
  margin: 0 auto;
}


/* ===== 取扱店舗 ===== */
#profile_listWrap{
	margin-bottom: 80px;
}

.profile-list {
  list-style: none;
  padding: 0;
  margin: 0;
	border-top: 1px solid #999;
}

.profile-list li {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  border-bottom: 1px dotted #999;
}

.profile-list li:last-of-type{
	border-bottom: 1px solid #999;
}

.profile-list .profile-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.profile-list .profile-txt {
  font-size: 14px;
  color: #555;
}

@media (min-width: 768px) {
  .profile-list li {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
	  padding-top: 20px;
  }
  .profile-list .profile-title {
    width: 25%;
  }
  .profile-list .profile-txt {
    width: 70%;
  }
}


