@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/*-------------------------
‐ base
‐ 色変数
‐ 整列
- pタグ
- 太字
- aタグ
- 見出し
- 番号なしリスト
- 番号つきリスト
- 引用
- キャプション
- 表
- iframe
-------------------------*/
/*=======================================
　base
=======================================*/
.mce-content-body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Maru Gothic W4 JIS2004", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--main_black);
}

/*=======================================
　色変数
=======================================*/
:root {
  --main_black: #2B2B2B;
  --main_orange: #EC6D3C;
  --main_gray: #C6C6C6;
}

/*=======================================
　整列
=======================================*/
.mce-content-body p:has(.aligncenter),
.mce-content-body div:has(.aligncenter),
.mce-content-body .wp-block-image:has(.aligncenter) {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.mce-content-body p:has(.alignright),
.mce-content-body div:has(.alignright),
.mce-content-body .wp-block-image:has(.alignright) {
  text-align: right;
  margin-left: auto;
}

/*=======================================
　pタグ
=======================================*/
/* テキスト */
.mce-content-body p {
  font-size: 15px;
  line-height: 2.133;
}
@media screen and (max-width: 768px) {
  .mce-content-body p {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2.142;
  }
}

/* 段落・画像のmargin-bottom */
.mce-content-body p, .mce-content-body figure {
  margin-bottom: 50px;
}

/*=======================================
　太字
=======================================*/
.mce-content-body strong {
  font-weight: 700;
}

/*=======================================
　aタグ
=======================================*/
.mce-content-body a {
  font-weight: 700;
  text-decoration: underline;
  font-size: 16px;
  letter-spacing: 0.03em;
  /* line-height: 2; */
  color: #048cf3;
}

/*=======================================
　画像
=======================================*/
.mce-content-body p img {
  border-radius: 4px;
}

/*=======================================
　見出し
=======================================*/
.mce-content-body h2 {
  font-size: 20px !important;
  padding-left: 12px;
  position: relative;
  margin-bottom: 0.6em !important;
}
.mce-content-body h2:before, .mce-content-body h2:after {
  content: "";
  display: block;
  width: 5px;
  height: 12px;
  position: absolute;
  left: 0;
}
.mce-content-body h2:before {
  background-color: #ED6D3D;
  top: 0;
}
.mce-content-body h2:after {
  background-color: #575757;
  bottom: 0;
}
.mce-content-body h4 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.681;
  margin-bottom: 30px;
  position: relative;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .mce-content-body h4 {
    padding-left: 15px;
    font-size: 18px;
  }
}
.mce-content-body h4::before {
  content: "";
  width: 5px;
  height: 100%;
  display: inline-block;
  background: var(--main_orange);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 768px) {
  .mce-content-body h4::before {
    width: 3px;
  }
}
.mce-content-body h5 {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.583;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .mce-content-body h5 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.mce-content-body h6 {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--main_orange);
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .mce-content-body h6 {
    margin-bottom: 15px;
    font-size: 16px;
  }
}

/*=======================================
　番号なしリスト
=======================================*/
.mce-content-body {
  margin-bottom: 50px;
}
.mce-content-body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px 0;
  padding: 0;
  list-style: none;
  margin-bottom: 50px;
}
.mce-content-body ul li {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.428;
  position: relative;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .mce-content-body ul li {
    font-size: 16px;
    letter-spacing: 0.06em;
  }
}
.mce-content-body ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--main_black);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.5em;
}

/*=======================================
　番号つきリスト
=======================================*/
.mce-content-body ol {
  counter-reset: item;
  padding: 0;
  list-style: none;
  margin-bottom: 50px;
}
.mce-content-body ol li {
  position: relative;
  font-size: 15px;
  line-height: 2.133;
  padding-left: 28px;
}
.mce-content-body ol li::before {
  position: absolute;
  left: 0;
  top: 0;
  counter-increment: item;
  content: counter(item) ".";
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.777;
  color: var(--main_orange);
}

/*=======================================
　引用
=======================================*/
.mce-content-body blockquote {
  margin-bottom: 50px;
  padding-left: 27px;
  border-left: 3px solid #707070;
}
@media screen and (max-width: 768px) {
  .mce-content-body blockquote {
    padding-left: 15px;
  }
}
.mce-content-body blockquote p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 2.133;
  color: #949494;
}
@media screen and (max-width: 768px) {
  .mce-content-body blockquote p {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2.142;
  }
}

/*=======================================
　キャプション
=======================================*/
.mce-content-body .mt-caption-text {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2.285;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .mce-content-body .mt-caption-text {
    font-size: 13px;
  }
}

/*=======================================
　表
=======================================*/
.mce-content-body table {
  border: 1px solid #c6c6c6;
  margin-bottom: 50px;
}
.mce-content-body table tbody tr td {
  width: 25%;
  border: 1px solid #c6c6c6;
  vertical-align: middle;
  padding: 9px 5px;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .mce-content-body table tbody tr td {
    font-size: 13px;
  }
}
.mce-content-body table tbody tr p {
  margin-bottom: 0;
}
.mce-content-body table tbody tr:first-child td {
  color: #fff;
  background: var(--main_orange);
  padding: 12px 9px;
}
.mce-content-body table tbody tr:first-child td:not(:first-child) {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .mce-content-body table tbody tr:first-child td:not(:first-child) {
    font-size: 12px;
  }
}
.mce-content-body table tbody tr:not(:first-child) td:first-child {
  background: #F1F1F1;
}

::-webkit-full-page-media, :future, :root .mce-content-body table colgroup {
  display: none;
}

/*=======================================
　iframe
=======================================*/
@media screen and (max-width: 768px) {
  .mce-content-body iframe {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 560/315;
  }
}/*# sourceMappingURL=mt_style.css.map */