@charset "utf-8";

/* 一覧 index.html */
/*-----------------------------------------------------------*/
table {
  border-collapse: collapse;
  border: solid 1px var(--bs-gray);
  margin: .2rem 0 2.5rem;
  padding: 0;
  width: 27rem;
}

table thead th {
  color: #7a3d00;
  font-size: .9em;
  text-align: left;
  padding: .5em .5em .5em 1em;
}
table thead tr {
  background-color: #fadec3;
  color:#fff;
}
table tbody {
  font-size: .95em;
}

table tbody th {
  font-size: .9rem;
  padding: .3rem;
  text-align: left;
}
table tr {
  background-color: #fff;
  border-bottom: 1px solid var(--bs-gray);
}
table tr:nth-child(even){
  background-color: #f7f7f7;
}
table th,
table td {
  border: solid 1px #dcdcdc;
}
.txt{
   text-align: left;
   font-size: 1rem;
   text-align: center;
}

@media screen and (max-width: 600px) {
  table {
    border: 0;
    width:100%
  }
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    width: 1px;
  }
  table tbody th {
    color: #fff;
    padding: .6em;
    width: 70%;
}
  table tr {
    margin-bottom: 1rem;
  }
  table th{
    border: solid 1px #fff;
    border-right: none;
  }
  table td {
    border-bottom: 1px dotted #bbb;
    font-size: .8em;
    text-align: right;
    padding: 0;
    border-right: none;
  }
  table td:last-child {
    border-bottom: 0;
  }
  table tr:nth-child(even){
  background-color: #fff;
}
}

.solvents_category {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.solvents_category a {
    transition: 0s;
    color: var(--link-brown);
    font-weight: bold;
    display: block;
    padding: .25em 1em;
    text-decoration: none;
}

.solvents_category a:hover {
  background-color: var(--thin-brown);
  color: var(--link-bright-brown);
  text-decoration: underline;
}

.solvents_category a:hover,
.solvents_category a:active{
  text-decoration: underline;
}

.solvents_ketone {
  margin: 4rem 0 1rem;
}

.solvents_fluorine {
  margin-bottom: 2rem;
}

@media screen and (max-width: 1083px) {
  .solvents_alcohol {
    margin-left: 0;
  }
}

.solvent_h2 {
    color: var(--bs-black);
}

.solvent_contents {
    margin: 0 auto;
    max-width: 925px;
    width: 90%;
}