@charset "UTF-8";
/* ===================================
共通
=================================== */
.el_bread {
  position: relative;
  background-color: rgba(206, 201, 193, 0.2);
  padding: 10px 40px;
}

.el_bread_list {
  overflow: auto;
  word-break: keep-all;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.el_bread_list li {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 12px;
  font-weight: 400;
  font-size: 12px;
  font-weight: 400;
}
.el_bread_list li.el_bread_list_top {
  display: flex;
  align-items: center;
}
.el_bread_list li.el_bread_list_top a {
  transition: 0.3s;
}
.el_bread_list li.el_bread_list_top a:hover {
  opacity: 0.6;
}
.el_bread_list li.el_bread_list_top .slash {
  display: block;
  width: 1px;
  height: 20px;
  background-color: #CEC9C1;
  transform: rotate(25deg);
  margin: 0 15px;
}

@media screen and (max-width: 1200px) {
  .el_bread {
    padding: 10px 24px;
  }
}
@media screen and (max-width: 599px) {
  .el_bread_list li {
    font-size: 10px;
  }
}
.sec .page_inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
.sec.page_fv_sec {
  padding: 0 20px;
  padding-top: 80px;
}

@media screen and (max-width: 599px) {
  .sec .page_inner {
    padding-top: 0;
  }
  .sec.page_fv_sec {
    padding: 0 20px;
    padding-top: 100px;
  }
}
.page_ttl_wrap {
  margin-bottom: 60px;
}
.page_ttl_wrap .p_ttl {
  font-size: 160px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.page_ttl_wrap .p_ttl_sub {
  margin-top: 29px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.1em;
}

.p_txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
}

@media screen and (max-width: 767px) {
  .page_ttl_wrap {
    margin-bottom: 50px;
  }
  .page_ttl_wrap .p_ttl {
    font-size: 140px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .page_ttl_wrap .p_ttl_sub {
    margin-top: 10px;
    font-size: 22px;
  }
}
@media screen and (max-width: 599px) {
  .page_ttl_wrap .p_ttl {
    font-size: 120px;
  }
  .page_ttl_wrap .p_ttl_sub {
    margin-top: 0px;
    font-size: 20px;
  }
}
@media screen and (max-width: 428px) {
  .page_ttl_wrap .p_ttl {
    font-size: 100px;
  }
  .page_ttl_wrap .p_ttl_sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 428px) {
  .page_ttl_wrap .p_ttl {
    font-size: 90px;
  }
  .page_ttl_wrap .p_ttl_sub {
    font-size: 16px;
  }
}
@media screen and (max-width: 320px) {
  .page_ttl_wrap .p_ttl {
    font-size: 60px;
  }
}
/* ===================================
サービス内容
=================================== */
/* FV
==============================*/
.service_link_list {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}
.service_link_list li {
  width: calc(33.3333333333% - 10px);
}
.service_link_list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  background-color: #333333;
  border: 1px solid #333;
  border-radius: 100px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}
.service_link_list li a span {
  font-size: 14px;
}
.service_link_list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url(../img/service/page_link_icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.3s;
}
.service_link_list li a:hover {
  background-color: transparent;
  color: #333;
}
.service_link_list li a:hover::before {
  transform: translateY(-40%);
  background-image: url(../img/service/page_link_icon_hover.svg);
}

@media screen and (max-width: 1200px) {
  .service_link_list li a::before {
    right: 6%;
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 1050px) {
  .service_link_list li a {
    font-size: 16px;
    padding: 8px;
  }
  .service_link_list li a span {
    font-size: 12px;
  }
  .service_link_list li a::before {
    top: 37%;
    right: 5%;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 900px) {
  .service_link_list {
    flex-direction: column;
  }
  .service_link_list li {
    width: 100%;
  }
  .service_link_list li:nth-of-type(n+2) {
    margin-top: 15px;
  }
  .service_link_list li a::before {
    top: 50%;
    right: 5%;
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 599px) {
  .service_link_list li a {
    padding: 5px;
  }
}
/* サービス紹介
==============================*/
.page .sec .sec_inner.service_inner {
  padding-top: 40px;
}

.service_cont_box {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  padding-top: 100px;
  margin-top: -100px;
  margin-bottom: 150px;
}
.service_cont_box:last-of-type {
  margin-bottom: 0;
}
.service_cont_box .sb_ttl_area {
  position: sticky;
  top: 100px;
  flex-shrink: 0;
  height: 100%;
  padding-top: 10px;
}
.service_cont_box .sb_ttl_area .sb_ttl {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
}
.service_cont_box .sb_ttl_area .sb_ttl::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  background-image: url(../img/service/sb_ttl_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service_cont_box .sb_content_area {
  width: 100%;
  max-width: 740px;
}

.sb_c_box {
  margin-bottom: 100px;
}
.sb_c_box:last-of-type {
  margin-bottom: 0;
}
.sb_c_box .sb_c_ttl_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 11px;
  margin-bottom: 30px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.sb_c_box .sb_c_ttl_wrap .sb_c_ttl {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.sb_c_box .sb_c_ttl_wrap .sb_c_price {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.sb_c_box .sb_c_txt {
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 400;
}
.sb_c_box .sb_c_txt_list li {
  padding-left: 15px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6em;
  text-indent: -15px;
}
.sb_c_box .sb_c_txt_list li:last-of-type {
  margin-bottom: 0;
}
.sb_c_box .sb_c_txt_list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  vertical-align: 4px;
  border-radius: 100%;
  background-color: #333;
}
.sb_c_box .sb_c_list {
  display: flex;
  flex-wrap: wrap;
}
.sb_c_box .sb_c_list li {
  margin-right: 6px;
  margin-bottom: 6px;
  padding: 0px 7px;
  margin-right: 6px;
  border: 1px solid #CEC9C1;
  font-size: 14px;
  font-weight: 400;
}
.sb_c_box .sb_c_demo_wrap {
  margin-top: 23px;
}
.sb_c_box .sb_c_demo_wrap .sb_c_demo {
  margin-top: 12px;
}
.sb_c_box .sb_c_demo_wrap .sb_c_demo a {
  display: block;
  width: fit-content;
  margin: auto;
  font-size: 14px;
  text-decoration: underline;
  transition: 0.3s;
}
.sb_c_box .sb_c_demo_wrap .sb_c_demo a::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 6px;
  background-image: url(../img/common/external_icon_b.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sb_c_box .sb_c_demo_wrap .sb_c_demo a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1000px) {
  .service_cont_box {
    gap: 45px;
  }
  .service_cont_box .sb_c_box .sb_c_ttl_wrap .sb_c_ttl {
    font-size: 18px;
  }
  .service_cont_box .sb_c_ttl_wrap .sb_c_price {
    font-size: 18px;
  }
}
@media screen and (max-width: 900px) {
  .service_cont_box {
    margin-bottom: 95px;
  }
  .sb_c_box {
    margin-bottom: 60px;
  }
  .service_cont_box {
    gap: 0;
    flex-direction: column;
  }
  .service_cont_box .sb_ttl_area {
    position: initial;
    margin-bottom: 25px;
  }
  .service_cont_box .sb_content_area {
    max-width: none;
  }
}
@media screen and (max-width: 599px) {
  .service_cont_box .sb_ttl_area .sb_ttl {
    font-size: 18px;
  }
  .sb_c_box .sb_c_ttl_wrap .sb_c_ttl {
    font-size: 18px;
  }
  .sb_c_ttl_wrap .sb_c_price {
    font-size: 18px;
  }
}
/* オプション
==============================*/
.page .sec_inner.option_inner {
  padding-bottom: 100px;
}

.option_sec {
  background-color: #333;
}

.s_ttl_02 {
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
  font-size: 60px;
  font-weight: 400;
}

.s_txt_02 {
  margin-bottom: 60px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.option_table {
  max-width: 1040px;
  width: fit-content;
  margin: auto;
}
.option_table table th,
.option_table table td {
  border: 1px solid #555;
  padding: 20px 10px;
  font-size: 14px;
  line-height: 1.4em;
  vertical-align: middle;
}
.option_table table th span,
.option_table table td span {
  font-size: 12px;
}
.option_table table th {
  background-color: #444444;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.option_table table th:first-of-type {
  min-width: 220px;
}
.option_table table th:nth-of-type(3) {
  min-width: 160px;
}
.option_table table td {
  color: #fff;
}
.option_table table td.price {
  text-align: right;
}
.option_table table tr:first-of-type th {
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .option_table table th:first-of-type {
    min-width: 120px;
    padding: 15px 10px;
  }
}
@media screen and (max-width: 599px) {
  .option_table {
    word-break: keep-all;
    width: 550px;
    overflow: auto;
  }
}
/* ===================================
コラム一覧
=================================== */
.c-inner-s {
  padding: 60px 0;
}

.c-post_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 30px;
  justify-content: flex-start;
}
.c-post_list .c-post_item {
  width: calc((100% - 60px) / 3);
}
.c-post_list .c-post_item a {
  transition: 0.3s;
}
.c-post_list .c-post_item a img,
.c-post_list .c-post_item a p {
  transition: 0.3s;
}
.c-post_list .c-post_item a:hover img {
  transform: scale(1.04);
  transition: 0.3s;
}
.c-post_list .c-post_item a:hover p {
  color: #ED8423;
  transition: 0.3s;
}
.c-post_list .c-post_item a .c-img_box {
  overflow: hidden;
  border-radius: 8px;
}

.c-post_wrap .pager {
  margin-top: 40px;
}
.c-post_wrap .pager .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.c-post_wrap .pager .nav-links .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  width: 35px;
  border: 1px solid #333;
  border-radius: 100%;
  transition: 0.3s;
}
.c-post_wrap .pager .nav-links .page-numbers.current {
  cursor: default;
  background-color: #333;
  color: #fff;
}
.c-post_wrap .pager .nav-links .page-numbers.dots {
  cursor: default;
  display: block;
  border: none;
  aspect-ratio: unset;
}
.c-post_wrap .pager .nav-links .page-numbers.prev {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  aspect-ratio: unset;
  font-size: 14px;
  margin-right: 10px;
}
.c-post_wrap .pager .nav-links .page-numbers.prev::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 4px;
  background-image: url(../img/column/icon-arrow-prev.svg);
}
.c-post_wrap .pager .nav-links .page-numbers.next {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  aspect-ratio: unset;
  font-size: 14px;
  margin-left: 10px;
}
.c-post_wrap .pager .nav-links .page-numbers.next::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 4px;
  background-image: url(../img/column/icon-arrow-next.svg);
}
@media (hover: hover) {
  .c-post_wrap .pager .nav-links .page-numbers:hover {
    opacity: 0.6;
  }
  .c-post_wrap .pager .nav-links .page-numbers:hover.current, .c-post_wrap .pager .nav-links .page-numbers:hover.dot {
    opacity: 1;
  }
  .c-post_wrap .pager .nav-links .page-numbers:hover.prev,
  .c-post_wrap .pager .nav-links .page-numbers:hover .next {
    opacity: 0.6;
  }
}

.c-text_box .c-ttl {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.c-text_box .c-bottom_area {
  margin-top: 8px;
  font-size: 12px;
}
.c-text_box .c-bottom_area .c-time {
  color: #bbb;
}
.c-text_box .c-bottom_area .c-cat {
  display: none;
}

@media screen and (max-width: 767px) {
  .c-post_list {
    gap: 40px 20px;
  }
  .c-post_list .c-post_item {
    width: calc((100% - 20px) / 2);
  }
  .c-post_list .c-post_item a .c-img_box {
    border-radius: 4px;
  }
}
@media screen and (max-width: 599px) {
  .c-inner-s {
    padding: 20px 0 50px;
  }
  .c-text_box .c-ttl {
    font-size: 16px;
  }
}
@media screen and (max-width: 365px) {
  .c-post_list {
    margin-top: 0;
    gap: 60px;
  }
  .c-post_list .c-post_item {
    width: 100%;
  }
}
/* ===================================
コラム詳細
=================================== */
.article_title {
  font-size: 44px;
  line-height: 1.4;
  font-family: "Shippori Mincho", serif;
}

.article_date {
  margin-top: 20px;
  font-size: 14px;
  color: #bbb;
}

.article_eyecatch {
  margin-top: 2rem;
}
.article_eyecatch img {
  border-radius: 8px;
}

.article_area {
  margin-top: 60px;
}
.article_area h2 {
  margin-top: 9rem;
  padding: 14px 20px;
  background: rgba(206, 201, 193, 0.2);
  border-radius: 6px;
  font-family: "Shippori Mincho", serif;
  font-size: 26px;
  line-height: 1.4;
}
.article_area h3 {
  margin-top: 4rem;
  padding: 10px 0px 6px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 3px solid #ED8423;
}
.article_area h4 {
  display: flex;
  align-items: center;
  margin-top: 4rem;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.article_area h4::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  background-image: url(../img/service/sb_ttl_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.article_area p {
  margin-top: 2.4rem;
  font-size: 16px;
  line-height: 1.8;
}
.article_area p a {
  color: #ED8423;
  text-decoration: underline;
  transition: 0.3s;
}
.article_area p a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.article_area ul {
  margin-top: 20px;
}
.article_area ul li {
  list-style-type: none;
  position: relative;
  padding-left: 1em;
  font-size: 16px;
  line-height: 1.8;
}
.article_area ul li::before {
  border-radius: 50%;
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  left: 0.2em;
  top: 0.68em;
  content: "";
  background: #bbb;
}
.article_area .has-small-font-size {
  font-size: 12px !important;
}
.article_area .has-luminous-vivid-orange-color {
  color: #ED8423 !important;
  font-size: 116%;
}
.article_area .wp-block-image {
  margin: 3rem 0;
}
.article_area .wp-block-image img {
  border: solid 1px #eee;
}
.article_area .wp-block-image figcaption {
  margin-top: 0.8em;
}
.article_area .wp-block-image .wp-element-caption {
  font-size: 12px;
  line-height: 1.5;
}
.article_area .wp-block-image .wp-element-caption a {
  color: #ED8423;
  text-decoration: underline;
  transition: 0.3s;
}
.article_area .wp-block-image .wp-element-caption a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

@media screen and (max-width: 599px) {
  .article_eyecatch {
    margin-top: 1.5rem;
  }
  .article_area h2 {
    margin-top: 7rem;
    padding: 14px 20px;
    font-size: 22px;
  }
  .article_area h3 {
    margin-top: 2rem;
    padding: 10px 0px 4px;
    font-size: 18px;
  }
  .article_area h4 {
    font-size: 16px;
  }
  .article_area h4::before {
    width: 22px;
    height: 22px;
    margin-right: 6px;
  }
  .article_area p {
    margin-top: 2rem;
    font-size: 14px;
  }
  .article_area .wp-block-image {
    margin: 2.4rem 0;
  }
  .article_area ul li {
    font-size: 14px;
  }
}
/* 記事内CTA */
.cta_column {
  display: flex;
  margin-top: 140px;
  padding: 40px 40px 50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.04);
}
.cta_column .cta_column_title {
  font-size: 32px;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
}
.cta_column .cta_column_text {
  font-size: 16px;
  line-height: 2;
}
.cta_column .cta_column_link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.cta_column .btn_c_contact {
  width: 100%;
}
.cta_column .btn_c_contact br.sp_br {
  display: none;
}
@media screen and (max-width: 600px) {
  .cta_column .btn_c_contact br.sp_br {
    display: block;
  }
}
.cta_column .btn_c_contact a {
  display: block;
  width: 100%;
  border-radius: 200px;
  background: #ED8423;
  color: #fff;
  border: solid 1px #ED8423;
}
.cta_column .btn_c_contact a::before {
  background-image: url(../img/column/icon-message.svg);
}
@media (hover: hover) {
  .cta_column .btn_c_contact a:hover {
    background-color: #fff;
    border: solid 1px #ED8423;
    color: #ED8423;
    transition: 0.3s;
  }
  .cta_column .btn_c_contact a:hover::before {
    background-image: url(../img/column/icon-message-orange.svg);
  }
}
.cta_column .btn_c_works {
  width: 100%;
  border-radius: 200px;
  background: rgba(206, 201, 193, 0.2);
  border-radius: 200px;
}
.cta_column .btn_c_works a {
  border-radius: 200px;
}
.cta_column .btn_c_works a::before {
  background-image: url(../img/column/icon-gallery.svg);
}
.cta_column .btn_c_works a:hover {
  background-color: #111;
  transition: 0.3s;
  color: #fff;
}
.cta_column .btn_c_works a:hover::before {
  background-image: url(../img/column/icon-gallery-white.svg);
}
.cta_column .btn_c_contact a,
.cta_column .btn_c_works a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 30px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transition: 0.3s;
}
.cta_column .btn_c_contact a::before,
.cta_column .btn_c_works a::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 599px) {
  .cta_column {
    margin-top: 100px;
    padding: 30px 24px 40px;
    gap: 24px;
    border-radius: 8px;
  }
  .cta_column .cta_column_title {
    font-size: 22px;
  }
  .cta_column .cta_column_text {
    font-size: 14px;
    line-height: 1.8;
  }
  .cta_column .btn_c_contact a,
  .cta_column .btn_c_works a {
    padding: 20px 20px 22px;
    font-size: 16px;
  }
  .cta_column .btn_c_contact a::before,
  .cta_column .btn_c_works a::before {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 500px) {
  .cta_column .btn_c_contact a,
  .cta_column .btn_c_works a {
    line-height: 1.4;
    height: 80px;
  }
  .cta_column .btn_c_contact a::before,
  .cta_column .btn_c_works a::before {
    display: none;
  }
}
/* ページャー */
.single-pager {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  padding: 40px 24px;
  border-top: solid 1px #CEC9C1;
  border-bottom: solid 1px #CEC9C1;
}
.single-pager .pager_item--prev,
.single-pager .pager_item--next {
  width: 160px;
}

.pager_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 14px;
  transition: 0.3s;
}
.pager_item a:hover {
  background: rgba(206, 201, 193, 0.2);
  opacity: 1;
  transition: 0.3s;
}
.pager_item a::before, .pager_item a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pager_item--prev a::before {
  margin-right: 4px;
  background-image: url(../img/column/icon-arrow-prev.svg);
}

.pager_item--all a::before {
  margin-right: 4px;
  background-image: url(../img/column/icon-list.svg);
}

.pager_item--next a::after {
  margin-left: 4px;
  background-image: url(../img/column/icon-arrow-next.svg);
}

@media screen and (max-width: 599px) {
  .single-pager .pager_item--prev,
  .single-pager .pager_item--next {
    width: 70px;
  }
}
@media screen and (max-width: 599px) {
  .pager_item a {
    font-size: 12px;
  }
}
/* 関連記事 */
.related-posts {
  margin: 100px 0 80px;
}
.related-posts .related_title {
  font-size: 28px;
  font-family: "Shippori Mincho", serif;
}
.related-posts .c-post_list {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .related-posts .c-post_list {
    gap: 30px;
  }
  .related-posts .c-post_list .c-post_item {
    width: 100%;
  }
  .related-posts .c-post_list .c-post_item a {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .related-posts .c-post_list .c-post_item a .c-img_box {
    width: 30%;
    border-radius: 4px;
  }
  .related-posts .c-post_list .c-post_item a .c-text_box {
    width: 70%;
  }
  .related-posts .c-post_list .c-post_item a .c-text_box .c-ttl {
    margin-top: 0;
    font-size: 14px;
  }
  .related-posts .c-bottom_area {
    display: none;
  }
  .pager_item a {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 599px) {
  .article_title {
    font-size: 32px;
  }
  .related-posts .related_title {
    font-size: 22px;
  }
}
@media screen and (max-width: 365px) {
  .single-pager {
    padding: 30px 0px;
  }
}
/* ===================================
大カテゴリ
=================================== */
/* 中カテゴリ
==============================*/
/* 小カテゴリ、コメント */