@charset "UTF-8";
.content .graph {
  padding: 16vh 0 12vh;
}

.caption {
  max-width: 1200px;
  margin: auto;
  padding: 0 32px 5vh 32px;
  text-align: left;
}
.caption h2 {
  line-height: 1.3;
}

.news-detail-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 0 32px;
  line-height: 1.8;
}
.news-detail-box p {
  text-indent: 1em;
  font-size: 1em;
  display: block;
  width: 100%;
}
.news-detail-box .bottom3 {
  margin-bottom: 3vh;
}
.news-detail-box .no-indent {
  text-indent: 0;
}
.news-detail-box a {
  color: #337cbd;
  text-decoration: underline;
  transition: 0.1s;
}
.news-detail-box a:hover {
  opacity: 0.5;
}

.back-btn {
  margin: auto;
  width: 300px;
  padding-bottom: 16vh;
}
.back-btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 70px;
  border: 2px solid #595959;
  text-decoration: none;
  color: #323232;
  overflow: hidden;
  transition: color 0.4s;
}
.back-btn a::before {
  content: "←";
  position: absolute;
  left: 24px;
  font-size: 1.2em;
  transition: transform 0.3s;
}
.back-btn a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #595959;
  transition: left 0.4s;
  z-index: -1;
}
.back-btn a:hover {
  color: #fff;
}
.back-btn a:hover::after {
  left: 0;
}
.back-btn a:hover::before {
  transform: translateX(-4px);
}/*# sourceMappingURL=style.css.map */