@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ==========================================================================//
//
// 記事詳細
//
// ========================================================================== */
/* 共通
---------------------------------------------------------- */
.column_wrap {
  padding: 90px 0 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 150px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /* 751- */
}
@media all and (min-width: 751px) {
  .column_wrap {
    padding: 120px 0 150px;
  }
}

.like_btn .custom_like-btn {
  padding: 0 0 0 23px;
  position: relative;
  background-color: transparent;
  border: none;
  color: #202020;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  width: 100%;
  /* 751- */
  /* クリックする前 */
  /* クリックした時 */
  /* クリックした後 */
}
@media all and (min-width: 751px) {
  .like_btn .custom_like-btn {
    margin: 10px 0;
    padding: 10px 35px 10px 55px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-size: 13px;
  }
}
.like_btn .custom_like-btn::before {
  position: absolute;
  content: "";
  background-image: url(../images/mypage/ico_like_no.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 17.62px;
  height: 15.32px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  .like_btn .custom_like-btn::before {
    width: 17px;
    height: 15px;
    left: 32px;
  }
}
.like_btn .custom_like-btn::after {
  /* 751- */
}
@media all and (min-width: 751px) {
  .like_btn .custom_like-btn::after {
    content: "いいね";
    margin-left: 1px;
  }
}
.like_btn .custom_like-btn:not(.custom_like--liked) {
  cursor: pointer;
}
.like_btn .custom_like-btn:active::before, .like_btn .custom_like-btn:focus::before {
  background-image: url(../images/mypage/ico_like_on.svg);
}
.like_btn .custom_like-btn.custom_like--liked::before {
  background-image: url(../images/mypage/ico_like_on.svg);
}

.share_area {
  margin-top: 50px;
  padding: 0 37px;
  /* 751- */
}
.share_area .like_btn {
  text-align: center;
}
.share_area .like_btn .custom_like-btn {
  margin: 10px auto;
  padding: 10px 90px 10px 110px;
  position: relative;
  background-color: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 50px;
  color: #202020;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  width: min(260px, 100%);
  /* クリックする前 */
  /* クリックした時 */
  /* クリックした後 */
}
.share_area .like_btn .custom_like-btn::before {
  position: absolute;
  content: "";
  background-image: url(../images/mypage/ico_like_no.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 37.5%;
  width: 17.11px;
  height: 14.88px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.share_area .like_btn .custom_like-btn::after {
  content: "いいね";
  margin-left: 1px;
}
.share_area .like_btn .custom_like-btn:not(.custom_like--liked) {
  cursor: pointer;
}
.share_area .like_btn .custom_like-btn:active::before, .share_area .like_btn .custom_like-btn:focus::before {
  background-image: url(../images/mypage/ico_like_on.svg);
}
.share_area .like_btn .custom_like-btn.custom_like--liked::before {
  background-image: url(../images/mypage/ico_like_on.svg);
}
.share_area .note {
  text-align: center;
  font-size: 12px;
}
@media all and (min-width: 751px) {
  .share_area {
    display: none;
  }
}

header.article-header {
  background-color: unset !important;
  display: none;
}

/* 左カテゴリーバー
---------------------------------------------------------- */
.side_column {
  width: 150px;
  position: sticky;
  top: 60px;
  display: none;
  /* 961- */
}
@media all and (min-width: 961px) {
  .side_column {
    display: block;
  }
}
.side_column .categories {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #E0E0E0;
}
.side_column .categories li.category:not(:last-child) {
  margin-bottom: 10px;
}
.side_column .categories .btn {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
}
.side_column .categories .btn::before, .side_column .categories .btn::after {
  content: none;
  width: 7px;
  height: 4px;
}
.side_column .note {
  font-size: 12px;
}

.share_btn {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* 751- */
}
@media all and (min-width: 751px) {
  .share_btn {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    gap: 0 11px;
  }
}
.share_btn p {
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  font-size: 15px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .share_btn p {
    font-size: 13px;
  }
}
.share_btn .addtoany_shortcode a {
  padding: 0 6px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .share_btn .addtoany_shortcode a {
    padding: 0 4px;
  }
}

/* 右メインコンテンツ
---------------------------------------------------------- */
main {
  padding-bottom: 0;
  /* 961- */
}
@media all and (min-width: 961px) {
  main {
    width: calc(100% - 300px);
  }
}
main .date_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
}
main .date_wrap .category {
  padding: 0 10px;
  background: #000;
  color: #fff;
  word-break: break-all;
}
main .post_ttl {
  margin: 16px 0;
  font-size: 20px;
  font-weight: 500;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .post_ttl {
    font-size: 28px;
  }
}
main .post_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .post_info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
main .post_info .tag_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .post_info .tag_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
main .post_info .tag_wrap .area {
  position: relative;
  /* 751- */
  /* 751- */
}
@media all and (min-width: 751px) {
  main .post_info .tag_wrap .area {
    padding-right: 20px;
  }
}
main .post_info .tag_wrap .area a {
  padding-left: 14px;
  position: relative;
  display: inline-block;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .post_info .tag_wrap .area a {
    padding-left: 20px;
  }
}
main .post_info .tag_wrap .area a::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/area_icon.svg);
  width: 10.47px;
  height: 14px;
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: cover;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .post_info .tag_wrap .area a::before {
    width: 12px;
    height: 16px;
  }
}
@media all and (min-width: 751px) {
  main .post_info .tag_wrap .area::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: #E0E0E0;
    right: 0;
  }
}
main .post_info .tag_wrap .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .post_info .tag_wrap .tags {
    gap: 6px;
  }
}
main .post_info .tag_wrap a span {
  position: relative;
}
main .post_info .tag_wrap a span::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #202020;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  main .post_info .tag_wrap a:hover span::after {
    width: 100%;
  }
}
main .entry-content {
  margin: 50px 0 70px;
  /* -750 */
}
@media all and (max-width: 750px) {
  main .entry-content {
    margin: 40px 0 70px;
  }
}
main .entry-content img {
  width: 100%;
}
main .entry-content em {
  font-style: italic;
}
main .entry-content h1, main .entry-content h2 {
  font-size: 18px;
  position: relative;
  padding: 9px 20px;
  margin-top: 60px;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .entry-content h1, main .entry-content h2 {
    font-size: 24px;
  }
}
main .entry-content h1::before, main .entry-content h1::after, main .entry-content h2::before, main .entry-content h2::after {
  content: "";
  position: absolute;
  height: 100%;
  background: #202020;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
main .entry-content h1::before, main .entry-content h2::before {
  left: 0;
  width: 3px;
}
main .entry-content h1::after, main .entry-content h2::after {
  left: 5px;
  width: 1px;
}
main .entry-content h2 {
  font-size: 16px;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .entry-content h2 {
    font-size: 22px;
  }
}
main .entry-content h3 {
  font-size: 14px;
  margin-top: 40px;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .entry-content h3 {
    font-size: 19px;
  }
}
main .entry-content h4 {
  font-size: 13px;
  margin-top: 40px;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .entry-content h4 {
    font-size: 17px;
  }
}
main .entry-content h5 {
  font-size: 12px;
  margin-top: 40px;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .entry-content h5 {
    font-size: 15px;
  }
}
main .sec_info {
  background: #F7F7F7;
  padding: 40px 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .sec_info {
    padding: 50px;
  }
}
main .sec_info .info_ttl {
  text-align: center;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 30px;
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .sec_info .info_ttl {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
main .sec_info .info_name {
  font-size: 14px;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .sec_info .info_name {
    font-size: 17px;
  }
}
main .sec_info ul.info_list {
  margin: 25px 0 35px;
}
main .sec_info ul.info_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #E0E0E0;
  overflow-wrap: anywhere;
}
main .sec_info ul.info_list li:first-child {
  border-top: 1px solid #E0E0E0;
}
main .sec_info ul.info_list li span {
  display: block;
  width: 30%;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .sec_info ul.info_list li span {
    width: 20%;
  }
}
main .sec_info ul.info_list li p {
  width: 70%;
  /* 751- */
}
@media all and (min-width: 751px) {
  main .sec_info ul.info_list li p {
    width: 80%;
  }
}
main .sec_info iframe {
  width: 100% !important;
}
main .sec_info .map_link {
  margin-top: 20px;
}
main .sec_info .map_link a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  font-size: 13px;
  padding: 0 20px 3px 0;
}
main .sec_author {
  /* 751- */
}
@media all and (min-width: 751px) {
  main .sec_author {
    gap: 0 30px;
  }
}
main .sec_author .author_ttl {
  /* 751- */
}
@media all and (min-width: 751px) {
  main .sec_author .author_ttl {
    margin: 0;
  }
}
main .sec_author .author_box {
  /* 751- */
}
@media all and (min-width: 751px) {
  main .sec_author .author_box {
    gap: 0 30px;
  }
}
main .sec_author .author_box .author_avatar {
  /* -750 */
}
@media all and (max-width: 750px) {
  main .sec_author .author_box .author_avatar {
    margin: 20px auto;
    width: 80px;
    height: 80px;
  }
}

/* Recommend
---------------------------------------------------------- */
.sec_recommend {
  margin-bottom: 70px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_recommend {
    margin-bottom: 180px;
  }
}
.sec_recommend .sec_ttl {
  text-align: center;
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  font-size: 30px;
  font-weight: 400;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_recommend .sec_ttl {
    font-size: 50px;
  }
}
.sec_recommend .sec_description {
  text-align: center;
}
.sec_recommend .article_list {
  margin-top: 40px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_recommend .article_list {
    margin-top: 60px;
  }
}
.sec_recommend .article_list .article .like_btn .custom_like-btn {
  padding: 0 0 0 22px;
  font-size: 11px;
  border: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_recommend .article_list .article .like_btn .custom_like-btn {
    padding: 0 0 0 19px;
    font-size: 13px;
  }
}
.sec_recommend .article_list .article .like_btn .custom_like-btn::before {
  width: 17.85px;
  height: 15.52px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_recommend .article_list .article .like_btn .custom_like-btn::before {
    width: 19.98px;
    height: 17.37px;
    left: -9px;
  }
}
.sec_recommend .article_list .article .like_btn .custom_like-btn::after {
  display: none;
}
/*# sourceMappingURL=post_single.css.map */