@charset "UTF-8";

/* ----------------------------------------------------------------
	licenses
---------------------------------------------------------------- */
.cont01 {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto 90px;
}
.cont01 h3 {
  width: 22%;
  font-size: 32px;
  font-weight: 700;
  padding-left: 40px;
  position: relative;
}
.cont01 h3::before {
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  position: absolute;
  left: 0;
  top: 22px;
  background: url("../images/common/mds01.svg") left center / contain no-repeat;
}
.cont01 img {
  width: 24%;
  border-radius: 20px;
} 
.cont01 ul {
  width: 48%;
}
.cont01 ul li {
  font-size: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid #D6D5CB;
}
.cont01 .table {
  width: 48%;
	display: table;
	border-collapse: collapse;
}
.cont01 .table dl {
	display: table-row;
}
.cont01 .table dl dd {
	display: table-cell;
	width: 0%;
	padding: 12px 20px;
  border-bottom: 1px solid #D6D5CB;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cont01 .table dl dt {
	display: table-cell;
	width: 0%;
	padding: 12px 20px;
  border-bottom: 1px solid #D6D5CB;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/* Smartphone
----------------------------------------------- */
@media print,screen and (max-width: 999px) {
  .cont01 {
    display: block;
    margin: 0 auto 15.19vw;
  }
  .cont01 h3 {
    width: 100%;
    font-size: 5.82vw;
    padding-left: 8.86vw;
    margin-bottom: 10.13vw;
  }
  .cont01 h3::before {
    width: 7.59vw;
    height: 1.01vw;
    top: 3.53vw;
  }
  .cont01 img {
    display: block;
    width: 70.89vw;
    margin: 0 auto 10.13vw;
  } 
  .cont01 ul {
    width: 100%;
  }
  .cont01 ul li {
    width: 100%;
    font-size: 3.29vw;
    padding: 6.33vw 0;
  }
  .cont01 .table {
    width: 100%;
    display: table;
    border-collapse: collapse;
  }
  .cont01 .table dl dd {
    width: 35%;
    padding: 6.33vw 0;
    text-align: right;
  }
  .cont01 .table dl dt {
    width: 65%;
    padding: 6.33vw 0;
  }
}/* Smartphone End */