/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 03 2026 | 15:38:00 */
/* body・段落 */
body {
  background-color: var(--j7-white);
  color: var(--j7-black);
  font-family: "Inter", -apple-system, BlinkMacSystemFont,
               "Hiragino Sans","Yu Gothic","Meiryo", sans-serif;
}

/* 本文（記事）だけ */
.entry-content {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto!important;
  font-size: 15px !important;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-weight: 400;
}


/* 記事タイトル: 本文幅に揃え、ヘッダーとの間を確保 */
.entry-title {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
  margin-top: 1.5em !important;
}

b, strong {
  font-weight: 600 !important;
}

.entry-content p {
  color: inherit;
  margin: 0 0 1rem !important;
  padding: 0;
}


/* 見出し */

h1, h2, h3, h4, h5 {
  color: inherit !important;
  font-weight: 700 !important;
  line-height: 1.4;
  color: var(--j7-black) !important;
/* 	color: inherit !important; */
}

h1 {
  font-size: 26px !important;
  line-height: 1.35;
  margin: 0 0 0.8em;
}

h2 {
  font-size: 20px !important;
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.3em;
  margin: 2.5em 0 0.8em;
}

h3 {
  font-size: 17px !important;
  margin: 2em 0 0.6em;
}

h4 {
  font-size: 15px !important;
  line-height: 1.6;
/*   padding: 0.4em 0.8em; */
  margin: 1.5em 0 0.5em;
  border-radius: 4px;
}

h5 {
  font-size: 14px !important;
  margin: 1.2em 0 0.4em;
}


/* リスト */
.entry-content ul {
  list-style: none;
  padding: 0;
}

.entry-content ul li {
  position: relative;
  padding-left: 1.3em;
	margin-bottom: 0.3em;
}

.entry-content ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  width: 1em;
  text-align: center;
}

.entry-content ul ul li::before {
  content: none;
}

.entry-content ul ul li {
	font-size: 13px;
	line-height: 1.65;
	color: var(--j7-gray);
  	padding: 0;
}


li.no-bullet {
  list-style-type: none;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0.3em;
}


/* リンク */
.entry-content a {
  color: var(--j7-blue);
/*   font-weight: 500; */
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

.entry-content a:hover,
.entry-content a:focus {
  filter: brightness(1.2);
/*   text-decoration-thickness: 2px; */
}

/* 汎用ボックス */
.is-note {
  color: var(--j7-gray) !important;
  background-color: var(--j7-gray-bg) !important;
  padding: 1em 1.2em !important;
  border-radius: 3px !important;
  font-size: 0.8em !important;     /* 1段階落とす */
  line-height: 1.7 !important;
}