@charset "UTF-8";

.wrapper {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}
.wrapper::after {
  content: "";
  display: block;
  clear: both;
}
/*-------------------------------------------
btn
--------------------------------------------*/
.btn {
  width: 100%;
  max-width: 200px;
  border: solid 1px #ccc;
  background-color: #fff;
  color: #1f1f1f;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 60px;
  position: relative;
  text-align: center;
  display: block;
  margin: 0 auto;
  border-radius: 30px;
  white-space: nowrap;
}
.btn:hover {
  background-color: #f5f5f5; 
  color: #1f1f1f; 
  border: solid 1px #888; 
}

/*-------------------------------------------
Section Title
--------------------------------------------*/
.section-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 60px;
  position: relative;
}
.section-title span {
  max-width: 1000px;
  display: block;
  padding: 0 20px;
  margin: 0 auto;
}
.section-title::before {
  content: "";
  width: calc((100% - 1000px) / 2);
  height: 1px;
  background-color: #1f1f1f;
  position: absolute;
  top: 12px;
  left: 0;
}
/*-------------------------------------------
Post
--------------------------------------------*/
.text time,
.text .category {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 30px;
  font-size: 16px; 
  font-weight: 500;
}
.text time {
  margin-right: 30px;
}
.text .title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 40px; 
}
.post-headerimage  img {
  text-align: center;
  margin-bottom: 60px;
}
.post-list {
  margin-bottom: 60px;
}
.post-list li {
  align-items: center;
  padding: 20px 0;
}
.post-list li .text {
  width: 100%;
  padding: 0px  ;
}
.post-list li .text dl.info {
  display: flex;
  flex-wrap: wrap; 
  margin-top: 10px;
}
.post-list li .text dl.info dt,
.post-list li .text dl.info dd {
  padding: 10px 0;
  border-bottom: 1px solid #ccc; 
}
.post-list li .text dl.info dt {
  width: 100px; 
  flex-shrink: 0;
  font-weight: 500;
}
.post-list li .text dl.info dd {
  width: calc(100% - 120px); 
  padding-left: 10px;
}

/*-------------------------------------------
スマートフォン767px以下
-------------------------------------------*/
@media screen and (max-width: 767px) { 
  .section-title {
      font-size: 24px;
    }
  .section-title::before {
    content: none;
  }  




}