/*.title
------------------------------*/
.single h1 {
  margin-bottom: 1.5rem;
}
.single h2 {
  margin-top: 2.5rem;
}
/*.pageSend
------------------------------*/
ul.pageSend {
  margin: 3rem 0 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style-type: none;
  padding: 0;
}
.page_back::before {
  content: "←";
}
.page_next::after {
  content: "→";
}
.page_back {
  margin-right: auto;
}
.page_next {
  margin-left: auto;
}
/*.float
------------------------------*/
.float-left, .float-right {
  border-radius: 4px;
}
.float-right {
  float: right;
  margin: 0.5rem 0 0.5rem 2rem;
}
.float-left {
  float: left;
  margin: 1rem 2rem 0.5rem 0;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 768px) {
  .float-left, .float-right {
    float: none;
    display: block;
    margin: 0 auto 1em auto;
    width: 100%;
    height: auto;
  }
}
/*.post_tags
------------------------------*/
.post_tags {
  display: flex;
  flex-wrap: wrap;
  font-size: var(--font-sm);
  align-items: center;
  gap: 0.8rem 0.4rem;
}
.news_info {
  /*align-items: center;*/
  display: flex;
  gap: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}
ul.post_tags {
  list-style-type: none;
  margin-left: 0 !important;
}
.post_tags a {
  color: var(--gr);
  text-decoration: none;
  padding: 0.2rem 0.7rem;
  background: var(--gr-a);
  border: solid 1px var(--gr);
  border-radius: 50px;
}
@media (max-width: 768px) {
.news_info {
  flex-direction: column;
}
}
/*blockquote
------------------------------*/
blockquote {
  position: relative;
  padding: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  background-color: var(--gr-a);
  border-left: 5px solid var(--gr);
}
blockquote::before, blockquote::after {
  font-size: 2em;
  line-height: 0;
  color: var(--gr);
}
blockquote::before {
  content: '“';
  vertical-align: middle;
}
blockquote::after {
  content: '”';
  vertical-align: bottom;
}
/*.figure
------------------------------*/
figure.figure_center750 {
  width: 750px;
  margin: 1rem auto;
}
figure.figure_center1095 {
  margin: 2rem auto 1rem;
}
figure.figure_center450 {
  width: 450px;
  margin: 2rem auto 1rem;
}
.figure_center750 figcaption, .figure_center450 figcaption, .figure_center1095 figcaption {
  max-width: 100%;
  margin-top: 0.5em;
  font-size: 0.9rem;
  line-height: 1.6;
}
.figure_center750 figcaption details, .figure_center1095 figcaption details, .figure_center450 figcaption details {
  display: block;
  margin-top: 0.5em;
  overflow-wrap: break-word;
}
figure.figure_center1095 img, figure.figure_center750 img, figure.figure_center450 img {
  width: 100%;
  height: auto;
}
@media (max-width: 1095px) {
  figure.figure_center750, figure.figure_center1095, figure.figure_center450 {
    width: 100%;
  }
}
/*.explan_icn
------------------------------*/
.explan_icn {
  /*margin-top: 0.5rem;*/
  display: inline-block;
  position: relative;
  padding-left: 5.5rem;
}
.explan_icn::before {
  content: "解説 ▶";
  position: absolute;
  top: -0.2rem;
  left: 0;
  display: inline-block;
  white-space: nowrap;
  color: #fff;
  background: var(--gr);
  border: solid 2px var(--gr);
  padding: 0.1rem 0.5rem 0.1rem 0.8rem;
  border-radius: 4px;
}
/*.img
------------------------------*/
.single-content img{
    border-radius: 4px; 
}

/*.img_wide, .img_wide img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 4px;
}*/
/*.bottom-cta
------------------------------*/
.single .bottom-cta {}
.single .bottom-cta h2 {
  margin-top: 0;
}
.single .bottom-cta ul {
  margin-left: 0;
  margin-bottom: 0;
}
/*.glossary
------------------------------*/
.glossary {
  /*font-size: 0.7rem;*/
}
.glossary dt {
  font-weight: bold;
}
.glossary dd {
  margin: 0.2rem 0 1rem;
}
/*.list-std
------------------------------*/
.single-content ul, .single-content ol {
  margin-left: 1.2rem;
  margin-bottom: 1rem;
}