@charset "utf-8";


/*============================
MV
============================*/
#mv {
  background-image: url(../img/metals/mv.jpg);
}


/*============================
金属事業
============================*/
#metals {
  padding: 1.7rem 0 1.2rem;
}
@media screen and (max-width: 640px) {
  #metals {
    padding: 0.8rem 0 0.5rem;
  }
}

#metals .anker_wrap {
  margin-top: 0.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 0.1rem;
  padding: 0.4rem;
  box-sizing: border-box;
  margin-bottom: 0.8rem;
}

#metals .anker_wrap .anker_title {
  font-size: 0.2rem;
  font-weight: 700;
  width: 20%; 
}
@media screen and (max-width: 640px) {
  #metals .anker_wrap .anker_title {
    font-size: 0.18rem;
    width: 100%;
    text-align: center;
    margin-bottom: 0.2rem;
  }
}

#metals .anker_wrap .list {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.2rem 0;
}
@media screen and (max-width: 640px) {
  #metals .anker_wrap .list {
    width: 100%;
  }
}

#metals .anker_wrap .list .item {
  font-size: 0.16rem;
  line-height: 1.5;
  width: 30%;
}
@media screen and (max-width: 640px) {
  #metals .anker_wrap .list .item {
    font-size: 0.14rem;
    width: 100%;
  }
}

#metals .anker_wrap .list .item a {
  color: #000;
  position: relative;
  padding-left: 0.25rem;
}

#metals .anker_wrap .list .item a:hover {
  color: #2272D3;
}

#metals .anker_wrap .list .item a::before {
  content: "";
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  background: url(../img/metals/icon_arrow.svg) no-repeat center center / contain;
  left: 0;
  top: 0;
  transition: top 0.3s ease;
}

#metals .anker_wrap .list .item a:hover::before {
  top: 0.05rem;
}

#metals .cont_box {
  margin-top: 0.3rem;
}

#metals .cont_box .cont_title {
  font-size: 0.24rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.15rem;
}
@media screen and (max-width: 640px) {
  #metals .cont_box .cont_title {
    font-size: 0.2rem;
    margin-bottom: 0.2rem;
  }
}

#metals .cont_box .cont_title span {
  position: relative
}

#metals .cont_box .cont_title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #2272D3;
  left: 0;
  bottom: -0.15rem;
}

#metals .cont_box .flex_box {
  display: flex;
  flex-wrap: wrap;
}

#metals .cont_box .flex_box .ph_wrap {
  width: 4rem;
}
@media screen and (max-width: 640px) {
  #metals .cont_box .flex_box .ph_wrap {
    width: 100%;
    margin-bottom: 0.2rem;
  }
}

#metals .cont_box .flex_box .text_wrap {
  width: calc(100% - 4rem);
  box-sizing: border-box;
  padding-left: 0.3rem;
}
@media screen and (max-width: 640px) {
  #metals .cont_box .flex_box .text_wrap {
    width: 100%;
    padding-left: 0;
  }
}

#metals .cont_box .flex_box .text_wrap .text_box { 
  margin-bottom: 0.3rem;
}

#metals .cont_box .flex_box .text_wrap .text_box .text_title {
  font-size: 0.16rem;
  font-weight: bold;
  color: #2272D3;
  background: #E4EDF7;
  border-radius: 0.4rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
  padding: 0.15rem 0.2rem;
  box-sizing: border-box;
}

#metals .cont_box .flex_box .text_wrap .text_box .list {
  padding-left: 0.2rem;
}

#metals .cont_box .flex_box .text_wrap .text_box .list .item {
  font-size: 0.15rem;
  line-height: 2;
  position: relative;
  padding-left: 0.15rem;
}

#metals .cont_box .flex_box .text_wrap .text_box .list .item::before {
  content: "";
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  background-color: #2272D3;
  border-radius: 50%;
  left: 0;
  top: 0.1rem;
}

/*============================
スペック表
============================*/
.spec_wrap {
  background-color: #F2F2F2;
  padding: 0.80rem 0 0.10rem;
}
@media screen and (max-width: 640px) {
  .spec_wrap {
    padding: 0.50rem 0 0.10rem;
  }
}

.spec_wrap .spec_table {
  margin-bottom: 0.80rem;
}
@media screen and (max-width: 640px) {
  .spec_wrap .spec_table_wrap {
    margin-bottom: 0.40rem;
  }
  .spec_wrap .spec_table {
    margin-bottom: 0;
    overflow-x: scroll;
    padding-bottom: 0.20rem;
  }
}

.spec_wrap .spec_table table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 640px) {
  .spec_wrap .spec_table table {
    width: 9.00rem;
  }
}

.spec_wrap .spec_table table th {
  font-size: 0.18rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 0.20rem;
  border-bottom: 1px solid #CCC;
}
@media screen and (max-width: 640px) {
  .spec_wrap .spec_table table th {
    font-size: 0.15rem;
    padding-bottom: 0.15rem;
  }
}

.spec_wrap .spec_table table .symbol {
  width: 9.5%;
}

.spec_wrap .spec_table table td {
  font-size: 0.15rem;
  padding-top: 0.25rem;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .spec_wrap .spec_table table td {
    font-size: 0.13rem;
    padding-top: 0.20rem;
  }
}

.spec_wrap .spec_table table .product_name {
  padding-left: 0.30rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .spec_wrap .spec_table table .product_name {
    padding-left: 0;
  }
}

.spec_wrap .spec_table_wrap .caption {
  font-size: 0.11rem;
}