@charset "utf-8";
/* CSS Document */
/* head img--------------------------------------------------------------*/
h2.hd-products > .title {
  background: #FFF;
}
@media (max-width: 1024px) {
  h2.hd-products > .title {
    background: none;
  }
}
/* nav --------------------------------------------------------------*/
.nav-box {
  background: #FFF;
}
ul.nav {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-around;
}
ul.nav li::before {
  display: inline-block;
  content: "";
  top: 50%;
  left: -1.5em;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(-50%) rotate(135deg);
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  margin-right: 1rem;
}
@media (max-width: 1024px) {
  ul.nav {
    display: block;
    padding: 0 1rem;
  }
  ul.nav li {
    padding: 1rem 0;
    margin: 0;
    border-bottom: 1px solid #D0D0D0;
  }
  ul.nav li::before {}
}
/* area --------------------------------------------------------------*/
.area-01, .area-02 {
  background: #DDF8F2;
}
.area-01 .container {
  width: 60rem;
  padding: 3rem 2rem 0;
}
.area-02 .container h3 {
  font-size: 1.5rem;
  background-color: #4CD6B4;
  width: 100%;
  color: #FFF;
  font-weight: bold;
  text-align: left;
  padding: 2rem 0 2rem 5rem;
}
.area-02 dl {
  background: #FFF;
  margin: 2rem auto;
  padding: 1rem;
}
.area-02 dl dt {
  color: #019A74;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
  border-bottom: #E5E5E5 1px solid;
  padding: 1rem 0;
  align-items: flex-start;
}
.area-02 dl dt a {
  display: flex;
  width: 100%;
  align-items: flex-start;
}
.area-02 dl dt figure {
  display: flex;
  justify-content: end;
  margin-left: auto;
  vertical-align: middle;
  position: relative;
  align-items: center;
  margin-top: 1rem;
}
.area-02 figure.icon-dl {
  text-align: right;
}
.area-02 figure.icon-dl img {
	width: 3rem;
}
.area-02 figure.icon-dl::before {
  content: "資料ダウンロード";
  font-size: 0.9rem;
  color: #999;
  font-weight: normal;
  width: 10rem;
  margin-right: 1rem;
}
.area-02 dl dd {
  display: flex;
  justify-content: space-between;
  color: #999;
  padding: 2rem 0 1rem;
}
.area-02 dl dd span {
  background: #F4F4F4;
  color: #999999;
  padding: 0.5rem;
  font-weight: bold;
  margin-right: 1rem;
}
@media (max-width: 1024px) {
	.area-01 .container {
  padding: 1rem 2rem 0;
}
  .area-02 .container {
    width: 90%;
  }
  .area-02 dl dt img {
    width: 20px
  }
	.area-02 figure.icon-dl::before {
}
  .area-02 dl dt figure.icon-dl img {
    width: 30px;
  }
  .area-02 dl dd {
    display: block;
  }
	.area-02 dl dd section{
		padding-bottom: 1rem;
  }
  .area-02 dl dt a {
    display: block;
  }
  .area-02 figure.icon-dl {
    display: block;
    width: 100%;
  }
}
/* ttl--------------------------------------------------------------*/
.icon-title-wt {
  display: flex;
  justify-content: center;
  margin: auto;
  position: relative;
  font-size: 2rem;
  text-align: center;
  flex-direction: column;
}
.icon-title-wt::before {
  content: '';
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  background-image: url("/assets/images/products/article/icon-ttl-wt.svg");
  width: 16px;
  height: 16px;
}
.txt-gray {
  color: #666666;
}
.txt-green {
  color: #0C9F7B;
}
