<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* readMore */
  .readmore {
  position: relative;
  margin: 1.6rem auto 140px;
  padding: 0;
}

.readmore label {
  position: absolute;
  display: table;
  left: 50%;
  bottom: -60px;
  margin: 0 auto;
  width: 200px;
  padding: 10px 0;
  text-align: center;
  border-radius: 5px;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
}

.readmore label::before{
  content: '繧ゅ▲縺ｨ隕九ｋ';
  background:url("/assets/images/common/icon_close.png") right center no-repeat;
background-size:8px auto;
padding-right: 20px;
}
@media (min-width: 768px) {
.readmore label:hover::before{
  color:#E16D86;
}
}

.readmore input[type="checkbox"]:checked ~ label::before {
  content: '髢峨§繧�';
  background:url("/assets/images/common/icon_open.png") right center no-repeat;
background-size:8px auto;
padding-right: 20px;
}

.readmore input[type="checkbox"]{
  display: none;
}

.readmore-content {
  position: relative;
  height: 0;
  overflow: hidden;
}

.readmore-content p:last-child{
margin-bottom:0;
}

.readmore input[type="checkbox"]:checked ~ .readmore-content {
  height: auto;
}</pre></body></html>