<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#information {
  width: 1200px;
  margin: 0 auto;
  padding: 60px 0 0 0;
}
.information_box {
  display: flex;
}
.information_left {
  width: 50%;
  padding: 0 50px 0 0;
}
.information_left li {
  display: flex;
  height: 72px;
  align-items: center;
  border-bottom: 1px solid #b3b3b3;
}
.information_left h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.5em;
  letter-spacing: .05em;
  margin-left: 20px;
}
.information_right {
  width: 50%;
}
.information_right img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 767px) {
  #information {
    width: 100%;
    margin: 20px 0 0 0;
    padding: 0 15px;
  }
  .information_box {
    display: block;
    margin: 10px 0 0 0;
  }
  .information_left {
    width: 100%;
    padding: 0;
  }
  .information_left li {
    flex-direction: column;
    height: auto;
    align-items: normal;
  }
  .information_left time {
    padding-left: 15px;
    margin: 10px 0 0 0;
  }
  .information_left h3 {
    font-size: 1.25rem;
    letter-spacing: .125em;
    margin: 5px 0;
    padding: 0 15px;
  }
  .information_right {
    display: none;
  }
}</pre></body></html>