/* header ------------------------------------------------------------------------- */
#blog_header .meta li.category a {
  padding: 0 10px;
}
#blog_header .tags {
  margin-top: 10px;
  font-size: 0;
}
#blog_header .tags .form-list__submit {
  display: inline-block;
  margin: 5px 5px 0 0;
  padding: 5px 10px;
  background: #666;
  cursor: pointer;
  color: #fff;
  font-size: .75rem;
  line-height: 1.2;
  transition: all .2s;
}
#blog_header .tags .form-list__submit:hover {
  background: #333;
}
#blog_header .tags .form-list__submit.sub {
  background: #eee;
  color: #000;
}
#blog_header .tags .form-list__submit.sub:hover {
  background: #ccc;
}
@media screen and (max-width: 550px) {
  #blog_header {
    height: auto !important;
  }
  #blog_header_inner {
    height: auto;
    padding: 100px 0;
  }
  #blog_header .title_area {
    position: relative;
    top: auto;
    transform: none;
  }
}

/* cmn ------------------------------------------------------------------------- */
#article .headline {
  margin-bottom: 3rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
#article > div + div {
  margin-top: 6.25rem;
}
.inview {
  opacity: 0;
  position: relative;
}
.inview.animate {
  -webkit-animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
  animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
}
@media screen and (max-width: 750px) {
  #article .headline {
    margin-bottom: 2rem;
    font-size: 1.875rem;
  }
  #article > div + div {
    margin-top: 5rem;
  }
}

/* LINK ------------------------------------------------------------------------- */
.post-custom__link a {
  display: block;
  padding: 1rem .5rem;
  background: #de0000;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.post-custom__link a:hover {
  background: #b60000;
  color: #fff;
}
@media screen and (min-width: 551px) {
  .post-custom__link {
    display: flex;
    justify-content: center;
  }
  .post-custom__link a {
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
    max-width: 300px;
  }
  .post-custom__link a + a {
    margin-left: 20px;
  }
}
@media screen and (max-width: 550px) {
  .post-custom__link a + a {
    margin-top: 10px;
  }
}

/* table ------------------------------------------------------------------------- */
.post-custom__table {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  border-bottom: none;
  box-sizing: border-box;
  font-size: .875rem;
  line-height: 1.5;
}
.post-custom__table dt {
  width: 150px;
  padding: 20px;
  background: #f3f3f3;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  box-sizing: border-box;
  font-weight: 700;
}
.post-custom__table dd {
  width: -webkit-calc(100% - 150px);
  width: calc(100% - 150px);
  padding: 20px;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}
.post-custom__table * + p {
  margin-top: .5rem;
}

/* pr ------------------------------------------------------------------------- */
.post-custom__pr-inner {
  font-size: 1rem;
  line-height: 1.6;
}
.post-custom__pr-inner h1 {
  font-size: 1.25rem;
}
.post-custom__pr-inner h2 {
  font-size: 1.125rem;
}
.post-custom__pr-inner h1,
.post-custom__pr-inner h2,
.post-custom__pr-inner h3,
.post-custom__pr-inner h4,
.post-custom__pr-inner h5,
.post-custom__pr-inner h6 {
  font-weight: 700;
}
.post-custom__pr-inner * + h1,
.post-custom__pr-inner * + h2,
.post-custom__pr-inner * + h3,
.post-custom__pr-inner * + h4,
.post-custom__pr-inner * + h5,
.post-custom__pr-inner * + h6 {
  margin-top: 1.5rem;
}
.post-custom__pr-inner * + p {
  margin-top: .5rem;
}


/* process ------------------------------------------------------------------------- */
.post-custom__process {
  counter-reset: process;
}
.post-custom__process li + li {
  margin-top: 40px;
}
.post-custom__process h4 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.25;
}
.post-custom__process h4:before {
  counter-increment: process;
  content: counter(process) '.';
  margin-right: .5rem;
  font-size: 1.25em;
  line-height: 1;
}
.post-custom__process p {
  font-size: .875rem;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .post-custom__process li + li {
    margin-top: 30px;
  }
  .post-custom__process h4 {
    font-size: 1.125rem;
  }
}


/* related post ------------------------------------------------------------------------- */
#related_post_slider .post_list:after {
  content: '';
  display: block;
  clear: both;
}
#related_post_slider .tags {
  margin-top: 10px;
  font-size: 0;
}
#related_post_slider .form-list__submit {
  display: inline-block;
  margin: 5px 5px 0 0;
  padding: 5px 8px;
  background: #666;
  cursor: pointer;
  color: #fff;
  font-size: .75rem;
  transition: all .2s;
}
#related_post_slider .form-list__submit:hover {
  background: #333;
}
#related_post_slider .form-list__submit.sub {
  background: #eee;
  color: #000;
}
#related_post_slider .form-list__submit.sub:hover {
  background: #ccc;
}