@charset "UTF-8";

/* =============================================
 CSS assets
============================================= */
@font-face {
  font-family: NotoSansCJKjp;
  font-weight: 400;
  font-style: normal;
  src: url("../font/NotoSansCJKjp-Regular.woff") format("woff");
}

/* =============================================
 Base / Reset
============================================= */
* {
  box-sizing: border-box;
}

body,
div,
p,
h1,
h2,
h3,
h4,
h5,
span,
article,
aside,
figcaption,
figure,
footer,
header,
nav,
section,
ul,
ol {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
}

body main {
  background-color: #e9e9e9 !important;
}

body main.single_post {
  background-color: #e9e9e9 !important;
}

main {
  color: #000;
  font-family: "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN W3",
    "Hiragino Sans",
    Meiryo,
    "MS PGothic",
    sans-serif !important;
  line-height: 1;
  margin-top: 0;
}

main div,
main span,
main object,
main iframe,
main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p,
main blockquote,
main pre,
main a,
main abbr,
main address,
main cite,
main code,
main del,
main dfn,
main em,
main img,
main ins,
main kbd,
main q,
main s,
main samp,
main small,
main strong,
main sub,
main sup,
main var,
main b,
main u,
main i,
main dl,
main dt,
main dd,
main ol,
main ul,
main li,
main fieldset,
main form,
main label,
main legend,
main table,
main caption,
main tbody,
main tfoot,
main thead,
main tr,
main th,
main td,
main article,
main aside,
main canvas,
main details,
main embed,
main figure,
main figcaption,
main footer,
main header,
main hgroup,
main main,
main menu,
main nav,
main output,
main ruby,
main section,
main summary,
main time,
main mark,
main audio,
main video,
main button,
main input,
header.ETheader,
header.ETheader input {
  font-family: "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3",
    "游ゴシック",
    "YuGothic",
    "メイリオ",
    Verdana,
    sans-serif !important;
}

ol,
ul {
  list-style: none;
}

p {
  font-size: 100%;
}

a {
  text-decoration: none;
}

a:link,
a:visited {
  color: inherit;
}

b,
em,
strong,
mark {
  color: inherit;
}

img {
  vertical-align: bottom;
}

/* =============================================
 Utility
============================================= */
.float_r {
  float: right;
  margin: 17px 40px 17px 17px;
}

.float_l {
  float: left;
  margin: 17px 17px 17px 40px;
}

.displayNone {
  display: none;
}

.font12 {
  font-size: 12px;
}

.font14 {
  font-size: 14px;
}

.font16 {
  font-size: 16px;
}

.font18 {
  font-size: 18px;
}

.font20 {
  font-size: 20px;
}

.textLeft {
  text-align: left;
}

.fontNormal {
  font-weight: normal;
}

.px980 {
  width: 980px;
}

.clearfix {
  display: inline-block;
}

.clearfix::after {
  clear: both;
  display: block;
}

/* 開閉エリア用(汎用, js操作用) */
.retractableArea .text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  transition: display 0.5s ease;
}

.retractableArea.isopen .text {
  display: block;
  max-height: none;
}

.retractableArea .moreBtn {
  cursor: pointer;
}

@media all and (-ms-high-contrast: none) {
  .retractableArea .text {
    max-height: 80px;
    display: block;
  }

  .retractableArea.isopen .text {
    max-height: none;
  }
}

/* =============================================
 Layout
============================================= */
main.header-isFixed {
  margin-top: 60px;
}

#main_inner {
  margin: 0 auto;
  padding-top: 40px;
  width: 980px;
  display: flex;
  justify-content: space-between;
}

#left_area {
  width: 740px;
}

#right_area {
  width: 200px;
}

#index_top_outer {
  padding-bottom: 30px;
}

#single_post {
  margin-bottom: 50px;
  padding: 20px 30px;
  width: 100%;
}

#sitemap {
  margin-bottom: 50px;
}

#sitemap #single_post {
  padding-bottom: 70px;
}

/* =============================================
 Common Parts
============================================= */
/* ---------------------
 パンくず
---------------------- */
.breadcrumbs a:link,
.breadcrumbs a:visited {
  color: #06c;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #e94e30;
  text-decoration: underline;
}

/* ---------------------
 ヘッダー
---------------------- */
.ETheader {
  background-color: #007a51;
  height: 60px;
  position: static;
}

.ETheader .ETheader_container {
  width: 980px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  position: relative;
}

.ETheader .logo {
  display: block;
  width: 211px;
  line-height: 60px;
  padding-bottom: 3px;
}

.ETheader .logo img {
  display: inline;
  vertical-align: middle;
}

.ETheader nav {
  height: 60px;
  display: flex;
  margin-left: auto;
  margin-right: 168px;
}

.ETheader ul {
  display: flex;
}

.ETheader li a {
  font-size: 14px;
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  padding: 21px 10px 15px;
  letter-spacing: 1px;
  margin-right: 10px;
}

.ETheader li a:hover {
  border-bottom: 5px solid #fff;
}

.ETheader li:last-of-type a {
  margin-right: 28px;
}

.ETheader li:nth-of-type(4) {
  position: relative;
}

.ETheader li:nth-of-type(4)::before {
  content: "";
  position: absolute;
  right: 0;
  border-right: 1px solid white;
  display: block;
  height: 45%;
  top: 4px;
  bottom: 0;
  margin: auto;
}

.ETheader li:nth-of-type(4) a {
  margin-right: 25px;
}

.ETheader li:nth-of-type(5) a {
  margin-left: 25px;
}

.ETheader.isFixed {
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
}

.ETheader.isFixed li a {
  padding: 24px 10px 12.5px;
}

.ETheader #___gcse_0 {
  width: 168px;
  position: absolute;
  right: 0;
  top: 8px;
}

.ETheader .gsc-input-box,
.ETheader table.gsc-search-box,
.ETheader table.gsc-search-box tbody,
.ETheader table.gsc-search-box tr,
.ETheader td.gsib_a,
.ETheader input#gsc-i-id1 {
  border: none !important;
  outline: none !important;
  background: none !important;
}

.ETheader table.gsc-search-box td.gsc-input {
  padding-right: 0;
}

.ETheader table.gsc-search-box td.gsc-input input {
  color: #fff;
  font-size: 14px;
  padding-left: 15px !important;
  width: 90% !important;
}

.ETheader .gsc-input-box {
  border-bottom: 1px solid #ddd !important;
}

.ETheader .gsib_a {
  padding: 11px 9px 4px 9px;
}

.ETheader .gsc-search-button {
  position: relative;
}

.ETheader .gsc-search-button .gsc-search-button-v2 {
  position: absolute;
  border: none;
  padding: 6px 5px 0 0;
  left: -169px;
  top: 7px;
  background: none;
  outline: none;
}

.ETheader .gsc-control-cse {
  padding: 0;
  margin-right: 32px;
}

.ETheader .gsc-search-button .gsc-search-button-v2 svg {
  width: 17px;
  height: 17px;
}

.ETheader .gsst_b {
  line-height: 16px;
  margin-top: 14px;
}

.ETheader .gscb_a {
  line-height: 14px;
}

.ETheader .gsst_a .gscb_a {
  color: #fff;
}

/* ---------------------
 サイドバー
---------------------- */
[id="right_area"] .banner {
  margin: 0 0 20px;
}

[id="right_area"] .banner a {
  display: block;
}

[id="right_area"] .sitemap {
  font-size: 13px;
  margin: 30px 2px;
}

[id="right_area"] .links1 {
  margin: 30px 0;
}

[id="right_area"] .links1 a {
  margin-bottom: 12px;
}

[id="right_area"] .links1 a:last-of-type {
  margin-bottom: 0;
}

[id="right_area"] .links1 .concept-link,
[id="right_area"] .links1 .contact-link {
  display: block;
  font-size: 13px;
}

[id="right_area"] .links1 .concept-link:link,
[id="right_area"] .links1 .concept-link:visited,
[id="right_area"] .links1 .contact-link:link,
[id="right_area"] .links1 .contact-link:visited {
  color: black;
}

[id="right_area"] .links1 .concept-link::before,
[id="right_area"] .links1 .contact-link::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 10px;
}

[id="right_area"] .links1 .concept-link::before {
  background-image: url(../img/ET_PC.png);
}

[id="right_area"] .links1 .contact-link::before {
  background-image: url(../img/mail_PC.png);
}

[id="right_area"] .engineer-dictionary-links {
  padding: 0 2px;
}

[id="right_area"] .engineer-dictionary-links ul {
  line-height: 2;
}

[id="right_area"] .engineer-dictionary-links>ul>li>a {
  font-size: 13px;
  color: black;
}

[id="right_area"] .engineer-dictionary-links li.title {
  font-weight: bold;
}

[id="right_area"] .tags {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  height: calc((1em + 4px*2 + 8px) * 4);
  overflow: hidden;
  line-height: 1em;
}

[id="right_area"] .tags li {
  background-color: #6d6d6d;
  color: #fff;
  padding: 4px 5px;
  border-radius: 3px;
  margin-right: 8px;
  margin-bottom: 8px;
}

[id="right_area"] .tags li a {
  text-decoration: none;
}

[id="right_area"] .tags li:hover {
  opacity: 0.8;
}

[id="right_area"] .tag-title {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
}

[id="right_area"] .tag-accordion {
  margin-top: 13px;
  text-align: center;
  font-size: 13px;
  text-decoration: underline;
}

[id="right_area"] .tag-accordion span:hover {
  cursor: pointer;
  font-weight: bold;
}

[id="right_area"] .tag-accordion span {
  position: relative;
}

[id="right_area"] .tag-accordion span.close:after {
  background-image: url(../img/down_arrow.png);
  position: absolute;
  top: -1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-size: contain;
  width: 20px;
  height: 20px;
  content: '';
  -webkit-transition: -webkit-transform .4s;
  transition: transform .4s;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

/* ---------------------
 フッター
---------------------- */
.page-description-inner {
  font-size: 120%;
}

/* ---------------------
 ショートコード
---------------------- */
.series-description {
  display: block;
  margin: 25px 0;
  border-bottom: 1px solid #e5e5e5;
}

.series-description__heading {
  padding-left: 55px;
  position: relative;
}

.series-description__heading__title {
  display: block;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 2;
}

.series-description__heading__shoulder {
  display: inline-block;
  width: 100%;
  font-size: 12px;
  font-weight: normal;
  line-height: 2;
  margin-top: -4px;
}

.series-description__heading::before {
  background: #000;
  position: absolute;
  left: 0;
  padding: 2px 4px 0;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

.series-description__heading--series::before {
  content: "連載";
}

.series-description__heading--special::before {
  content: "特集";
}

.series-description a.series-description__heading__title {
  color: #000;
  text-decoration: underline;
  cursor: pointer;
}

.series-description a.series-description__heading__title:hover {
  text-decoration: none;
}

.series-description__body {
  padding: 12px 0 25px;
  font-size: 13px;
  line-height: 1.9;
}

.series-description:hover {
  text-decoration: none;
}

.article-image {
  margin: 2em 0;
  max-width: 100%;
  display: table;
}

.article-image img {
  max-width: 100%;
}

.article-image__caption {
  display: table-caption;
  caption-side: bottom;
  color: #555;
  text-align: left;
  clear: both;
  padding: 18px 0;
}

.article-image__caption__heading {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 3px;
}

.article-image__caption__body {
  font-size: 13px;
}

.article-image__caption__heading,
.article-image__caption__body {
  line-height: 1.8;
}

.article-image__caption__heading a,
.article-image__caption__body a {
  color: #000;
  text-decoration: underline;
}

.article-image__caption__heading a:hover,
.article-image__caption__body a:hover {
  text-decoration: none;
}

.article-image__caption__heading a,
.article-image__caption__body a {
  color: #555;
}

.article-image__caption--bg-gray {
  background: #e9e9e9;
  padding: 18px;
}

.article-image__caption--heading-none {
  padding-top: 8px;
  padding-bottom: 8px;
}

.article-image--left {
  float: left;
  margin-right: 2em;
}

.article-image--right {
  float: right;
  margin-left: 2em;
}

.article-image--center {
  text-align: center;
  margin: 2em auto;
}

.article-image--captionfull.article-image--right,
.article-image--captionfull.article-image--left {
  float: none;
  margin: 0;
}

.article-image--captionfull.article-image--right .article-image__caption,
.article-image--captionfull.article-image--left .article-image__caption {
  clear: both;
  display: block;
  width: 680px;
}

.article-image--captionfull.article-image--left .article-image__img {
  float: left;
  margin-right: 2em;
}

.article-image--captionfull.article-image--right .article-image__img {
  float: right;
  margin-left: 2em;
}

.article-image--captionfull.article-image--center .article-image__caption {
  display: block;
  width: 680px;
  text-align: center;
}

.box-design {
  margin: 2em 0;
  padding: 20px;
  background: #daeae6;
  word-break: break-word;
}

.box-design a {
  color: #000;
  text-decoration: underline;
}

.box-design a:hover {
  text-decoration: none;
}

.box-design a {
  color: #000;
}

.box-design__heading--design1,
.box-design__text--design1 {
  font-size: 15px;
}

.box-design__heading--design1 {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #007a51;
  font-weight: bold;
  color: #007a51;
  line-height: 1.5;
}

.box-design__heading--design2 {
  margin-bottom: 25px;
  padding-left: 5px;
  border-left: 7px solid #007a51;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3;
  color: #007a51;
  position: relative;
}

.box-design__heading--design2::before {
  content: "";
  position: absolute;
  border-bottom: 1px solid #007a51;
  width: 101%;
  height: 160%;
  left: -8px;
}

.box-design__text--design1,
.box-design__text--design2 {
  color: #000;
  line-height: 1.8;
}

.box-design__text--design2 {
  font-size: 13px;
}

.profile {
  margin: 2em 0;
  padding: 15px;
  background: #e9e9e9;
  display: flex;
  justify-content: space-between;
  color: #555;
}

.profile__img {
  margin: 0 20px 0 0;
  border-radius: 70px;
}

.profile__text {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 100%;
}

.profile__text__heading {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 15px;
}

.profile__text__body {
  font-size: 13px;
}

.profile__text__heading,
.profile__text__body {
  line-height: 1.8;
}

.profile__text__heading a,
.profile__text__body a {
  color: #000;
  text-decoration: underline;
}

.profile__text__heading a:hover,
.profile__text__body a:hover {
  text-decoration: none;
}

.profile a {
  color: #555;
}

.quotation {
  margin: 2em 0;
  padding: 40px 15px;
  background: #e9e9e9;
  border-left: 6px solid #ddd;
  position: relative;
}

.quotation a {
  color: #000;
  text-decoration: underline;
}

.quotation a:hover {
  text-decoration: none;
}

.quotation::before,
.quotation::after {
  position: absolute;
  font-size: 50px;
  font-family: "游ゴシック", "游ゴシック体";
  font-weight: bold;
  color: #bbb;
  line-height: 1;
}

.quotation::before {
  content: "\201C";
  top: 15px;
  left: 15px;
}

.quotation::after {
  content: "\201D";
  right: 15px;
  bottom: -10px;
}

.quotation__sentence,
.quotation__source {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
}

.quotation__source {
  text-align: right;
  display: block;
}

.quotation__source::before {
  content: "引用元：";
  display: inline-block;
}

.quotation a {
  color: #555;
}

.balloon-block {
  overflow: hidden;
  padding: 25px 20px;
  margin: 0;
  line-height: 1.5;
}

.balloon-block>.balloon-type-left::after,
.balloon-block>.balloon-type-right::after {
  display: block;
  clear: both;
  content: "";
}

.balloon-block>.balloon-type-left>.balloon-speaker {
  float: left;
  margin-right: -70px;
  width: 70px;
}

.balloon-block>.balloon-type-right>.balloon-speaker {
  float: right;
  margin-left: -70px;
  width: 70px;
}

.balloon-block>.balloon-type-left>.balloon-speaker>.balloon-icon,
.balloon-block>.balloon-type-right>.balloon-speaker>.balloon-icon {
  text-align: center;
  height: 60px;
}

.balloon-block>.balloon-type-left>.balloon-speaker>.balloon-icon>img.balloon-icon,
.balloon-block>.balloon-type-right>.balloon-speaker>.balloon-icon>img.balloon-icon {
  height: 53px;
  width: 53px;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
  border-radius: 50%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.balloon-block>.balloon-type-right>.balloon-speaker-name {
  text-align: right;
  margin-right: 70px;
  margin-bottom: 5px;
  font-size: 14px;
}

.balloon-block>.balloon-type-left>.balloon-speaker-name {
  text-align: left;
  margin-left: 70px;
  margin-bottom: 5px;
  font-size: 14px;
}

.balloon-block>.balloon-type-left>.balloon-area {
  float: left;
  position: relative;
  margin-left: 80px;
}

.balloon-block>.balloon-type-left>.balloon-area::before {
  position: absolute;
  top: 14px;
  left: -12px;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 6px solid #ccc;
  border-right: 6px solid #ccc;
  border-bottom: 6px solid transparent;
  border-left: 6px solid transparent;
  content: "";
}

.balloon-block>.balloon-type-left>.balloon-area::after {
  position: absolute;
  top: 15px;
  left: -10px;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 6px solid #fff;
  border-right: 6px solid #fff;
  border-bottom: 6px solid transparent;
  border-left: 6px solid transparent;
  content: "";
}

.balloon-block>.balloon-type-right>.balloon-area {
  float: right;
  position: relative;
  margin-right: 80px;
}

.balloon-block>.balloon-type-right>.balloon-area::before {
  position: absolute;
  top: 14px;
  right: -12px;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 6px solid #ccc;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #ccc;
  content: "";
}

.balloon-block>.balloon-type-right>.balloon-area::after {
  position: absolute;
  top: 15px;
  right: -10px;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 6px solid #fff;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
  content: "";
}

.balloon-block>.balloon-type-left>.balloon-area>.balloon-text,
.balloon-block>.balloon-type-right>.balloon-area>.balloon-text {
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  padding: 16px 20px;
  z-index: 2;
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
  border-radius: 10px;
  word-wrap: break-word;
  word-break: break-word;
}

.jobBoad {
  display: flex;
  font-size: 14px;
  line-height: 1.7;
  width: 660px;
  height: 72px;
  background-color: #e5e5e5;
  margin: 8px 0;
}

.jobBoad .innerLouter {
  float: left;
  display: table;
  margin: 0;
  padding: 0;
  height: 72px;
  width: 90px;
}

.jobBoad .pic {
  margin: 5px 20px 5px 5px;
}

.jobBoad .inner_boxR {
  float: left;
  display: table;
  height: 72px;
}

.jobBoad .text {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 552px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0;
}

.jobBoad .text .name {
  font-size: 11.5px;
  font-weight: normal;
  color: #888;
  letter-spacing: 1.5px;
}

.su-table {
  width: 100%;
  margin-bottom: 1.5em;
}

.su-table table {
  width: 100% !important;
  margin: 0 !important;
  border-collapse: collapse !important;
  font-size: 1em !important;
  border: 1px solid #ccc !important;
  table-layout: auto !important;
}

.su-table table th {
  text-align: center !important;
  padding: 1em !important;
  font-size: 1em !important;
  font-weight: bold !important;
  color: #333 !important;
  border: 1px solid #ccc !important;
  background: #f0f0f0 !important;
}

.su-table table td {
  padding: 0.5em 1em !important;
  border: 1px solid #ccc !important;
  background: #fff !important;
}

.su-table-responsive {
  overflow-x: auto;
}

.su-table-responsive table {
  width: auto !important;
  min-width: 100% !important;
}

.su-table-responsive table th,
.su-table-responsive table td {
  word-break: initial !important;
}

.su-table-alternate table tr:nth-child(even) td {
  background-color: #f7f7f7 !important;
}

.su-table-fixed table {
  table-layout: fixed !important;
}

/* ---------------------
 クイックタグ
---------------------- */
.marker_yellow {
  background: linear-gradient(transparent 80%, #f8e81c 0);
  font-weight: 700;
  font-family: sans-serif;
}

.b_green {
  display: table;
  color: #159671 !important;
  font-weight: bold !important;
  font-size: 15px !important;
  padding: 10px 0 !important;
  line-height: 1.5 !important;
  margin: 0px !important;
}

.youtube-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 1em 0;
  text-align: center;
}

.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ---------------------
ページネーション
---------------------- */
.pagination {
  text-align: center;
  margin: 50px 0 60px 0;
}

.pagination li {
  font-size: 14px;
  display: inline-block;
  margin: 0 5px;
}

.pagination li a {
  color: #000;
  display: inline-block;
  background-color: #fff;
  height: 47px;
  width: 47px;
  padding: 17px 0;
  line-height: 1;
  text-decoration: none !important;
}

.pagination li a:hover {
  text-decoration: none;
  background-color: #007a51;
  color: #fff;
}

.pagination li.next a {
  background-image: url(//type.jp/et/feature/sta/img/pagen.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 7px;
}

.pagination li.next a:hover {
  background-image: url(//type.jp/et/feature/sta/img/pagen_on.png);
}

.pagination li.prev a {
  background-image: url(//type.jp/et/feature/sta/img/pagep.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 7px;
}

.pagination li.prev a:hover {
  background-image: url(//type.jp/et/feature/sta/img/pagep_on.png);
}

.pagination li.next,
.pagination li.prev,
.pagination li.dot {
  background-color: transparent;
}

.pagination .now a {
  background-color: #007a51;
  color: #fff;
}

/* =============================================
 記事リンクカード
============================================= */
.cardArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.cardArea a {
  display: block;
}

.cardArea a:hover {
  text-decoration: none;
}

.cardArea a:hover img,
.cardArea a:hover .rank {
  opacity: 0.7;
}

.cardArea a:hover .title {
  text-decoration: underline;
}

.cardArea .date {
  margin: 5px 0;
}

.cardArea .date time {
  color: #888;
}

.cardArea .title {
  height: 66px;
  line-height: 1.6;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  margin-bottom: 0;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cardArea .text {
  color: #888;
  line-height: 1.8;
  padding: 0 0 0 0;
}

.card {
  width: 235px;
  background-color: #fff;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 2px rgba(0, 0, 0, 0.1);
}

.card__imgBox {
  width: 100%;
  height: 122px;
}

.card__inner {
  padding: 18px 15px 15px 20px;
}

.card--black .card__inner {
  background: #000;
}

.card--black .date time,
.card--black .newMark,
.card--black .title {
  color: #fff;
}

.card--middle {
  width: 360px;
}

.card--middle .card__imgBox {
  height: 189px;
}

.card--middle .card__inner {
  height: auto;
}

.card--middle .card__inner .title {
  height: 52px;
  font-size: 16px;
  -webkit-line-clamp: 2;
}

.card--large {
  width: 360px;
  height: 395px;
}

.card--large .card__imgBox {
  height: 188px;
}

.card--large .card__inner {
  padding: 16px 20px 10px 21px;
}

.card--large .title {
  height: 52px;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card--large .text {
  font-size: 11px;
  color: #888;
  line-height: 2;
  height: 66px;
  margin: 10px 0;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  letter-spacing: 1.5px;
}

.list-card {
  margin-bottom: 5px;
}

.list-card a {
  display: flex;
}

.list-card__imgBox img {
  width: 190px;
  height: 100px;
}

.list-card__inner {
  width: 500px;
  height: 100px;
  padding: 18px 15px 15px 20px;
  background: #fff;
}

.list-card__inner .title {
  -webkit-line-clamp: 2;
  height: auto;
}

#right_area .ranking {
  margin: 0;
  color: #fff;
  background: #000;
  padding: 15px;

  .cardAreaName {
    font-size: 22px;
    margin: 10px 0 24px;
    text-align: center;

    .CN_under {
      padding: 10px 0 0;
    }
  }

  .list-card+.list-card::before {
    display: block;
    content: '';
    margin: 15px 0;
    border-top: 1px #c5c5c5 solid;
  }

  .list-card {
    margin: 0;

    .list-card__inner {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: fit-content;
      background-color: #000;
      padding: 0;
      margin-top: 10px;

      .title {
        color: #fff;
        line-height: 1.4;
        font-size: 12px;
        letter-spacing: 0.5px;
        -webkit-line-clamp: 3;
        text-overflow: ellipsis;
      }
    }

    .list-card__imgBox img {
      width: 100%;
      height: auto;
    }

    a {
      display: flex;
      flex-direction: column;
    }
  }
}

.cardArea.related::after,
[id="category"] .cardArea::after,
.cardArea.pickup::after,
[id="tag"] .cardArea::after {
  content: "";
  display: block;
  width: 235px;
}

.jobBoard_feature {
  margin-bottom: 25px;
}

.jobBoard_feature .card__imgBox {
  height: 170px;
}

.jobBoard_feature .card__inner {
  padding: 16px 14px 18px 18px;
}

.jobBoard_feature .card__inner,
.jobBoard_feature .card__inner .title {
  height: auto;
}

.cardArea.ranking article {
  counter-increment: ranking;
}

.rank {
  position: relative;
  display: block;
}

.rank::before {
  content: counter(ranking);
  position: absolute;
  font-size: 26px;
  font-style: oblique;
  color: #fff;
  z-index: 2;
  right: 2px;
  bottom: 0;
  text-align: center;
  width: 35px;
}

.rank::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.7;
  border-top: 30px solid transparent;
  border-right: 30px solid #000;
  border-bottom: 30px solid #000;
  border-left: 30px solid transparent;
  z-index: 1;
}

.tag-list {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-top: 10px;
  max-height: 20px;
  line-height: 20px;
  overflow: hidden;
}

.tag-list li {
  color: #007A51;
  margin-right: 8px;
}

.tag-list li:hover {
  text-decoration: underline #007A51;
}

/* ---------------------
 その他共通パーツ
---------------------- */
.pageName {
  border-bottom: 1px solid #b5b5b5;
  padding-bottom: 19px;
  width: 100%;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: 1px;
}

.lead {
  padding: 15px 0 34px;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 1.8px;
}

.lead .retractableArea .moreBtn {
  display: block;
  text-align: right;
  color: #888;
}

.lead .retractableArea .moreBtn::before {
  content: "[";
  color: inherit;
}

.lead .retractableArea .moreBtn::after {
  content: "]";
  color: inherit;
}

.cardAreaName {
  font-size: 30px;
  width: 100%;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.cardAreaName .CN_under {
  font-size: 14px;
  display: block;
  font-weight: normal;
  padding: 15px 0;
}

hr {
  border: none;
  border-bottom: 1px solid #b5b5b5;
  margin: 20px 0;
}

.newMark {
  font-size: 12px;
  color: #007a51;
  letter-spacing: -1px;
  padding-right: 3px;
}

.more-button {
  text-align: center;
  margin: 0 auto 45px;
}

.more-button a {
  display: inline-block;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 45px;
  width: 250px;
  height: 45px;
  background: linear-gradient(90deg, #47aa5e 20%, #007a51 100%);
}

.more-button a::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 15px;
  top: 7px;
  right: 15px;
  border-bottom: 2px solid #fff;
}

.more-button a::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 15px;
  top: 5px;
  right: 8px;
  transform: rotate(45deg);
  border-bottom: 2px solid #fff;
}

.more-button a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.more-button a:link,
.more-button a:visited {
  color: #fff;
}

.follow-twitter {
  margin: 0 auto;
  padding: 10px 0;
  background-color: #0f1419;
  border-radius: 5px;
  width: 240px;
  display: block;
  font-size: 12px;
  text-align: center;
}

.follow-twitter:link,
.follow-twitter:visited {
  color: white !important;
}

.follow-twitter::before {
  content: "";
  width: 18px;
  height: 19px;
  display: inline-block;
  background: url(../img/x_logo_white.png) no-repeat;
  background-size: 100%;
  vertical-align: middle;
  margin-right: 12px;
}

.follow-twitter--large {
  padding: 19px 0;
  width: 312px;
  font-size: 16px;
  font-weight: bold;
}

.follow-twitter--large::before {
  width: 25px;
  height: 26px;
}

.banner {
  margin: 40px auto 55px;
  display: block;
  text-align: center;
}

.banner:hover {
  opacity: 0.7;
}

.iframeAmazon {
  margin: 0 40px 20px 20px;
  float: right;
}

/* ---------------------
 埋め込みウィジェット
---------------------- */
.twitter-tweet {
  margin: 10px auto;
}

.instagram-media {
  margin: 1em auto !important;
}

.fb-post.fb_iframe_widget {
  text-align: center;
  display: block;
}

#facebookPlagin {
  margin: 20px 0;
  border-bottom: 1px solid #bfbfbf;
}

/* =============================================
 Page / Single 固有
============================================= */
/* ---------------------
 TOP / スライダー(slick)
---------------------- */
.slider {
  opacity: 0;
}

.slider.slick-initialized {
  opacity: 1;
  transition: opacity 0.3s linear;
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.slick-list {
  width: 660px !important;
  height: 430px !important;
  margin: 0 auto;
  overflow: visible;
}

.slick-slide.card--brandpanel {
  margin: 20px auto 0;
  width: 660px !important;
  height: 430px !important;
  transform: scale(0.9);
  transition: transform 0.5s linear;
  float: left;
  list-style: none;
  box-shadow: none;
}

.slick-slide.card--brandpanel a {
  display: block;
}

.slick-slide.card--brandpanel a:hover {
  color: #fff;
  text-decoration: none;
}

.slick-slide.card--brandpanel a:hover img {
  opacity: 0.7;
}

.slick-slide.card--brandpanel a:hover .title {
  text-decoration: underline;
}

.slick-slide.card--brandpanel .card__imgBox {
  height: auto;
}

.slick-slide.card--brandpanel .card__inner {
  background: #000;
  color: #fff;
  padding: 20px 19px;
}

.slick-slide.card--brandpanel .card__inner .date {
  margin-top: 12px;
  letter-spacing: 0.5px;
}

.slick-slide.card--brandpanel .card__inner .date .newMark {
  color: #fff;
}

.slick-slide.card--brandpanel .card__inner .title {
  overflow: hidden;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 2px;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 2px;
}

.slick-slide.card--brandpanel.slick-active {
  transform: none;
}

.slick-slide.card--brandpanel.slick-active .title {
  font-size: 16px;
  margin-bottom: 0;
}

.arrow {
  position: absolute;
  display: inline-block;
  padding-left: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #fffa;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 5;
  cursor: pointer;
}

.arrow.left {
  right: 692px;
}

.arrow.left::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 0;
  border-bottom: solid 2px #c0babb;
  border-left: solid 2px #c0babb;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 18px;
  left: 17px;
  margin-top: -4px;
}

.arrow.right {
  left: 692px;
}

.arrow.right::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 0;
  border-top: solid 2px #c0babb;
  border-right: solid 2px #c0babb;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 18px;
  right: 17px;
  margin-top: -4px;
}

/* ---------------------
 TOP / その他
---------------------- */
.cardArea.latest .more-button,
.cardArea.dictionary .more-button {
  margin-top: 30px;
}

/* ---------------------
 記事ページ
---------------------- */
.top-article-image {
  margin: -20px -30px 0;
}

[id="postHeader"] {
  background-color: #fff;
  padding: 20px 0 18px 0;
  border-bottom: solid 2px #e5e5e5;
  margin-bottom: 20px;
}

[id="postHeader"] h1 {
  color: #000;
  font-size: 24px;
  line-height: 1.8;
  padding: 0 0 5px 0;
}

[id="postHeader"] .date {
  float: left;
  padding: 5px 5px 5px 0;
  margin-right: 14px;
  font-size: 12px;
  line-height: 1;
}

[id="postHeader"] .date .newMark {
  font-size: 14px;
}

[id="postHeader"] .date .PR {
  font-size: 9px;
  color: #888;
  margin-left: -5px;
}

[id="postHeader"] .date time {
  color: #000;
  font-size: 14px;
  letter-spacing: -0.5px;
  margin-right: 20px;
}

[id="postHeader"] .date a.hash {
  color: #000;
  font-size: 14px;
}

[id="postHeader"] .date a.hash::before {
  content: "＃";
}

[id="postHeader"] .tag-list {
  clear: both;
  max-height: calc(20px + 8px);
}

[id="postHeader"] .tag-list li {
  background-color: #6d6d6d;
  color: #fff;
  padding: 4px 5px;
  border-radius: 3px;
  margin-right: 8px;
}

[id="postHeader"] .tag-list li a {
  text-decoration: none !important;
}

[id="postHeader"] .tag-list li:hover {
  opacity: 0.8;
  text-decoration: none !important;
}

[id="single_post"] {
  background-color: #fff;
  color: #000;
  box-shadow: 0 2px rgba(0, 0, 0, 0.1);
}

[id="single_post"] h2 {
  font-size: 20px;
  color: #008b65;
  margin: 35px 0 15px 0;
  border-left: 7px solid #008b65;
  padding: 8px 0 8px 10px;
  clear: both;
  line-height: 1.5;
}

[id="single_post"] h3 {
  font-size: 15px;
  padding: 15px 17px;
  margin: 10px 0;
  background-image: url(../img/h4_back_PC.png);
  background-repeat: repeat;
  clear: both;
}

[id="single_post"] hr {
  margin: 10px 0;
}

[id="single_post"] strong {
  font-weight: bold;
}

[id="single_post"]>p {
  font-size: 15px;
  margin: 12px 2px;
  line-height: 1.8;
  max-width: 740px;
  word-break: break-word;
}

[id="single_post"] a:not([class]):link,
[id="single_post"] a:not([class]):visited {
  text-decoration: underline;
}

[id="single_post"] a:not([class]):hover {
  text-decoration: none;
}

[id="single_post"] code {
  font-size: 13px;
  line-height: 1.4;
}

[id="toc_container"] {
  padding: 20px;
  margin: 2em 0;
  background: #fff;
  border: solid 1px #e5e5e5;
  width: 530px;
}

[id="toc_container"] a {
  color: #000;
  text-decoration: underline;
}

[id="toc_container"] a:hover {
  text-decoration: none;
}

[id="toc_container"] .toc_title {
  display: inline-block;
  background: #000;
  padding: 1px 5px 0;
  margin-bottom: 5px;
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}

[id="toc_container"] li {
  line-height: 2;
}

[id="toc_container"] a {
  display: block;
  font-size: 15px;
  padding-left: 1em;
}

[id="toc_container"] ul {
  counter-reset: number;
}

[id="toc_container"] ul a::before {
  counter-increment: number;
  content: counter(number) ".";
  display: inline-block;
  margin-right: 15px;
  color: #555;
  font-weight: bold;
}

[id="toc_container"] ul ul {
  margin-left: 20px;
  margin-bottom: 5px;
}

[id="toc_container"] ul ul a {
  font-size: 12px;
  padding-left: 36px;
}

[id="toc_container"] ul ul a::before {
  content: none;
}

.sns {
  padding-top: 50px;
  clear: both;
}

.sns .sns__head {
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  margin-bottom: 12px;
}

.sns .follow-twitter {
  margin-bottom: 30px;
}

.sns .sns__list {
  width: 476px;
  height: 60px;
  margin: 0 auto 20px;
}

.sns .sns__list li {
  width: 22.5%;
  font-size: 12px;
  font-weight: bold;
  margin-right: 3%;
  letter-spacing: 0.075rem;
  line-height: 1;
  float: left;
  background: #fff no-repeat center center;
  background-size: 21px;
  border-radius: 3px;
  border: 1px solid #c9c9c9;
  height: 52px;
}

.sns .sns__list li:last-child {
  margin-right: 0;
}

.sns .sns__list li a {
  display: block;
  width: 100%;
  height: 100%;
}

.sns .sns__list li.twitter {
  background-image: url(../img/x_logo_black.png);
}

.sns .sns__list li.line {
  background-image: url(../img/line.png);
  background-size: 38px;
}

.sns .sns__list li.facebook {
  background-image: url(../img/facebook.png);
}

.sns .sns__list li.hatena {
  background-image: url(../img/hatebu.png);
}

[id="single_post_outer"] {
  padding-bottom: 30px;
}

[id="single_post_outer"] .banner {
  margin: 35px auto 60px;
}

[id="single_post_outer"] .pagination {
  margin: 50px 0 0;
  clear: both;
}

[id="single_post_outer"] .nextLink+.pagination {
  margin: 15px 0 0;
}

[id="single_post_outer"] .nextLink {
  text-align: center;
  font-size: 14px;
  margin: 50px 0 0;
  clear: both;
}

[id="single_post_outer"] .cardAreaName {
  font-size: 28px;
  margin: 28px 0 15px;
}

/* ---------------------
 カテゴリページ
---------------------- */
[id="category"] .pagination {
  margin: 14px 0 41px 0;
}

/* ---------------------
 サイトマップページ
---------------------- */
.page-sitemap .pageName {
  border: none;
}

.page-sitemap [id="single_post"] {
  padding: 50px 30px !important;
  margin-bottom: 50px !important;
}

.page-sitemap h2 {
  font-size: 20px;
  color: #008b65;
  margin: 0 0 15px;
  border-left: 7px solid #008b65;
  padding: 8px 0 8px 10px;
  clear: both;
  line-height: 1.5;
}

.page-sitemap .sitemap-list {
  margin: 0 18px;
  font-size: 14px;
  font-weight: bold;
}

.page-sitemap .sitemap-list li {
  color: #000;
  font-size: 100%;
}

.page-sitemap .sitemap-list li a {
  color: #000;
  text-decoration: underline;
}

.page-sitemap .sitemap-list li a:hover {
  text-decoration: none;
}

.page-sitemap .sitemap-list a {
  margin-left: 5px;
}

.page-sitemap .sitemap-list>li {
  line-height: 2;
}

.page-sitemap .sitemap-list>li::before {
  content: "\025b6";
  font-size: 12px;
  color: #007a51;
}

.page-sitemap .sitemap-list__children,
.page-sitemap .sitemap-list__grandchildren {
  margin-left: 30px;
  font-weight: normal;
}

.page-sitemap .sitemap-list__children li,
.page-sitemap .sitemap-list__grandchildren li {
  line-height: 1.8;
}

.page-sitemap .sitemap-list__children li::before,
.page-sitemap .sitemap-list__grandchildren li::before {
  content: "\2514";
  color: #000;
  font-size: 15px;
}

/* ---------------------
 連載一覧 ＆ 特集一覧ページ
---------------------- */
.pageSeries {
  padding-bottom: 85px;
}

.pageSeries hr {
  margin: 0;
}

.pageSeries .lead {
  padding: 23px 0 27px 0;
  font-size: 14px;
}

.series_links {
  width: 600px;
}

.series_links li {
  margin-bottom: 30px;
}

.series_links a {
  display: block;
}

.series_links a:hover img {
  opacity: 0.7;
}

.series_links.small li {
  border-bottom: 1px solid #b5b5b5;
  margin: 0;
}

.series_links.small li:first-of-type {
  border-top: 1px solid #b5b5b5;
}

.series_links.small a {
  padding: 24px 0;
  color: black;
  font-size: 14px;
  font-weight: bold;
}

/* ---------------------
 コンセプトページ
---------------------- */
.pageConcept {
  width: 740px;
  margin: 0 auto -55px;
  padding-bottom: 55px;
}

.pageConcept a:link,
.pageConcept a:visited {
  color: black;
}

.pageConcept__text {
  margin: 0 -169px 56px -169px;
  padding: 100px 0 41px;
  line-height: 2.4;
  text-align: center;
  background: url(../img/concept_bg.png) no-repeat;
  background-size: 100%;
}

.pageConcept__text img {
  margin-bottom: 78px;
}

.pageConcept__text p {
  font-size: 17px;
  margin-bottom: 40px;
}

.pageConcept__text p .kerning {
  letter-spacing: -1px;
}

.pageConcept__promotion {
  text-align: center;
  margin-bottom: 93px;
}

.pageConcept__promotion p {
  font-size: 16px;
  margin-bottom: 1em;
}

.pageConcept__promotion a {
  font-size: 16px;
}

.pageConcept__promotion .follow-twitter {
  margin-bottom: 20px;
}

.pageConcept__promotion a.writer,
.pageConcept__promotion a.contact {
  display: inline-block;
  padding: 10px 20px;
  letter-spacing: 0.8px;
}

.pageConcept__promotion a.writer::before {
  background: url(../img/person.png) no-repeat;
}

.pageConcept__promotion a.contact::before {
  background: url(../img/mail_SP.png) no-repeat;
}

.pageConcept__promotion a.writer::before,
.pageConcept__promotion a.contact::before {
  content: "";
  width: 27px;
  height: 27px;
  display: inline-block;
  background-size: 100%;
  vertical-align: middle;
  margin-right: 5px;
}

.pageConcept .cardArea.pickup {
  margin-bottom: 56px;
}

.pagetop-btn#pagetopBtn {
  position: fixed;
  bottom: 56px;
  right: 60px;
  z-index: 100;
  display: none;
}

.pagetop-btn#pagetopBtn::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  background: #007a51;
  border-radius: 50%;
  top: 0;
  right: 0;
}

.pagetop-btn#pagetopBtn::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 19px;
  right: 17px;
}

.pagetop-btn:hover {
  opacity: 0.7;
}

.pagetop-btn.twitter {
  position: fixed;
  bottom: 56px;
  right: 120px;
  z-index: 100;
}

.pagetop-btn.twitter::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  background: #0f1419;
  border: solid 1px #CFD9DE;
  border-radius: 50%;
  top: 0;
  right: 0;
}

.pagetop-btn.twitter::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 23px;
  display: inline-block;
  background: url(../img/x_logo_white.png) no-repeat;
  background-size: 100%;
  vertical-align: middle;
  top: 11px;
  right: 12px;
}

.pagetop-btn.hatena {
  position: fixed;
  bottom: 56px;
  right: 60px;
  z-index: 100;
}

.pagetop-btn.hatena::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  background: #fff;
  border: solid 1px #CFD9DE;
  border-radius: 50%;
  top: 0;
  right: 0;
}

.pagetop-btn.hatena::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url(../img/hatebu.png) no-repeat;
  background-size: 100%;
  vertical-align: middle;
  top: 13px;
  right: 10px;
}

iframe.footer-iframe {
  width: 1px;
  height: 1px;
  border: none;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
}

/* ショートコード - 関連記事 */
.related-post {
  display: flex;
  overflow: hidden;
  margin: 30px auto;
  width: 100%;
  height: 118px;
  border: 1px solid #E8E9EA;
  border-radius: 4px;
}

.related-post-link {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  width: 100%;
  /* 親要素にフィットさせる */
}

.related-post-image {
  width: 225px;
  /* 固定幅 */
  height: 118px;
  /* 固定高さ */
  flex-shrink: 0;
  /* 画像が縮小されないようにする */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* 右寄せ */
  overflow: hidden;
  /* 画像がはみ出さないようにする */
}

.related-post-image img {
  width: 225px;
  /* 固定幅 */
  height: 118px;
  /* 固定高さ */
  object-fit: contain;
  /* 画像がエリアに収まるようにする */
  display: block;
  object-position: right;
}

.related-post-text {
  width: calc(100% - 225px);
  /* カードサイズ - 画像幅 */
  padding: 15px;
  background-color: #fff;
  color: #333;
  word-break: break-word;
}

.related-post-text strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 2行で省略する */
  overflow: hidden;
  text-overflow: ellipsis;
  /* 省略記号の表示 */
  font-size: 16px;
  margin-bottom: 20px;
  color: #000;
  line-height: 1.2;
}

.related-post-text em {
  font-size: 12px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* 3行で省略する */
  overflow: hidden;
  text-overflow: ellipsis;
  /* 省略記号の表示 */
  padding-bottom: 5px;
  /* 下見切れ防止 */
}

.related-post:hover {
  border: 1.5px solid #888;
}

/* ショートコード - 会員限定コンテンツ */
.type-member-card {
  background: #fff;
  border-radius: 6px;
  border: solid 1px #d7d7d7;
  padding: 27px 0px;
  text-align: center;
  box-shadow: 3px 4px 3px 0 rgba(0, 0, 0, 0.25);
  max-width: 700px;
  margin: 20px auto;
  position: relative;
}

.type-member-card::before {
  content: "";
  width: 740px;
  height: 43px;
  display: block;
  /* 上ほど透明、下に向かってやや白く */
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 10%,
      rgba(255, 255, 255, 0.7) 20%,
      rgba(255, 255, 255, 1) 40%);
  position: absolute;
  top: -44px;
  left: -30px;
}

.type-member-card__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 7px;
  position: relative;
  padding-left: 28px;
  display: inline-block;
  height: 36px;
  line-height: 36px;
}

.type-member-card__title::before {
  background: url(../img/icon_member_content.png) no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  display: inline-block;
  left: -2px;
  top: 5px;
  width: 25px;
  height: 25px;
}

.type-member-card__text {
  font-size: 15px;
  line-height: 1.3;
}

.type-member-card__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.type-member-card .type-member-card__btn {
  width: 280px;
  height: 50px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  color: #fff;
  transition: background 0.2s ease;
}

.type-member-card__btn--login {
  background: #1c9be3;
  line-height: 50px;
}

.type-member-card__btn--login:hover,
.type-member-card__btn--login:active {
  background: rgba(28, 155, 227, 0.8);
}

.type-member-card__btn--register {
  background: #ff6347;
  padding: 4px 40px;
}

.type-member-card__btn--register:hover,
.type-member-card__btn--register:active {
  background: rgba(255, 99, 71, 0.8);
}

.type-member-card__btn--register span {
  font-size: 13px;
  margin-bottom: 1px;
}

.type-member-card__link {
  margin-top: 20px;
}

.type-member-card__about {
  font-size: 15px;
  color: #555;
  text-decoration: underline;
}

.type-member-card .tt-wrap {
  position: relative;
  display: inline-block;
}

.type-tooltip {
  position: absolute;
  top: 20px;
  left: -130px;
  background: #000;
  opacity: 0.86;
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  width: 490px;
  display: none;
  z-index: 10;
  text-align: left;
}

.type-tooltip .tt-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 13px;
}

.type-tooltip .tt-text {
  font-size: 14px;
  line-height: 1.4;
}

.tt-close {
  position: absolute;
  top: 6px;
  right: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 21px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.type-tooltip.show {
  display: block;
}

.type-member-card .tt-btn {
  cursor: pointer;
  user-select: none;
}