/* ------------------------------
カラーコード
------------------------------ */
:root {
  --white: #fff;
  --beige: #f9f9f8;
  --brown: #433b34;
}

/* ------------------------------
実績詳細
------------------------------ */
.section-content{
  max-width: 800px;
  margin: 160px auto;
}
.works-title img{
  object-fit: contain;
}
.works-title p{
  margin-bottom: 40px;
}
.works-content{
  text-align: left;
}
h2{
  margin: 40px 0 60px;
position: relative;
}
h2::after{
  content: "";
  bottom: -15px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%); 
  width: 30px;
  height: 3px;
  background-color: var(--brown);
  position: absolute;
}
h3{
  margin: 60px 0 30px;
  padding: 10px;
  border-bottom: dotted 3px var(--brown);
}
p{
  margin-bottom: 20px;
}
img{
  width: 100%;
}
ul{
  margin-bottom: 30px;
}
ul li{
  margin-bottom: 10px;
}
.works-content ul li img{
  height: 40px;
  width: auto;
  padding: 5px;
  vertical-align: middle;
}