@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");
/* ========================================================
	blog.css => ページ用CSS
======================================================== */
#container {
  /* color: #222222; */
}

#container {
  font-size: 1rem;
  padding-top: 30px;
}

.blog_contents {
  margin-top: 4%;
}

.w1000 {
  position: relative;
  display: block;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1200px) {
  .w1000 {
    width: auto;
    margin-right: 5vw;
    margin-left: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .blog_contents {
    margin-top: 50px;
  }
  #container {
    padding-top: 0;
    padding-bottom: 30px;
  }
  .c-breadcrumb {
    margin: 0 auto;
    width: 100%;
    padding: 30px 15px 0 15px;
  }
}
/* img
============================================================================================================ */
img {
  max-width: 100%;
  height: auto;
}

.ofi {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

/* blog_top_navi
============================================================================================================ */
.blog_top_navi {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog_top_navi:before {
  content: "";
  display: inline-block;
  width: 100vw;
  height: 100%;
  background: var(--base-color2);
  position: absolute;
  left: calc(-50vw + 50%);
  top: 0;
  z-index: -1;
}

.blog_top_navi.fix {
  position: fixed;
  /*top: 80px;*/
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
}

.blog_top_navi .new {
  padding: 1em 20px 1em 0;
}

.blog_top_navi .new a {
  color: #fff;
  font-size: 130%;
}

.blog_top_navi .category_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1em 20px 1em 0;
}

.blog_top_navi .category_list li {
  position: relative;
}

.blog_top_navi .category_list li:first-child {
  display: none;
}

.blog_top_navi .category_list li:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  background: var(--subt-color);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog_top_navi .category_list a {
  font-size: 130%;
  text-decoration: none;
  color: var(--subt-color);
  padding: 0 1em;
}

.blog_top_navi .search_box_icon {
  width: 19px;
  height: auto;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.blog_top_navi .search_box_icon.open img {
  display: none;
}

.blog_top_navi .search_box_icon.open:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 20px;
  background: #fff;
  position: absolute;
  left: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.blog_top_navi .search_box_icon.open:after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 20px;
  background: #fff;
  position: absolute;
  left: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.blog_top_navi .search_box_input {
  position: absolute;
  right: 0;
  background: var(--base-color2);
  border: none;
  margin: 0;
  top: 100%;
  z-index: 1000;
  padding: 20px 25px;
}

.blog_top_navi .search_box_input > div {
  display: block;
  width: 100%;
  white-space: nowrap;
}

.blog_top_navi input.search_box_field {
  font-size: 160%;
  margin: 0;
  vertical-align: middle;
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  width: 250px;
  padding: 0.4em 1em 0.3em;
  border-radius: 3em;
}

_:-ms-lang(x)::-ms-backdrop,
.blog_top_navi input.search_box_field {
  padding-top: 0.6em;
  padding-bottom: 0.2em;
}

.blog_top_navi input.search_box_btn {
  border: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: url("../images/blog/icon_search_white.svg") center center no-repeat;
  margin-left: 15px;
}

@media screen and (max-width: 768px) {
  .blog_top_navi {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    background: var(--bg-color3);
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
    display: inline-block;
  }
  .blog_top_navi:before {
    content: none;
  }
  .blog_top_navi.fix {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .blog_top_navi .new {
    display: none;
  }
  .blog_top_navi .category_list {
    display: block;
    width: auto;
    min-width: 70%;
    padding: 0;
    position: absolute;
    background: var(--bg-color3);
    border-top: 1px solid var(--line-color);
    z-index: 5;
  }
  .blog_top_navi .category_list li + li:before {
    content: none;
  }
  .blog_top_navi .category_list a {
    font-size: 130%;
    color: var(--link-color);
    padding: 0.5em 5vw;
    display: block;
    border-bottom: 1px solid var(--line-color);
  }
  .blog_top_navi .category_list li:nth-child(2) a {
    padding: 0.5em 5vw;
  }
  .blog_top_navi .search_box_icon {
    background: var(--base-color2);
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    width: 60px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .blog_top_navi .search_box_icon img {
    width: 19px;
    height: auto;
  }
  .blog_top_navi .search_box_icon.open:before,
  .blog_top_navi .search_box_icon.open:after {
    left: 50%;
  }
  .blog_top_navi .search_box_input {
    width: 100vw;
    right: calc(-50vw + 50%);
    padding: 10px 5vw;
  }
  .blog_top_navi input.search_box_field {
    width: calc(100% - 20px - 5vw);
    font-size: 130%;
    padding: 0.6em 1.2em;
  }
}
/* blog title
============================================================================================================ */
.sub-title_blog_l {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

.title_blog_l {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
  margin: 0 0 50px;
}

.title_blog_m {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 35px;
  position: relative;
  border-left: 6px solid #fff000;
  padding-left: 10px;
}

.title_blog_m span {
  position: relative;
  z-index: 2;
}

.title_blog_s {
  font-size: 200%;
  font-weight: bold;
  margin-bottom: 0.5em;
  margin-top: 2em;
}

.blog_side > div:first-child .title_blog_s:nth-of-type(1) {
  margin-top: 0;
}

.blog_catch {
  font-size: 180%;
  text-align: center;
  margin-bottom: 3em;
}

@media screen and (max-width: 768px) {
  .title_blog_l {
    font-size: 34px;
    margin-top: 0;
  }
  .blog_catch {
    font-size: 160%;
  }
  .title_blog_s {
    font-size: 220%;
    margin-top: 1em;
  }
  .blog_side > div:first-child .title_blog_s:nth-of-type(1) {
    margin-top: 1em;
  }
}
/* blog col
============================================================================================================ */
.blog_3col,
.blog_4col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog_3col > li,
.blog_3col > div,
.blog_3col > article {
  width: 31%;
  margin-bottom: 3%;
}

.blog_3col:after {
  content: "";
  display: block;
  width: 31%;
}

.blog_4col > li,
.blog_4col > div,
.blog_4col > article {
  width: 22.3%;
  margin-bottom: 3%;
}

.blog_4col:before {
  content: "";
  display: block;
  width: 22.3%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.blog_4col:after {
  content: "";
  display: block;
  width: 22.3%;
}

@media screen and (max-width: 768px) {
  .blog_3col,
  .blog_4col {
    margin-bottom: 60px;
  }
  .blog_3col > li,
  .blog_3col > div,
  .blog_3col > article {
    width: 47%;
    margin-bottom: 7%;
  }
  .blog_3col:after {
    content: none;
  }
  .blog_4col > li,
  .blog_4col > div,
  .blog_4col > article {
    width: 47%;
    margin-bottom: 7%;
  }
  .blog_4col:before,
  .blog_4col:after {
    content: none;
  }
}
/* blog list
============================================================================================================ */
.blog_3col a,
.blog_4col a {
  color: var(--font-color);
  text-decoration: none;
  display: block;
}

.blog_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog_cate {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.05em;
  border: 1px solid #191919;
  border-radius: 2px;
  padding: 5px 10px;
  margin: 0 2px 2px 0;
}

.blog_3col > article {
  position: relative;
  padding-bottom: 35px;
}
.blog_3col > article .blog_cate-area {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
}

.bottom_blog_list {
  position: relative;
  padding-bottom: 25px;
}
.bottom_blog_list .blog_cate-area {
  position: absolute;
  bottom: 0;
  left: 0;
}

.blog_cate-area {
  display: inline-block;
  margin: 1.1em 0 1em;
}

_:-ms-lang(x)::-ms-backdrop,
.blog_cate {
  padding-top: 0.4em;
  padding-bottom: 0;
}

.blog_title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.blog_date {
  font-size: 14px;
  font-weight: 500;
  margin-top: 0.5em;
}

.blog_3col .blog_image {
  width: 100%;
  height: 140px;
}

.blog_3col .blog_title {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.blog_4col .blog_image {
  width: 100%;
  height: 167px;
}

@media screen and (max-width: 1200px) {
  .blog_3col .blog_image {
    width: 100%;
    height: 20vw;
  }
  .blog_4col .blog_image {
    width: 100%;
    height: 15vw;
  }
}
@media screen and (max-width: 768px) {
  .blog_3col .blog_image {
    width: 100%;
    height: 102px;
  }
  .blog_3col .blog_title {
    font-size: 15px;
  }
  .blog_4col .blog_image {
    width: 100%;
    height: 31vw;
  }
}
/* recommend_area
============================================================================================================ */
.recommend_area {
  position: relative;
  padding: 30px 0 10px;
}

.recommend_area:before {
  content: "";
  display: inline-block;
  width: 100vw;
  height: 100%;
  background: var(--bg-color4);
  position: absolute;
  left: calc(-50vw + 50%);
  top: 0;
  z-index: -1;
}

.recommend_area .title_blog_m {
  margin-top: 0;
}

.recommend_area .title_blog_m:before {
  content: none;
}

.recommend_area .title_blog_m span {
  background: none;
}

/* rank_area
============================================================================================================ */
.rank_area_top {
  margin-bottom: 7%;
}

.rank_area_top > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.rank_area_top .tab-btn {
  cursor: default !important;
}

.rank_area_top > div > p,
.rank_area_top > div > div {
  width: 47.6%;
}

.rank_area_top .rank_area_title span {
  display: inline-block;
  font-size: 160%;
  font-weight: bold;
  border-bottom: 2px solid var(--font-color);
  margin-bottom: 2em;
}

.rank_area .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid var(--base-color2);
}

.rank_area .rank_area_title {
  background: var(--bg-color2);
  width: 50%;
}

.rank_area .rank_area_title.active {
  background: var(--base-color2);
}

.rank_area .rank_area_title span {
  display: block;
  font-size: 160%;
  font-weight: bold;
  text-align: center;
  color: var(--subt-color);
  padding: 0.4em 0 0.2em;
}

_:-ms-lang(x)::-ms-backdrop,
.rank_area .rank_area_title span {
  padding-top: 0.5em;
  padding-bottom: 0.1em;
}

.rank_area .panel-area {
  background: var(--bg-color4);
  padding: 10% 7%;
  border-bottom: 2px solid var(--base-color2);
}

.rank_list {
  counter-reset: rankcount 0;
}

.rank_list > li {
  position: relative;
}

.rank_list > li:first-child:before {
  left: 4px;
}

.rank_area_top .rank_list > li:before {
  left: 5px;
  top: 5px;
}

.rank_area_top .rank_list > li:first-child:before {
  left: 6px;
}

.rank_list li + li {
  margin-top: 0;
}

.rank_area_top .rank_list li + li {
  margin-top: 6%;
}

.rank_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
}

.rank_area_top .rank_list li a .blog_image {
  width: 102px;
  height: 102px;
}

.rank_area_top .rank_list li a > div {
  width: calc(100% - 102px - 6%);
}

.rank_list li a > div .blog_cate {
  margin-top: 0;
}

.rank_area .rank_list li a .blog_image {
  width: 61px;
  height: 61px;
}

.rank_area .rank_list li a > div {
  width: calc(100% - 61px - 7%);
}

.rank_area .rank_list li a > div .blog_cate {
  display: none;
}

.rank_area .rank_list li a > div .blog_date {
  display: none;
}

.rank_area .rank_list li a > div .blog_title {
  font-size: 140%;
  line-height: 1.45;
}

@media screen and (max-width: 768px) {
  .rank_area_top,
  .rank_area {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
  .rank_area_top > div {
    border-bottom: 2px solid #222222;
  }
  .rank_area_top > div > p {
    width: 50%;
  }
  .rank_area_top > div > div {
    width: 100%;
  }
  .rank_area_top .rank_area_title {
    background: #d1d1d1;
  }
  .rank_area_top .rank_area_title.active {
    background: #222222;
  }
  .rank_area_top .rank_area_title span,
  .rank_area .rank_area_title span {
    display: block;
    font-size: 150%;
    border-bottom: none;
    margin-bottom: 0;
    text-align: center;
    color: var(--subt-color);
    padding: 0.6em 0 0.4em;
  }
  .rank_area_top .panel-area,
  .rank_area .panel-area {
    background: var(--bg-color3);
    padding: 7% 5vw;
  }
  .rank_area_top .rank_list li a .blog_image,
  .rank_area .rank_list li a .blog_image {
    width: 78px;
    height: 78px;
  }
  .rank_area_top .rank_list li a > div,
  .rank_area .rank_list li a > div {
    width: calc(100% - 78px - 6%);
  }
  .rank_area_top .rank_list li a > div .blog_cate,
  .rank_area .rank_list li a > div .blog_cate {
    padding: 0.1em 1em 0em;
    margin-bottom: 0.75em;
  }
  .rank_area_top .rank_list li a > div .blog_title,
  .rank_area .rank_list li a > div .blog_title {
    font-size: 160%;
    line-height: 1.45;
  }
  .rank_area_top .rank_list > li:before,
  .rank_area .rank_list > li:before {
    left: 3px;
    top: 2px;
  }
  .rank_area_top .rank_list > li:first-child:before,
  .rank_area .rank_list > li:first-child:before {
    left: 4px;
  }
}
/* tab
============================================================================================================ */
.tab-box .tab-btn,
.tab-box-sp .tab-btn {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.tab-box .tab-panel,
.tab-box-sp .tab-panel {
  display: none;
}

.tab-box .tab-panel.active,
.tab-box-sp .tab-panel.active {
  display: block;
}

@media screen and (min-width: 769px) {
  .tab-box-sp .tab-panel {
    display: block;
  }
}
/* blog_list_area
============================================================================================================ */
.blog_list_area-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 200px;
}

.blog_list_area-top .blog_main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 71%;
          flex: 0 0 71%;
  max-width: 710px;
  width: 100%;
}

.blog_list_area-top .blog_side {
  width: 25%;
  margin-bottom: 5%;
}

.blog_list_area-top .blog_main-text {
  font-size: 16px;
}

.blog_list {
  margin-bottom: 5%;
}

.blog_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-decoration: none;
  padding: 5% 0;
  border-bottom: 1px solid var(--line-color);
  position: relative;
}

.blog_list article:first-child a {
  padding-top: 0;
}

.blog_list a .blog_image {
  width: 23.9%;
  position: relative;
}

.blog_3col a .blog_image,
.blog_4col a .blog_image {
  position: relative;
}

.blog_list a div {
  width: 71.8%;
}

.blog_list a .blog_title {
  font-size: 220%;
  margin-bottom: 10px;
}

.blog_list a .blog_cate {
  margin-top: 0;
}

.blog_list a .new,
.blog_3col a .new,
.blog_4col a .new {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}

.blog_list a .new span,
.blog_3col a .new span,
.blog_4col a .new span {
  display: inline-block;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  position: relative;
  left: 2px;
  top: 3px;
}

.blog_list a .new:before,
.blog_3col a .new:before,
.blog_4col a .new:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 40px 0 0;
  border-color: #c1272d transparent transparent transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .blog_list_area-top .blog_main {
    margin-bottom: 100px;
  }
  .blog_list_area-top {
    display: block;
  }
  .blog_list_area .blog_main {
    width: 100%;
  }
  .blog_list_area .blog_side {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
  .blog_list {
    margin-bottom: 10%;
  }
  .blog_list a .blog_image {
    width: 47.8%;
  }
  .blog_list a div {
    width: 47.8%;
  }
  .blog_list a .blog_title {
    font-size: 160%;
    line-height: 1.3;
  }
}
/* pagination
============================================================================================================ */
.pagination {
  margin: 5% 0 10%;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.wp-pagenavi span,
.wp-pagenavi a {
  display: block;
  font-size: 140%;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 7px 0;
  margin: 0 5px;
  min-height: 30px;
  position: relative;
}

.wp-pagenavi a {
  background: var(--bg-color3);
  border-radius: 2px;
  width: 30px;
}

.wp-pagenavi a:not(.page) {
  color: transparent;
}

.wp-pagenavi span.current,
.wp-pagenavi a.current {
  display: block;
  color: var(--subt-color);
  background: var(--base-color2);
  border-radius: 2px;
  width: 30px;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  background: none;
}

.wp-pagenavi .previouspostslink:after,
.wp-pagenavi .nextpostslink:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
}

.wp-pagenavi .previouspostslink:after {
  right: 1em;
  border-bottom: 2px solid var(--font-color);
  border-left: 2px solid var(--font-color);
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.wp-pagenavi .nextpostslink:after {
  left: 1em;
  border-bottom: 2px solid var(--font-color);
  border-right: 2px solid var(--font-color);
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}

@media screen and (max-width: 768px) {
  .pagination {
    margin: 10% 0 10%;
  }
}
/* new_list
============================================================================================================ */
.new_list li + li {
  margin-top: 10%;
}

.new_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
}

.new_list li a > div {
  width: calc(100% - 61px - 7%);
}

.side_text_link {
  font-size: 130%;
  text-align: right;
  margin-top: 1em;
}

.side_text_link a {
  text-decoration: underline;
  color: #0071bc;
}

@media screen and (max-width: 768px) {
  .new_list li + li {
    margin-top: 5%;
  }
  .new_list li a .blog_image {
    width: 100px;
    height: 63px;
  }
  .new_list li a div {
    width: calc(100% - 78px - 6%);
  }
  .new_list li a .blog_title {
    font-size: 13px;
    line-height: 1.5384615385;
  }
  .side_text_link {
    margin-bottom: 1em;
  }
}
/* side_search_box
============================================================================================================ */
.side_search_box {
  margin: 15% 0;
  position: relative;
}

.side_search_box > div {
  display: block;
  width: 100%;
  color: #000;
  white-space: nowrap;
}

.side_search_box input.search_box_btn {
  border: none;
  cursor: pointer;
  width: 17px;
  height: 17px;
  background: url(../images/blog/icon_search_black.svg) center center no-repeat;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.side_search_box input.search_box_field {
  margin: 0;
  vertical-align: middle;
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  background: var(--bg-color3);
  width: 100%;
  padding: 0.85em 30px 0.75em 1em;
  border-radius: 4px;
  font-size: 130%;
}

_:-ms-lang(x)::-ms-backdrop,
.side_search_box input.search_box_field {
  padding-top: 0.95em;
  padding-bottom: 0.65em;
}

@media screen and (max-width: 768px) {
  .side_search_box {
    margin: 5% 0;
  }
}
/* side_category_list
============================================================================================================ */
.side_category_list li {
  position: relative;
  padding-left: 15px;
}
.side_category_list li::before {
  content: "";
  position: absolute;
  background-image: url(../images/top/arrow-b.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 8px;
  height: 14px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.side_category_list li a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .side_category_list {
    margin-bottom: 5%;
  }
}
/* blog_page_top
============================================================================================================ */
.blog_page_top {
  position: relative;
}

.blog_page_top .blog_cate {
  margin-top: 0;
}

.blog_page_top .blog_date {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-top: 0;
  margin-right: 8px;
}

.blog_page_top h1 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 1em;
}

.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 2em 0;
}

.sns > p + p,
.sns > li + li {
  margin-left: 20px;
}

.sns img {
  width: 100%;
  height: 35px;
}

@media screen and (max-width: 768px) {
  .blog_page_top h1 {
    letter-spacing: 0.03em;
  }
}
/* blog_text
============================================================================================================ */
.blog_text {
  font-size: 16px;
  margin-bottom: 60px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.blog_text p {
  margin-bottom: 1em;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.blog_text p a {
  color: #1a0dab;
}

.blog_text h2 {
  font-size: 22px;
  letter-spacing: 0.06em;
  font-weight: 700;
  line-height: 1.38;
  color: #fff;
  background: #5f5f5f;
  padding: 15px 30px;
  border-radius: 50px;
  margin-top: 90px;
  margin-bottom: 1em;
}
.blog_text h2 span {
  padding-top: 100px;
  margin-top: -100px;
}

_:-ms-lang(x)::-ms-backdrop,
.blog_text h2 {
  padding-top: 0.6em;
  padding-bottom: 0.2em;
}

.blog_text h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 2em;
  margin-bottom: 15px;
  border-left: 6px solid #fff000;
  padding-left: 10px;
}

.blog_text h4 {
  font-size: 120%;
  font-weight: bold;
  line-height: 1.45;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #fff000;
  margin-top: 2em;
  margin-bottom: 1em;
}

.blog_text h5 {
  font-size: 100%;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 2em;
  margin-bottom: 1em;
}

.blog_text table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.6;
  table-layout: fixed;
  border: 1px solid var(--line-color);
  margin: 1em 0;
}

.blog_text table th,
.blog_text table td {
  padding: 0.3em 1em;
  word-wrap: break-word;
  border: 1px solid var(--line-color);
}

_:-ms-lang(x)::-ms-backdrop,
.blog_text table th {
  padding-top: 0.5em;
  padding-bottom: 0.2em;
}

_:-ms-lang(x)::-ms-backdrop,
.blog_text table td {
  padding-top: 0.5em;
  padding-bottom: 0.2em;
}

.blog_text ul {
  width: 93%;
  margin: 0 auto 1em;
}

.blog_text ul > li {
  position: relative;
  padding-left: 1em;
  margin: 0.3em 0;
}

.blog_text ul > li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--base-color2);
  border-radius: 50%;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.blog_text ol {
  width: 93%;
  margin: 0 auto 1em;
  counter-reset: count 0;
}

.blog_text ol > li {
  position: relative;
  padding-left: 1.6em;
  margin: 0.3em 0;
}

.blog_text ol > li:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: var(--base-color2);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
  content: counter(count);
  counter-increment: count 1;
  font-size: 1.2rem;
  color: var(--subt-color);
  line-height: 22px;
  text-align: center;
}

/* .blog_text ol > li:after {
    content: counter(count);
    counter-increment: count 1;
    font-size: 1.2rem;
    color: var(--subt-color);
    position: absolute;
    left: 5px;
    top: 5px;
} */
_:-ms-lang(x)::-ms-backdrop,
.blog_text ol > li:before {
  top: 0.2em;
}

#toc_container {
  background: var(--bg-color4) !important;
  padding: 4% 5% !important;
  margin: 3em 0 !important;
  border: none !important;
  display: block !important;
}

#toc_container .toc_title {
  font-size: 130%;
  font-weight: bold;
  text-align: left !important;
}

#toc_container .toc_list {
  font-size: 95%;
  width: 100%;
  margin: 0;
}

#toc_container .toc_list li {
  padding-left: 0;
  margin: 0;
}

#toc_container .toc_list li:before {
  content: none;
}

#toc_container .toc_list li + li {
  margin-top: 1em;
}

#toc_container a {
  text-decoration: underline !important;
}

#toc_container a:hover {
  text-decoration: none !important;
}

.blog_text blockquote {
  border: 1px solid var(--line-color);
  padding: 30px 65px;
  position: relative;
  margin-bottom: 1em;
}

.blog_text blockquote:before,
.blog_text blockquote:after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 20px;
  background: url("../images/blog/mark_blockquote.svg") no-repeat;
  background-size: 100% auto;
  position: absolute;
}

.blog_text blockquote:before {
  top: 22px;
  left: 22px;
}

.blog_text blockquote:after {
  bottom: 22px;
  right: 22px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.blog_text blockquote p:last-child {
  margin-bottom: 0;
}

.blog_text .reference {
  border: 1px solid var(--line-color);
  padding: 25px;
  margin-bottom: 1em;
}

.blog_text .reference strong {
  font-size: 100%;
}

.blog_text .reference ul {
  width: 100%;
  margin: 0;
}

.blog_text .reference ul > li {
  position: relative;
  font-size: 90%;
  padding-left: 1em;
  margin: 0.3em 0;
}

.blog_text .reference ul > li a {
  color: var(--link-color);
  text-decoration: underline;
}

.blog_text .reference ul > li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--base-color2);
  border-radius: 50%;
  position: absolute;
  top: 0.7em;
  left: 0;
}

.blog_text .banner {
  margin: 3em auto;
}

.floating_banner {
  max-width: 250px;
  position: fixed;
  bottom: 60px;
  right: 20px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 3px -1px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 3px -1px rgba(0, 0, 0, 0.15);
  z-index: 100;
  display: none;
}

.floating_banner a {
  display: block;
}

.floating_banner p {
  margin-bottom: 0;
}

.floating_banner p.close {
  position: absolute;
  left: -16px;
  top: -16px;
}

.floating_banner p.close img {
  vertical-align: top;
}

.floating_banner p.close a {
  display: block;
  width: 45px;
  height: 45px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .blog_text h2 {
    font-size: 20px;
    padding: 11.5px 20px;
    margin-top: 70px;
  }
  .blog_text p {
    font-size: 15px;
  }
  #toc_container .toc_title {
    margin-bottom: 0.5em;
  }
  .blog_text blockquote {
    padding: 15px 50px;
  }
  .blog_text blockquote:before {
    top: 10px;
    left: 15px;
  }
  .blog_text blockquote:after {
    bottom: 10px;
    right: 15px;
  }
  .blog_text .reference > p {
    margin-bottom: 0.5em;
  }
  .blog_text .reference {
    padding: 4% 5%;
  }
  .floating_banner {
    max-width: 90vw;
    bottom: 30px;
    right: inherit;
    left: 5vw;
  }
  .floating_banner p.close a {
    width: 43px;
    height: 43px;
  }
}
/* author_box
============================================================================================================ */
.author_box {
  padding: 30px 40px;
  background: #f0f0f0;
  border: 1px solid #191919;
  margin: 120px 0 135px 0;
  border-radius: 8px;
}

.author_box > p {
  font-size: 120%;
  font-weight: bold;
}

.author_box > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.author_box .photo_icon {
  max-width: 100px;
  width: 100%;
}

.author_box .photo_icon img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.author_box > div > div {
  width: calc(100% - 120px);
  /* font-size: 140%; */
}

.author_box .name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.author_box .name span {
  font-size: 75%;
  font-weight: normal;
  display: block;
}

.author_box .name + p {
  font-size: 75%;
}

@media screen and (max-width: 768px) {
  .author_box {
    padding: 20px 18px;
    margin-bottom: 90px;
  }
  .author_box > div {
    gap: 10px;
  }
  .author_box .photo_icon {
    max-width: 78px;
  }
  .author_box .photo_icon img {
    height: 78px;
  }
  .author_box > div > div {
    width: 100%;
  }
  .author_box .name {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
}
/* bottom_blog_list
============================================================================================================ */
.bottom_blog {
  margin-bottom: 110px;
}

.blog_main article + aside {
  margin-top: 60px;
}

.bottom_blog_list {
  margin-bottom: 50px;
}

.bottom_blog_list li {
  width: 30.986%;
}

.bottom_blog_list li a {
  display: block;
  text-decoration: none;
}

.bottom_blog_list li a .blog_image {
  width: 220px;
  height: 140px;
}

.bottom_blog_list .blog_title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.bottom_blog_list .blog_date {
  margin-top: 5px;
}

.bottom-blog-link {
  display: block;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  text-decoration: none;
  border: 1px solid #191919;
  font-size: 14px;
  letter-spacing: 0.08em;
  position: relative;
  padding: 17.5px 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.bottom-blog-link::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/arrow-b.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 8px;
  height: 16px;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .bottom_blog_list {
    margin-bottom: 40px;
  }
  .bottom_blog_list li {
    margin-bottom: 6%;
    width: 48%;
  }
  .bottom_blog_list li a .blog_image {
    width: 100%;
    height: 102px;
  }
  .bottom_blog_list .blog_title {
    font-size: 15px;
  }
  .bottom_blog_list .blog_date {
    font-size: 11px;
  }
  .bottom-blog-link {
    padding: 12.5px 18px;
    max-width: 100%;
  }
}
@media screen and (hover: hover) {
  .bottom-blog-link:hover {
    background-color: #191919;
    color: #fff;
  }
  .bottom-blog-link:hover::after {
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(301deg) brightness(101%) contrast(103%);
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(301deg) brightness(101%) contrast(103%);
  }
}
#toc.post_contents {
  display: none;
}

.wp-block-spacer {
  display: none;
}

/* blog-card
============================================================================================================ */
.blog-card {
  border: 1px solid var(--base-color2);
  word-wrap: break-word;
  max-width: 100%;
  position: relative;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.blog-card-name {
  display: inline-block;
  padding: 10px;
  background-color: var(--base-color2);
  color: #fff;
  font-size: 0.7em;
  line-height: 1;
}

.blog-card a {
  display: block;
  text-decoration: none;
}

.blog-card-thumbnail {
  width: 15%;
  display: table-cell;
  vertical-align: middle;
  padding: 10px 0 10px 10px;
}

.blog-card-thumbnail img {
  padding: 0;
  margin: 0;
}

.blog-card-content {
  display: table-cell;
  vertical-align: middle;
}

.blog-card-title {
  font-size: 0.9em;
  margin: 5px 10px 5px 0px;
  font-weight: bold;
  line-height: 1.4;
  margin-left: 20px;
  color: #666464;
}

.blog-card-title:hover {
  text-decoration: underline;
}

.blog-card-excerpt {
  font-size: 0.74em;
  color: #4c4c4c;
  margin: 0 10px 5px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card .clear {
  clear: both;
}

@media screen and (max-width: 767px) {
  .blog-card:before {
    font-size: 0.56em;
  }
  .blog-card-thumbnail {
    width: 25%;
  }
  .blog-card-title {
    font-size: 0.7em;
  }
  .blog-card-excerpt {
    font-size: 0.6em;
  }
  .blog-card-name span {
    font-size: 0.6em;
    padding: 6px 10px;
  }
  .blog-card-title {
    margin-left: 10px;
  }
}
.author_box .arrow_box {
  width: 100%;
  text-align: justify;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7333333333;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .author_box .arrow_box {
    margin-top: 30px;
  }
}
.contents-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 200px;
}

.contents-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 71%;
          flex: 0 0 71%;
}

.contents-sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
}
.contents-sidebar > div:not(:last-child) {
  margin-bottom: 45px;
}

.c-contents-ttl {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}

.category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}
.category_list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 7.5px);
          flex: 0 0 calc(25% - 7.5px);
}
.category_list li a {
  text-decoration: unset;
  border: 1px solid #191919;
  border-radius: 50px;
  display: block;
  text-align: center;
  font-size: 15px;
  line-height: 1;
  padding: 11.5px 0;
  position: relative;
}
.category_list li a::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/arrow-b.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 8px;
  height: 14px;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
}

#container .category_list a:hover {
  opacity: 1;
  background-color: #191919;
  color: #fff;
}
#container .category_list a:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(185deg) brightness(103%) contrast(102%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(185deg) brightness(103%) contrast(102%);
}

.search_box {
  margin-bottom: 60px;
}

.search_box_input {
  position: relative;
  max-width: 100%;
  width: 100%;
  height: 50px;
}
.search_box_input .search_box_field {
  max-width: 100%;
  width: calc(100% - 84px);
  border: 1px solid #191919;
  border-right: unset;
  height: 50px;
  border-radius: 50px 0 0 50px;
  vertical-align: middle;
  margin: 0;
  padding: 15px 25px;
  font-size: 13px;
}
.search_box_input .search_box_btn {
  border: none;
  cursor: pointer;
  width: 84px;
  height: 50px;
  background: url(../images/top/search-icon.png) center center no-repeat;
  background-size: 24px 24px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #191919;
  border-radius: 0 50px 50px 0;
}

@media (max-width: 767px) {
  .contents-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 160px;
  }
  .contents-sidebar > div:not(:last-child) {
    margin-bottom: 60px;
  }
  .category_list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 7.5px);
            flex: 0 0 calc(50% - 7.5px);
  }
  .category_list li a {
    font-size: 14px;
    padding: 11px 0;
  }
  .search_box_input .search_box_field {
    width: calc(100% - 58px);
    height: 44px;
  }
  .search_box_input .search_box_btn {
    width: 58px;
    height: 44px;
    top: 44%;
  }
}
.sidebar-title {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding-bottom: 10px;
  border-bottom: 1px solid #191919;
  margin-bottom: 15px;
}

.sidebar-box .panel-area {
  margin-bottom: 20px;
}
.sidebar-box .blog_image {
  max-width: 110px;
  width: 100%;
  height: 70px;
}
.sidebar-box .blog_cate {
  display: none;
}
.sidebar-box .blog_date {
  display: none;
}
.sidebar-box .blog_title {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.sidebar-box li a {
  gap: 8px;
}

.rank_list > li a > div {
  width: 71.8%;
}
.rank_list > li:not(:last-child) {
  margin-bottom: 15px;
}

.tab-panel .rank_list > li a > div {
  width: calc(100% - 61px - 7%);
}

#container.search {
  margin-bottom: 200px;
}
#container.search .new_list li + li {
  margin-top: 15px;
}

.sidebar-link {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-decoration: unset;
  position: relative;
}
.sidebar-link::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/arrow-b.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 6px;
  height: 12px;
  top: 2px;
  bottom: 0;
  right: -14px;
  margin: auto;
}

@media (max-width: 767px) {
  .sidebar-box .blog_image {
    width: 100px;
    height: 63px;
  }
  .rank_list > li a > div {
    width: 47.8%;
  }
  .tab-panel .rank_list > li a > div {
    width: calc(100% - 78px - 6%);
  }
}
.blog-cv {
  padding: 30px 0 60px 0;
  background-color: #faf5ee;
  margin: 100px 0 0 -50vw;
  padding: 30px 20px 60px 50vw;
}
.blog-cv .blog-cv-ttl {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-top: -55px;
}
.blog-cv .blog-cv-ttl::after, .blog-cv .blog-cv-ttl::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 50px;
}
.blog-cv .blog-cv-ttl::before {
  background-image: url(../images/cv/kakko-left.png);
}
.blog-cv .blog-cv-ttl::after {
  background-image: url(../images/cv/kakko-right.png);
}
.blog-cv .blog-cv-wrap {
  max-width: 870px;
  width: 100%;
  margin: 0 auto;
}
.blog-cv .blog-cv-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
  padding-top: 45px;
}
.blog-cv .blog-cv-item {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.885%;
          flex: 0 0 31.885%;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #999999;
  padding: 30px 20px 25px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.blog-cv .blog-cv-item:nth-child(2) {
  background-color: #fff000;
}
.blog-cv .blog-cv-item:nth-child(3) {
  background-color: #191919;
  color: #fff;
}
.blog-cv .blog-cv-item-ttl {
  text-align: center;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  height: 50px;
}
.blog-cv .blog-cv-item-ttl p {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.blog-cv .blog-cv-item-icon {
  max-width: 34px;
  width: 100%;
}
.blog-cv .blog-cv-item-text {
  font-size: 14px;
  line-height: 1.7142857143;
  text-align: justify;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
.blog-cv .blog-cv-item-link {
  display: block;
  max-width: 160px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  border-radius: 50px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 8px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #191919;
  background-color: #fff;
  color: #191919;
}
.blog-cv .blog-cv-item-link::after {
  content: "";
  position: absolute;
  background-image: url(../images/cv/arrow-cv-b.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 10px;
  height: 16px;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
}

@media (hover: hover) {
  .blog-cv .blog-cv-item:hover {
    opacity: 0.7;
  }
  .blog-cv .blog-cv-contact:hover {
    opacity: 0.7;
  }
}
@media (max-width: 900px) {
  .blog-cv .blog-cv-wrap {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .blog-cv {
    margin: 100px -20px 0 -20px;
    padding: 30px 20px 65px 20px;
  }
  .blog-cv .blog-cv-wrap {
    padding: 0 50px;
  }
  .blog-cv .blog-cv-ttl {
    font-size: 20px;
    line-height: 1.7;
    margin-top: -45px;
  }
  .blog-cv .blog-cv-ttl::before, .blog-cv .blog-cv-ttl::after {
    background-size: 100% 100%;
    height: 68px;
  }
  .blog-cv .blog-cv-flex {
    display: block;
    margin-bottom: 20px;
  }
  .blog-cv .blog-cv-con-area {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-bottom: 30px;
  }
  .blog-cv .blog-cv-con-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 14px;
    font-weight: 500;
  }
  .blog-cv .blog-cv-item {
    padding: 45px 20px 30px 20px;
  }
  .blog-cv .blog-cv-item:not(:last-child) {
    margin-bottom: 20px;
  }
  .blog-cv .blog-cv-contact {
    padding: 43px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
  .blog-cv .blog-cv-contact::after {
    right: 20px;
  }
  .blog-cv .blog-cv-con-link {
    margin: 0 auto;
  }
}
.blog_case-content {
  margin-bottom: 40px;
}

.blog_case-item:not(:last-child) {
  margin-bottom: 10px;
}

.blog_case-item a {
  display: block;
  text-decoration: none;
  background-color: #e6e6e6;
  font-size: 16px;
  letter-spacing: 0.02em;
  font-weight: 400;
  border-radius: 4px;
  position: relative;
  padding: 13.5px 40px;
}
.blog_case-item a::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  right: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 767px) {
  .blog_case-item a {
    padding: 15px 60px 13.5px 15px;
    font-size: 15px;
    font-weight: 500;
  }
}
.blog_profile {
  margin-top: 50px;
}
.blog_profile .blog_profile-ttl {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0;
}
.blog_profile .blog_profile-ttl span {
  display: inline-block;
  max-width: 200px;
  width: 100%;
  text-align: center;
  background-color: #191919;
  padding: 6px 0;
  border-radius: 50px 50px 0 0;
}
.blog_profile .blog_profile-box {
  border-top: 1px solid #191919;
  border-bottom: 1px solid #191919;
  background-color: #f0f0f0;
  padding: 30px 20px;
}
.blog_profile .blog_profile-name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.blog_profile .blog_profile-deteil {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.blog_profile .blog_profile-deteil:not(:last-child) {
  margin-bottom: 15px;
}
.blog_profile .blog_profile-info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.blog_profile .blog_profile-info-text {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #191919;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  max-width: 90px;
  width: 100%;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 200px;
          flex: 1 0 200px;
  margin-bottom: 0;
}
.blog_profile .blog_profile-text {
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .blog_profile .blog_profile-box {
    padding: 25px 15px;
  }
  .blog_profile .blog_profile-name {
    font-size: 20px;
  }
  .blog_profile .blog_profile-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .blog_profile .blog_profile-deteil {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  .blog_profile .blog_profile-deteil:not(:last-child) .blog_profile-info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
  }
  .blog_profile .blog_profile-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    display: block;
  }
  .blog_profile .blog_profile-info-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 3px 0;
  }
}
#container .blog_main .fixedbnr-hukidashi {
  max-width: 482px;
  width: 100%;
  margin: 56px 0 -116px auto;
}
#container .blog_main .fixedbnr {
  background-color: #faf5ee;
  border: 1px solid #4d4d4d;
  border-radius: 10px;
  padding: 30px 15px 40px 15px;
  margin: 56px 0;
}
#container .blog_main .fixedbnr-text-area {
  max-width: 660px;
  width: 100%;
  margin-bottom: 30px;
  margin-left: 10px;
}
#container .blog_main .fixedbnr-link-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
}
#container .blog_main .fixedbnr-link-left {
  max-width: 350px;
  width: 100%;
}
#container .blog_main .fixedbnr-link-right {
  max-width: 282px;
  width: 100%;
}

@media (max-width: 767px) {
  #container .blog_main .fixedbnr-hukidashi {
    max-width: 298px;
    margin-top: 100px;
    margin-bottom: -135px;
  }
  #container .blog_main .fixedbnr {
    margin: 100px 0;
    padding: 10px 10px 50px 10px;
  }
  #container .blog_main .fixedbnr-text-area {
    padding: 0 5px;
  }
  #container .blog_main .fixedbnr-link-area {
    display: block;
  }
  #container .blog_main .fixedbnr-link-right,
  #container .blog_main .fixedbnr-link-left {
    max-width: 308px;
    margin: 0 auto;
  }
  #container .blog_main .fixedbnr-link-left {
    margin-bottom: 15px;
  }
}