@charset "utf-8";

/* ========================================================
 関連記事・囲み枠・CV（コンバージョン）
 ======================================================== */

/* 関連記事 */
.related.related_thumb {
  border: 1px solid #B2B2B2;
  border-radius: 2px;
  padding: 30px;
  margin-bottom: 40px;
}

.related.related_thumb .related_title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1.8rem;
  color: #35453F;
  margin-bottom: 20px;
}

.related.related_thumb .related_title i {
  color: #35453F;
}

.related.related_thumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related.related_thumb li {
  padding: 0;
  margin-bottom: 15px;
}

.related.related_thumb li:last-child {
  margin-bottom: 0;
}

.related.related_thumb li ::before {
  content: none;
}

.related.related_thumb li a {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.related.related_thumb li a:hover {
  opacity: 0.7;
}

.related.related_thumb li a figure {
  flex-shrink: 0;
  width: 120px;
  margin: 0;
}

.related.related_thumb li a figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.related.related_thumb .post_title {
  font-size: 1.5rem;
  line-height: 1.5;

}

/* 囲み枠 */
.kakomi {
  font-size: 1.5rem;
  margin: 2.4rem auto 40px;
  padding: 30px;
  border: 1px solid #B2B2B2;
  border-radius: 2px;
  color: #35453F;
}

.kakomi ul li {
  list-style: disc;
  margin: 1em 0 1em 2em;
}

.kakomi_with_title .title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #35453F;
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.kakomi_with_title .title i {
  color: #35453F;
}

.kakomi p {
  margin: 0;
  line-height: 1.8;
}

.kakomi p+p {
  margin-top: 1.5rem;
}

/* CVボタン */
.cvbtn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 340px;
  margin: 40px auto;
  padding: 20px 40px;
  background-color: #35453F;
  color: #fff !important;
  border: 1px solid #35453F;
  border-radius: 2px;
  font-family: "NHaasGroteskTXPro-55Rg", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
  position: relative;
}

.cvbtn::after {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  background-image: url(../imgs/common/icon_arrow.png);
  background-size: cover;
  margin-left: 15px;
  transition: 0.3s;
}

.cvbtn:hover {
  background-color: transparent;
  color: #35453F !important;
}

.cvbtn:hover::after {
  filter: invert(1);
  transform: translateX(5px);
}

/* CVボタン（特大・アクセント向け） */
.cvbtn.cvbtn_2 {
  padding: 25px 50px;
}

@media screen and (max-width: 767px) {
  .cvbtn {
    min-width: 100%;
    margin: 30px 0;
    padding: 15px 20px;
    font-size: 1.4rem;
  }

  .cvbtn.cvbtn_2 {
    font-size: 1.6rem;
  }
}

/* --------------------------------------------
   追加パターン
-------------------------------------------- */

/* 注意書き・警報 */
.notion {
  background-color: #f9f9f9;
  /* border: 1px solid #B2B2B2; */
  border-left: 4px solid #B2B2B2;
  padding: 25px;
  margin: 2.4rem 0 4rem;
  border-radius: 2px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #35453F;
}

/* 関連記事・おすすめ記事リスト（サムネイルなし） */
.list-related,
.list-recommend {
  margin: 2.4rem 0;
  padding: 0;
  list-style: none;
}

.list-related li,
.list-recommend li {
  border-bottom: 1px solid #E1E3D9;
  padding: 15px 0;
}

.list-related li:last-child,
.list-recommend li:last-child {
  border-bottom: none;
}

.list-related li a,
.list-recommend li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #35453F;
  transition: 0.3s;
}

.list-related li a:hover,
.list-recommend li a:hover {
  opacity: 0.7;
}

.list-related li a::before,
.list-recommend li a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 15px;
  color: #35453F;
}

/* おすすめ記事（リンク形式） */
.related_link {
  border: 1px solid #B2B2B2;
  padding: 30px;
  margin: 2.4rem 0 40px;
  border-radius: 2px;
}

.related_link .title,
.summary .title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1.8rem;
  color: #35453F;
  margin-bottom: 20px;
}

.related_link .title i {
  color: #35453F;
}

.related_link li {
  margin: 0;
  border-bottom: 1px solid #E1E3D9;
}

.related_link li:last-child,
.summary li:last-child {
  border-bottom: none;
}

.related_link li a,
.summary li {
  display: flex !important;
  align-items: center;
  padding: 15px 0;
  text-decoration: none;
  color: #35453F;
  transition: 0.3s;
}

.related_link li a:hover {
  opacity: 0.7;
}

.related_link li a::before,
.summary li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 15px;
  color: #35453F;
}

/* この記事のポイント */
.summary {
  margin-bottom: 2rem;
}

.summary li {
  padding: .5em 0;
}

/* .box-points {
  border: 1px solid #B2B2B2;
  padding: 30px;
  margin: 2.4rem 0;
  border-radius: 2px;
  background-color: #fff;
}

.box-points .title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #35453F;
  margin-bottom: 20px;
}

.box-points .title::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #35453F;
}

.box-points ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.box-points li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1.5rem;
  line-height: 1.6;
}

.box-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 1px;
  background-color: #35453F;
}

.box-points li:last-child {
  margin-bottom: 0;
} */


/* テーブル（Gutenberg Table Block） */
.wp-block-table {
  margin: 4rem 0;
  overflow-x: auto;
}


.wp-block-table table,
.wp-block-table thead,
.wp-block-table th,
.wp-block-table td {
  border-collapse: collapse;
}

.wp-block-table thead {
  border-bottom: 1px solid #B2B2B2 !important;
}

.wp-block-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #B2B2B2;
  /* overflow: hidden; */
}

.wp-block-table table.has-fixed-layout {
  table-layout: fixed;
}

.wp-block-table table th,
.wp-block-table table td {
  padding: 20px 10px;
  border-bottom: 1px solid #B2B2B2;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
  color: #35453F;
}

.wp-block-table th {
  padding: 24px 10px;
  font-weight: 500;
  border-bottom: 1px solid #B2B2B2;
  background-color: #E1E3D9;
}

.wp-block-table tbody tr:last-child td {
  border-bottom: none;
}

/* テーブル縦横 */
.wp-block-table table th.headline-th,
.wp-block-table table tbody th {
  background-color: #f5f5f5;
}

/* テキストリンク */
.txtlink {
  position: relative;
  color: #35453F;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.3s;
}

.txtlink:hover {
  opacity: 0.7;
}

.txtlink::before {
  content: "\f0c1";
  display: inline-block;
  margin-right: 0.5rem;
  color: #35453F;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9em;
}

/* blockエディタ用 */
.wp-block-list li {
  padding: 0 0 .5em 0;
  list-style: disc;
  margin-left: 1.4em;
}