@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
a:link,
a:visited,
a:hover,
a:active,
a {
  text-decoration: none !important;
  color: unset;
}

h1,
.h1-like {
  font-size: 24px;
  font-weight: 700;
}

h2,
.h2-like {
  font-size: 16px;
  font-weight: 700;
}

h3,
.h3-like {
  font-size: 14px;
  font-weight: 700;
}

h4,
.h4-like {
  font-size: 11px;
  font-weight: 700;
}

p,
.p-like {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 180%;
}

ul li, ol li {
  font-size: 11px;
}

@media screen and (min-width: 500px) {
  h1,
.h1-like {
    font-size: 32px;
  }

  h2,
.h2-like {
    font-size: 18px;
  }

  h3,
.h3-like {
    font-size: 16px;
  }

  h4,
.h4-like {
    font-size: 12px;
  }

  p {
    font-size: 12px;
  }

  ul li, ol li {
    font-size: 12px;
  }
}
@media screen and (min-width: 800px) {
  h1,
.h1-like {
    font-size: 40px;
  }

  h2,
.h2-like {
    font-size: 24px;
  }

  h3,
.h3-like {
    font-size: 20px;
  }

  h4,
.h4-like {
    font-size: 14px;
  }

  p {
    font-size: 14px;
    line-height: 200%;
  }

  ul li, ol li {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  h1,
.h1-like {
    font-size: 60px;
  }

  h2,
.h2-like {
    font-size: 60px;
  }

  h3,
.h3-like {
    font-size: 25px;
  }

  h4,
.h4-like {
    font-size: 16px;
  }

  p,
.p-like {
    font-size: 16px;
  }

  ul li, ol li {
    font-size: 16px;
  }
}
.info-main .overview {
  background-color: rgba(184, 148, 20, 0.44);
  align-items: center;
  padding: clamp(40px, 10vw, 100px) 0;
  margin: clamp(40px, 10vw, 100px) auto clamp(40px, 10vw, 100px) auto;
}
.info-main .overview .post-area {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  align-items: center;
  padding: clamp(40px, 10vw, 100px) 0;
}
.info-main .overview .post-area .post-row {
  width: 60%;
  margin: 0 auto 10px auto;
  padding-bottom: 10px;
  border-bottom: 1px solid #B89515;
  align-items: center;
  vertical-align: middle;
  line-height: 100%;
}
.info-main .overview .post-area .post-row:last-of-type {
  border-bottom: none;
}
.info-main .overview .post-area .post-row a {
  width: 100%;
}
.info-main .overview .post-area .post-row p {
  width: 75%;
  font-size: 1.15em;
  font-weight: 700;
  color: #2e2e2e;
}
.info-main .overview .post-area .post-row .blog-date {
  width: 25%;
  min-width: 150px;
  font-size: 1.15em;
  color: #B08303;
  font-weight: 700;
}
.info-main .overview .post-area .post-row:hover a {
  background-color: #f3f3f3;
}
.info-main .overview .post-area .post-row:hover a p {
  color: #C3C3C3;
}
.info-main .overview .post-area .post-row:hover a .blog-date {
  color: #B89515;
}
@media screen and (max-width: 1200px) {
  .info-main .overview .post-area .post-row {
    width: 80%;
    margin-left: 10%;
  }
}
@media screen and (max-width: 800px) {
  .info-main .overview .post-area .post-row {
    width: 92%;
    margin-left: 4%;
  }
}
@media screen and (max-width: 600px) {
  .info-main .overview .post-area .post-row {
    flex-direction: column;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    border-bottom: none;
  }
  .info-main .overview .post-area .post-row a {
    flex-direction: column;
  }
  .info-main .overview .post-area .post-row a .blog-date {
    width: 100%;
    border-bottom: 1px solid #B89515;
  }
}

.nav-elements {
  position: relative;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 0;
  border-bottom: 2px solid #B89515;
  border-top: 2px solid #B89515;
}
.nav-elements a:hover {
  color: #B89515;
}
.nav-elements .return-btn {
  width: 40px;
  position: absolute;
  left: calc(50% - 20px);
  top: 15%;
}
.nav-elements .return-btn:hover {
  width: 42px;
}
@media screen and (max-width: 1000px) {
  .nav-elements .return-btn {
    width: 30px;
    top: 20%;
  }
  .nav-elements .return-btn:hover {
    width: 32px;
  }
}
@media screen and (max-width: 600px) {
  .nav-elements .return-btn {
    top: 15%;
  }
}

.post-main .post-container {
  background-color: rgba(184, 148, 20, 0.44);
  align-items: center;
  padding: clamp(40px, 10vw, 100px) 0;
  margin: clamp(40px, 10vw, 100px) auto clamp(40px, 10vw, 100px) auto;
}
.post-main .post-container .post-area {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  align-items: center;
  padding: clamp(40px, 10vw, 100px) 2%;
}
.post-main .post-container .post-area h2 {
  border-bottom: 2px solid #B89515;
  line-height: 180%;
  margin-bottom: clamp(20px, 6vw, 60px);
  max-width: 90%;
}
.post-main .post-container .post-area .return-btn {
  margin-top: clamp(40px, 10vw, 100px);
  align-self: flex-end;
}
.post-main .post-container .post-area .return-btn:hover {
  color: #B89515;
}

/*# sourceMappingURL=post.css.map */
