/* BR */

@media screen and (min-width: 680px){   
  .pc { display:block; }
  .sp { display:none; }
}
@media screen and (max-width: 680px){   
  .pc { display:none; }
  .sp { display:block; }
}

/* base */
main#topics a {
  text-decoration: underline;
  color: #0066ff;
}
.center { text-align: center;}
.bold {font-weight: bold;}
.red {color: #da0000;}
.end {margin: 40px auto; text-align: center; color: #ff0000; font-weight: 900;}


/* Subbox */
.subbox {
  margin: 20px;
  padding: 20px;
  border: solid 1px #000;
}

.subbox h4 {
  font-size:1.3em;
  font-weight: bold;
  padding: 10px 0;
  line-height: 1.3em;
}

.button {
  max-width: 300px;
  border-radius: 20px;
  margin: 30px auto 50px;
  background: #ffcc33;
  text-align: center;
  padding: 20px;
}

/* MARKING LINE */
.linered{background:linear-gradient(transparent 65%, #ffadad 60%); font-weight: bold;}
.lineblue{background:linear-gradient(transparent 65%, #c1e0ff 60%);font-weight: bold;}
.lineyellow{background:linear-gradient(transparent 65%, #fff799 60%);font-weight: bold;}


/* Custam */

div.advice {
  width: 93.75%;
  max-width: 760px;
  margin: auto;
}

div.advice h4{
  padding: 10px 0;
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.5em;
  background: #cde4f6;
  border-radius: 10px;
}

div.advice dl{
  margin: 20px 0 40px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

div.advice dl dt{
  max-width: 30%;
  padding: 20px;
}

div.advice dl dd{
  max-width: 55%;
  padding: 20px;
}

div.advice dl dd p{
  font-size: 2rem;
  line-height: 30px;
  letter-spacing: 0.05em;
  margin-bottom: 1.5em;
}


/* SMART PHONE STYLE */
@media screen and (max-width: 680px){   

  div.advice dl dt{
    max-width: 90%;
    padding: 0 20px;
  }
  
  div.advice dl dd{
    max-width: 90%;
    padding: 20px;
  }
  div.advice dl dd p{
    margin-bottom: 0em;
  }
}