@charset "utf-8";
/*
WordPressの投稿ページに関する設定を指定します。

フォントサイズはremで指定します。
"rem" will be used for font-size.
*/
/*----------------------------------------------
	.l_wordpress_contents
---------------------------------------------*/
.l_wordpress_contents { margin: 0 0 40px; }
.l_wordpress_contents img {
    border-radius: 6px;
    height: inherit;
}
.l_wordpress_contents p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.6rem;
    line-height: 2;
}
.l_wordpress_contents h2 {
  font-size: clamp(1.9rem, 2.2vw, 21px);
  color: #003D22;
  background-color: #e0f3eb;
  border-left: 6px solid #009966;
  padding: 16px 20px;
  margin: 48px 0 20px;
  border-radius: 6px;
  font-weight: bold;
  line-height: 1.5;
}
.l_wordpress_contents h3 {
    font-size: clamp(1.8rem, 2vw, 20px);
    color: #003D22;
    background: url(../images/ico_yellow_bullet.png) no-repeat left 6px;
    line-height: 1.4;
    padding-left: 25px;
    margin-top: 32px;
    margin-bottom: 10px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}
.l_wordpress_contents h4 {
    background-color: #f5f5f5;
    margin-top: 60px;
    padding: 5px 8px;
    margin-bottom: 10px;
    font-size: 2rem;
}

/* テーブル */
.l_wordpress_contents .table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 14px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.l_wordpress_contents th,
.l_wordpress_contents td {
  padding: 12px;
  border: 1px solid #eee;
}

.l_wordpress_contents th {
  background: #f7f7f7;
  font-weight: bold;
}
/* ul li */
.l_wordpress_contents ul {
  list-style: none;
  margin: 1.5em 0;
  padding: 0;
}

.l_wordpress_contents ul li {
  position: relative;
  margin: 0 0 1em 0;
  padding: 1em 1em 1em 3em;
  background: #f8f5ff; /* ラベンダー系の淡い背景 */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  line-height: 1.7;
  transition: transform 0.2s ease;
}

.l_wordpress_contents ul li:hover {
  transform: translateY(-2px);
}

.l_wordpress_contents ul li::before {
  content: "✓";
  position: absolute;
  left: 0.8em;
  top: 50%;
  transform: translateY(-50%);
  color: #4a148c; /* より深い紫で強調 */
  font-weight: 900; /* 最も太く */
  font-size: 1.8rem; /* 大きめに */
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* 影を入れてさらに立体感 */
}
#ez-toc-container ul li {
    border-radius: inherit;
  box-shadow: none;
}
#ez-toc-container ul li::before {
    content: "";
    position: inherit;
    left: 0.8em;
    top: 50%;
    transform: translateY(-50%);
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: 1;
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
}





/*----------------------------------------------
	WordPressのループで付与されるクラス
---------------------------------------------*/


/*----------------------------------------------
	Tiny MCE Editorで付与されるクラス
---------------------------------------------*/
/* 画像配置 左 */
img.alignleft {
        text-align: left;
}

/* 画像配置 中央 */
img.aligncenter {
        display: block;
        margin: 1px auto;
}

/* 画像配置 右 */
img.alignright {
        display: block;
        margin: 1px 1px 1px auto;
}

/*----------------------------------------------
	Calculated Fields Formプラグイン用のクラス
---------------------------------------------*/
#fbuilder #formheader_1 {
    display: none;
}
#fbuilder #fieldlist_1 .medium {
    font-size: 2rem;
    font-family: inherit;
    padding: 5px;
}
#fbuilder #fieldlist_1 .fields {
    padding: 10px;
}
#fbuilder .top_aligned .fields label {
    float: left;
    width: 15em;
}
#fbuilder #field_1-3 {
    text-align: right;
}
#fbuilder #field_1-3 .dfield {
    display: inline;
    text-align: right;
}
#fbuilder #field_1-3 label {
    float: none;
    width: 80%;
    text-align: right;
}
#fbuilder #field_1-3 .dfield #fieldname1_1 {
    border: none;
    font-size: 3rem;
    text-align: right;
    width: 20%!important;
    padding: 0;
    background: none;
}
@media screen and (max-width: 640px) {
	#fbuilder #fieldlist_1 .medium {
        width: 100%!important;
    }
    #fbuilder #field_1-3 {
        text-align: left;
    }
    #fbuilder #field_1-3 label {
        text-align: left;
    }
    #fbuilder #field_1-3 .dfield #fieldname1_1 {
        width: 100%!important;
    }
}
