/* single.css */

article h1 {
    font-size: 30px;
}
@media screen and (max-width: 1000px) {
  article h1  {
    font-size: 20px;
  }
}
article h2 {
    font-size: 24px;
}
@media screen and (max-width: 1000px) {
  article h2  {
    font-size: 16px;
  }
}
article h3 {
    font-size: 20px;
}
@media screen and (max-width: 1000px) {
  article h3  {
    font-size: 16px;
  }
}
.wrapper {
  padding-bottom: 100px;
}

/* ---------------------------------------------------------------------
    FirstView
--------------------------------------------------------------------- */
.page_fv {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  max-width: 1000px;
  height: 30vh;
  margin-top: 40px;
  background: url(../img/page_fv-bg.jpg) no-repeat center center/cover;
  overflow: hidden;
  position: relative;
}
.fv-title {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  padding-top: 30px;
  color: #eee;
  font-family: "Viaoda Libre", serif;
  line-height: 1;
}
/* .page_fv-logo {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 60px;
} */

.page_fv-subtitle {
  font-size: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  color: #eee;
  font-family: "Noto Sans JP", sans-serif;
}

.page-main {
  /* max-width: 1000px;
    width: 100%;
    margin-inline: auto;
    margin-top: 40px; */
}

/* ---------------------------------------------------------------------
    entry
--------------------------------------------------------------------- */
.entry-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
}

@media screen and (max-width: 1000px) {
  .entry-head {
  }
}

.entry-label {
  background-color: #039be5;
  border-radius: 5px;
  font-size: 14px;
  padding: 5px 10px;
  line-height: 1;
  color: #000;
}

.entry-title {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .entry-title {
    font-size: 20px;
  }
}

.entry-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .entry-meta {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
}

.entry-image {
  max-width: 200px;
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .entry-image {
    max-width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

.entry-links {
}

.entry-content {
  margin-top: 20px;
}
